@charset "utf-8";

@font-face {
    font-family:'Now';
    src: url(font/webfonts_Now-Bold/Now-Bold.ttf.woff) format("woff");
}

body {
  font-family:'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
  /* font-family:"ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN W6", HiraKakuProN-W6, "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004"; */
  font-weight:400;
  letter-spacing:0.5px;
  /*background:#fff;*/
  color:var(--color-black-01);
  line-height:1.9;
  font-size:1.4rem;
  position: relative;
  cursor: none !important;
  background:#F6F9FA;
}

:root {
  --color-main-pink:#D92B79;
  --color-main-blue:#08B0EC;
  --color-purple:#632A52;
  --color-gray-01:#F6F9FA;
  --color-black-01:#000;
  --color-green-01:#59AE9B;
  --f-en-now:'Now' !important;
  --f-en-ro:"Roboto", serif !important;
  --f-en-ma:"Marcellus", serif !important;
  --max-width:1280px;
  --base-padding:120px 40px;
  --base-paddingLR:0 40px;
  --base-paddingLR-base:40px;
  --base-paddingTB:120px 0;
  --base-paddingTop:120px;
  --titleBase-before:5rem;
  --titleBase:1.7rem;
  --lead-base:1.8rem;
  --margin-section-bottom:120px;
  --color-grad-blue-01:linear-gradient(180deg, rgba(215,241,246,1) 0%, rgba(255,255,255,1) 100%);
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --load-color:#FF1E57; /*小*/
  --load-color02:#ccc;
  --load-gradation:linear-gradient(90deg, #FF1E57 0%, #F5684E 100%);
  --load-gradation-row:linear-gradient(90deg, #FF1E57 0%, #ff7699 100%);
}

#cursor{
  position: fixed;
  background:#bbb;
  border-radius:10px;
  width: 11px;
  height: 11px;
  margin: -10px 0 0 -10px;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.4s;
  z-index: 9999999;
}

#stalker{
  position: fixed;
  background:#D92B79;
  width: 40px;
  height: 40px;
  border-radius:30px;
  margin: -30px 0 0 -30px;
  z-index:999999;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.5s;
}

#stalker.active{
  transform: scale(1.8);
} 

@media screen and (max-width: 768px) {
  #cursor,#stalker {
    display: none;
  }
  body {
    cursor:auto !important;
  }
}



/*
PC text parts ******************/
.titleBase {
  font-size:var(--titleBase);
  margin-bottom:32px;
  font-weight:600;
}

.titleBase span {
  position:relative;
  display:inline-block;
  padding-left:1.2em;
  padding-top:5px;
}

.titleBase span:before {
  position:absolute;
  width:15px;
  height:2px;
  background:var(--color-main-pink);
  display:inline-block;
  content:'';
  top:22px;
  left:0;
}

.titleBase.wh span:before {
  position:absolute;
  width:15px;
  height:1px;
  background:#fff;
  display:inline-block;
  content:'';
  top:22px;
  left:0;
}

.titleBase:before {
    display: block;
    font-family:var(--f-en-ma);
    font-size:var(--titleBase-before);
    content: attr(data-en);
    line-height:1;
}

.basetime {
  font-size:1.1rem;
  color:var(--color-main-pink);
}

.lead-txt {
  font-size:var(--lead-base);
  line-height:1.6;
  font-weight:600;
  margin-bottom:16px;
}



/*
ローディングコンテナ***************


/* ローディングコンテナ */
#loading-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#fff;
  position:fixed;
  top:0;
  opacity: 1;
  transition: opacity 1.5s ease-out; /* 赤い●と同期したフェードアウト */
  z-index:9999999999999;
}


#new-logo {
  width: 100px;
  height: auto;
  opacity: 0;
  position: absolute;
  animation: logo-expand 1.5s cubic-bezier(.2,.26,.31,1.4) forwards;
  z-index:9999999999998;
}

/* 赤い●のスタイル */
#red-circle {
  position: absolute;
  width: 0;
  height: 0;
  background-color:#632952;
  border-radius: 50%;
  opacity: 0;
  display: none; /* 初期状態で非表示 */
  z-index:9999999999997;
  animation: none;
}

