@charset "UTF-8";
/*
    # Reset

    `core/_reset.scss`
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.new-section-1 {
  background: #F08D18;
}
.new-section-1 .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new-section-1 .inner img {
  max-width: 100%;
  height: auto;
}

.new-section-2 .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.new-section-2 .inner .left img, .new-section-2 .inner .right img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .new-section-2 .inner {
    flex-direction: column;
    /* スマホの場合、縦並び */
  }
}

.new-section-3 {
  background: url("/wp-content/themes/i-sozoku/lp/toki-campaign/src/img/bg.png") no-repeat center center;
  background-size: cover;
}
.new-section-3 .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .new-section-3 .inner {
    padding: 21px 20px;
    /* スマホの場合、上下paddingを三分の一に */
  }
}
.new-section-3 .inner img {
  width: 860px;
  max-width: 100%;
  height: auto;
}

.header-section {
  background-color: #F08D18;
}
.header-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-header-section {
  background-color: #fff;
}
.campaign-header-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cv-section {
  background-color: #2E3858;
  padding: 80px 0 24px 0;
  position: relative;
}
.cv-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 42px solid white;
}
.cv-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  color: white;
}
.cv-section .inner a.form-link {
  color: #fff;
  background: linear-gradient(180deg, #FFB931, #FFA900, #BE7F00);
  position: relative;
  display: flex;
  padding: 12px 26px;
  font-size: 32px;
  font-weight: bold;
  border-radius: 13px;
  min-height: 72px;
  min-width: 680px;
  max-width: 100%;
  justify-content: center;
  text-decoration: none;
}
.cv-section .inner a.form-link:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .cv-section .inner a.form-link {
    padding: 16px;
    font-size: 24px;
    min-width: 320px;
  }
}
@media screen and (max-width: 600px) {
  .cv-section .inner a.form-link {
    padding: 12px;
    font-size: 20px;
    min-width: 320px;
  }
}
@media screen and (max-width: 380px) {
  .cv-section .inner a.form-link {
    font-size: 20px;
  }
}
.cv-section .inner a.form-link i {
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .cv-section .inner a.form-link i {
    font-size: 32px;
  }
}
@media screen and (max-width: 380px) {
  .cv-section .inner a.form-link i {
    font-size: 20px;
  }
}
.cv-section .inner a.form-link span {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50px;
  border: 1px solid #F08D18;
  color: #333;
  padding: 10px;
  /* spanにパディングを追加 */
  white-space: nowrap;
  /* spanのテキストが改行しないようにする */
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .cv-section .inner a.form-link span {
    top: -20px;
    font-size: 16px;
  }
}
.cv-section .inner a.form-link div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cv-section .inner a.form-link div i {
  transform: rotate(90deg);
}
.cv-section .inner ul {
  margin: 12px auto 40px auto;
  line-height: 1.5em;
  text-align: center;
}
.cv-section .inner ul li.campaign-application-period {
  color: white;
  font-size: 16px;
}
.cv-section .inner ul li.contract-application-period {
  color: white;
  font-size: 16px;
}
.cv-section .inner ul li.campaign-note {
  margin-top: 6px;
  color: white;
  font-size: 12px;
}
.cv-section .inner a.rule-link {
  color: white;
  font-size: 16px;
  border: 1px solid white;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cv-section .inner a.rule-link i {
  transform: rotate(90deg);
}

.main-section {
  background-color: #fff;
  position: relative;
  padding: 120px 0 60px 0;
}
.main-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 42px solid #2E3858;
}
.main-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-section .inner .inheritance-info {
  font-size: 40px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5em;
}
.main-section .inner .inheritance-info span {
  font-weight: bold;
  color: #F08D18;
}
@media screen and (max-width: 767px) {
  .main-section .inner .inheritance-info {
    font-size: 24px;
  }
}
.main-section .inner .inheritance-image img {
  max-width: 100%;
  height: auto;
}
.main-section .inner .inheritance-notice {
  font-size: 40px;
  text-align: center;
  margin-top: 20px;
  line-height: 1.5em;
}
.main-section .inner .inheritance-notice strong {
  font-weight: bold;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
}
.main-section .inner .inheritance-notice span {
  font-weight: bold;
  color: #F08D18;
}
@media screen and (max-width: 767px) {
  .main-section .inner .inheritance-notice {
    font-size: 24px;
  }
}

