@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  font-family: "Noto sans JP", sans-serif;
  line-height: 2;
  color: #201E37;
  font-size: 16px;
}
@media screen and (max-width: 989px) {
  body {
    font-size: 14px;
    line-height: 1.8;
  }
}

h1, h2, h3, h4 {
  line-height: 1.6;
}

.no_scroll {
  overflow: hidden;
}

img {
  width: 100%;
}

p {
  color: #201E37;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a[href^="tel:"] {
  pointer-events: none;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  a {
    text-decoration: underline;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
/*-------------メイン共通-------------*/
.color_red {
  color: #DE4E2B !important;
}

.container {
  width: 100%;
  max-width: 1084px;
  margin: 0 auto;
}

/* 下からフェードイン */
.fadeIn_up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .container {
    max-width: none;
  }
}
.section_title {
  font-size: 22px;
  line-height: 27px;
  font-weight: bold;
  letter-spacing: 1.1px;
  color: #362E93;
  text-align: center;
}

.section_subtitle {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section_title {
    line-height: 18px;
    font-size: 14px;
  }
  .section_subtitle {
    line-height: 33px;
    font-size: 22px;
  }
}
/*-------------HEADER-------------*/
header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

header a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
}

.header_left {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_left a {
  font-weight: bold;
  font-size: 20px;
  color: #201E37;
  font-family: "Lato", sans-serif;
  padding-left: 15px;
}

.header_right {
  display: flex;
  align-items: center;
}

.header_right li a {
  color: #fff;
  padding: 20px 10px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s;
}

@media screen and (max-width: 989px) {
  .header_right li a {
    padding: 20px 5px;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s;
  }
}
.header_right li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .header_left a {
    font-size: 16px;
  }
  .header_right {
    display: none;
  }
}
/*-------------HUMBERGER-------------*/
.hamburger {
  display: none;
}

.modal {
  display: none;
}

.open_btn {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  top: 5px;
  cursor: pointer;
}

/*ボタン内側*/
.open_btn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 1px;
  background: #FFFFFF;
  width: 20px;
}

.open_btn span:nth-of-type(1) {
  top: 14px;
}

.open_btn span:nth-of-type(2) {
  top: 22px;
}

.open_btn span:nth-of-type(3) {
  top: 30px;
}

/*activeクラスが付与されると線が回転して×に*/
.open_btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.open_btn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.open_btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 10;
  }
  .modal {
    display: block;
  }
  .menu_modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 60px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-sizing: border-box;
    z-index: 10;
  }
  .menu_modal.active {
    opacity: 1;
    visibility: visible;
  }
  .menu_modal li {
    text-align: center;
  }
  .menu_modal li a {
    color: #FCF9F5;
    text-decoration: none;
    display: block;
    padding: 20px 0;
  }
}
/*-------------HERO-------------*/
/* .hero {
    padding-top: 66px;
    width: 100%;
}

 */
.hero {
  width: 100%;
  height: 660px;
  overflow: hidden;
  padding-top: 730px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .hero {
    padding-top: 546px;
    height: 476px;
  }
}
.slider-image img {
  width: 100%;
  height: 660px;
  position: absolute;
  top: 70px;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: 3s;
}

@media screen and (max-width: 768px) {
  .slider-image img {
    height: 476px;
    -o-object-fit: cover;
       object-fit: cover;
    top: 70px;
  }
}
.slider-image img.active {
  width: 100%;
  opacity: 1;
}

.slider-text-wrap {
  position: absolute;
  width: 100%;
  max-width: 1084px;
  left: 50%;
  top: calc(50% + 40px);
  transform: translate(-50%, -50%);
  text-align: left;
}
@media screen and (max-width: 989px) {
  .slider-text-wrap {
    top: calc(50% + 35px);
  }
}
.slider-text-wrap h1 .en {
  color: #362E93;
  opacity: 0.35;
  display: block;
  font-weight: 500;
  line-height: 1.4;
  font-size: 22px;
}
@media screen and (max-width: 989px) {
  .slider-text-wrap h1 .en {
    font-size: 14px;
  }
}
.slider-text-wrap h1 .ja {
  color: #362E93;
  display: block;
  font-size: 66px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: 500;
}
@media screen and (max-width: 989px) {
  .slider-text-wrap h1 .ja {
    font-size: 26px;
  }
}
.slider-text-wrap p {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  line-height: 36px;
}
@media screen and (max-width: 989px) {
  .slider-text-wrap p {
    line-height: 30px;
    margin-top: 10px;
    font-size: 14px;
  }
}

