/* =========================================
common
========================================= */
/* -----------------------------------
reset
----------------------------------- */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
li{list-style-type:none;}

/* -----------------------------------
base
----------------------------------- */
body {
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  font-family:'ヒラギノ角ゴPro W3','Hiragino Kaku Gothic Pro','游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic',"Noto Sans JP",メイリオ,Meiryo,sans-seri;
  background-color: #FDF9F1;
}
*, *:before, *:after {
  box-sizing: border-box;
}
body.hidden {
  overflow: hidden;
}

/* -----------------------------------
layout
----------------------------------- */
.container {
  height: 100%;
}
.main {
  flex: 1;
}

/* -----------------------------------
typography
----------------------------------- */
.fontMontserrat {
  font-family: 'Montserrat', sans-serif !important;
}
.fontInter {
  font-family: 'Inter', sans-serif !important;
}

/* -----------------------------------
variables
----------------------------------- */

/* =========================================
atoms
========================================= */
.textColor_red {
  color: #E60012;
}

.font-bold {
  font-weight: 600;
}

/* -----------------------------------
外部リンク
----------------------------------- */
.outerLink {
  padding-right: 23px;
  position: relative;
}
.outerLink.use-site-link {
  padding-right: 0;
}
.outerLink::after {
  content: '';
  display: inline-block;
  margin-bottom: -3px;
  /* position: absolute; */
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url('/assets/images/common/ico_external_link.svg');
  background-size: cover;
  /* transform: translateY(-50%); */
}

/* -----------------------------------
オーバーレイ
----------------------------------- */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 900;
}

