@charset "utf-8";

/*================================================
  Variables
================================================*/

:root {
  /* Color */
  --primary-color: #61C0BA;
  --primary-color-rgb:97, 192, 186;

  --secondary-color: #4694D1;
  --secondary-color-rgb: 70, 148, 209;

  --tertiary-color: #F9F1D9;
  --tertiary-color-rgb: 249, 241, 217;

  --accent-color: #FDBA50;

  --primary-text-color: #333D42;
  --primary-text-color-rgb: 51, 51, 51;
  --secondary-text-color: #333;

  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;

  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;

  --color-gray: #F5F5F5;
  --color-gray-rgb: 245, 245, 245;

  --color-dark-gray:#707070;

  --color-blue:#36A8D9;
  --color-blue-rgb: 54, 168, 217;

  --bg-light: #FBFAF9;
  --bg-dark: #647D9B;

  /* Layout */
  --header-size-sp: 54px;
  --header-size-pc: 86px;
  --layout-gap: 40px;
}

/*================================================
  basic
================================================*/

html {
  font-size: 62.5%;  /* フォントサイズを10pxに設定 */
}

body {
  color: var(--primary-text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;  /* 14px */
  line-height: 2;
  position: relative;
}

.font-josefin {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


.font-roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:"wdth" 100;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.font-poppins-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

@media print, screen and (min-width: 960px) {
  body {
    font-size: 1.6rem;  /* 16px */
  }
}


/*----- コンテンツが少ない場合に、フッターを最下部に固定 -----*/

html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  min-height: 1%;
  padding-top:calc(var(--header-size-sp) + 10px);
}

@media print, screen and (min-width: 960px) {
  body {
    /* min-height: 100vh; */
    min-height: 100dvh;
  }
  main {
    padding-top:calc(var(--header-size-pc) + 10px);
  }
}



/*----- リンクホバー -----*/
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .6;
  transition: opacity 0.25s ease-in;
}

/*----- PCで電話番号リンク無効 -----*/
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    /*    color: inherit;*/
    text-decoration: none;
    pointer-events: none;
  }
}

/*----- イメージ下スペース削除 右クリック禁止 -----*/
img {
  vertical-align: middle;
  width: 100%;
}

/*----- テーブルスタイル削除 -----*/
table {
  border-collapse: collapse;
}

/*----- リストスタイル削除 -----*/
ul, ol {
  list-style: none;
}


/*----- 可変BRタグ -----*/
.br-sp {
  display: inline-block;
}

@media print, screen and (min-width: 667px) {
  .br-sp {
    display: none;
  }
}

.br-tb {
  display: none;
}

@media print, screen and (min-width: 667px) {
  .br-tb {
    display: inline-block;
  }
}
@media print, screen and (min-width: 960px) {
  .br-tb {
    display: none;
  }
}

.br-pc {
  display: none;
}

@media print, screen and (min-width: 960px) {
  .br-pc {
    display: inline-block;
  }
}


/**/
mark {
  background-color: inherit;
}
/*================================================
  Header
================================================*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: var(--header-size-sp); */
  background-color: var(--color-white);
  z-index: 10;
  border-top: 4px solid var(--primary-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: calc(var(--layout-gap) / 3);
  height: calc(var(--header-size-sp) + 4px);
}

.header-inner {
  display: none;
  position: fixed;
  top: 4px;
  left: 0;
  width: 100%;
  padding-top: var(--header-size-sp);
  height:calc(100% - 4px);
  background-color: var(--color-white);
  overflow-y: scroll;
  /* z-index: -1; */
}

@media print, screen and (min-width: 960px) {
  .header {
    height: var(--header-size-pc);
    background-color: rgba(var(--color-white-rgb),0.9);
  }
  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    padding: 0 calc(var(--layout-gap) / 2);
  }

  .header-inner {
    display: block;
    overflow-y: visible;
    height: auto;
    width: auto;
    position: inherit;
    padding-top: 0;
    background-color: inherit;
  }
}

@media print, screen and (min-width: 1200px) {
  .header-container {
    padding: 0 calc(var(--layout-gap) / 1.5);
  }
}

@media print, screen and (min-width: 1600px) {
  .header-container {
    padding: 0 var(--layout-gap);
  }
}