/*-------------ABOUT-------------*/
.p-about-wrap .p-about-wrap__textbox {
  position: relative;
  border-radius: 5px;
  background: #fff;
  padding: 80px 60px;
}
@media screen and (max-width: 989px) {
  .p-about-wrap .p-about-wrap__textbox {
    padding: 60px 20px;
  }
}
.p-about-wrap .p-about-wrap__textbox img {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 60px;
  margin-inline: auto;
  max-width: 680px;
}
@media screen and (max-width: 989px) {
  .p-about-wrap .p-about-wrap__textbox img {
    max-width: 295px;
    margin-top: 40px;
  }
}
.p-about-wrap .p-about-wrap__textbox::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 25px solid #362E93;
  border-bottom: 25px solid #362E93;
  border-left: 25px solid transparent;
  border-top: 25px solid transparent;
  border-radius: 0 0 5px 0;
}
.p-about-wrap .p-about-wrap__textbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 25px solid #362E93;
  border-top: 25px solid #362E93;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-radius: 5px 0 0 0;
}
.p-about-wrap .p-about-wrap__textbox h3 {
  font-size: 32px;
  font-weight: bold;
  color: #362E93;
}
@media screen and (max-width: 989px) {
  .p-about-wrap .p-about-wrap__textbox h3 {
    font-size: 22px;
  }
}
.p-about-wrap .p-about-wrap__textbox p {
  padding: 40px 0 0;
  line-height: 2;
}

.c-content_flex {
  display: flex;
  justify-content: space-between;
}
.c-content_flex:not(:last-child) {
  padding-bottom: 70px;
}

.odd {
  flex-flow: row-reverse;
}

.c-content_flex_image {
  width: calc(50% - 60px);
}

.c-content_flex_image img {
  width: 100%;
  border-radius: 10px;
}

.c-content_flex_text {
  width: calc(50% + 0px);
}

.c-content_flex h3 {
  font-size: 26px;
  color: #362E93;
  font-weight: bold;
  border-bottom: 2px solid #362E93;
  padding: 0 0 10px;
}
@media screen and (max-width: 989px) {
  .c-content_flex h3 {
    font-size: 20px;
    padding: 25px 0 10px;
  }
}

.c-content_flex p {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  padding: 20px 0 0;
}
@media screen and (max-width: 989px) {
  .c-content_flex p {
    padding: 15px 0 0;
  }
}

@media screen and (max-width: 989px) {
  .c-content_flex {
    display: flex;
    flex-wrap: wrap;
  }
  .c-content_flex:not(:last-child) {
    padding-bottom: 40px;
  }
  .c-content_flex_image {
    width: 100%;
    order: 1;
  }
  .c-content_flex_text {
    width: 100%;
    order: 2;
  }
}
/*-------------ACCESS-------------*/
.p-access__wrap {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 989px) {
  .p-access__wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.p-access__table {
  width: 100%;
  font-size: 16px;
  margin: 50px 60px;
}
@media screen and (max-width: 989px) {
  .p-access__table {
    width: calc(100% - 40px);
    font-size: 14px;
    margin: 30px 20px 35px;
  }
}

.p-access__table tr {
  display: flex;
  margin: 0 auto;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  padding: 0 0 20px;
}
.p-access__table tr:not(:first-child) {
  padding: 20px 0 20px;
}
.p-access__table a {
  color: #201E37;
}

.p-access__item-title {
  width: 25%;
  font-weight: bold;
  color: #362E93;
}
@media screen and (max-width: 989px) {
  .p-access__item-title {
    width: 30%;
  }
}

.p-access__item-text {
  width: 75%;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 989px) {
  .p-access__item-text {
    width: 70%;
  }
}

.p-access__image {
  width: 33%;
}
@media screen and (max-width: 989px) {
  .p-access__image {
    width: 100%;
  }
}
.p-access__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 989px) {
  .p-access__image img {
    border-radius: 10px 10px 0px 0;
  }
}

