@charset "UTF-8";
:root {
  --color-main01: #AF9147;
  --color-green: #007864;
}

:root {
  --vw-size11: clamp(10px, calc(((11 + 2) / 1360) * 100vw), 11px);
  --vw-size12: clamp(10px, calc(((12 + 2) / 1360) * 100vw), 12px);
  --vw-size14: clamp(12px, calc(((14 + 2) / 1360) * 100vw), 14px);
  --vw-size16: clamp(13px, calc(((16 + 2) / 1360) * 100vw), 16px);
  --vw-size18: clamp(14px, calc(((18 + 2) / 1360) * 100vw), 18px);
  --vw-size20: clamp(15px, calc(((20 + 2) / 1920) * 100vw), 20px);
  --vw-size24: clamp(18px, calc(((24 + 2) / 1360) * 100vw), 24px);
  --vw-size28: clamp(19px, calc(((28 + 2) / 1360) * 100vw), 28px);
  --vw-size30: clamp(20px, calc(((30 + 2) / 1360) * 100vw), 30px);
  --vw-size32: clamp(20px, calc(((32 + 2) / 1360) * 100vw), 32px);
  --vw-size40: clamp(22px, calc(((40 + 2) / 1360) * 100vw), 40px);
  --vw-size45: clamp(24px, calc(((45 + 2) / 1920) * 100vw), 45px);
  --vw-size48: clamp(26px, calc(((48 + 2) / 1360) * 100vw), 48px);
  --vw-size56: clamp(30px, calc(((56 + 2) / 1360) * 100vw), 56px);
  --vw-size80: clamp(40px, calc(((80 + 2) / 1360) * 100vw), 80px);
  --vw-size100: clamp(50px, calc(((100 + 2) / 1360) * 100vw), 100px);
}

/* top page
 * ========================================================================== */
/**
/* Mainvisual
 * ========================================================================== */
/*↓↓↓変更不可*/
#mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 1200px) {
  #mainvisual {
    overflow: initial;
    margin-bottom: 93px !important;
  }
}
/*↑↑↑変更不可*/
.mainvisualText {
  position: absolute;
  top: 21.296296%;
  left: 7.291666%;
  z-index: 10;
  max-width: 36.458333%;
}

