<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
/* top common
 * ========================================================================== */
/*
html {
  overflow: hidden;
  height: 100vh;
}
html.scroll {
  overflow: auto;
  height: auto;
}
*/
body {
  background: rgba(149, 154, 123, 0.2);
}

.hidden {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 2s;
  transition: all 2s;
}

.br4 {
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .br4 {
    border-radius: 10px;
  }
}



/* text Setting
 * ========================================================================== */
.textAnimation.en {
  font-size: 7.2rem;
}
.textAnimation.jp {
  display: block;
  margin-top: 0;
  font-size: 3.6rem;
}
@media only screen and (max-width: 1280px) {
  .textAnimation.jp {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .textAnimation.jp {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .textAnimation.jp {
    font-size: 1.6rem;
  }
}
.textAnimation span {
  opacity: 0;
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.textAnimation span:nth-child(2n) {
  -webkit-transition: all 1.8s;
  transition: all 1.8s;
}
.textAnimation span:nth-child(2n-1) {
  -webkit-transition: all 1.6s 0.15s;
  transition: all 1.6s 0.15s;
}
@media only screen and (max-width: 767px) {
  .textAnimation.en {
    font-size: 5.2rem;
  }
  .textAnimation.jp {
    line-height: 1.8;
  }
  .textAnimation span {
    display: unset;
  }
}

@-webkit-keyframes rotate_anime {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* アニメーションの進みが0%の時の状態 */
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); /* アニメーションの進みが100%の時の状態 */
  }
}

@keyframes rotate_anime {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); /* アニメーションの進みが0%の時の状態 */
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); /* アニメーションの進みが100%の時の状態 */
  }
}


.loaded {
  opacity: 0;
  visibility: hidden;
}

/*animation Setting*/
/*@keyframes bgAnime {
  0% {opacity: 0;}
  25%{opacity: 1;}
  75% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes bgAnime2 {
  0% {opacity: 0;}
  25%{opacity: 1;}
  75% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes bgAnime3 {
  0% {opacity: 0;}
  33.3333% {opacity: 0;}
  66.6666% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes bgAnime4 {
  0% {opacity: 0;}
  33.3333% {opacity: 0;}
  66.6666% {opacity: 0;}
  100% {opacity: 1;}
}
.pageload{
  #progressWrap{
    .inner{
      opacity:1;
    }
    .progressBg{
      &amp;::before{
        opacity: 0;
      }
    }
  }
  &amp;.scene01{
    #progressWrap{
      .inner{
        .textAnimation{
          span{
            opacity:1;
            transform: translateY(0);
          }
        }
      }
    }
  }
  &amp;.scene02{
    #progressWrap{
      .inner{
        .textAnimation{
          span{
            color:$white;
            opacity:0;
            transform: translateY(-50px);
          }
        }
      }
    }
  }
  &amp;.scene03{
    #progressWrap{
      .bgArea{
        figure {
          /*filter: brightness(2) contrast(2) blur(10px);
          transform: scale(1.1);
        }
      }
    }
}
  &amp;.scene04{
    .sec-kv{
      .textAnimation{
         span{
          opacity:1;
          transform: translateY(0);
        }
      }
    }
  }  
}*/
#top {
  overflow-x: hidden;
}

.btnArea {
  margin-top: 30px;
  text-align: center;
}
.btnArea .btn {
  display: inline-block;
  text-align: center;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .btnArea .btn {
    width: 100%;
  }
}
.btnArea .btn a {
  display: block;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  color: #3C5D4E;
  font-size: 16px;
  border: 1px solid #3C5D4E;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .btnArea .btn a {
    font-size: 14px;
    width: 100%;
    background: #3C5D4E;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.btnArea .btn a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #3C5D4E;
  border-right: 1px solid #3C5D4E;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .btnArea .btn a::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    right: 10px;
  }
}
.btnArea .btn a::before {
  position: absolute;
  right: 20px;
  content: "";
  width: 11px;
  height: 1px;
  background: #3C5D4E;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .btnArea .btn a::before {
    background: #fff;
    right: 10px;
  }
}
.btnArea .btn a:hover {
  background: #3C5D4E;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btnArea .btn a:hover::after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.btnArea .btn a:hover::before {
  right: 10px;
  background: #fff;
}




