@charset "UTF-8";
/* reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

fieldset, img {
  border: 0;
  vertical-align: top;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  *font-size: 100%;
}

legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

section {
  display: block;
}

figure, figcaption {
  margin: 0;
  padding: 0;
}

main {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

small {
  font-size: 100%;
}
/* */
a:link, a:visited {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  text-decoration: none;
  color: var(--c-base);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

a:hover {
  outline: none;
}

a.disabled {
  pointer-events: none;
}

a:focus, *:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --f-jp: "Noto Sans JP", sans-serif;
  --f-en: "Josefin Sans", sans-serif;
--f-num: "Google Sans", sans-serif;
  --c-base:#231815;
  --c-or:#f7931e;
  --c-line:#d9e3dc;
  --c-bg:#f2f7f7;
}

/*----------------common----------------*/
body {
  font-family: var(--f-jp);
  font-size: 17px;
  line-height: 42px;
  letter-spacing: 0.05em;
  color: var(--c-base);
  word-wrap: break-word;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
main {
  overflow: hidden;
}
br.sp-only {
    display: none;
}
.loading{
  position: fixed;
  inset: 0;
  background:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;

}
.loading dl {
    text-align: center;
}
.loading dt img {
    width: 120px;
    margin-bottom: 20px;
}
.loading-area {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.loading-area span {
    display: inline-block;
    background-color: #efefef;
    background-image: linear-gradient(#73519e, #73519e);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    animation: water-anime 2s infinite linear;
    text-transform: uppercase;
    font-size: 16px;
    font-family: var(--f-en);
  font-weight: 800;
}

.loading-area span:nth-child(1) {
    animation-delay: 0.1s;
}

.loading-area span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-area span:nth-child(3) {
    animation-delay: 0.3s;
}

.loading-area span:nth-child(4) {
    animation-delay: 0.4s;
}

.loading-area span:nth-child(5) {
    animation-delay: 0.5s;
}

.loading-area span:nth-child(6) {
    animation-delay: 0.6s;
}

.loading-area span:nth-child(7) {
    animation-delay: 0.7s;
}

.loading-area span:nth-child(8) {
    animation-delay: 0.8s;
}

.loading-area span:nth-child(9) {
    animation-delay: 0.9s;
}

.loading-area span:nth-child(10) {
    animation-delay: 1s;
}

@keyframes water-anime {

    50%,
    70% {
        background-size: 100% 0%;
    }

}
.fade {
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.215, 0.61, 0.355, 1),filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);

    transform: translateY(20px);
    opacity: 0;
    -ms-filter: blur(4px);
  filter: blur(4px);
}

.fade.anime {
    transform: translateY(0px);
    opacity: 1;
    ms-filter: blur(0px);
  filter: blur(0px);
    
}
.fade-left {
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.215, 0.61, 0.355, 1),filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);

    transform: translateX(-20px);
    opacity: 0;
    -ms-filter: blur(4px);
  filter: blur(4px);
}
.fade-left.anime {

    transform: translateX(0px);
    opacity: 1;
    -ms-filter: blur(0px);
  filter: blur(0px);
}
.fade-right {
    transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform .8s cubic-bezier(0.215, 0.61, 0.355, 1),filter 1s cubic-bezier(0.215, 0.61, 0.355, 1);

    transform: translateX(20px);
    opacity: 0;
    -ms-filter: blur(4px);
  filter: blur(4px);
}
.fade-right.anime {

    transform: translateX(0px);
    opacity: 1;
    -ms-filter: blur(0px);
  filter: blur(0px);
}
.fade--delay01 {
    transition-delay: .2s;
}
.fade--delay02 {
    transition-delay: .4s;
}
.fade--delay03 {
    transition-delay: .6s;
}
.header__site-id {
    width: 85px;
    position: absolute;
    z-index: 5;
    left: 55px;
    top: 45px;
}
.header__icon {
    display: none;
}
.home__visual {
    text-align:center;
    padding-top: 55px;
    position: relative;
}
.home__visual .swiper {
    box-sizing: border-box;
    width: 1140px;
    transform: translateX(3%);
    z-index: 77;
    height: 100%;
}
.home__visual h2 {
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.12em;
    margin-bottom: 30px;
}
.home__visual h2 span.eng {
    font-size: 104px;
    font-family: var(--f-en);
    font-weight: 600;
    line-height: 1;
    display: block;
    margin-bottom: -12px;
}

