@charset "utf-8";

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

:root {
  /* Color */
  --primary-color: #B81C22;
  --primary-color-rgb:184, 28, 34;
  --secondary-color: #E0AA90;
  --secondary-color-rgb: 224, 170, 144;

  --primary-text-color: #3D2929;
  --secondary-text-color: #293A3D;

  --primary-bg-color:#F7F5F3;

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

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

  --color-gray: #CCCCCC;
  --color-light-gray: #E6E6E6;

  --color-ivory: #FBFAF9;

  --color-pink: #ffd5cc;

  --color-long-term: #C882A2;
  --color-long-term-light: #F4E6EC;
  --color-short-term: #D35454;
  --color-short-term-light: #EEB9AF;
  --color-care-house: #9A97C3;
  --color-care-house-light: #DAD9E9;
  --color-himawari:#DFC389;
  --color-recruit:#ED765E;

  --color-beige:#EBE3BD;
  --color-light-beige:#F9F0E4;

  --color-brown:#8E573C;
  --color-brown-rgb:142, 87, 60;
  --color-light-brown: #A38F8F;

  /* Layout */
  --header-size-sp: 65px;
  --header-size-pc: 175px;
  --layout-gap: 40px;
}

/*------------------------------------------------
基本
------------------------------------------------*/

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

body {
  color: var(--primary-text-color);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;  /* 14px */
  line-height: 2;
  position: relative;
}

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

@media print, screen and (min-width: 769px) {
  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: 769px) {
  body {
    min-height: 100vh;
  }
  main {
    padding-top: var(--header-size-pc);
  }
}


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

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

/*----- PCで電話番号リンク無効 -----*/
@media print, screen and (min-width: 769px) {
  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: 769px) {
  .br-tb {
    display: none;
  }
}

.br-pc {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .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::before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #E0AA90 0%, #B81C22 100%);
}

.header-container {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-left: calc(var(--layout-gap) / 3);
}

.header-tel,
.header-blog,
.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: 769px) {
  .header {
    height:var(--header-size-pc);
    background-color: inherit;
  }
  .header-container {
    margin: 0 auto;
    height: 110px;
    /* padding:10px calc(var(--layout-gap) / 1.5) 0; */
    padding:0 calc(var(--layout-gap) / 1.5);
    justify-content: space-between;
    background-color: var(--color-white);
    position: relative;
    z-index: 9;
    border-bottom: 1px solid var(--color-light-gray);
  }

  .header-inner {
    position: fixed;
    display: block;
    overflow-y: visible;
    top: 115px;
    height: 60px;
    background-color: inherit;
    border-bottom: 1px solid var(--color-light-gray);
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
    z-index: 8;
  }
  .header-inner.scroll-hide {
    transform: translateY(-100%);
  }
}
@media print, screen and (min-width: 1200px) {
  .header-container {
    /* padding:10px calc(var(--layout-gap) *1.25) 0; */
    padding:0 calc(var(--layout-gap) *1.25);
  }
}

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

/*------------------------------------------------
  header-title
------------------------------------------------*/
.header-title {
  height: 40px;
  width: 127px;
}
.header-title-button {
  display: flex;
  height: 100%;
}

@media print, screen and (min-width: 769px) {
  .header-title {
    height: 50px;
    width: 158px;
  }
}


/*------------------------------------------------
  nav-trigger
------------------------------------------------*/

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

@media print, screen and (min-width: 769px) {
  .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-light-gray);
  width: 100%;
  position: relative;
}

.header-nav-item-label > a,
.header-nav-item-label > .header-nav-item-label-inner {
  padding: calc(var(--layout-gap) / 2) 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: 1rem;
  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: 769px) {
  .header-nav {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .header-nav-list {
    padding: 0;
    width: 100%;
  }

  .header-nav-item {
    width: calc(100% / 6);
    position: relative;
    border-bottom: none;
  }

  .header-nav-item:not(:first-of-type) {
    border-left: 1px solid var(--color-light-gray);
  }

  .header-nav-item-label > a,
  .header-nav-item-label > .header-nav-item-label-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0 calc(var(--layout-gap) / 8);
    position: relative;
    height:60px;
    width: 100%;
  }
  .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;
  }
  .header-nav-item-label > a > span:nth-of-type(2),
  .header-nav-item-label > .header-nav-item-label-inner > span:nth-of-type(2) {
    font-size: clamp(0.8rem, 0.66rem + 0.7vw, 1.5rem);
  }
  .header-nav-item-label > .header-nav-item-label-inner::after {
    content: "";
    display: block;
    width: 12px;
    height: 6px;
    margin-left: 7%;
    background-image: url(../../image/common/arrow_down_gray.svg);
    background-position: center;
    background-size: contain;
  }

  .header-nav-item.header-sp-contact {
    display: none;
  }

  @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:0 calc(var(--layout-gap) /2);
  }
}
@media print, screen and (min-width: 1600px) {
  .header-nav-item-label > a,
  .header-nav-item-label > .header-nav-item-label-inner {
    padding:0 calc(var(--layout-gap) *1);
  }
}


