body {
 font-family: 'Noto Sans JP', sans-serif;
 line-height: 1.6;
}


.no_scroll {
 overflow: hidden;
}

img {
 width: 100%;
}

p {
 color: #222222;
}

a {
 text-decoration: none;
}

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

@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: 1100px;
 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;
 }
}

.about,
.features,
.staff,
.price,
.access,
.faq {
 padding: 80px 0;
}

@media screen and (max-width:768px) {

 .about,
 .features,
 .staff,
 .price,
 .access,
 .faq {
  padding: 40px 0;
 }
}


.section_title {
 font-size: 22px;
 line-height: 27px;
 font-weight: bold;
 letter-spacing: 1.1px;
 color: #103C6E;
 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: #103C6E;
 width: 100%;
 position: fixed;
 top: 0;
 left: 0;
 height: 60px;
 z-index: 10;
}

@media screen and (max-width:768px) {
 header {
  height: 50px;
 }
}

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

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

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

.header_left a {
 padding: 0px 0 0 20px;
 font-weight: bold;
 font-size: 26px;
 color: #fff;
}

.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: 20px;
 }

 .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: 0px;
 cursor: pointer;
}

/*ボタン内側*/
.open_btn span {
 display: inline-block;
 transition: all .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, 70%);
  margin-top: 50px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .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: 600px;
 overflow: hidden;
 padding-top: 66px;
 position: relative;
}

@media screen and (max-width:768px) {
 .hero {
  padding-top: 35px;
  height: 300px;
 }

}

.slider-image img {
 width: 100%;
 height: 600px;
 position: absolute;
 top: 60px;
 left: 0;
 object-fit: contain;
 opacity: 0;
 transition: 3s;
}

@media screen and (max-width:768px) {
 .slider-image img {
  height: 300px;
  object-fit: cover;
  top: 50px;
 }

}

.slider-image img.active {
 width: 100%;
 opacity: 1;
}

/*-------------ABOUT-------------*/
.about_text {
 margin: 60px auto 0 auto;
 border: 2px solid #103C6E;
 padding: 45px 0;
}

.about_text p {
 font-size: 16px;
 line-height: 30px;
 margin: 0 auto;
 text-align: center;
 width: 73%;
}

@media screen and (max-width:768px) {
 .about_text {
  width: 90%;
  margin: 30px auto 0 auto;
  padding: 25px 0;
 }

 .about_text p {
  line-height: 20px;
  font-size: 14px;
  text-align: left;
  width: 85%;
 }
}

/*-------------FEATURES-------------*/
.feature_item_wrapper {
 display: flex;
 justify-content: space-around;
 flex-wrap: wrap;
 margin-top: 60px;
}

.feature_item {
 width: 30%;
}

.feature_item_img {
 width: 90%;
 margin: 0 auto;
 text-align: center;
}

.feature_item_subtitle {
 margin-top: 30px;
 font-size: 16px;
 line-height: 24px;
 color: #103C6E;
 text-align: center;
}

.feature_item_title {
 margin-top: 10px;
 font-size: 20px;
 line-height: 29px;
 font-weight: bold;
 text-align: center;
}

.feature_item_text {
 margin-top: 30px;
 font-size: 16px;
 line-height: 30px;
 text-align: center;
}

@media screen and (max-width:768px) {
 .feature_item_wrapper {
  row-gap: 40px;
 }

 .feature_item {
  width: 80%;
 }

 .feature_item_subtitle {
  margin-top: 30px;
  font-size: 14px;
  line-height: 20px;
 }

 .feature_item_title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 27px;
 }

 .feature_item_text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 30px;
 }
}

/*-------------STAFF-------------*/
.staff_wrapper {
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
 margin-top: 70px;
}

.staff_img {
 width: 25%;
}

.staff_text_wrapper {
 width: 66%;
}

