@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap");
/* ------------------------------------------------------------------------------------------ root */

:root {
  --black: #393327;
  --blue: #95bad5;
  --pink:#F6CCBF;
  --grad: linear-gradient(to right, #95bad5, #f6cbbe);
  --grad_hover: linear-gradient(to right, #f6cbbe, #95bad5);
}

/* --------------------------------------------- リセット */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
body {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  color: var(--black);
  background-color: #fff;
  position: relative;
}
img {
  width: 100%;
  height: auto;
}
p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
}
h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
h2 {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
h3 {
  font-size: 6.3rem;
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー 矢印 */
.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー ヘッダー */
.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  z-index: 99;
}
.header-inner {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: right;
  align-items: center;
  background-color: #fff;
}
.toggle-btn {
  display: none;
}
.header-site-menu .site-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
.site-menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
.site-menu-list li a {
  position: relative;
  display: block;
  width: 125px;
  text-align: center;
  font-size: 1.4rem;
  padding: 0 15px;
  border-left: 1px solid var(--blue);
}
.site-menu-list li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 1px;
  background:var(--blue);
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}
.site-menu-list li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}
.site-menu-list li:last-child {
  border-right: 1px solid var(--blue);
}
.header-site-menu .instagram {
  width: 24px;
  margin: 0 20px;
  transition: .5s;
}
.header-site-menu .instagram:hover {
  transform: scale(1.1);
}
.header-logo {
  width: 128px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 99;
}
.header-site-menu .btn-area {
  position: relative;
}
.header-site-menu .btn-area .btn {
  display: block;
  min-width: 250px;
  line-height: 94px;
  text-align: center;
  color: #fff;
  background: var(--grad);
  font-size: 1.6rem;
  position: relative;
  transition: all .3s;
  z-index: 0;
}
.header-site-menu .btn-area .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad_hover);
  opacity: 0;
  transition: opacity 0.5s;
}
.header-site-menu .btn-area .btn:hover::after {
  opacity: 1;
}
.header-site-menu .btn-area .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/mail_w.png) no-repeat;
  background-size: contain;
}
.header-site-menu .btn-area .dli-chevron-round-right {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translate(-50%, -25%) rotate(45deg);
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー フローティングバナー */
.reserve_bnr {
  width: 144px;
  position: fixed;
  bottom: 100px;
  right: 50px;
  z-index: 9;
  transition: .5s;
}
.reserve_bnr:hover{
  transform: scale(1.1);
}
.reserve_bnr.is-hidden{
  visibility: hidden;
  opacity: 0;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー ポップアップバナー */
/* ==========================
  モーダル（ポップアップ）
========================== */
.js_modalBtnWrap {
  margin: 0 auto;
  text-align: center;
}
.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.js_modalWrap.active {
  animation: modalOpen 0.3s ease forwards;
}
.js_modalWrap.active2 {
  animation: modalClose 0.3s ease forwards;
}
.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.js_modalCont {
  width: 30vw;
}
.js_modalCont > * + * {
  margin-top: 10px;
}
.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
}
.js_modalClose {
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
  background-color: #fff;
  border: 1px solid var(--pink);
  border-radius: 50vh;
}
.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: var(--pink);
  position: absolute;
  top: 50%;
  left: 49%;
  width: 2px;
  height: 15px;
}
.js_modalClose::before {
  transform: translate(-49%,-50%) rotate(45deg);
}
.js_modalClose::after {
  transform: translate(-49%,-50%) rotate(-45deg);
}

@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー メインビジュアル */
.main_visual {
  margin-top: 94px;
  position: relative;
}
.main_img {
  width: 82vw;
  margin-left: auto;
  border-radius: 50px 0 0 0;
  overflow: hidden;
}
.main_text {
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateY(-50%);
}
.main_text p {
  position: relative;
  padding-left: 70px;
  margin-top: 50px;
}
.main_text p::before {
  position: absolute;
  content: "";
  top: 14px;
  left: 0;
  width: 50px;
  height: 1px;
  background: var(--black);
}
.main_text div{
  background: var(--grad);
  width: fit-content;
  padding: 10px 60px;
  margin-top: 20px;
  position: relative;
}
.main_text h1 a{
  display: block;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.main_text div::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
	width: 8px;
	height: 8px;
  border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.main_text div span{
  color: #fff;
  display: block;
  font-weight: 700;
  line-height: 1.5;
}
.main_text div span:first-child{
  font-size: 1.8rem;
}
.main_text div span:last-child{
  font-size: 2.8rem;
}
.main_text img {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 140px;
}
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50px;
  bottom: 150px;
  /*全体の高さ*/
  height: 50px;
  z-index: 10;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: 0;
  top: 0;
  /*テキストの形状*/
  color: var(--blue);
  font-size: 1.4rem;
  font-family: "Lato", sans-serif;
  letter-spacing: -0.1em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 200%;
  left: 5px;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: var(--blue);
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 200%;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 340%;
    opacity: 0;
  }
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー テキストアニメーション */

