@charset "UTF-8";
/*======================================
    font
======================================*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;700;900&display=swap');

@font-face {
  font-family: "HelveticaNeue";
  src: url("../fonts/helveticaneue.ttf") format("truetype");
}
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}

.zen-maru-gothic-black {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
}
/*======================================
    color
======================================*/
/*======================================
    common
======================================*/
html {
  font-size: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", HiraginoSans-W3, sans-serif;
  color: #000;
}

body {
  background-color: #fff;
}
body.modalActive {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}
a:hover {
  cursor: pointer;
  opacity: 0.8;
  transition: 0.3s;
}
@media (max-width: 767px) {
  a {
    /* pointer-events: none; */
  }
}



@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.over-hidden {
  overflow: hidden;
}

.wrap {
  font-size: clamp(1.5rem, 1.4814814815vw, 1.6rem);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .wrap {
    font-size: min(4.2666666667vw, 1.6rem);
  }
}

.is-nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  br.is-pc {
    display: none;
  }
}

br.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  br.is-sp {
    display: block;
  }
}

/*======================================
    layout
======================================*/
/* .main {
  padding-top: clamp(4em, 5.3125vw, 6.375em);
}
@media screen and (max-width: 1024px) {
  .main {
    padding-top: 5.71em;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: min(24.5333333333vw, 5.75em);
  }
} */

.bg {
  width: 95%;
  max-width: 1820px;
  margin-left: auto;
  margin-right: auto;
  padding: 8.125em 0 4.375em;
  background-color: #e8f2f2;
  margin-top: 3.125em;
  margin-bottom: 3.125em;
}
@media screen and (max-width: 767px) {
  .bg {
    width: 100%;
    padding: 2.875em 0 3.125em;
  }
}

.bgFull {
  padding: 6.25em 0;
  background-color: #e8f2f2;
}
@media screen and (max-width: 767px) {
  .bgFull {
    padding: 3.75em 0;
  }
}

