@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

:root{
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;

  --side-inner: 300px;
  --main-width: 825px;
  --col-gap: 75px;
  --active: #0D7EC5;
  --frame: 4px;
  --radius-out: 14px;
  --radius-in: 12px;
  --layout-max: calc(var(--side-inner) + (var(--frame) * 2) + var(--col-gap) + var(--main-width));
  --color-border: #d9dde3;
}

body{
  font-family: var(--font-base);
  font-weight: 600;
}

/* ===============================
   utility
================================= */
@media (min-width: 490px){
  .sp-only490{
    display: none;
  }
}
@media (min-width: 767px){
  .sp-only{
    display: none;
  }
}

@media (max-width: 768px){
  .pc-only{
    display: none;
  }
}

/* ===============================
   header
================================= */
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
}

.header__inner{
  max-width: 1400px;
    margin: 0 auto;
}

/* .header__logo{
  position: absolute;
  left: 44px;
  top: 19px;
} */

.header__logo img{
  display: block;
  width: 345.42px;
  aspect-ratio: 831 / 91;
  /* background: url("../img/header/header_logo.png") no-repeat center; */
  background-size: contain;
}
.header__flex{
  display: flex;
  padding-top: 15px;
  justify-content: space-between;
  margin-inline: 25px;
}

.header__logo img{
  display: block;
  height: 40px;
  width: auto;
}

/* ===== header top ===== */
.header__actions{
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 17.3px;
}

.header__tel__group{
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__tel img{
  width: 35px;
  flex-shrink: 0;
}

.header__tel-text{
  display: flex;
  flex-direction: column;
}

.header__tel-number{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.header__tel-hours{
  font-size: 11px;
  color: #666;
  margin-top: 2px;
}

.header__tel span{
  font-size: clamp(20px, 1.504vw + 11.95px, 30px);
  line-height: 1.1;
}

.header__tel small{
  display: block;
  font-size: 12px;
  margin: 2px 0 0 45px;
  white-space: nowrap;
}

.header__btn{
  display: inline-flex;
  width: clamp(186px, 7.236vw + 99.17px, 238.1px);
  align-items: center;
  justify-content: center;
  padding-block: 8px;
  border: 1px solid #231815;
  border-radius: 7px;
  background: #fff;
  text-decoration: none;
  font-size: clamp(16px, 0.833vw + 8px, 18px);
  white-space: nowrap;
  font-weight: 400;
}

.header__btn:hover{
  opacity: .85;
}

.header__hamburger{
  display: none;
}

/* ===== header nav ===== */
.header__nav{
  max-width: 1200px;
  margin: 0 auto;
}

.header__nav-group{
  display: flex;
  justify-content: right;
  align-items: flex-start;
  gap: 37.9px;
  margin: 0;
  list-style: none;
}

.header__nav-group li a{
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1b1b1b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.header__nav-group li a img{
  width: 20px;
  height: 20px;
  display: block;
}

.header__nav-group li a p{
  margin: 0;
  line-height: 1.1;
}

.header__nav-group--top{
  margin-top: 15px;
}

.header__nav-group--bottom{
  margin-top: 15px;
  padding-bottom: 15px;
}

.header__nav-group--top li a p{
  font-size: clamp(16px, 0.551vw + 9.38px, 18px);
  font-weight: 400;
}

.header__nav-group--bottom li a p{
  font-size: clamp(18px, 0.694vw + 9.67px, 20px);
  font-weight: 500;
}

.header__nav-group--bottom li a img{
  width: 28px;
  height: 28px;
}

.header__nav-group--bottom li a{
  font-size: 13px;
}

/* ===== header responsive ===== */
@media (max-width: 1100px){
  .header__nav-group{
    gap: 22px;
  }
}

@media (max-width: 750px){
  .header__logo a{
    width: clamp(200px, 38.78vw + 54.58px, 345.42px);
  }
}



/* ===============================
   hamburger / drawer (<=1200px)
================================= */
@media (max-width: 1200px){
  
  .header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px;
    margin-right: 0;
  }

  .header__logo{
    position: static;
    margin: 0;
  }

  .header__hamburger{
    display: block;
    position: static;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1400;
  }

  .hamburger__line{
    display: block;
    width: 60.86px;
    margin-top: 13px;
    border: #004ea2 solid 1px;
    transition: .3s;
  }

  .hamburger__line:first-child{
    margin-top: 0;
  }

  .header__hamburger.active .hamburger__line:nth-child(1){
    transform: translateY(19px) rotate(45deg);
  }

  .header__hamburger.active .hamburger__line:nth-child(2){
    opacity: 0;
  }

  .header__hamburger.active .hamburger__line:nth-child(3){
    transform: translateY(-10px) rotate(-45deg);
  }

  .header__nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100svh;
    width: min(420px, 86vw);
    background: #fff;
    box-shadow: none;
    transform: translateX(110%);
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 1300;
    margin-top: 0;
    padding: 70px 20px 24px;
    overflow-y: auto;
  }

  .header__nav.open{
    transform: translateX(0);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .18);
  }

  .header__nav .header__top{
    display: block;
  }

  .header__nav .header__actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    padding-top: 0;
  }

  .header__nav .header__btn,
  .header__nav .header__tel{
    width: 100%;
  }

  .header__nav .header__tel__group{
    justify-content: center;
  }

  .header__nav .header__tel small{
    margin: 2px 0 0;
    text-align: center;
    white-space: normal;
  }

  .header__nav .header__tel-text{
    align-items: center;
  }

  .header__nav-group{
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .header__nav-group--top,
  .header__nav-group--bottom{
    margin-top: 0;
    padding-bottom: 0;
  }

  .header__nav-group + .header__nav-group{
    margin-top: 8px;
        padding-top: 8px;
    border-top: 1px solid #e5e5e5;
  }

  .header__nav-group li a{
    width: 100%;
    padding: 8px;
    border-radius: 10px;
  }

  .header__nav-group li a:hover{
    background: #f5f5f5;
  }
  .header__flex{
    padding-top: 0;
    margin-inline: 0;
  }
}
@media (max-width: 768px){
  body{
    padding-top: 105px;
  }
}


