@charset "Shift_JIS";

/* =====================================================
  OverWrite for business page
===================================================== */

body .wrapper {
  font-size: 18px;
  padding: min(18vw, 140px) 0 0;
  background: #fff;
}
@media screen and (max-width: 1023px) {
  body .wrapper {
    font-size: 4vw;
    overflow: clip !important;
  }
}
.breadcrumbs {
  padding: min(7vw, 30px) min(6.9444444444vw, 100px);
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  margin: auto;
}
.breadcrumbs__item:not(:last-of-type)::after {
  -webkit-filter: none;
  background: #033d8a;
  mask; url(/assets/images/ico_dot.svg) no-repeat center;
  border-radius: 50%
}



/* =====================================================
  Components
===================================================== */

/* Button */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  border-radius: 9999px;
  position: relative;
  transition: all .3s ease;
  font-size: 18px;
  font-weight: 500;
  overflow: hidden;
}
.c-btn:hover {
  opacity: 1;
}
.c-btn::before,
.c-btn::after {
  transition: all .3s ease;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  .c-btn {
    font-size: 3.75vw;
  }
}

.c-btn--grade {
  background-image: -webkit-linear-gradient( 176deg, rgb(141,87,83) 0%, rgb(141,87,83) 0%, rgb(141,87,83) 0%, rgb(86,88,124) 56%, rgb(31,89,164) 100%);
  color: #fff !important;
  min-width: 170px;
  padding: 15px 43px 15px 40px;
}
.c-btn--grade::after {
  width: 5px;
  height: 5px;
  right: 20px;
  background: #fff;
  border-radius: 50%;
}
.c-btn--grade:hover::after {
  transform: scale(2);
}
@media screen and (max-width: 1023px) {
  .c-btn--grade {
    min-width: auto;
    padding: 3vw 6vw 3vw 4vw;
  }
  .c-btn--grade::after {
    width: 1vw;
    height: 1vw;
    right: 4vw;
  }
}

.c-btn--gradline {
  border: 1px solid #033d8a;
  min-width: 170px;
  padding: 15px 43px 15px 40px;
  color: #033d8a !important;
}
.c-btn--gradline::after {
  width: 5px;
  height: 5px;
  right: 20px;
  background: #033d8a;
  border-radius: 50%;
}
.c-btn--gradline:hover::after {
  transform: scale(2);
}
@media screen and (max-width: 1023px) {
  .c-btn--gradline {
    min-width: auto;
    padding: 3vw 6vw 3vw 4vw;
  }
  .c-btn--gradline::after {
    width: 1vw;
    height: 1vw;
    right: 4vw;
  }
}

.c-btn--arrow {
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(31, 89, 164, 0.2);
  border-radius: 20px;
  padding: 35px 120px 35px 65px;
  justify-content: flex-start;
  color: #033d8a !important;
  font-size: 22px;
  font-weight: 700;
  display: flex;
}
.c-btn--arrow::after {
  width: 15px;
  height: 28px;
  right: 58px;
  mask: url("../image/icon_arrow.svg") no-repeat center / contain;
  background: #033d8a;
}
.c-btn--arrow:hover::after {
  transform: translateX(10px);
}
@media screen and (max-width: 1023px) {
  .c-btn--arrow {
    box-shadow: 0px 1vw 2vw 0px rgba(31, 89, 164, 0.2);
    border-radius: 2vw;
    padding: 4vw 10vw 4vw 7vw;
    font-size: 4vw;
  }
  .c-btn--arrow::after {
    width: 2.3vw;
    height: 4.2vw;
    right: 6vw;
  }
}

.c-btn--icon {
  gap: 30px;
  justify-content: flex-start;
  height: 160px;
  padding: 0 80px 0 50px;
  background: #fff;
  border-radius: 20px;
}
.c-btn--icon::after {
  width: 15px;
  height: 28px;
  right: 40px;
  mask: url("../image/icon_arrow.svg") no-repeat center / contain;
  background: #000;
}
.c-btn--icon:hover {
  background: #fce7e9;
}
.c-btn--icon:hover::after {
  transform: translateX(10px);
}
.c-btn--icon__img {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
}
.c-btn--icon__img img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.c-btn--icon__text {
  font-size: 22px;
}
.c-btn--icon__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: transform .4s ease;
  width: 100%;
}
.c-btn:hover .c-btn--icon__bg {
  transform: scale(1.05);
}
@media screen and (max-width: 1023px) {
  .c-btn--icon {
    width: auto;
    height: auto;
    gap: 4vw;
    padding: 5vw 8vw 5vw 5vw;
    border-radius: 2vw;
  }
  .c-btn--icon::after {
    width: 2.3vw;
    height: 4.2vw;
    right: 5vw;
  }
  .c-btn--icon__img {
    width: 12vw;
    height: 12vw;
  }
  .c-btn--icon__text {
    font-size: 4vw;
  }
  .c-btn--icon__bg img {
    width: auto;
    height: 100%;
  }
}




