@charset "UTF-8";
/*
Theme Name: おそうじ本舗 根室店テーマ
Theme URI: https://osoujihonpo-nemuroten.com
Description: おそうじ本舗 根室店
Version: 1.0.0
Author: おそうじ本舗 根室店
*/

.t_color01 {
  color: #005CAC;
}
.t_color02 {
  color: #E54667;
}
.t_font01 {
  font-family: "Zen Maru Gothic", sans-serif;
}
.t_font02 {
  font-family: "Shippori Mincho", serif;
}
.t_font03 {
  font-family: "Noto Sans JP", sans-serif;
}

.w-content {
  padding-left: 20px;
  padding-right: 20px;
}
.w-1100 {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  width: 100%;
}
@media screen and (min-width:768px){
  .spver {
    display: none;
  }
}
@media screen and (max-width:767px){
  .pcver {
    display: none;
  }
}

@media screen and (min-width:768px) {
  a:hover {
    opacity: .7;
  }
}

/* Loading */
.loading {
  width: 100%;
  height: 100vh;
  background-image: url("./images/loading_bg.jpg");
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  z-index: 999;
  top: 0;
}
.loading_inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.loading_box {
  transition: 0.4s;
  text-align: center;
}
body.is-show .loading_box {
  transform: translateY(0.625em);
}
.loading_logo {
  width: 70%;
  margin: 0 auto 3rem;
  max-width: 377px;
}
.loading_bar {
  display: block;
  width: 0%;
  height: 8px;
  background: #E54667;
  margin: 1.5rem 0 3.5rem;
}
.loading_txt {
  font-size: 32px;
  font-weight: 700;
}
.loading_now {
  color: #005CAC;
  font-size: 28px;
  font-weight: 700;
}
@media only screen and (max-width:768px){
  .loading_inner {
    width: 88vw;
  }
  .loading_logo {
    width: 100%;
  }
  .loading_bar {
    margin: 1.75em 0 2em;
  }
}

/* Scroll Animetion */
.js-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}
body.is-show .js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* header */
.header_box {
  transition: all .4s ease-out;
}

.nav_unshown { display: none; }

@media screen and (min-width: 1250px) {
  header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 100;
  }

  header .header_box div.logo {
    padding-bottom: 10px;
  }
  header .header_box div.logo a:hover {
    opacity: 0.7;
  }

  header .header_box .header_nav,
  header .header_box .header_nav nav {
    height: 100%;
  }

  .header_nav nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  /* ナビゲーション配置 */
  .header_nav nav .nav_left { text-align: left; }
  .header_nav nav .nav_left ul li {
    display: inline-block;
    margin-right: 100px;
  }
  .header_nav nav .nav_left ul li:last-child { margin-right: 0; }

  .header_nav nav .nav_right { text-align: right; }
  .header_nav nav .nav_right ul {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0;
    text-align: center;
  }
  .header_nav nav .nav_right ul li:last-child { margin-right: 0; }
  #nav_drawer,
  header .sp_header_logo,
  header .sp_header_tel { display: none; }

  header .header_box {
    width: 100%;
  }
  .header_nav nav .nav_left { width: 340px; }
  .header_nav nav .nav_right { width: auto; }
  .header_nav nav .nav_right ul li {
    display: flex;
    align-items: center;
    height: 90px;
    margin-right: 30px;
    flex-wrap: nowrap;
  }
  .header_nav nav .nav_right ul li a:hover {
    color: #E54667;
    opacity: 1;
  }
  .header_box > div nav ul li.tel a img {
    width: 260px;
  }
  .header_box > div nav ul li.tel a:hover {
    opacity: 1;
    filter: hue-rotate(126deg) saturate(1.1) brightness(1.15);
  }
  .header_box > div nav ul li.mail {
    position: relative;
    width: 200px;
  }
  .header_box > div nav ul li.mail a {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #E54667;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
    font-weight: 400;
    padding: 20px 0 15px;
    border-radius: 0 0 15px 15px;
  }
  .header_box > div nav ul li.mail a:hover {
    color: #fff;
    background-color: #005CAC;
  }
  .header_box > div nav ul li.mail a img {
    width: 50px;
    height: auto;
    display: block;
  }
}

@media screen and (max-width: 1249px) {
  header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }

  .header_box {
    height: 55px;
    display: flex;
    align-items: center;
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
  }
  header .header_box > div.logo {
    width: 170px;
    height: auto;
  }

  /* SP用ロゴ・電話 */
  header .sp_header_logo { width: 210px; }
  header .sp_header_tel {
    position: absolute;
    right: 64px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 5px;
  }
  header .sp_header_tel a img { width: 36px; }

  .overflow__hidden header {
    transition: all 0s;
  }
  .overflow__hidden header .sp_header_logo { display: none; }

  /* ドロワーメニュー */
  div.header_nav { display: none; }
  #nav_drawer { display: inherit; }

  header div#nav_drawer nav {
    height: 100vh;
    position: fixed;
    padding: 60px 20px 0;
    z-index: 100;
  }

  header #nav_drawer nav ul li {
    padding: 0;
    text-align: left;
  }

  header #nav_drawer nav ul.nav_content_top li a {
    display: block;
    padding: 10px;
    font-size: 0.875rem;
    line-height: 40px;
    border-bottom: 1px solid #171717;
    position: relative;
  }
  header #nav_drawer nav ul.nav_content_top li:last-child a { border-bottom: 0; }

  /* メニューの矢印アイコン */
  header #nav_drawer nav ul.nav_content_top li a:after {
    content: "";
    background-image: url("./images/icon_arrow_menu.png");
    width: 24px;
    height: 24px;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
  }

  /* ハンバーガーボタン(開閉ボタン) */
  #nav_open {
    background-color: #005CAC;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    display: inline-block;
    width: 55px;
    height: 55px;
    cursor: pointer;
  }
  #nav_open span,
  #nav_open span::before,
  #nav_open span::after {
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    content: "";
  }
  #nav_open span { top: 8px; right: 7.5px; }
  #nav_open span::before { top: 10px; }
  #nav_open span::after { top: 21px; }
  #nav_open::after {
    content: "MENU";
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    font-family: "Shippori Mincho", serif;
    position: absolute;
    bottom: 6px;
    letter-spacing: 0.1em;
    left: 8px;
  }

  /* ボタンアクティブ時(×印) */
  #nav_content {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: #FFF;
    text-align: center;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: 0;
  }
  #nav_content ul { margin: auto; }
  #nav_content li {
    padding: 10px;
    text-align: center;
    display: block;
  }
  #nav_content.active {
    opacity: 1;
    pointer-events: auto;
    overflow: scroll;
  }
  #nav_open.active {
    background-color: transparent;
  }
  #nav_open.active span {
    transform: rotate(45deg);
    width: 40px;
    top: 25px;
    right: 16px;
    transition: transform 1s;
    background: #171717;
  }
  #nav_open.active span::before { background: #171717; transform: rotate(90deg); top: 0px; }
  #nav_open.active span::after { content: none; opacity: 0; }

  /* 下部リンクボタン */
  #nav_content ul.sp_link_button {
    margin: 56px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 0;
    justify-content: flex-start;
  }
  #nav_content ul.sp_link_button li {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* TOP */
.fv {
  position: relative;
  width: 100%;
  background-color: #fff;
  margin-top: 90px;
}
.fv_man {
  padding-bottom: 4.5%;
}
.fv_man img {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.fv_wave {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.fv_wave img {
  width: 100%;
}
.fv_marquee {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 12%;
  left: 0;
}
.fv_marquee__inner {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: fv_marquee_scroll 20s linear infinite;
}
.fv_marquee__inner span {
  display: inline-block;
  color: #fff;
  font-size: 96px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  padding-right: 20px;
  opacity: 0.8;
}
@keyframes fv_marquee_scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.fv_bubble {
  mix-blend-mode: multiply;
}
.fv_bubble01 {
  width: 11%;
  position: absolute;
  top: 0.5%;
  left: 0;
}
.fv_bubble02 {
  width: 18%;
  position: absolute;
  bottom: -22%;
  right: 0;
}

.fv_hokkaido {
  width: 20%;
  position: absolute;
  bottom: 23%;
  right: 12%;
}
.fv_circle {
  width: 61%;
  position: absolute;
  top: 0;
  left: 5.5%;
}

.service_links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.fv .service_links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20%;
  width: 55%;
}

.service_link_item {
  display: block;
  text-decoration: none;
  background-color: #005CAC;
  padding: 6px 6px 0;
  border-radius: 10px;
}
.service_link_item:hover {
  opacity: 1;
  background-color: #E54667;
}
.service_link_thumb {
  margin: 0;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
}
.service_link_thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: .4s;
}
.service_link_item:hover .service_link_thumb img {
  opacity: 1;
  filter: hue-rotate(126deg) saturate(1.1) brightness(1.15);
}
.service_link_label {
  text-align: center;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .service_links {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .service_link_label {
    font-size: 14px;
    padding: 10px 5px;
  }
}

.cta_inner {
  position: relative;
  max-width: 1440px;
  width: 100%;
  border-radius: 30px;
  border: 3px solid #FFF;
  background-color: #005CAC;
  margin: 0 auto;
}
.cta_visual {
  width: 30%;
  position: absolute;
  bottom: 0;
  left: 2%;
}
.cta_visual img {
  display: block;
}
.cta_content {
  text-align: center;
  margin: 0 auto 0 33%;
  max-width: 735px;
}
.cta_lead {
  position: relative;
  margin-bottom: -20px;
}
.cta_lead_bg {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  opacity: 0.1;
}
.cta_lead_main {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
}

.cta_tel {
  position: relative;
  margin: 0 auto 25px;
}
.cta_tel_link {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 100px;
  padding: 15px;
}
.cta_tel_link:hover {
  opacity: 1;
}
.cta_tel_logo {
  flex: 0 0 70px;
}
.cta_tel_logo img {
  display: block;
}
.cta_tel_number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 5px;
  transition: .4s;
}
.cta_tel_link:hover .cta_tel_number {
  color: #005CAC;
}
.cta_tel_hours {
  font-size: 20px;
  line-height: 1.6;
  text-transform: uppercase;
}