.deadline-notice-section {
  background-color: #2E3858;
  position: relative;
  color: white;
  padding: 48px 0 8px 0;
}
.deadline-notice-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 42px solid white;
}
.deadline-notice-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.deadline-notice-section .inner .upper p {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: white;
}
@media screen and (max-width: 767px) {
  .deadline-notice-section .inner .upper p {
    font-size: 24px;
  }
}
.deadline-notice-section .inner .lower p {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .deadline-notice-section .inner .lower p {
    font-size: 30px;
  }
  .deadline-notice-section .inner .lower p img {
    width: 68px;
  }
}
.deadline-notice-section .inner .lower p span {
  white-space: nowrap;
}

.about-service-section {
  background-color: #F1EEE7;
  position: relative;
  padding: 60px 0 40px 0;
}
.about-service-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 42px solid #2E3858;
}
.about-service-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-service-section .inner .servie-logo {
  margin-bottom: 20px;
}
.about-service-section .inner .service-description {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5em;
}
.about-service-section .inner .service-description strong {
  padding-bottom: 2px;
  font-weight: bold;
  border-bottom: 1px solid #333;
}
.about-service-section .inner .service-description span {
  font-weight: normal;
  color: #F08D18;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about-service-section .inner .service-description {
    font-size: 24px;
  }
}
.about-service-section .inner .service-stats {
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
  max-width: 730px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 767px) {
  .about-service-section .inner .service-stats {
    font-size: 16px;
  }
}
.about-service-section .inner .service-note {
  font-size: 14px;
  text-align: center;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 767px) {
  .about-service-section .inner .service-note {
    font-size: 12px;
  }
}
.about-service-section .inner ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  list-style: none;
}
@media (max-width: 600px) {
  .about-service-section .inner ul {
    flex-direction: column;
  }
}
.about-service-section .inner ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 2px;
  gap: 8px;
  padding: 14px 10px;
  min-height: 120px;
}
.about-service-section .inner ul li img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .about-service-section .inner ul li img {
    width: 80px;
  }
}
.about-service-section .inner ul li div h5 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about-service-section .inner ul li div h5 {
    font-size: 16px;
  }
}
.about-service-section .inner ul li div p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .about-service-section .inner ul li div p {
    font-size: 12px;
  }
}

.campaign-flow-section {
  background-color: #fff;
}
.campaign-flow-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.campaign-flow-section .inner h2 {
  text-align: center;
  font-size: 42px;
  color: #F08D18;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner h2 {
    font-size: 24px;
  }
}
.campaign-flow-section .inner ul.flow {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 6px;
}
@media (max-width: 600px) {
  .campaign-flow-section .inner ul.flow {
    flex-direction: column;
  }
}
.campaign-flow-section .inner ul.flow li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner ul.flow li {
    margin-bottom: 0px;
    flex-direction: column;
    /* スマホの場合は縦flex */
  }
}
.campaign-flow-section .inner ul.flow li.completed-step .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
}
.campaign-flow-section .inner ul.flow li.completed-step .completed-text {
  font-size: 2em;
  color: #fff;
}
.campaign-flow-section .inner ul.flow li:not(:last-child)::after {
  content: "chevron_right";
  font-family: "Material Icons";
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner ul.flow li:not(:last-child)::after {
    transform: rotate(90deg);
    /* スマホの場合はアイコンを下向きに */
  }
}
.campaign-flow-section .inner ul.flow li div {
  border: 2px solid #F08D18;
  padding: 10px;
  text-align: center;
  position: relative;
}
@media (min-width: 601px) {
  .campaign-flow-section .inner ul.flow li div {
    width: 240px;
  }
}
@media (max-width: 600px) {
  .campaign-flow-section .inner ul.flow li div {
    width: 100%;
    min-height: auto;
  }
}
.campaign-flow-section .inner ul.flow li div h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #17A100;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner ul.flow li div h3 {
    font-size: 16px;
  }
}
.campaign-flow-section .inner ul.flow li div h4 {
  font-size: 24px;
  line-height: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner ul.flow li div h4 {
    font-size: 16px;
    height: auto;
  }
}
.campaign-flow-section .inner ul.flow li div p {
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner ul.flow li div p {
    font-size: 14px;
  }
}
.campaign-flow-section .inner .amazon-1 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner .amazon-1 {
    margin-top: 24px;
  }
}
.campaign-flow-section .inner .amazon-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  background-color: #F08D18;
  font-size: 22px;
  line-height: 1.5em;
  padding: 10px;
  position: relative;
  color: white;
  padding: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner .amazon-2 {
    font-size: 14px;
  }
}
.campaign-flow-section .inner .amazon-2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 20px solid white;
  border-bottom: 20px solid transparent;
}
.campaign-flow-section .inner .amazon-2 img {
  width: 60px;
  height: 60px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner .amazon-2 img {
    width: 40px;
    height: 40px;
  }
}
.campaign-flow-section .inner .amazon-2 span {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner .amazon-2 span {
    font-size: 18px;
  }
}
.campaign-flow-section .inner ul.note {
  margin: 40px auto;
}
.campaign-flow-section .inner ul.note li {
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .campaign-flow-section .inner ul.note li {
    font-size: 12px;
  }
}

