@charset "utf-8";

/*------------------------------------------------
Variables
------------------------------------------------*/

:root {
  /* Color */
  --primary-color: #003A63;
  --primary-color-rgb:0, 58, 99;
  --secondary-color: #1F2A54;
  --secondary-color-rgb:31,42,84;
  --accent-color: #4694D1;
  --accent-color-rgb:238, 179, 24;
  --primary-text-color: #1A1311;
  --primary-bg-color:#EBF5FF;

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

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

  --color-gray: #707070;
  --color-gray-light: #f5f5f5;

  --color-blue-light: #BCD4DF;
  --color-blue-white:#EAEFF1;

  /* Layout */
  --header-size-sp: 60px;
  --header-size-pc: 120px;
  --layout-gap: 40px;
}
/*------------------------------------------------
基本
------------------------------------------------*/
@media print {
  header {
    position: static !important; /* fixed解除 */
  }
  body {
    width: 1080px;
    margin: 0 auto;
  }
  main {
    padding-top: 0 !important;
  }
}

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-serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.font-poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.font-oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.font-roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:"wdth" 100;
}


@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: var(--header-size-sp);
}

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


/*----- リンクホバー -----*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease-in;
}

a:hover {
  opacity: .7;
  transition: opacity .2s 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;
  }
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-size-sp);
  background-color: var(--color-white);
  z-index: 11;
}

.header-container {
  width: 100%;
  height: var(--header-size-sp);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* padding-left: calc(var(--layout-gap) / 3); */
  padding-left: calc(var(--layout-gap) / 2);
}
.header-mail {
  display: none;
}
.header-inner {
  display: none;
  position: fixed;
  top: calc(var(--header-size-sp) );
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-size-sp));
  background-color: var(--color-white);
  overflow-y: scroll;
}

@media print, screen and (min-width: 960px) {
  .header {
    height:var(--header-size-pc);
    background-color: initial;
  }
  .header-container {
    margin: 0 auto;
    height: 100%;
    /* padding:0 calc(var(--layout-gap) / 2); */
    /* padding: 0 calc(var(--layout-gap) *1); */
    padding: 0 calc(var(--layout-gap) /1.5);
    justify-content: space-between;
    background-color: var(--color-white);
    position: relative;
    z-index: 9;
  }
  .header-mail {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header-inner {
    position: initial;
    display: block;
    overflow-y: visible;
    top: 110px;
    height: 50px;
    background-color: var(--color-white);
    /* transition: all 0.3s ease-in-out; */
    z-index: 8;
    width: calc(100% - 200px);
    /* width: calc(100% - 240px); */
    /* width: auto; */
  }
  .header-inner.scroll-hide {
    transform: translateY(-100%);
  }
}
@media print, screen and (min-width: 1200px) {
  .header-container {
    padding:0 calc(50% - 500px);
  }
}

/*------------------------------------------------
  header-title
------------------------------------------------*/
.header-title {
  height: calc(100% - 20px);
  width: 230px;
}
.header-title-button {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 100%;
}
.header-title-button > img {
  width: auto;
  height: 100%;
}
.header-title-button > span {
  font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.8rem);
  font-weight: 400;
  margin-left: 10px;
  line-height: 1;
  padding:5px 0;
}
@media print, screen and (min-width: 480px) {
  .header-title {
    width: 260px;
  }
}
@media print, screen and (min-width: 960px) {
  .header-title {
    width: 200px;
    height: auto;
  }
  .header-title-button > img {
    width: 155px;
    height: auto;
  }
  .header-title-button > span {
    margin-left: 0;
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 1200px) {
  .header-inner {
    width: calc(100% - 350px);
  }
  .header-title {
    width: auto;
  }
  .header-title-button > span {
    margin-left: 10px;
  }
  .header-title-button > img {
    width: 160px;
  }
}


/*------------------------------------------------
  nav-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;
}
@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: 35px;
  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(-8px);
}

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

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

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

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

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

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

.header-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.header-nav-item {
  border-bottom: 1px solid var(--color-gray-light);
  width: 100%;
  position: relative;
}

.header-nav-item-label > a,
.header-nav-item-label > .header-nav-item-label-inner {
  color: var(--primary-color);
  font-weight: 700;
  padding: calc(var(--layout-gap) / 2.75) 0;
  display: block;
}

.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: 700;
  line-height: 1;
}


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

  .header-nav-list {
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    display: flex;
    flex-wrap: wrap;
  }

  .header-nav-item {
    position: initial;
    border-bottom: none;
    width: auto;
    margin-right: 5px;
  }

  .header-nav-item-label {
    position: relative;
  }
  .header-nav-item:nth-last-of-type(2):hover .header-nav-item-label::before,
  .header-nav-item:nth-of-type(2):hover .header-nav-item-label::before {
    content: "";
    display: block;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent var(--primary-color) transparent;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 10px);
    transform: translateY(-50%);
    z-index: 12;
    transition: color 0.3s ease-in, background-color 0.3s ease-in;
  }


  .header-nav-item-label > a,
  .header-nav-item-label > .header-nav-item-label-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 0.8em;
    height: 50px;
    border-radius: 25px;
    border: 1px solid var(--primary-color);
  }
  .header-nav-item-label > a:hover,
  .header-nav-item-label > .header-nav-item-label-inner:hover {
    color: var(--color-white);
    background-color: var(--secondary-color);
    opacity: 1;
    transition: color 0.3s ease-in, background-color 0.3s ease-in;
  }
  .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,
  .header-nav-item-label > .header-nav-item-label-inner > span {
    color: var(--color-text);
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    text-align: center;
    padding: 0;
  }

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



@media print, screen and (min-width: 1200px) {
  .header-nav-item-label > a, .header-nav-item-label > .header-nav-item-label-inner {
      padding: 1em;
  }
}



/*------------------------------------------------
  header-sp
------------------------------------------------*/

.header-nav-item.header-sp-contact {
  width:100%;
  max-width: 320px;
  border-bottom: none;
  padding: calc(var(--layout-gap) / 2) ;
}

.header-nav-item.header-sp-contact a {
  color: var(--color-white);
  font-size: 1.6rem;
  display: flex;
  width: 100%;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--layout-gap) / 4);
}
.header-nav-item.header-sp-contact a {
  background-color: var(--primary-color);
}

