@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  background-color: #F9F3E5;
  font-family: "REM", sans-serif;
  line-height: 1.6;
  color: #322A27;
}

header {
  background-color: #504B64;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: transform 0.3s ease;
}
header .logo {
  color: #DB4242;
  position: relative;
  z-index: 3000;
}
header.is-hide {
  transform: translateY(-100%);
}

.nav-hidden {
  display: none;
}

label.nav-open {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  background-color: #F9F3E5 !important;
  width: 110px !important;
  height: 44px !important;
  border-radius: 50px !important;
  padding: 0 15px !important;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
label.nav-open::before {
  content: "MENU";
  color: #504B64;
  font-size: 14px;
  font-weight: 800;
  margin-right: auto;
  padding-left: 5px;
}
label.nav-open span {
  position: absolute;
  right: 18px;
  width: 22px;
  height: 2px;
  background-color: #504B64 !important;
  display: block;
}
label.nav-open span:nth-child(1) {
  top: 16px;
}
label.nav-open span:nth-child(2) {
  top: 21px;
}
label.nav-open span:nth-child(3) {
  top: 26px;
}

/* チェックが入った時（バッテン） */
#nav-input:checked ~ label.nav-open {
  z-index: 2100 !important;
}
#nav-input:checked ~ label.nav-open::before {
  content: "CLOSE";
}
#nav-input:checked ~ label.nav-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
#nav-input:checked ~ label.nav-open span:nth-child(2) {
  opacity: 0;
}
#nav-input:checked ~ label.nav-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.main_nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #504B64;
  transition: all 0.5s;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nav-input:checked ~ .main_nav {
  right: 0;
}

.nav_list {
  list-style: none;
  text-align: left;
  color: #FFF;
  font-size: 20px;
  text-decoration: none;
}

.nav_item {
  margin: 20px 0;
}
.nav_item:hover {
  color: #DB4242;
  font-weight: bold;
}

@media (min-width: 768px) {
  .nav-open, label.nav-open, #nav-input:checked ~ .nav-open {
    display: none !important;
  }
  .main_nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    right: 0;
  }
  .nav_list {
    display: flex;
    gap: 20px;
  }
  .nav_list .nav_item {
    margin: 0;
    font-size: 14px;
  }
}
.nav_label {
  cursor: pointer;
}

.nav_item {
  position: relative;
}
@media (min-width: 769px) {
  .nav_item .sub_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    z-index: 2000;
    padding-top: 15px;
  }
  .nav_item:hover .sub_menu {
    display: block;
    transition: all 0.3s ease;
  }
}
.nav_item .menu_wrapper {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  overflow: hidden;
}
.nav_item .menu_item {
  display: block;
  padding: 15px 20px;
  font-size: 0.95rem;
  color: #322A27 !important;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
  text-align: left;
}
.nav_item .menu_item:last-child {
  border-bottom: none;
}
.nav_item .menu_item:hover {
  background-color: #F9F3E5;
  color: #DB4242 !important;
  padding-left: 25px;
}

@media (max-width: 768px) {
  .sub_menu {
    display: block;
    position: static;
    width: 100%;
    padding: 0;
  }
  .sub_menu .menu_wrapper {
    background-color: transparent;
    box-shadow: none;
    border-bottom: none;
    border-top: none;
    border-right: none;
    border-left: 1px solid #fff;
    border-radius: 0;
    margin-left: 20px;
  }
  .sub_menu .menu_item {
    padding: 15px 30px;
    color: #fff !important;
    border-bottom: none;
  }
  .sub_menu .menu_item:hover {
    background-color: transparent;
  }
}
.page_title {
  margin-bottom: 40px;
}
.page_title .en {
  color: #DB4242;
  font-size: 40px;
  font-weight: bold;
}
.page_title .ja {
  color: #504B64;
  font-size: 14px;
  font-weight: lighter;
}

.section_title {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding-left: 20px;
}
.section_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  background-color: #DB9942;
  border-radius: 2px;
}
.section_title .en {
  color: #DB4242;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "REM", sans-serif;
}
.section_title .ja {
  color: #504B64;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
}
.section_title .ja::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #504B64;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .section_title .en {
    font-size: 26px;
  }
  .section_title .ja {
    font-size: 12px;
  }
}
.sec_main {
  margin-top: 80px;
  padding-bottom: 80px;
  border-bottom: 5px solid #DB9942;
}