.home__visual__icon li {
    position: absolute;
    z-index: 3;
    left: 50%;
}
.home__visual__icon li:nth-child(1) {
    width: 155px;
    top: 60px;
    margin-left: 246px;
}
.home__visual__icon li:nth-child(2) {
    width: 132px;
    bottom:5px;
    margin-left: -570px;
}
.home__visual__icon li:nth-child(3) {
    width: 225px;
    bottom:65px;
    margin-left: 340px;
}
.home__visual__icon li:nth-child(4) {
    display: none;
}
.home__information {
    background-color: #fff0d2;
    padding-bottom: 65px;
    padding-top: 45px;
    margin-top: -15px;
}
.home__information-inner {
    max-width: 680px;
    width: 84%;
    margin: 0 auto;
    position: relative;
}
.home__information h2 {
    font-family: var(--f-en);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 20px;
}
.home__information ul li:not(:last-child) {
    margin-bottom: 10px;
}
.home__information ul li .item {
    display: block;
    background-color: #fff;
    padding: 12px 20px;
}
.home__information ul li dl {
    display: flex;
    letter-spacing: 0.1em;
    line-height: 1.5;
    align-items: center;
}
.home__information ul li dt {
    font-family: var(--f-num);
    margin-bottom: -2px;
    width: 125px;
    
}
.home__information ul li dd {
    letter-spacing: 0.14em;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home__information ul li a:hover dd {
    color: #7dbec3;
    text-decoration: underline;
}
.home__information-img {
    position: absolute;
    z-index: 2;
    width: 104px;
    bottom: -68px;
    left: -160px;
    
}
.home__contents {
    background-color: #fae1af;
    padding-top: 65px;
    padding-bottom: 65px;
}
.home__contents-inner {
    max-width: 1080px;
    width: 86%;
    margin: auto;
    display: flex;
    gap:30px;
}
.home__contents-icon img {
    width: 63px;
    margin-bottom: 20px;
}
.home__contents-item {
    width: calc((100% - 60px) / 3);
    
}
.home__contents-item a {
    display: block;
    text-align: center;
    padding: 60px 50px 50px 50px;
    box-sizing: border-box;
    position: relative;
    background-color: #fff;
}
.home__contents-item a:hover {
    opacity: 0.75;
}
.home__contents-item a:before {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 40px 40px 0px 0px;
    border-color: #fae1af transparent transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    left: -1px;
    top: -1px;
}
.home__contents-item a:after {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 40px 40px 0px;
    border-color: transparent #fae1af transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    right: -1px;
    top: -1px;
}
.home__contents-item .corner:before {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 40px 40px 0px 0px;
    border-color: #fae1af transparent transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    left: -1px;
    bottom: -1px;
    transform: scale(1, -1);
}
.home__contents-item .corner:after {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 40px 40px 0px;
    border-color: transparent #fae1af transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    right: -1px;
    bottom: -1px;
    transform: scale(1, -1);
}
.home__contents-item h2 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin-bottom: 35px;
}
.home__contents-item h2 span {
    font-family: var(--f-en);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-top: 10px;
}
.home__contents-btn {
    position: relative; 
}
.home__contents-btn:before {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 10px 10px 0px 0px;
    border-color: #fff transparent transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    left: -1px;
    top: -1px;
}
.home__contents-btn:after {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 10px 10px 0px;
    border-color: transparent #fff transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    right: -1px;
    top: -1px;
}