.inner {
  max-width: 1080px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

.innerXs {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.innerSm {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.innerMd {
  max-width: 1340px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/*======================================
    breadcrumb
======================================*/

.bold {
  font-weight: 700;
}

.accentMain {
  color: #37b2e4;
}

.accentRed {
  color: red;
}

.textUnderline {
  text-decoration: underline;
}

/*======================================
    margin
======================================*/
.mb {
  margin-bottom: 1.5em !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt {
  margin-top: 1.5em !important;
}

/*======================================
    text
======================================*/
.textCenter {
  text-align: center;
}

.textRight {
  text-align: right;
}

.textLeft {
  text-align: left;
}

.hangyodon-main {
  position: relative;
}

.sp__content {
  width: 100%;
  position: relative;
}
.pc__content {
  display: none;
}
/* ----------------- pc表示 ----------------- */
@media screen and (min-width: 768px) {
  .sp__content {
    max-width: 480px;
    margin: 0 auto;
  }
  .pc__content {
    display: block;
    position: fixed;
    background: url('../img/hangyodon-lp/pc_bg.png') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
  }
  .pc__side-img--left,
  .pc__side-img--right {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .pc__content {
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    justify-content: space-around;
    align-items: center;
  }
  .pc__side-img--left,
  .pc__side-img--right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: relative;
  }
  .pc__side-img--left img,
  .pc__side-img--right img {
    width: 70%;
  }
  .pc__copy {
    position: absolute;
    bottom: 20px;
  }
}
/* ----------------- top ----------------- */
.top {
  background: #fff8b0;
}
.top__logo {
  width: 65%;
  position: absolute;
  top: 1%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 2;
}
.top__bg {
  position: relative;
  z-index: 1;
}
.top__link {
  padding: 25px 0 35px;
}


/* ----------------- about ----------------- */
.about {
  background: #fff8b0;
  padding: 23px 0 60px;
}

.detail__btn {
  min-width: 310px;
  width: 60%;
  margin: 30px auto;
  background: #1250a6;
  color: #ffff28;
  font-size: 1.8rem;
  border-radius: 50px;
  box-shadow: 5px 5px 0px 0px rgba(200, 200, 200, 1);
  letter-spacing: 1px;
}
.detail__btn a {
  display: inline-block;
  width: 100%;
  padding: 25px;
}
.about-intro__content {
  padding-top: 50px;
}
.about-intro__chara-img {
  max-width: 195px;
  margin: 0 auto;
}
.about-intro__inner {
  margin-top: 50px;
  background: #fff;
  border-radius: 10px;
  padding-bottom: 30px;
}
.about-intro__title {
  color: #1d2087;
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  top: -10px;
}
.about-intro__box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  margin-top: 40px;
}
.about-intro__name {
  color: #1d2087;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.about-intro__txt {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.about-intro__txt span {
  display: inline-block;
  padding-top: 5px;
}
.about-intro__box:nth-of-type(1) .about-intro__box--img img {
  width: 90%;
  max-width: 102px;
}
.about-intro__box:nth-of-type(2) .about-intro__box--img img {
  max-width: 110px;
  margin-top: 15px;
  margin-left: 20px;
}
.about-intro__box:nth-of-type(3) .about-intro__box--img img {
  max-width: 60px;
  margin-top: 20px;
  margin-left: 20px;
}
.about-intro__inner .detail__btn {
  margin-bottom: 40px;
}

/* ----------------- info,corner ----------------- */
.info,
.corner {
  background: #82cbd1;
  padding-top: 40px;
}
.corner {
  padding-bottom: 70px;
}
.info__inner {
  width: 84%;
}
.info__title,
.corner__title {
  text-align: center;
  margin-bottom: -50px;
}
.info__container--bankbk-cd,
.corner__container {
  background: #fff;
  padding: 80px 40px 50px;
}
.info__container--bankbk-cd img,
.corner__container img {
  filter: drop-shadow(5px 5px 5px #aaa);
}
.info__txt-box {
  display: grid;
  grid-template-columns: 4fr 1fr;
  justify-content: space-between;
  margin-top: 10px;
}
.info__txt {
  color: #1d2087;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -1px;
}
.info__txt br.br-sp {
  display: none;
}
.info__txt--circle {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  background: #1d2087;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -55px;
}


/* アコーディオン */
.info__menu-list {
  margin-top: 15px;
}
.accordion-004 {
  width: 100%;
  margin-bottom: 15px;
  border: 1px solid #1d2087;
  background: #fff;
  font-size: 1.6rem;
  padding: 20px;
  transition: .3s;
}

.accordion-004 summary {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #e3032d;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.accordion-004 summary::-webkit-details-marker {
  display: none;
}

.accordion-004 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 1px solid #1d2087;
  border-right: 1px solid #1d2087;
  content: '';
  transition: transform .3s;
  position: absolute;
  right: 0;
}
.accordion-004[open] summary {
  margin-bottom: 20px;
  transition: .3s;
}
.accordion-004[open] summary::after {
  transform: rotate(225deg);
}

.accordion-004 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  color: #1d2087;
  transition: transform .5s, opacity .5s;
  font-size: 1.4rem;
  line-height: 1.4;
  text-indent: -1.1em;
  padding-left: 1em;
  padding-bottom: 5px;
}

.accordion-004[open] p {
  transform: none;
  opacity: 1;
}
.info__txt-campaign {
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  padding: 30px 0;
}
.corner__inner {
  width: 84%;
}
.corner__container {
  padding-left: 20px;
  padding-right: 20px;
}
.corner__txt {
  color: #1d2087;
  font-size: 2rem;
  line-height: 1.5;
  vertical-align: middle;
  border-bottom: 2px solid #1d2087;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.corner__txt span {
  font-size: 2.4rem;
}
.corner__txt a {
  width: 100%;
  display: block;
}
.corner__box:nth-last-of-type(2) .corner__txt {
  margin-top: 30px;
}
.corner__txt--last {
  font-size: 2.4rem;
  color: #1dade5;
  text-align: center;
  line-height: 1.4;
  padding: 10px 0 20px;
}
.corner__box:last-child img {
  display: block;
  width: 100px;
  margin: 0 auto;
  filter: none;
}

/* ----------------- relation ----------------- */
.relation {
  padding: 70px 0;
  background: #fff;
}
.relation__inner {
  width: 70%;
}
.relation__title {
  color: #00b8ee;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
}
.relation__inner img {
  filter: drop-shadow(5px 5px 5px #aaa);
}
.relation__inner a {
  display: block;
  width: 100%;
  height: 100%;
}
.relation__inner a + a {
  margin-top: 20px;
}

@media (max-width: 400px) {
  html {
    font-size: 9px;
  }
  .about-intro__box:nth-of-type(2) .about-intro__box--img img {
    margin-left: 0;
  }
  .info__txt br.br-sp {
    display: block;
  }
  .info__txt br.br-pc {
    display: none;
  }
}