@charset "UTF-8";
/*=========================*/
/*==　　　　変数　　　　　 ==*/
/*=========================*/
:root {
  --color_mono01:#333;
  --color_mono02:#fff;
  --color_mono03:#e6e6e6;
  --color_mono04:#A7A09D;
  --color_mono05:#ebebeb;
  --color_mono06:#f8f8f8;
  --color_blue01:#2C6CB6;
  --color_blue02:#046EB8;
  --color_lightblue01:#5CB2E2;
  --color_lightblue02:#5CB2E2;
  --color_lightblue03:#BDE1F8;
  --color_lightblue04:#D1EAFA;
  --color_lightblue05:#ECF8FF;
  --color_lightblue06:#EFF5FA;
  --color_lightblue07:#CDDEE9;
  --color_lightblue08:#E1F1FC;
  --color_orange01:#E19576;
  --color_orange02:#FFE4D8;
  --color_lightgreen01:#BBC56C;
  --color_lightgreen02:#E6E8D5;
  --color_yellow01:#E7C442;
  --color_yellow02:#F2E8C2;
  --color_brown01:#5B3B12;
  --color_purple01:#C9A2D6;
  --f12:clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  --f14:clamp(0.625rem, 0.6rem + 0.13vw, 0.75rem);
  --f16:clamp(0.625rem, 0.55rem + 0.38vw, 1rem);
  --f18:clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  --f20:clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  --f22:clamp(1rem, 0.925rem + 0.38vw, 1.375rem);
  --f24:clamp(1.2rem, 0.9rem + 0.5vw, 1.5rem);
  --f26:clamp(1.2rem, 0.875rem + 0.63vw, 1.625rem);
  --f28:clamp(1.2rem, 0.85rem + 0.75vw, 1.75rem);
  --f30:clamp(1.5rem, 0.825rem + 0.88vw, 1.875rem);
  --f32:clamp(1rem, 0.8rem + 1vw, 2rem);
  --f34:clamp(1rem, 0.775rem + 1.13vw, 2.125rem);
  --f36:clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
  --f38:clamp(1.5rem, 0.725rem + 1.38vw, 2.375rem);
  --f40:clamp(1rem, 0.7rem + 1.5vw, 2.5rem);
  --f42:clamp(1.5rem, 0.675rem + 1.63vw, 2.625rem);
  --f48:clamp(2rem, 0.612rem + 1.94vw, 2.938rem);
  --f54:clamp(1rem, 0.136rem + 4.32vw, 3.375rem);
  --f57:clamp(2rem, 0.488rem + 2.56vw, 3.563rem);
  --f60:clamp(2rem, 5vw, 3.75rem);
  --f67:clamp(3rem, 0.362rem + 3.19vw, 4.188rem);
  --f70:clamp(3rem, 0.325rem + 3.38vw, 4.375rem);
  --f85:clamp(3.5rem, -0.568rem + 7.84vw, 5.313rem);
  --f122:clamp(1rem, -1.409rem + 12.05vw, 7.625rem);
  --f127:clamp(4rem, -0.388rem + 6.94vw, 7.938rem);
  --f172:clamp(1rem, -0.95rem + 9.75vw, 10.75rem);
  --f240:clamp(1rem, -4.091rem + 25.45vw, 15rem);
  --f_zen:"Zen Maru Gothic", serif;
}

html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
picture {
  display: block;
}

/*=========================*/
/*==　　　　パーツ　　　　 ==*/
/*=========================*/
.c-button {
  display: flex;
  justify-content: center;
  width: clamp(8rem, 13.5416666667vw, 16.25rem);
  border-radius: clamp(1rem, 1.3020833333vw, 1.5625rem);
  overflow: hidden;
}
.c-button-area {
  display: flex;
}
.c-button-area.--center {
  justify-content: center;
}
.c-button-text {
  width: 100%;
  padding: 0.75rem;
  position: relative;
  background-color: var(--color_lightblue01);
  color: var(--color_mono02);
  text-align: center;
  z-index: 1;
}
.c-button-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  right: -100%;
  bottom: 0;
  background-color: var(--color_blue01);
  transition: 0.2s;
}
.c-button:hover .c-button-text:before {
  left: 0;
  right: 0;
  z-index: -1;
}

.c-deco {
  display: block;
  position: absolute;
}

.-sp_none {
  display: none;
}

@media screen and (min-width: 768px) {
  .-sp_none {
    display: block;
  }
}
.-md_none {
  display: none;
}

