@charset "UTF-8";
/* eyeCatch */
.eyeCatch>p>img{
  opacity: 0;
  transition: opacity 0.5s ease;
}
@keyframes fadeIn{
  from{
      opacity: 0;
  }
  to{
      opacity: 1;
  }
}
@keyframes lightBeam {
  0% {
      opacity: 0;
      filter: brightness(0.5) blur(8px);
  }
  40% {
      opacity: 1;
      filter: brightness(2) blur(2px);
  }
  100% {
      opacity: 1;
      filter: brightness(1.3);
  }
}
@keyframes textUp{
  from{
      opacity: 0;
      transform: translateY(5px);
  }
  to{
      opacity: 1;
      transform: translateY(0px);
  }
}
.lighten{
  mix-blend-mode: lighten;
  opacity: 0.8;
}
.eyeCatch>p>img[src*="eyeBase"]{
  animation: fadeIn 2s ease forwards;
}
.eyeCatch>p>img[src*="eyeEff"]{
  animation: lightBeam 2s ease-in-out forwards;
  animation-delay: 2s;
}
.eyeCatch>p>img[src*="eyeTxt01"]{
  animation: fadeIn 2s ease forwards;
  animation-delay: 2s;
}
.eyeCatch>p>img[src*="eyeTxt02"]{
  animation: textUp 2s ease forwards;
  animation-delay: 2s;
}
.eyeCatch>p>img[src*="eyeRing_p"]{
  animation: textUp 2s ease forwards;
  animation-delay: 2s;
}
.eyeCatch>p>img[src*="eyeRing_w"]{
  animation: textUp 2s ease forwards;
  animation-delay: 2s;
}
.eyeCatch>p>img[src*="eyeTxt03"]{
  animation: textUp 2s ease forwards;
  animation-delay: 2s;
}
.eyeCatch>p>img[src*="eyeTxt04"]{
  animation: textUp 2s ease forwards;
  animation-delay: 2s;
}
.purpleShadow{
  filter: drop-shadow(0 0 5px #4c2366);
}
.blackShadow{
  filter: drop-shadow(7px 7px 5px rgb(0, 0, 0, 0.75));
}
.under1024{
  display: none;
}
@media (max-width:1024px){
  .over1024{
      display: none;
  }
  .under1024{
      display: block;
  }
}
@media (max-width:768px){
  .eyeCatch>.under1024{
      display: none;
  }
}

/* sellPoint */
.sellPoint>.mainWrap{
  background: linear-gradient(90deg,#7f8089 0%,#e6e7e9 50%,#7f8089 100%);
  padding: 10px 0;
}
.sellPoint>.mainWrap>p{
  font-size: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
}
.sellPoint>.mainWrap>p>span{
  font-family: "EB Garamond", serif;
  font-size: 2em;
  padding: 0 0.1em;
  box-sizing: border-box;
}
.sellPoint>.subWrap{
  background-attachment: fixed;
  background-image: url(../images/top/bg01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 10px 0;
  box-sizing: border-box;
}
.sellPoint>.subWrap>ul{
  max-width: 1100px;
  width: 98%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.sellPoint>.subWrap>ul>li{
  box-sizing: border-box;
}
.sellPoint>.subWrap>ul>li:first-child{
  border-left:1px solid #fff;
}
.sellPoint>.subWrap>ul>li{
  border-right:1px solid #fff;
}
@media (max-width:1024px){
  .sellPoint>.subWrap>ul{
      max-width: 700px;
      width: 95%;
      flex-wrap: wrap;
  }
  .sellPoint>.subWrap>ul>li:first-child,
  .sellPoint>.subWrap>ul>li:nth-child(2){
      width: 50%;
      margin-bottom: 10px;
  }
  .sellPoint>.subWrap>ul>li:nth-child(3),
  .sellPoint>.subWrap>ul>li:nth-child(4),
  .sellPoint>.subWrap>ul>li:last-child{
      width: 33.33%;
  }
  .sellPoint>.subWrap>ul>li:nth-child(3){
      border-left: 1px solid #fff;
  }
}
@media (max-width:768px){
  .sellPoint>.mainWrap>p{
      font-size: 1.4em;
  }
}
@media (max-width:500px){
  .sellPoint>.mainWrap>p{
      font-size: 1.3em;
  }
}
@media (max-width:430px){
  .sellPoint>.mainWrap>p{
      font-size: 1.2em;
  }
}

/* mainText */
.mainText{
  background-color: #41414b;
  padding: 80px 0;
}
.mainText_wrap{
  max-width: 700px;
  width: 98%;
  margin: 0 auto;
}
.mainText_wrap>p.subTxt{
  font-size: 1.5em;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
}
.mainText_wrap>h2{
  font-size: 2em;
  line-height: 2;
  margin-bottom: 30px;
}
.mainText_wrap>p.mainTxt{
  margin-bottom: 50px;
}
.mainText_wrap>div.btnBox>p{
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
}
.mainText_wrap>div.btnBox>p>a{
  font-size: 1.25em;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s all;
  background-image: url(../images/top/btnBg01.jpg);
  background-size: cover;
  background-position: center center;
}
.mainText_wrap>div.btnBox>p>a:hover,
.mainText_wrap>div.btnBox>p>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.mainText_wrap>div.btnBox>p>a:before,
.mainText_wrap>div.btnBox>p>a:after{
  content:'';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position:absolute;
  left:0;
}
.mainText_wrap>div.btnBox>p>a:before{
  top: 3px;
}
.mainText_wrap>div.btnBox>p>a:after{
  bottom: 3px;
}
@media (max-width:768px){
  .mainText{
      padding: 50px 0;
  }
  .mainText_wrap>p.subTxt{
      margin-bottom: 30px;
  }
  .mainText_wrap{
      max-width: 600px;
      width: 98%;
  }
  .mainText_wrap>h2{
      line-height: 1.8;
      margin-bottom: 20px;
  }
  .mainText_wrap>p.mainTxt{
      margin-bottom: 30px;
  }
}
@media (max-width:500px){
  .mainText_wrap>p.subTxt{
      font-size: 1.4em;
  }
  .mainText_wrap>h2{
      line-height: 1.6;
  }
  .mainText_wrap>div.btnBox>p>a{
      font-size: 1.15em;
  }              
}
@media (max-width:430px){
  .mainText_wrap>p.subTxt{
      font-size: 1.3em;
  }
  .mainText_wrap>h2{
      line-height: 1.4;
      margin-bottom: 15px;
  }
  .mainText_wrap>div.btnBox>p>a{
      font-size: 1.05em;
      padding: 15px 0;
  }            
}

/* specialContents */
.specialContents{
  padding: 80px 0;
  background-attachment: fixed;
  background-image: url(../images/top/bg02.svg);
  background-size: cover;
  background-position: center center;
  position: relative;
}
.specialContents:before{
  content: '';
  max-width: 1100px;
  width: 98%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 80%,rgba(255,255,255,0) 100%);
}
.specialContents_wrap{
  max-width: 768px;
  width: 98%;
  margin: 0 auto;
  position: relative;
}
.specialContents_wrap>.ttlBox{
  text-align: center;
  margin-bottom: 30px;
}
.specialContents_wrap>.ttlBox>h2{
  font-family: "EB Garamond", serif;
  font-size: 3em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #616161;
  margin-bottom: 10px;
}
.specialContents_wrap>.ttlBox>p{
  display: flex;
  justify-content: center;
  align-items: center;
}
.specialContents_wrap>.ttlBox>p>span:nth-child(1),
.specialContents_wrap>.ttlBox>p>span:nth-child(3){
  width: 2em;
  border-bottom: 1px solid #616161;
}
.specialContents_wrap>.ttlBox>p>span:nth-child(2){
  font-size: 1.5em;
  letter-spacing: 0.3em;
  padding: 0 1em;
  box-sizing: border-box;
}
.specialContents_wrap>.txtBox{
  text-align: center;
  margin-bottom: 30px;
}
.specialContents_wrap>.txtBox>p{
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 30px;
}
.specialContents_wrap>.txtBox>ul{
  display: flex;
  justify-content: center;
}
.specialContents_wrap>.txtBox>ul>li{
  font-size: 1em;
  padding-left: 0.75em;
  box-sizing: border-box;
  border-left: 5px solid #231715;
  margin-right: 1em;
  display: flex;
  align-items: center;
}
.specialContents_wrap>.txtBox>ul>li:last-child{
  margin-right: 0em;
}
.specialContents_wrap>div.btnBox{
  margin-bottom: 30px;
}
.specialContents_wrap>div.btnBox>p{
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
}
.specialContents_wrap>div.btnBox>p>a{
  font-size: 1.25em;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s all;
  background-image: url(../images/top/btnBg02.jpg);
  background-size: cover;
  background-position: center center;
}
.specialContents_wrap>div.btnBox>p>a:hover,
.specialContents_wrap>div.btnBox>p>a:active{
  opacity: 0.5;
  transition: 0.5s all;
}
.specialContents_wrap>div.btnBox>p>a:before,
.specialContents_wrap>div.btnBox>p>a:after{
  content:'';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position:absolute;
  left:0;
}
.specialContents_wrap>div.btnBox>p>a:before{
  top: 3px;
}
.specialContents_wrap>div.btnBox>p>a:after{
  bottom: 3px;
}
.specialContents_wrap>div.noticeBox>p{
  font-size: 0.9em;
  line-height: 1.8;
  text-align: center;
}
@media (max-width:768px){
  .specialContents{
      padding: 50px 0;
  }
  .specialContents_wrap>.ttlBox,
  .specialContents_wrap>.txtBox,
  .specialContents_wrap>.txtBox>p,
  .specialContents_wrap>div.btnBox{
      margin-bottom: 20px;
  }
  .specialContents_wrap>.ttlBox>h2{
      font-size: 2.75em;
  }
  .specialContents_wrap>.ttlBox>p>span:nth-child(2){
      font-size: 1.4em;
  }
  .specialContents_wrap>.txtBox>ul{
      max-width: 180px;
      margin: 0 auto;
      flex-direction: column;
  }
  .specialContents_wrap>.txtBox>ul>li{
      margin-bottom: 10px;
  }
  .specialContents_wrap>.txtBox>ul>li:last-child{
      margin-bottom: 0px;
  }
}
@media (max-width:500px){
  .specialContents_wrap>.ttlBox>h2{
      font-size: 2.5em;
  }
  .specialContents_wrap>.ttlBox>p>span:nth-child(2){
      font-size: 1.3em;
  }
  .specialContents_wrap>div.btnBox>p>a{
      font-size: 1.15em;
  } 
}
@media (max-width:430px){
  .specialContents_wrap>.ttlBox>h2{
      font-size: 2.25em;
  }
  .specialContents_wrap>.ttlBox>p>span:nth-child(2){
      font-size: 1.2em;
      letter-spacing: 0.2em;
  }
  .specialContents_wrap>div.btnBox>p>a{
      font-size: 1.05em;
      padding: 15px 0;
  }
  .specialContents_wrap>.txtBox>p,
  .specialContents_wrap>.txtBox>ul>li{
      font-size: 0.9em;
  }
  .specialContents_wrap>div.noticeBox>p{
      font-size: 0.8em;
  }        
}
@media (max-width:375px){
  .specialContents_wrap>.ttlBox>h2{
      font-size: 2em;
  }
  .specialContents_wrap>.ttlBox>p>span:nth-child(2){
      font-size: 1.1em;
      letter-spacing: 0.1em;
  }           
}

/* information */
.information{
  background-color: #41414b;
  padding: 80px 0;
}
.informationWrap{
  max-width: 768px;
  width: 90%;
  margin: 0 auto;
}
.informationWrap>.contentRow{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.informationWrap>.contentRow>.contentBox{
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  position: relative;
}
.informationWrap>.contentRow>.contentBox:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background-image: url(../images/top/borderBg.svg);
  background-size: contain;
  background-repeat: repeat;
}
.informationWrap>.contentRow>.contentBox:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background-image: url(../images/top/borderBg.svg);
  background-size: contain;
  background-repeat: repeat;
}
.informationWrap>.contentRow>.contentBox>h2{
  font-family: "EB Garamond", serif;
  font-size: 2em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.informationWrap>.contentRow>.contentBox>.newsBox>table>tbody>tr>th{
  display: block;
  width: 100%;
  font-size: 1.25em;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}
.informationWrap>.contentRow>.contentBox>.newsBox>table>tbody>tr>td{
  display: block;
  width: 100%;
  font-size: 1em;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}
.informationWrap>.contentRow>.contentBox>.flyerBox>table>tbody>tr>th{
  display: block;
  width: 100%;
  font-size: 1.25em;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}
.informationWrap>.contentRow>.contentBox>.flyerBox>table>tbody>tr>td{
  display: flex;
  justify-content: space-between;
  font-size: 1em;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}
.informationWrap>.contentRow>.contentBox>.flyerBox>table>tbody>tr>td>p{
  width: 48%;
}
@media (max-width:768px){
  .information{
      padding: 50px 0;
  }
  .informationWrap>.contentRow>.contentBox{
      padding: 0 30px;
  }
  .informationWrap>.contentRow>.contentBox>h2{
      margin-bottom: 10px;
  }
}
@media (max-width:500px){
  .informationWrap>.contentRow>.contentBox>h2{
      font-size: 1.75em;
  }
  .informationWrap>.contentRow>.contentBox>.newsBox>table>tbody>tr>th{
      font-size: 1.15em;
  }
}
@media (max-width:430px){
  .informationWrap>.contentRow>.contentBox>.newsBox>table>tbody>tr>th{
      font-size: 1.05em;
  }
  .informationWrap>.contentRow>.contentBox>.newsBox>table>tbody>tr>td{
      font-size: 0.9em;
  }      
}

/* concept */
.concept>.conceptWrap{
  position: relative;
  overflow: hidden;
}
.concept>.conceptWrap:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg,transparent 0%,#7f7f88 100%);
  z-index: 2;
}
/* ==== マスク部分 ==== */
.concept>.conceptWrap>.txtSlider{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 2;
  overflow: hidden;
  /* 背景グラデーション */
  background: linear-gradient(90deg,#e5d1e2 0%,#deeaf7 25%,#e3efe6 50%,#eff2dd 75%,#fbf6e0 100%);
  background-size: 200% 200%;

  /* SVGマスク */
  -webkit-mask-image: url("../images/top/textMask02.svg");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: auto 70px; /* autoより安定 */
  -webkit-mask-position: 0 0;

  mask-image: url("../images/top/textMask02.svg");
  mask-repeat: repeat-x;
  mask-size: auto 70px;
  mask-position: 0 0;

  /* アニメーションをまとめて指定 */
  -webkit-animation: gradientWave 12s ease-in-out infinite, maskScroll 24s linear infinite;
  animation: gradientWave 12s ease-in-out infinite, maskScroll 24s linear infinite;
}
/* SVGマスク（文字）の横スクロール */
@keyframes maskScroll{
  0%{ 
      -webkit-mask-position: 0 0;
      mask-position: 0 0;
  }
  100%{
      -webkit-mask-position: 100% 0;
      mask-position: 100% 0;
  }
}
.slider01>.swiper-wrapper{
  transition-timing-function: linear;
}
.concept>.txtWrap{
  padding: 80px 0;
  background: linear-gradient(90deg,#e5d1e2 0%,#deeaf7 25%,#e3efe6 50%,#eff2dd 75%,#fbf6e0 100%);
  background-size: 200% 200%;
  animation: gradientWave 12s ease-in-out infinite;
  -webkit-animation: gradientWave 12s ease-in-out infinite;
}
@keyframes gradientWave{
  0%{
      background-position: 0% 50%;
  }
  50%{
      background-position: 100% 50%;
  }
  100%{
      background-position: 0% 50%;
  }
}
.concept>.txtWrap>.txtBox{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.concept>.txtWrap>.txtBox>h2{
  font-size: 1.5em;
  letter-spacing: 0.25em;
  font-weight: 400;
  margin-bottom: 30px;               
}
.concept>.txtWrap>.txtBox>p{
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 50px;              
}
.concept>.txtWrap>.txtBox>.cBtn_box>p{
  max-width: 400px;
  width: 80%;
  margin: 0 auto;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid #b7b3b2;
  transition: 0.5s all;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a:hover,
.concept>.txtWrap>.txtBox>.cBtn_box>p>a:active{
  color: #fff;
  background-color: #b7b3b2;
  border: 2px solid #b7b3b2;
  transition: 0.5s all;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a>span:nth-child(1){
  font-size: 1.1em;
  letter-spacing: 0.1em;
  padding-right: 1em;
  box-sizing: border-box;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a>span:nth-child(2){
  display: inline-block;
  width: 80px;
  padding-top: 10px;
  border-bottom: 1px solid #000;
  position: relative;
  transition: 0.5s all;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a>span:nth-child(2):after{
  content: '';
  position: absolute;
  bottom: -2px;
  right: 5px;
  width: 1px;
  height: 15px;
  rotate: -45deg;
  background-color: #000;
  transition: 0.5s all;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a:hover>span:nth-child(2),
.concept>.txtWrap>.txtBox>.cBtn_box>p>a:active>span:nth-child(2){
  border-bottom: 1px solid #fff;
  transition: 0.5s all;
}
.concept>.txtWrap>.txtBox>.cBtn_box>p>a:hover>span:nth-child(2):after,
.concept>.txtWrap>.txtBox>.cBtn_box>p>a:active>span:nth-child(2):after{
  background-color: #fff;
  transition: 0.5s all;
}
.concept>.txtWrap>.txtBox>.pointRow{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.concept>.txtWrap>.txtBox>.pointRow>li{
  width: 15%;
  margin-right: 5%;
}
.concept>.txtWrap>.txtBox>.pointRow>li:last-child{
  margin-right: 0%;
}
@media (max-width:1320px){
  .concept>.conceptWrap:before{
      height: 60px;
  }
  /* ==== マスク部分 ==== */
  .concept>.conceptWrap>.txtSlider{
      bottom: -4px;
      height: 60px;
      -webkit-mask-size: auto 60px; /* autoより安定 */
      mask-size: auto 60px;
  }
}
@media (max-width:768px){
  .concept>.conceptWrap:before{
      height: 50px;
  }
  /* ==== マスク部分 ==== */
  .concept>.conceptWrap>.txtSlider{
      bottom: -3px;
      height: 50px;
      -webkit-mask-size: auto 50px; /* autoより安定 */
      mask-size: auto 50px;
  }
  .concept>.txtWrap{
      padding: 50px 0;
  }
  .concept>.txtWrap>.txtBox>h2{
      margin-bottom: 20px;               
  }
  .concept>.txtWrap>.txtBox>p{
      margin-bottom: 30px;              
  }
  .concept>.txtWrap>.txtBox>.pointRow{
      max-width: 500px;
      width: 90%;
      margin: 0 auto;
      margin-bottom: 30px;
  }
  .concept>.txtWrap>.txtBox>.pointRow>li{
      width: 30%;
      margin-right: 5%;
  }
  .concept>.txtWrap>.txtBox>.pointRow>li:nth-child(3){
      margin-right: 0%;
  }
}
@media (max-width:500px){
  .concept>.txtWrap>.txtBox>h2{
      font-size: 1.4em;              
  }
  .concept>.txtWrap>.txtBox>p{
      font-size: 0.9em;            
  }
  .concept>.txtWrap>.txtBox>.cBtn_box>p>a>span:nth-child(1){
      font-size: 1em;
  }
}
@media (max-width:430px){
  .concept>.txtWrap>.txtBox>h2{
      font-size: 1.3em;              
  }
  .concept>.txtWrap>.txtBox>p{
      font-size: 0.8em;            
  }
  .concept>.txtWrap>.txtBox>.cBtn_box>p>a>span:nth-child(1){
      font-size: 0.9em;
  }    
}

/* pageNotice */
.pageNotice{
  padding: 80px 0;
}
.pageNotice_wrap{
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.pageNotice_wrap>p{
  font-size: 0.75em;
  line-height: 1.8;
  text-align: center;
}
@media (max-width:768px){
  .pageNotice{
      padding: 50px 0;
  }
  .pageNotice_wrap>p{
      text-align: left;
  }
}
@media (max-width:500px){            
  .pageNotice_wrap>p{
      font-size: 0.65em;
  }
}
@media (max-width:430px){
  .pageNotice_wrap>p{
      font-size: 0.55em;
  }   
}