/*================================================
  header-title
================================================*/

.header-title {
  display: inline-block;
  max-width: 382px;
  z-index: 10;
}

.header-title a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-title a > span {
  line-height: 1;
  display: block;
}

.header-title a > span.company-logo {
  width: 50px;
  height: auto;
}

.header-title a > span.company-name {
  color: var(--primary-text-color);
  font-size: clamp(1rem, 0.7818rem + 1.0909vw, 1.6rem);
  font-weight: 700;
  padding-left: 1em;
}


@media print, screen and (min-width: 960px) {
  .header-title a > span.company-name {
    font-size: clamp(0.9rem, 0.2rem + 1.1667vw, 1.6rem);
  }
}

@media print, screen and (min-width: 1200px) {
  .header-title a > span.company-logo {
    width: 60px;
  }
}


@media print, screen and (min-width: 1600px) {
  .header-title a > span.company-logo {
    width: 78px;
  }
  .header-title a > span.company-name {
    font-size: clamp(1.7rem, 1.2rem + 0.6667vw, 2rem);
  }
}

/*================================================
  Navigation Trigger
================================================*/

.nav-trigger {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--header-size-sp);
  height: var(--header-size-sp);
  margin-left: auto;
  z-index: 10;
}

@media print, screen and (min-width: 960px) {
  .nav-trigger {
    display: none;
  }
}

/*----- Symbol -----*/
.nav-trigger > i,
.nav-trigger > i::before,
.nav-trigger > i::after {
  position: relative;
  height: 2px;
  width: 20px;
  border-radius: 1px;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.nav-trigger > i::before,
.nav-trigger > i::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-trigger > i::before {
  transform: translateY(-7px);
}

.nav-trigger > i::after {
  transform: translateY(7px);
}

/*----- is-open Style -----*/
.is-open .nav-trigger > i,
.is-open .nav-trigger > i::before,
.is-open .nav-trigger > i::after {
  transition: all 0.3s;
}

.is-open .nav-trigger > i {
  background-color: transparent;
}

.is-open .nav-trigger > i::before {
  transform: rotate(-45deg);
}

.is-open .nav-trigger > i::after {
  transform: rotate(45deg);
}


/*================================================
  header-nav
================================================*/

.header-nav-list {
  padding:calc(var(--layout-gap) / 2);
}

.header-nav-item:not(:last-of-type) {
  border-top: 1px dashed rgba(var(--color-black-rgb),0.15);
}

.header-nav-item {
  position: relative;
}

.header-nav-item-label > a,
.header-nav-item-label > .header-nav-item-label-inner {
  padding: 1em 0;
  display: block;
  /* border-bottom: 3px solid transparent; */
}

.header-nav-item-label > a > span,
.header-nav-item-label > .header-nav-item-label-inner > span {
  display: block;
}

.header-nav-item-label > a > span.font-poppins,
.header-nav-item-label > .header-nav-item-label-inner > span.font-poppins {
  color: rgba(var(--primary-color-rgb), 0.35);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: calc(var(--layout-gap) / 6);
}

.header-nav-item-label > a > span:nth-of-type(2),
.header-nav-item-label > .header-nav-item-label-inner > span:nth-of-type(2) {
  color: var(--text-color);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}


@media print, screen and (min-width: 960px) {
  .header-nav {
    width: 100%;
  }

  .header-nav-list {
    padding: 0;
  }
  .header-nav-list {
    display: grid;
    grid-auto-flow: column;
    gap: 0.5em;
    align-items: center;
  }

  .header-nav-item {
    position: relative;
  }

  .header-nav-item:not(:last-of-type) {
    border-top: none;
  }

  .header-nav-list-item.for-privacy {
    display: none;
  }

  .header-nav-item-label > a ,
  .header-nav-item-label > .header-nav-item-label-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25em;
    /* height: 100%; */
    height:var(--header-size-sp);
    position: relative;
  }

  .header-nav-item-label > a > span.font-poppins,
  .header-nav-item-label > .header-nav-item-label-inner > span.font-poppins{
    display: none;
  }

  .header-nav-item-label > a > span:nth-of-type(2),
  .header-nav-item-label > .header-nav-item-label-inner > span:nth-of-type(2) {
    color: var(--color-text);
    text-align: center;
    font-size: clamp(0.7rem, -0.2rem + 1.5vw, 1.6rem);
    line-height: 1;
  }
}