.top {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.top .top_slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.top .top_slider .topimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.top .top_slider .topimage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .top_slider .topimage.active {
  opacity: 1;
}
.top .top_textarea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #504B64;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px 60px;
  text-align: center;
  z-index: 10;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
}
.top .top_textarea .top_sub_text {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #DB4242;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.top .top_textarea .top_main_text {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: "REM", sans-serif;
}
.top .top_textarea .top_main_text span {
  font-size: 2.2rem;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.top .top_textarea .top_line {
  width: 60px;
  height: 3px;
  background-color: #DB9942;
  margin: 0 auto 20px;
}
.top .top_textarea .top_description {
  font-size: 15px;
  color: #322A27;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .top .top_textarea {
    width: 85%;
    padding: 30px 20px;
  }
  .top .top_textarea .top_main_text {
    font-size: 1.8rem;
  }
  .top .top_textarea .top_main_text span {
    font-size: 1.4rem;
  }
  .top .top_textarea .top_description {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .top_text {
    font-size: 1rem;
    font-weight: lighter;
  }
}
.wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

.section_title.-white {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 0;
  margin-bottom: 60px;
}
.section_title.-white::before {
  display: none;
}
.section_title.-white .fea_lead {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}
.section_title.-white .fea_main {
  color: #DB9942;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.section_title.-white .fea_line {
  width: 40px;
  height: 2px;
  background-color: #DB9942;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .section_title.-white .fea_main {
    font-size: 36px;
  }
}
.feature {
  background-color: #504B64;
  padding: 80px 20px;
  margin-top: 40px;
  border-radius: 15px;
}
.feature .feature_title {
  padding-bottom: 40px;
}
.feature .feature_title .fea_small {
  color: #fff;
}
.feature .feature_title .fea_big {
  font-size: 1.8em;
  padding-left: 20px;
  color: #DB9942;
}
.feature .fea_title {
  font-size: 18px;
  font-weight: bold;
}
.feature .fea_items {
  margin-bottom: 80px;
  color: #fff;
}
.feature .fea_item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 30px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.feature .fea_item .fea_header {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.feature .fea_item .fea_num {
  font-size: 60px;
  font-family: "REM", sans-serif;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -10px;
  left: 20px;
  letter-spacing: -0.05em;
}
.feature .fea_item .fea_title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}
.feature .fea_item .fea_title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #DB9942;
  margin-top: 10px;
}
.feature .fea_item .fea_text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .feature .fea_items {
    display: flex;
    gap: 20px;
  }
  .feature .fea_items .fea_item {
    flex: 1;
    margin-bottom: 0;
  }
}

.info_menu {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(80, 75, 100, 0.05);
}
.info_menu .info_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.info_menu .info_item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 40px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .info_menu .info_item {
    width: 50%;
  }
  .info_menu .info_item:nth-child(odd) {
    border-right: 1px solid #f0f0f0;
  }
  .info_menu .info_item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
.info_menu .info_item a {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  text-decoration: none;
  position: relative;
  height: 100%;
}
.info_menu .info_item a::after {
  content: "→";
  position: absolute;
  right: 30px;
  color: #DB9942;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.info_menu .info_item .info_num {
  font-family: "REM", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #DB9942;
  margin-right: 20px;
  width: 30px;
}
.info_menu .info_item .info_text {
  font-size: 16px;
  font-weight: bold;
  color: #504B64;
}
.info_menu .info_item:hover {
  background-color: rgba(249, 243, 229, 0.3);
}
.info_menu .info_item:hover a::after {
  transform: translateX(10px);
}
.info_menu .info_item:hover .info_text {
  color: #DB4242;
}

.cards-wrapper {
  overflow: hidden;
  width: 100%;
}

.voice-cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  margin-bottom: 40px;
}

.voice-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0 8px;
  background-color: #fff;
  border-radius: 15px;
  margin: 0 0 20px 0;
  text-align: center;
  padding: 30px 20px;
}
.voice-card img {
  width: 50%;
  margin: 0;
}

.voice_top img {
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 10px;
}
.voice_top .voice_title {
  font-size: 18px;
  font-weight: bold;
  color: #504B64;
  margin-bottom: 20px;
  line-height: 1.4;
}

.voice_btm {
  border-top: 1px solid #eee;
  margin-bottom: 20px;
}