/* =====================================================
  Text
===================================================== */
.c-notes {
  font-size: 80%;
  font-weight: 400;
  line-height: 1.4;
}
.u-pt-0  { padding-top: 0 !important; }
/* -------------------------
  color
-------------------------- */
.u-fc-red { color: #c93944; }
.u-fc-blue { color: #033d8a; }
/* -------------------------
  text-align
-------------------------- */
.u-ta-l { text-align: left !important; }
.u-ta-c { text-align: center !important; }
.u-ta-r { text-align: right !important; }
.u-ta-c img { margin-left: auto; margin-right: auto; }




/* =====================================================
  List
===================================================== */
.c-list {
  margin: 0;
  padding: 0;
}
.c-list--kome { list-style: none !important; margin: 0 !important; }
.c-list--kome >* { padding-left: 1em; text-indent: -1em; }
.c-list--komenum >* { position: relative; padding-left: 2em; text-indent: -2em; }
.c-list--kakkochu >* { position: relative; padding-left: 3.5em; text-indent: -3.5em; }
.c-list--kakkonum>* { position: relative; padding-left: 2.5em; text-indent: -2.5em; }

.c-list--disc { list-style: disc; margin-left: 1.5em; }
.c-list--disc li { padding-left: 0; text-indent: 0; }

.c-list--decimal { list-style: decimal; margin-left: 1.5em; }
.c-list--decimal li { padding-left: 0; text-indent: 0; }

.c-list--marker li::marker {
  color: var(--color-primary);
  font-weight: 700;
}



/* =====================================================
  Title
===================================================== */

.c-title--01 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
}
.c-title--01.c-title--wave {
  padding-top: 110px;
  position: relative;
  z-index: 0;
}
.c-title--01.c-title--wave::after {
  position: absolute;
  content: "";
  width: 1760px;
  height: 210px;
  left: -310px;
  top: 0;
  z-index: -1;
  background: url("../image/bg_wave.png") no-repeat center / contain;
}
.c-title--01.c-title--wave + * {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .c-title--01 {
    font-size: 6vw;
  }
  .c-title--01.c-title--wave {
    padding-top: 10vw;
  }
  .c-title--01.c-title--wave::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 15vw;
    left: -5vw;
  }
}
.c-title--02 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}
.c-title--03 {
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}
.c-lead {
  font-size: 16px;
  line-height: 1.7;
}



.section-sns {
  background-color: #e6e8eb;
}
.section-sns .section__inner {
  padding: 16.2849872774vw 5.0890585242vw 8.1424936387vw;
}
.section-sns .sns__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-sns .sns .snsList__item {
  text-align: center;
  width: 38.1679389313vw;
}
.section-sns .sns .snsList__item .ico {
  margin-bottom: 2.0356234097vw;
}
.section-sns .sns .snsList__item .ico__item {
  background-color: #f6f6f8;
  border-radius: 100%;
  height: 25.4452926209vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: background-color 0.4s;
  width: 25.4452926209vw;
}
.section-sns .sns .snsList__item .ico::before, .section-sns .sns .snsList__item .ico::after {
  display: none;
}
.section-sns .sns .snsList__item .ico img {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section-sns .sns .snsList__item .ico-facebook img {
  width: 12.7226463104vw;
}
.section-sns .sns .snsList__item .ico-x img {
  width: 9.6692111959vw;
}
.section-sns .sns .snsList__item .ico-insta img {
  width: 11.1959287532vw;
}
.section-sns .sns .snsList__item .ico-youtube img {
  width: 19.0839694656vw;
}
.section-sns .sns .snsList__item .ico-note img {
  width: 18.320610687vw;
}
.section-sns .sns .snsList__item .text {
  font-size: 3.5623409669vw;
  line-height: 1.6;
  transition: color 0.4s;
  position: relative;
}
@media all and (min-width: 1024px) {
  .section-sns .section__inner {
    padding: min(5.5555555556vw, 80px) min(10.4166666667vw, 150px);
  }
  .section-sns .sns {
    margin-left: auto;
    margin-right: auto;
    width: min(76.3888888889vw, 1100px);
  }
  .section-sns .sns .snsList__item {
    width: min(12.5vw, 180px);
  }
  .section-sns .sns .snsList__item a:hover .ico__item {
    background-color: #ffffff;
  }
  .section-sns .sns .snsList__item a:hover .text {
    color: #033d8a;
  }
  .section-sns .sns .snsList__item .ico {
    margin-bottom: min(1.1111111111vw, 16px);
  }
  .section-sns .sns .snsList__item .ico__item {
    height: min(9.7222222222vw, 140px);
    width: min(9.7222222222vw, 140px);
  }
  .section-sns .sns .snsList__item .ico-facebook img {
    width: min(4.8611111111vw, 70px);
  }
  .section-sns .sns .snsList__item .ico-x img {
    width: min(3.6111111111vw, 52px);
  }
  .section-sns .sns .snsList__item .ico-insta img {
    width: min(4.3055555556vw, 62px);
  }
  .section-sns .sns .snsList__item .ico-youtube img {
    width: min(7.2916666667vw, 105px);
  }
  .section-sns .sns .snsList__item .ico-note img {
    width: min(7.0833333333vw, 102px);
  }
  .section-sns .sns .snsList__item .text {
    font-size: clamp(14px, 1.1111111111vw, 16px);
  }
}