@media print, screen and (min-width: 1200px) {
  .header-nav-list {
    gap: 1em;
  }
  /* .header-nav-item-label > a ,
  .header-nav-item-label > .header-nav-item-label-inner {
    height:var(--header-size-sp);
  } */
}


@media print, screen and (min-width: 1600px) {
  .header-nav-list {
    gap: 2em;
  }
  .header-nav-item-label > a > span:nth-of-type(2) {
    letter-spacing: 0.05em;
  }
}

/*================================================
  Header Contact
================================================*/

.header-contact {
  margin-top: calc(var(--layout-gap) / 1);
}

.header-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25em 2em 1.25em 1.5em;
  line-height: 1;
  background-color: var(--secondary-color);
}

.header-contact > a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_mail_white.svg);
  background-size: contain;
  background-position: center;
  margin-right: 0.5em;
}

.header-contact > a span {
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
}

@media print, screen and (min-width: 960px) {
  .header-contact {
    margin:0 0 0 0.5em;
  }
  .header-contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.75em 1em;
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 60px;
  }
  .header-contact > a::before {
    background-image: url(../../image/common/icon_mail_white.svg);
    margin-right: 0.5em;
  }

  .header-contact > a span {
    color: var(--color-white);
    font-size: clamp(0.7rem, -0.2rem + 1.5vw, 1.6rem);
  }

  .header-contact > a:hover {
    background-color:var(--color-white);
    transition: all .2s ease-in;
    opacity: 1;
  }
  .header-contact > a:hover span {
    color: var(--secondary-color);
  }
  .header-contact > a:hover::before {
    background-image: url(../../image/common/icon_mail_blue.svg);
    transition: all .2s ease-in;
    opacity: 1;
  }
}

@media print, screen and (min-width: 1600px) {
  .header-contact > a {
    padding: 1em 1.5em;
  }
  .header-contact > a::before {
    /* width: 21.6px;
    height: 21.6px; */
    margin-right: 0.75em;
  }
}

/*------------------------------------------------
  Accordion
------------------------------------------------*/

.accordion-list {
  display: none;
  /* background-color: var(--color-gray-light); */
}

.accordion-item > a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 calc(var(--layout-gap) / 2);
  font-size: 1.4rem;
  font-weight: bold;
}
.accordion-item > a > span {
  position: relative;
  margin-left: 0.5em;
}
.accordion-item > a > span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/arrow_right_primary.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
}

@media print, screen and (min-width: 960px) {
  .accordion {
    display: none;
    position: absolute;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .accordion-list {
    display: block;
    background-color: var(--primary-color);
    position: absolute;
    z-index: 100;
    left: calc(50% - 90px);
    width: 180px;
    opacity: 0;
    visibility: hidden;
  }
  .header-nav-item:hover .accordion-list::before {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--primary-color);
    height: calc(12px / 2);
    width: 12px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    top: -6px;
    left:50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  .header-nav-item:hover .accordion-list {
    animation-name: headerNavSublistAnim;
    animation-duration: 0.2s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
  }

  @keyframes headerNavSublistAnim {
    0% {
      opacity: 0;
      visibility: hidden;
    }
    100% {
      opacity: 1;
      visibility: visible;
    }
  }

  .accordion-item > a {
    color: var(--color-white);
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.2;
    padding:calc(var(--layout-gap) / 4) calc(var(--layout-gap) / 4) calc(var(--layout-gap) / 4) var(--layout-gap);
    height: auto;
  }

  .accordion-item > a:hover {
    background-color: rgba(var(--secondary-color-rgb), 1);
    transition: background-color 0.3s ease-in;
    opacity: 1;
  }

  .accordion-item > a > span::before {
    background-image: url(../../image/common/arrow_right_white.svg);
  }
}

@media print, screen and (min-width: 1200px) {
  .accordion-item > a {
    font-size: 1.4rem;
    height: 60px;
  }
}




/*----- Trigger -----*/

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  top: 10px;
  right: 0;
  width: 60px;
  height: 60px;
}

.accordion-trigger:focus {
  outline: none;
}

