@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background-color: #f8f5f0;
  min-width: 320px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  box-sizing: border-box;
  color: #121212;
  position: relative;
  letter-spacing: 0.03em;
  font-size: clamp(13px, 1.2vw, 16px);
}

header {
  position: relative;
  margin-inline: auto;
  width: min(90%, 1400px);
  height: auto;
}
@media screen and (min-width: 969px) {
  header {
    height: 62px;
  }
}
header #head-logo {
  display: none;
  background-color: #f8f5f0;
  padding: 27px min(4%, 34px) 27px min(4%, 50px);
  border-radius: 0 0 24px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 969px) {
  header #head-logo {
    display: block;
  }
}
header #head-logo img {
  width: min(40vw, 256px);
}
header #head-logo:before, header #head-logo::after {
  content: "";
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  background-image: url(../img/corner.svg);
  background-size: auto 100%;
  background-position: center;
}
header .non_after::after {
  content: none !important;
}


header #head-logo:before {
  top: 62px;
  right: -24px;
}
header #head-logo::after {
  bottom: -24px;
  left: 0;
}
header #tagline {
  font-size: clamp(11px, 1.5vw, 14px);
  padding: 10px 0 20px;
  text-align: justify;
  line-height: 1.5em;
  min-height: 34px;
}
@media screen and (min-width: 969px) {
  header #tagline {
    position: absolute;
    top: 50%;
    padding: 0;
    left: min(40vw, 340px);
    z-index: 1;
    width: calc(100% - min(40vw, 340px));
    height: 62px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: start;
  }
}

.site-footer {
  padding: 100px 0 70px;
  text-align: center;
  background-color: #FFFFFF;
  background-image: url(../img/bg_grade.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 50px 0 40px;
  }
}
.site-footer .cta_btn {
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .site-footer .cta_btn {
    padding: 0 auto 40px;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width: 969px) {
  .pc_only {
    display: block;
  }
}

.sp_only {
  display: block;
}
@media screen and (min-width: 969px) {
  .sp_only {
    display: none;
  }
}

p {
  line-height: 1.8em;
}
@media screen and (max-width: 767px) {
  p {
    text-align: left;
  }
}

.ff-ms {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.note {
  display: flex;
  line-height: 1.7em;
  font-size: clamp(12px, 1.2vw, 16px);
}
.note::before {
  content: "※";
  padding-right: 0.2em;
}
.note span {
  flex: 1;
}

.mb10 {
  margin-bottom: 10px;
}

.cta_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #333;
  border-radius: 999px;
  padding: 10px 10px 10px 30px;
  color: #FFFFFF;
  width: min(90%, 320px);
  margin: 30px 0 0;
  text-align: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s;
}
@media screen and (max-width: 767px) {
  .cta_btn {
    padding: 6px 6px 6px 24px;
  }
}
.cta_btn .cta_btn_inner {
  flex: 1;
}
.cta_btn::after {
  content: "";
  width: 48px;
  aspect-ratio: 1/1;
  background-image: url(../img/ico_arrow_b.svg);
  background-size: 15px auto;
  background-position: center;
  background-color: #FFFFFF;
  border-radius: 999px;
  background-repeat: no-repeat;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s;
}
@media screen and (max-width: 767px) {
  .cta_btn::after {
    width: 38px;
  }
}
.cta_btn:hover {
  transform: translateY(-6px);
}
.cta_btn:hover::after {
  transform: translateX(2px);
}
.cta_btn.center {
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .cta_btn.center {
    margin: 18px auto 0;
  }
}

.col2_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 2em;
  width: 86%;
  margin: 0 auto;
}
@media screen and (min-width: 969px) {
  .col2_wrap {
    flex-direction: row;
    width: min(90%, 1400px);
  }
}
.col2_wrap .col2_item {
  width: 100%;
}
@media screen and (min-width: 969px) {
  .col2_wrap .col2_item {
    width: 47%;
  }
}
.col2_wrap .col2_item.content {
  display: flex;
  flex-direction: column;
  flex: 1;
  row-gap: 15px;
}
@media screen and (max-width: 767px) {
  .col2_wrap .col2_item.content {
    row-gap: 5px;
  }
}
.col2_wrap .col2_item.img {
  width: 100%;
  flex: none;
}
@media screen and (min-width: 969px) {
  .col2_wrap .col2_item.img {
    width: 47%;
    margin-top: 0;
  }
}
.col2_wrap .col2_item.img img {
  border-radius: 10px;
}
@media screen and (min-width: 969px) {
  .col2_wrap .col2_item.img img {
    border-radius: 30px;
  }
}