.staff_text_title {
 font-size: 20px;
 font-weight: bold;
 line-height: 29px;
 color: #103C6E;
 display: inline;
 width: fit-content;
 background: linear-gradient(transparent 50%, #DE4E2B33 0%);
}

.staff_text_title span {
 font-size: 32px;
}

.staff_text {
 margin-top: 35px;
}

.staff_text p {
 font-size: 16px;
 line-height: 30px;
}

.staff_text ul li {
 text-indent: -16px;
 margin-left: 16px;
 line-height: 30px;
}

.staff_text ul li:not(:first-child) {
 padding-top: 30px;
}

@media screen and (max-width:768px) {
 .staff_wrapper {
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
 }

 .flex_reverse {
  flex-direction: column-reverse;
 }

 .staff_img {
  width: 90%;
 }

 .staff_text_wrapper {
  width: 90%;
 }

 .staff_text_title {
  font-size: 16px;
  line-height: 24px;
 }

 .staff_text_title span {
  font-size: 25px;
 }

 .staff_text {
  margin-top: 20px;
 }

 .staff_text p {
  font-size: 14px;
  line-height: 30px;
 }
}

/*-------------PRICE-------------*/
.table_title {
 margin: 60px auto 0 auto;
}

.table_title p {
 font-size: 24px;
 line-height: 36px;
 font-weight: bold;
 text-align: center;
 position: relative;
}

.table_title p::after {
 content: "";
 display: block;
 width: 55px;
 height: 2px;
 background-color: #103C6E;
 position: absolute;
 bottom: -20px;
 left: 50%;
 transform: translateX(-50%);
}

.price_table {
 margin-top: 60px;
 width: 100%;
 text-align: center;
 font-size: 16px;
 font-weight: bold;
}

.price_table th {
 background-color: #103C6E;
 color: #ffffff;
 padding: 14px 0;
}

.price_table td {
 background-color: #FFFFFF;
 color: #222222;
 padding: 28px 0;
 line-height: 24px;
 border-bottom: 1px solid #ccc;
 border-left: 1px solid #ccc;
 border-right: 1px solid #ccc;
 display: table-cell;
 text-align: center;
 vertical-align: middle;
}

.price_table td span {
 font-size: 12px;
 display: block;
 line-height: 18px;
}

.plan_item {
 width: 30%;
}

.plan_price {
 width: 70%;
}

.coupon_type {
 width: 30%;
}

.coupon_count {
 width: 10%;
}

.coupon_price {
 width: 40%;
}

.coupon_note {
 width: 20%;
}

.border_right {
 border-right: 1px solid #F0F2F3;
}

@media screen and (max-width:768px) {
 .table_title {
  margin: 30px auto 0 auto;
 }

 .table_title p {
  font-size: 18px;
  line-height: 27px;
 }

 .price_table {
  width: 90%;
  font-size: 14px;
  margin: 45px auto 0 auto;
 }

 .scroll {
  white-space: nowrap;
  width: 200%;
 }

 .plan_item {
  width: 50%;
 }

 .plan_price {
  width: 50%;
 }

 .price_table_scroll {
  width: 90%;
  overflow-x: scroll;
  margin: 0 auto;
 }

 .coupon_type {
  width: 170px;
 }

 .coupon_count {
  width: 87px;
 }

 .coupon_price {
  width: 200px;
 }

 .coupon_note {
  width: 150px;
 }
}

/*-------------ACCESS-------------*/
.access_wrapper {
 margin-top: 60px;
 display: flex;
 justify-content: space-between;
}

.access_table {
 width: 50%;
 font-weight: bold;
 font-size: 16px;
 line-height: 24px;
 color: #222222;

}

.access_table tr {
 display: flex;
 margin: 0 auto;
}

.access_table tr+tr {
 padding-top: 40px;
}

.access_table a {
 color: #222222;
}

.access_item_title {
 width: 30%;
 color: #103C6E;
}

.access_item_text {
 width: 70%;
}

.map {
 width: 50%;
}

@media screen and (max-width:768px) {
 .access_wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
 }

 .access_table {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #222222;
  margin-bottom: 30px;
 }

 .access_table tr+tr {
  padding-top: 10px;
 }


 .map {
  width: 100%;
 }
}

/*-------------------------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: .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: .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: #103C6E;
 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: #103C6E;
}

footer p {
 color: #F0E9E3;
 font-size: 12px;
 text-align: center;
 padding: 10px 0;
}

@media screen and (min-width:769px) {
 .pc_none {
  display: none;
 }
}

@media screen and (max-width:768px) {
 .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;

 }
}