.header-nav-item.header-sp-contact a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: contain;
  background-position: center;
  margin: 0 7.5px 0 0;
  background-image: url(../../image/common/icon_mail.svg);
}

@media print, screen and (min-width: 960px) {
  .header-nav-item.header-sp-contact {
    width: 140px;
    height: 50px;
    padding: 0;
    margin-left: calc(var(--layout-gap) / 4);
  }
  .header-nav-item.header-sp-contact a {
    width: 140px;
    height: 50px;
    border-radius: 25px;
  }
}


/*------------------------------------------------
  Accordion
------------------------------------------------*/
.accordion-list {
  display: none;
  /* background-color: var(--color-gray-light); */
  background-color: var(--primary-color);
}
.accordion-list-title {
  color: var(--color-white);
  width: 100%;
  display: none;
  align-items: center;
  line-height: 1;
}
.accordion-list-title > span:nth-of-type(1) {
  text-transform: uppercase;
  font-size: 2rem;
}
.accordion-list-title > span:nth-of-type(2) {
  font-size: 0.85em;
  padding-left: 1em;
}
.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:nth-of-type(1) {
  width: 40px;
}

.accordion-item > a > span:nth-of-type(2) {
  width: calc(100% - 50px);
  padding-left: 10px;
  color: var(--color-white);
}

@media print, screen and (min-width: 960px) {
  .accordion {
    display: none;
    position: absolute;
    margin-top: 0;
    width: 100%;
    max-width: 1000px;
    padding-top:10px;
    left: 50%;
    transform: translateX(-50%) !important;
  }

  .accordion-list {
    padding:calc(var(--layout-gap) / 1.25);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .accordion-list-title {
    display: flex;
  }
  .accordion-list-title > span:nth-of-type(1) {
    text-transform: uppercase;
    font-size: 3rem;
  }
  .accordion-list-title > span:nth-of-type(2) {
    font-size: 0.85em;
    padding-left: 1em;
  }
  .accordion-item {
    width: calc(100% / 4 - 15px);
  }
  /*企業情報*/
  .header-nav-item:nth-last-child(2) .accordion-item {
    width: calc(100% / 3 - 15px);
  }
  .accordion-item > a {
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 0;
    height: auto;
    background-color: var(--primary-color);
  }

  .accordion-item > a > span:nth-of-type(1) {
    width: 100%;
    max-height: 200px;
    overflow: hidden;
  }

  .accordion-item > a > span:nth-of-type(2) {
    width:100%;
    padding:0.5em;
  }

  .accordion-item > a:hover {
    /* background-color: var(--color-black); */
    background-color: var(--color-white);
    opacity: 1;
    width: 100%;
  }
  .accordion-item > a:hover > span:nth-of-type(2) {
    color: var(--primary-color);
  }

}


@media print, screen and (min-width: 1200px) {
  .accordion-list {
    padding:calc(var(--layout-gap) / 1);
  }
  .accordion-item > a {
    font-size: 1.6rem;
    /* height: 60px; */
  }
}



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

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100;
  top: 0;
  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);
}