/* ===============================
   /header
================================= */


/* ===============================
   footer
================================= */
.footer{
  background: #004ea2;
  color: #fff;
}

.footer__inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(90px, 13.8889vw - 76.6667px, 190px);
}

/* ===== footer company ===== */
.footer__company{
  max-width: 420px;
  margin: 0 auto;
}

.footer__logo{
  margin-bottom: 10px;
}

.footer__logo img{
  max-width: 447.24px;
  height: auto;
  display: block;
}

.footer__address,
.footer__tel{
  font-weight: 400;
  font-size: 18px;
  line-height: 37px;
  color: #fff;
}

/* ===== footer nav ===== */
.footer__nav{
  flex: 1;
}

.footer__navList{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__navList li{
  white-space: nowrap;
}

.footer__navList li a{
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  text-align: left;
  color: #fff;
}

.footer__navList li a:hover{
  text-decoration: underline;
}

/* ===== footer copy ===== */
.footer__copy{
  text-align: center;
  font-size: 18px;
  padding: 10px;
  font-weight: 400;
}

@media screen and (max-width: 1200px){
  .footer__inner{
    flex-direction: column;
    text-align: center;
    padding: 10px;
    gap: 10px;
  }

  .footer__logo img{
    margin: 0 auto;
    width: 357.79px;
    height: auto;
  }

  .footer__nav{
    width: fit-content;
    margin: 0 auto;
  }

  .footer__navList{
    justify-content: center;
    gap: 5px 18px;
    max-width: 880px;
    margin: 0 auto;
  }

  .footer__navList li{
    width: auto;
    white-space: normal;
  }

  .footer__navList li a{
    display: inline-block;
    font-size: 14.4px;
    line-height: 29.6px;
  }

  .footer__address,
  .footer__tel{
    font-size: 14.4px;
    line-height: 24px;
    text-align: left;
    margin-left: 16px;
  }

  .footer__copy{
    font-size: 14.4px;
    padding: 18px 0 0;
  }
}

@media screen and (max-width: 480px){
  .footer__logo img{
    width: 280px;
  }
}

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


/* ===============================
   sidebar
================================= */
.pageLayout{
  max-width: var(--layout-max);
  width: 100%;
  /* margin-inline: auto; */
  display: flex;
  gap: var(--col-gap);
  align-items: flex-start;
  padding-inline: 0;
  margin: 80px auto;
}

.sideNav{
  width: calc(var(--side-inner) + (var(--frame) * 2));
  position: sticky;
  top: 220px;
  margin-bottom: 186px;
}

.pageMain{
  width: var(--main-width);
  max-width: 100%;
  color: #373D45;
}

/* ===== sidebar frame ===== */
.sideNav__frame{
  padding: var(--frame);
  border-radius: var(--radius-out);
  background: linear-gradient(
    83.35deg,
    rgba(255, 221, 139, 0.6) 0%,
    rgba(244, 127, 198, 0.6) 15%,
    rgba(205, 115, 213, 0.6) 32%,
    rgba(91, 101, 248, 0.6) 73%,
    rgba(50, 174, 254, 0.6) 90%,
    rgba(59, 210, 235, 0.6) 97%,
    rgba(70, 251, 218, 0.6) 100%
  );
}

.sideNav__inner{
  width: var(--side-inner);
  background: #fff;
  border-radius: var(--radius-in);
  padding: 14px 28px;
}

.sideNav__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.sideNav__item{
  margin-top: 14px;
  font-size: 16px;
}
.sideNav__item:last-of-type{
  margin-bottom: 14px;
}

.sideNav__section{
  margin-top: 18px;
  padding-top: 14px;
  font-weight: 700;
  color: #111;
}

.sideNav__link,
.sideNav__sublink{
  display: inline-block;
  position: relative;
  #373D45
  text-decoration: none;
  line-height: 1.6;
}

.sideNav__link{
  padding-left: 12px;
  font-weight: 700;
  color: #373D45;
}

.sideNav__sublink{
  padding-left: 14px;
  font-weight: 300;
  font-size: 16px;
}

.sideNav__sub{
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 16px;
}

.sideNav__sub li + li{
  margin-top: 8px;
}

.sideNav__link:hover,
.sideNav__sublink:hover{
  text-decoration: underline;
}

.sideNav a.is-active{
  color: var(--active);
}

.sideNav a.is-active::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--active);
  position: absolute;
  left: 0;
  top: 0.85em;
  transform: translateY(-50%);
}