.detail_content_wrap {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .detail_content_wrap {
    margin-bottom: 25px;
  }
}
.detail_content_wrap .detail_content_inner {
  padding: 40px min(5%, 40px);
}
@media screen and (max-width: 767px) {
  .detail_content_wrap .detail_content_inner {
    padding: 20px min(5%, 40px);
  }
}
.detail_content_wrap .detail_section_subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 12px;
}
@media screen and (max-width: 767px) {
  .detail_content_wrap .detail_section_subtitle {
    margin-bottom: 10px;
  }
}
.detail_content_wrap .detail_section_subtitle::before {
  content: "";
  width: 20px;
  height: 4px;
  border-radius: 999px;
}
.detail_content_wrap .detail_section_subtitle.red::before {
  background-color: #de8b81;
}
.detail_content_wrap .detail_section_subtitle.blue::before {
  background-color: #a1cde2;
}
.detail_content_wrap .detail_section_subtitle.green::before {
  background-color: #7ec0b4;
}
.detail_content_wrap .detail_content_inner {
  color: #121212;
  text-align: left;
  background-color: #f8f5f0;
  border-radius: 8px;
  padding: 40px min(5%, 40px);
}
@media screen and (max-width: 767px) {
  .detail_content_wrap .detail_content_inner {
    padding: 20px min(5%, 40px);
  }
}
.detail_content_wrap .detail_content_inner ul {
  list-style: disc;
  list-style-position: inside;
}
.detail_content_wrap .detail_content_inner ul li::marker {
  font-size: 0.8em;
}
.detail_content_wrap .detail_content_inner ul li {
  line-height: 1em;
  margin-bottom: 0.5em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadein {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  backface-visibility: hidden;
}
.fadein.active {
  animation: fadeIn 0.5s ease-out both;
  animation-delay: 0.1s;
}

body {
  position: relative;
}
body::before, body::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-image: url(../img/bg_grade.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: top;
  z-index: -1;
  aspect-ratio: 50/126;
  min-height: 100vh;
}
@media screen and (min-width: 969px) {
  body::before, body::after {
    top: 250px;
    aspect-ratio: 1366/1268;
  }
}
body::before {
  top: 40px;
}
@media screen and (min-width: 969px) {
  body::before {
    top: 250px;
  }
}
body::after {
  top: -10px;
}
@media screen and (min-width: 969px) {
  body::after {
    top: 0;
  }
}
body::after {
  transform: translateY(100%) rotate(180deg);
}

@keyframes hero {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero {
  opacity: 0;
  animation: 1s hero forwards;
  position: relative;
  margin-inline: auto;
  width: min(90%, 1400px);
  min-height: clamp(420px, 62vw, 760px);
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-image: url(../img/hero-bg-sp.png);
  background-size: 100% auto;
  background-position: bottom;
  border-radius: 0 0 24px 24px;
  margin-bottom: 90px;
  aspect-ratio: 326/532;
  max-height: 80vh;
}
@media screen and (min-width: 969px) {
  .hero {
    justify-content: center;
    background-image: url(../img/hero-bg.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    margin-bottom: 90px;
    aspect-ratio: auto;
  }
}
.hero .hero-inner {
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
}
@media screen and (min-width: 969px) {
  .hero .hero-inner {
    justify-content: center;
    height: auto;
  }
}
.hero .hero-inner h1 {
  font-size: clamp(16px, 3vw, 40px);
  color: #121212;
  margin-bottom: 20px;
}
@media screen and (min-width: 969px) {
  .hero .hero-inner h1 {
    margin-bottom: 40px;
    color: #FFFFFF;
  }
}
.hero .hero-inner h1 .ff-ms {
  font-size: 1.1em;
}
.hero .hero-inner #hero-logo {
  width: min(45vw, 225px);
  display: inline-block;
  aspect-ratio: 25/26;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 35px;
  background-image: url(../img/hero-logo_b.svg);
  order: -1;
}
@media screen and (min-width: 969px) {
  .hero .hero-inner #hero-logo {
    margin-bottom: 40px;
    background-image: url(../img/hero-logo_w.svg);
    order: inherit;
  }
}
.hero .hero-inner h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  row-gap: 5px;
}
.hero .hero-inner h2 .hero-subtitle {
  line-height: 1em;
  font-size: clamp(12px, 2vw, 25.6px);
  color: #121212;
  background-color: #FFFFFF;
  padding: 4px 7px;
}
.hero .hero-inner h2 .hero-subtitle span {
  font-size: 1.28em;
}
.hero .hero-inner h2 .hero-subtitle span.ff-ms {
  font-size: 1.4em;
}
.hero #hero-cta {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: min(60%, 140px);
  background-color: #333;
  border-radius: 999px;
  aspect-ratio: 1/1;
  outline: solid 1px #FFFFFF;
  outline-offset: -5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  bottom: -70px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 969px) {
  .hero #hero-cta {
    width: 182px;
    right: 5%;
    transform: inherit;
  }
  .hero #hero-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
  }
}
.hero #hero-cta::after {
  content: "";
  width: 12px;
  aspect-ratio: 15/12;
  background-image: url(../img/ico_arrow_w.svg);
  background-size: auto 100%;
  background-position: center;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .hero #hero-cta::after {
    bottom: 34px;
  }
}