/*----- nav-open Style -----*/

.accordion.nav-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;
    width: 100%;
  }

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

/*------------------------------------------------
フッター
------------------------------------------------*/

.footer {
  width: 100%;
}

.footer-container {
  padding:calc(var(--layout-gap) / 2) calc(var(--layout-gap) / 2) 0;
}
.footer-nav {
  margin: 30px auto;
}
.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
}
.footer-nav-inner {
  padding: 20px 10px;
  width: 50%;
}

.footer-nav-label {
  font-weight: 700;
  border-bottom: 1px solid rgba(var(--color-black-rgb),0.3);
}
.footer-nav-label:not(:first-of-type) {
  margin-top: calc(var(--layout-gap) / 1.5);
}

.footer-nav-item {
  margin-top: calc(var(--layout-gap)/2);
  position: relative;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 400;
}
.footer-head {
  width: 100%;
  max-width: 360px;
  margin: calc(var(--layout-gap) / 3) 0;
}

.footer-logo {
  height: 40px;
  width: 260px;
  margin-bottom: calc(var(--layout-gap) / 2);
}
.footer-logo-button {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 100%;
}
.footer-logo-button > img {
  width: auto;
  height: 100%;
}
.footer-logo-button > span {
  font-size: clamp(1.2rem, 1.08rem + 0.6vw, 1.8rem);
  font-weight: 400;
  margin-left: 10px;
  line-height: 1;
  padding:5px 0;
}

.certification-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 230px;
}
.certification-box > figure:nth-of-type(1) {
  width: 70%;
  margin-right: 6%;
}
.certification-box > figure:nth-of-type(2) {
  width: 24%;
}
.certification-box > figure:nth-of-type(1) figcaption {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-gray);
}
.footer-head .notes {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--color-gray);
  margin: 15px 0;
  display: block;
}
.footer-bottom {
  color: var(--color-white);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  padding: 20px;
  background-color: var(--primary-color);
  text-align: center;
}
.footer-privacy {
  text-transform: uppercase;
}


@media print, screen and (min-width: 769px) {
  .footer-nav-inner {
    width: calc(100% / 5);
  }
}

@media print, screen and (min-width: 960px) {
  .footer-head {
    margin: 0;
    max-width: 215px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px;
  }
  .footer-nav {
    width: calc(100% - 240px);
    margin: 0;
  }
  .footer-nav-list {
    justify-content: flex-end;
  }
  .footer-nav-inner {
    width: auto;
    /* padding: 20px 15px; */
    padding: 10px;
  }
  .footer-nav-label {
    font-size: 1.4rem;
    padding-right: 2em;
  }
  .footer-logo {
    width: 200px;
    height: auto;
  }
  .footer-logo-button > img {
    width: 155px;
    height: auto;
  }
  .footer-logo-button > span {
    margin-left: 0;
    font-size: 2rem;
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}


@media print, screen and (min-width: 1200px) {
  .footer-container {
    padding:40px calc(50% - 500px);
    justify-content: space-between;
  }
  .footer-logo-button > span {
    /* margin-left: 10px; */
    padding: 7.5px 0;
  }
  .footer-logo-button > img {
    width: 160px;
  }
  .footer-nav-inner:not(:first-of-type)::before {
    top: 4px;
  }
  .footer-nav-label {
    font-size: 1.5rem;
  }
  .footer-nav-item {
    font-size: 1.3rem;
  }
  .footer-bottom {
    padding: 20px calc(50% - 500px);
  }
}

/*------------------------------------------------
ページヘッダー
------------------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-position: right 25% top;
  width: 100%;
  height: 150px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: relative;
}
.page-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--primary-color-rgb), 0.3);
}

.page-header-title {
  width: 90%;
    max-width: 1000px;
  margin: 0 auto;
  position: relative;
  text-shadow: 3px 3px 10px rgba(var(--primary-color-rgb), 0.3);
}

.page-header-title > span:nth-of-type(1){
  color: var(--color-white);
  display: block;
  line-height: 1;
  font-weight: 900;
  /* font-size: clamp(1.6rem, 1.12rem + 2.4vw, 4rem); */
  font-size: clamp(2rem, 1.76rem + 1.2vw, 3.2rem);
  padding-bottom: 15px;
}