/* .sideNav__sublink::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: #A7AEBA;
  transform: translateY(-50%);
} */

/* ===== sidebar responsive ===== */
@media (max-width: 1240px){
  .pageLayout{
    padding-inline: 16px;
    gap: 32px;
  }

  .pageMain{
    width: auto;
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 1024px){
  :root{
    --side-inner: 260px;
  }

  .sideNav{
    top: 140px;
  }
}

@media (max-width: 768px){
  :root{
    --side-inner: 100%;
  }
  .header {
    position: fixed;
    left: 0;
    top: 0;
  }
  .pageLayout{
    flex-direction: column-reverse;
    gap: 24px;
    padding-inline: 16px;
    margin-block: 30px;
  }

  .sideNav{
    position: static;
    width: 100%;
    margin-bottom: 56px;
  }

  .sideNav__inner{
    width: 100%;
  }

  .pageMain{
    width: 100%;
  }

  .sideNav__item{
    font-size: 14px;
  }

  .sideNav__sublink{
    font-size: 14px;
  }
  

}

/* ===== to top ===== */
.toTop{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #0D7EC5;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.toTop.is-show{
  display: grid;
  place-items: center;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px){
  .toTop{
    display: none !important;
  }
}

/* ===============================
   /sidebar
================================= */


/* ===============================
   parts
================================= */
/* ===== breadcrumb ===== */
.breadcrumb{
  font-size: 14px;
  margin-top: 240px;
}

.breadcrumb__list{
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0 16px;
  margin: 67px auto 0;
  max-width: var(--layout-max);
  width: 100%;
}

.breadcrumb__item{
  display: flex;
  align-items: center;
  line-height: 160%;
}

.breadcrumb__item a{
  color: #B6BBB8;
  text-decoration: none;
  font-weight: 400;
}

.breadcrumb__item a:hover{
  text-decoration: underline;
}

.breadcrumb__item + .breadcrumb__item::before{
  content: ">";
  color: #B6BBB8;
  margin-right: 12px;
}

.breadcrumb__item[aria-current="page"]{
  color: #373D45;
  font-weight: 400;
}

/* ===== page title ===== */
.page__title{
  width: fit-content;
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 700;
  font-size: clamp(18px, calc((23 - 18) / (1920 - 375) * 100vw + 18px), 23px);
  line-height: 140%;
  letter-spacing: -0.083em;
}


.page__title::before,
.page__title::after{
  content: "";
  width: 120px;
  height: 4px;
  background: #046EB8;
  flex-shrink: 0;
}


@media (max-width: 768px){
  .page__title{
    margin: 50px auto 90px;
    padding-inline: 10px;
  }
}

/* ===== section title ===== */
.section__title{
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #373D45;
}

.section__title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 36px;
  background: #046EB8;
}