#about {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #about {
    margin-bottom: 60px;
  }
}
#about .content_inner:not(:last-of-type) {
  margin-bottom: 90px;
}
#about .about_section_title {
  color: #FFFFFF;
  font-size: clamp(38px, 5vw, 72px);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1em;
}
#about .about_section_subtitle {
  font-size: clamp(19px, 2vw, 34px);
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #about .about_section_subtitle {
    text-align: center;
    margin-bottom: 20px;
  }
}
#about .about_slider {
  position: relative;
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  #about .about_slider {
    order: 1;
  }
}
#about .about_slider .splide__track {
  border-radius: 24px;
  overflow: hidden;
}
#about .about_slider .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
}
#about .about_slider .splide__arrow {
  width: 40px;
  height: 40px;
  opacity: 1;
  background: #2f2f2f;
  transform: translateY(-50%);
  margin-top: -1.5%;
}
@media screen and (max-width: 767px) {
  #about .about_slider .splide__arrow {
    width: 25px;
    height: 25px;
    margin-top: -4%;
  }
}
#about .about_slider .splide__arrow svg {
  fill: #FFFFFF;
  width: 12px;
  height: 12px;
  stroke: #FFFFFF;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
#about .about_slider .splide__arrow:hover {
  opacity: 1;
}
#about .about_slider .splide__arrow--prev {
  left: -20px;
}
@media screen and (max-width: 767px) {
  #about .about_slider .splide__arrow--prev {
    left: -12px;
  }
}
#about .about_slider .splide__arrow--next {
  right: -20px;
}
@media screen and (max-width: 767px) {
  #about .about_slider .splide__arrow--next {
    right: -12px;
  }
}
#about .about_slider .splide__pagination {
  bottom: 0;
  gap: 8px;
}
#about .about_slider .splide__pagination li {
  display: flex;
}
#about .about_slider .splide__pagination__page {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #cfcfcf;
  opacity: 1;
}
#about .about_slider .splide__pagination__page.is-active {
  transform: scale(1);
  background: #7f7f7f;
}

#access {
  background-color: #FFFFFF;
  border-radius: 24px;
  margin-inline: auto;
  width: min(96%, 1400px);
  padding: 60px min(5%, 60px);
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #access {
    padding: 30px min(5%, 60px);
    margin-bottom: 10px;
  }
}
#access .access_head_block {
  display: flex;
  align-items: start;
  justify-content: start;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  #access .access_head_block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #access .access_head_block .access_head_title {
    margin-bottom: 20px;
  }
}
#access .access_head_block .access_head_title span:first-of-type {
  font-size: clamp(38px, 5vw, 72px);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  #access .access_head_block .access_head_title span:first-of-type {
    margin-bottom: 0;
  }
}
#access .access_head_block .access_head_title span:last-of-type {
  font-size: clamp(15px, 3vw, 24px);
  font-weight: 600;
}
#access .access_head_block .access_content_block {
  flex: 1;
}
#access .access_map {
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  #access .cta_btn {
    width: 100%;
  }
}