/* ロゴの拡大アニメーション */
@keyframes logo-expand {
  0% {
    width: 0px;
    opacity: 1;
  }
  50% {
    width: 88px;
    opacity: 1;
  }
  75% {
    width: 88px;
    opacity: 1;
  }
  100% {
    width: 0px;
    opacity: 0;
  }
}

/* 赤い●の拡大アニメーション */
@keyframes circle-expand {
  0% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 3000px;
    height: 3000px;
    opacity: 1;
  }
}

/* 赤い●のフェードアウトアニメーション */
@keyframes circle-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ローディング画面の全体設定 */
#loading-container {
  transition: opacity 1.5s ease-out; /* ローディング画面全体のフェードアウト速度 */
}


/****/

.bodyfix {
    position: fixed;
}


@keyframes slideOut {
  from {
    right: 100%; }
  to {
    right: -50%; } }
@-webkit-keyframes slideOut {
  from {
    right: 100%; }
  to {
    right: -50%; } }
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background:#fff;
  background-size: 180px 180px; }
  .load p {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: var(--load-color);
    line-height: 1;
    width: 60px;
    height: 60px;
    border: 3px solid var(--load-color02);
    border-top-color: currentColor;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-animation: rotate 1s linear infinite;
            animation: rotate 1s linear infinite;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease; }
  .load:after {
    content: "";
    display: block;
    position: absolute;
    width: 200%;
    height: 100%;
    background: var(--load-gradation);
    right: 100%;
    top: 0; }

.is-load .load {
  opacity: 0;
  -webkit-transition: opacity .8s ease;
  transition: opacity .8s ease;
  -webkit-transition-delay: .8s;
  transition-delay: .8s; }
  .is-load .load p {
    opacity: 0; }

@media screen and (max-width: 800px) {
  .load p {
    width: 45px;
    height: 45px; } }
/*
.is-loaded .load{
     display:none;
}
*/
.is-load .load:after {
  -webkit-animation: 0.7s slideOut cubic-bezier(0.95, 0.05, 0.7, 0.1) forwards;
  animation: 0.7s slideOut cubic-bezier(0.95, 0.05, 0.7, 0.1) forwards; }


.curtainLogo {

  width:100%;
  height:100vh;
  position:fixed;
  top:0;
  z-index:99999999;
  display:none;
}

.curtainLogo__inner {
  width:100%;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center; 
}


.curtainLogo__inner img {
  width:140px;
}

@media only screen and (max-width: 480px) {
.curtainLogo__inner img {
  width:120px;
}
}
/*
#cursor{
  position: fixed;
  background:var(--color-black-01);
  border-radius:10px;
  width: 11px;
  height: 11px;
  margin: -10px 0 0 -10px;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.4s;
  z-index: 9999999;
}

#stalker{
  position: fixed;
  background: #139DE0;
  width: 40px;
  height: 40px;
  border-radius:30px;
  margin: -30px 0 0 -30px;
  z-index:999999;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.5s;
}


#stalker.active{
  transform: scale(1.8);
} 

@media screen and (max-width: 768px) {
  #cursor,#stalker {
    display: none;
  }
  body {
    cursor:auto !important;
  }
}
*/


a {
  color:var(--color-black-01);
  text-decoration:underline;
  /* cursor: none !important; */

}

a:link {
  color:var(--color-black-01);
  text-decoration:underline;
}

a:visited {
  color:var(--color-black-01);
  text-decoration:underline;
}

a:hover {
  color:var(--color-blue-01);
  text-decoration:none;
}

a:active {
  color:var(--color-black-01);
  text-decoration:underline;
}

table.base-01,
table.base-nowrap {
  width: 100%;
}

table.base-01 th,
table.base-nowrap th {
  width: 25%;
  border-top:1px solid #B1B1B1;
  border-bottom:1px solid #B1B1B1;
  padding:10px 0;
  text-align: center;
  vertical-align:middle;
  display: table-cell;
  font-weight:500;
  letter-spacing:1px;

}