.voice_info > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-align: center;
}
.voice_info dd {
  font-size: 15px;
  font-weight: bold;
  color: #504B64;
}

.profile {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

@media (min-width: 1024px) {
  .voice-card {
    flex: 0 0 33.333%;
    padding: 0 16px;
  }
  .voice__controls {
    display: none;
  }
}
.voice_info > div {
  display: flex;
  gap: 16px;
}

.voice_info dt {
  font-size: 0;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.voice_info dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.school dt::after {
  background-image: url(../img/icon01.jpg);
}

.date dt::after {
  background-image: url(../img/icon02.jpg);
}

.voice_info dd {
  margin: 0;
}

.news-list {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 80px;
}

.news-item {
  border-bottom: 1px solid #F9F3E5;
  padding: 20px 0;
}
.news-item:last-child {
  border-bottom: none;
}
.news-item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}
.news-item .news-date {
  font-size: 14px;
  color: #ccc;
}
.news-item .news-category {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 15px;
  border: 1px solid #504B64;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.news-item .news-title {
  font-size: 16px;
  font-weight: bold;
  color: #504B64;
}

.booking {
  padding: 60px 20px;
  text-align: center;
  background-color: #F9F3E5;
}
.booking .booking_text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #322A27;
}
.booking .booking_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.booking .booking_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 70px;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}
.booking .booking_btn a:first-child {
  background-color: #DBC142;
}
.booking .booking_btn a:last-child {
  background-color: #DB4242;
}
.booking .booking_btn a:hover {
  opacity: 0.9;
  transform: translateY(2px);
  box-shadow: none;
}

.btn_main {
  display: flex;
  justify-content: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DBC142;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 18px 60px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 rgb(196.56, 169.52, 37.44);
  min-width: 240px;
}
.btn::after {
  content: "→";
  margin-left: 15px;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.btn:hover {
  background-color: rgb(223.08, 200.0266666667, 87.42);
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgb(196.56, 169.52, 37.44);
  opacity: 1;
}

.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  color: #fff;
  transition: opacity 0.3s ease;
}
.fixed .fixed_reserve {
  background-color: #DBC142;
}
.fixed .fixed_contact {
  background-color: #DB4242;
}
.fixed .fixed_btn {
  padding: 20px 0;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .fixed {
    bottom: 30px;
    right: 30px;
    left: auto;
    width: auto;
    flex-direction: column;
    gap: 10px;
  }
  .fixed .fixed_btn {
    width: 200px;
    height: auto;
    border-radius: 5px;
  }
}
footer {
  background-color: #504B64;
  color: #FFF;
  height: 100px;
  text-align: center;
  padding-top: 40px;
}
footer .ft {
  font-size: 10px;
}

.contact_form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact_form .form_item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}
.contact_form .form_item label {
  font-weight: bold;
  font-size: 14px;
}
.contact_form .form_item input, .contact_form .form_item textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #504B64;
  border-radius: 4px;
}
.contact_form .form_submit {
  text-align: center;
  margin-top: 40px;
}
.contact_form .form_submit button[type=submit] {
  background-color: #DBC142;
  width: 100%;
  max-width: 300px;
  margin-top: 40px;
  padding: 20px 0;
  border: none;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact_form .form_submit:hover {
  opacity: 0.9;
  transform: translateY(2px);
}

.steptop {
  text-align: center;
}

.steptop_btm {
  background-color: #DB9942;
  height: 2px;
  width: 50%;
  margin: 0 auto;
}

.step_section {
  padding: 30px 0;
}
.step_section .step_container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}
.step_section .step_sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step_section .step_sidebar .step_num {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
}
.step_section .step_sidebar .step_line {
  width: 2px;
  background-color: #504B64;
  flex-grow: 1;
  min-height: 100px;
}
.step_section .step_content {
  flex: 1;
}
.step_section .step_content .step_title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 5px;
}
.step_section .step_content .step_icon {
  margin-bottom: 20px;
}
.step_section .step_content .step_icon img {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: auto;
}

.step_btm {
  border-bottom: 2px dashed #DB9942;
  width: 100%;
  margin: 20px 0;
}

.info_menu_sub {
  margin-top: 80px;
  margin-bottom: 120px;
}

@media (min-width: 768px) {
  .step_box {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .step_icon {
    flex-shrink: 0;
  }
  .step_icon img {
    width: 150px;
  }
}/*# sourceMappingURL=style.css.map */