.page-header-title > span:nth-of-type(2){
  color: var(--color-white);
  display: block;
  line-height: 1;
  font-size: clamp(1rem, 0.84rem + 0.8vw, 1.8rem);
  text-transform: uppercase;
}


@media print, screen and (min-width: 960px) {
  .page-header {
    height: 350px;
    /* background-position: right 20% top; */
    background-position: center bottom;
  }
  .page-header-title > span:nth-of-type(1){
    padding-bottom: 20px;
  }
}


/*================================================
  Breadcrumb
================================================*/

.breadcrumb-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--layout-gap) / 2) 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  margin: calc(var(--layout-gap) / -4) 0;
}

.breadcrumb-list-item {
  display: flex;
  align-items: center;
  margin: calc(var(--layout-gap) / 8);
  font-size: 1rem;
}

.breadcrumb-list-item::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
}

.breadcrumb-list-item:first-of-type::before {
  width: 15px;
  height: 15px;
  margin-top: -1px;
  margin-right: calc(var(--layout-gap) / 8);
  background-image: url(../../image/common/icon_home.svg);
}

.breadcrumb-list-item:not(:first-of-type)::before {
  width: 4px;
  height: 8px;
  margin-right: calc(var(--layout-gap) / 4);
  background-image: url(../../image/common/icon_arrow_gray.svg);
}

@media print, screen and (min-width: 960px) {
  .breadcrumb-list-item {
    margin: calc(var(--layout-gap) / 4);
    font-size: 1.2rem;
  }
  .breadcrumb-list-item:first-of-type::before {
    margin-right: calc(var(--layout-gap) / 4);
  }
  .breadcrumb-list-item:not(:first-of-type)::before {
    margin-right: calc(var(--layout-gap) / 2);
  }
}
@media print, screen and (min-width: 1600px) {
  .breadcrumb-list-item {
    font-size: 1.4rem;
  }
}

/*------------------------------------------------
セクション
------------------------------------------------*/

.section {
  padding: calc(var(--layout-gap) * 1) 0;
}

.section-container {
  margin: 0 auto;
  padding: 0 calc(var(--layout-gap)/2);
  max-width: 1000px;
  width: 100%;
}

.section-title {
  margin-bottom: calc(var(--layout-gap) / 1.5);
}

.section-title span:nth-of-type(1) {
  color: var(--secondary-color);
  display: block;
  line-height: 1.25;
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.8rem);
  font-weight: 900;
}

.section-title span:nth-of-type(2) {
  color: var(--secondary-color);
  display: block;
  line-height: 1;
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  margin-top: calc(var(--layout-gap)/2);
  text-transform: uppercase;
  border-left: 6px solid rgba(var(--color-black-rgb),0.5);
  padding: 0.25em 0 0.25em 1em;
}

.section-text {
  margin: 2em 0;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: 700;
}

.section-text + .section-text {
  margin-top: -1em;
}

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

@media print, screen and (min-width: 960px) {
  .section {
    padding: calc(var(--layout-gap) * 1) 0;
  }
  .section-container {
    padding: 0 calc(var(--layout-gap) * 1);
  }
  .section-title {
    margin-bottom: calc(var(--layout-gap) / 1);
  }

}

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

  .section-text + .section-text {
    margin-top: -2em;
  }
}


/*------------------------------------------------
content label
------------------------------------------------*/

.content-label {
  padding: 0.75em 0.75em 0.75em calc(1em + 10px);
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  background-color: var(--color-white);
  border-left: 10px solid var(--primary-color);
  margin-bottom: var(--layout-gap);
}

/*------------------------------------------------
ボタンラベル
------------------------------------------------*/

/*primary*/
.button-label-primary {
  max-width: 275px;
}
.button-label-primary > a {
  color: var(--color-white);
  background: linear-gradient(to bottom, #003A63 0, #01132D 100%);
  border: 2px solid var(--color-white);
  border-radius: 32px;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
  width: 100%;
  height:100%;
  position: relative;
  opacity: 1;
  box-sizing: border-box;
  padding: 1em 2em;
  box-shadow: 0 3px 6px rgba(var(--color-black-rgb),0.16);
}

.button-label-primary > a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_arrow_bg_w.svg);
  background-position: center;
  background-size:100%;
  right: 12.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: right .2s ease-in;
  position: absolute;
}
.button-label-primary > a:hover::after {
  right: 7.5px;
  transition: right .2s ease-in;
}