@media screen and (min-width: 992px) {
  .-md_none {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .-pc_none {
    display: none;
  }
}
.l-fixed_contact {
  opacity: 0;
  width: 30%;
  position: fixed;
  bottom: -3px;
  right: 0.5rem;
  transition: 0.5s;
  z-index: 999;
}
.l-fixed_contact:hover {
  opacity: 0.8;
  transform: rotate(1deg);
}
.l-fixed_contact.active {
  opacity: 1;
}

@media screen and (min-width: 1400px) {
  .l-fixed_contact {
    opacity: 1;
    width: -moz-fit-content;
    width: fit-content;
    right: 1rem;
  }
}
.c-title01 {
  margin-bottom: clamp(1.5rem, 3.125vw, 3.75rem);
  padding: 0.5rem 1.5rem;
  background-image: url(../img/c-title01__bg.jpg);
  background-size: auto 100%;
  color: var(--color_mono02);
  font-size: var(--f32);
  font-family: var(--f_zen);
}

.c-groupe {
  margin-bottom: 1.5rem;
}
.c-groupe-title {
  padding: 0.5rem;
  background-color: var(--color_lightblue08);
  text-align: center;
  border-radius: clamp(0.5rem, 0.8333333333vw, 1rem) clamp(0.5rem, 0.8333333333vw, 1rem) 0 0;
  font-size: var(--f28);
  font-family: var(--f_zen);
}
.c-groupe-content {
  padding: clamp(1rem, 1.3020833333vw, 1.5625rem) clamp(1rem, 1.5625vw, 1.875rem);
  border: clamp(2px, 0.2083333333vw, 0.25rem) solid var(--color_lightblue04);
  border-radius: 0 0 clamp(0.5rem, 0.8333333333vw, 1rem) clamp(0.5rem, 0.8333333333vw, 1rem);
}

@media screen and (min-width: 768px) {
  .c-groupe {
    width: 48%;
    margin-bottom: clamp(1.5rem, 1.5625vw, 1.875rem);
  }
  .c-groupe:nth-of-type(even) {
    margin-left: 4%;
  }
  .c-groupe-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .c-groupe-content {
    height: calc(100% - (clamp(1rem, 0.8rem + 1vw, 2rem) + 1.5rem));
  }
}
.c-border_title {
  margin-bottom: 0.5rem;
  color: var(--color_lightblue02);
  font-family: var(--f_zen);
  font-size: var(--f24);
  border-bottom: 1px solid var(--color_lightblue02);
}

.c-mb1_5 {
  margin-bottom: 1.5rem;
}

.c-blue_link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 1.5rem;
  background-color: var(--color_blue02);
  color: var(--color_mono02);
  transition: 0.3s;
}
.c-blue_link:hover {
  opacity: 0.7;
}
.c-blue_link.-lightblue {
  background-color: var(--color_lightblue01);
}

.c-link_border {
  text-decoration: underline;
}

/*=========================*/
/*==　　　レイアウト　　　 ==*/
/*=========================*/
.l-section {
  padding: clamp(1rem, 2.0833333333vw, 2.5rem) 0;
}