.description-section {
  position: relative;
}
.description-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.description-section .inner ul {
  list-style: none;
  padding: 0;
}
.description-section .inner ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}
.description-section .inner ul li h3 {
  display: flex;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5em;
}
.description-section .inner ul li h3 img {
  width: 60px;
  height: auto;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .description-section .inner ul li h3 img {
    width: 40px;
  }
}
.description-section .inner ul li:nth-child(even) > div {
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .description-section .inner ul li:nth-child(even) > div {
    flex-direction: column;
  }
}
.description-section .inner ul li > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .description-section .inner ul li > div {
    flex-direction: column;
  }
}
.description-section .inner ul li > div img {
  width: 320px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .description-section .inner ul li > div img {
    width: 60%;
    margin: 24px auto;
  }
}
.description-section .inner ul li > div div p {
  font-size: 18px;
  text-align: left;
  line-height: 1.5em;
}
@media screen and (max-width: 767px) {
  .description-section .inner ul li > div div p {
    font-size: 14px;
  }
}
.description-section .inner ul li > div div p span {
  font-weight: bold;
  color: #CE3636;
}

.bottom-cv-section {
  background-color: #FFEDD8;
  position: relative;
  padding: 60px 0 40px 0;
}
.bottom-cv-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 42px solid white;
}
.bottom-cv-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bottom-cv-section .inner .service-logo img {
  height: auto;
}
.bottom-cv-section .inner p {
  font-size: 18px;
  text-align: center;
  line-height: 1.5em;
  margin-top: 12px;
  margin-bottom: 20px;
}
.bottom-cv-section .inner p span {
  font-weight: bold;
}
.bottom-cv-section .inner .bottom-cv-amazon {
  margin: 32px auto;
}
.bottom-cv-section .inner .bottom-cv-amazon img {
  max-width: 100%;
  height: auto;
}
.bottom-cv-section .inner a {
  background-color: #fff;
  border: 1px solid #F08D18;
  display: block;
  color: #F08D18;
  padding: 8px 64px;
}
.bottom-cv-section .inner a:hover, .bottom-cv-section .inner a:focus, .bottom-cv-section .inner a:active {
  color: #F08D18;
}
.bottom-cv-section .inner a div:first-child {
  position: relative;
  text-align: center;
}
.bottom-cv-section .inner a div:first-child span {
  position: relative;
}
.bottom-cv-section .inner a div:first-child span:before, .bottom-cv-section .inner a div:first-child span:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 1px;
  background-color: #F08D18;
}
.bottom-cv-section .inner a div:first-child span:before {
  left: -15px;
  transform: translateY(-50%) rotate(45deg);
}
.bottom-cv-section .inner a div:first-child span:after {
  right: -15px;
  transform: translateY(-50%) rotate(-45deg);
}
.bottom-cv-section .inner a div:last-child {
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.form-section {
  background-color: #fff;
  position: relative;
  padding: 60px 0 40px 0;
}
.form-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 42px solid #FFEDD8;
}
.campaign-rule-section {
  background-color: #EEEEEE;
  padding: 60px 0 40px 0;
}
.campaign-rule-section .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.campaign-rule-section .inner h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.campaign-rule-section .inner .note {
  font-size: 13px;
  color: #888;
}
.campaign-rule-section .inner > ul {
  list-style: none;
  padding: 0;
}
.campaign-rule-section .inner > ul > li {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .campaign-rule-section .inner > ul > li {
    flex-direction: column;
  }
}
.campaign-rule-section .inner > ul > li > div:first-child {
  font-size: 16px;
  text-align: center;
  background-color: #333;
  color: white;
  min-width: 240px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.campaign-rule-section .inner > ul > li > div:last-child {
  font-size: 16px;
  text-align: left;
  line-height: 1.5em;
}
.campaign-rule-section .inner > ul > li > div:last-child > ul {
  border-top: 1px solid #333;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin-top: 12px;
}
.campaign-rule-section .inner > ul > li > div:last-child > ul > li {
  margin-top: 12px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .campaign-rule-section .inner > ul > li > div:last-child > ul > li {
    flex-direction: column;
  }
}
.campaign-rule-section .inner > ul > li > div:last-child > ul > li > ul {
  list-style: none;
  padding: 0;
  font-size: 12px;
  margin-top: 8px;
  padding: 12px;
  background-color: #ddd;
}
@media (max-width: 600px) {
  .campaign-rule-section .inner > ul > li > div:last-child > ul > li > ul > li {
    flex-direction: column;
  }
}

.copyright {
  background-color: #333;
  padding: 20px 12px;
  color: white;
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
}

.contact_form_20220916 h1 {
  margin: 32px auto;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}
.contact_form_20220916 h1 .logo {
  display: block;
  text-align: center;
}
.contact_form_20220916 h1 .logo img {
  width: 120px;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 h1 .logo img {
    width: 100px;
  }
}
.contact_form_20220916 h1 .copy {
  margin-top: 12px;
  font-size: 36px;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 h1 .copy {
    font-size: 24px;
  }
}
.contact_form_20220916 h1 .copy span {
  font-weight: 600;
  color: #F08D18;
  border-bottom: 2px solid #F08D18;
}
.contact_form_20220916 .point {
  background-color: #FFEDD9;
}
.contact_form_20220916 .point .point-inner {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_form_20220916 .point .point-inner::before {
  content: "";
  display: block;
  width: 150px;
  height: 130px;
  background-image: url(/wp-content/themes/i-sozoku/contact-20220915/src/img/operator.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .point .point-inner::before {
    width: 100px;
    height: 90px;
  }
}
.contact_form_20220916 .point .point-inner ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.5em;
}
.contact_form_20220916 .point .point-inner ul li {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .point .point-inner ul li {
    font-size: 13px;
    line-height: 1.35em;
  }
}
.contact_form_20220916 .point .point-inner ul li span {
  color: #F08D18;
}
.contact_form_20220916 span.must {
  color: #EB2626;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 span.must {
    font-size: 11px;
  }
}
.contact_form_20220916 h2 {
  max-width: 800px;
  text-align: center;
  font-size: 32px;
  margin: 64px auto 32px auto;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 h2 {
    font-size: 24px;
    margin: 32px auto 32px auto;
  }
}
.contact_form_20220916 .wpcf7-response-output, .contact_form_20220916 .wpcf7-validation-errors {
  max-width: 800px;
  margin: auto !important;
  text-align: center;
  font-size: 12px;
  padding: 12px 0;
  color: #F08D18;
  font-weight: bold;
  border: 1px solid #F08D18;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .wpcf7-response-output, .contact_form_20220916 .wpcf7-validation-errors {
    margin: auto 12px;
  }
}
.contact_form_20220916 .wpcf7-validation-errors {
  color: #EB2626 !important;
  border: 1px solid #EB2626 !important;
}
.contact_form_20220916 .wpcf7-not-valid {
  border-color: #EB2626 !important;
}
.contact_form_20220916 .wpcf7-not-valid-tip {
  display: none;
}
.contact_form_20220916 .input_group {
  max-width: 800px;
  margin: auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .input_group {
    padding: 0 8px;
    margin-bottom: 16px;
  }
}
.contact_form_20220916 .input_group .wpcf7-list-item {
  padding-left: 0 !important;
}
.contact_form_20220916 .input_group label {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .input_group label {
    font-size: 16px;
  }
}
.contact_form_20220916 .input_group > div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .input_group > div {
    gap: 6px;
  }
}
.contact_form_20220916 .input_group > div input[type=text], .contact_form_20220916 .input_group > div input[type=email], .contact_form_20220916 .input_group > div input[type=tel] {
  width: 100%;
  height: 48px;
  position: relative;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .input_group > div input[type=text], .contact_form_20220916 .input_group > div input[type=email], .contact_form_20220916 .input_group > div input[type=tel] {
    height: 36px;
  }
}
.contact_form_20220916 .input_group > div input[type=text]:focus, .contact_form_20220916 .input_group > div input[type=email]:focus, .contact_form_20220916 .input_group > div input[type=tel]:focus {
  outline: none;
  border-color: #F08D18;
}
.contact_form_20220916 .input_group > div .wpcf7-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  font-size: 16px;
  gap: 16px;
}
.contact_form_20220916 .input_group > div .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0 !important;
}
.contact_form_20220916 .input_group > div .wpcf7-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  cursor: pointer;
}
.contact_form_20220916 .input_group > div .wpcf7-checkbox input[type=checkbox]:checked {
  background-color: #F08D18;
  border-color: #F08D18;
}
.contact_form_20220916 .input_group > div .wpcf7-checkbox input[type=checkbox]:focus {
  outline: none;
  border-color: #F08D18;
}
.contact_form_20220916 .input_group > div .wpcf7-form-control-wrap {
  position: relative;
  display: flex;
  width: 50%;
}
.contact_form_20220916 .input_group > .inner {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .input_group > .inner {
    gap: 6px;
  }
}
.contact_form_20220916 .input_group > .inner > div.left, .contact_form_20220916 .input_group > .inner > div.right {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.contact_form_20220916 .input_group > .inner > div.left .wpcf7-form-control-wrap, .contact_form_20220916 .input_group > .inner > div.right .wpcf7-form-control-wrap {
  position: relative;
  display: flex;
  width: 100%;
}
.contact_form_20220916 .sub_heading {
  font-size: 16px;
  text-align: center;
  margin: 32px 0 8px 0;
  color: #999;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .sub_heading {
    line-height: 1.5em;
    padding: 0 8px;
  }
}
.contact_form_20220916 .sub {
  background-color: #EEEEEE;
  padding: 32px 0;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .sub {
    padding: 16px 0;
  }
}
.contact_form_20220916 .sub .input_group {
  margin: 16px auto;
  margin-bottom: 32px;
}
.contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap {
  position: relative;
  display: flex;
  width: 100% !important;
}
.contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap input, .contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap textarea {
  width: 100%;
  height: 48px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 0 12px;
  font-size: 16px;
  margin-top: 8px;
  background-color: #fafafa;
}
.contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap input:focus, .contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap textarea:focus {
  outline: none;
  border-color: #F08D18;
  background-color: #fff;
}
.contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap textarea {
  height: 120px;
  padding: 12px;
  font-size: 18px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .sub .input_group .wpcf7-form-control-wrap textarea {
    height: 80px;
  }
}
.contact_form_20220916 .sub .input_group p {
  margin: 10px 0 0 0;
  line-height: 1.5em;
  font-size: 13px;
}
.contact_form_20220916 .info {
  max-width: 800px;
  text-align: center;
  font-size: 18px;
  line-height: 1.4em;
  margin: 36px auto 18px auto;
}
.contact_form_20220916 .submit {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .submit {
    padding: 0 8px;
  }
}
.contact_form_20220916 .submit button {
  background-color: #F08D18;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 12px;
  font-size: 32px;
  margin: 0;
  width: 100%;
  padding: 16px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.contact_form_20220916 .submit button span {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .submit button {
    font-size: 22px;
  }
}
.contact_form_20220916 .submit button::after {
  font-family: "Material Icons";
  content: "arrow_circle_right";
  font-size: 32px;
  margin-left: 8px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .submit button::after {
    font-size: 24px;
  }
}
.contact_form_20220916 .submit button:hover {
  background-color: #F08D18;
  opacity: 0.8;
}
.contact_form_20220916 .submit button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.contact_form_20220916 .pp {
  max-width: 800px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4em;
  margin: 18px auto;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .pp {
    padding: 0 8px;
  }
}
.contact_form_20220916 .pp a {
  color: #333;
  text-decoration: underline;
}
.contact_form_20220916 .marketing {
  max-width: 800px;
  text-align: center;
  font-size: 12px;
  line-height: 1.4em;
  margin: 18px auto;
  padding: 16px;
  background-color: #efefef;
}
@media screen and (max-width: 767px) {
  .contact_form_20220916 .marketing {
    padding: 16px 8px;
  }
}

.submit .submit-button.loading {
  position: relative;
  overflow: hidden;
}

.submit .submit-button.loading img {
  display: none;
}

.submit .submit-button.loading::after {
  content: "送信中";
  display: block;
  text-indent: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  background-color: #f08d18;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.submit .submit-button.loading::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 36%;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: button-loading-spinner 1s ease infinite;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .submit .submit-button.loading::before {
    width: 12px;
    height: 12px;
    left: 28%;
  }
}
@keyframes button-loading-spinner {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}
#message {
  text-align: center;
  background-color: #ffe6e6;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
}
#message p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
#message p span {
  font-weight: bold;
}
#message p.tel {
  font-family: "Roboto", sans-serif;
  font-size: 38px;
  font-weight: bold;
}
#message p.tel a {
  color: #F08D18;
}
#message p.tel a:hover, #message p.tel a:focus, #message p.tel a:active {
  color: #F08D18;
}