.home__contents-btn .btn{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    letter-spacing: 0.2em;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home__contents-btn .btn:before {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 10px 10px 0px 0px;
    border-color: #fff transparent transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    left: -1px;
    bottom: -1px;
    transform: scale(1, -1);
}
.home__contents-btn .btn:after {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 10px 10px 0px;
    border-color: transparent #fff transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    right: -1px;
    bottom: -1px;
    transform: scale(1, -1);
}
.home__contents-btn .btn span {
    background-image: url("../../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: right 17px;
    background-size: 20px;
    padding-right: 22px;
}
.home__contents-btn--clr01 .btn{
    background-color: #ead981;
    
}
a:hover .home__contents-btn--clr01 .btn {
    background-color: #E3CD59;
}
.home__contents-btn--clr02 .btn{
    background-color: #eec4d9;
}
a:hover .home__contents-btn--clr02 .btn {
    background-color: #E6AAC8;
}
.home__contents-btn--clr03 .btn{
    background-color: #a4d2d5;
}
a:hover .home__contents-btn--clr03 .btn {
    background-color: #87C3C7;
}
.home__contents-triangle {
    position: absolute;
    z-index: 1;
    width: 21px;
    top: -20px;
    left: 50%;
    margin-left: -10px;
}
.home__guide {
    padding-top: 70px;
    padding-bottom: 65px;
}
.home__guide-inner {
    max-width: 630px;
    margin: auto;
    width: 86%;
    position: relative;
}
.home__guide h2 {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-align: center;
    margin-bottom: 45px;
}
.home__guide h2 span {
    border-bottom: var(--c-base) 1.3px solid;
    padding-bottom: 15px;
    display: inline-block;
}
.home__guide-flex {
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    
}
.home__guide-item {
    width: calc((100% - 40px) / 3);
}
.home__guide-item a {
    display: block;
    background-color: #fff0d2;
    padding: 15px 15px 30px 15px;
    text-align: center;
}
.home__guide-item a:hover {
    background-color: #FFE1A7;
}
.home__guide-item h3 {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home__guide-item-icon img {
    width: 116px;
}
.home__guide-icon li {
    position: absolute;
    z-index: 1;
}
.home__guide-icon li:nth-child(1) {
    width: 140px;
    left: -200px;
    top: 0;
}
.home__guide-icon li:nth-child(2) {
    width: 180px;
    right: -250px;
    bottom: -70px;
}
.home__guide-icon li:nth-child(3) {
    display: none;
}
.home__map .sp-only {
    display: none;
}
.footer {
    padding-top: 80px;
    padding-bottom: 80px;
}
.footer__inner {
    max-width: 1080px;
    margin: auto;
    width: 86%;
    text-align: center;
    position: relative;
}
.footer__contact {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
}
.footer__contact:before {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 9px 9px 0px 0px;
    border-color: #fff transparent transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
}
.footer__contact:after {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 9px 9px 0px;
    border-color: transparent #fff transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
}
.footer__contact a {
    background-color: #fae1af;
    width: 435px;
    height: 60px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1;
    position: relative;
}
.footer__contact a:hover {
    background-color: #F7D38A;
}
.footer__contact a span {
    background-image: url("../../images/mail.svg");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 50px;
    padding-top: 3px;
    padding-bottom: 5px;
    
}
.footer__contact a span.sp {
    display: none;
}
.footer__contact a:before {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 11px 11px 0px 0px;
    border-color: #fff transparent transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    transform: scale(1, -1);
}
.footer__contact a:after {
    width: 0;
      height: 0;
      border-style: solid;
    border-width: 0px 11px 11px 0px;
    border-color: transparent #fff transparent transparent;
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    transform: scale(1, -1);
}
.footer__add {
    line-height: 1.9;
    font-size: 19px;
    margin-bottom: 120px;
}
.footer__add span {
    font-family: var(--f-num);
}
.footer__nav {
    display: flex;
    justify-content: space-between;
}
.footer__nav li a:hover {
    color: #7dbec3;
  text-decoration: underline;
}
.footer__icon {
    position:absolute;
    width: 145px;
    right: 50%;
    top: 30px;
    margin-right: -520px;
    z-index: -1;
}
.footer__icon .sp {
    display: none;
}
@media screen and (max-width:1080px){

html {
    font-size: calc(100vw / 37.5);
  }
body {
    font-size: 1.5rem;
    line-height: 1.8;
  }
.loading dt img {
  width: 9rem;
  margin-bottom: 2rem;
}
.loading-area span {
  font-size: 1.3rem;

}
    .header {
        text-align: center;
        position: relative;
    }
.header__icon {
    display: block;
    width: 7.6rem;
    position: absolute;
    z-index: 1;
    right: 4rem;
    bottom: -1.4rem;
  }
.header__site-id {
  width: 5.2rem;
  position: static;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5.4rem;
    margin-bottom: 3rem;
}
.home__visual {
  padding-top: 0;
    padding-bottom: 9rem;
}
.home__visual .swiper {
  width: 46rem;
  transform: translateX(0.6rem);
}
.home__visual h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
    line-height: 1.5;
}
.home__visual h2 span.eng {
  font-size: 6.3rem;
    margin-bottom: -0.8rem;
}
    .home__visual h2 span.jp {
        display: block;
        font-size: 1.5rem;
    }
.home__information-inner {
  max-width: inherit;
  width: 88%;
}
.home__information ul li dl {
  display: block;
}
.home__information h2 {
  font-size: 3.6rem;
  margin-bottom: 0.3rem;
}
.home__information ul li .item {
  padding: 1.5rem 2rem;
}
.home__information ul li dt {
  margin-right: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 0;
    width: auto;
}
.home__information ul li dd {
    line-height: 1.6;
}
.home__information ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.home__visual__icon li:nth-child(1) {
  display: none;
}
.home__visual__icon li:nth-child(2) {
  width: 8.4rem;
  bottom: 3rem;
  margin-left: 0rem;
  left: 2.7rem;
}
.home__visual__icon li:nth-child(3) {
  width: 12.3rem;
  bottom: -1.2rem;
  margin-left: 0px;
  left: 22rem;
}
.home__visual__icon li:nth-child(4) {
  display: block;
}
.home__information {
  padding-bottom: 7rem;
  padding-top: 5rem;
    margin-top: 0;
}
.home__information-img {
  width: 6.4rem;
  bottom: -7.2rem;
  left: 0.5rem;
}
.home__contents {
  padding-top: 6rem;
  padding-bottom: 8rem;
}
.home__contents-inner {
  width: 75%;
  display: block;
}
.home__contents-item {
    width: auto;
}
.home__contents-item a{
  padding: 4rem;
}
    .home__contents-item a:hover {
        opacity: 1;
    }
.home__contents-item:not(:last-child) {
    margin-bottom: 4.5rem;
}
.home__contents-btn .btn {
    font-size: 1.45rem;
    height: 4.1rem;
}
.home__contents-btn .btn span {
  background-size: 1.8rem;
  padding-right: 2.2rem;
    background-position: right 0.9rem;
}
.home__contents-triangle {
  width: 2rem;
  top: -1.6rem;
  margin-left: -1rem;
}
.home__contents-icon img {
  width: 5.4rem;
  margin-bottom: 2rem;
}
.home__contents-item h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
    height: 9.5rem;
}
.home__contents-item h2 span {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-top: 1rem;
}
.home__contents-btn:before {
    border-width: 0.8rem 0.8rem 0px 0px;
}
.home__contents-btn:after {
    border-width: 0px 0.8rem 0.8rem 0px;
}
.home__contents-btn .btn:before {
    border-width: 0.8rem 0.8rem 0px 0px;
}
.home__contents-btn .btn:after {
    border-width: 0px 0.8rem 0.8rem 0px;
}
.home__contents-item a:before {
    border-width: 2.9rem 2.9rem 0px 0px;
}
.home__contents-item a:after {
    border-width: 0px 2.9rem 2.9rem 0px;
}
.home__guide-inner {
  max-width: inherit;
  width: 90%;
}
.home__guide-flex {
  gap: 1.5rem;
}
.home__guide-item {
  width: calc((100% - 1.5rem) / 2);
}
.home__guide-item h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
.home__guide-item a {
  padding: 1.5rem 1.5rem 2.5rem 1.5rem;
}
.home__guide-item-icon img {
  width: 10rem;
}
.home__contents-item .corner:before {
    border-width: 2.9rem 2.9rem 0px 0px;
}
.home__contents-item .corner:after {
    border-width: 0px 2.9rem 2.9rem 0px;
}
.home__guide {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.home__guide h2 {
  font-size: 3rem;
  margin-bottom: 4rem;
}
.home__guide h2 span {
  padding-bottom: 0.5rem;
}
.home__guide-icon li:nth-child(1) {
  display: none;
}
.home__guide-icon li:nth-child(2) {
  display: none;
}
.home__guide-icon li:nth-child(3) {
    display: block;
    top: -11.3rem;
    right: 1.5rem;
    width: 8.6rem;
    mix-blend-mode: multiply;
  }
.home__map img {
    display: none;
}
.home__map .sp-only {
    display: block;
}
.footer {
  padding-top: 6rem;
  padding-bottom: 5rem;
}
.footer__contact {
  margin-bottom: 3rem;
}
.footer__contact a {
  width: 24.5rem;
    height: 7rem;
  font-size: 1.8rem;
}
.footer__contact a span.sp {
    display: inline;
}
.footer__contact a span.pc {
    display: none;
}
.footer__contact a span {
  background-size: 2.2rem;
  background-position: center top;
  padding-left: 0;
  padding-top: 2.5rem;
  padding-bottom: 0;
}
.footer__inner {
  max-width: inherit;
}

.footer__add {
  line-height: 1.7;
  font-size: 1.6rem;
  margin-bottom: 10rem;
}
    .footer__add .sp-none {
        display: none;
    }
.footer__nav {
  display: block;
  text-align: left;
    font-size: 1.3rem;
    padding-left: 2rem;
    padding-right: 2rem;
}
    .footer__nav li:not(:last-child) {
        margin-bottom: 1rem;
    }
.footer__icon .pc {
    display: none;
}
.footer__icon .sp {
    display: block;
}
.footer__icon {
  width: 8.6rem;
  right: 3rem;
  top: 25rem;
  margin-right: 0;
}
br.sp-only {
    display: inherit;
}
}
