.is-current .header-nav-item-label > a,
.is-current .header-nav-item-label > .header-nav-item-label-inner {
  border-bottom: 3px solid var(--primary-color);
}


/*------------------------------------------------
  header-sp
------------------------------------------------*/
.header-nav-item.header-sp-blog,
.header-nav-item.header-sp-contact {
  width:48%;
  max-width: 320px;
  border-bottom: none;
  margin: calc(var(--layout-gap) / 2) auto;
}

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

.header-nav-item.header-sp-blog a {
  background-color: var(--secondary-color);
}

.header-nav-item.header-sp-contact a {
  background-color: var(--primary-color);
}

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

.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;
  background-image: url(../../image/common/icon_mail_white.svg);
}

.header-nav-item.header-sp-tel {
  text-align: center;
  border-bottom: none;
}
.header-nav-item.header-sp-tel a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--layout-gap) / 4);
}
.header-nav-item.header-sp-tel a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 18px;
  background-image: url(../../image/common/icon_phone.svg);
  background-size: contain;
  margin-right: 5px;
}
.header-nav-item.header-sp-tel a > span.font-poppins {
  color: var(--color-text);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}
.header-nav-item.header-sp-tel a span.header-body-tel-time {
  color: rgba(var(--color-black-rgb), 0.5);
  font-size: 1.2rem;
  width: 100%;
  padding-top: calc(var(--layout-gap) / 10);
}
.header-nav-item.header-sp-tel a span.header-body-tel-time > span {
  margin-left: 0.25em;
}

@media print, screen and (min-width: 769px) {
  .header-nav-item.header-sp-blog,
  .header-nav-item.header-sp-contact,
  .header-nav-item.header-sp-tel {
    display: none;
  }
}

/*------------------------------------------------
  header-body
------------------------------------------------*/

@media print, screen and (min-width: 769px) {
  .header-body {
    display: flex;
    align-items: center;
    gap: calc(var(--layout-gap) / 2);
  }
  .header-blog,
  .header-mail {
    height: 45px;
    display: flex;
    align-items: center;
  }
  .header-blog-button,
  .header-mail-button {
    color: var(--color-white);
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 25px;
  }
  .header-blog-button {
    background-color: var(--secondary-color);
  }
  .header-mail-button {
    background-color: var(--primary-color);
  }
  .header-blog-button::before,
  .header-mail-button::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    margin-right: 5px;
  }
  .header-blog-button::before {
    background-image: url(../../image/common/icon_blog.svg);
  }
  .header-mail-button::before {
    background-image: url(../../image/common/icon_mail_white.svg);
  }


  .header-tel {
    text-align: center;
    display: block;
  }
  .header-tel-no {
    font-size: clamp(2rem, 1.84rem + 0.8vw, 2.8rem);
    font-weight: 600;
    line-height: 1;
    display: block;
  }
  .header-tel-no::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 16px;
    background-image: url(../../image/common/icon_phone.svg);
    background-size: contain;
    margin-right: 6px;
  }
}

@media print, screen and (min-width: 960px) {
  .header-blog,
  .header-mail{
    height: 50px;
  }
  .header-blog-button,
  .header-mail-button{
    padding: 0 30px;
  }
  .header-blog-button::before,
  .header-mail-button::before {
    margin-right: 10px;
  }
  .header-tel-no::before {
    width: 7.5px;
    height: 20px;
  }
}

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

.accordion-list {
  display: none;
}

.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_bg_w.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -1.5em;
  transform: translateY(-50%);
}

@media print, screen and (min-width: 769px) {
  .accordion {
    display: none;
    position: absolute;
    margin-top: 0;
  }

  .accordion-list {
    display: block;
    background-color: rgba(var(--secondary-color-rgb), 0.85);
  }

  .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) calc(var(--layout-gap) * 1.5) ;
    height: auto;
  }

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