#mainvisual .loadArea {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: url(../img/top/bg01.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  #mainvisual .loadArea {
    background: url(../img/top/bg01_sp.webp) no-repeat center center/cover;
  }
}
#mainvisual .loadArea .skipBtn {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 50;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .skipBtn {
    top: 20px;
    right: 15px;
  }
}
#mainvisual .loadArea .skipBtn a {
  display: block;
  font-family: "Cinzel", serif;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .skipBtn a {
    font-size: 15px;
  }
}
@media (min-width: 992px) {
  #mainvisual .loadArea .skipBtn a:hover {
    opacity: 0.7;
  }
}
#mainvisual .loadArea .mvImgArea {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 1;
  -webkit-transition: opacity 1.5s ease-in-out 8s;
  transition: opacity 1.5s ease-in-out 8s;
  mix-blend-mode: multiply;
  overflow: hidden;
}
#mainvisual .loadArea .mvImgArea .mv {
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1.5s ease-in-out 2s;
  transition: opacity 1.5s ease-in-out 2s;
  position: absolute;
  top: 20%;
  left: 10%;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .mvImgArea .mv {
    left: 0;
  }
}
#mainvisual .loadArea .mvImgArea .mv::before {
  content: "";
  width: 100%;
  height: 20%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#mainvisual .loadArea .mvImgArea .mv::after {
  content: "";
  width: 30%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .mvImgArea .mv::after {
    display: none;
  }
}
#mainvisual .loadArea .mvImgArea .mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual .loadArea .mvImgArea02 {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out 10s;
  transition: opacity 1.5s ease-in-out 10s;
}
#mainvisual .loadArea .mvImgArea02 .mv {
  width: 100%;
  height: 100%;
}
#mainvisual .loadArea .mvImgArea02 .mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual .loadArea .introTxt {
  width: min(50%, 600px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 1s ease 8s;
  transition: opacity 1s ease 8s;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .introTxt {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#mainvisual .loadArea .introTxt .mvTxt01 {
  width: 35.0438047559%;
  position: relative;
  -webkit-transform: translateX(90%);
          transform: translateX(90%);
  -webkit-transition: -webkit-transform 1.2s ease 6s;
  transition: -webkit-transform 1.2s ease 6s;
  transition: transform 1.2s ease 6s;
  transition: transform 1.2s ease 6s, -webkit-transform 1.2s ease 6s;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .introTxt .mvTxt01 {
    width: 39.5%;
    -webkit-transform: translateX(81%);
            transform: translateX(81%);
  }
}
#mainvisual .loadArea .introTxt .mvTxt01 figure {
  -webkit-transition: opacity 0.5s ease-in-out 3.5s;
  transition: opacity 0.5s ease-in-out 3.5s;
  opacity: 0;
}
#mainvisual .loadArea .introTxt .mvTxt01 figure:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition-delay: 4.5s;
          transition-delay: 4.5s;
}
#mainvisual .loadArea .introTxt .mvTxt01 figure:last-child {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition-delay: 5.5s;
          transition-delay: 5.5s;
}
#mainvisual .loadArea .introTxt .mvTxt02 {
  width: 62.703379224%;
}
@media (max-width: 767px) {
  #mainvisual .loadArea .introTxt .mvTxt02 {
    width: 72.6%;
    margin-left: auto;
  }
}
#mainvisual .loadArea .introTxt .mvTxt02 figure {
  opacity: 0;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transition: opacity 0.8s ease 7.2s, -webkit-filter 0.8s ease 7.2s;
  transition: opacity 0.8s ease 7.2s, -webkit-filter 0.8s ease 7.2s;
  transition: opacity 0.8s ease 7.2s, filter 0.8s ease 7.2s;
  transition: opacity 0.8s ease 7.2s, filter 0.8s ease 7.2s, -webkit-filter 0.8s ease 7.2s;
}
#mainvisual .loadArea .txtArea {
  width: min(20%, 360px);
  position: absolute;
  top: 180px;
  left: 3%;
  z-index: 2;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  opacity: 0;
  -webkit-transition: opacity 1s ease 11s, -webkit-transform 1s ease 11s;
  transition: opacity 1s ease 11s, -webkit-transform 1s ease 11s;
  transition: opacity 1s ease 11s, transform 1s ease 11s;
  transition: opacity 1s ease 11s, transform 1s ease 11s, -webkit-transform 1s ease 11s;
}
@media (max-width: 1540px) {
  #mainvisual .loadArea .txtArea {
    width: 22%;
    top: 170px;
    left: 1.5%;
  }
}
@media (max-width: 991px) {
  #mainvisual .loadArea .txtArea {
    top: 80px;
  }
}
@media (max-width: 767px) {
  #mainvisual .loadArea .txtArea {
    width: 80%;
    top: 15%;
    left: 10%;
  }
}
#mainvisual.on .loadArea .skipBtn {
  display: block;
}
#mainvisual.on .loadArea .mvImgArea {
  opacity: 0;
}
#mainvisual.on .loadArea .mvImgArea .mv {
  opacity: 0.2;
}
#mainvisual.on .loadArea .mvImgArea02 {
  opacity: 1;
}
#mainvisual.on .loadArea .introTxt {
  opacity: 0;
}
#mainvisual.on .loadArea .introTxt .mvTxt01 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#mainvisual.on .loadArea .introTxt .mvTxt01 figure {
  opacity: 1;
}
#mainvisual.on .loadArea .introTxt .mvTxt02 figure {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
#mainvisual.on .loadArea .txtArea {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
#mainvisual .mvSlider {
  width: 100%;
  height: 100%;
  position: relative;
}
#mainvisual .mvSlider .slick-list {
  height: 100%;
}
#mainvisual .mvSlider .slick-list .slick-track {
  height: 100%;
}
#mainvisual .mvSlider .slide {
  height: 100%;
  position: relative;
}
#mainvisual .mvSlider .img {
  width: 100%;
  height: 100%;
}
#mainvisual .mvSlider .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mainvisual .mvSlider .txtArea {
  width: min(20%, 360px);
  position: absolute;
  top: 180px;
  left: 3%;
  z-index: 2;
}
@media (max-width: 1540px) {
  #mainvisual .mvSlider .txtArea {
    width: 22%;
    top: 170px;
    left: 1.5%;
  }
}
@media (max-width: 991px) {
  #mainvisual .mvSlider .txtArea {
    top: 80px;
  }
}
@media (max-width: 767px) {
  #mainvisual .mvSlider .txtArea {
    width: 80%;
    top: 15%;
    left: 10%;
  }
}
#mainvisual .mvSlider .txtArea02 {
  width: min(50%, 798px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  #mainvisual .mvSlider .txtArea02 {
    width: 80%;
  }
}
#mainvisual .mvSlider .txtArea03 {
  width: min(20%, 360px);
  position: absolute;
  top: 180px;
  left: 17.5%;
  z-index: 2;
}
@media (max-width: 1540px) {
  #mainvisual .mvSlider .txtArea03 {
    top: 170px;
    left: 16%;
  }
}
@media (max-width: 991px) {
  #mainvisual .mvSlider .txtArea03 {
    top: 80px;
  }
}
@media (max-width: 767px) {
  #mainvisual .mvSlider .txtArea03 {
    width: 75%;
    top: 15%;
    left: 5%;
  }
}