@media print, screen and (min-width: 960px) {
  .accordion-trigger {
    display: none;
  }
}

/*----- Symbol -----*/

.accordion-trigger > i,
.accordion-trigger > i::before {
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.accordion-trigger > i::before {
  content: "";
  position: absolute;
  transform: rotate(90deg);
}

/*----- is-open Style -----*/

.accordion.is-open .accordion-trigger > i::before {
  transform: rotate(0deg);
  transition: all 0.3s;
}

/*----- is-dropdown Style -----*/

@media print, screen and (min-width: 960px) {
  .header-nav-item:hover .accordion {
    display: block;
    animation-name: dropdownAnimation;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
  }

  @keyframes dropdownAnimation {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/*================================================
  footer
================================================*/

.footer {
  width: 100%;
  background-color: var(--color-gray);
  border-bottom: 5px solid var(--primary-color);
  padding:var(--layout-gap) calc(var(--layout-gap) / 1.5);
}
.footer-inner {
  max-width: 1160px;
  margin: auto;
}

.footer-title {
  display: inline-block;
}

.footer-title a {
  display:block;
}

.footer-title a > span {
  display: block;
  line-height: 1;
}
.footer-title a > span.company-logo {
  width: 60%;
  max-width: 180px;
}
.footer-title a > span.company-name {
  color: var(--primary-text-color);
  font-size: clamp(1.8rem, 1.74rem + 0.3vw, 2.1rem);
  font-weight: 700;
  margin-top: 2em;
}

.footer-address {
  margin: 1em 0;
  font-style: normal;
  line-height: 1.5;
}

.footer-nav {
  max-width: 400px;
}

.footer-nav-list {
  margin: calc(var(--layout-gap) / 1.25) auto;
  /* display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  grid-template-columns: repeat(2, 50%);
  gap: 0; */
  column-count: 2;
  column-gap: 1em;
}

.footer-nav-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.footer-nav-item:nth-child(6) {
  break-after: column;
}

.footer-nav-item > a {
  padding:1em 0.5em;
  display: block;
  line-height: 1;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  font-weight: 700;
  width: 100%;
}

.sub-nav-item > a {
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);
  padding:1em 0.5em;
  display: block;
  line-height: 1;
  padding-left: 2em;
}

.sub-nav-item > a::before {
  content: "ー";
  display: inline-block;
  text-indent: -1.25em;
  padding-right: 0.5em;
}

.footer-copyright {
  line-height: 1;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);
  text-align: right;
  width: 100%;
}

@media print, screen and (min-width: 640px) {
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-title a > span.company-logo {
    margin-left: 0;
  }
  .footer-nav {
    /* min-width: 300px; */
    min-width: 280px;
  }
  .footer-nav-list {
    /* margin: 0 0  calc(var(--layout-gap) *2); */
    margin: 0 0  calc(var(--layout-gap) *1.25);
    column-gap: 0.5em;
    /* gap: 1em; */
  }
  .footer-nav-item a {
    /* padding: 0; */
    padding:1em 0.15em ;
    display: inline-block;
    width: auto;
  }
  /* .sub-nav-item > a {
    margin-top: 1em;
  }
  */
  .sub-nav-item > a::before {
    text-indent: 0;
  }
}

@media print, screen and (min-width: 960px) {
  .footer {
    padding: calc(var(--layout-gap) * 1.5) var(--layout-gap);
  }
  .footer-nav {
    width: 430px;
  }
}

@media print, screen and (min-width: 1600px) {
  .footer {
    padding: calc(var(--layout-gap) *2) 0;
  }
}

/*================================================
  page-top-button
================================================*/

.page-top-button {
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  background-image: url(../../image/common/icon_page_top.svg);
  background-size: 100%;
  background-position: center;
  position: fixed;
}

@media print, screen and (min-width: 769px) {
  .page-top-button {
    right: 30px;
    bottom: 30px;
    width: 63px;
    height: 63px;
  }
}

/*================================================
  page-header
================================================*/

.page-header {
  background-color: var(--tertiary-color);
  background-image: url(../../image/common/page_header_bg_img.svg);
  background-position: right -20% bottom;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 40px 0 0 40px;
  width:98%;
  height: 190px;
  margin-left: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--layout-gap) 2em;
  /* margin-top: var(--header-size-sp); */
}