@media print, screen and (min-width: 960px) {
  .button-label-primary {
    height: 60px;
  }
  .button-label-primary > a {
    font-size: 1.6rem;
    padding: 0 50px 0 30px;
  }
  .button-label-primary > a::after {
    right: 20px;
  }
  .button-label-primary > a:hover::after {
    right: 15px;
  }
}

/*inner-button*/

.text-link-arrow {
  transition: all .3s linear;
  position: relative;
  opacity: 1;
  padding: 0.5em 2.5em 0.5em 0;
}

.text-link-arrow::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_arrow_blue.svg);
  background-position: center;
  background-size:100%;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: right .2s ease-in;
  position: absolute;
}
a:hover .text-link-arrow::after {
  right: 0.25em;
  transition: right .2s ease-in;
}

/*------------------------------------------------
  CTA
------------------------------------------------*/

.cta {
  color: var(--color-white);
  text-align: center;
  background:linear-gradient(to bottom, #003A63 0, #01132D 100%);
}

.cta-container {
  padding: 50px 30px;
}

.cta-title {
  font-size: clamp(2rem, 1.64rem + 1.8vw, 3.8rem);
  line-height: 1
}

.cta-text {
  margin-top: 10px;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}

.cta-content {
  margin-top: 20px;
}

.cta-content-tel-number span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  line-height: 1;
}

.cta-content-tel-number span::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  background-image: url(../../image/common/icon_tel.svg);
  background-position: center;
  background-size: contain;
  margin-right: 10px;
}

.cta-content-tel-annotation {
  font-size: clamp(0.8rem, 0.68rem + 0.6vw, 1.4rem);
}

.cta-content-mail {
  margin-top: 20px;
}

.cta-content-mail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 320px;
  height: 60px;
  margin: auto;
  color: var(--primary-color);
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-weight: 700;
  border: 1px solid #FFF;
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 1em 2em;
}

.cta-content-mail-button::before {
  content: "";
  display: block;
  width: 24px;
  height: 18px;
  background-image: url(../../image/common/icon_mail_blue.svg);
  background-position: center;
  background-size: contain;
  margin-right: 20px;
}

@media print, screen and (min-width: 960px) {
  .cta-container {
    max-width: 1000px;
    margin: auto;
    padding: 60px 25px;
  }

  .cta-text {
    margin-top: 20px;
  }

  .cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }

  .cta-content-tel {
    margin-right: 50px;
    padding-right: 50px;
    border-right: 1px dashed var(--color-white);
  }
  .cta-content-tel-number span {
    letter-spacing: 0.05em;
  }
  .cta-content-mail {
    margin-top: 0;
  }

  .cta-content-mail-button {
    max-width: 415px;
    width: 325px;
    padding: 1.25em 2.5em;
    border-radius: 20px;
  }
}

@media print, screen and (min-width: 1600px) {
  .cta-container {
    padding: 60px 0;
  }
  .cta-content {
    margin-top: 50px;
  }
  .cta-content-tel {
    margin-right: 70px;
    padding-right: 70px;
  }
}


/**/
.common-pic-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 10px;
}
.common-pic-item {
  width: calc(50% - 5px);
  text-align: center;
}

.common-pic-item > img {
  border: 1px solid var(--color-gray);
  box-sizing: border-box;
}

.common-pic-item-name {
  display: block;
  line-height: 1.25;
  margin-top: 0.5em;
  font-size: clamp(0.9rem, 0.76rem + 0.7vw, 1.6rem);
}

@media print, screen and (min-width: 769px) {
  .common-pic-item {
    width:calc(100% / 3 - 7px);
  }
}
@media print, screen and (min-width: 1200px) {
  .common-pic-list {
    gap: 54px 26px;
  }
  .common-pic-item {
    width:calc(100% / 3 - 18px);
  }
}


/*flow-list*/
.flow-list {
  margin:var(--layout-gap) auto 0;
}
.flow-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.flow-item-before {
  width: 40%;
}
.flow-item-arrow {
  width: 15%;
}
.flow-item-after {
  width: 40%;
}
.flow-item-text {
  color: var(--secondary-color);
  display: block;
  text-align: center;
  font-size: clamp(1.6rem, 1.36rem + 1.2vw, 2.8rem);
  font-weight: 900;
}

.flow-item-before > img,
.flow-item-after > img {
  border: 1px solid var(--color-gray);
  box-sizing: border-box;
}

.flow-item-arrow > img {
  max-width: 90px;
}