table.base-01 td,
table.base-nowrap td {
  width: 75%;
  border-top:1px solid #B1B1B1;
  border-bottom:1px solid #B1B1B1;
  padding:10px 0 10px 10px;
  display: table-cell;
  text-align: left;
  margin-bottom: 0;
}

/*
table.base-nowrap {
  width: 100%;
}

table.base-nowrap th {
  width: 25%;
  border-top:1px solid #B1B1B1;
  border-bottom:1px solid #B1B1B1;
  padding:10px 0;
  text-align: center;
  vertical-align:middle;
  display: table-cell;
  font-weight:500;
  letter-spacing:1px;

}

table.base-nowrap td {
  width: 75%;
  border-top:1px solid #B1B1B1;
  border-bottom:1px solid #B1B1B1;
  padding:10px 0 10px 10px;
  display: table-cell;
  text-align: left;
  margin-bottom: 0;
}
*/

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

a.hover-img img {
  transition:.5s;
  opacity:1;
}

a.hover-img img:hover {
  opacity:0.6;
}

.hover-opa {
  transition:.5s;
  opacity:1;
}

.hover-opa:hover {
  opacity:0.6;
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

#wrapper {
  width: 100%;
  position: relative;
}

/*
.fv {
  width: 100%;
  height: 100svh;
  background: #fff;
  position:relative;
}
*/

.fv {
  width: 100%;
  height: calc(100svh - 60px);
  background: #fff;
  position: relative;
  margin-top:60px;
}

.img-fv-catch {
  width:440px;
  position:absolute;
  bottom:24px;
  left:24px;
  z-index:2;
}

.scroller {
  width:72px;
  height:72px;
  background:#fff;
  border-radius:100%;
  z-index:3;
  position:absolute;
  bottom:15px;
  right:15px;
}

.scroller .inner-sc {
  width:80%;
  height:80%;
  margin-top:10%;
  margin-left:10%;
  border-radius:50%;
}

.scroller .inner-sc img.scroller-txt {
  animation:scrollcircle 10s infinite linear;
}

@keyframes scrollcircle {
  0% {
    transform:rotate(0deg);
  }
  100% {
    transform:rotate(360deg);
  }
}

.scrolldown4{
  position:absolute;
  right:50%;
  height:24px;
  animation: arrowmove 2s ease-in-out infinite;
}

@keyframes arrowmove{
      0%{top:30%;}
      50%{top:38%;}
     100%{top:30%;}
 }

.scrolldown4:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -4px;
    width: 1px;
    height: 12px;
    background: #000;
    transform: skewX(-31deg);
}

.scrolldown4:after{
  content:"";
  position: absolute;
  bottom:0;
  right:0;
  width:1px;
  height: 30px;
  background:#000;
}




.gheader {
  width: 100%;
  height: 60px;
  background: #fff;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0px 0px 8px -5px #777;
}

.gheader nav {
  height:100%;
}

.gheader__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 0 0 16px;
}

.gheader__inner a {
  text-decoration:none;
  font-size:1.5rem;
  font-weight:500;
  transition:.6s;
}

.gheader__inner a:hover {
  opacity:.4;
}



.h1logo {
  width: 180px;
}

.gheader__innerNav {
  display: flex;
  gap:24px;
  height:100%;
  align-items:center;
}

.gheader__innerNav li {
  list-style: none;
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 16px 24px;
  width:auto;
  border: 1px solid #000;
  white-space:nowrap;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;

  text-decoration: none;
  padding: 4px 0;
}

/* ハンバーガーメニューのスタイル */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  z-index: 1001;
  right:16px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガーメニューが開かれたときのスタイル */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* PC用ドロップダウン */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-arrow {
  margin-left:6px;
  border: solid var(--color-main-pink);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg) translateX(-3px);
  cursor: pointer;
  transition: transform 0.3s;
}

/* 背景ボックス */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 10; /* メニューより下でもページ要素より上に配置 */
  display: none; /* 初期状態で非表示 */
}

#overlay.active {
  display: block; /* メニューが開いたときに表示 */
}