@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: 769px) {
  .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: 769px) {
  .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 {
  border-top: 1px solid var(--color-light-gray);
  width: 100%;
}
.footer-top {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-head {
  text-align: center;
  padding:calc(var(--layout-gap) / 1.5);
}
.footer-logo {
  width: 100%;
  max-width: 260px;
  margin: calc(var(--layout-gap) / 3) auto;
}

.footer-logo > a {
  display: block;
  width: 100%;
}

.footer-address {
  margin: 0 auto calc(var(--layout-gap)/2);
  font-style: normal;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 1.5;
}

.footer-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-blog,
.footer-mail {
  height: 45px;
  display: flex;
  align-items: center;
}
.footer-blog-button,
.footer-mail-button {
  color: var(--color-white);
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 25px;
}
.footer-blog-button {
  background-color: var(--secondary-color);
}
.footer-mail-button {
  background-color: var(--primary-color);
}
.footer-blog-button::before,
.footer-mail-button::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
}
.footer-blog-button::before {
  background-image: url(../../image/common/icon_blog.svg);
}
.footer-mail-button::before {
  background-image: url(../../image/common/icon_mail_white.svg);
}

.footer-nav {
  margin: 0 auto;
  padding: calc(var(--layout-gap) / 1.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-nav-inner {
  margin-bottom: calc(var(--layout-gap) * 1.5);
  width: 100%;
}
.footer-nav-label {
  display: block;
  padding-bottom: 1.25em;
  border-bottom: 1px solid var(--color-light-gray);
}
.footer-nav-label > span {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.footer-nav-item {
  padding-left: calc(var(--layout-gap)/1.75);
  margin-top: 1.5em;
  position: relative;
  line-height: 1;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
}
.footer-nav-item::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: absolute;
  top: 0.4em;
  left: 0.4em;
}

.footer-sub-nav-list {
  margin-top: 0.75em;
}

.footer-sub-nav-item > a {
  line-height: 1;
  font-weight: 700;
  padding: 0.75em 0;
  display: inline-block;
}

.footer-sub-nav-item > a::before {
  content: "-";
  display: inline-block;
  width: 1em;
  color: var(--secondary-color);
}

.footer-bottom {
  color: var(--color-white);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  text-transform: uppercase;
  padding: 20px;
  text-align: center;
  background: linear-gradient(135deg, #E0AA90 0%, #B81C22 100%);
}

@media print, screen and (min-width: 560px) {
  .footer-nav-inner {
    width: 48%;
    margin-bottom: 0;
  }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media print, screen and (min-width: 769px) {
  .footer-nav-label {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 960px) {
  .footer-top {
    display: flex;
    padding: calc(var(--layout-gap) *2.25) calc(var(--layout-gap) *1.25);
  }

  .footer-head {
    width: 280px;
    padding: 0;
    text-align: left;
  }
  .footer-logo {
    max-width: 280px;
    margin: 0 0 calc(var(--layout-gap) / 1.5);
  }
  .footer-link {
    justify-content: flex-start;
  }
  .footer-nav {
    width: 550px;
    margin-right: 0;
    padding: 0;
  }
  .footer-sub-nav-item > a {
    padding: 0.75em 0;
  }
}

@media print, screen and (min-width: 1200px) {
  .footer-top {
    padding: calc(var(--layout-gap) *2.25) 0;
  }
  .footer-nav {
    width: 580px;
  }
  .footer-nav-inner {
    max-width: 270px;
  }
  .footer-bottom {
    padding: 20px calc(50% - 580px);
  }
}

@media print, screen and (min-width: 1600px) {
  .footer-head {
    width: 310px;
  }
  .footer-logo {
    max-width: 310px;
  }
}



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

.page-header {
  width: 100%;
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center right;
  background-image: url(../../image/common/page_header_bg.jpg);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.page-header-title {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.04rem + 2.8vw, 4.4rem);
}

.page-header-title span {
  display: block;
  text-transform: uppercase;
  color: var(--color-light-brown);
  font-size: clamp(1.4rem, 1.24rem + 0.8vw, 2.2rem);
  margin-top: 0.5em;
  letter-spacing: 0;
}

@media print, screen and (min-width: 769px) {
  .page-header {
    height: 300px;
  }
}


@media print, screen and (min-width: 1600px) {
  .page-header {
    height: 400px;
  }
}



/*================================================
  section
================================================*/

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

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

@media print, screen and (min-width: 560px) {
  .section-container {
    /* padding:  calc(var(--layout-gap) / 1.25); */
    padding:  calc(var(--layout-gap) / 1.25)  calc(var(--layout-gap) / 1.5);
  }
}


@media print, screen and (min-width: 769px) {
  .section {
    /* padding: calc(var(--layout-gap) * 2.5) calc(var(--layout-gap) / 1.5); */
    padding: calc(var(--layout-gap) * 1.75) calc(var(--layout-gap) / 1.5);
  }
  .section-container {
    /* padding:  calc(var(--layout-gap) * 1.5); */
    padding:  calc(var(--layout-gap) * 1.25);
  }
}

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

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

/*------------------------------------------------
  section-top-round
------------------------------------------------*/

.section-top-round {
  position: relative;
  /* margin-top: -120px;
  padding-top: 60px; */
}
.section-top-round::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}
.section-top-round .section-container {
  position: relative;
  /* margin-top: 60px; */
}

@media print, screen and (min-width: 769px) {
  .section-top-round::before {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
  }
}

@media print, screen and (min-width: 1200px) {
  .section-top-round::before {
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
  }
}


@media print, screen and (min-width: 1600px) {
  /* .section-top-round {
    margin-top: -120px;
    padding-top: 120px;
  } */
  .section-top-round::before {
    /* top: 0; */
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
  }
  /* .section-top-round .section-container {
    margin-top: 40px;
  } */
}


/*------------------------------------------------
  section-title
------------------------------------------------*/

.section-title {
  /* font-size: clamp(2rem, 1.44rem + 2.8vw, 4.8rem); */
  font-size: clamp(1.6rem, 1.04rem + 2.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1em;
}
.section-title span {
  display: block;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-light-brown);
  padding-top: 1.5em;
}

.section-title span.title-noetes {
  display: inline-block;
  color: var(--primary-text-color);
  font-size: 0.5em;
}

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

.section-text.emphasis {
  font-size: 1.5em;
  font-weight: 700;
  display: block;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

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

/*------------------------------------------------
  section-img-title
------------------------------------------------*/
.section-img-title {
  margin-bottom: 30px;
}
.section-img-title > img {
  max-height: 30px;
  width: auto;
}

.section-img-title > span {
  color: var(--color-light-brown);
  text-transform: uppercase;
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  display: block;
  margin-top: 0.5em;
}

@media print, screen and (min-width: 769px) {
  .section-img-title > img {
    max-height: 40px;
  }
}

@media print, screen and (min-width: 1600px) {
  .section-img-title > img {
    max-height: 50px;
  }
}


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

.breadcrumb-container {
  background-color: var(--color-bg-white);
  box-shadow: 0 0 40px rgba(230, 222, 212, 0.5);
}

.breadcrumb-list {
  max-width: 1160px;
  margin: 0 auto;
  padding:calc(var(--layout-gap) / 6) calc(var(--layout-gap) / 3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-list-item span.home::before {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  width: 15px;
  height: 15px;
  margin-top: -1px;
  background-image: url(../../image/common/icon_home.svg);
}

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

.breadcrumb-list-item:not(:last-of-type)::after {
  content: "";
  display: block;
  background-position: center;
  background-size: contain;
  background-image: url(../../image/common/icon_line_arrow.svg);
  width: 4px;
  height: 8px;
  margin-left: calc(var(--layout-gap) / 4);
}

@media print, screen and (min-width: 769px) {
  .breadcrumb-list {
    padding:calc(var(--layout-gap) / 2);
  }
  .breadcrumb-list-item {
    font-size: 1.2rem;
  }
}

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

/*------------------------------------------------
  primary
------------------------------------------------*/

.button-label-primary {
  max-width: 220px;
  display:flex;
  position: relative;
}
.button-label-primary > a,
.button-label-primary > span {
  color: #fff;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-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(--primary-color);
  background-color: #fff;
  transition: all .3s linear;
}
.button-label-primary::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_arrow_bg_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/icon_arrow_bg_primary.svg);
}


@media print, screen and (min-width: 769px) {
  .button-label-primary {
    height: 60px;
  }
  .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;
  }
}

/*------------------------------------------------
  secondary( page-link-item )
------------------------------------------------*/

.button-label-secondary {
  /* border: 2px solid var(--primary-text-color); */
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  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:1em 3em 1em 2em;
  margin: auto;
}
.button-label-secondary::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  /* background-image: url(../../image/common/icon_arrow_down_bg_dark.svg); */
  background-size:contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 5px;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

/*================================================
  title
================================================*/

/*------------------------------------------------
  content-title
------------------------------------------------*/
.content-title {
  font-size: clamp(1.6rem, 1.36rem + 1.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  margin: calc(var(--layout-gap)/1.5) 0;
}

.content-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin-top: calc(var(--layout-gap)/2);
  border-left: 30px solid var(--primary-color);
  background-color: var(--color-white);
}
/*
.content-subtitle {
  color: var(--color-primary);
  font-weight: 900;
  font-size: 1.6rem;
  margin: calc(var(--layout-gap)/3) 0  calc(var(--layout-gap)/4);
} */
@media print,screen and (min-width: 769px) {
  .content-title {
    margin: calc(var(--layout-gap)/1) 0;
  }
  /* .content-subtitle {
    font-size: 2rem;
  } */
}

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

.content-title-label {
  padding: 0.75em 0.75em 0.75em calc(2em + 10px);
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom:  calc(var(--layout-gap)*1.25);
  position: relative;
  text-indent: -1.25em;
}
.content-title-label::before {
  content: "";
  background-color: var(--secondary-color);
  display: block;
  width: 6px;
  height: 1em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
}


/*------------------------------------------------
  item-title
------------------------------------------------*/

.item-title {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  margin: calc(var(--layout-gap) / 1.5) 0;
  padding: 0 0 0 1em;
  position: relative;
}

.item-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color) 0, var(--primary-color) 50%,  var(--secondary-color) 50%, var(--secondary-color) 100%);
  position: absolute;
  left: 0;
  top: 0;
}



/*================================================
  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;
  }
}


/*================================================
  pdf-dl
================================================*/

.pdf-dl {
  background-size: cover;
  background-position: center;
  position: relative;
}

@media print, screen and (min-width: 1200px) {
  .pdf-dl.section {
    padding: 100px 0 110px;
  }
  .pdf-dl.section .section-container{
    margin: 0 auto;
  }
}

.pdf-dl-title {
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(1.6rem, 1.36rem + 1.2vw, 2.8rem);
  margin-bottom: 0.5em;
}

.pdf-dl-title > span.notes {
  font-size: 0.575em;
  margin-left: 2em;
}

.pdf-link-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.pdf-link-item a {
  background-color: var(--color-white);
  display: block;
}

.pdf-link-item > a {
  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: 1.5em 3em 1.5em 2em;
  border-radius: 2px;
}
.pdf-link-item > a:hover {
  color: var(--color-white);
  transition: all .3s linear;
}
.pdf-link-item > a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-position: center;
  background-size: contain;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s linear;
  position: absolute;
}

.pdf-link-item > a:hover::after {
  background-image: url(../../image/common/icon_pdf_white.svg);
}

@media print, screen and (min-width: 769px) {
  .pdf-link-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media print, screen and (min-width: 1200px) {
  .pdf-link-list {
    gap: 20px;
  }
  .pdf-link-list.row3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media print, screen and (min-width: 1600px) {
  .pdf-link-list {
    gap: 40px;
  }
}

/*================================================
  facility-list
================================================*/
.facility-list {
  width: 100%;
}
.facility-list tr {
  border: 1px solid var(--color-gray);
}
.facility-list th,
.facility-list td {
  padding: calc(var(--layout-gap)/4);
  font-size: 1.2rem;
}
.facility-list th {
  background-color: var(--primary-bg-color);
  border-right: 1px solid var(--color-gray);
  text-align: center;
  width: 25%;
}

@media print, screen and (min-width: 769px) {
  .facility-list th,
  .facility-list td {
    padding: calc(var(--layout-gap)/2) calc(var(--layout-gap)/1);
    font-size: 1.6rem;
  }
  .facility-list th {
    width: 25%;
  }
  .facility-list td dl dd > span {
    display: inline-block;
    margin-left: calc(var(--layout-gap)/2);
  }
}


/*================================================
  facility-list
================================================*/

/*photo-list*/
.photo-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo-item > img {
  border-radius: 20px;
}

.photo-item figcaption span.emphasis {
  display: block;
  font-weight: 900;
  font-size: 1.25em;
}

.photo-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr; /* 1列 */
}

@media print, screen and (min-width: 769px) {
  .photo-list {
    gap: 30px;
  }

  .photo-row.two {
    grid-template-columns: repeat(2, 1fr); /*2列 */
    gap: 30px;
  }

  .photo-row.three {
    grid-template-columns: repeat(3, 1fr); /*3列 */
    gap: 30px;
  }
}

@media print, screen and (min-width: 1200px) {
  .photo-list {
    gap: 40px;
  }

  .photo-row.two {
    grid-template-columns: repeat(2, 1fr); /*2列 */
    gap: 40px;
  }

  .photo-row.three {
    grid-template-columns: repeat(3, 1fr); /*3列 */
    gap: 40px;
  }
}

/*================================================
  signature
================================================*/

.signature {
  text-align: right;
  margin-top: 1.5em;
}

.signature > span.name {
  font-size: 1.4em;
  font-weight: 700;
  margin-left: 1em;
  line-height: 1;
}