.cta_btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 15px;
  max-width: 735px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.cta_btn_link a {
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  font-size: 22px;
  color: #fff;
}
.cta_btn_link a:hover {
  opacity: 1;
}
.cta_btn_icon {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
}
.cta_btn_icon svg {
  width: 100%;
  height: auto;
  fill: #fff;
  transition: fill 0.3s ease;
}

.cta_btn_text {
  flex-grow: 1;
  text-align: center;
}
.cta_btn_arrow {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  margin-left: 10px;
  transition: background-color 0.4s ease;
}
.cta_btn_arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}

.cta_btn_line a {
  background-color: #06C755;
  border-color: #06C755;
}
.cta_btn_line a .cta_btn_arrow::after {
  border-color: #06C755;
}
.cta_btn_line a:hover {
  background-color: #fff;
  color: #06C755;
}
.cta_btn_line a:hover .cta_btn_icon svg {
  fill: #06C755 !important;
}
.cta_btn_line a:hover .cta_btn_arrow {
  background-color: #06C755;
}
.cta_btn_line a:hover .cta_btn_arrow::after {
  border-color: #fff;
}

.cta_btn_mail a {
  background-color: #E54667;
  border-color: #E54667;
}
.cta_btn_mail a .cta_btn_arrow::after {
  border-color: #E54667;
}
.cta_btn_mail a:hover {
  background-color: #fff;
  color: #E54667;
}
.cta_btn_mail a:hover .cta_btn_icon svg {
  fill: #E54667 !important;
}
.cta_btn_mail a:hover .cta_btn_arrow {
  background-color: #E54667;
}
.cta_btn_mail a:hover .cta_btn_arrow::after {
  border-color: #fff;
}

@media screen and (max-width: 1200px) {
  .cta_btns {
    align-items: center;
    gap: 15px;
  }
  .cta_btn_link {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ボタン */
.formbtn {
	text-align: center;
  position: relative;
}
div.button_section {
	width: 100%;
	max-width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.more_btn, .formbtn .wpcf7-submit, .formbtn .wpcf7-previous {
  cursor: pointer;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #005CAC;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  border-radius: 50px;
  position: relative;
  width: 100%;
  max-width: 400px;
  font-family: "Zen Maru Gothic", sans-serif;
  border: 0;
  transition: .4s;
}
.more_btn_icon {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}
.more_btn_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #005CAC;
  border-right: 2px solid #005CAC;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.formbtn::before {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 5.4%;
  transform: translateY(-50%);
  content: '';
  display: block;
  z-index: 1;
}
.formbtn::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 9.5%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #005CAC;
  border-right: 2px solid #005CAC;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
  z-index: 1;
}
.formbtn.prev::before {
  left: 5.4%;
}
.formbtn.prev::after {
	left: 9.5%;
	transform: translateY(-50%) rotate(225deg);
}


.more_btn:hover,
.formbtn .wpcf7-submit:not(:disabled):hover,
.formbtn .wpcf7-previous:not(:disabled):hover {
  background-color: #E54667;
  opacity: 1;
}
.formbtn .wpcf7-submit:disabled,
.formbtn .wpcf7-previous:disabled {
	opacity: 0.7;
}
.more_btn:hover .more_btn_icon::after,
.formbtn:hover::after {
  border-color: #E54667;
}

.intro {
  background:
  url('./images/hokkaido_wh.png') left 0 top 10% / 50% auto no-repeat,
  url('./images/leaf01.png') right 10% top 10% / 30% auto no-repeat,
  url('./images/bg_tiles.png') left top / 100% auto repeat;
  padding-top: 15%;
}
.intro_inner {
  text-align: center;
  margin-bottom: 5%;
}
.intro_divider {
  width: 100%;
  max-width: 815px;
  margin: 0 auto;
}
.intro .cta_section {
  margin-bottom: -3%;
}

.onayami {
  background:
  url('./images/onayami_bg03.png') right 0 bottom 0 / 30% auto no-repeat,
  url('./images/onayami_bg02.png') left 0 bottom 0 / 30% auto no-repeat,
  url('./images/onayami_bg01.png') left 0 top 0 / 100% auto no-repeat,
  url('./images/bg_tiles.png') left top / 100% auto repeat;
  padding-top: 7.5%;
  padding-bottom: 60px;
}
.onayami_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.onayami_header {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.25));
  margin-bottom: 40px;
}
.onayami_title_group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onayami_title_box {
  position: relative;
  border: 2px solid #fff;
  padding: 5px 40px;
  margin-bottom: 15px;
}
.onayami_title_box span {
  color: #fff;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.onayami_icon {
  width: 70px;
  position: absolute;
  top: -10px;
  left: -100px;
}

.onayami_title_main {
  color: #fff;
  font-size: 48px;
  font-weight: normal;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.onayami_title_main span {
  font-size: 64px;
}

.onayami_content {
  margin-bottom: 40px;
}

.onayami_reassurance {
  text-align: center;
}

.onayami_reassurance_title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
}

.onayami_reassurance_arrow {
  width: 170px;
  margin: 0 auto 30px;
}

.onayami_reassurance_arrow img {
  width: 100%;
  height: auto;
}

.onayami_reassurance_text {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.onayami_reassurance_text span {
  font-size: 40px;
}

.onayami_reassurance_catch {
  font-size: 42px;
  line-height: 1.6;
  text-decoration: underline;
}

.onayami_reassurance_catch span {
  font-size: 60px;
}

@media screen and (max-width: 768px) {
  .onayami_header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .onayami_icon {
    flex: 0 0 40px;
    margin-top: 0;
  }

  .onayami_title_box {
    padding: 8px 20px;
    margin-bottom: 15px;
  }

  .onayami_title_box span {
    font-size: 20px;
  }

  .onayami_title_main {
    font-size: 24px;
    white-space: nowrap;
  }

  .onayami_reassurance {
    padding: 40px 15px;
  }

  .onayami_reassurance_title {
    font-size: 28px;
  }

  .onayami_reassurance_arrow {
    width: 60px;
  }

  .onayami_reassurance_text {
    font-size: 22px;
  }

  .onayami_reassurance_catch {
    font-size: 22px;
  }
}

.reasons {
  background: url('./images/bg_tiles.png') left top / 100% auto repeat;
  padding-top: 175px;
  padding-bottom: 175px;
  position: relative;
}

.reasons_bubble {
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.reasons_inner {
  max-width: 1440px;
  margin: 0 auto;
}

.reasons_header {
  text-align: center;
  margin: 0 auto 100px;
  max-width: 850px;
  width: 100%;
}

.reasons_title_en {
  font-size: 128px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  position: relative;
  display: block;
}

.reasons_title_en::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5px;
  background-color: #005CAC;
}

.reasons_title_jp {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.reasons_intro {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
}

.reasons_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-bottom: 60px;
}

.reasons_item {
  background-color: #fff;
  padding: 70px 0 30px;
  position: relative;
}

.reasons_item_badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #005CAC;
  color: #fff;
  width: 90px;
  height: 45px;
  border-radius: 0 0 50px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1.5;
  padding-bottom: 5px;
}

.reasons_item_title {
  font-size: 28px;
  line-height: 1.5;
  padding: 0 20px 15px;
  text-align: center;
}

.reasons_item_img {
  margin: 0 0 30px;
}

.reasons_item_img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.reasons_item_text {
  padding: 0 20px;
  font-size: 18px;
  text-align: justify;
}

.reasons_footer {
  text-align: center;
}