.menucontact {
  display:flex;
  height:100%;
  align-items:center;
}

.menucontact a {
  display:block;
  background:var(--color-green-01);
  height:100%;
  display:flex;
  align-items:center;
  padding-left:20px;
  padding-right:20px;
  color:#fff;
}

.base-box {
  max-width:var(--max-width);
  padding:var(--base-padding);
  margin:auto;
  position:relative;
}





/*
PC top tour ***********/

.topTour {
  position:relative;
  overflow:hidden;
}


.topTour:after {
  width:350px;
  height:350px;
  display:block;
  content:'';
  position:absolute;
  right:-20px;
  top:30px;
  z-index:-1;
  opacity:0.11;
  background:url(imgs/img-stamp-01.svg) no-repeat 0 0
}


.topTour__list {
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
}

.topTour__list > li {
  background:#fff;
  border-radius:8px;
  padding:24px 24px 32px;
  box-shadow: 0px 0px 15px -5px #777;
}

.topTour__list > li a {
  text-decoration:none;
}

.topTour__listThumblock {
  display:block;
  margin-bottom:8px;
  position:relative;
}

.topTour__listThumblock img {
  width:100%;
  aspect-ratio: 3 / 2;
}

.topTour__listThumblock 

.topTour__list h3 {
  color:var(--color-main-blue);
  margin-bottom:8px;
}

.topTour__listCap {
  margin-bottom:16px;
  font-size:1.3rem;
  letter-spacing:0;
}

.topTour__list table {
  font-size:1.3rem;
}

.tourTab {
  display: flex;
  gap: 16px;
  position:absolute;
  top:150px;
  right:60px;
}

.tourTab li {
  cursor: pointer;
}

.tourTab a {
  text-decoration: none;
  padding: 8px 56px;
  display: inline-block;
  background: #ddd;
  border-radius:50px;
  color: #000;
  transition:.5s;
  box-shadow:none;
}

.tourTab a.active {
  background:#FFF100;
  color: #000;
  font-weight:600;
  box-shadow: 0px 0px 15px -5px #777;
}

.tabContent {
  display: none;
  opacity: 0;
  transition: 1s !important;
}

.tabContent.active {
  display: block;
  opacity: 1;
}


.topTour__loopText {
  width:100%;
  position:absolute;
  top:100px;
  z-index:-1;
  overflow:hidden;
}

.loop-txt {
  display: flex;
  overflow:hidden;
  width:200%;
  white-space:nowrap;
}

.loop-txt ul {
  padding:0 !important;
  animation: flowing 120s linear infinite;
  font-size:10rem;
  line-height:10rem;
  transform:translateX(100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family:var(--f-en-ma);
  font-weight:700;
}

.loop-txt ul li{
  color:#f2f2f2;
  display: inline;
  vertical-align: bottom;
  letter-spacing:0;
}

@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

.icon_new {
    width:32px;
    height:32px;
    position: absolute;
    z-index:3;
    top:-2px;
    left:-2px;
}

.icon_new span {
  position: absolute;
  top: 10px;
  right:0;
  bottom: 0;
  left: 4px;
  margin: auto;
  width: 100%;
  z-index: 3;
  font-size:1.3rem;
  color: #fff;
  text-align:center;
  font-family:var(--f-en-ro);
  letter-spacing: 1;
  font-weight:600;
}

.stars {
    background:var(--color-main-pink);
    width:40px;
    height:40px;
    position: relative;
    text-align: center;
}

.stars:before, .stars:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background:var(--color-main-pink);
}

.stars:before {
    -webkit-transform: rotate(30deg);
       -moz-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
         -o-transform: rotate(30deg);
}

.stars:after {
    -webkit-transform: rotate(60deg);
       -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
         -o-transform: rotate(60deg);
}