.page-header-title {
  width: 100%;
}

.page-header-title span {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.page-header-title span:nth-child(2) {
  animation-delay: 0.3s; /* 2つ目をちょっと遅らせる */
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-header-title > span:nth-child(1) {
  color: var(--primary-color);
  display: block;
  font-weight: 700;
  font-size: clamp(1.2rem, 0.96rem + 1.2vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 0.75em;
}

.page-header-title > span:nth-child(2) {
  display: block;
  /* font-size: clamp(2rem, 1.48rem + 2.6vw, 4.6rem); */
  font-size: clamp(2.2rem, 1.72rem + 2.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media print, screen and (min-width: 769px) {
  .page-header {
    height: 300px;
    padding: calc(var(--layout-gap)*1.5)
  }
  .page-header-title > span:nth-child(2) {
    letter-spacing: 0.12em;
  }
}

@media print, screen and (min-width: 1200px) {
  .page-header {
    height: 350px;
    background-position: right bottom;
    border-radius: 60px 0 0 60px;
    padding: calc(var(--layout-gap)*1.75)
  }
}

@media print, screen and (min-width: 1600px) {
  .page-header {
    height: 400px;
    background-position: right top;
    background-size: auto;
    width: 90%;
    padding: calc(var(--layout-gap)*2.5)
  }
}

/*================================================
  section
================================================*/
/* .section {
  padding:calc(var(--layout-gap)/1.5) 0;
} */
.section-container {
  margin: 0 auto;
  padding:calc(var(--layout-gap)/1) calc(var(--layout-gap)/1.5);
  max-width: 1160px;
}
.section-title {
  width: 100%;
  margin-bottom: calc(var(--layout-gap) / 1.25);
}
.section-title-en {
  background: linear-gradient(90deg, #61C0BA, #4694D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
}

.section-title-jp {
  color: var(--primary-text-color);
  display: block;
  line-height: 1.5;
  font-size: clamp(1.8rem, 1.44rem + 1.8vw, 3.6rem);
  font-weight: 900;
}

.section-title-jp.for-quotes {
  text-indent: -0.5em;
}

@media print, screen and (min-width: 769px) {
  .section-container {
    padding:calc(var(--layout-gap)*2) 0;
    width: 90%;
  }
  .section-title {
    margin-bottom: calc(var(--layout-gap) *1.5);
  }
}

@media print, screen and (min-width: 1200px) {
  .section-container {
    padding:calc(var(--layout-gap)*2.5) 0;
    /* width: 80%; */
  }
}

@media print, screen and (min-width: 1600px) {
  .section-container {
    padding:calc(var(--layout-gap)*3) 0;
    width: 100%;
  }
}

/*------------------------------------------------
  content-title
------------------------------------------------*/
.content-title {
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 1em 0;
}

.content-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin-top: calc(var(--layout-gap)/2);
  border-left: 30px solid var(--secondary-color);
  background-color: rgba(var(--secondary-color-rgb), 0.3);
}

.content-subtitle {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.5em;
  margin: calc(var(--layout-gap)/3) 0  calc(var(--layout-gap)/4);
}

@media print,screen and (min-width: 769px) {
  /* .content-title {
    margin: 1.5em 0;
  } */
}

.content-title-band {
  font-size: clamp(1.6rem, 1.44rem + 0.8vw, 2.4rem);
  line-height: 1.25;
  margin: calc(var(--layout-gap) / 1.5) 0;
  padding: 0.75em 0 0.75em 1.5em;
  background-color: var(--color-gray);
  position: relative;
}
.content-title-band::before {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #61C0BA, #4694D1);
  position: absolute;
  left: 0;
  top: 0;
}



/*================================================
  button
================================================*/

/*------------------------------------------------
  button-label-primary
------------------------------------------------*/

.button-label-primary {
  max-width: 220px;
  display:flex;
  position: relative;
}
.button-label-primary > a,
.button-label-primary > span {
  color: #fff;
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 32px;
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  width: 100%;
  height:100%;
  transition: all .3s linear;
  position: relative;
  opacity: 1;
  box-sizing: border-box;
  /* padding: 12.5px 30px; */
  padding:1em 3em 1em 2em;
}
.button-label-primary > a:hover,
.button-label-primary > span:hover  {
  color:var(--secondary-color);
  background-color: #fff;
  transition: all .3s linear;
}
.button-label-primary::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/arrow_right_white.svg);
  background-position: center;
  background-size: contain;
  right: 12.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s linear;
  position: absolute;
}
.button-label-primary:hover::after {
  right: 7.5px;
  background-image: url(../../image/common/arrow_right_primary.svg);
}


@media print, screen and (min-width: 769px) {
  .button-label-primary {
    height: 60px;
    max-width: 275px;
  }
  .button-label-primary > a {
    font-size: 1.6rem;
    padding: 0 3em 0 2em;
  }
  .button-label-primary::after {
    right: 20px;
  }
  .button-label-primary:hover::after {
    right: 15px;
  }
}

/*------------------------------------------------
  button-label-secondary
------------------------------------------------*/

.button-label-secondary {
  width: 40px;
  height: 40px;
  margin: auto;
}
.button-label-secondary .button-link {
  display: block;
}
.button-label-secondary .button-link > img {
  border-radius: 50%;
  border: 2px solid var(--color-white);
  overflow: hidden;
}

@media print, screen and (min-width: 1200px) {
  .button-label-secondary {
    width: 60px;
    height: 60px;
  }
}

/*------------------------------------------------
  button-label-downward
------------------------------------------------*/

.button-label-downward {
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
  height:100%;
  transition: all .3s linear;
  position: relative;
  opacity: 1;
  box-sizing: border-box;
  padding:1em 3em 1em 2em;
  margin: auto;
}
.button-label-downward::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  border-radius: 50%;
  background-color: var(--color-white);
  background-size: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 5px;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}


/*------------------------------------------------
  link-window
------------------------------------------------*/

.link-window::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background-image: url(../../image/common/icon_window.svg);
  background-size: contain;
  background-position: center;
  margin-left: 10px;
}

.link-window:hover {
  border-bottom: 1px dashed var(--secondary-color);
  opacity: 1;
}


/*================================================
  CTA
================================================*/
.cta {
  background: linear-gradient(315deg, #61C0BA, #4694D1);
  padding:calc(var(--layout-gap)*1.75) 0;
}
.cta-container {
  position: relative;
  background-color: var(--color-white);
  border-radius: 30px;
  width: 90%;
  max-width: 1160px;
  padding: calc(var(--layout-gap)/1.25);
  margin:0 auto;
}
.cta-container::before {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: var(--layout-gap);
  background-image: url(../../image/common/cta_img.svg);
  background-size: contain;
  top: calc(var(--layout-gap)/2 *-1);
  left: 0;
  mix-blend-mode: multiply;
}
.cta-title {
  max-width: 682px;
  margin-bottom: 1em;
}
.cta-method-tel {
  display: block;
}
.cta-method-name {
  display: block;
  font-weight: 900;
  /* font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem); */
  font-size: clamp(1rem, 0.72rem + 1.4vw, 2.4rem);
  line-height: 1.25;
  margin: 0.75em 0;
}
.cta-number {
  display: block;
  color: var(--secondary-color);
  font-size: clamp(2.8rem, 1.76rem + 5.2vw, 8rem);
  font-weight: 900;
  line-height: 1;
}
.cta-time {
  display: block;
  font-size: clamp(1rem, 0.76rem + 1.2vw, 2.2rem);
  list-style: 1.25;
}

.cta-method-mail {
  max-width: 360px;
  margin: 1.5em 0 0;
  width: auto;
}
.cta-method-mail > a {
  color: #fff;
  background-color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 34px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  height: 100%;
  transition: all .3s linear;
  position: relative;
  opacity: 1;
  box-sizing: border-box;
  padding:1.5em 2.5em 1.5em 4em;
}
.cta-method-mail > a:hover  {
  color:var(--secondary-color);
  background-color: #fff;
  transition: all .3s linear;
}
.cta-method-mail > a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_mail_white.svg);
  background-position: center;
  background-size: contain;
  left: 2em;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s linear;
  position: absolute;
}
.cta-method-mail > a:hover::before {
  background-image: url(../../image/common/icon_mail_blue.svg);
}