/* @media
 * ========================================================================== */
@media screen and (max-width: 1024px) {
  .mainvisualText {
    max-width: 50%;
  }
}
@media screen and (max-width: 991px) {
  #mainvisual {
    height: 54.2857142857vw;
  }
}
/*微調整*/
@media screen and (max-width: 767px) {
  .mainvisualText {
    top: 20%;
    left: 0;
    right: 0;
    max-width: none;
  }
  #mainvisual {
    height: 177.8666666667vw;
  }
}
.honkoku {
  background: #007864;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .honkoku {
    padding: 50px 0;
  }
}
.honkoku .ttl01 {
  text-align: center;
  position: relative;
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .honkoku .ttl01 {
    font-size: 20px;
  }
}
.honkoku table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  color: #fff;
}
@media (max-width: 767px) {
  .honkoku table {
    font-size: 14px;
  }
}
.honkoku table th {
  width: 30%;
  border: solid 1px #fff;
  padding: 20px;
}
@media (max-width: 767px) {
  .honkoku table th {
    padding: 20px 10px;
  }
}
.honkoku table td {
  padding: 20px;
  border: solid 1px #fff;
}
@media (max-width: 767px) {
  .honkoku table td {
    padding: 20px 10px;
  }
}
.honkoku .conBtn {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.honkoku .conBtn + .conBtn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .honkoku .conBtn + .conBtn {
    margin-top: 20px;
  }
}

/**
/* freeArea
 * ========================================================================== */
#freeArea {
  margin: 120px 0;
}

.floatBnrWrap {
  width: 400px;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 990;
  display: none;
}
@media (max-width: 767px) {
  .floatBnrWrap {
    width: 80%;
    max-width: 400px;
    bottom: 50px;
  }
}
.floatBnrWrap.close {
  display: none !important;
}
.floatBnrWrap .close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  cursor: pointer;
}
@media (max-width: 767px) {
  .floatBnrWrap .close {
    width: 25px;
    height: 25px;
  }
}
.floatBnrWrap a {
  -webkit-transition: opacity 0.4s ease 0s;
  transition: opacity 0.4s ease 0s;
}
@media (min-width: 992px) {
  .floatBnrWrap a:hover {
    opacity: 0.7;
  }
}