.blog-cv-step__contact {
  width: auto;
  margin: 25px 15px 0 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .blog-cv-step__contact {
    width: 590px;
    margin: 30px auto 40px auto;
  }
}
.blog-cv-step__contact-copy {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-copy {
    font-size: 13px;
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .blog-cv-step__contact-copy {
    font-size: 10px;
    letter-spacing: -0.01em;
    padding: 0 6px;
  }
}
.blog-cv-step__contact-copy span {
  color: #F08D18;
}
.blog-cv-step__contact-copy::before, .blog-cv-step__contact-copy::after {
  border-left: 2px solid #333333;
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  top: 2px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-copy::before, .blog-cv-step__contact-copy::after {
    top: 0px;
    height: 19px;
  }
}
.blog-cv-step__contact-copy::before {
  left: 0;
  transform: rotate(-30deg);
}
.blog-cv-step__contact-copy::after {
  right: 0;
  transform: rotate(30deg);
}
.blog-cv-step__contact-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(45deg, #FDA43A, #F08D18);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.34);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
  margin: 10px 0;
  height: 74px;
}
.blog-cv-step__contact-btn:hover {
  color: white;
  text-decoration: none;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-btn {
    height: 115px;
  }
}
.blog-cv-step__contact-btn > div {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-btn > div {
    margin-right: 25px;
  }
}
@media (max-width: 480px) {
  .blog-cv-step__contact-btn > div {
    margin-right: 10px;
  }
}
.blog-cv-step__contact-btn::before {
  content: "";
  display: block;
  background-image: url(https://www.i-sozoku.com/wp-content/themes/i-sozoku/images/navi/blog_cv_step_btn_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 115px;
  height: 80px;
  left: 6px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-btn::before {
    width: 180px;
    height: 125px;
    left: 10px;
  }
}
.blog-cv-step__contact-btn--form {
  background: #76a022;
  justify-content: center;
  font-size: 16px;
  height: auto;
  padding: 20px 10px;
}
.blog-cv-step__contact-btn--form i {
  margin: 0 10px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-btn--form {
    font-size: 20px;
  }
  .blog-cv-step__contact-btn--form br {
    display: none;
  }
}
.blog-cv-step__contact-btn--form::before {
  background: none;
  width: auto;
  height: auto;
  left: auto;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-btn--form::before {
    width: auto;
    height: auto;
    left: auto;
  }
}
.blog-cv-step__contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: bold;
  z-index: 2;
  font-family: "Roboto";
  letter-spacing: 0.07em;
  line-height: 1;
  margin-top: 5px;
  font-size: 34px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-tel {
    font-size: 56px;
  }
}
@media (max-width: 480px) {
  .blog-cv-step__contact-tel {
    font-size: 26px;
  }
}
.blog-cv-step__contact-tel img {
  width: 36px;
  margin-top: 5px;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-tel img {
    width: 50px;
    margin-right: 8px;
  }
}
@media (max-width: 480px) {
  .blog-cv-step__contact-tel img {
    margin-top: 2px;
    width: 28px;
  }
}
.blog-cv-step__contact-business-hours {
  position: relative;
  font-size: 10px;
  z-index: 2;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-business-hours {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .blog-cv-step__contact-business-hours {
    letter-spacing: -0.1em;
  }
}
.blog-cv-step__contact-know_more {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F08D18;
  text-decoration: underline;
  font-size: 11px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-know_more {
    font-size: 13px;
  }
}
.blog-cv-step__contact-know_more img {
  width: 15px;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .blog-cv-step__contact-know_more img {
    width: 20px;
  }
}

.uk-margin-large {
  margin: 60px 0;
}

.footer-inner {
  padding: 20px;
}

.uk-flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft_logo_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ft_logo_ks, .ft_logo {
  width: 100px;
  height: auto;
}

.ft_txt {
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
  color: #333;
}

.wrapper {
  text-align: center;
}

.complete-wrapper {
  margin: 64px auto;
  padding: 0 12px;
}
.complete-wrapper .complete-message {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}
.complete-wrapper .contact-message {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 10px;
}
.complete-wrapper .note-message {
  font-size: 14px;
  text-align: center;
  color: #999;
}