.loadd {
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    -ms-animation: spin 3s linear infinite;
    -o-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

@-webkit-keyframes spin {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
  0% {-moz-transform: rotate(0deg);}
  100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
  0% {-ms-transform: rotate(0deg);}
  100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
  0% {-o-transform: rotate(0deg);}
  100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}



.wp-pagenavi {
    margin: 0px 0 0;
    font-size: 1.2rem;
    text-align:center;
    padding-top:24px;
    font-family:var(f-en-ro);
}
.wp-pagenavi a {
    color: #4a4a4a;
    text-decoration:none;
}
.pages {
    margin-right: 20px;
}
.wp-pagenavi .current,
.wp-pagenavi a.page {
    margin: 0 6px 6px 0;
    display: inline-block;
    border: solid 1px #eee;
    background:#fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    transition:0.5s;
}
.wp-pagenavi .current {
    border: none;
    background:#000;
    color: #fff;
}
.wp-pagenavi a.page:hover {
    background:#555;
    color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {/* ... */
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    display: none;
}

/*
PC top about ***********/
.topAbout {
  position:relative;
}

.topAbout::before {
  background:#fff;
  /* background:var(--color-gray-01); */
  position:absolute;
  width:100%;
  height:100%;
  content:'';
  z-index:-2;
}

.topAbout__loopText {
  width:100%;
  position:absolute;
  top:auto;
  bottom:0;
  z-index:-1;
  overflow:hidden;
}


.topAbout__loopText .loop-txt ul li {
  color:#eee;
}

.topAbout__flex {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topAbout__flex .topAbout__flexText {
  width:50%;
}

.topAbout__flex .topAbout__flexImg {
  width:42%;
}

.topInsta {
  background:url(imgs/bgtopInsta.jpg) no-repeat 0 0 / cover;
}


/*
PC top news ***********/

.topNews {
  /* background:var(--color-gray-01); */
  position:relative;
}




.topNews::before {
  position:absolute;
  top:0;
  width:100%;
  height:100%;
  z-index:-2;
  background:var(--color-gray-01);
  content:'';
}

.topNews a.topNews__link {
  text-decoration:none;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left:15px;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items:center;
  position: relative;
}

.topNews a.topNews__link h4 {
  font-weight:500;
}

.topNewsList {
  padding:0 40px;
}

.topNewsList li {
  border-bottom:1px solid #ccc;
  position:relative;
  overflow:hidden;
  padding-right:30px;
}

.topNewsList li:before {
  border-right: 2px solid var(--color-main-pink);
  border-top: 2px solid var(--color-main-pink);
  bottom: 0;
  content: "";
  height: 10px;
  width: 10px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0px;
  transform: rotate(45deg);
  transition: right .3s;
}

.topNewsList li:hover:before {
  right: 10px;
}

.topNewsList li:after {
  width:100%;
  height:100%;
  content:'';
  display:block;
  position:absolute;
  top:0;
  z-index:-1;
  transition:1s;
}

.topNewsList li:hover:after {
  background:#eee;
  animation:linkmate 0.4s linear;
}

@keyframes linkmate {
  0% {
    width:0;
  }
  100% {
    width:100%;
  }
}

.timeCate {
  /* font-family:var(--f-en-ro); */
}




.topNewsList li:hover time.baseTime {
  color:var(--color-main-pink);
}

.icon__cate {
  font-size:1.1rem;
  background:var(--color-main-blue);
  color:#fff;
  display:inline-block;
  padding:1px 6px 0;
  line-height:2;
  border-radius:3px;
  margin-left:10px;
  font-family:var(--f-en-ro);
}


/*
PC footer ***********/
footer {
  background:#fff;
}

.footer__inner {
  max-width:var(--max-width);
  padding:120px 0 60px;
  margin:auto;
  position:relative;
}

.footer__innerLogo {
  text-align:center;
}

.footer__innerLogo img {
  width:250px;
}

.footer__innerAddress {
  text-align:center;
  padding:16px 0 24px;
  font-size:1.6rem;
} 

.footer__innerANTA {
  text-align:center;
}

.footer__innerANTA img {
  width:80px;
  margin-bottom:8px;
}

.footer__innerANTA p {
  font-size:1rem;
}

.footer__copy {
  color:#fff;
  background:var(--color-purple);
  text-align:center;
  padding:8px 0;
  font-family:var(--f-en-ro);
  font-size:1.1rem;
}

#page-top {
    width: 36px;
    height:36px;
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: block;
    background: url(/wp-content/themes/ikina/imgs/btn-pagetop.svg) no-repeat 0 0 / cover;
    cursor:pointer;
    z-index: 3;
}



.loop-wrap {
    overflow:hidden;
    padding:5px 0;
    background:#fff;
}

.gallery_loop_main {
    width: 4200px;
    height: 456px;
    background:#fff url(imgs/bg_gallery-main.png) 0px 0px / 1400px 456px repeat;
    animation: galleryAni 50s infinite forwards linear;
    opacity: 1;
    transition: opacity .8s ease;

}

@keyframes galleryAni {
    0% {
        background-position: 0px 0px
    }

    100% {
        background-position: -2100px 0px
    }
}

@keyframes galleryAniSp {
    0% {
        background-position: 0px 0px
    }

    100% {
        background-position: -274.1333333333vw 0px
    }
}

/*
PC tour ******************/
.wrapper__lowerpt {
  padding-top:60px;
}

.loopslider {
    width:100%;
    margin:0 auto;
}
 
.loopslider img {
    width:100%;
    height:auto;
}
 
.loopslider .slick-slide {
    margin:0;
}

.lowerTour__pt {
  padding-top:80px !important
}

.lowerTour__pt .tourTab {
  top:110px;
}


/*
PC tour-detail ***********/
.tourDetail {

}

.tourDetail__head {
  max-width:var(--max-width);
  padding:80px var(--base-paddingLR-base);
  margin:auto;
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-direction:row-reverse;
}

.tourDetail__headImg {
  width:52%;
}

.tourDetail__headImg img {
  width:100%;
  aspect-ratio: 3 / 2;
}

.tourDetail__headTxt {
  width:42%;
  position:relative;
}

.tourDetail__headTxt::before {
  width:92px;
  height:92px;
  display:block;
  content:'';
  position:absolute;
  right:0px;
  bottom:0;
  z-index:-1;
  opacity:0.4;
  background:url(imgs/img-stamp-01.svg) no-repeat 0 0
}


.tourDetail__headTxtInner {

}

.tourDetail__title {
  font-size:3rem;
  line-height:1.6;
  font-weight:700;
  margin-bottom:8px;
}

.tourDetail__titleLead {
  font-size:1.3rem;
  margin-bottom:16px;
}

.tourDetail__outer {
  max-width:var(--max-width);
  padding:0 var(--base-paddingLR-base);
  margin:auto;
  display:flex;
  justify-content:space-between;
}

.tourDetail__body {
  width:70%;
}

.tourDetail__body1day {
  margin-bottom:88px;
}

.midashi__1day {
  color:#fff;
  background:var(--color-purple);
  display:block;
  padding:8px 16px;
  font-size:2rem;
  font-weight:600;
  margin-bottom:32px;
}

.tourDetail__body1day img {
  margin-bottom:16px;
}

.tourDetail__body1day table {
  margin-top:24px;
  font-size:1.3rem;
}

.tourDetail__side {
  width:24%;
}

.side-widget-area {
  margin-bottom:48px;
}

.side-widget-cat {
  border-top:3px solid #000;
  text-align:center;
  padding:16px 0;
  font-weight:600;
  font-size:1.6rem;
}

.side-widget-area ul li {
  border-top:1px solid #ccc;
  padding:12px 0;
}

.side-widget-area ul.tourDe li a {
  text-decoration: none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.side-widget-area ul.tourDe li a .side-widget-thmu {
  width:30%;
}

.side-widget-area ul.tourDe li a .side-widget-thmu img {
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* 高さを自動調整 */
  aspect-ratio: 4 / 3; /* 16:9のアスペクト比を指定 */
  object-fit: cover; /* コンテンツを親要素に合わせて調整 */
}

.side-widget-area ul.tourDe li a h4 {
  width:64%;
  font-size:1.3rem;
  line-height:1.6;
}


/*
PC company ***********/
.base__head {
  max-width:var(--max-width);
  padding:80px var(--base-paddingLR-base);
  margin:auto;
}


/*
PC news ***********/

.newsSide__list li {
  border-top:1px solid #ccc;
  padding:12px 0;
}

.newsSide__list li a {
  text-decoration: none;
  font-size: 1.3rem;
  line-height: 1.6;
  display: inline-block;
  position: relative; /* 疑似要素と調整しやすくします */
  padding-left:1.4rem;
}

.newsSide__list li a:before {
  content: '・';
  position: absolute;
  left: 0; /* リストの位置に応じて調整 */
  font-size: 1.3rem; /* テキストサイズと一致させます */
  line-height: 1.6; /* テキストの行間に合わせます */
}

.newsbase-box-padding {
  padding-top:0 !important;
  padding-bottom:80px !important;
}

.newsTitle {
  margin-bottom:24px;
}

.newsTitle h3 {
  font-size:2rem;
  border-bottom:1px solid #ccc;
  padding-bottom:8px;
  line-height:1.7;
  margin-bottom:32px;
}

.newsBody {
  padding-bottom:32px;
}

.newsBody img {
  margin:8px 0;
  max-width:100%;
}

.newsBodypager {
  display:flex;
  justify-content:space-between;
  padding-top:24px;
  border-top:1px solid #ccc;
  font-size:1.3rem;
  font-family:var(--f-en-ro);
}

.align-items-fs {
  align-items:flex-start;
}

/*
PC Q&A ***********/
.qa-list {
  margin-bottom:20px;
}

.qa-list:last-child {
    margin-bottom:0;
}


.question-title {
  background:#fff;
  cursor: pointer;
  font-size:1.6rem;
  padding: 16px 5%;
  position: relative;
  font-weight:600;
}

.question-title:before {
  position: absolute;
  display: block;
  content: 'Q';
  top: 10px;
  left: 1.5%;
  color:var(--color-purple);
  font-size: 2.3rem;
  font-family:var(--f-en-ro) !important;
  font-weight:600;
}

.question-title:after {
  position: absolute;
  display: block;
  content: '';
  top: 35%;
  right: 2%;
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--color-main-pink);
  border-right: 2px solid var(--color-main-pink);
  transform: rotate(135deg);
  transition: all .3s ease-in-out;
}

.question-title.open:after {
  transform: rotate(-45deg);
  top: 45%;
}

.answer-text {
  display: none;
  padding: 16px 5%;
  position: relative;
}

.answer-text:before {
  position: absolute;
  display: block;
  content: 'A';
  top: 10px;
  left: 1.5%;
  color:var(--color-main-blue);
  font-family:var(--f-en-ro) !important;
  font-size: 2.3rem;
  font-weight:600;
}



/*
PC Contact ***********/
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  /* -webkit-appearance: button; */
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
}


input[type=radio] {
  display:inline-block;
}

.wpcf7-list-item {
  width:auto !important;
  padding-bottom:10px !important;
}

.wpcf7-list-item { display: block; float: left; width: 80%; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  font-size:1.6rem;
  padding: 20px 8px;
  width: 100%;
 background:#eee;
}

input[type="date"] {
  appearance: none; /* ブラウザのデフォルトスタイルを無効化 */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #eee;
  border:none;
  font-size:1.6rem !important;
  padding: 15px 8px !important;
  margin-bottom:15px !important;
}


input[type="datetime-local"] {
-webkit-appearance: none !important;
width: 50% !important;
height: 3rem !important;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: left !important;
}

input[type="date"] {

}

input[type="text"].nenrei-txt {
  width:100px;
  margin-right:10px;
}

input[type="text"].tel-numtxt {
  width:50%;
}



input[type="submit"].wpcf7-confirm,
input[type="submit"].wpcf7-submit,
.wpcf7-back { 
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 30px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 40%;
  background:var(--color-green-01);
  border-radius:5px;
}

button.wpcf7cp-cfm-submit-btn {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  font-weight:bold;
  margin: 0 auto 0;
  padding: 30px 0;
  text-align: center;
  width: 40%;
  background:var(--color-green-01);
}
input[type="button"].wpcf7-confirm,
input[type="button"].wpcf7-submit,
input[type="button"].wpcf7-form-control { 
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 0 auto 0;
  padding: 15px 0;
  text-align: center;
  width: 40%;
  border-radius:5px;
}


/*
input[type="button"].wpcf7cp-cfm-submit-btn,
input[type="button"].wpcf7-submit {
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 30px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 70%;
}
*/


button.wpcf7cp-cfm-edit-btn { 
  background:#fff;
  border:1px solid #000;
  color: #000;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 0px auto 0;
  padding: 15px 0;
  text-align: center;
  width: 25%;
}


textarea {
  height:200px;
}


select {
  width:350px;
  border-radius: 0px;
  -webkit-appearance: none;
  appearance: none;
position:relative;
    border: 1px solid #bdbdbd;
    position:relative;
    background-image: url(/wp-content/themes/ikina/imgs/bg-contact-arrow-bottom.png);
    background:-color:#fff;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  font-size:1.6rem;
  padding: 15px 8px;
  }

button.wpcf7cp-cfm-edit-btn {
    margin-right:auto !important;
    margin-bottom: 20px;
}

.wpcf7-not-valid-tip {
    display:block;
    clear:both;
    font-weight:bold;
}

input[type=checkbox],input[type=radio] {
  transform: scale(1.4);
  margin: 0 5px 0 0;
}

.kojin-jyohou-box {
width:88%;
  background:#eee;
  font-size:1.2rem;
  line-height:1.5;
  padding:30px;
  height:270px;
  overflow:scroll;
  margin-bottom:50px;
  border-radius:5px;
  margin:50px auto 30px;
}

.kojin-title {
  text-align:center;
  font-size:1.8rem;
  font-weight:bold;
  margin:30px 0 15px;
}

.kojin-lead {
  font-size:1.3rem;
  line-height:1.4;
  margin-bottom:15px;
}

.required {
  font-size:1rem;
  color:#B80928;
  margin-left:4px;
}

::placeholder {
  font-size:1.1rem;
}



































/*
btn parts ***********/
.arrow__blue--small {
  width:8px;
  height:8px;
  border-right:2px solid var(--color-main-blue);
  border-bottom:2px solid var(--color-main-blue);
  display:inline-block;
  transform:rotate(-45deg);
  margin-right:8px;
}

.arrow__black {
  width:8px;
  height:8px;
  border-right:2px solid #000;
  border-bottom:2px solid #000;
  display:inline-block;
  transform:rotate(-45deg);
  margin-right:8px;
}


.btn-bluesub {
  display:inline-block;
  background:#F5FBFF;
  padding:4px 16px;
  font-size:1.2rem;
  color:var(--color-main-blue) !important;
  margin-top:16px;
  border-radius:4px;
}

.btn-yellow {
  display:block;
  max-width:300px;
  background:#FFF100;
  padding:12px 16px;
  margin:32px auto 0;
  text-decoration:none !important;
  border-radius:50px;
  text-align:center;
  font-weight:600;
  box-shadow: 0px 0px 15px -5px #777;
}


























































































/*
color parts *********/
.f-red {
  color:var(--color-main-red)
}

.f-wh {
  color:#fff
}


/*
PC text align *********/
.txt-right {
  text-align:right;
}

.txt-center {
  text-align:center;
}

/*
margin-parts *********/
.mb0 {
  margin-bottom:0 !important;
}

.mt8 {
  margin-top:8px !important;
}

.mt16 {
  margin-top:16px !important;
}

/*
padding-parts *********/
.pt0 {
  padding-top:0 !important;
}

.pb0 {
  padding-bottom:0 !important;
}

.plr0 {
  padding-left:0 !important;
  padding-right:0 !important;
}

.po-re {
  position:relative;
}

.mask-overflow {
  position:relative;
  overflow:hidden;
}


.grecaptcha-badge { visibility: hidden; }
/*
PC block --------------------------------------------*/
.i_p_b {display: block !important;}
.i_t_b {display: none !important;}
.i_s_b {display: none !important;}
.i_pt_b {display: block !important;}
.i_ts_b {display: none !important;}
.dis-none {display:none !important;}