.cta-illust {
  height: 100px;
  width: auto;
  position: absolute;
  bottom: -60px;
  right: -10px;
}

.cta-illust > img {
  height: 100%;
  width: auto;
}

@media print, screen and (min-width: 480px) {
  .cta-container {
    padding: var(--layout-gap);
  }
  .cta-illust {
    height: 180px;
  }
}

@media print, screen and (min-width: 690px) {
  .cta-container {
    padding: calc(var(--layout-gap)*1.25);
    border-radius: 40px;
  }
  .cta-illust {
    height: 220px;
    bottom: -40px;
  }
}

@media print, screen and (min-width: 769px) {
  .cta-container {
    padding: calc(var(--layout-gap)*1.5);
  }
  .cta-method-mail > a {
    font-size: 1.6rem;
  }
  .cta-illust {
    height: 245px;
    right: 15px;
    bottom: -40px;
  }
}

@media print, screen and (min-width: 1200px) {
  .cta {
    padding:calc(var(--layout-gap)*2.5) 0;
  }
  .cta-container {
    padding: calc(var(--layout-gap)*2) calc(var(--layout-gap)*2) calc(var(--layout-gap)*1.75);
    border-radius: 60px;
  }
  .cta-container::before {
    width: 735px;
    height: 106px;
    top: -60px;
    left: -50px;
  }
  .cta-title {
    margin-bottom: 2em;
  }
  .cta-method-mail {
    margin-bottom: 0;
  }
  .cta-illust {
    height: 345px;
    right: 60px;
    bottom: -30px;
  }
}