.reasons_banner {
  margin-top: 100px;
}
.reasons_banner_img {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .reasons_list {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .reasons_title_en {
    font-size: 80px;
  }

  .reasons_item_title {
    height: auto;
    margin-bottom: 15px;
  }
}


.price {
  background: url('./images/bg_cloud.jpg') left top / cover repeat;
  padding-top: 175px;
  padding-bottom: 175px;
}

.price_inner {
  max-width: 1270px;
  margin: 0 auto;
}

.price_header {
  margin-bottom: 60px;
}

.price_title_en {
  font-size: 160px;
  line-height: 1;
  margin-bottom: 30px;
}

.price_title_jp {
  font-size: 32px;
  margin-left: 20px;
  vertical-align: bottom;
}

.price_lead {
  font-size: 24px;
  line-height: 1.75;
}

.price_category {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.price_category_title {
  font-size: 24px;
  margin-bottom: 50px;
  position: relative;
}
.price_category_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100px;
  height: 1px;
  background-color: #171717;
}

.price_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.price_card {
  padding: 20px 25px 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.price_card_img {
  width: 100%;
  margin: 0 auto 50px;
}
.price_card_img img {
  width: 100%;
}
.price_card_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.price_card_title {
  font-size: 22px;
  margin-bottom: 15px;
}
.price_card_badge {
  display: inline-block;
  background-color: #005CAC;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  padding: 5px 20px;
  border-radius: 50px;
  margin: 0 auto 40px;
  width: fit-content;
}
.price_card_price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price_unit {
  margin-right: 5px;
}
.price_num {
  font-size: 64px;
  line-height: 1;
}
.price_num .yenmark {
  font-size: 36px;
}
.price_tax {
  margin-left: 5px;
}
.price_card_text {
  font-size: 17px;
  text-align: center;
}

.price_card_link {
  margin-top: auto;
  text-decoration: underline;
  font-weight: bold;
  font-size: 24px;
}
.price_card_row {
  margin-bottom: 10px;
}
.price_card_row .price_card_badge {
  margin-bottom: 20px;
}

.price_footer {
  padding-top: 10px;
  text-align: center;
}

@media screen and (max-width: 860px) {
  .price_grid {
    grid-template-columns: 1fr;
  }

  .price_title_en {
    font-size: 64px;
  }
}


.flow {
  background:
  url('./images/leaf02.png') right 3% top 45% / 15% auto no-repeat,
  url('./images/leaf01.png') left 8% top 2% / 22% auto no-repeat,
  url('./images/bg_tiles.png') left top / 100% auto repeat;
  padding-top: 175px;
  padding-bottom: 175px;
}

.flow_inner {
  max-width: 1100px;
  margin: 0 auto;
}

.flow_header {
  text-align: center;
  margin-bottom: 80px;
}

.flow_title {
  font-size: 48px;
  line-height: 1.5;
  padding-bottom: 15px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.flow_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: #E54667;
}

.flow_lead {
  font-size: 22px;
}

.flow_container {
  position: relative;
}

.flow_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px 30px;
}

.flow_item {
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.flow_badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-color: #005CAC;
  color: #fff;
  padding: 5px 25px;
  border-radius: 50px;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
  z-index: 2;
  width: 90%;
  max-width: 250px;
}

.flow_img {
  margin-bottom: 25px;
}

.flow_img img {
  width: 100%;
  display: block;
}

.flow_content {
  padding: 0 20px 25px;
}

.flow_item_title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 15px;
}

.flow_arrow {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 27px 0 27px 32px;
  z-index: 5;
}

.flow_arrow_pink {
  right: -23px;
  border-color: transparent transparent transparent #E54667;
}
.flow_arrow_blue {
  right: -23px;
  border-color: transparent transparent transparent #005bac;
}

.flow_line_hook {
  position: absolute;
  bottom: -40px;
  right: 50%;
  width: calc(100% + 33px);
  height: 40px;
  border-bottom: 5px solid #E54667;
  border-right: 5px solid #E54667;
  pointer-events: none;
}

.flow_line_hook::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 5px;
  height: 40px;
  background-color: #E54667;
}

.flow_footer {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .flow_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flow_arrow, .flow_line_hook {
    display: none;
  }

  .flow_item {
    margin-bottom: 20px;
  }
}


.voice {
  background: url('./images/bg_stripe.jpg') left top / 100% auto repeat;
  padding-top: 175px;
  padding-bottom: 175px;
  overflow: hidden;
}

.voice_inner {
  width: 100%;
  overflow: hidden;
}

.voice_header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.voice_title_en {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 25px;
}

.voice_title_jp {
  color: #171717;
  font-size: 20px;
  margin-left: 10px;
}

.voice_slider_container {
  position: relative;
  max-width: 1850px;
  margin: 0 auto;
}

.voice_swiper .swiper-wrapper {
  display: flex;
}

.voice_swiper .swiper-slide {
  transition: opacity 0.3s ease;
  padding-top: 60px;
  height: auto;
  display: flex;
}

.voice_swiper .swiper-slide { opacity: 0.4; }
.voice_swiper .swiper-slide-next,
.voice_swiper .swiper-slide-next + .swiper-slide,
.voice_swiper .swiper-slide-next + .swiper-slide + .swiper-slide {
  opacity: 1;
}

.voice_card {
  background-color: #fff;
  border-radius: 20px;
  padding: 90px 20px 20px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.voice_card_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.voice_photo {
  position: absolute;
  top: 0;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -35%);
  z-index: 10;
}

.voice_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.voice_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.voice_tag {
  background-color: #E54667;
  color: #fff;
  font-size: 22px;
  padding: 2px 10px;
  line-height: 1.5;
}

.voice_attribute {
  font-size: 16px;
}

.voice_item_title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}

.voice_line {
  width: 100%;
  border: none;
  border-top: 2px solid #E54667;
  margin: 15px auto;
}

.voice_text {
  flex-grow: 1;
}

.voice_prev, .voice_next {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #005CAC;
  border: 2px solid #005CAC;
  border-radius: 50%;
  transition: .4s;
  z-index: 5;
}

.voice_prev {
  left: 19.5% !important;
  transform: translateX(-50%);
}

.voice_next {
  right: 19.5% !important;
  transform: translateX(50%);
}

.voice_prev:hover, .voice_next:hover {
  background-color: #005CAC;
  color: #fff;
}

.voice_prev .swiper-navigation-icon,
.voice_next .swiper-navigation-icon {
  width: 10px;
}


.blog {
  background:
  url('./images/leaf03.png') right 8% top 1% / 22% auto no-repeat,
  url('./images/bg_tiles.png') left top / 100% auto repeat;
  padding-top: 175px;
  padding-bottom: 175px;
  overflow: hidden;
  position: relative;
}
.sub-blog .blog {
  background: none;
  padding-top: 0;
}
.blog_wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.blog_wave img {
  width: 100%;
}
.blog_inner {
  max-width: 1800px;
  margin: 0 auto;
}
.blog_header {
  margin-bottom: 100px;
}

.blog_title_en {
  font-size: 200px;
  line-height: 1;
}

.blog_title_jp {
  font-size: 32px;
  margin-left: 20px;
  color: #171717;
  vertical-align: bottom;
  display: inline-block;
  margin-bottom: 10px;
}

.blog_slider_container {
  width: 100%;
  margin-bottom: 100px;
}

.blog_swiper {
  padding-left: calc(50vw - 700px);
}

.blog_slide {
  width: 535px;
}

.blog_card {
  display: block;
}

.blog_img {
  margin: 0 0 15px;
  background-color: #fff;
}

.blog_img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* タグと日付 */
.blog_meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.blog_tag {
  color: #fff;
  font-size: 20px;
  padding: 8px;
  line-height: 1;
  width: 155px;
  text-align: center;
}

.blog_tag_pink, .blog_tag_blog {
  background-color: #E54667;
}

.blog_tag_blue, .blog_tag_work {
  background-color: #005CAC;
}

.blog_date {
  font-size: 16px;
  color: #BFBFBF;
}