/*-------------------------ACCORDION・FAQ----------------------------*/
.accordion_area {
  margin-top: 60px;
}

.accordion_one {
  margin-bottom: 16px;
}

.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
}

.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #ffffff;
}

.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #ffffff;
}

.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #ffffff;
}

.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

.accordion_area .accordion_one .ac_header .i_box:before,
.accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #014897;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #014897;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: 0.3s;
}

.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}

.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  box-sizing: border-box;
  background: #fff;
}

.p-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.p-faq__headinner::before {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 0;
  content: "Q．";
  color: #362E93;
  font-size: 20px;
  font-weight: bold;
}

.p-faq__headinner p.p-faq__q-txt {
  font-size: 16px;
  font-weight: bold;
}

.p-faq__bodyinner {
  display: block;
  padding-left: 35px;
  position: relative;
  line-height: 1.5;
}

.p-faq__bodyinner::before {
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 0;
  content: "A．";
  color: #DE4E2B;
  font-size: 20px;
  font-weight: bold;
}

.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .accordion_area {
    margin-top: 30px;
  }
  .accordion_one {
    width: 90%;
    margin: 0 auto 10px auto;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 14px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
  .p-faq__headinner::before {
    top: -5px;
  }
  .p-faq__bodyinner::before {
    top: -5px;
  }
}
/*-------------FOOTER-------------*/
footer {
  background-color: #201E37;
}

footer p {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
}
@media screen and (max-width: 989px) {
  footer p {
    font-size: 10px;
  }
}

@media screen and (min-width: 990px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 989px) {
  .sp_none {
    display: none;
  }
}
.c-sns {
  display: flex;
  align-items: center;
}

.c-sns a:not(:first-child) {
  padding-left: 15px;
}

.c-sns img {
  width: 40px;
  height: auto;
}

.section__wrap {
  padding: 60px 0 0;
}