/* -----------------------------------
矢印アイコン
----------------------------------- */
.iconArrow {
  width: 52px;
  height: 52px;
  position: relative;
}
.iconArrow::before,
.iconArrow::after {
  content: '';
  position: absolute;
  transition: .3s;
}
.iconArrow.--fast::after {
  content: '';
  position: absolute;
  transition: .4s;
}
.iconArrow::before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: 0;
}
.iconArrow::after {
  width: 16px;
  height: 16px;
  background: url('/assets/images/common/ico_arrow_forward.svg') repeat-x left center / 16px auto;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
a:hover .iconArrow::after {
  background-position: 16px center;
}

/* -----------------------------------
画像レスポンシブ
----------------------------------- */
.imgResponsive {
  width: 100%;
  height: auto;
}

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

/* -----------------------------------
PC、SP出し分け
----------------------------------- */
.pcOnly {
  display: block !important;
}
.spOnly {
  display: none !important;
}
.pcOnly-nav {
  display: block !important;
}
.spOnly-nav {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
  .spOnly {
    display: block !important;
  }
}
@media screen and (max-width: 896px) {
  .pcOnly-nav {
    display: none !important;
  }
  .spOnly-nav {
    display: block !important;
  }
}

/* -----------------------------------
レイアウト
----------------------------------- */
.l-container {
  width: 100%;
  max-width: 1192px;
  padding: 0 20px;
  display: flex;
}
.l-container.--not_pt {
  padding: 0;
}
.l-container--column {
  width: 100%;
  max-width: 1192px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.l-column {
  display: flex;
  flex-direction: column;
}
.l-container--s {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.l-container--s.--smallGap {
  gap: 28px;
}

@media screen and (max-width: 768px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
  }
  .l-container.--not_pt {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-container--column {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-column {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-pageTitleContainer {
    align-items: center;
  }
  .l-container--s {
    gap: 45px;
  }
}

.l-breadcrumbBox {
  position: relative;
  top: -76px;
  left: 0;
}
.l-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 23px 11px;
}
.l-breadcrumb__item {
  color: #666666;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}
/* .l-breadcrumb__item + .l-breadcrumb__item {
  padding-left: 11px;
} */
.l-breadcrumb__itemLink {
  color: #666666;
  text-underline-offset: 4px;
}
.l-breadcrumb__itemLink.linkActive {
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 768px) {
  .l-breadcrumbBox {
    top: -24px;
    left: 0;
    padding-right: 24px;
  }
}

/* -----------------------------------
角丸ボックス
----------------------------------- */
.roundContainer {
  border-radius: 50px 240px 0px 0px;
}

@media screen and (max-width: 768px) {
  .roundContainer {
    border-radius: 40px 120px 0px 0px;;
  }
}

.note {
  color: #222;
  font-size: 12px;
}

/* -----------------------------------
セクションギャップ
----------------------------------- */
.sectionGap  > *:not(:first-child) {
  margin-bottom: 41px;
}
.sectionGap > *:last-child {
  margin-bottom: 0;
}

/* -----------------------------------
画像の上の隙間
----------------------------------- */
.imgMt {
  margin-top: 23px;
}

/* =========================================
molecules
========================================= */

/* -----------------------------------
グローバルナビゲーショントグルボタン
----------------------------------- */
.gNavTrigger {
  display: none;
}

@media screen and (max-width: 896px) {
  .gNavTrigger {
    width: 44px;
    height: 44px;
    display: block;
    border-radius: 50%;
    background-color: #E60012;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }
  .gNavTrigger__icon {
    width: 12px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
  }
  .gNavTrigger__icon::before,
  .gNavTrigger__icon::after {
    content: '';
    width: 12px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
  }
  .gNavTrigger__icon::before {
    top: -3px;
  }
  .gNavTrigger__icon::after {
    top: 3px;
  }
  .gNavTrigger.is-active {
    background-color: #FDF9F1;
  }
  .gNavTrigger.is-active .gNavTrigger__icon {
    background-color: #FDF9F1
  }
  .gNavTrigger.is-active .gNavTrigger__icon::before {
    transform: translate(-50%, 3px) rotate(45deg);
    background-color: #E60012;
  }
  .gNavTrigger.is-active .gNavTrigger__icon::after {
    transform: translate(-50%, -3px) rotate(-45deg);
    background-color: #E60012;
  }
}

/* -----------------------------------
グローバルナビゲーションアコーディオン
----------------------------------- */
@media screen and (max-width: 896px) {
  .js-gNavAccordion {
    position: relative;
  }
  .js-gNavAccordion::before,
  .js-gNavAccordion::after {
    content: '';
    width: 18px;
    height: 2px;
    background-color: #666666;
    position: absolute;
    top: 25px;
    right: 0;
  }
  .js-gNavAccordion::after {
    transform: rotate(90deg);
  }
  .js-gNavAccordion.is-active::after {
    display: none;
  }
}

/* -----------------------------------
ボタン
----------------------------------- */
.button__text {
  position: relative;
  z-index: 100;
  transition: .3s;
}

/* プライマリー */
.button--primary {
  min-height: 64px;
  padding: 6px 8px 6px 24px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 999px;
  background-color: #E60012;
  display: flex;
  align-items: center;
  transition: .3s;
  position: relative;
}
/* .button--primary::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, .08);
  top: 0;
  left: 0;
  z-index: 100;
  transition: .3s;
  opacity: 0;
  pointer-events: none;
}
.button--primary:hover::after {
  opacity: 1;
} */
.button--primary .iconArrow {
  width: 48px;
  height: 48px;
  margin-left: auto;
}
.button--primary .iconArrow::before {
  background-color: #fff;
}

/* セカンダリー */
.button--secondary {
  min-height: 64px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.button--secondary .iconArrow {
  margin-right: 6px;
}
.button--secondary .iconArrow::before {
  background-color: #FEF5F6;
}
a:hover .button--secondary .iconArrow::before {
  transform: scale(1.42307692);
}
a:hover .button--secondary .button__text {
  color: #E60012;
}

/* -----------------------------------
カード
----------------------------------- */
.cardContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.cardContainer.--left {
  justify-content: flex-start;
  gap: 10px 24px;
}
.cardCols2 > .card {
  width: calc(((100% - 24px) / 2));
}
.cardCols3 > .card {
  width: calc(((100% - 48px) / 3));
}
.card {
  display: flex;
  flex-direction: column;
}
.card {
  text-decoration: none;
  color: inherit;
}
.card__image {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.card__image img {
  transition: .3s;
}
.card:hover .card__image img {
  transform: scale(1.1);
}
.card__image.--nonMove img {
  transition: none;
}
.card:hover .card__image.--nonMove img {
  transform: none;
}
.card__contents {
  height: 100%;
  padding: 0 8px;
  display: flex;
  flex-direction: column;
}
.card__title {
  margin-bottom: 12px;
  color: #222;
  font-size: 20px;
  font-weight: bold;
}
a .card__title {
  text-decoration: none;
  color: inherit;
}
.card__text {
  margin-bottom: 14px;
  color: #555;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
.card__footer {
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  .card__image.--nonMove {
    margin-bottom: 12px;
  }
  .cardContainer {
    flex-direction: column;
    gap: 43px;
  }
  .cardContainer.--sp2way {
    flex-direction: row;
  }
  .cardContainer.--left {
    gap: 10px 16px;
  }
  .cardContainer > .card {
    width: 100%;
  }
  .cardCols2 > .card {
    width: calc(((100% - 16px) / 2));
  }
  .card__title.--lower {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .card__contents.--lower {
    padding: 0 4px;
  }
}

/* =========================================
organisms
========================================= */
/* -----------------------------------
header
----------------------------------- */
.header {
  width: 100%;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 24px;
  z-index: 1000;
  min-height: 64px;
}
.header__inner {
  width: 100%;
  max-width: 956px;
  padding: 0px 32px;
  background: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  position: relative;
}
.header__logo a {
  transition: .3s;
}
.header__logo a:hover {
  opacity: 0.7;
}
.navList__subItem--body__link__text {
  letter-spacing: 0.03571428571em;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}
.js-gNavAccordion:hover .navList__subListWrap {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 972px) {
    .header__inner {
      max-width: calc(100% - 16px);
  }
}

@media screen and (max-width: 896px) {
  .header {
    top: 24px;
  }
  .header__inner {
    padding-right: 60px;
  }
  .header__logo {
    width: 100%;
    max-width: 257px;
    margin-top: 2px;
  }
  .header__logo__image {
    width: 100%;
    height: auto;
  }
  .navList__subItem--body__link__text {
    letter-spacing: 0.03125em;
    font-size: 16px;
    line-height: 1;
  }
}

@media screen and (max-width: 768px) {
  .header__inner {
    max-width: calc(100% - 40px);
  }

  .header {
    min-height: 60px;
  }
}

/* -----------------------------------
navList
----------------------------------- */
.navList {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 0 19px;
}
.navList__item {
  min-height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.navList__item__link {
  color: #222222;
  font-size:  19px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  position: relative;
  transition: .3s;
}
.navList__item__link__text {
  position: relative;
}
.navList__item__link:hover {
  color: #E60012;
}
.navList__item--current > a,
.navList__item.is-active >a {
  color: #E60012;
}
.navList__item--current .navList__item__link__text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E60012;
}
.navList__subListWrap {
  padding-top: 71px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1250px) {
  .navList__subListWrap {
    right: -50%;
    left: auto;
  }
}
.navList__subList {
  width: 346px;
  padding: 28px 24px 27px 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
  border-radius: 24px;
}
.navList__subItem--heading {
  flex-shrink: 0;
}
.navList__subItem--heading__link {
  padding-left: 40px;
  color: #222222;
  font-size:  19px;
  /* font-size:  clamp(14px, 2vw, 16px); */
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  position: relative;
  transition: .3s;
}
.navList__subItem--heading__link:hover {
  color: #E60012;
}
.navList__subItem--heading__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 32px;
  height: 32px;
  background: url('/assets/images/common/ico_arrow_forward.svg') #FEF5F6 no-repeat center / 13px auto;
  transform: translateY(-50%);
  border-radius: 50%;
}
.navList__subItem + .navList__subItem {
  margin-top: 22px;
}
.navList__subItem--body__link {
  color: #222222;
  font-weight: 14;
  line-height: 1.14285714;
  letter-spacing: -0.09em;
  text-decoration: none;
  transition: .3s;
}
.navList__subItem--body__link:hover {
  color: #E60012;
}


@media screen and (max-width: 896px) {
  .globalNav {
    display: none;
    width: 100%;
    height: calc(100dvh - 105px);
    overflow-y: scroll;
    padding: 32px 20px;
    background-color: #fff;
    border-radius: 40px;
    position: absolute;
    top: 68px;
    left: 0;
  }
  .navList {
    flex-direction: column;
    align-items: flex-start;
    /* max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; */
  }
  .navList__item {
    width: 100%;
    min-height: 0;
    display: block;
  }
  .navList__item__link {
    width: 100%;
    min-height: 48px;
    padding-left: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D5DBE0;
  }
  .navList__item + .navList__item {
    margin-top: 16px;
  }
  .navList__item__link--current .navList__item__link__text::after {
    content: normal;
  }
  .navList__subListWrap {
    padding-top: 0;
    position: static;
    visibility: visible;
  }
  .navList__subList {
    width: 100%;
    padding: 0;
    flex-direction: column;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
  }
  .navList__subItem {
    width: 100%;
  }
  .navList__subItem__link {
    width: 100%;
    min-height: 48px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D5DBE0;
  }
  .navList__subItem--heading__link {
    font-size: 16px;
    padding-left: 8px;
    color: #222222;
  }
  .navList__subItem--heading__link::before {
    content: normal;
  }
  .navList__subItem--body {
    width: 100%;
    background-color: #FDF9F1;
  }
  .navList__subItem--body__item + .navList__subItem--body__item {
    margin-top: 0;
  }
  .navList__subItem--body__link {
    padding-left: 24px;
  }
  .js-gNavAccordion__body,
  .js-gNavAccordion:hover .navList__subListWrap {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
  }
  .is-active .js-gNavAccordion__body,
  .is-active.js-gNavAccordion .js-gNavAccordion__body  {
    max-height: 500px;
    opacity: 1;
  }
}

/* -----------------------------------
footer
----------------------------------- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #D9D9D9;
  background-color: #fff;
}
.footer__inner {
  padding: 35px 20px 17px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__heading {
  max-width: 350px;
}
.footer__logo {
  width: 100%;
  max-width: 296px;
  margin-bottom: 18px;
  transition: .3s;
}
.footer__logo:hover {
  opacity: 0.7;
}
.footer__address {
  font-size: clamp(12px, 1.2vw, 14px);
}
.footer__body {
  display: flex;
  flex-direction: column;
}
.footer__nav {
  margin: 0 12px 57px 0;
}
.footer__navList {
  margin-top: 11px;
  margin-right: 2px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.footer__navList__item__link {
  color: #222222;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: .3s;
}
.footer__navList__item__link:hover {
  color: #E60012;
}
.footer__navList__item__link--sub {
  font-size: 14px;
}
.footer__subNavList {
  display: flex;
  gap: 0 24px;
}
.footer__subNav__item__link {
  color: #222222;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  transition: .3s;
}
.footer__subNav__item__link:hover {
  color: #E60012;
}
.footer__corporateNav {
  margin-right: 4px;
  display: flex;
  justify-content: flex-end;
}
.footer__utilityNav {
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid #E60012;
}
.footer__utilityNav--subNavList {
  padding: 16px 20px;
}

@media screen and (max-width: 960px) {
  .footer__logo {
    margin-bottom: 15px;
  }
  .footer__inner {
    width: 100%;
    max-width: 100%;
    padding: 40px 20px 20px;
    margin-bottom: 0;
    flex-direction: column;
  }
  .footer__address {
    font-size: 14px;
  }
  .footer__nav {
    margin-bottom: 32px;
  }
  .footer__navList {
    flex-direction: column;
    margin-top: 29px;
    gap: 3px 0;
  }
  .footer__navList__item__link {
    min-height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  .footer__navList__item__link--sub {
    display: inline;
    padding-left: 7px;
  }
  .footer__subNavList {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px 0;
  }
  .footer__corporateNav {
    justify-content: flex-start;
  }
  .footer__utilityNav {
    padding: 20px 20px;
    justify-content: flex-start;
  }
  .footer__utilityNav--subNavList {
    padding: 0;
  }
}

/* -----------------------------------
slick
----------------------------------- */
.slick {
  width: 100%;
  margin-bottom: 19px;
  display: none;
}
.slick.slick-initialized {
  display: block;
}
.slick-slide {
  width: auto;
  margin-left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-slide img {
  height: 100%;
  width: auto;
  object-fit: contain; /* coverでもOK。画像の見せ方で調整 */
  display: block;
}
.slider__controller {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.slider__controller__item {
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: #8f8f8f;
  border-radius: 50%;
  position: relative;
  transition: .3s;
}
.slider__controller__item::before {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: .3s;
  background-color: rgba(0, 0, 0, .32);
}
.slider__controller__item:hover::before {
  opacity: 1;
}
.slider__controller__icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.slider__controller__icon.iconPlay::before {
  width: 10px;
  height: 14px;
  margin-left: 1px;
  background: url('/assets/images/top/icon_slide_play.svg') no-repeat center / contain;
}
.slider__controller__icon.iconPause::before {
  width: 8px;
  height: 14px;
  background: url('/assets/images/top/icon_slide_pause.svg') no-repeat center / contain;
}

@media screen and (max-width: 768px) {
  .slick {
    margin-bottom: 31px;
  }
  .slider__controller {
    margin-right: 8px;
    flex-direction: row;
    align-items: flex-end;
  }
}

/* =========================================
templates
========================================= */
.pageTitleArea {
  display: flex;
  justify-content: center;
  padding: 114px clamp(24px, 3.4375vw, 64px) 83px;
}
.pageTitleArea.--lower {
  padding: 97px clamp(24px, 3.4375vw, 64px) 68px;
}

@media screen and (max-width: 768px) {
  .pageTitleArea {
    padding: 88px 0 59px;
  }
  .pageTitleArea.--lower {
    padding: 64px 0 43px;
  }
}
.pc_1column {
  display: flex;
  flex-direction: column;
}
.pc_1column.--sitemap {
  align-self: flex-start;
}
.pc_1column__imgBox {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pc_1column__imgBox.--noRadius {
  border-radius: 0;
}
.pc_1column__imgBox.--adjust {
  border-radius: 8px;
  margin-bottom: 0;
}
.pc_2column {
  display: flex;
  gap: 24px;
}
.pc_2column.--gapSmall {
  gap: 22px;
}
.pc_2column--txtBox,
.pc_2column--imgBox {
  width: calc((100% - 24px) / 2);
  border-radius: 16px;
  overflow: hidden;
}
.--gapSmall .pc_2column--txtBox,
.--gapSmall .pc_2column--imgBox {
  width: calc((100% - 22px) / 2);
  border-radius: 16px;
  overflow: hidden;
}
.dots-list-item {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
  letter-spacing: -1px;
}


@media screen and (max-width: 768px) {
  .dots-list-item + .dots-list-item  {
    margin-top: 1px;
  }
}

.pc_2column--imgBox.--large {
  width: 100%;
  max-width: 740px;
  border-radius: 0;
}
.pc_1column--txt,
.pc_2column--txt {
  color: #222222;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}
.pc_1column--txt.--small-line-height {
  margin-top: 24px;
}
.pc_1column--txt.--small-line-height dt,
.pc_1column--txt.--small-line-height dd {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}
.map-box {
  width: 100%;
}
.map-box iframe {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .pc_1column__imgBox.--adjust {
    max-width: none;
  }
  .pc_2column {
    flex-direction: column;
  }
  .pc_2column.--gapSmall {
    flex-direction: row;
    gap: 16px;
  }
  .pc_2column--txtBox,
  .pc_2column--imgBox {
    width: 100%;
  }
  .--gapSmall .pc_2column--txtBox,
  .--gapSmall .pc_2column--imgBox {
    width: calc((100% - 16px) / 2);
  }
  .mt20-sp {
    margin-top: 20px;
  }

}

/* =========================================
共通
========================================= */

/* -----------------------------------
タイトル
----------------------------------- */
/* LV1 */
.title--lv1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.title--lv1__main {
  font-size: 56px;
  font-weight: 300;
}
.title--lv1__sub {
  margin-top: 19px;
  color: #E60012;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}
.title--lv1__main--sub {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .title--lv1 {
    align-items: center;
  }
  .title--lv1__main {
    font-size: 40px;
  }
  .title--lv1__sub {
    margin-top: 23px;
  }
  .title--lv1__main {
    text-align: center;
  }
  .title--lv1__main--sub {
    display: block;
    font-size: 20px;
    padding-left: 0;
    margin-top: 9px;
  }
}

/* LV2 */
.title--lv2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.title--lv2__main {
  font-size: 40px;
  font-weight: 300;
}
.title--lv2__sub {
  margin-top: 14px;
  color: #E60012;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
  .title--lv2__main {
    font-size: 34px;
  }
  .title--lv2__main.--environment {
    font-size: 36px;
  }
}

/* LV3 */
.title--lv3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.title--lv3__main {
  font-size: 40px;
  font-weight: 300;
}
.title--lv3__sub {
  margin-top: 14px;
  color: #E60012;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
  .title--lv3 {
    align-items: center;
  }
  .title--lv3__main {
    font-size: 32px;
    line-height: 1.25;
  }
  .title--lv3__sub {
    margin-top: 15px;
  }
}

/* headingtitle */
.c-heading-h3 {
    margin: 57px 0 24px;
    padding-left: 17px;
    display: block;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
    position: relative;
    color: #222222;
}
.c-heading-h3::before {
    content: '';
    width: 4px;
    height: 100%;
    background: #E60012;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.c-heading-h3.--lower {
  margin-top: 0;
}
.c-heading-h3.--contact {
  margin-top: 47px;
}
.c-heading-h4 {
  font-size: 22px;
  line-height: 2;
  font-weight: 600;
}
.c-heading-h5 {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 7px;
}
.c-headeing-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.c-headeing-text.--textWithBorder {
  padding: 23px 0 21px;
  border-top: 1px solid #D5DBE0;
  border-bottom: 1px solid #D5DBE0;
  margin-top: 20px;
}
.c-headeing-text.--lower {
  line-height: 2;
}
.c-headeing-text--l {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
}
.c-headeing-text--l.--health {
  margin-bottom: 63px;
}
.c-headeing-text--xl {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6666666667;
}

@media screen and (max-width: 768px) {
  .c-heading-h3 {
    font-size: 26px;
    line-height: 1.4;
    margin-top: 19px;
  }
  .c-heading-h3.--lower {
    margin-top: 16px;
    margin-bottom: 21px;
  }
  .c-heading-h3.--spResize::before {
    height: 72%;
  }
  .c-headeing-text--l.--health {
    margin-bottom: 0;
  }
  .c-heading-h3.--spSmall {
    line-height: 1;
    margin-top: 23px;
    margin-bottom: 16px;
  }
  .c-heading-h3.--contact {
    margin-bottom: 23px;
  }
  .c-heading-h3.--spMt {
    margin-top: 41px;
  }
  .c-headeing-text.--sp {
    line-height: 2;
  }
  .c-headeing-text--l {
    font-size: 18px;
    line-height: 1.6;
  }
  .c-headeing-text--xl {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
  }

  .c-headeing-text.--textWithBorder {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 22px;
  }
}
.top-text__bottom {
  margin-bottom: 40px;
}
.bgYellowBox {
  background-color: #FDF9F1;
  border-radius: 16px;
  padding: 46px 40px;
}
.bgYellowBox.--lower {
  background-color: #FDF9F1;
  border-radius: 8px;
  padding: 8px 12px;
}

@media screen and (max-width: 768px) {
  .top-text__bottom {
    margin-bottom: 0;
  }
  .bgYellowBox {
    padding: 56px 16px;
  }
  .bgYellowBox.--lower {
  }
}

.text-direction {
  display: inline-block;
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  .text-direction {
    transform: rotate(0deg);
  }
}

.use-site-link {
  color: #222;
  text-decoration: none;
  transition: .3s;
}
.use-site-link:hover {
  color: #E60012;
}
.sitemap-link {
  display: inline;
  align-self: flex-start;
  color: #222;
  font-size: 18px;
}
.sitemap-link:hover {
  color: #E60012;
}
.sitemap-link + .sitemap-link {
  margin-top: 40px;
}
.sitemap__link-list {
  margin: 20px 0 30px 20px;
}
.sitemap__link-item + .sitemap__link-item {
  margin-top: 10px;
}