.blog_item_title {
  font-size: 20px;
  line-height: 1.5;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog_controls_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* カスタムスクロールバー */
.blog_scrollbar.swiper-scrollbar {
  position: relative; /* swiperのデフォルト絶対配置を解除 */
  flex-grow: 1;
  height: 10px;
  background-color: #fff;
  border-radius: 0;
  left: auto;
  bottom: auto;
  z-index: 5;
}

.blog_scrollbar .swiper-scrollbar-drag {
  background-color: #005CAC;
  border-radius: 0;
}

.blog_btn {
  flex-shrink: 0;
  flex-basis: 400px;
}
.blog_btn .more_btn {
  background-color: #E54667;
}
.blog_btn .more_btn_icon::after {
  border-color: #E54667;
}
.blog_btn .more_btn:hover {
  background-color: #005CAC;
}
.blog_btn .more_btn:hover .more_btn_icon::after {
  border-color: #005CAC;
}

@media screen and (max-width: 1440px) {
  .blog_swiper {
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .blog_title_en {
    font-size: 50px;
  }
  .blog_slide {
    width: 280px;
  }
  .blog_controls_inner {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
}


.faq {
  background-color: #EAF3FF;
  position: relative;
  padding-top: 175px;
  padding-bottom: 175px;
}
.faq_bubble01 {
  mix-blend-mode: multiply;
  position: absolute;
  top: 6%;
  left: 0;
  width: 24%;
}
.faq_bubble02 {
  mix-blend-mode: multiply;
  position: absolute;
  top: 2%;
  right: 0;
  width: 21%;
}
.faq_inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.faq_header {
  text-align: center;
  margin-bottom: 60px;
}
.faq_title_en {
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.faq_title_en span {
  display: block;
}
.faq_title_jp {
  font-size: 24px;
  margin-top: 20px;
}

.faq_list {
  margin: 0 auto;
  display: grid;
  gap: 30px 0;
  grid-template-columns: 1fr;
  position: relative;
}
.faq_list dl dt {
  position: relative;
  cursor: pointer;
  padding: 45px 70px 45px 35px;
}
.faq_list dl dt p:before {
  content: "Q";
  width: 44px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  background-color: #005CAC;
  color: #fff;
  text-align: center;
  display: inline-block;
  position: absolute;
  left: -75px;
  top: 0;
}
.faq_list dl dt p,
.faq_list dl dd p {
  position: relative;
  margin-left: 75px;
}
.faq_list dl dt::before,
.faq_list dl dt::after  {
  content: '';
  display: inline-block;
  position: absolute;
  right: 35px;
  width: 31px;
  height: 2px;
  background-color: #000;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease;
}
.faq_list dl dd p:before {
  content: "A";
  width: 44px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  background-color: #E54667;
  display: inline-block;
  margin-right: 30px;
  color: #fff;
  text-align: center;
  position: absolute;
  left: -75px;
  top: 0;
}
.faq_list dl dd {
  display: none;
  padding: 0 35px 45px;
}

.faq_list dl {
  background-color: #fff;
  margin: 0;
}
.faq_list dl dt::after {
  transform: rotate(90deg) translateY(-50%);
}
.faq_list dl dt.active::before {
  transform: rotateZ(180deg) translateY(-50%);
  height: 2px;
}
.faq_list dl dt.active::after {
  transform: rotateZ(360deg) translateY(-50%);
  height: 0px;
}

.faq_btn {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width:767px) {
  .faq_list {
    margin: 60px auto;
    display: grid;
    gap: 30px 0;
    grid-template-columns: 1fr;
  }
  .faq_list dl dt {
    position: relative;
    cursor: pointer;
    padding: 20px 15px;
  }
  .faq_list dl dt p:before {
    content: "Q";
    padding: 4px 0;
    width: 40px;
    color: #fff;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: -55px;
    top: 0;
  }
  .faq_list dl dt p,
  .faq_list dl dd p {
    position: relative;
    margin-left: 55px;
    padding-top: 4px;
    padding-right: 25px;
  }
  .faq_list dl dt::before,
  .faq_list dl dt::after  {
    content: '';
    display: inline-block;
    position: absolute;
    right: 15px;
    width: 20px;
    height: 2px;
    background-color: #000;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease;
  }
	.faq_list dl dt::after {
		transform: rotate(90deg) translateY(-50%);
		top: 49.9%;
		right: 16px;
	}
  .faq_list dl dd p:before {
    content: "A";
    padding: 4px 0;
    width: 40px;
    display: inline-block;
    margin-right: 30px;
    color: #fff;
    text-align: center;
    position: absolute;
    left: -55px;
    top: 0;
  }
  .faq_list dl dd {
    display: none;
    padding: 0 15px 20px;
  }
}


.area {
  background:
  url('./images/hokkaido.png') left 8% top 1% / 75% auto no-repeat,
  url('./images/bg_tiles.png') left top / 100% auto repeat;
  padding-top: 175px;
  padding-bottom: 50px;
  overflow: hidden;
}

.area_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.area_contents {
  width: 100%;
  max-width: 585px;
  margin-left: auto;
}

.area_title_en {
  font-size: 128px;
  line-height: 1;
  margin-bottom: 5px;
}
.area_title_jp {
  font-size: 32px;
  margin-bottom: 15px;
}
.area_text {
  font-size: 20px;
  margin-bottom: 50px;
}
.area_box {
  border-radius: 0 30px;
  background: #005CAC;
  padding: 40px 50px;
}
.area_label {
  background-color: #fff;
  padding: 3px 15px;
}
.area_list li {
  color: #fff;
}

.blank_for_footer {
  padding-top: 14%;
}


footer {
  background: url('./images/footer_bg.png') center bottom 0 / 100% auto no-repeat;
  padding-bottom: 40px;
}

footer .cta_section {
  margin-top: -9%;
}

.footer_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 50px;
}
.footer_logo {
  margin-bottom: 15px;
}
.footer_logo img {
  width: 340px;
}
.footer_address p {
  font-size: 20px;
  text-transform: uppercase;
}

.footer_nav_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
}

.footer_nav_list li a {
  font-size: 20px;
  display: inline-block;
  line-height: 1.5;
}
.footer_nav_list li a:hover {
  opacity: 1;
  color: #005CAC;
}

.footer_bottom {
  text-align: center;
}

.footer_copyright {
  font-size: 16px;
  margin-top: 465px;
}

.footer_sns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.footer_pagetop {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #005CAC;
  margin-left: auto;
}

.footer_pagetop_text {
  font-size: 20px;
  margin-left: 10px;
}

.footer_pagetop_icon {
  width: 32px;
  height: 20px;
  position: relative;
}

.footer_pagetop_icon::after {
  content: "";
  position: absolute;
  top: 85%;
  left: 50%;
  width: 15px;
  height: 15px;
  border-top: 2px solid #005CAC;
  border-right: 2px solid #005CAC;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: .4s;
}

.footer_pagetop:hover {
  opacity: 1;
  color: #E54667;
}
.footer_pagetop:hover .footer_pagetop_icon::after {
  border-color: #E54667;
}

@media screen and (max-width: 768px) {
  .footer_sns {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_pagetop {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }

  .footer_info {
    flex: 0 0 auto;
    margin-bottom: 40px;
  }

  .footer_nav {
    width: 100%;
  }

  .footer_nav_list {
    gap: 10px;
  }

  .footer_nav_list li a {
    padding: 10px 0;
    width: 100%;
  }
}


/* --- 子ページ共通ヘッダー --- */
.subpage {
  background: url('./images/bg_tiles.png') left top / 100% auto repeat;
}
.sub_page_header {
  position: relative;
  width: 100%;
  height: 650px;
  background: url('./images/sub_header_bg.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 90px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
}

.sub_page_header::before {
  content: "";
  position: absolute;
  display: block;
  width: 5px;
  height: 150px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sub_page_header_inner {
  position: relative;
  z-index: 1;
}

.sub_page_header_sub_title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
}

.sub_page_header_main_title {
  font-size: 128px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1;
}

.sub_page_header_lead {
  font-size: 24px;
  line-height: 1.75;
  color: #fff;
}

/* --- パンくずリスト --- */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto 200px;
  font-size: 20px;
}

.breadcrumb_inner {
  display: flex;
  align-items: center;
  line-height: 1;
}

.breadcrumb_divider {
  margin: 0 15px;
  width: 6px;
  display: block;
}
.breadcrumb_divider img{
  display: block;
  width: 100%;
}

/* --- プライバシーポリシー --- */
.sub-privacy .sub_page_header {
  background-image: url('./images/sub_header_bg--privacy.jpg');
}

.sub-privacy_lead {
  margin-bottom: 60px;
}

.sub-privacy_section {
  margin-bottom: 50px;
}

.sub-privacy_heading {
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
}

.sub-privacy_list {
  margin-top: 15px;
  padding-left: 1.5em;
}

.sub-privacy_list li {
  list-style: disc;
  line-height: 1.8;
  margin-bottom: 10px;
}

.sub-privacy_contact_info {
  margin-top: 30px;
}


/* --- お問い合わせフォーム --- */
.sub-contact .sub_page_header {
  background-image: url('./images/sub_header_bg--contact.jpg');
}

.sub-contact_header {
  text-align: center;
}

.sub-contact_devided {
  width: 100px;
  height: 3px;
  background-color: #E54667;
  border: none;
  margin: 25px auto 50px;
}

.sub-contact_text {
  font-size: 20px;
}

.sub-contact_header {
  text-align: center;
  margin-bottom: 100px;
}

.sub-contact_btn {
  text-align: center;
  margin-bottom: 30px;
}


/* --- 会社案内 --- */
.sub-company .sub_page_header {
  background-image: url('./images/sub_header_bg--company.jpg');
}

.sub-company_content--message {
  padding-bottom: 175px;
}

.sub-company_title_en--message {
  font-size: 64px;
  line-height: 1.5;
}

.sub-company_title_jp--message {
  font-size: 20px;
  font-weight: 400;
}

.sub-company_img--message {
  display: flex;
  margin: 80px auto;
  gap: 50px;
}

.sub-company_img_left {
  width: 40%;
}

.sub-company_img_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub-company_img_right {
  width: 60%;
  display: flex;
  flex-direction: column;
}

.sub-company_img_top {
  flex: 1;
}

.sub-company_img_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub-company_img_bottom {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-company_img_text {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 5px;
}

.sub-company_img_text:last-child {
  margin-bottom: 0;
}

.sub-company_text--message {
  margin-bottom: 40px;
}

.sub-company_ceo--message {
  text-align: right;
}

.sub-company_content--company {
  background: url('./images/bg_stripe.jpg') left top / 100% auto repeat;
  padding-top: 175px;
  padding-bottom: 175px;
}

.sub-company_header--company {
  text-align: center;
  margin-bottom: 100px;
}

.sub-company_title_en--company {
  font-size: 64px;
  line-height: 1.5;
}

.sub-company_title_jp--company {
  font-size: 20px;
  font-weight: 400;
}

.sub-company_box {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.sub-company_box_list {
  margin-bottom: 60px;
}

.sub-company_box_list:not(:first-child) {
  border-top: 2px solid #DBE9F5;
}

.sub-company_box_item {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #d1dae5;
  align-items: flex-start;
}

.sub-company_box_label {
  width: 30%;
  font-weight: bold;
  flex-shrink: 0;
}

.sub-company_box_value {
  width: 70%;
}

.sub-company_box_map {
  width: 100%;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}

.sub-company_box_map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .sub-company_box_item {
    flex-direction: column;
    padding: 20px 0;
  }

  .sub-company_box_label {
    width: 100%;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .sub-company_box_value {
    width: 100%;
    font-size: 15px;
  }

  .sub-company_box_map {
    aspect-ratio: 4 / 3;
  }

  .sub-company_img--message {
    flex-direction: column;
  }

  .sub-company_img_left,
  .sub-company_img_right {
    width: 100%;
  }

  .sub-company_img_bottom {
    padding: 30px 20px;
    text-align: center;
  }

  .sub-company_img_text {
    font-size: 16px;
  }
}


/* --- よくある質問 --- */
.sub-faq .sub_page_header {
  background-image: url('./images/sub_header_bg--faq.jpg');
}

.subpage.sub-faq {
  background: #EAF3FF;
}

.sub-faq_header {
  margin: 0 auto 80px;
}

.sub-faq_header_tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  list-style: none;
  padding: 0;
}

.sub-faq_header_tabs li {
  flex: 1;
}

.sub-faq_header_tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background-color: #005CAC;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s, opacity 0.3s;
}

.sub-faq_header_tab:hover {
  opacity: 1;
  background-color: #E54667;
}

.sub-faq_header_tab::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-2px) rotate(45deg);
}

@media (max-width: 768px) {
  .sub-faq_header_tabs {
    flex-direction: column;
    gap: 10px;
  }
  .sub-faq_header_tab {
    font-size: 16px;
    height: 50px;
  }
}

/* コンテンツエリア */
.sub-faq_header_content {
  text-align: center;
  line-height: 2;
  color: #333;
}

.sub-faq_header_lead {
  margin-bottom: 30px;
}

.sub-faq_block {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .sub-faq_header_tabs {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }

  .sub-faq_header_tab {
    font-size: 16px;
    height: 50px;
  }

  .sub-faq_header_lead {
    font-size: 17px;
    margin-bottom: 30px;
    text-align: left;
  }

  .sub-faq_header_text {
    font-size: 17px;
    text-align: left;
  }
}


/* --- サービス紹介 --- */
.sub-service .sub_page_header {
  background-image: url('./images/sub_header_bg--service.jpg');
}

.sub-service_block {
  margin-bottom: 100px;
}
.sub-service_header_content {
  text-align: center;
}
.sub-service_header_lead {
  max-width: 560px;
  width: 100%;
  margin: 0 auto 50px;
  line-height: 1.5;
  border-radius: 50px;
  background: #E54667;
  padding: 10px;
  color: #fff;
}

.sub-service_header_text {
  margin-bottom: 50px;
}
.sub-service .price_grid {
  margin-bottom: 30px;
}

.price_card-unique {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.price_card-unique .price_card_badge {
  margin-top: auto;
  margin-bottom: 0;
}
.price_card-unique .price_card_title {
  margin-bottom: 0;
}

/* --- 初めての方へ --- */
.sub-about .sub_page_header {
  background-image: url('./images/sub_header_bg--about.jpg');
}

.sub-about_header {
  text-align: center;
  margin-bottom: 80px;
}

.sub-about_sep {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.sub-about_sep-inner {
  width: 100%;
}

.sub-about_sep-item {
  width: 322px;
  height: 243px;
  margin: 0 30px;
  transform: translate3d(0px,0,0) scale(0.8) !important;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.sub-about_sep-img {
  width: 100%;
  height: 100%;
}

.sub-about_sep-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-prev.sub-about_sep-item,
.swiper-slide-next.sub-about_sep-item {
  transform: translate3d(0px,0,0) scale(1) !important;
  z-index: 10;
}

.sub-servicelist {
  text-align: center;
  padding-top: 175px;
  padding-bottom: 175px;
}

.sub-servicelist_devided {
  width: 100px;
  height: 3px;
  background-color: #005CAC;
  border: none;
  margin: 25px auto 50px;
}

.sub-servicelist_text {
  font-size: 20px;
  margin-bottom: 80px;
}

.sub-about .flow {
  background: #EAF3FF;
}

@media screen and (max-width: 767px) {
  .sub-about_sep-item {
    width: 20rem;
    height: 14rem;
    margin: 0 1rem;
  }
}

/* --- 選ばれる理由 --- */
.sub-reason .sub_page_header {
  background-image: url('./images/sub_header_bg--reason.jpg');
}

.sub-reason_header {
  text-align: center;
  padding-bottom: 175px;
  background: url('./images/sub-reason_header_bg.png') left bottom / 100% auto no-repeat;
}

.sub-reason_header_devided {
  width: 100px;
  height: 3px;
  background-color: #E54667;
  border: none;
  margin: 25px auto 50px;
}

.sub-reason_header_text {
  font-size: 20px;
  margin-bottom: 30px;
}

.sub-reason_header_title {
  letter-spacing: 0;
}

.sub-reason_onayami {
  background: url('./images/sub-reason_onayami_bg.jpg') left bottom / cover no-repeat;
  padding-top: 175px;
  padding-bottom: 175px;
}
.sub-reason_onayami .onayami_header {
  margin-bottom: 100px;
}
.sub-reason_onayami .onayami_title_box {
  position: relative;
  border-left: 0;
  border-right: 0;
  padding: 10px 50px;
  margin-bottom: 25px;
}
.sub-reason_onayami .onayami_title_box span {
  font-size: 28px;
}

.sub-reason_onayami .onayami_icon {
  top: -20px;
}

.sub-reason_onayami_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.sub-reason_onayami_text {
  color: #fff;
  margin-top: 50px;
  text-align: center;
}

.sub-reason_onayami_card {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.sub-reason_onayami_img {
  width: 100%;
  aspect-ratio: 16 / 9; /* 画像の比率を統一 */
  overflow: hidden;
}

.sub-reason_onayami_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub-reason_onayami_body {
  padding: 30px;
  flex-grow: 1;
}

.sub-reason_onayami_heading {
  font-size: 24px;
  margin-bottom: 20px;
}

/* チェックマーク付きリスト */
.sub-reason_onayami_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-reason_onayami_list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.sub-reason_onayami_list li:last-child {
  margin-bottom: 0;
}

.sub-reason_onayami_list li::before {
  background: url('./images/icon_check.png') left bottom / contain no-repeat;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
}

.sub-reason_onayami_bottom {
  text-align: center;
  color: #fff;
}

.sub-reason_onayami_bottom .onayami_reassurance_arrow {
  margin: 0 auto 40px;
}
.sub-reason_onayami_bottom .onayami_reassurance_arrow img {
  filter: brightness(100);
}

.sub-reason_onayami_message_top, .sub-reason_onayami_message_bottom {
  font-size: 46px;
  letter-spacing: 0;
  text-decoration: underline;
  color: #fff
}


.sub-reason_why {
  padding-top: 175px;
  padding-bottom: 50px;
}
.sub-reason_why_header {
  text-align: center;
}

.sub-reason_why_title {
  letter-spacing: 0;
}

.sub-reason_why_devided {
  width: 100px;
  height: 3px;
  background-color: #005CAC;
  border: none;
  margin: 25px auto 80px;
}

.sub-reason_why_item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
}

.sub-reason_why_item:last-child {
  margin-bottom: 0;
}

.sub-reason_why_visual {
  width: 50%;
  position: relative;
  padding-right: 15px;
  padding-bottom: 15px;
  flex-shrink: 0;
}

.sub-reason_why_visual::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 120px;
  left: 20px;
  border: 2px solid #E54667;
  border-left: none;
  border-radius: 0 20px 20px 0;
  z-index: 0;
}

.sub-reason_why_visual_inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sub-reason_why_img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.sub-reason_why_caption {
  background-color: #005CAC;
  color: #fff;
  padding: 20px 25px;
  font-size: 24px;
  line-height: 1.6;
  width: 92%;
  position: relative;
  transform: translateY(-50%);
}

.sub-reason_why_content {
  width: 50%;
  padding-top: 10px;
}

.sub-reason_why_heading {
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sub-reason_why_banner {
  padding-bottom: 100px;
}

.sub-reason_why_btmtext {
  margin-top: 50px;
  text-align: center;
  font-size: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (max-width: 768px) {
  .sub-reason_why_heading {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .sub-reason_why_caption {
    padding: 20px;
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .sub-reason_onayami_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sub-reason_onayami_body {
    padding: 20px;
  }

  .sub-reason_onayami_message_top {
    font-size: 18px;
  }

  .sub-reason_onayami_message_bottom {
    font-size: 22px;
  }

  .sub-reason_onayami_arrow {
    transform: scale(0.8);
    margin-bottom: 20px;
  }
}



/* Layout */
.txt_left { text-align: left; }
.txt_center { text-align: center; }
.txt_right { text-align: right; }
.left {
  margin-left: 0;
  margin-right: auto;
}
.center {
  margin-left: auto;
  margin-right: auto;
}
.right {
  margin-left: auto;
  margin-right: 0;
}
.items_center { align-items: center; }
.items_end { align-items: flex-end; }


/* Blog */
@media screen and (min-width:768px) {
  .blog_section .two_col {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 70px;
  }
}
@media screen and (min-width:768px) {
  .blog_section .two_col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.blog_section .content {
  max-width: initial;
  margin: 0 0 0 5.57%;
}

.faq_page .faq_list {
  margin-bottom: 175px;
}
.faq_page .faq_list:last-child {
  margin-bottom: 0;
}

.faq_page section.faq .content {
  max-width: 1100px;
}
.faq_page section.faq_content {
  background-color: #FFEED8;
}
.faq_page section.faq_content .content {
  max-width: 1100px;
}

/* blog */
@media screen and (min-width:1200px) {
  .blog_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 30px;
    width: 100%;
  }
}
@media screen and (min-width:768px) and (max-width:1199px) {
  .blog_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin: 100px auto 0;
    width: 100%;
  }
}
@media screen and (min-width:768px) {
  section.blog .content {
    padding-bottom: 150px;
  }
  .blog_list {
    margin: 100px auto 0;
  }
  .blog_list > .blog_box {
    position: relative;
  }
  .blog_box .blog_info {
    width: 100%;
  }
  .sub_top .blog_list {
    margin: 80px auto 120px;
  }
  .blog_detail .single_content {
    margin: 80px auto 0;
    padding-bottom: 80px;
  }
  .single_page_link {
    margin: 100px auto 0;
  }
  .single_page_link {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-items: center;
    gap: 0 25px;
  }
  ul.category_link_list,
  ul.inner_link_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 34px;
    margin: 0 auto;
  }
  ul.page-numbers {
    width: 100%;
    margin: 100px auto 0;
    text-align: center;
  }
  .single_page_link .prev_single {
    text-align: right;
  }
  .single_page_link .next_single {
    text-align: left;
  }
}
@media screen and (max-width:767px) {
  section.blog .content {
    padding-bottom: 150px;
  }
  .blog_list {
    margin: 100px auto 0;
  }
  .blog_list > .blog_box {
    height: auto;
    position: relative;
  }
  .blog_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px 0;
    margin: 0 auto 0;
    width: 100%;
    padding-top: 20px;
  }
  .blog_box .blog_info {
    width: 100%;
    padding: 15px 0;
  }
  .sub_top .blog_list {
    margin: 40px auto 60px;
  }
  .single_page_link {
    margin: 50px auto 0;
  }
  .single_page_link {
    display: grid;
    grid-template-columns: .6fr 1fr .6fr;
    justify-content: space-between;
    align-items: center;
  }
  .blog_detail .single_content {
    margin: 40px auto 0;
    padding-bottom: 40px;
  }
  ul.category_link_list,
  ul.inner_link_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 0;
    margin: 0 auto 90px;
  }
  ul.page-numbers {
    width: 100%;
    margin: 50px auto 0;
    text-align: center;
  }
  .single_page_link .prev_single a.more_size,
  .single_page_link .next_single a.more_size {
    font-size: .875rem;
  }
  .single_page_link .prev_single {
    text-align: left;
  }
  .single_page_link .next_single {
    text-align: right;
  }
  .single_page_link .back_singlelists p.button.orange a.section_title {
    font-size: 1rem;
    text-align: center;
  }
  .single_page_link .back_singlelists p.button.orange a.section_title .btn__text {
    text-align: center;
    padding: 0 37px 0 0;
  }
  .single_page_link .back_singlelists p.button.orange a:before {
    width: 20px;
    height: 20px;
  }
}
section.blog .content {
  max-width: 1100px;
}
.blog_list > .blog_box a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}
.blog_list > .blog_box a .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  z-index: 1;
}
.blog_list > .blog_box a .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.single_thumbnail .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.single_thumbnail .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blog p.date,
.blog_section p.date {
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  color: #BFBFBF;
}
.blog p.category,
.blog_section p.category {
  background-color: #E54667;
  color: #fff;
  text-align: center;
  padding: 8px 24px;
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
  line-height: 1;
}
.blog p.category.cat_works,
.blog_section p.category.cat_works,
.blog p.category.cat_works {
  background-color: #005CAC;
}
.blog h2.blog_title {
  font-weight: 700;
  margin: 15px auto 30px;
  line-height: 1;
}
.blog_box .blog_info p.blog_title {
  font-weight: 700;
  margin: 15px auto 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.blog_box .blog_info p.blog_description {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.blog_detail {
  margin: 30px auto 0;
}
.single_page_link .prev_single a,
.single_page_link .next_single a {
  font-weight: 700;
}
.single_page_link p.button {
  margin: 0 auto;
}
.single_page_link p.button a:after,
.single_page_link p.button a:hover:after {
  content: none;
}
.back_singlelists {
  text-align: center;
}
.back_singlelists a {
}
.back_singlelists a:hover {
}
ul.page-numbers li {
  display: inline-block;
  margin-right: 1em;
}
ul.page-numbers li .page-numbers.current {
  color: #E54667;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: .75;
}
ul.page-numbers li a {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: .75;
}
.blog_detail .single_content {
  border-bottom: 2px solid #1f1f1f;
}
ul.category_link_list li a,
ul.inner_link_list li a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
  display: block;
  background-color: #E54667;
  border: 1px solid #E54667;
  position: relative;
}
ul.inner_link_list li a:hover,
ul.category_link_list li a:hover,
ul.category_link_list li a.cat_news:hover {
  background-color: #fff;
  color: #E54667;
}
ul.category_link_list li a.black {
  background-color: #000;
  border: 1px solid #000;
}
ul.category_link_list li a.cat_works {
  background-color: #005CAC;
  border: 1px solid #005CAC;
}
ul.category_link_list li a.cat_blog {
  background-color: #E54667;
  border: 1px solid #E54667;
}
ul.category_link_list li a:after,
ul.inner_link_list li a:after {
  content: "";
  display: block;
  width: 18.5px;
  height: 10.5px;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
}
ul.inner_link_list li.yellow a {
  background-color: #005CAC;
  border: 1px solid #005CAC;
}
ul.inner_link_list li.yellow a:hover,
ul.category_link_list li a.cat_blog:hover {
  background-color: #fff;
  color: #005CAC;
}
ul.inner_link_list li a:hover:after,
ul.category_link_list li a:hover:after,
ul.category_link_list li a.cat_news:hover:after {
  background-image: url("./images/button_bottom_orange.png");
}
ul.inner_link_list li.yellow a:hover:after,
ul.category_link_list li a.cat_blog:hover:after {
  background-image: url("./images/button_bottom_yellow.png");
}
ul.inner_link_list li.black a {
  background-color: #171717;
  border: 1px solid #171717;
}
ul.inner_link_list li.black a:hover,
ul.category_link_list li a.black:hover {
  background-color: #fff;
  color: #171717;
}
ul.inner_link_list li.black a:hover:after,
ul.category_link_list li a.black:hover:after {
  background-image: url("./images/button_bottom_black.png");
}

/* Contact Page */
@media screen and (min-width:768px) {
  .contact_detail {
    margin: 100px auto 0;
    max-width: 1100px;
  }
  .contact_detail p.contact_notice {
    text-align: center;
  }
  .contact_detail table.contact_table tr {
    display: grid;
    gap: 0 5;
    grid-template-columns: .5fr 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .contact_detail table.contact_table tr:first-child th {
    border-bottom: none;
    padding: 20px 0 25px;
  }
  .contact_detail table.contact_table.confirm_table tr:first-child th,
  .contact_detail table.contact_table.confirm_table tr:first-child td {
    padding: 0 0 30px;
  }
  .contact_detail table.contact_table tr:first-child td {
    border-bottom: none;
    padding: 0 0 25px;
  }
  .contact_detail table.contact_table tr th {
    padding: 45px 0 25px;
  }
  .contact_detail table.contact_table.confirm_table tr th,
  .contact_detail table.contact_table.confirm_table tr td {
    padding: 30px 0;
  }
  .contact_detail table.contact_table tr td {
    border-bottom: none;
    padding: 25px 0;
  }
	.contact_detail table.contact_table tr td.cityfield {
		padding: 0;
	}
  .contact_detail table.contact_table tr th {
    justify-content: space-between;
  }
  .contact_detail table.contact_table {
    width: 100%;
    margin: 0 auto 30px;
  }
  .confirm_button {
    margin: 0 auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 0 30px;
  }
  .wpcf7-form-control-wrap input[type="text"],
  .wpcf7-form-control-wrap input[type="email"],
  .wpcf7-form-control-wrap input[type="tel"],
  .wpcf7-form-control-wrap textarea,
  .wpcf7-form-control-wrap ::placeholder {
    line-height: 1;
  }
  .button_section p.submit_button {
    margin: 50px auto 0;
	  width: 100%;
  max-width: 400px;
  }
  .confirm_button .button_section p.submit_button {
    margin: 0 auto 0;
  }
}
@media screen and (max-width:767px) {
  .contact_detail {
    margin: 47px auto 0;
    max-width: 768px;
  }
  .contact_detail p.contact_notice {
    text-align: left;
  }
  .contact_detail table.contact_table tr:first-child {
    margin-top: 0;
  }
  .contact_detail table.contact_table tr {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .contact_detail table.contact_table tr.blankth {
	margin-top: 0;
	padding-bottom: 0;
  }
  .contact_detail table.contact_table tr.blankthbefore {
	padding-bottom: 0;
  }
  .contact_detail table.contact_table tr:first-child th,
  .contact_detail table.contact_table tr:first-child td {
    border-bottom: none;
    padding: 0 0 10px;
  }
  .contact_detail table.contact_table tr th,
  .contact_detail table.contact_table tr td {
    border-bottom: none;
    padding: 10px 0;
  }
  .contact_detail table.contact_table tr.blankth th {
	padding: 0;
  }
  .contact_detail table.contact_table tr th span {
    margin-left: 10px;
  }
  .contact_detail table.contact_table {
    width: 100%;
    margin: 60px auto 0;
  }
  .confirm_button {
    display: block;
    margin: 40px auto 0;
  }
	.confirm_button .button_section {
		margin: 20px auto!important;
	}
  .previous_button input {
    width: calc(100% - 40px);
  }
  .wpcf7-form-control-wrap ::placeholder {
    line-height: 1.5;
  }
  .button_section p.submit_button {
    margin: 50px auto 0;
  }
  .confirm_button .button_section p.submit_button {
    margin: 0 auto 0;
  }
  p.button.orange .btn__text {
    padding: 0 40px 0 0;
  }
}
section.contact .subpage_title {
  max-width: initial;
}
section .content table.contact_table tr td {
  width: 100%;
}
.contact_detail table.contact_table tr th {
  font-weight: 700;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  line-height: 1;
}
.contact_detail table.contact_table.confirm_table tr th {
  font-size: 18px;
  line-height: 1.5;
}
.contact_detail table.contact_table.confirm_table tr td {
  font-size: 18px;
  line-height: 1.5;
}
.contact_detail table.contact_table tr th span {
  background-color: #E54667;
  color: #fff;
  text-align: center;
  padding: 4px 1px;
  width: 54px;
  display: inline-block;
  margin-left: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}
.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap input[type="date"],
.wpcf7-form-control-wrap textarea {
  border: 1px solid #DEDEDE;
  padding: 22px 30px;
  font-size: 18px;
  width: calc(100% - 80px);
  background-color: #DEDEDE;
  border-radius: 2px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.3;
}
.postcodefield .wpcf7-form-control-wrap input[type="text"] {
	max-width: 200px;
}
.wpcf7-form-control-wrap ::placeholder {
  color: #777;
  font-size: 18px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
}
.wpcf7-form-control-wrap .wpcf7-acceptance input[type="checkbox"] {
  display: none;
  width: initial;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-radio .wpcf7-list-item {
  margin: 0 40px 0 0;
}
.wpcf7-list-item-label,
.wpcf7-list-item-label a {
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
}
.wpcf7-list-item-label a {
  text-decoration: underline;
}
.wpcf7-list-item-label a:hover {
  text-decoration: none;
}
.wpcf7-list-item-label span.required {
  background-color: #E54667;
  color: #fff;
  text-align: center;
  padding: 4px 1px;
  width: 54px;
  display: inline-block;
  margin-left: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}
.wpcf7-radio .wpcf7-list-item:last-child {
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item {
  display: block;
  line-height: 1;
}
.wpcf7-acceptance .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 8px;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  position: relative;
  height: 20px;
  line-height: 20px;
  padding-left: 30px;
  display: inline-block;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #B3B3B3;
  border-radius: 20px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 1px;
  box-sizing: border-box;
}
.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #005CAC;
  position: absolute;
  left: 3px;
  top: 4px;
  border-radius: 50%;
}
.wpcf7-radio input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.wpcf7-radio .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 100%;
  content: "";
  width: 20px;
  height: 20px;
  margin-bottom: auto;
  margin-right: 10px;
  margin-top: auto;
}
.wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: #005CAC;
  box-shadow: inset 0 0 0 3px #fff;
}
div.button_section {
  display: block;
  text-align: center;
}
div.button_section:first-child {
  margin: 50px 0 0 auto;
}
div.button_section:last-child {
  margin: 50px auto 0 0;
}
div.button_section p.button {
  margin: 15px 0 0;
}
p.accept {
  text-align: center;
}
.wpcf7-spinner {
  width: 0;
  height: 0;
  margin: 0;
}
table.contact_table.confirm_table tr {
  border-bottom: 2px solid #B3B3B3;
}

/* button */
@media screen and (min-width:768px) {
  p.submit_button,
  p.previous_button {
    position: relative;
    display: inline-block;
  }
  p.submit_button:hover,
  p.submit_button input:hover,
  p.previous_button:hover,
  p.previous_button input:hover {
    cursor: pointer;
  }
  p.submit_button:hover input {
    opacity: 1;
  }
  p.button.margin {
    margin: 60px auto 40px;
  }
  .wpcf7-form-control.wpcf7-radio {
    padding: 15px 0;
    display: block;
  }
}
@media screen and (max-width:767px) {
  p.submit_button input {
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    transition: text-shadow 0.3s;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }
  p.previous_button input {
    background-color: #000;
    border: 1px solid #000;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    transition: text-shadow 0.3s;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .button.white a {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
  }
  p.submit_button,
  p.previous_button {
    position: relative;
    display: inline-block;
	width: 100%;
  }
  .button a:after {
    transition: .3s ease;
  }
  p.submit_button:hover,
  p.submit_button input:hover,
  p.previous_button:hover,
  p.previous_button input:hover {
    cursor: pointer;
  }
  p.submit_button:hover input {
    opacity: 1;
  }
  p.button.margin {
    margin: 60px auto 40px;
  }
}

/* 追従CTA */
.cta-sticky {
  display: none;
}
@media screen and (max-width:500px) {
  .cta-sticky {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background: linear-gradient(to right, #df4d69 0%, #df4d69 78.4%, #ebf3fe 78.4%, #ebf3fe 100%);
    /* padding-bottom: env(safe-area-inset-bottom); safariの下部ナビゲーション用 */
  }

  .cta-sticky_link {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .cta-sticky_link img {
    width: 100%;
    height: auto;
    display: block;
  }

  body {
    /* padding-bottom: env(safe-area-inset-bottom); safariの下部ナビゲーション用 */
  }
}

/* レスポンシブ */
@media screen and (max-width:1800px) {
  .header_nav nav .nav_left {
    width: 240px;
  }
  .header_nav nav .nav_right ul li {
    margin-right: 20px;
    font-size: 16px;
  }

  .fv .service_links .service_link_label {
    font-size: 18px;
  }
  .voice_tag {
    font-size: 18px;
  }
}
@media screen and (max-width:1600px) {
  .voice_prev {
    left: 31.5% !important;
    transform: none;
  }
  .voice_next {
    right: 31.5% !important;
    transform: none;
  }
  .voice_swiper .swiper-slide-next + .swiper-slide,
  .voice_swiper .swiper-slide-next + .swiper-slide + .swiper-slide {
    opacity: 0.4;
  }
  .voice_slider_container {
    padding: 0 20px;
  }
}
@media screen and (max-width:1550px) {
  .header_box > div nav ul li.tel a img {
    width: 200px;
  }
  .header_box > div nav ul li.mail {
    position: relative;
    width: 140px;
  }
  .header_box > div nav ul li.mail a {
    font-size: 14px;
  }
}
@media screen and (max-width:1400px) {
  .blog_section .content {
    margin: auto;
  }

  .header_nav nav .nav_right ul li {
    margin-right: 12px;
  }
  .header_box > div nav ul li.tel a img {
    width: 170px;
  }
  .header_box > div nav ul li.mail {
    position: relative;
    width: 130px;
  }
  .header_box > div nav ul li.mail a {
    font-size: 14px;
  }
  .header_nav nav .nav_left {
    width: 200px;
  }

  .fv .service_links {
    bottom: -35%;
    width: 75%;
  }
  .intro {
    padding-top: 25%;
  }
  .reasons_item_title {
    font-size: 20px;
  }
  .footer_copyright {
    margin-top: 30%;
  }
  .sub_page_header_main_title {
    font-size: 95px;
  }
}
@media screen and (max-width: 1249px) {
  .fv, .sub_page_header {
    margin-top: 55px;
  }
}
@media screen and (max-width:1200px) {
  .cta_btns {
    grid-template-columns: repeat(1, 1fr);
  }
  .cta_inner {
    padding-right: 20px;
  }
  .fv .service_links {
    bottom: -420px;
    width: 90%;
    max-width: 550px;
  }
  .intro {
    padding-top: 450px;
  }
  .onayami_reassurance_catch {
    font-size: 34px;
  }
  .onayami_reassurance_catch span {
    font-size: 50px;
  }
  .sub_page_header {
    height: 500px;
  }
  .sub_page_header::before {
    height: 70px;
  }
  .price_num {
    font-size: 60px;
    line-height: 1;
  }
}
@media screen and (max-width:1024px) {
  .blog_section .content {
    padding-top: 30px;
  }
  .cta_visual {
    display: none;
  }
  .cta_inner {
    padding-right: 20px;
    padding-left: 20px;
  }
  .cta_content {
    text-align: center;
    margin: 0 auto;
  }
  .onayami_title_main {
    font-size: 45px;
    letter-spacing: 0;
  }
  .blog_title_en {
    font-size: 120px;
    line-height: 1;
  }
  .footer_top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .intro_heading {
    letter-spacing: 0;
  }
  .flow_item_title {
    font-size: 26px;
  }
  .voice_slider_container {
    padding: 0 32px;
  }
  .voice_text {
    font-size: 16px !important;
  }
  .voice_prev {
    left: 1% !important;
  }
  .voice_next {
    right: 1% !important;
  }
  .voice_prev, .voice_next {
    width: 40px;
    height: 40px;
  }
  .voice_swiper .swiper-slide-next {
    opacity: 0.4;
  }
  .voice_swiper .swiper-slide-active {
    opacity: 1;
  }
  .sub-reason_why_item {
    flex-direction: column;
    gap: 0;
    margin: 0 auto 60px;
    max-width: 600px;
  }
  .sub-reason_why_visual {
    width: 100%;
    padding-right: 10px;
    padding-bottom: 10px;
  }

  .sub-reason_why_visual::before {
    top: 15px;
    left: 15px;
  }
  .sub-reason_why_content {
    width: 100%;
    padding-top: 0;
  }
  .sub_page_header_main_title {
    font-size: 50px;
  }
}
@media screen and (max-width:768px) {
  .fv .service_links .service_link_label {
    font-size: 15px;
  }
  .onayami_reassurance_text span {
    font-size: 28px;
  }
  .onayami_reassurance_catch {
    font-size: 24px;
  }
  .onayami_reassurance_catch span {
    font-size: 34px;
  }
  .reasons, .price {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .reasons_title_jp {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .price_title_jp {
    font-size: 22px;
    margin-left: 20px;
  }
  .price_lead {
    font-size: 16px;
  }
  .flow_item_title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .flow {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .flow_title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .flow_lead {
    font-size: 16px;
  }
  .flow_badge {
    font-size: 22px;
  }
  .flow_footer {
    margin-top: 50px;
  }
  .voice {
    padding-top: 50px;
  }
  .voice_header {
    margin: 0 auto 30px;
  }
  .blog, .faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .blog_title_jp {
    font-size: 22px;
  }
  .blog_header {
    margin-bottom: 50px;
  }
  .blog_meta {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .blog_tag {
    font-size: 16px;
    width: 130px;
  }
  .blog_item_title {
    font-size: 18px;
  }
  .blog_slider_container {
    width: 100%;
    margin-bottom: 50px;
  }
  .more_btn {
    font-size: 18px;
  }
  .blog_btn {
    flex-basis: auto;
  }
  .area_contents {
    margin: auto;
  }
  .area_title_en {
    font-size: 64px;
  }
  .area_title_jp {
    font-size: 22px;
  }
  .area_text {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .footer_address p,
  .footer_nav_list li a {
    font-size: 16px;
  }
  .footer_copyright {
    margin-top: 18%;
  }
  .footer_logo img {
    width: 260px;
  }
  .sub_page_header_lead {
    font-size: 16px;
  }
  .sub_page_header_sub_title {
    font-size: 22px;
  }
  .sub_page_header_main_title {
    font-size: 40px;
    letter-spacing: 0;
  }
  .sub_page_header {
    height: 350px;
    border-radius: 0;
    margin-bottom: 40px;
  }
  .sub_page_header::before {
    height: 50px;
    width: 3px;
  }
  .breadcrumb {
    margin: 0 auto 50px;
    font-size: 14px;
  }
  .sub-about_header {
    margin-bottom: 50px;
  }
  .sub-servicelist {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sub-servicelist_text {
    font-size: 16px;
    margin-bottom: 50px;
  }
  .sub-servicelist_devided {
    margin: 15px auto 30px;
  }
  .sub-reason_header_devided {
    margin: 15px auto 30px;
  }
  .sub-reason_header_text {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .sub-reason_header {
    padding-bottom: 50px;
  }
  .sub-reason_onayami {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sub-reason_onayami_text {
    margin-top: 30px;
  }
  .sub-reason_onayami .onayami_header {
    margin-bottom: 50px;
  }
  .sub-reason_onayami_grid {
    margin-bottom: 40px;
  }
  .sub-reason_why {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .sub-reason_why_devided {
    margin: 15px auto 50px;
  }
  .sub-reason_why_visual {
    margin-bottom: -20px;
  }
  .sub-reason_why_item {
    margin: 0 auto 40px;
  }
  .sub-reason_why_banner {
    padding-bottom: 50px;
  }
  .sub-service .sub-servicelist {
    padding-top: 0;
  }
  .sub-service .sub-faq_header_tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-service_header_lead {
    margin: 0 auto 30px;
  }
  .sub-service_header_text {
    margin-bottom: 30px;
  }
  .sub-service_block {
    margin-bottom: 60px;
  }
  .cta_lead_main {
    font-size: 25px;
  }
  .cta_lead_bg {
    font-size: 70px;
  }
  .cta_lead {
    margin-bottom: 0;
  }
  .cta_tel_number {
    font-size: 44px;
  }
  .cta_tel_logo {
    flex: 0 0 50px;
  }
  .sub-faq_header_tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .sub-company_img--message {
    margin: 40px auto 0;
    gap: 20px;
  }
  .sub-company_img_text {
    font-size: 18px;
  }
  .sub-company_text--message {
    margin-bottom: 20px;
  }
  .sub-company_content--message {
    padding-bottom: 50px;
  }
  .sub-company_content--company {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sub-company_header--company {
    margin-bottom: 50px;
  }
  .sub-company_box {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .sub-company_box_list {
    margin-bottom: 30px;
  }
  .sub-privacy_lead {
    margin-bottom: 40px;
  }
  .sub-privacy_section {
    margin-bottom: 40px;
  }
}
@media screen and (max-width:500px) {
  .fv_man img {
    width: 100%;
    margin: 0 auto;
  }
  .fv.w-content {
    padding: 0;
  }
  .fv_circle {
    width: 95%;
    position: absolute;
    top: 0;
    left: 5%;
  }
  .fv_wave img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
  }
  .fv_hokkaido {
    width: 50%;
    bottom: 24%;
    right: auto;
    left: 20px;
  }
  .fv_marquee {
    bottom: 10%;
    left: 0;
  }
  .fv_marquee__inner span {
    font-size: 50px;
  }
  .fv_bubble01 {
    width: 20%;
    position: absolute;
    top: 2.5%;
    left: 0;
  }
  .fv_bubble02 {
    width: 28%;
    position: absolute;
    bottom: auto;
    right: 0;
    top: 30%;
    z-index: 1;
  }
  .fv .service_links .service_link_label {
    font-size: 10px;
  }
  .fv .service_links {
    bottom: -230px;
    width: 90%;
    max-width: 550px;
  }
  .fv .service_link_thumb {
    border-radius: 6px;
  }
  .fv .service_link_item {
    padding: 3px 3px 0;
    border-radius: 8px;
  }
  .fv .service_link_label {
    font-size: 14px;
    padding: 5px 2px;
  }
  .fv .service_links {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .intro {
    padding-top: 260px;
    padding-bottom: 50px;
  }
  .intro_divider {
    margin: 10px auto;
  }
  .intro_description {
    text-align: justify;
  }
  .cta_lead_bg {
    font-size: 45px;
    letter-spacing: 0;
  }
  .cta_lead_main {
    font-size: 16px;
  }
  .cta_inner {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 20px;
  }
  .cta_content {
    padding-top: 10px;
  }
  .cta_tel_number {
    gap: 5px;
    font-size: 28px;
    margin-bottom: 0;
    letter-spacing: 0;
  }
  .cta_tel_logo {
    flex: 0 0 30px;
  }
  .cta_tel_hours {
    font-size: 14px;
    line-height: 1.6;
  }
  .cta_lead {
    margin-bottom: 10px;
  }
  .cta_tel_link {
    padding: 10px;
  }
  .cta_tel {
    margin: 0 auto 15px;
  }
  .cta_btn_link a {
    font-size: 16px;
    padding: 10px;
  }
  .cta_btn_icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  .cta_btn_arrow {
    width: 28px;
    height: 28px;
    margin-left: 10px;
  }
  .intro .cta_section {
    margin-bottom: 0;
  }
  .onayami_icon {
    width: 50px;
    left: -60px;
  }
  .onayami_title_main {
    font-size: 22px;
  }
  .onayami_title_main span {
    font-size: 22px;
  }
  .onayami_content {
    margin-bottom: 0;
  }
  .onayami_reassurance_title {
    margin-bottom: 10px;
  }
  .onayami_reassurance_title {
    font-size: 30px;
  }
  .onayami_reassurance_arrow {
    margin: 0 auto 20px;
  }
  .onayami_reassurance {
    padding: 40px 0 0;
  }
  .reasons_title_en {
    font-size: 64px;
    letter-spacing: 0;
    margin-bottom: 40px;
  }
  .reasons_title_en::after {
    bottom: -28px;
    height: 3px;
  }
  .reasons_title_jp {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .reasons_intro {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.75;
  }
  .reasons_header {
    margin: 0 auto 50px;
  }
  .reasons_item_text {
    padding: 0 15px;
    font-size: 16px;
  }
  .reasons_item_img {
    margin: 0 0 20px;
  }
  .reasons_banner {
    margin-top: 60px;
  }
  .price_title_jp {
    display: block;
    margin: 10px 0 0;
  }
  .price_header {
    margin-bottom: 30px;
  }
  .price_category_title {
    font-size: 20px;
    margin-bottom: 40px;
    position: relative;
  }
  .price_category_title::after {
    width: 80px;
  }
  .price_card {
    padding: 20px 20px 30px;
  }
  .price_card_img {
    margin: 0 auto 20px;
  }
  .price_card_title {
    font-size: 22px;
    line-height: 1.5;
  }
  .price_card_badge {
    font-size: 16px;
    line-height: 1.5;
    padding: 5px 15px;
    margin: 0 auto 20px;
  }
  .price_num {
    font-size: 42px;
    line-height: 1;
  }
  .price_num .yenmark {
    font-size: 28px;
  }
  .price_card_text {
    font-size: 15px;
    text-align: justify;
  }
  .price_card_link {
    margin-top: 10px;
    font-size: 16px;
  }
  .flow {
    background:
    url('./images/leaf02.png') right 3% top 45% / 15% auto no-repeat,
    url('./images/leaf01.png') left 3% top 1% / 30% auto no-repeat,
    url('./images/bg_tiles.png') left top / 100% auto repeat;
  }
  .flow_header {
    margin-bottom: 60px;
  }
  .voice_title_jp {
    display: block;
    margin: 10px 0 0;
  }
  .voice_item_title {
    font-size: 22px;
  }
  .blog_title_jp {
    font-size: 20px;
    margin: 0;
  }
  .blog_title_en {
    font-size: 64px;
    line-height: 1;
  }
  .area_box {
    padding: 30px;
  }
  .footer_inner {
    padding: 0;
  }
  .footer_nav_list li a {
    padding: 5px 0;
  }
  .footer_top {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .sub_page_header_main_title {
    font-size: 37px;
  }
  .sub_page_header_lead {
    font-size: 15px;
  }
  .sub-reason_onayami .onayami_title_box {
    padding: 10px 10px;
  }
  .sub-reason_onayami .onayami_title_box span {
    font-size: 24px;
  }
  .sub-reason_onayami .onayami_icon {
    top: -10px;
  }
  .sub-reason_onayami .onayami_title_main {
    font-size: 20px;
  }
  .sub-reason_onayami_heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sub-reason_why_caption {
    padding: 15px;
    font-size: 15px;
    width: 95%;
  }
  .sub-reason_why_btmtext {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
  }
  .sub-faq_header_tab {
    font-size: 14px;
  }
  .sub-faq_header_tabs {
    gap: 7px;
  }
  .sub-faq_header_tab::after {
    right: 15px;
    width: 8px;
    height: 8px;
  }
  .price_unit, .price_tax {
    font-size: 14px;
  }
  .sub-company_title_en--message {
    font-size: 44px;
  }
  .sub-company_title_jp--message {
    font-size: 18px;
  }
  .sub-company_img_bottom {
    padding: 30px 0;
  }
  .sub-company_title_en--company {
    font-size: 44px;
  }
  .sub-company_title_jp--company {
    font-size: 18px;
  }
  .sub-company_header--company {
    margin-bottom: 30px;
  }
  footer {
  	padding-bottom: 70px;
  }
  .sub-contact_text {
	font-size: 16px;
  }
}