@media screen and (max-width: 768px) {
  .section__wrap {
    padding: 30px 0 0;
  }
}
.p-zabuton {
  background: #362E93;
  padding: 40px 0;
}
.p-zabuton__en {
  text-align: center;
  font: normal normal bold 16px/23px Noto Serif JP;
  letter-spacing: 0.8px;
  color: #F8B62C;
}
@media screen and (max-width: 989px) {
  .p-zabuton__en {
    position: relative;
  }
  .p-zabuton__en::after {
    top: -70%;
    margin-left: 20px;
    position: absolute;
    content: "";
    width: 54px;
    height: 55px;
    background: url(../img/pickup-icon.png) no-repeat center center;
    background-size: contain;
  }
}
.p-zabuton__jp {
  text-align: center;
  font: normal normal bold 32px/46px Noto Serif JP;
  letter-spacing: 1.6px;
  color: #fff;
  margin-top: 24px;
}
@media screen and (min-width: 990px) {
  .p-zabuton__jp {
    position: relative;
  }
  .p-zabuton__jp::after {
    top: -62px;
    position: absolute;
    content: "";
    width: 77px;
    height: 78.31px;
    background: url(../img/pickup-icon.png) no-repeat center center;
    background-size: contain;
  }
}
@media screen and (max-width: 989px) {
  .p-zabuton__jp {
    font-size: 24px;
    margin-top: 14px;
    line-height: 1.6;
  }
}
.p-zabuton__jp span {
  color: #145EA9;
  display: inline-block;
  background: #fff;
  padding: 0 20px;
  margin-right: 10px;
}
@media screen and (max-width: 989px) {
  .p-zabuton__jp span {
    padding: 0 10px;
    margin-right: 10px;
  }
}
.p-zabuton__tag {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (min-width: 990px) {
  .p-zabuton__tag {
    justify-content: center;
  }
}
@media screen and (max-width: 989px) {
  .p-zabuton__tag {
    margin-top: 20px;
    gap: 14px 6px;
  }
}
.p-zabuton__tag li {
  flex: 0 1 auto;
  color: #fff;
  border: 1px solid #FFFFFF;
  border-radius: 13px;
  padding: 4px 13px;
  font: normal normal bold 12px/17px Noto Serif JP;
  letter-spacing: 0.6px;
  color: #FFFFFF;
}
@media screen and (max-width: 989px) {
  .p-zabuton__tag li {
    font-size: 10px;
    padding: 6px 13px;
    line-height: 1;
  }
}

.p-merit {
  padding: 50px 0 0;
}
@media screen and (max-width: 989px) {
  .p-merit {
    padding: 27px 0 0;
  }
}
.p-merit__intro {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.7px;
}
.p-merit__intro span {
  font-weight: bold;
  color: #08476A;
}
.p-merit__wrap {
  margin: 40px 0 0;
}
@media screen and (max-width: 989px) {
  .p-merit__wrap {
    margin: 30px 0 0;
  }
}
.p-merit__title {
  padding: 15px;
  background: #08476A;
  width: min(545px, 100%);
  text-align: center;
  margin: 0 auto -50px;
  text-align: center;
  font: normal normal bold 20px/29px Noto Serif JP;
  letter-spacing: 1px;
  color: #FFFFFF;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 989px) {
  .p-merit__title {
    padding: 13px;
    font: normal normal bold 16px/23px Noto Serif JP;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    margin: 0 auto -45px;
    width: calc(100% - 40px);
  }
}
.p-merit__tri {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid #08476A;
  bottom: -40px;
}
@media screen and (max-width: 989px) {
  .p-merit__tri {
    bottom: -35px;
  }
}
.p-merit__card {
  position: relative;
  z-index: 1;
  padding: 70px 60px 40px;
  background: #F6F6F6;
  display: flex;
  justify-content: space-between;
  gap: 30px 34px;
  flex-wrap: wrap;
}
@media screen and (max-width: 989px) {
  .p-merit__card {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 45px 20px 20px;
  }
}
.p-merit__item {
  flex: 1;
  background: #fff;
  border-radius: 10px;
}
.p-merit__item img {
  border-radius: 10px 10px 0px 0px;
}
.p-merit__item h4 {
  background: #362E93;
  padding: 12px;
  text-align: center;
  font: normal normal bold 18px/26px Noto Serif JP;
  letter-spacing: 0.9px;
  color: #FFFFFF;
}
@media screen and (max-width: 989px) {
  .p-merit__item h4 {
    font: normal normal bold 16px/23px Noto Serif JP;
    letter-spacing: 0.8px;
    padding: 8px;
  }
}
.p-merit__item p {
  text-align: center;
  font: normal normal normal 12px/24px Noto Sans JP;
  letter-spacing: 0.6px;
  color: #1C1C1C;
  padding: 20px 12px;
}
@media screen and (max-width: 989px) {
  .p-merit__item p {
    font: normal normal normal 12px/24px Noto Sans JP;
    letter-spacing: 0.6px;
  }
}

.p-type {
  padding: 45px 0 90px;
}
@media screen and (max-width: 989px) {
  .p-type {
    padding: 40px 0 60px;
  }
}
.p-type h3 {
  text-align: center;
  font: normal normal bold 20px/29px Noto Serif JP;
  letter-spacing: 1px;
  color: #08476A;
  position: relative;
}
@media screen and (max-width: 989px) {
  .p-type h3 {
    font: normal normal bold 20px/29px Noto Serif JP;
  }
}
.p-type h3 span {
  background: #fff;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 989px) {
  .p-type h3 span {
    padding: 0 25px;
  }
}
.p-type h3::before {
  position: absolute;
  content: "";
  background: #08476A;
  height: 2px;
  width: 100%;
  left: 0;
  top: 50%;
  z-index: 1;
}
.p-type__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 14px;
  justify-content: center;
  max-width: 760px;
  margin: 25px auto;
}
@media screen and (max-width: 989px) {
  .p-type__tag {
    margin-top: 20px;
    gap: 14px 6px;
  }
}
.p-type__tag li {
  flex: 0 1 auto;
  color: #08476A;
  border: 1px solid #08476A;
  border-radius: 20px;
  padding: 4px 13px;
  font: normal normal bold 16px/23px Noto Serif JP;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 989px) {
  .p-type__tag li {
    font: normal normal bold 14px/20px Noto Serif JP;
    letter-spacing: 0.7px;
    padding: 10px 16px;
    line-height: 1;
  }
}
.p-type__intro {
  padding-top: 90px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 989px) {
  .p-type__intro {
    padding-top: 40px;
  }
}/*# sourceMappingURL=style_original.css.map */