.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
	0% {opacity:0;}
	100% {opacity:1;}
}
/*////////////////////////////////////////////////// フェードインアニメーション */

.js-fadeUp {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s, transform 1s;
}

.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー バナーエリア */
.inr {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.bnr_area {
  margin: 100px auto;
}
.bnr_area .bnr_item:nth-of-type(1) {
  margin-bottom: 20px;
}
.bnr_area .bnr_item{
  transition: 0.5s;
}

.bnr_area .bnr_item:hover{
  opacity: 0.8;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Vision */
.sec {
  position: relative;
  padding-top: 100px;
  margin-top: 100px;
}
.text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.text-wrap p {
  padding-left: 150px;
  position: relative;
  margin-top: 40px;
}
.text-wrap p::before {
  position: absolute;
  top: 14px;
  left: 50px;
  content: "";
  width: 50px;
  height: 1px;
  background: var(--black);
}
.title{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.title p {
  display: inline;
  font-family: "Lato", sans-serif;
  font-size: 20rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  background-size: 200%;
  background-position: 1% 50%;
  transition: 1s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}
/* フェードイン(スクロールした後) */
.title.is-inview p{
  background-position: 100% 50%;
}
.img-wrap{
    position: relative;
    padding-top: 80px;
    margin-top: 100px;
}
.img-wrap .img{
  overflow: hidden;
}
.img-wrap .img:first-child{
    display: block;
    width: 32vw;
    position: absolute;
    top: 0;
    left: 15%;
    z-index: 1;
}
.img-wrap .img:last-child{
    display: block;
    width: 60vw;
    margin-left: auto;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Contact Area */
.contact_area{
    background: var(--grad);
    padding: 50px 20px;
    color: #fff;
    text-align: center;
    margin: 100px auto;
}
.contact_area p:nth-of-type(1){
    font-size: 2.4rem;
    font-weight: 700;
}

.contact_area .btn_wrap{
  display: flex;
  column-gap: 80px;
  justify-content: center;
  margin-top: 20px;
}
.contact_area .btn_wrap a{
    display: inline-block;
    min-width: 280px;
    line-height: 60px;
    font-weight: 700;
    position: relative;
    transition: .5s;
}
.contact_area .btn_wrap a.mail{
  background-color: #fff;
  color: var(--blue);
  font-weight: 700;
}
.contact_area .btn_wrap a.mail:hover{
  background: var(--blue);
  color: #fff;
}

.contact_area .btn_wrap a::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: .5s;
}

.contact_area .btn_wrap a.mail::before{
  background: url(../images/mail_b.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.contact_area .btn_wrap a.mail:hover::before{
  background: url(../images/mail_hover.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.contact_area .btn_wrap a.line::before{
  background: url(../images/line_icon.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.contact_area .btn_wrap a.line:hover::before{
  background: url(../images/line_icon_hover.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.contact_area .btn_wrap a.line{
  background-color:var(--blue);
}
.contact_area .btn_wrap a.line:hover{
  background-color:#fff;
  color: var(--blue);
}
.contact_area .btn_wrap a::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
	width: 6px;
	height: 6px;
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.contact_area .btn_wrap a.mail::after{
  border-top: 1px solid var(--blue);
	border-right: 1px solid var(--blue);
}
.contact_area .btn_wrap a.mail:hover::after{
  border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.contact_area .btn_wrap a.line::after{
  border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.contact_area .btn_wrap a.line:hover::after{
  border-top: 1px solid var(--blue);
	border-right: 1px solid var(--blue);
}
.contact_area .btn_wrap a span{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(-50%, -25%) rotate(45deg);
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Message */
.link-btn{
  display: inline-block;
  min-width: 280px;
  line-height: 60px;
  border: 2px solid;
  border-image: var(--grad) 1;
  text-align: center;
  position: relative;
  margin: 40px 60px 0 0;
}
.link-btn::before{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--pink);
	border-right: 1px solid var(--pink);
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.link-btn:hover::before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
.link-btn span{
  font-weight: 700;
  background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.link-btn:hover{
  border-image: var(--grad_hover) 1;
}
.link-btn:hover span{
  background: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.link-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad_hover);
  opacity: 0;
  transition: opacity 0.5s;
}

/* マウスホバー時に透明化を解除 */
.link-btn:hover::after {
  opacity: 1;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー merit_box */
.merit_box{
  background: var(--grad);
  color: #fff;
  padding: 80px 20px;
  margin: 100px 0 0;
}
.merit-list{
  display: flex;
  justify-content: center;
  column-gap: 50px;
}
.merit-top{
  margin-bottom: 50px;
}
.merit-list li{
  width: 240px;
}
.merit-list li img{
  display: block;
  width: 210px;
  margin: 0 auto 20px;
}
.merit-list li dd{
  font-size: 1.4rem;
  line-height: 1.5;
}
.merit-top li:nth-of-type(1){
  transition-delay: .3s;
}
.merit-top li:nth-of-type(2){
  transition-delay: .4s;
}
.merit-bottom li:nth-of-type(1){
  transition-delay: .5s;
}
.merit-bottom li:nth-of-type(2){
  transition-delay: .6s;
}
.merit-bottom li:nth-of-type(3){
  transition-delay: .7s;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Campeign */
.cam_area{
  margin: 100px auto;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Price */
.price-list{
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-top: 60px;
}
.price-list dt{
  width: 55%;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-list dt:not(:nth-of-type(7)){
  border-bottom: 1px solid #ccc;
}
.price-list dt span{
  display: block;
  font-size: 1.2rem;
}
.price-list dd:not(:last-child){
  border-bottom: 1px solid #ccc;
}
.price-list dd{
  width: 45%;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  min-height: 8rem;
  color: #666;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-list dd span{
  font-size: 1rem;
  display: block;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー FAQ */

.accordion__list {
  max-width: 1040px;
  margin: 50px auto 0;
  padding: 20px;
}
.accordion__head {
  position: relative;
  width: 100%;
  padding: 20px 20px 20px 40px;
  cursor: pointer;
  border-top: 1px solid var(--blue);
}
.accordion__item:nth-last-child(1){
  border-bottom: 1px solid var(--blue);
}
.accordion__head::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 3rem;
  font-family: "Lato", sans-serif;
}

/*
  アコーディオンの開閉ボタンの右側に「+」を表示。
*/
.accordion__head::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: 2rem;
}

/*
  アコーディオンが開いた際に、
  開閉ボタンの右側に「+」を「-」に変更する。
*/
.accordion__item.active .accordion__head::after {
  content: "ー";
  right: 13px;
  font-size: 1.6rem;

}

/*
  アコーディオンの閉じている部分の装飾。
  height: 0; overflow: hidden;にすることで、
  通常時は表示されないようにする。
*/
.accordion__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding: 0 10px 0 40px;
  transition: all .25s ease;
  position: relative;
}
.accordion__body::before{
  content: "A";
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--blue);
  font-size: 3rem;
  font-family: "Lato", sans-serif;

}

/*
  アコーディオンが開いた際に、
  heightを0からautoに、paddingの上下を0から10に。
*/
.accordion__item.active .accordion__body {
  height: auto;
  padding: 10px 10px 10px 40px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Our Feature */
.feature{
  position: relative;
  padding-bottom: 100px;
}
.feature::before{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background: var(--grad);
  width: 100%;
  height: 68%;
  opacity: 0.3;
}
.point-list{
  max-width: 1080px;
  display: flex;
	flex-wrap: wrap;
  justify-content: space-between;
  margin: 100px auto 0;
  position: relative;
  padding: 0 40px;
	row-gap:40px;
}
.point-list li{
  position: relative;
  width: calc(50% - 40px);
  padding-top: 20px;
}
.point-list li:nth-of-type(1){
  transition-delay: .3s;
}
.point-list li:nth-of-type(2){
  transition-delay: .5s;
}
.point-list li:nth-of-type(3){
  transition-delay: .7s;
}
.point-list li:nth-of-type(4){
  transition-delay: .9s;
}
.point-list li p{
  position: absolute;
  top: 0;
  left: -17px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2rem;
  background: var(--grad);
  color: #fff;
  padding: 8px 5px;
}
.point-list li dt{
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 30px 0 20px;
}
.point-list li dd{
  font-size: 1.4rem;
  line-height: 1.5;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Access */
.access{
  margin-top: 50px;
}
.access-inr{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.access-inr .access-left{
  width: 45%;
}
.access-inr .access-left img{
  width: 50%;
}

.access-inr .access-right{
  width: 50%;
}
/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-inr .access-tx{
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.access-inr .access-tx dl{
  width: 50%;
}
.access-inr .access-tx dt{
  font-size: 1.8rem;
  line-height: 2;
  color: var(--blue);
}
.access-inr .access-tx dd{
  font-size: 1.6rem;
  line-height: 2;
}
.access-inr .access-tx dd .is-small {
  font-size: 1.2rem;
  line-height: 1.6;
  display: inline-block;
  margin-top: 1em;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Voice */
.voice{
  padding-bottom: 50px;
}
.voice-slide{
  margin-top: 100px;
  padding: 60px 0;
  background: var(--grad);
}
.voice .swiper-slide{
  background-color: #fff;
  padding: 40px 50px;
}
.voice-inr{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.voice-inr .voice-icon{
  width: 30%;
  text-align: center;
}
.voice-inr .voice-icon img{
  width: 70%;
}
.voice-inr .voice-icon dt{
  font-size: 1.4rem;
  margin-top: 30px;
  line-height: 1.4;
}
.voice-inr .voice-icon dt span::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: url(../images/sms.svg) no-repeat;
  background-position: center;
  background-size: contain;
}
.voice-inr .voice-icon dt span{
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}
.voice-inr .voice-tx{
  width: 60%;
}
.voice-inr .voice-tx p{
  line-height: 1.8;
}
.swiper-pagination-bullet-active {
  background: var(--blue)!important;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー Instagram */
.inst-inr{
  margin-top: 50px;
}
.inst-inr .link-btn{
  margin: 20px 0 0;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー footer */

.footer{
  background: var(--grad);
  margin-top: 100px;
}
.footer-inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.footer-left{
  width: 70%;
  display: flex;
  justify-content: space-between;
  padding: 80px 100px 80px 0;
  border-right: 1px solid #fff;
}
.footer-left ul li a{
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.5;
  position: relative;
}
.footer-left ul li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -5px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background:#fff;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}
.footer-left ul li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}

.footer-right{
  width: 20%;
  padding: 80px 0;
}
.footer-btn{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.footer-btn a{
  display: block;
  min-width: 280px;
  line-height: 60px;
  border: 2px solid;
  border-image: var(--grad) 1;
  background-color: #fff;
  text-align: center;
  position: relative;
  z-index: 0;
}
.footer-btn a:hover{
  border-image: var(--grad_hover) 1;
}
.footer-btn a::before{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--pink);
	border-right: 1px solid var(--pink);
	-webkit-transform: rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.footer-btn a:hover:before{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.footer-btn a span{
  font-weight: 700;
  background: var(--grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.footer-btn a:hover span{
  background: #fff;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
.footer-btn a::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--grad_hover);
  opacity: 0;
  transition: opacity 0.5s;
}
.footer-btn a:hover::after {
  opacity: 1;
}
.copy-wrap{
  border-top: 1px solid #fff;
  padding: 50px 0;
}
.copyright{
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p{
  font-size: 1.4rem;
  color: #fff;
}
.copyright a{
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50vh;
  position: relative;
}
.copyright a::before{
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,-30%);
	box-sizing: border-box;
	width: 5px;
	height: 5px;
	border: 5px solid transparent;
	border-bottom: 5px solid #fff;
}
.copyright a::after{
  content: '';
  position: absolute;
  top: 55%;
	left:50%;
  transform: translate(-50%,-55%);
  width: 1px;
	height: 10px;
	border-left: 2px solid #fff;
}
@media screen and (max-width: 1200px) {
  .header-logo {
    width: 100px;
    top: 40px;
    left: 40px;
}
.toggle-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 99;
  background: var(--grad);
}
.toggle-btn-line {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 12px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 50%;
}
.toggle-btn-line-top {
  top: 17px;
}
.toggle-btn-line-center {
  top: 23px;
}
.toggle-btn-line-bottom {
  top: 29px;
}
.close .toggle-btn-line-top {
  top: 17px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.close .toggle-btn-line-center {
  opacity: 0;
}
.close .toggle-btn-line-bottom {
  top: 29px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.toggle-btn:hover {
  cursor: pointer;
}
.header-site-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  z-index: 10;
  background: #fff;
}
.header-site-menu .site-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
.site-menu-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.site-menu-list li:last-child {
  border-right: none;
}
.site-menu-list li{
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.site-menu-list li a{
  font-size: 1.4rem;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: left;
  border-left: none;
  border-bottom: 1px solid var(--blue);
}
	.site-menu-list li a:hover::after {
  transform: scale(0, 1);/*X方向にスケール拡大*/
}

.header-site-menu .instagram {
  margin: 30px auto 30px 40px;
}
.header-site-menu .btn-area {
  position: relative;
  margin: 0 auto 0 0;
  padding: 0 40px;
  width: 100%;
}
.header-site-menu .btn-area .btn {
  line-height: 48px;
  font-size: 1.4rem;
  width: 100%;
  min-width: 0;
}
.header-site-menu .btn-area .btn::before {
  width: 20px;
  height: 20px;
}
.voice .swiper-slide{
  padding: 40px;
}
.voice-inr .voice-icon{
  width: 35%;
}
.voice-inr .voice-icon img{
  width: 65%;
}

.voice-inr .voice-tx p{
  font-size: 1.4rem;
}

.footer-left {
  width: 60%;
  padding: 80px 60px 80px 0;
}
.footer-right {
  width: 30%;
}
}
@media screen and (max-width: 1000px) {
  p {
    font-size: 1.5rem;
  }

  .header-logo {
    width: 80px;
    top: 20px;
    left: 20px;
}
h1 {
  font-size: 3rem;
}
.main_visual {
  margin-top: 120px;
}
.main_text p {
  padding-left: 50px;
}
.main_text p::before {
  width: 30px;
}
.sec {
  padding-top: 55px;
}
  .title p {
    font-size: 13rem;
  }
  .contact_area .btn_wrap a {
    font-size: 1.5rem;
    min-width: 200px;
  }
  .contact_area .btn_wrap a::before {
    left: 30px;
    width: 20px;
    height: 20px;
}
  .voice .swiper-slide{
    padding: 20px;
  }
  .voice-inr .voice-icon{
    width: 35%;
  }
  .voice-inr .voice-icon dt {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .voice-inr .voice-icon img{
    width: 65%;
  }

  .voice-inr .voice-tx p{
    font-size: 1.4rem;
  }

  .access-inr {
    display: block;
}
.access-inr .access-left {
  display: flex;
  align-items: flex-start;
  column-gap: 50px;
  width: 100%;
}
.access-inr .access-tx {
  margin-top: 0;
  column-gap: 50px;
}
.access-inr .access-tx dd {
  line-height: 1.6;
}
.access-inr .access-right {
  width: 100%;
  margin-top: 50px;
}
.footer-right {
  width: 35%;
}
.footer-btn a {
  font-size: 1.5rem;
  min-width: 200px;
}
}
@media screen and (max-width: 767px) {
  .sec {
    padding-top: 25px;
}
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  p{
    font-size: 1.2rem;
  }
  .header-logo {
    width: 55px;
}
.main_visual {
  margin-top: 150px;
}
  .main_text{
    position: static;
    transform: translate(0);
  }
  .main_text div {
    margin: 20px auto 0;
    text-align: center;
  }
  .main_text div span:first-child {
    font-size: 1.4rem;
}
.main_text div span:last-child {
  font-size: 1.8rem;
}
.main_text img {
  left: 0;
}
.main_text h1 a{
  font-size: 2.2rem;
}
  h1 {
    font-size: 2.2rem;
    padding-left: 40px;
}
h2{
  font-size: 2.4rem;
}
.main_text p::before {
  width: 20px;
}
.main_text p {
  padding: 0 20px 0 30px;
  font-size: 1.2rem;
  margin: 20px 0 0 40px;
}
  .main_img {
    width: 90vw;
    margin-top: 50px;
}
.scrolldown1 {
  left: 15px;
}
.scrolldown1 span {
  font-size: 1rem;
}
.scrolldown1::after {
  top: 150%;
  height: 30px;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 150%;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 340%;
    opacity: 0;
  }
}
.js_modalCont {
  width: 70vw;
}
  .reserve_bnr {
    width: 100px;
    bottom: 15px;
    right: 20px;
}
  .title p {
    font-size: 7rem;
  }
  .text-wrap p::before {
    left: 0;
    width: 20px;
  }
  .text-wrap p {
    padding: 0 20px 0 30px;
    margin: 20px 0 0 40px;
}
.img-wrap {
  padding-top: 100px;
  margin-top: 40px;
}
.img-wrap .img:first-child{
  width: 50vw;
  height: 50vw;
  left: 5%;
}
.img-wrap .img:last-child {
  width: 80vw;
  height: 200px;
}
.contact_area {
  padding: 40px 20px 20px;
}
.contact_area p:nth-of-type(1) {
  font-size: 1.8rem;
  line-height: 1.4;
}
.contact_area .btn_wrap{
  flex-direction: column;
  row-gap: 15px;
}
.contact_area .btn_wrap a {
  font-size: 1.3rem;
  min-width: 180px;
  line-height: 42px;
}
.link-btn {
  font-size: 1.2rem;
  line-height: 42px;
  margin: 40px auto 0;
}
.merit-list {
  flex-wrap: wrap;
  column-gap: 0;
  justify-content: space-between;
}
.merit-bottom{
  row-gap: 50px;
}
.merit-list li {
  width: 46%;
}
.merit-list li img {
  width: 80%;
}
.merit-list li dd {
  font-size: 1.2rem;
}
.price-list {
  width: 90%;
}
.price-list dt {
  font-size: 1.2rem;
  width: 60%;
}
.price-list dd {
  font-size: 1.2rem;
  width: 40%;
}
.accordion__head {
  padding: 20px 20px 20px 25px;
}
.accordion__head::before {
  font-size: 2rem;
}
	.accordion__head p{
		letter-spacing: 0.01em;
	}
.accordion__body::before {
	font-size: 2rem;
}
.accordion__body {
  padding: 0 10px 0 25px;
}

.accordion__body p{
  letter-spacing: 0.01em;
}
.accordion__item.active .accordion__body {
  padding: 10px 10px 10px 25px;
}
.feature{
  padding-top: 50px;
}
	.feature::before {
		height: 84%
	}
.point-list{
  flex-wrap: wrap;
  row-gap: 50px;
}
.point-list li{
  width: 100%;
}
.access-inr .access-tx {
  margin-top: 40px;
}
.access-inr .access-left {
  display: block;
}
	.access-inr .access-left img{
  width: 100%;
}
.access-inr .access-tx dl{
  width: 50%;
}
.access-inr .access-tx {
  flex-direction: column;
  gap: 30px;
}
.access-inr .access-tx dl{
  width: 100%;
}
.access-inr .access-tx dt {
  font-size: 1.4rem;
}
.access-inr .access-tx dd {
  font-size: 1.2rem;
}
.access-inr .access-tx dd .is-small {
  font-size: 1rem;
}
.voice-inr{
  flex-wrap: wrap;
}
.voice-slide{
  padding: 60px 20px;
}
.voice-inr .voice-icon{
  width: 100%;
}
.voice-inr .voice-icon img{
  width: 70%;
}
.voice-inr .voice-tx{
  width: 100%;
}
.voice-inr .voice-tx p{
  font-size: 1.4rem;
  line-height: 1.4;
}
.footer-inner {
  flex-direction: column;
}
.footer-left {
  width: 100%;
  flex-direction: column;
  border-right: none;
  padding: 20px 0 0 0;
}
.footer-left ul li{
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
}
.footer-left ul li a{
  font-size: 1.4rem;
}
.footer-right {
  width: 100%;
}
.footer-btn a {
  font-size: 1.4rem;
  min-width: 200px;
}
}
@media screen and (max-width: 500px) {
  .merit-list {
    row-gap: 50px;
  }
  .merit-list li {
    width: 80%;
    margin: 0 auto;
  }
}