/* planWrap
=================================== */
.planWrap {
  background: #EAEBE4;
  padding: 80px 0 100px;
  position: relative;
  border-radius: 20px 20px 0 0;
  z-index: 5;
  top: 20px;
}
@media only screen and (max-width: 1024px) {
  .planWrap {
    padding: 60px 0 80px;
  }
}
.planWrap .inner {
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .planWrap .inner {
    width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 1024px) {
  .planWrap .inner {
    width: calc(100% - 60px);
  }
}
.planWrap .midashi {
  margin-bottom: 40px;
}
.planWrap .midashi p {
  text-align: center;
  font-size: 30px;
}
@media only screen and (max-width: 1024px) {
  .planWrap .midashi p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .planWrap .midashi p {
    font-size: 20px;
  }
}
.planWrap .midashi p:first-child {
  margin-bottom: 20px;
}
.planWrap .midashi p:first-child span {
  padding: 0 20px 10px;
  border-bottom: solid 1px #3C5D4E;
}
.planWrap .midashi p.price strong {
  color: #5e0606;
  font-weight: normal;
  font-size: 180%;
}
.planWrap .midashi p small {
  font-size: 60%;
}
.planWrap .specBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .planWrap .specBox {
    display: block;
  }
}
.planWrap .name {
  font-size: 40px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .planWrap .name {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.planWrap .name strong {
  font-size: 130%;
  font-weight: normal;
}
.planWrap .name span {
  display: inline-block;
  color: #5e0606;
  font-size: 80%;
  line-height: 1em;
  margin-left: 10px;
}
.planWrap .spec {
  margin-left: 40px;
}
@media only screen and (max-width: 1024px) {
  .planWrap .spec {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .planWrap .spec {
    margin-left: 0;
  }
}
.planWrap .spec .s01 {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .planWrap .spec .s01 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.planWrap .spec .s01 strong {
  font-size: 130%;
  font-weight: normal;
}
.planWrap .spec .area {
  font-size: 16px;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .planWrap .spec .area {
    font-size: 13px;
  }
}
.planWrap .spec .area strong {
  font-size: 200%;
  font-weight: normal;
}
.planWrap .spec .area span {
  display: inline-block;
}
.planWrap .spec .area span:first-child {
  margin-right: 20px;
}
.planWrap .spec .area span:last-child strong {
  font-size: 130%;
}
.planWrap .madori {
  background: #fff;
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
}
.planWrap .madori .caption {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .planWrap .madori .caption {
    text-align: left;
  }
}
.planWrap .madori .caption .storage,
.planWrap .madori .caption .yukadan {
  display: inline-block;
  vertical-align: middle;
  background: #CED1C0;
  width: 12px;
  height: 12px;
  margin: 0 5px 0 0;
}
.planWrap .madori .caption .yukadan {
  background: #E3CFD3;
}

/* contentArea
 * ========================================================================== */
.contentArea {
  margin-top: -20px;
  position: relative;
  z-index: 5;
}



/* cvGuide
 * ========================================================================== */
.cvGuide {
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}
.cvGuide::before {
  content: "";
  -webkit-animation: shine 12s cubic-bezier(0.25, 0, 0.25, 1) infinite;
          animation: shine 12s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #fff;
  width: 200%;
  height: 100%;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  position: absolute;
  top: 0;
  left: -300%;
  opacity: 1;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  mix-blend-mode: overlay;
  z-index: 0;
}
.cvGuide::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .cvGuide::after {
    opacity: 1;
  }
}
.cvGuide:hover::after {
  opacity: 1;
}
.cvGuide:hover a .inner .txt-wrap .btn {
  background: #676450;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.cvGuide:hover a .inner .txt-wrap .btn::after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.cvGuide:hover a .inner .txt-wrap .btn::before {
  right: 10px;
  background: #fff;
}
.cvGuide:hover a .inner .txt-wrap .btn p {
  color: #fff;
}
.cvGuide a .inner {
  padding: 120px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 200px);
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .cvGuide a .inner {
    width: calc(100% - 120px);
    padding: 60px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .cvGuide a .inner {
    width: calc(100% - 60px);
  }
}
.cvGuide a .inner .ttl {
  margin-bottom: 40px;
}
.cvGuide a .inner .ttl h2 {
  width: 100%;
  font-size: 8.5vw;
  opacity: 0.2;
  line-height: 0.7;
  letter-spacing: 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .ttl h2 {
    font-size: 80px;
  }
}
.cvGuide a .inner .ttl p {
  font-size: 32px;
  margin-top: -32px;
}
@media only screen and (max-width: 1280px) {
  .cvGuide a .inner .ttl p {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .ttl p {
    font-size: 20px;
    margin-top: -20px;
  }
}
.cvGuide a .inner .txt-wrap {
  line-height: 2.2;
}
.cvGuide a .inner .txt-wrap .inner-text {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .txt-wrap .inner-text {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.cvGuide a .inner .txt-wrap .btn {
  display: inline-block;
  text-align: center;
  width: 300px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  color: #676450;
  font-size: 20px;
  border: 1px solid #676450;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .txt-wrap .btn {
    font-size: 14px;
    width: 100%;
    background: #676450;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.cvGuide a .inner .txt-wrap .btn::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #676450;
  border-right: 1px solid #676450;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .txt-wrap .btn::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}
.cvGuide a .inner .txt-wrap .btn::before {
  position: absolute;
  right: 20px;
  content: "";
  width: 11px;
  height: 1px;
  background: #676450;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .txt-wrap .btn::before {
    background: #fff;
  }
}
.cvGuide a .inner .txt-wrap .btn p {
  line-height: 1;
  color: #676450;
  -webkit-transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
  transition: 0.2s cubic-bezier(0.55, 0.06, 0.68, 0.19) 0s;
}
@media only screen and (max-width: 767px) {
  .cvGuide a .inner .txt-wrap .btn p {
    color: #fff;
  }
}
.cvGuide * {
  color: #fff;
}

@-webkit-keyframes shine {
  49% {
    left: -300%;
    opacity: 0;
  }
  50% {
    left: -300%;
    opacity: 0;
  }
  55% {
    left: -300%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}

@keyframes shine {
  49% {
    left: -300%;
    opacity: 0;
  }
  50% {
    left: -300%;
    opacity: 0;
  }
  55% {
    left: -300%;
    opacity: 1;
  }
  100% {
    left: -20%;
    opacity: 0;
  }
}


/* entryGuide
 * ========================================================================== */
.entryGuide {
  background-image: url("../imgs/pc/bg_conts_entry.jpg");
}
.entryGuide a .inner {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.entryGuide a .btn {
  background: rgba(255, 255, 255, 0.8);
  color: #3e0909;
  border: 1px solid #3e0909;
}
@media only screen and (max-width: 767px) {
  .entryGuide a .btn {
    background: #3e0909 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.entryGuide a .btn::after {
  border-top: 1px solid #3e0909;
  border-right: 1px solid #3e0909;
}
.entryGuide a .btn::before {
  background: #3e0909;
}
@media only screen and (max-width: 767px) {
  .entryGuide a .btn::before {
    background: #fff;
  }
}
.entryGuide a .btn p {
  color: #3e0909;
}
@media only screen and (max-width: 767px) {
  .entryGuide a .btn p {
    color: #fff;
  }
}
.entryGuide:hover a .inner .txt-wrap .btn {
  background: #3e0909;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.entryGuide:hover a .inner .txt-wrap .btn::after {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.entryGuide:hover a .inner .txt-wrap .btn::before {
  background: #fff;
}
.entryGuide:hover a .inner .txt-wrap .btn p {
  color: #fff;
}

/* campaign
 * ========================================================================== */
.campaign {
  margin: 0 auto;
  background-color: #000;
}
.campaign .note {
  color: #fff;
  margin-top: 20px;
  text-align: right;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .campaign {
    padding-bottom: 80px;
    padding-top: 40px;
    z-index: 5;
    position: relative;
    padding: 80px 30px 100px;
  }
}
@media screen and (max-width: 768px) {
  .campaign {
    padding-bottom: 40px;
    padding-top: 40px;
    /*width: 300px;*/
    z-index: 5;
    position: relative;
    padding: 60px 30px 80px;
  }
  .campaign .note {
    font-size: 10px;
  }
}
.campaign__heading {
  line-height: 1;
}
.campaign__heading span {
  color: #be9e73;
}

@media screen and (min-width: 768px) {
  .campaign__heading {
    text-align: center;
  }
}
.campaign__heading .en {
  color: #666666;
  font-family: "Cormorant Infant", serif;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 768px) {
  .campaign__heading .en {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .campaign__heading .en {
    font-size: 13px;
  }
}
.campaign__heading .jp {
  color: #333333;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding-right: 21px;
  position: relative;
}

.campaign__heading .jp:after {
  content: "＞";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0.6, 1);
  transform: scale(0.6, 1);
}

@media screen and (min-width: 768px) {
  .campaign__inner {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .campaign__inner {
    margin: 20px 0;
  }
  .campaign__inner::-webkit-scrollbar {
    display: none;
  }
}
.campaignGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .campaignGroup {
    /* padding: 0 20px; */
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100% !important;
  }
}
.campaignCard {
  position: relative;
}

.campaignCard__link.bnr01 {
  width: 100%;
  padding-top: 36.3636363636%;
  position: relative;
}
.campaignCard__link.bnr01 span {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.campaignCard__link.bnr01 span img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.campaignCard__link.bnr01 p {
  color: #fff;
  position: absolute;
  left: 5%;
}
.campaignCard__link.bnr01 p.en {
  line-height: 0.7;
  letter-spacing: 0;
  text-align: left;
  opacity: 0.3;
  z-index: 10;
}
.campaignCard__link.bnr01 p.ttl {
  z-index: 11;
}

@media screen and (min-width: 768px) {
  .campaignCard {
    margin: 0 auto;
    width: 32%;
  }
  .campaignCard__link.bnr01 p.en {
    font-size: 2.7vw;
    top: 30%;
  }
  .campaignCard__link.bnr01 p.ttl {
    font-size: 2vw;
    top: 40%;
  }
}
@media screen and (max-width: 768px) {
  .campaignCard {
    width: 100%;
  }
  .campaignCard:not(:last-child) {
    margin-bottom: 20px;
  }
  .campaignCard img {
    width: 100%;
  }
  .campaignCard__link.bnr01 p.en {
    font-size: 7vw;
    top: 30%;
  }
  .campaignCard__link.bnr01 p.ttl {
    font-size: 6vw;
    top: 40%;
  }
  /*.campaignCard:last-of-type {
    margin-right: 0;
  }*/
}
.campaignCard__link {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .campaignCard__link:hover {
    opacity: 0.7;
  }
}
.campaignCard--mod {
  width: 100%;
}

.campaignCard--mod:first-of-type {
  background: none;
}


/* news
 * ========================================================================== */
.news-bg {
  height: 100%;
  padding: 100px 0 40px ;
  background: #000;
  z-index: 6;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .news-bg {
    padding: 0;
  }
}



.news {
  width: calc(100% - 200px);
  margin: 0 auto;
  max-width: 840px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .news {
    width: calc(100% - 120px);
  }
}
@media only screen and (max-width: 767px) {
  .news {
    width: calc(100% - 60px);
  }
}
.news::before {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .news {
    padding-bottom: 40px;
    padding-top: 40px;
    width: 300px;
  }
}

.news__heading {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .news__heading {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .news__heading {
    padding: 0 37.5px;
  }
}

.news__heading .en {
  color: #be9e73;
  font-family: "Cormorant Infant", serif;
  letter-spacing: .09em;
}

@media screen and (min-width: 768px) {
  .news__heading .en {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .news__heading .en {
    font-size: 13px;
  }
}

.news__heading .jp {
  color: #ffffff;
  letter-spacing: .15em;
  position: relative;
}

@media screen and (min-width: 768px) {
  .news__heading .jp {
    bottom: 100%;
    display: none;
    font-size: 14px;
    padding-bottom: 10px;
    padding-right: 20px;
    position: absolute;
    right: -2px;
  }
}

@media screen and (max-width: 768px) {
  .news__heading .jp {
    font-size: 12px;
    padding-right: 21px;
  }
}

.news__heading .jp:after {
  content: '＞';
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scale(0.6, 1);
          transform: scale(0.6, 1);
}

.news__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .news__inner {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .news__inner {
    margin: 16px -40px 0;
    overflow: scroll;
    width: 100vw;
  }
  .news__inner::-webkit-scrollbar {
    display: none;
  }
}

.news--mod {
  pointer-events: none;
}

.news--mod .news__heading .jp {
  display: none;
}

.newsGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .newsGroup {
    margin: 0 0 0 auto;
    width: 700px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup {
    margin-top: 16px;
    padding: 0 37.5px;
  }
}

.newsGroup .noticeCard {
  position: relative;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard {
    -webkit-transition: .3s;
    transition: .3s;
    width: 100%;
  }
  .newsGroup .noticeCard:nth-of-type(n + 4) {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard {
    width: 100%;
  }
}

.newsGroup .noticeCard:before {
  background-color: rgba(204, 204, 204, 0.4);
  content: '';
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard:before {
    height: 1px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard:before {
    height: 1px;
  }
}

.newsGroup .noticeCard:last-of-type {
  margin-right: 0;
}

.newsGroup .noticeCard__link {
  color: #ffffff;
  display: block;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__link {
    padding: 20px 0;
  }
  .newsGroup .noticeCard__link:has(.statusIcon).is-active, .newsGroup .noticeCard__link:has(.statusIcon):hover {
    background-color: rgba(102, 102, 102, 0.5);
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__link {
    padding: 16px 0 20px;
  }
}

.newsGroup .noticeCard__link .statusIcon {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__link .statusIcon {
    height: 20px;
    width: 20px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__link .statusIcon {
    display: none;
  }
}

.newsGroup .noticeCard__link .statusIcon:before, .newsGroup .noticeCard__link .statusIcon:after {
  background-color: #ffffff;
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
}

.newsGroup .noticeCard__link .statusIcon:before {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
          transform: translate(-50%, -50%) scale(1, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__link .statusIcon:before {
    height: 100%;
    width: 1px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__link .statusIcon:before {
    height: 15px;
    width: 1px;
  }
}

.newsGroup .noticeCard__link .statusIcon:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__link .statusIcon:after {
    height: 1px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__link .statusIcon:after {
    height: 1px;
    width: 15px;
  }
}

.newsGroup .noticeCard__link.is-active .statusIcon:before {
  -webkit-transform: translate(-50%, -50%) scale(1, 0);
          transform: translate(-50%, -50%) scale(1, 0);
}

.newsGroup .noticeCard__body {
  max-height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition-duration: .8s;
          transition-duration: .8s;
}

.newsGroup .noticeCard__body.is-open {
  max-height: 1000px;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
          transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__inner {
    padding: 20px 100px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__inner {
    padding: 16px 10px 26px;
  }
}

.newsGroup .noticeCard__inner .txt {
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__inner .txt {
    font-size: 14px;
    width: 571px;
    line-height: 1.71429;
  }
  .newsGroup .noticeCard__inner .txt:before {
    content: '';
    margin-top: calc((1 - 1.71429) * .5em);
  }
  .newsGroup .noticeCard__inner .txt:after {
    margin-bottom: calc((1 - 1.71429) * .5em);
  }
  .newsGroup .noticeCard__inner .txt:before, .newsGroup .noticeCard__inner .txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__inner .txt {
    font-size: 11px;
    line-height: 1.90909;
  }
  .newsGroup .noticeCard__inner .txt:before {
    content: '';
    margin-top: calc((1 - 1.90909) * .5em);
  }
  .newsGroup .noticeCard__inner .txt:after {
    margin-bottom: calc((1 - 1.90909) * .5em);
  }
  .newsGroup .noticeCard__inner .txt:before, .newsGroup .noticeCard__inner .txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard__inner .txt + .btn-view {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard__inner .txt + .btn-view {
    margin-top: 25px;
  }
}

.newsGroup .noticeCard .btn-view {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #666666;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Cormorant Infant", serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard .btn-view {
    font-size: 14px;
    height: 30px;
    width: 221px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard .btn-view {
    font-size: 15px;
    height: 30px;
    width: 100%;
  }
}

.newsGroup .noticeCard .btn-view:after {
  content: '＞';
  font-family: "Shippori Mincho B1", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%) scale(0.6, 1);
          transform: translate(0, -50%) scale(0.6, 1);
}

.newsGroup .noticeCard--mod {
  width: 100%;
}

.newsGroup .noticeCard--mod:first-of-type {
  background: none;
}

.newsGroup .noticeCard--mod .newsCard__link {
  pointer-events: none;
}

.newsGroup .noticeCard--mod .newsDetail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.newsGroup .noticeCard--mod .newsDetail__desc {
  -webkit-line-clamp: unset;
  margin-top: 0;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .newsGroup .noticeCard--mod .newsDetail__desc {
    width: 531px;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .noticeCard--mod .newsDetail__desc {
    width: 220.5px;
  }
}

.newsGroup .newsDetail__term {
  color: #be9e73;
  font-family: "Cormorant Infant", serif;
  letter-spacing: .08em;
  line-height: .9;
}
.info_date {
  font-size: 12px;
  left: 0;
  color: #be9e73;
  font-family: "Cormorant Infant", serif;
  letter-spacing: .08em;
  line-height: .9;
}
@media screen and (min-width: 768px) {
  .newsGroup .newsDetail__term {
    font-size: 12px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .info_date {
    position: absolute;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .newsDetail__term {
    font-size: 13px;
  }
  .info_date {
    font-size: 13px;
  }
}

.info_ttl{
margin-bottom: 10px;
}
.info_text{
margin-bottom: 10px;
}
.d_small{
font-size: 12px;
margin: 8px 0;
}

.d_small:last-child{
margin-bottom: 0;
}
.newsGroup .newsDetail__desc {
  -webkit-box-orient: vertical;
  color: #ffffff;
  display: -webkit-box;
  letter-spacing: .15em;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .newsGroup .newsDetail__desc {
    font-size: 14px;
    -webkit-line-clamp: 1;
    margin-left: 100px;
    width: 540px;
  }
  .newsDetail:first-child .newsDetail__desc{
    -webkit-line-clamp:unset;
  }
}

@media screen and (max-width: 768px) {
  .newsGroup .newsDetail__desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
    margin-top: 10px;
    line-height: 1.5;
  }
  .newsGroup .newsDetail__desc:before {
    content: '';
    margin-top: calc((1 - 1.5) * .5em);
  }
  .newsGroup .newsDetail__desc:after {
    margin-bottom: calc((1 - 1.5) * .5em);
  }
  .newsGroup .newsDetail__desc:before, .newsGroup .newsDetail__desc:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
  }
  .d_small{
    font-size: 10px;
    margin: 8px 0;
    }
  .accordion p{
    font-size: 11px;
  }
  .accordion .content .newsDetail__desc{
    margin-top: 20px;
  }
}

.newsCorrection{
  /*border: 1px solid #fff;*/
  padding: 20px;
  margin-top: 20px;
}

.newsCorrection p{
  color: #fff;
  text-align: center;
}

.newsCorrection p.correctionHead{
  font-size: 16px;
  letter-spacing: .1429em;
}

.newsCorrection p.correctionText{
  font-size: 14px;
  margin-top: 15px;
  letter-spacing: .1429em;
  line-height: 1.71429;
}
@media screen and (max-width: 768px) {
  .newsCorrection{
    padding: 20px 0;
    margin-top: 20px;
  }
  .newsCorrection p.correctionText{
    font-size: 12px;
  }
}

.infoMenu {
  background-color: #ffffff;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  z-index: 9999;
}

@media screen and (min-width: 768px) {
  .infoMenu {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu {
    width: 350px;
  }
}
.infoMenu__back {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: absolute;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .infoMenu__back {
    height: 50px;
    left: 0;
    top: 40px;
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu__back {
    height: 40px;
    left: 27.5px;
    top: 25px;
    width: 40px;
  }
}
.infoMenu__back:before {
  content: "＜";
  line-height: 1;
  -webkit-transform: scale(0.6, 1);
  transform: scale(0.6, 1);
  -webkit-transform-origin: center;
  transform-origin: center;
}

@media screen and (min-width: 768px) {
  .infoMenu__back:before {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu__back:before {
    font-size: 20px;
  }
}
.infoMenu__inner {
  height: 100%;
  overflow: scroll;
}

.infoMenu__inner::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 768px) {
  .infoMenu__inner {
    margin: 0 auto;
    padding-bottom: 120px;
    padding-top: 120px;
    position: relative;
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu__inner {
    padding: 112.5px 27.5px;
  }
}
.infoMenu__heading {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .infoMenu__heading {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu__heading {
    margin-bottom: 60px;
  }
}
.infoMenu__heading .en {
  color: #666666;
  display: block;
  letter-spacing: 0.08em;
  line-height: 0.75;
}

@media screen and (min-width: 768px) {
  .infoMenu__heading .en {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu__heading .en {
    font-size: 13px;
  }
}
.infoMenu__heading .jp {
  color: #333333;
  display: block;
  letter-spacing: 0.15em;
  line-height: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .infoMenu__heading .jp {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .infoMenu__heading .jp {
    font-size: 17px;
    margin-top: 15px;
  }
}
.infoMenu {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

@media screen and (min-width: 768px) {
  .infoMenu {
    opacity: 0;
  }
}
.infoMenu.is-visible {
  -webkit-box-shadow: 0 0 40px 0 rgba(8, 1, 3, 0.4);
  box-shadow: 0 0 40px 0 rgba(8, 1, 3, 0.4);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

@media screen and (min-width: 768px) {
  .infoMenu.is-visible {
    opacity: 1;
  }
}
.infoGroup .noticeCard__link {
  display: block;
  position: relative;
}

.infoGroup .noticeCard__link.is-active {
  background-color: #f6f6f6;
}

.infoGroup .noticeCard__link.is-active .statusIcon:before {
  -webkit-transform: translate(-50%, -50%) scale(1, 0);
  transform: translate(-50%, -50%) scale(1, 0);
}

.infoGroup .noticeCard .newsDetail {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .newsDetail {
    padding: 10px;
    text-align: left;
  }
  .infoGroup .noticeCard .newsDetail:hover {
    background-color: #f6f6f6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .newsDetail {
    padding: 12.5px 10px 12.5px 20px;
    -webkit-transition: 1.8s;
    transition: 1.8s;
  }
}
.infoGroup .noticeCard .newsDetail:before {
  background-color: #cccccc;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .newsDetail:before {
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .newsDetail:before {
    height: 1px;
  }
}
@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .newsDetail__term {
    font-size: 12px;
    left: 0;
    letter-spacing: 0.12em;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .newsDetail__term {
    display: none;
  }
}
.infoGroup .noticeCard .newsDetail__desc {
  letter-spacing: 0.12em;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .newsDetail__desc {
    font-size: 14px;
    padding-left: 90px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .newsDetail__desc {
    font-size: 12px;
    width: 200px;
    line-height: 1.5;
  }
  .infoGroup .noticeCard .newsDetail__desc:before {
    content: "";
    margin-top: -0.25em;
  }
  .infoGroup .noticeCard .newsDetail__desc:after {
    margin-bottom: -0.25em;
  }
  .infoGroup .noticeCard .newsDetail__desc:before, .infoGroup .noticeCard .newsDetail__desc:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
}
.infoGroup .noticeCard .statusIcon {
  border: 1px solid #cccccc;
  border-radius: 50%;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(-180deg);
  transform: translate(0, -50%) rotate(-180deg);
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .statusIcon {
    height: 50px;
    width: 50px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .statusIcon {
    height: 40px;
    width: 40px;
  }
}
.infoGroup .noticeCard .statusIcon:before, .infoGroup .noticeCard .statusIcon:after {
  background-color: #333333;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
}

.infoGroup .noticeCard .statusIcon:before {
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
  transform: translate(-50%, -50%) scale(1, 1);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .statusIcon:before {
    height: 20px;
    width: 1px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .statusIcon:before {
    height: 15px;
    width: 1px;
  }
}
.infoGroup .noticeCard .statusIcon:after {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .statusIcon:after {
    height: 1px;
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .statusIcon:after {
    height: 1px;
    width: 15px;
  }
}
.infoGroup .noticeCard__body {
  max-height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.infoGroup .noticeCard__body.is-open {
  max-height: 1000px;
  -webkit-transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
  transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard__inner {
    padding: 20px 100px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard__inner {
    padding: 16px 10px 26px;
  }
}
.infoGroup .noticeCard__inner .txt .underline {
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard__inner .txt {
    font-size: 14px;
    width: 571px;
    line-height: 1.71429;
  }
  .infoGroup .noticeCard__inner .txt:before {
    content: "";
    margin-top: -0.357145em;
  }
  .infoGroup .noticeCard__inner .txt:after {
    margin-bottom: -0.357145em;
  }
  .infoGroup .noticeCard__inner .txt:before, .infoGroup .noticeCard__inner .txt:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard__inner .txt {
    font-size: 11px;
    line-height: 1.90909;
  }
  .infoGroup .noticeCard__inner .txt:before {
    content: "";
    margin-top: -0.454545em;
  }
  .infoGroup .noticeCard__inner .txt:after {
    margin-bottom: -0.454545em;
  }
  .infoGroup .noticeCard__inner .txt:before, .infoGroup .noticeCard__inner .txt:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
}
@media screen and (min-width: 768px) {
  .infoGroup .noticeCard__inner .txt + .btn-view {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard__inner .txt + .btn-view {
    margin-top: 25px;
  }
}
.infoGroup .noticeCard .btn-view {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: #666666;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .infoGroup .noticeCard .btn-view {
    font-size: 14px;
    height: 30px;
    width: 221px;
  }
}
@media screen and (max-width: 768px) {
  .infoGroup .noticeCard .btn-view {
    font-size: 15px;
    height: 30px;
    width: 100%;
  }
}
.infoGroup .noticeCard .btn-view:after {
  content: "＞";
  font-family: "YakuHanMP", "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%) scale(0.6, 1);
  transform: translate(0, -50%) scale(0.6, 1);
}

.bottomArea {
  position: relative;
  z-index: 5;
  background: #fff;
}

.pageDirection {
  position: relative;
  z-index: 5;
}

.footer {
  position: relative;
  z-index: 5;
}

.footer-corporateArea {
  position: relative;
  z-index: 5;
  background: #fff;
}

/* .accordion {
  margin: 3em auto;
  max-width: 60vw;
  } */
.accordion .toggle {
  display: none;
  }
.accordion .option {
  position: relative;
  }
.accordion .title,
  .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  }
.accordion .title {
  display: block;
  }
.accordion .title::after, .title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    bottom: 0%;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
}
.accordion .title::after {
  transform: rotate(90deg);
  }
.accordion .content {
  max-height: 0;
  overflow: hidden;
  }
  .accordion .newsDetail__desc {
    -webkit-line-clamp: unset;
}

.accordion .toggle:checked + .title + .content {
  max-height: 1000px;
  transition: all 1.5s;
  }
.accordion .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
  }
  

/* ================================================== */

.inner {
  width: calc(100% - 200px);
  margin: 0 auto;
}

@media only screen and (max-width:1024px) {
  .inner {
    width: calc(100% - 100px);
  }
}

@media only screen and (max-width:768px) {
  .inner {
    width: calc(100% - 40px);
  }
}

figure {
  position: relative;
}
.right_title_l {
  color: #de7d7d;
  max-width: 1452px;
  margin-inline: auto;
  margin-bottom: 40px;
  font-size: 52px;
  letter-spacing: 0.1em;
  font-family: 'EB Garamond', serif;
}
.left_title_l {
  margin-bottom: 40px;
  font-size: 52px;
  letter-spacing: 0.1em;
  font-family: 'EB Garamond', serif;
}
.contents_lead {
  font-size: 24px;
  letter-spacing: 0.27em;
  line-height: 1.7;
}
.contents_lead .gold {
  font-size: 28px;
  color: #a49753;
}
.contents_lead.white {
  color: #de7d7d;
}
.contents_text {
  font-size: 16px;
  letter-spacing: 0.23em;
  line-height: 2.2;
}
.contents_text.white {
  color: #de7d7d;
}

@media only screen and (max-width:768px) {
  .right_title_l,
  .left_title_l {
    text-align: left;
    margin-bottom: 20px;
    font-size: 50px;
  }
  .contents_lead {
    font-size: 16px;
    letter-spacing: 0.2em;
    line-height: 1.7;
  }
  .contents_lead .gold {
    font-size: 22px;
  }
  .contents_text {
    font-size: 13px;
    letter-spacing: 0.2em;
    line-height: 2;
  }
}

/* banner_area
============================= */
.banner_area {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.banner_area.lifestyle_banner {
  margin-top: 20px;
  grid-area: 2 / 1 / 3 / 3;
}
.banner_wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
}
.banner_item {
  position: relative;
  display: block;
  width: 100%;
  height: 300px;
  max-width: 1600px;
  margin: auto;
  overflow: hidden;
}
.banner_area.lifestyle_banner .banner_item{
  max-width: 100%;
}
.banner_item::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all .5s ease-out;
}
.banner_item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(24, 36, 62);
  opacity: .6;
  z-index: 2;
  transition: all .5s ease-out;
}
.banner_item_body {
  position: absolute;
  width: calc(100% - 20px);
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.banner_title_img {
  width: 50px;
  margin-bottom: 10px;
}
.banner_title_en {
  position: relative;
  font-family: 'EB Garamond', serif;
  font-size: 23px;
  letter-spacing: 0.07em;
  padding-bottom: 23px;
  margin-bottom: 23px;
  text-align: center;
  color: #fff;
}
.banner_title_en::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, .5);
}
.banner_title {
  font-size: 36px;
  letter-spacing: 0.3em;
  text-align: center;
  color: #fff;
}
.banner_arrow {
  width: 40px;
  display: block;
  margin: 26px auto 0;
  transition: all .5s ease-out;
}
.banner_item:hover::after {
  transform:scale(1.05);
}
.banner_item:hover::before {
  opacity: .8;
}
.banner_item:hover .banner_arrow {
  transform: translateX(20px);
}

@media only screen and (max-width:768px) {
  .banner_area {
    margin-top: 60px;
    row-gap: 60px;
  }
  .banner_area.lifestyle_banner {
    margin-top: 60px;
    grid-area: auto;
  }
  .banner_wrap {
    grid-template-columns: repeat(1,1fr);
  }
  .banner_title_img {
    width: 40px;
    margin-bottom: 10px;
  }
  .banner_title_en {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .banner_title {
    font-size: 20px;
    letter-spacing: 0.2em;
  }
  .banner_arrow {
    width: 43px;
    margin: 20px auto 0;
  }
}


/* mainVisual
============================= */
/* mainVisual
============================= */
.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面全体をカバー */
  overflow: hidden;
}

@media only screen and (min-width:1441px) {
  .mainVisual {
    position: relative;
    width: 100%;
    height: 80vh; 
    height: 1200px;
    overflow: hidden;
  }
}

.mv01, .mv02,.mv03, .mv_main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv01 picture, 
.mv02 picture, 
.mv03 picture {
	display: block;
	position: absolute;
	width: 100%;
	height: calc(100vh + 80px);
	left: 0;
	top: 0;
}
@media only screen and (min-width:1441px) {
	.mv01 picture, 
	.mv02 picture, 
	.mv03 picture {
  		height: calc(1200px + 80px);
	}
}
.mv01 img, .mv02 img, .mv03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.mv_main img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center bottom;
}
@media only screen and (min-width:1441px) {
	.mv_main img {
	  height: 1200px;
	}
}

.mv01_plot,
.mv01_line,
.mv01_hikari {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
}
.mv01_plot {
	opacity: 0;
	height: 100vh;
}
@media only screen and (min-width:1441px) {
	.mv01_plot {
	  height: 1200px;
	}
}
.mv01_plot picture,
.mv01_line picture,
.mv01_hikari picture {
	height: calc(100vh + 80px);
	z-index: 1;
}
@media only screen and (min-width:1441px) {
	.mv01_plot picture,
	.mv01_line picture,
	.mv01_hikari picture {
		height: calc(1200px + 80px);
	}
}
.mv01_hikari,
.mv01_hikari picture {
	top: auto;
	bottom: 0;
}


.mv_title{
/* .mv_title .js-word{ */
position: absolute;
top: 39%;
right: 9%;
  text-align: center;
  font-size: 110px;
  font-size: clamp(3.5rem, 0.984rem + 4.909vi, 6.875rem);
  letter-spacing: 0.15em;
  line-height: 0.7;
  font-family: 'EB Garamond', serif;
  color: #fff;
}
.mv_title .js-word{
  opacity: 0;
  display: inline-block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  /* -webkit-mask-size: 100% 0%; */
  -webkit-mask-size: 100% 200%;
  /* mask-size: 100% 0%; */
  mask-size: 100% 200%;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  padding-bottom: 0.1rem;
/*
  transition: opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
*/
}
/* .my_title .mv_title_jp{
  display: block;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat; */
/*
  transition: opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
*/
/* } */
.mv_title.is-active {
  transition: opacity 1s ease-in, transform 12s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 12s;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 12s, -webkit-mask 1s ease-in;
  opacity: 1;
  -webkit-mask-size: 100% 1000%;
          mask-size: 100% 1000%;
}

.mv_top_title_wrap {
  position: absolute;
  width: 90%;
/*
  top: 60px;
*/
  /* top: 260px; */
  top: 15vw;
  left: 50%;
  transform: translate(-50%,-50%);
  /* z-index: 98; */
  z-index: 10;
}

.mv_title_01 {
/*
  position: relative;
*/
  position: absolute;
  top: 0;
  width: 100%;

  color: #fff;
  text-align: center;
  /* font-size: 36px; */
  font-size: max(2.45vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  padding-bottom: 20px;
  /* z-index: 999; */

  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

/*
  transition: opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
*/
  text-shadow:1px 1px 5px rgba(0,0,0,0.1), -1px -1px 5px rgba(0,0,0,0.1),
              -1px 1px 5px rgba(0,0,0,0.1), 1px -1px 5px rgba(0,0,0,0.1),
              0px 1px 5px rgba(0,0,0,0.1),  0-1px 5px rgba(0,0,0,0.1),
              -1px 0 5px rgba(0,0,0,0.1), 1px 0 5px rgba(0,0,0,0.1);
}
.mv_title_01.is-active {
/*
  transition: opacity 1s ease-in, transform 2s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 2s;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 2s, -webkit-mask 1s ease-in;
  opacity: 1;
  -webkit-mask-size: 100% 0%;
          mask-size: 100% 0%;
  transition-delay: 0 !important;
*/
  transition: opacity 1s ease-in, transform 12s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 12s;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 12s, -webkit-mask 1s ease-in;
  opacity: 1;
  -webkit-mask-size: 100% 1000%;
          mask-size: 100% 1000%;
}
.mv_title_01 .txt {
  display: inline-block;
  position: relative;
  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.4) 25%, rgba(0,0,0,.4) 75%, rgba(0,0,0,0) 100%);
  padding-block: 10px;
}
.mv_title_01 .txt::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
/*
  width: 40vw;
  height: 2px;
*/
  width: 0;
  height: 1px;
  background-color: #fff;
/*
  transition: width 1s;
*/
  transition: width 1s 0.45s ease-in-out, opacity 0.5s;
  z-index: 999;
}
.mv_title_01 .txt .line {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #fff;
}
.mv_title_01.is-active span::before {
  width: 40vw;
  width: 100%;
  opacity: 1;
}
.mv_top_title_wrap .mv02_title {
  margin-top: 8vw;
}
.mv_top_title_wrap .mv03_title {
  margin-top: 5vw;
}

.mv_title_jp {
  display: block;
  font-size: 28px;
  font-size: clamp(1.25rem, 0.877rem + 0.727vi, 1.75rem);
  margin-top: 30px;
  letter-spacing: 0.23em;
  padding-bottom: 0.1em;
  padding-top: 0.1em;

    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  /*
    transition: opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
    transition: mask 1s ease-in, opacity 3s ease-in, transform 1s;
    transition: mask 1s ease-in, opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
  */

}
.mv_lead {
  position: absolute;
  /* top: 50%; */
  top: max(335px, 50%) !important;
  right: 10%;
  font-size: 26px;
  font-size: clamp(1rem, 0.534rem + 0.909vi, 1.625rem);
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
/*
  transition: opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s;
  transition: mask 1s ease-in, opacity 3s ease-in, transform 1s, -webkit-mask 1s ease-in;
*/
}
.mv_lead.is-active {
  transition: opacity 1s ease-in, transform 12s, -webkit-mask 1s ease-in;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 12s;
  transition: mask 1s ease-in, opacity 1s ease-in, transform 12s, -webkit-mask 1s ease-in;
  opacity: 1;
  -webkit-mask-size: 100% 1000%;
          mask-size: 100% 1000%;

}

.mv_lead .mv_lead_l {
  font-size: 38px;
  font-size: clamp(1.25rem, -0.238rem + 2.903vi, 2.375rem);
}
.mv_lead .mv_lead_num {
  /* color: #be9e73; */
  /* color: #0000cd; */
  /* color:#191970; */
  font-size: 54px;
  /* font-size: clamp(2rem, 0.181rem + 3.548vi, 3.375rem); */
  font-size: clamp(2rem, 0.181rem + 5.548vi, 5.375rem);
  font-family: 'EB Garamond', serif;

  display: inline-block;
  transform: scale(3.0);
  /* transition: 1s 0.3s ease-in-out; */
}
.mv_lead.is-active .mv_lead_num {
  transform: scale(1.0);
}
.mv_lead .mv_lead_s {
  display: block;
  font-size: 24px;
  font-size: clamp(0.875rem, 0.409rem + 0.909vi, 1.5rem);
}
.ctrlbtn {
  /* top: 150px;
  left: 30px; */
  top: 80px;
  right: 20px;
  position: absolute;
  z-index: 11;
}
.ctrlbtn div {
/*
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 42px;
*/
  width: 100px;
  height: 30px;
  position: static;
  cursor: pointer;
}
.ctrlbtn div:after {
  position: absolute;
  content: "";
  width: 6%;
  aspect-ratio: 1 / 1;
  background-color: #707070;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.ctrlbtn div span {
  display: flex;
  justify-content: center;
  align-items: center;
/*
  text-align: center;
  width: 100%;
  height: 100%;
  width: 150px;
  height: 42px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #707070;
  font-family: "EB Garamond";
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  padding: 0px 0 0 3%;
  transition: background 0.3s ease-in-out;
*/
  width: 100px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #707070;
  font-family: "EB Garamond";
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
@media  screen and (max-width:768px) {
  .mv_title_wrap {
    position: absolute;
    width: 100%;
    top: 13%;
    left: 50%;
    transform: translateX(-50%) !important;
  }
  .mv_title {
    position: static;
    width: 100%;
    font-size: 42px;
  }
  .mv_title_01 {
    top: 80px;
    font-size: 20px;
  }
  .mv_title_jp {
    font-size: 16px;
    margin-top: 14px;
  }
  .mv_lead {
    width: 100%;
    text-align: center;
    position: static;
    font-size: 15px;
  }
  .mv_lead .mv_lead_l {
    font-size: 20px;
  }
  .mv_lead .mv_lead_num {
    /* font-size: 26px; */
    font-size: 46px;
  }
  .mv_lead .mv_lead_s {
    margin-top: -4px;
    font-size: 13px;
  }
  .mv_top_title_wrap {
    top: 15vh;
  }
}


/* top_area
============================= */
.top_area {
  background: url(../imgs/main_bg3.jpg) no-repeat center center / cover;
}
.top_area_wrap {
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
}
.top_area_item {
  padding: 60px 0px;
  position: relative;
  border-left: #fff;
  padding-inline: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_area_item::before {
  content: '';
  position: absolute;
  background-color: #181d33d9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.top_area_item01 {
  background: url(../imgs/top_area_item01.jpg) no-repeat center center / cover;
}
.top_area_item02 {
  background: url(../imgs/top_area_item02.jpg) no-repeat center center / cover;
}
.top_area_item03 {
  background: url(../imgs/top_area_item03.jpg) no-repeat center center / cover;
}

/* .top_area_item:not(:nth-child(1)):before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 110px;
  background-color: rgba(255, 255, 255, .6);
} */
.top_area_item + .top_area_item {
  /* padding-left: 60px;
  padding-left: clamp(1.25rem, -2.056rem + 6.452vw, 3.75rem);
  margin-left: 60px;
  margin-left: clamp(1.25rem, -2.056rem + 6.452vw, 3.75rem); */
}
.top_lead {
  position: relative;
  color: #fff;
  font-size: 22px;
  font-size: clamp(0.875rem, 0.214rem + 1.29vw, 1.375rem);
  letter-spacing: 0.1em;
}
.top_lead .top_lead_s {
  font-size: 18px;
  font-size: clamp(0.813rem, 0.399rem + 0.806vw, 1.125rem);
  margin-top: 20px;
  display: block;
}
.top_lead .top_lead_m {
  font-size: 28px;
  font-size: clamp(1.125rem, 0.298rem + 1.613vw, 1.75rem);
  display: block;
}
.top_lead .top_lead_l {
  font-size: 52px;
  font-size: clamp(2rem, 0.347rem + 3.226vw, 3.25rem);
  display: block;
}
.top_lead .num {
  color: #fff;
  font-size: 54px;
  font-size: clamp(2.25rem, 0.762rem + 2.903vw, 3.375rem);
  line-height: .8;
}

@media only screen and (max-width:768px) {
  .top_area {
    padding: 0px;
  }
  .top_area_wrap {
    grid-template-columns: repeat(1,1fr);
  }
  .top_area_item {
    padding: 30px 10px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .top_lead {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
  .top_lead .top_lead_s {
    font-size: 14px;
    margin-top: 20px;
  }
  .top_lead .top_lead_m {
    font-size: 20px;
  }
  .top_lead .top_lead_l {
    font-size: 38px;
  }
  .top_lead .num {
    font-size: 46px;
  }
}
/* topic_area
============================= */
.topic_area {
  background-color: #feeee13b;
  padding-inline: 20px;
  padding-top: 80px;
}
.topic_area + .topic_area {
  padding-top: 60px;
  padding-bottom: 80px;
}
.t_wrap{
  background: #fff;
  max-width: 940px;
  margin: 0 auto;
  padding: 5px;
  box-shadow: 0px 0px 15px -5px #777777;
}
.t_wrap.t_wrap_l {
  max-width: 1400px;
}
.topic{
  border: 1px solid #C3A775;
  padding: 40px 20px;
}
.t_ttl{
  color: #C3A775;
  font-size: 15px;
  text-align: center;
  margin-bottom: 40px;
}
.topic_contents + .topic_contents {
  margin-top: 60px;
}
.topic_contents_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.topic h2{
  text-align: center;
  font-size: 30px;
  margin-bottom: 8px;
  letter-spacing: 5px;
}
.t_ttl_lead {
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.topic_item {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-top: 30px;
  padding-inline: 40px;
  margin-inline: auto;
}
.topic_item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: rgba(51, 51, 51, .5);
  background-color: #C3A775;
}
.topic_item:last-child:after {
  content: none;
}

.topic_item_label {
  content: "";
  font-size: 12px;
  line-height: 1;
  color: #fff;
  padding: 6px 14px;
  background: #C3A775;
  position: absolute;
  top: 0;
  right: 40px;
}

.topic_item.new::before {
  content: "NEW";
  font-size: 11px;
  line-height: 1;
  color: #fff;
  padding: 4px 14px;
  background: #b60000;
  position: absolute;
  top: 0;
  left: 0;
}

.t_ttl_lead .num {
  color: #C3A775;
  font-size: 42px;
}
.t_ttl_lead .text_m {
  font-size: 80%;
}
.t_ttl_lead .text_s {
  font-size: 60%;
}
.t_ttl_text{
  text-align: center;
  font-size: 10px;
  margin-bottom: 20px;
}
.topic_item_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.t_btn_wrap{
  width: 100%;
  margin: 0 auto;
  border: 1px solid #C3A775;
  padding: 14px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: #C3A775;
  text-align: center;
  display: block;
  transition: all .3s;
}
.topic_item_cap {
  font-size: 16px;
  text-align: center;
  margin-top: 18px;
}
.t_arrow{
    right: 5px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all .3s;
}
.t_btn_wrap:hover{
  opacity: .6;
}
.t_btn_wrap:hover .t_arrow{
  right: 0;
}
@media only screen and (max-width:768px) {
  .topic_area {
    padding-top: 40px;
  }
  .topic_area + .topic_area {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .topic_contents_wrap {
    margin-top: 30px;
    flex-direction: column;
    row-gap: 30px;
  }
  .topic h2 {
    font-size: 22px;
    line-height: 1.5;
  }
.t_ttl_lead {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.topic_item {
  padding-top: 24px;
  padding-bottom: 0px;
  padding-inline: 0px;
}
.topic_item::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: -30px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
}
.topic_item.new::before {
  font-size: 10px;
}
.t_ttl_lead .num {
  font-size: 30px;
}
.t_ttl_lead .text_m {
  font-size: 18px;
}
.topic {
  padding:30px 20px;
}
.t_ttl {
  margin-bottom: 20px;
}
.t_ttl_text {
  margin-bottom: 16px;
  letter-spacing: -0.7px;
}
.topic_item_wrap {
  flex-direction: column;
  row-gap: 12px;
}
.t_btn_wrap{
  max-width: 400px;
  margin-inline: auto;
  padding: 10px;
  font-size: 15px;
}
.topic_item_cap {
  font-size: 14px;
  margin-top: 12px;
}
.topic_item_label {
  padding: 4px 12px;
  font-size: 11px;
  right: 0px;
}
}

.m_info_wrap{
  position: absolute;
  display: block;
  z-index: 9;
  bottom: 0;
  left: 0;
}
.m_info{
  position: relative;
  text-align: center;
  transition: all .3s;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px 10px 40px;
  display: block;
  background-color: #333333;
  font-size: 14px;
}
.m_info_logo{
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2%;
  top: 23%;
}
.m_info:hover{
  opacity: .8;
}
@media only screen and (max-width:768px) {
  .m_info_wrap {
    position: static;
}
  .m_info{
    font-size: 12px;
  }
}
/* concept_area
============================= */
.concept_area {
  padding: 160px 10px;
  background: url(../imgs/concept_bg.jpg) no-repeat center center / cover;
}
.concept_wrap {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  column-gap: 180px;
}
.concept_wrap_title {
  width: 170px;
  flex-shrink: 0;
}
.concept_title {
  font-size: 26px;
  letter-spacing: 0.22em;
  font-family: 'EB Garamond', serif;
}
.concept_title_l {
  font-size: 110px;
  font-size: clamp(3.5rem, 0.984rem + 4.909vi, 6.875rem);
  letter-spacing: 0.15em;
  line-height: 0.7;
  font-family: 'EB Garamond', serif;
}
.concept_title_jp {
  display: block;
  font-size: 28px;
  font-size: clamp(1.25rem, 0.877rem + 0.727vi, 1.75rem);
  margin-top: 30px;
  letter-spacing: 0.23em;
}
.concept_wrap_text {
  display: block;
  font-size: 18px;
  line-height: 2.2;
  margin-top: 80px;
  letter-spacing: 0.16em;
}

@media only screen and (max-width:768px) {
  .concept_area {
    padding: 100px 0;
    background: url(../imgs/concept_bg.jpg) no-repeat center center / cover;
  }
  .concept_wrap {
    flex-direction: column;
    row-gap: 60px;
  }
  .concept_title {
    font-size: 18px;
  }
  .concept_title_l {
    font-size: 60px;
  }
  .concept_title_jp {
    font-size: 20px;
    margin-top: 30px;
  }
  .concept_wrap_text {
    font-size: 16px;
    line-height: 2;
    margin-top: 50px;
    letter-spacing: 0.1em;
  }
}


/* position_area
============================= */
.position_area {
  overflow: hidden;
  padding: 100px 0 200px;
  background: url(../imgs/main_bg2.jpg) no-repeat center center / cover;
}
.position_wrap {
  max-width: 1452px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  column-gap: 60px;
}
.position_item {
  width: 50%;
}
.position_item:nth-child(2) {
  width: 42.6%;
}
.position_item .contents_lead {
  margin-top: 110px;
}
.position_item .contents_text {
  margin-top: 36px;
}
.position_banner .banner_item::after {
  background-image: url(../imgs/banner_position.jpg);
}
.location_banner .banner_item::after {
  background-image: url(../imgs/banner_location.jpg);
}
.lifestyle_banner .banner_item::after {
  background-image: url(../imgs/banner_lifestyle.jpg);
  background-position: 33% 50%;
}

@media only screen and (max-width:768px) {
  .position_area {
    padding: 100px 0;
  }
  .position_wrap {
    flex-direction: column;
  }
  .position_item {
    display: contents;
  }
  .position_img01 {
    width: 80%;
    margin-right: auto;
    margin-left: calc(50% - 50vw);
  }
  .position_img01 .img-caps {
    right: auto;
    left: 0;
  }
  .position_img02 {
    width: 48%;
    margin-top: -100px;
    margin-left: auto;
  }
  .position_item_body {
    order: 1;
  }

  .position_item .contents_lead {
    margin-top: 40px;
  }
  .position_item .contents_text {
    margin-top: 36px;
  }
  .position_banner .banner_item::after {
    background-image: url(../imgs/banner_position.jpg);
  }
}

/* access_area
============================= */
.access_area {
  padding: 160px 10px;
  background: url(../imgs/contents_bg.jpg) no-repeat center center / cover;
}
.access_wrap {
  margin: auto;
  display: flex;
  column-gap: 80px;
}
.access_wrap_item {
  width: 40%;
  flex-shrink: 0;
}
.access_wrap_item .contents_text {
  margin-top: 40px;
}
.access_wrap_img {
	position: relative;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
.access_wrap_img .access_img01_plot,
.access_wrap_img .access_img01_line,
.access_wrap_img .access_img01_hikari {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: 1s all ease-in-out;
}
.access_wrap_img .access_img01_plot {
	transition-delay: .7s;
}
.access_wrap_img .access_img01_line {
	height: 0;
	overflow: hidden;
	transition-duration: 2.0s;
	transition-delay: .3s;
}
.access_wrap_img .access_img01_hikari {
	top: auto;
	bottom: 0;
	height: 0;
	overflow: hidden;
	transition-duration: 2.0s;
}
.access_wrap_img .access_img01_hikari img {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.access_wrap_img .is-js + .access_img01_plot {
	opacity: 1;
}
.access_wrap_img .is-js + .access_img01_plot + .access_img01_line {
	opacity: 1;
	height: 100%;
}
.access_wrap_img .is-js + .access_img01_plot + .access_img01_line + .access_img01_hikari {
	opacity: 1;
	height: 100%;
}

.access_banner .banner_item::after {
  background-image: url(../imgs/banner_access.jpg);
}


@media only screen and (max-width:768px) {
  .access_area {
    padding: 100px 0;
    background: url(../imgs/contents_bg.jpg) no-repeat center center / cover;
  }
  .access_wrap {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .access_wrap_item {
    width: 100%;
    flex-shrink: 1;
  }
  .access_wrap_item .contents_text {
    margin-top: 20px;
  }
}

/* design_area
============================= */
.design_area {
  padding: 160px 10px;
  background: url(../imgs/main_bg2.jpg) no-repeat center center / cover;
}
.design_wrap {
  margin: auto;
  display: flex;
  flex-direction: row-reverse;
  column-gap: 80px;
}
.design_wrap_item {
  width: 40%;
  flex-shrink: 0;
}
.design_wrap_item .contents_text {
  margin-top: 40px;
}
.design_wrap_img {
  margin-right: auto;
  margin-left: calc(50% - 50vw);
}
.design_banner .banner_item::after {
  background-image: url(../imgs/banner_design.jpg);
}
.design_banner .banner_item.banner_item02::after {
  background-image: url(../imgs/banner_design02.jpg);
}

@media only screen and (max-width:768px) {
  .design_area {
    padding: 100px 0;
  }
  .design_wrap {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .design_wrap_item {
    width: 100%;
    flex-shrink: 1;
  }
  .design_wrap_item .contents_text {
    margin-top: 20px;
  }
}

/* plan_area
============================= */
.plan_area {
  padding: 160px 10px;
  background: url(../imgs/contents_bg.jpg) no-repeat center center / cover;
}
.plan_wrap {
  margin: auto;
  display: flex;
  column-gap: 80px;
}
.plan_wrap_item {
  width: 40%;
  flex-shrink: 0;
}
.plan_wrap_item .contents_text {
  margin-top: 40px;
}
.plan_wrap_img {
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
.plan_banner .banner_item::after {
  background-image: url(../imgs/banner_plan.jpg);
}
.plan_banner .banner_item2::after {
  background-image: url(../imgs/banner_plan2.jpg);
}

@media only screen and (max-width:768px) {
  .plan_area {
    padding: 100px 0px;
    background: url(../imgs/contents_bg.jpg) no-repeat center center / cover;
  }
  .plan_wrap {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .plan_wrap_item {
    width: 100%;
    flex-shrink: 1;
  }
  .plan_wrap_item .contents_text {
    margin-top: 20px;
  }
}

/* 
================================= */
/* flow_banner_area
============================= */
.flow_banner_area {
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow_banner_area {
    height: 60px;
    margin: 0 auto;
    width: 340px;
  }
  .flow_banner_area:hover:before {
    color: #25261F;
  }
  .flow_banner_area:hover .flow_banner_area__link {
    background-color: #ffffff;
    color: #25261F;
  }
}
@media screen and (max-width: 768px) {
  .flow_banner_area {
    height: 50px;
    width: 100%;
  }
}
.flow_banner_area:before {
  color: #ffffff;
  content: "＞";
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: scale(0.6, 1) translate(0, -50%);
  transform: scale(0.6, 1) translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .flow_banner_area:before {
    font-size: 14px;
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .flow_banner_area:before {
    font-size: 9px;
    right: 15px;
  }
}
.flow_banner_area__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  letter-spacing: 0.15em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .flow_banner_area__link {
    font-size: 16px;
    line-height: 1.75;
  }
  .flow_banner_area__link:before {
    content: "";
    margin-top: -0.375em;
  }
  .flow_banner_area__link:after {
    margin-bottom: -0.375em;
  }
  .flow_banner_area__link:before, .flow_banner_area__link:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
}
@media screen and (max-width: 768px) {
  .flow_banner_area__link {
    font-size: 12px;
    line-height: 1.25;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flow_banner_area__link:before {
    content: "";
    margin-top: -0.125em;
  }
  .flow_banner_area__link:after {
    margin-bottom: -0.125em;
  }
  .flow_banner_area__link:before, .flow_banner_area__link:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
  }
}
.flow_banner_area {
  position: relative;
  /* border-top: 1px solid #be9e73; */
  width: 100%;
  height: 360px;
}

.flow_banner_area__bg {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.flow_banner_area__bg .photo {
  height: 100%;
  width: 100%;
  position: relative;
}
.flow_banner_area__bg .photo:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0e111e;
  opacity: .73;
  z-index: 2;
}

.flow_banner_area__bg .photo__pic, .flow_banner_area__bg .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: 1s ease-in-out transform, 1s -webkit-filter ease-in-out;
  transition: 1s ease-in-out transform, 1s -webkit-filter ease-in-out;
  transition: 1s ease-in-out transform, 1s filter ease-in-out;
  transition: 1s ease-in-out transform, 1s filter ease-in-out, 1s -webkit-filter ease-in-out;
  width: 100%;
  will-change: transform, filter;
}

.flow_banner_area__lead {
  color: #ffffff;
  letter-spacing: .1429em;
  line-height: 1.71429;
}

.flow_banner_area__lead:before {
  content: '';
  margin-top: calc((1 - 1.71429) * .5em);
}

.flow_banner_area__lead:after {
  margin-bottom: calc((1 - 1.71429) * .5em);
}

.flow_banner_area__lead:before, .flow_banner_area__lead:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
}

.flow_banner_area__bg .photo__capIn{
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .flow_banner_area__lead {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .flow_banner_area__lead {
    font-size: 12px;
  }
}

.flow_banner_area__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .flow_banner_area__inner {
    gap: 100px;
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .flow_banner_area__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 12px;
    padding: 0 40px;
    width: 100%;
    align-items: flex-start;
  }
}

.flow_banner_area__ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 920px) {
  .flow_banner_area__ttl {
    gap: 82px;
  }
}

@media screen and (max-width: 920px) {
  .flow_banner_area__ttl {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .flow_banner_area__ttl {
    gap: 24px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.flow_banner_area__ttl .t {
  /* background: linear-gradient(to right, #e6c387 0%, #cdb088 52%, #a59071 100%); */
  /* -webkit-background-clip: text; */
  color: #f4d296;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .02em;
  line-height: 1.4;
  /* -webkit-text-fill-color: transparent; */
}

@media screen and (min-width: 768px) {
  .flow_banner_area__ttl .t {
    font-size: 72px;
  }
}

@media screen and (max-width: 768px) {
  .flow_banner_area__ttl .t {
    font-size: 54px;
  }
}

.flow_banner_area__ttl .t_s {
  display: block;
  font-size: 16px;
}
@media only screen and (max-width:768px) {
  .flow_banner_area__ttl .t_s {
    font-size: 14px;
    margin-top: 6px;
  }
}

.flow_banner_area__ttl .arrowSVG {
  height: auto;
  -webkit-transition: .5s ease-in-out transform;
  transition: .5s ease-in-out transform;
}

@media screen and (min-width: 768px) {
  .flow_banner_area__ttl .arrowSVG {
    width: 91px;
  }
}

@media screen and (max-width: 768px) {
  .flow_banner_area__ttl .arrowSVG {
    width: 35px;
  }
}

.flow_banner_area__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .flow_banner_area__link {
    height: 360px;
  }
}


@media screen and (min-width: 768px) {
  .flow_banner_area__link:hover .flow_banner_area__bg .photo__image {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  .flow_banner_area__link:hover .flow_banner_area__inner .arrowSVG {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@media (hover: hover) and (pointer: fine) {
  .flow_banner_area__link:hover .flow_banner_area__bg .photo__image {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  .flow_banner_area__link:hover .flow_banner_area__inner .arrowSVG {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.link-brand-movie {
  padding: 20px 0;
  /*margin-top: 20px;*/
  display: flex;
  justify-content: center;
}
.link-brand-movie a,
.link-brand-movie__inner img {
  transition: all 0.5s ease-in-out;
}
.link-brand-movie a:hover img{
  opacity: 0.8;
  transform: scale(1.03);
}
.link-brand-movie__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.link-brand-movie__inner a{
  display: block;
  overflow: hidden;
  width: fit-content;
  height:fit-content;
  background-color: #fff;
}

/* .topCV */
.topCV {
  z-index: 100;
}
.topCV.is-visible {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.topCV {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #fff;
  bottom: 30px;
  height: 40px;
  position: fixed;
  right: 10px;
  -webkit-transform: translate(0, 200%);
  transform: translate(0, 200%);
  -webkit-transition: .6s;
  transition: .6s;
  width: 330px;
  z-index: 9;
}
.topCV__button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: none;
  color: #333333;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
}
.topCV__logo {
  margin-left: 12px;
  width: 98px;
}
.topCV .topCV-title__txt:not(:last-of-type) {
  margin-right: 5px;
}
.topCV .topCV-title__txt {
  color: #ffffff;
}
.topCV .topCV-title__txt:not(:last-of-type):after {
  content: ' / ';
}
.topCV .topCV-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  text-align: left;
}
.topCV .topCV-title__txt {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}
@media screen and (min-width: 768px) {
  .topCV__button {
    background-color: #000;
    -webkit-box-shadow: 0 0 13px 3px rgba(8, 1, 3, 0.3);
    box-shadow: 0 0 13px 3px rgba(8, 1, 3, 0.3);
    padding: 0;
  }
  .topCV__button:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 768px) {
  .topCV {
      display: none;
  }
}
.link-brand-movie__inner img {
  /*aspect-ratio: 990 / 360;*/
}

@media screen and (max-width: 768px) {
.link-brand-movie__inner {
  flex-direction: column;
}
}
</pre></body></html>