.logoArea {
  width: 100%;
  position: absolute;
  top: 10%;
  left: 0;
  z-index: 5;
}
.logoArea .logo {
  width: 100%;
  max-width: 908px;
  margin: 0 auto 40px;
}
@media (max-width: 1280px) {
  .logoArea .logo {
    margin-bottom: 20px;
  }
}
.logoArea .conTxt {
  text-align: center;
  font-size: var(--vw-size24);
}
.logoArea .conTxt.go {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

.conArea {
  width: 100%;
  position: relative;
  background: url(../img/top/bg01.webp) no-repeat center center/cover;
  background-attachment: fixed;
  padding-bottom: 11.7647058824%;
}
@media (max-width: 767px) {
  .conArea {
    background: url(../img/top/bg01_sp.webp) no-repeat center center/cover;
    background-attachment: fixed;
  }
}
.conArea .conBox01 {
  position: relative;
  z-index: 2;
}
.conArea .conBox01 .txtWrap02 {
  width: 100%;
  position: absolute;
  top: 8%;
  left: 0;
  z-index: 5;
}
.conArea .conBox01 .txtWrap02 .inner01 {
  width: 75%;
}
@media (max-width: 767px) {
  .conArea .conBox01 .txtWrap02 .inner01 {
    width: 90%;
  }
}
.conArea .conBox01 .txtWrap02 .logo {
  width: 100%;
  max-width: 908px;
  margin: 0 auto 40px;
}
@media (max-width: 1280px) {
  .conArea .conBox01 .txtWrap02 .logo {
    margin-bottom: 20px;
  }
}
.conArea .conBox01 .txtWrap02 .conTxt {
  text-align: center;
  font-size: var(--vw-size24);
}
.conArea .conBox01 .txtWrap02 .link {
  text-align: center;
  margin-top: 40px;
  line-height: 1;
}
@media (max-width: 1280px) {
  .conArea .conBox01 .txtWrap02 .link {
    margin-top: 20px;
  }
}
.conArea .conBox01 .txtWrap02 .link a {
  display: inline-block;
  color: var(--color-green);
  font-size: var(--vw-size16);
  font-family: "Cinzel", serif;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color-green);
}
@media (max-width: 1280px) {
  .conArea .conBox01 .txtWrap02 .link a {
    padding-bottom: 5px;
  }
}
.conArea .conBox01 .txtWrap {
  position: absolute;
  bottom: 10%;
  left: 17%;
  z-index: 5;
}
@media (max-width: 767px) {
  .conArea .conBox01 .txtWrap {
    bottom: 6%;
  }
}
.conArea .conBox01 .txtWrap .txt {
  font-size: var(--vw-size32);
  letter-spacing: 0.05em;
  color: #fff;
}
.conArea .c-heading-3-en {
  color: #EAB76B;
  font-size: var(--vw-size100);
}
.conArea .c-heading-3-en.green {
  color: #B1D6C9;
}
.conArea .c-heading-3-en.blue {
  color: #8FC9E4;
}
.conArea .conBox02 {
  padding: 11.7647058824% 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .conArea .conBox02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}
.conArea .conBox02 .c-heading-4 {
  font-size: var(--vw-size32);
}
.conArea .conBox02 .imgWrap {
  width: 58.4895833333%;
}
@media (max-width: 767px) {
  .conArea .conBox02 .imgWrap {
    width: 100%;
  }
}
.conArea .conBox02 .txtWrap {
  width: 35.2604166667%;
  padding-right: 5%;
}
@media (max-width: 767px) {
  .conArea .conBox02 .txtWrap {
    width: 100%;
    padding: 0 5%;
  }
}
.conArea .inner02 {
  width: 90%;
  max-width: 1460px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.conArea .inner02 .c-heading-3-en {
  font-size: var(--vw-size80);
}
.conArea .inner02 .c-text {
  font-size: var(--vw-size20);
}
.conArea .conBox03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .conArea .conBox03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.conArea .conBox03 .imgWrap {
  width: 45.8904109589%;
}
@media (max-width: 767px) {
  .conArea .conBox03 .imgWrap {
    width: 60%;
  }
}
.conArea .conBox03 .txtWrap {
  padding-right: 3%;
}
@media (max-width: 767px) {
  .conArea .conBox03 .txtWrap {
    padding-right: 0;
    margin-left: auto;
  }
}
.conArea .conBox04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  margin-top: 11.7647058824%;
}
@media (max-width: 767px) {
  .conArea .conBox04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.conArea .conBox04 .imgWrap {
  width: 58.2191780822%;
}
@media (max-width: 767px) {
  .conArea .conBox04 .imgWrap {
    width: 90%;
    margin-left: auto;
  }
}
.conArea .conBox04 .txtWrap {
  padding-left: 3%;
}
@media (max-width: 767px) {
  .conArea .conBox04 .txtWrap {
    padding-left: 0;
  }
}