/*================================================
  card-link
================================================*/

.card-link {
  pointer-events: none; /* クリック無効化 */
}

.card-link .button-link {
  pointer-events: auto; /* ボタンだけクリック可能に */
}
@media print, screen and (min-width: 769px) {
  .card-link {
    pointer-events: auto;
  }
}


/*================================================
  page-link
================================================*/

.page-link {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: var(--layout-gap) auto;
  width: 88%;
}

.page-link-item.button-label-downward {
  margin: 0;
  padding: 1em 2.5em 1em 1.5em;
  background-color: var(--color-gray);
  border: 2px solid var(--color-gray);
}

.page-link.individual .page-link-item.button-label-downward {
  background-color: #EFF9F8;
  border: 2px solid #EFF9F8;
}
.page-link.corporate .page-link-item.button-label-downward {
  background-color: #ECF4FB;
  border: 2px solid #ECF4FB;
}

.page-link-item.button-label-downward::after {
  background-image: url(../../image/common/arrow_down_gray.svg);
  transition: top 0.3s ease-in-out;
}

.page-link-item.button-label-downward:hover::after {
  top: calc(50% + 0.2em);
  transition: top 0.3s ease-in-out;
}

@media print, screen and (min-width: 1200px) {
  .page-link {
    max-width: 1160px;
    margin: calc(var(--layout-gap) *2) auto;
  }
}
@media print, screen and (min-width: 1600px) {
  .page-link {
    width: 100%;
  }
}

/*================================================
  bottom-city
================================================*/

.bottom-city-left::after {
  content: "";
  display: block;
  height: 60px;
  width: 100%;
  background-image: url(../../image/common/bottom_img_left.svg);
  background-size: contain;
  background-position: bottom -5px left;
  z-index: 2;
  position: relative;
}
.bottom-city-right::after {
  content: "";
  display: block;
  height: 60px;
  width: 100%;
  background-image: url(../../image/common/bottom_img_right.svg);
  background-size: contain;
  background-position: bottom -5px right;
  margin-left: auto;
  z-index: 2;
  position: relative;
}

@media print, screen and (min-width: 769px) {
  .bottom-city-left::after {
    height: 100px;
    width: 49%;
    background-position: bottom -5px left;
  }
  .bottom-city-right::after {
    height: 100px;
    width: 90%;
    background-position: bottom -5px right;
  }
}

@media print, screen and (min-width: 1200px) {
  .bottom-city-left::after {
    height: 150px;
    background-position: bottom -5px left;
  }
  .bottom-city-right::after {
    height: 150px;
    background-position: bottom -5px right;
  }
}

/*================================================
  bottom-city
================================================*/

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.3s; /* ← ここで遅らせる（0.3秒待つ） */
}

.fade-in-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