.l-container {
  width: 95%;
  max-width: 1240px;
  margin: auto;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.l-header-logo {
  height: 3.5rem;
  aspect-ratio: 223/119;
  margin: 0.25rem 0 0 0.25rem;
}
.l-header-gnav {
  display: none;
  font-family: var(--f_zen);
  width: 100%;
}
.l-header-gnav-list {
  width: 95%;
  margin: auto;
}
.l-header-gnav-list .item {
  border-bottom: 1px solid var(--color_mono06);
}
.l-header-gnav-list .item a {
  display: block;
  padding: 1.5rem 0;
  font-size: var(--f18);
  text-align: center;
  color: var(--color_lightblue01);
}
.l-header-contact {
  display: none;
  width: 95%;
  margin: 4rem auto 0;
  padding-top: clamp(0.5rem, 0.78125vw, 0.9375rem);
  padding-right: clamp(0.5rem, 0.2604166667vw, 0.3125rem);
  padding-bottom: clamp(0.25rem, 0.5208333333vw, 0.9375rem);
  padding-left: clamp(0.5rem, 1.3020833333vw, 1.5625rem);
  background-color: var(--color_blue01);
  color: var(--color_mono02);
  text-align: center;
  border-radius: 0.5rem;
}
.l-header-contact .tel {
  display: block;
}
.l-header-contact .open_time {
  font-family: var(--f_zen);
  font-size: var(--f18);
  line-height: 1;
}
.l-header.active {
  background: var(--color_mono02);
  bottom: 0;
}
.l-header.active .l-header-gnav {
  display: block;
}
.l-header.active .l-header-contact {
  display: block;
}

@media screen and (min-width: 1100px) {
  .l-header {
    display: flex;
    align-items: center;
    background-color: var(--color_mono02);
  }
  .l-header-logo {
    height: 6rem;
    position: absolute;
    top: 0.5rem;
    left: clamp(1rem, 1.8229166667vw, 2.1875rem);
  }
  .l-header-gnav {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .l-header-gnav-list {
    display: flex;
    width: 100%;
    margin: 0 0 0 auto;
  }
  .l-header-gnav-list .item {
    margin-left: clamp(1rem, 1.8229166667vw, 2.1875rem);
    border-bottom: none;
  }
  .l-header-gnav-list .item.-contact{
    display: none;
  }
  .l-header-gnav-list .item a {
    font-size: var(--f16);
    color: var(--color_mono01);
  }
  .l-header-gnav-list .item a:hover {
    color: var(--color_lightblue01);
  }
  .l-header-contact {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    margin-left: clamp(1rem, 1.8229166667vw, 2.1875rem);
    border-radius: 0;
  }
}
@media screen and (min-width: 1400px) {
  .l-header-gnav-list .item a {
    font-size: var(--f18);
  }
}
.l-page_main {
  margin-top: 3rem;
  overflow: hidden;
}

@media screen and (min-width: 1100px) {
  .l-page_main {
    margin-top: 5rem;
  }
}
.l-contact {
  padding: clamp(3rem, 4.6875vw, 5.625rem) 0 clamp(2rem, 1.0416666667vw, 1.25rem);
  background-image: url(../img/contact__bg.jpg);
  background-size: auto 100%;
  background-position: center;
}
.l-contact-heading {
  margin-bottom: 2rem;
  color: var(--color_mono02);
  text-align: center;
}
.l-contact-heading .title {
  font-size: var(--f48);
  font-weight: 700;
}
.l-contact-heading .text {
  font-size: var(--f26);
}
.l-contact-list .item {
  margin-bottom: clamp(2rem, 2.5vw, 3rem);
}
.l-contact-list .item a {
  display: block;
  padding: clamp(2rem, 2.0833333333vw, 3.125rem) 1rem clamp(1.5rem, 2.0833333333vw, 2.5rem);
  position: relative;
  background-color: var(--color_mono02);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: clamp(0.25rem, 0.6770833333vw, 0.8125rem);
}
.l-contact-list .item a:before {
  content: "";
  display: block;
  width: clamp(2.5rem, 3.3854166667vw, 4.0625rem);
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(clamp(1rem, 1.6666666667vw, 2rem) * -1);
  left: 0;
  right: 0;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
.l-contact-list .web {
  color: var(--color_lightblue01);
}
.l-contact-list .web a {
  transition: 0.3s;
}
.l-contact-list .web a:before {
  background-image: url(../img/contact__web_icon.png);
}
.l-contact-list .web a:hover {
  opacity: 0.9;
}
.l-contact-list .tel {
  color: var(--color_blue01);
}
.l-contact-list .tel a:before {
  background-image: url(../img/contact__tel_icon.png);
}
.l-contact-list .tel .info_text {
  display: block;
  color: var(--color_mono01);
  font-size: 0.7rem;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .l-contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-contact-heading {
    width: 50%;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .l-contact-list {
    width: 45%;
  }
  .l-contact-list .item a {
    width: clamp(8rem, 31.25vw, 37.5rem);
    width: 100%;
    font-size: var(--f32);
    font-weight: 700;
  }
  .l-contact-list .tel .info_text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1100px) {
  .l-contact-list {
    width: clamp(8rem, 31.25vw, 37.5rem);
  }
}
.l-to_top {
  display: block;
  width: 100%;
  padding: 0.5rem;
  background-color: var(--color_mono04);
  text-align: center;
  color: var(--color_mono02);
  font-size: var(--f20);
}

.l-footer {
  padding: clamp(4rem, 4.4791666667vw, 5.375rem) 0 1rem;
}
.l-footer-info {
  margin-bottom: 2rem;
  text-align: center;
}
.l-footer-info .organization {
  font-size: var(--f20);
  font-family: var(--f_zen);
}
.l-footer-info .name {
  margin-bottom: 0.5rem;
  font-size: var(--f32);
  font-family: var(--f_zen);
}
.l-footer-info .summary {
  display: inline-block;
  width: clamp(15rem, 17.8125vw, 21.375rem);
  padding: 0.25rem;
  background-color: var(--color_lightblue03);
  border-radius: 1rem;
  font-size: var(--f20);
}
.l-footer-nav {
  margin-bottom: clamp(1.5rem, 2.0833333333vw, 2.5rem);
}
.l-footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color_lightblue03);
}
.l-footer-nav-list .item {
  width: 50%;
  padding: 0.25rem 0;
}
.l-footer-nav-list .item a:hover {
  color: var(--color_lightblue01);
}
.l-footer-location-item:not(:last-of-type) {
  margin-bottom: 3rem;
}
.l-footer-location-heading {
  width: 20rem;
  margin: 0 auto 0.5rem;
  padding: 0.5rem;
  background-color: #5CB2E2;
  color: var(--color_mono02);
  text-align: center;
  border-radius: 2rem;
}
.l-footer-location-heading .name {
  font-size: 1.2rem;
}
.l-footer-location-address {
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  text-align: center;
}
.l-footer-copy {
  padding-top: 4rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-footer-nav-list .item {
    width: 33.3333333333%;
  }
  .l-footer-location {
    display: flex;
    gap: 4%;
  }
  .l-footer-location-item {
    width: 48%;
  }
  .l-footer-copy {
    padding: 2rem 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1400px) {
  .l-footer-nav-list .item {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.l-page_header {
  margin-bottom: clamp(1rem, 1.5625vw, 1.875rem);
}
.l-page_header-title_area {
  margin-bottom: 1rem;
  padding: clamp(4rem, 6.25vw, 7.5rem) 0 clamp(4rem, 3.6458333333vw, 4.375rem);
  position: relative;
  background-color: var(--color_lightblue03);
  z-index: -2;
}
.l-page_header-title_area .title {
  width: clamp(14rem, 23.9583333333vw, 28.75rem);
  margin: 0 auto;
  padding: 1rem 0.25rem;
  color: var(--color_mono02);
  font-family: var(--f_zen);
  font-size: var(--f38);
  background-color: var(--color_lightblue02);
  text-align: center;
  border-radius: clamp(0.25rem, 0.5208333333vw, 0.625rem);
  z-index: 2;
}
.l-page_header-title_area-deco01 {
  width: clamp(3rem, 6.875vw, 8.25rem);
  top: 50%;
  transform: translateY(-50%);
  left: calc((100% - clamp(14rem, 23.9583333333vw, 28.75rem)) / 2 - clamp(3.5rem, 8.3333333333vw, 10rem));
}
.l-page_header-title_area-deco02 {
  width: clamp(5rem, 12.2395833333vw, 14.6875rem);
  top: 20%;
  right: calc((100% - clamp(14rem, 23.9583333333vw, 28.75rem)) / 2 - clamp(3.5rem, 9.1145833333vw, 46.875rem));
  z-index: -1;
}
.l-page_header-title_area-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  opacity: 0.42;
  z-index: -2;
}
.l-page_header-title_area-bg video {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-page_header-breadcrumbs {
  margin-right: 1.5rem;
}
.l-page_header-breadcrumbs-list {
  display: flex;
  justify-content: end;
}
.l-page_header-breadcrumbs-list li:not(:last-of-type):after {
  content: ">";
  margin: 0 1.5rem;
}

#c-hamburger {
  display: block;
  width: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: fixed;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 999;
}
#c-hamburger span {
  display: block;
  width: 2rem;
  height: 4px;
  position: absolute;
  background-color: var(--color_lightblue01);
  border-radius: 4px;
  transition: 0.3s;
}
#c-hamburger span:nth-of-type(1) {
  top: 0;
}
#c-hamburger span:nth-of-type(2) {
  top: 0.5rem;
}
#c-hamburger span:nth-of-type(3) {
  top: 1rem;
}
#c-hamburger p {
  position: absolute;
  top: 1.1rem;
  color: var(--color_lightblue01);
  font-family: var(--f_zen);
  font-size: 14px;
}
#c-hamburger.active span:nth-of-type(1) {
  top: 0.5rem;
  transform: rotate(45deg);
}
#c-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
#c-hamburger.active span:nth-of-type(3) {
  top: 0.5rem;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1100px) {
  #c-hamburger {
    display: none;
  }
}
.p-not_found {
  padding-bottom: 4rem;
}/*# sourceMappingURL=common.css.map */