#announcement_block {
  padding: 70px min(5%, 60px) 100px;
  color: #FFFFFF;
  text-align: center;
  background-image: url(../img/announcement_bg.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  #announcement_block {
    padding: 40px min(5%, 60px) 50px;
  }
}
#announcement_block .announcement_section_title {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #announcement_block .announcement_section_title {
    margin-bottom: 15px;
  }
}
#announcement_block .announcement_section_title div:first-of-type {
  color: rgba(255, 255, 255, 0.2);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  #announcement_block .announcement_section_title div:first-of-type {
    margin-bottom: 10px;
  }
}
#announcement_block .announcement_section_title div:last-of-type {
  font-size: clamp(25px, 3vw, 52px);
}
#announcement_block .announcement_section_title div:last-of-type .fc:nth-of-type(1) {
  color: #f1d276;
}
#announcement_block .announcement_section_title div:last-of-type .fc:nth-of-type(2) {
  color: #de8b81;
}
#announcement_block .announcement_section_title div:last-of-type .fc:nth-of-type(3) {
  color: #7ec0b4;
}
#announcement_block .announcement_section_title div:last-of-type .fc:nth-of-type(4) {
  color: #a1cde2;
}
#announcement_block .detail_content_wrap {
  width: min(100%, 930px);
  margin: 60px auto;
}
@media screen and (max-width: 767px) {
  #announcement_block .detail_content_wrap {
    margin: 30px auto;
  }
}
#announcement_block .detail_content_wrap .detail_content_inner {
  background: rgba(248, 245, 240, 0.75);
}
#announcement_block .cta_btn {
  color: #121212;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  #announcement_block .cta_btn {
    width: 100%;
  }
}
#announcement_block .cta_btn::after {
  background-color: #333;
  background-image: url(../img/ico_arrow_w.svg);
}

#news {
  background-color: #f8f5f0;
}
#news .content_inner {
  width: min(90%, 1400px);
  margin: 0 auto;
  padding: 100px 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  column-gap: 40px;
}
@media screen and (max-width: 767px) {
  #news .content_inner {
    display: block;
    padding: 30px 0 45px;
  }
}
@media screen and (max-width: 767px) {
  #news .content_inner .news_head_title {
    margin-bottom: 20px;
  }
}
#news .content_inner .news_head_title span:first-of-type {
  font-size: clamp(38px, 5vw, 72px);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  #news .content_inner .news_head_title span:first-of-type {
    margin-bottom: 0;
  }
}
#news .content_inner .news_head_title span:last-of-type {
  font-size: clamp(15px, 3vw, 24px);
  font-weight: 600;
}
#news .content_inner .news_content_block {
  width: 60%;
}
#news .content_inner .news_content_block .news_item_block:not(:last-of-type) {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #news .content_inner .news_content_block {
    width: 100%;
  }
}
#news .content_inner .news_content_block .news_item {
  color: #121212;
  text-align: left;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px min(5%, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s;
}
@media screen and (max-width: 767px) {
  #news .content_inner .news_content_block .news_item {
    padding: 20px min(5%, 40px);
  }
}
#news .content_inner .news_content_block .news_item:hover {
  transform: translateY(-6px);
}
#news .content_inner .news_content_block .news_item:hover::after {
  transform: translateX(2px);
}
#news .content_inner .news_content_block .news_item::after {
  content: "";
  width: 40px;
  aspect-ratio: 1/1;
  background-image: url(../img/ico_arrow_h_w.svg);
  background-size: 8px auto;
  background-position: center;
  background-color: #333;
  border-radius: 999px;
  background-repeat: no-repeat;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s;
}
@media screen and (max-width: 767px) {
  #news .content_inner .news_content_block .news_item::after {
    width: 30px;
    background-size: 6px auto;
  }
}
#news .content_inner .news_content_block .news_item .news_item_inner {
  flex: 1;
}
#news .content_inner .news_content_block .news_item .news_date {
  font-size: clamp(13px, 1.5vw, 14px);
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}
#news .content_inner .news_content_block .news_item .news_title {
  font-size: clamp(15px, 1.5vw, 16px);
  font-weight: 500;
}


/**お問合せ**/
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select,
input,
textarea{
  border-width: 0;
  width: 100%;
  padding: 20px !important;
}
select:disabled,
input:disabled,
textarea:disabled{
  color: #cfcfcf !important;
}
#method{
    background-color: burlywood;
}

.error{
  color:#ea6026;
  font-size: 22px;
  margin: auto;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}