.section__text{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.company-access{
  margin-top: 32px;
}

.text-underline{
  text-decoration: underline;
}

.pageContent__group{
  margin-top: 40px;
  scroll-margin-top: 180px;
}
/* .pageContent__group:last-child{
  margin-bottom: 160px;
} */
.pageContent__title{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
}
.pageContent__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
}
.pageContent__sub-title{
  font-size: 18px;
  line-height: 1.6;
}
.pageContent__list{
  margin-top: 16px;
}
.pageContent__item{
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
.pageContent__body{
  padding-left: 10px;
}
.website-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin: 16px 0 40px;
}

.website-links a{
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  color: #333;
}
.pageContent__text_right{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  text-align: right;

}
.margin-top__80{
  margin-top: 80px;
}
.service__communication{
  margin-block: 32px;
}
.service__communication__text{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  margin-left: 28px;
  margin-right: 10px;
}
.service__communication__text > span:first-child,
.service__communication__text{
  border-bottom: 1px solid #000;
}
.service__communication__text::after{
  content: "";
  width: 18px;
  height: 1px;
  background: #A7AEBA;
  position: absolute;
  left: -28px;
  top: 50%;
}
.mini-font{
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
}
.service__communication__text02{
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 48px;
  border-bottom: 1px solid #000;
}
/* .service__communication:last-of-type{
  margin-bottom: 160px;
} */
.margin-top0{
  margin-top: 0;
}
.anonymized__contact{
  margin-top: 16px;
  margin-left: 16px;
  font-weight: 400;
  border-left: 1px solid var(--color-border);
}

.anonymized__contact p{
  line-height: 1.6;
  padding-left: 16px;
}
.anonymized__note{
  font-size: 14px;
  margin-top: 8px;
}
.link__text{
  font-weight: 400;
  margin-top: 16px;
  display: block;
}
.text-right{
  text-align: right;
}
.margin-top40{
  margin-top: 40px;
}
.margin-top32{
  margin-top: 32px;
}
@media (max-width: 768px){
  .service__communication__text02{
    margin-left: 0;
  }
}
/* ===============================
   /parts
================================= */
@media screen and (max-width: 490px){
  .page__title::before,
  .page__title::after{
    width: 50px;
  }
  .privacyList__body a {
    word-break: break-all;
  }
  .header__logo img{
    height: 23px;
  }
}
.toTop.is-show {
  display: none;
}
@media screen and (max-width: 490px){
  .header__inner{
    padding: 20px 16px;
  }

  .hamburger__line{
    width: 50px;
    margin-top: 10px;
  }

  .header__hamburger.active .hamburger__line:nth-child(1){
    transform: translateY(15px) rotate(45deg);
  }
  .breadcrumb__list{
    margin: 0px auto;
  }
  .page__title{
    margin: 30px auto;
  }
}
@media screen and (max-width: 768px){
  .breadcrumb{
    margin-top: 0;
  }
}

/* ===============================
   メニューバーアコーディオン
================================= */

.sideNav__toggle{
  display: inline-block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding-left: 12px;
  font-weight: 700;
  color: #373D45;
  line-height: 1.6;
  position: relative;
}

.sideNav__toggle::after{
  content: "▼";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 12px;
}

.sideNav__sub{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sideNav__item.is-open .sideNav__sub{
  max-height: 500px;
}

.sideNav__item.is-open .sideNav__toggle::after{
  transform: translateY(-50%) rotate(180deg);
}
/* 約款アコーディオン */
.service__communication2__toggle{
  width: 100%;
  background: none;
  border: none;
  padding: 12px 24px 12px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  margin-left: 28px;
}


/* .service__communication2__toggle::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 150px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .3s;
} */

.service__communication2__toggle::after{
  content: "▼";
  position: absolute;
  top: 50%;
  left: 150px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 12px;
}

.service__communication2.is-open .service__communication2__toggle::after{
  transform: translateY(-40%) rotate(-180deg);
}

.service__communication2__content{
  display: none;
  /* padding-top: 8px; */
}

.service__communication2.is-open > .service__communication2__content{
  display: block;
  border: solid 1px #373D45;
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
}
.service__communication2{
  margin-top: 0;
}
.service__communication3{
  margin-bottom: 0;
}