@charset "utf-8";

/*------------------------------------------------------------------------------

##　reset

--------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style:normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}
 
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
 
html{
  overflow-y: scroll;
  line-height: 1.15;
	font-size: 62.5%;
}
 
blockquote, q {
    quotes: none;
}
 
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
 
input, textarea{
    margin: 0;
    padding: 0;
}
 
ol, ul{
    list-style:none;
}

table{
    border-collapse: collapse;
    border-spacing:0;
}
 
caption, th{
    text-align: left;
}
 
a:focus {
    outline:none;
}
 
.both{
    clear:both;
}
 
.inline_block {  
    display: inline-block;  
    *display: inline;  
    *zoom: 1;  
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

p { line-height: 1.7;}

.mt10   { margin-top: 10px !important;}
.mt20   { margin-top: 20px !important;}
.mt30   { margin-top: 30px !important;}
.mt40   { margin-top: 40px !important;}
.mt1em { margin-top: 1em !important;}
.text-L { text-align: left !important;}
.text-R { text-align: right !important;}
.text-C { text-align: right !important;}

/* グローバル変数 */
:root {
  --font-en: "Arvo", serif;
	--font-go: "Zen Kaku Gothic New", sans-serif;
	--font-color-base: #2b2b2b;
}


/*------------------------------------------------------------------------------

　##　base layout

--------------------------------------------------------------------------------*/

/*body*/
body {
	margin: 0;
  color: #333;
	font-size: 1.4em;
	font-family: "Zen Kaku Gothic New", "游ゴシック" , "Yu Gothic" ,"Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  font-weight: 400;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
	background: url(../images/common/bg_ptn_01.jpg) repeat center top;
}

a {
	color: #3daec9;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

.main-container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	box-sizing: content-box;
	position: relative;
	overflow-wrap: break-word;
	z-index: 1;
}

.container {
	position: relative;
}

/*------------------------------------------------------------------------------
　　loading
--------------------------------------------------------------------------------*/
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 20000;
	/*display: flex;
  align-items: center;
  justify-content: center;*/
}
#loader-bg-low {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 20000;
}
#loading-txt {
  width: 100%;
	width: 100vw;
	height: 100%;
  position: relative;
	display: inline-block;
	z-index: 2;
}
#loading-txt .loading-item {
	width: 120px;
	display: inline-block;
	position: absolute;
  top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
}
#loading-txt .loading-item img {
	width: 100%;
}
.close #loading-txt .loading-item {
	transition: all 1.5s ease 0.3s;
	animation: blurtxtanime 0.5s ease-out forwards 1.2s;
}
@keyframes blurtxtanime {
  from {
		/*filter: blur(0);*/
		opacity: 1.0;
  }
  to {
		filter: blur(50px);
		opacity: 0;
  }
}

@media only screen and (min-width:768px) {
#loading-txt .loading-item {
	width: 150px;
}
}
@media only screen and (min-width:1024px) {
#loading-txt .loading-item {
	width: 180px;
}
}

/*#loading-txt .loading-item .loading-copy span.wrap {
  overflow: hidden;
  display: block;
}
#loading-txt .loading-item .loading-copy span.wrap span {
  position: relative;
	bottom: -1.5em;
}
#loading-txt .loading-item .loading-copy span.wrap span.move {
	animation: uptxtanime 0.5s ease-out forwards 0.1s;
}*/

/*#loading-txt .loading-item .loading-logo {
	width: 70%;
  max-width: 100px;
	max-height: 130px;
  margin: 25px auto 0;
}*/
#loader-bg .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  /*transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);*/
	z-index: 0;
	transform: scale(1, 0);
  transform-origin: 0 0;
}
#loader-bg.close .cover {
	animation: loadercover 2.6s cubic-bezier(0.87, 0, 0.13, 1) forwards;
}
#loader-bg.close .cover.right {
	animation-delay: 0.2s;
}
@keyframes loadercover {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
}
@media screen and (max-width:767px) and (orientation: landscape) {
    
}
@media only screen and (min-width:768px) {
	
}
@media only screen and (min-width:1024px) {

}


/*------------------------------------------------------------------------------
　　header
--------------------------------------------------------------------------------*/
.globalheader {
	width: 100%;
  height: 80px;
}
.globalheader .headerwrap {
	width: 100%;
	position: relative;
	z-index: 9999; 
	box-sizing: border-box;
}
.globalheader .headerwrap .h-logo {
	width: 230px;
	position: absolute;
	top: 20px;
	left: 20px;
	display: inline-block;
}
@media only screen and (min-width:768px) {
.globalheader {
  height: 100px;
}
.globalheader .headerwrap .h-logo {
	width: 300px;
	position: absolute;
	top: 30px;
	left: 30px;
}
}
@media only screen and (min-width:1024px) {
.globalheader {
	height: 150px;
}
.globalheader .headerwrap {
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	transition: all 0.5s ease;
}
.globalheader .headerwrap .h-logo {
	width: min(24.4140vw,470px);
	position: fixed;
	top: 30px;
	left: 30px;
}
}
@media only screen and (min-width:1200px) {

}

/*------------------------------------------------------------------------------
　　globalnav
--------------------------------------------------------------------------------*/
.fat-nav {
  display: block;
}
.headerwrap .gnavi {
	display: none;
}
.headerwrap .sub-gnavi {
	display: none;
}
.fat-nav.active {
	display: block;
}

/*fatnav css*/
.hamburger {
	display: block;
  width: 60px;
  height: 60px;
  padding: 28px 0 0;
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 10000;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
	box-sizing: border-box;
	border-radius: 9999px;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	background: #cfffff;
}
.hamburger__icon {
  width: 40px;
  margin: 0 auto 0 10px;
  position: relative;
}
/*.hamburger:hover .hamburger__icon {
  width: 40px;
}*/
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  height: 2px;
  background-color: #3daec9;
  transition-property: background-color, transform, width;
  transition-duration: 0.4s;
}
.hamburger__icon:before, .hamburger__icon:after {
  width: 40px;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -7px;
}
.hamburger__icon:after {
  top: 7px;
}
.hamburger__icon {
  top: 0;
	/*background: transparent;*/
}
.hamburger.active {
  visibility: visible !important;
	background: rgba(255, 255, 255, 1);
}
.hamburger.active .hamburger__icon {
	width: 0;
  /*background-color: transparent;*/
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #3daec9;
}
.hamburger.active .hamburger__icon:before {
  transform: translateY(7px) rotate(225deg);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(-7px) rotate(-225deg);
}

.fat-nav {
	top: 0;
  left: 0;
  z-index: 10000;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(200, 224, 224, 1);
  transform: scale(1.0);
  transition: transform .6s cubic-bezier(.87,0,.13,1) 0s;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
}
.fat-nav__wrapper {
	width: 100%;
  height: 100%;
	padding: 90px 0;
  display: block;
  table-layout: fixed;
  text-align: center;
  background: rgba(229, 247, 247, 1);
	transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	transform: none !important;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav.active .fat-nav__wrapper {
  height: 100%;
  margin-left: 0;
  transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.fat-nav ul {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 20px 0 0;
  text-align: left;
}
.fat-nav ul li {
  width: 100%;
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0 15px;
  position: relative;
	box-sizing: border-box;
}
/* .fat-nav ul li:first-child::before {
	width: calc(100% - 30px);
	height: 1px;
	content: "";
	display: inline-block;
	background-color: #555;
	position: absolute;
	top: -1px;
	right: 15px;
}*/
.fat-nav ul li::after {
	width: calc(100% - 30px);
	height: 2px;
	content: "";
	display: inline-block;
	background-image: radial-gradient(circle, #b4d7d7 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 12px 2px;
	position: absolute;
	left: 15px;
	bottom: 0;
} 
.fat-nav ul li a {
  width: 100%;
  padding: 25px 20px;
  color: #3daec9;
  letter-spacing: 0.1em;
  display: block;
	font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  transition: all 0.3s ease;
}
.fat-nav ul li a:hover {
  color: #fff;
	background-color: #3daec9;
}

.fat-nav ul li.level--first span.en {
  color: #fff;
  letter-spacing: 0.1em;
	font-size: 20px;
	font-weight: 400;
	font-family: 'Bebas Neue', cursive;
  text-decoration: none;
	display: block;
}
.fat-nav ul li.level--first span.jp {
  padding: 5px 0 0;
  color: #fff;
  letter-spacing: 0.1em;
	font-size: 12px;
	font-weight: 400;
  text-decoration: none;
	display: block;
}

/*sns*/
.fat-nav .sns {
	width: calc(100% - 30px);
	max-width: 500px;
	margin: 50px auto 0;
	padding: 0 0 50px;
	text-align: center;
	display: flex;
	justify-content: space-between;
}
.fat-nav .sns .item {
	width: 48%;
	border-radius: 9999px;
	overflow: hidden;
}
@media only screen and (min-width:768px) {
	.hamburger {
		top: 15px;
		right: 25px;
	}
	.fat-nav.active .fat-nav__wrapper {
		height: 100%;
		transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
	}
	.fat-nav ul {
		padding: 30px 0 30px;
	}
}
@media only screen and (min-width:1024px) {
	.hamburger {
		display: none;
	}
	.fat-nav {
		display: none;
	}
	.fat-nav.active {
		display: none !important;
	}
	.headerwrap .gnavi {
		display: block;
	}

	/*--------------------gnavi*/
	.headerwrap .gnavi {
    height: 90px;
		padding: 0;
		box-sizing: content-box;
		text-align: left;
		position: fixed;
		top: 30px;
		right: 20px;
		display:  inline-block;
	}
  .globalheader .headerwrap .h-inner.fixed .gnavi {
    position: fixed;
    top: 0;
    z-index: 10000;
  }
	.gnavi ul {
		box-sizing: border-box;
		display:flex;
		flex-wrap:wrap;
		align-content: center;
		align-items:flex-start;
	}
	.gnavi ul li {
		display:  inline-block;
		letter-spacing:  normal;
		padding: 0;
		position: relative;
	}
	.gnavi ul li a {
		padding: 0 15px;
		display: block;
		font-size: 1.4rem;
		font-family: var(--font-go);
		font-weight: 700;
		line-height: 90px;
		letter-spacing: 0.05em;
		color: #222;
		transition: all 0.2s ease;
		z-index: 1;
	}
	.h-in .gnavi ul li a {
		color: #fff;
	}
	.gnavi ul li:hover,
	.gnavi ul li a:hover {
		text-decoration: none;
		color: #e47896;
	}
	/*--------------------お問い合わせボタン*/
	.gnavi .h-contact {
		width: 220px;
		position: fixed;
		right: 15px;
		bottom: 15px;
	}
	.gnavi .h-contact a {
		padding: 20px 0;
		display: block;
		background-color: #d4aa6c;
		font-size: 20px;
		font-weight: 500;
		letter-spacing: 0.1em;
		line-height: 1.0;
		color: #fff;
		text-decoration: none;
		text-align: center;
		border-radius: 9999px;
		overflow: hidden;
		transition: all 0.2s ease;
	}
	.gnavi .h-contact a span {
		font-size: 12px;
		font-weight: 500;
		letter-spacing: normal;
	}
	.gnavi .h-contact a:hover {
		background-color: #e47896;
	}
}
@media only screen and (min-width:1280px) {
	.headerwrap .gnavi {
		top: 30px;
		right: 240px;
		display:  inline-block;
	}
	.gnavi .h-contact {
		position: fixed;
		right: 20px;
		bottom: inherit;
		top: 35px;
	}
}
/*------------------------------------------------------------------------------
　　footer
--------------------------------------------------------------------------------*/

/*footerArea
--------------------------------------*/
.footerArea {
	margin: 50px 0 0;
	padding: 40px 20px 30px;
}
.footerArea .innerwrap { 
	position: relative;
}
.footerArea .innerwrap .logo {
  max-width: 180px;
	margin: 0 auto;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.footerArea .innerwrap .sns {
  width: 100%;
	max-width: 500px;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.footerArea .innerwrap .sns .item {
  width: 60%;
	max-width: 250px;
	margin: 0 auto;
}
.footerArea .innerwrap .sns .item a {
  display: block;
	border-radius: 9999px;
	overflow: hidden;
}
.footerArea .innerwrap .sns .item:nth-child(n+2) {
  margin: 10px auto 0;
}
.footerArea footer { 
	text-align: center;
}
.footerArea footer .management a { 
	font-size: 14px;
	color: #fff;
}
.footerArea footer .copyright {
	margin: 10px 0 0;
	font-size: 14px;
  font-family: var(--font-go);
  line-height: 1.0;
  color: #fff;
}
@media only screen and (min-width:768px) {
	.footerArea {
		padding: 60px 20px;
	}
	.footerArea .innerwrap .sns {
		padding: 30px 0 50px;
		display: flex;
		justify-content: space-between;
	}
	.footerArea .innerwrap .sns .item {
		width: 49%;
		max-width: 250px;
		margin: 0;
	}
	.footerArea .innerwrap .sns .item:nth-child(n+2) {
		margin: 0;
	}
}
@media only screen and (min-width:1024px) {
	.footerArea {
		padding: 80px 20px;
	}
	.footerArea .innerwrap .sns {
		padding: 30px 0 70px;
	}
	.footerArea .innerwrap .sns .item a {
		transition: all 0.3s ease;
	}
	.footerArea .innerwrap .sns .item a:hover {
		transform: translateY(-5px);
	}
}

/*------------------------------------------------------------------------------

　##　共通

--------------------------------------------------------------------------------*/

/*-----------見出しタイトル共通----------*/

/*---md01---*/
.md01 {
	text-align: center;
}
.md01 .en {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding: 3px 25px;
	font-size: 12px;
  font-family: var(--font-en);
	font-weight: 400;
  line-height: 1.0;
  color: #fff;
	background: linear-gradient(to right,#19a9cc,#3abaac);
	border-radius: 9999px;
}
.md01 h2 {
	margin: 3px 0 0;
	font-size: 18px;
  font-family: var(--font-go);
	font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: #222;
}
@media only screen and (min-width:768px) {
	.md01 .en {
		padding: 3px 30px;
		font-size: 14px;
	}
	.md01 h2 {
		margin: 3px 0 0;
		font-size: 24px;
	}
}
@media only screen and (min-width:1024px) {
	.md01 .en {
		padding: 4px 50px;
		font-size: 18px;
	}
	.md01 h2 {
		margin: 3px 0 0;
		font-size: 32px;
	}
}

/*sp br削除*/
.br-pc {
	display: none;
}
.br-tb {
	display: none;
}
.br-sp {
	display: inline;
}
@media only screen and (min-width:768px) {
.br-pc {
	display: inline;
}
.br-sp {
	display: none;
}
}
@media only screen and (min-width:1024px) {
.br-pc {
	display: inline;
}
.br-tb {
	display: inline;
}
.br-sp {
	display: none;
}
}

/*----scroll animation-----*/
.in-mv-left{
	opacity: 0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(40px,0);
	transition: all 0.8s ease 0s;
}
.mv-left{
	opacity: 1.0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(0,0);
	transition: all 0.8s ease 0.1s;
}
.in-mv-right{
	opacity: 0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(-40px,0);
	transition: all 0.8s ease 0s;
}
.mv-right{
	opacity: 1.0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(0,0);
	transition: all 0.8s ease 0.1s;
}

.in-mv-up{
	opacity: 0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(0,30px);
	transition: all 1s ease 0s;
}
.mv-up{
	opacity: 1.0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(0,0);
	transition: all 1s ease 0.1s;
}

.in-mv-bl{
	opacity: 0;
	transition: all 0.8s ease 0.1s;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(0,20px);
	-webkit-filter: blur(10px);
	filter: blur(10px);
}
.mv-bl{
	opacity: 1.0;
	-webkit-transform: rotate(0.0001deg);
	transform: translate(0,0);
	transition: all 0.8s ease 0.1s;
	-webkit-filter: none;
	filter: none;
}

.in-mv-cover {
	position: relative;
	overflow-x: hidden;
}
.in-mv-cover::before{
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fdfcf8;
	z-index: 1;
  transition: 0.8s cubic-bezier(1, 0, 0, 1) 0.4s;
}
.in-mv-cover::after{
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background-color: #fdfcf8;
	z-index: 2;
  transition: 0.8s cubic-bezier(1, 0, 0, 1) 0.2s;
}
.in-mv-cover.visible::before,
.in-mv-cover.visible::after{
	right: -100%;
	left: auto;
}

.no-blind { position: relative; visibility: hidden; -webkit-transition: visibility 0s 0.4s; transition: visibility 0s 0.4s; }
.no-blind span { display: block;}
.in-blind { visibility: visible; }

.in-blind::after,
.in-blind02::after {
	height: 100%;
	width: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	background-color: #fff;
	animation: blind 1.0s cubic-bezier(1, 0, 0, 1) 0s forwards;
}

.in-blind::after {
	background-color: #fff;
}
.in-blind02::after {
	background-color: #fff;
}

.in-blind-item {
	animation: blind-in 1.0s ease-in-out 0s forwards;
}

@-webkit-keyframes blind { 0% { -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }
  45% { -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }
  50% { -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }
  100% { -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }
}
@keyframes blind {
  0% { -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }
  45% { -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0; }
  50% { -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }
  100% { -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0; }
}

@-webkit-keyframes blind-in { 
  0% { opacity: 0; }
  50% { opacity: 0; }
  75% { opacity: 1.0;}
  100% { opacity: 1.0; }
}
@keyframes blind-in { 
  0% { opacity: 0; }
  50% { opacity: 0; }
  75% { opacity: 1.0;}
  100% { opacity: 1.0; }
}

/*----in-mv-uptxt----*/
.in-mv-uptxt span.wrap {
	overflow: hidden;
	display: block;
}
.in-mv-uptxt span.wrap span {
	bottom: -1.5em;
	position: relative;
}
.mv-uptxt span.wrap{
	overflow: hidden;
	display: block;
}
.mv-uptxt  span.wrap span {
	position: relative;
	bottom: -1.5em;
}
.mv-uptxt  span.wrap span.move {
	animation: uptxtanime 0.3s ease-out forwards 0.1s;
}
@keyframes uptxtanime {
  from {
    bottom: -1.5em;
  }
  to {
    bottom: 0em;
  }
}

/*----in-mv-bl-uptxt----*/
.in-mv-bl-uptxt {
	overflow: hidden;
	display: block;
}
.in-mv-bl-uptxt span {
	bottom: -1.5em;
	position: relative;
}
.mv-bl-uptxt {
	overflow: hidden;
	display: block;
}
.mv-bl-uptxt span {
	position: relative;
	bottom: -1.5em;
	animation: bluptxtanime 0.7s ease-out forwards 0.2s;
}
@keyframes bluptxtanime {
  from {
    bottom: -1.5em;
  }
  to {
    bottom: 0em;
  }
}

/*----in-mv-bg----*/
.in-mv-bganime.mvitem {
	transform: translateX(-100%);
	transition: all 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
}
.mv-bganime.mvitem {
	transform: translateX(0);
}
.in-mv-bganime.mvitem.toleft {
	transform: translateX(100%);
}
.mv-bganime.mvitem.toleft {
	transform: translateX(0);
}
/*----in-mv-bg 疑似要素----*/
.in-mv-bganime::after {
	transform: translateX(-100%);
	transition: all 0.8s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
}
.mv-bganime::after {
	transform: translateX(0);
}
.in-mv-bganime.toleft::after {
	transform: translateX(100%);
}
.mv-bganime.toleft::after {
	transform: translateX(0);
}

/*----in-mv-clip  clippathアニメーション----*/
.in-mv-clip-left {
  -webkit-clip-path: inset(0 0 100% 100%);
  clip-path: inset(0 0 0 100%);
	transition: all 1s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
}
.mv-clip-left {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.in-mv-clip-right {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
	transition: all 1s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
}
.mv-clip-right {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.in-mv-clip-bottom {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
	transition: all 1s cubic-bezier(0.87, 0, 0.13, 1) 0.1s;
}
.mv-clip-bottom {
  webkit-clip-path: inset(0);
  clip-path: inset(0);
}

/*全てのサイズで適用-----*/
/*.in-mv-left{
	opacity: 0;
	transform: translate(40px,0);
	transition: all 0.6s ease 0s;
}
.mv-left{
	opacity: 1.0;
	transform: translate(0,0);
	transition: all 0.6s ease 0.2s;
}
.in-mv-right{
	opacity: 0;
	transform: translate(-40px,0);
	transition: all 0.6s ease 0s;
}
.mv-right{
	opacity: 1.0;
	transform: translate(0,0);
	transition: all 0.6s ease 0.2s;
}
.in-mv-up{
	opacity: 0;
	transform: translate(0,50px);
	transition: all 0.6s ease 0s;
}
.mv-up{
	opacity: 1.0;
	transform: translate(0,0);
	transition: all 0.6s ease 0.4s;
}*/


/*------------------------------------------------------------------------------

　##　toppage

--------------------------------------------------------------------------------*/

/* main visual
---------------------------------------*/
.mv {
  width: 100%;
}
.mv .innerwrap {
	padding: 30px 20px 0;
	box-sizing: border-box;
	position: relative;
}
.mv .innerwrap .lead-wrap {
	width: 100%;
}
.mv .innerwrap .lead-wrap .lead-top {
	width: 100%;
}
.mv .innerwrap .lead-wrap ul.lead-key {
	margin: 5px 0 0;
	display: flex;
	justify-content: space-between;
}
.mv .innerwrap .lead-wrap ul.lead-key li {
	width: 32.5%;
}
.mv .innerwrap .lead-wrap .lead-bottom {
	margin: 15px 0 0;
}
.mv .mv-pic {
	width: 80%;
	margin: 15px auto 0;
}
@media only screen and (min-width:768px) {
	.mv .innerwrap {
		padding: 30px 10.4166% 0;
	}
}
@media only screen and (min-width:1024px) {
	.mv {
		width: 100%;
		max-width: 1800px;
		margin: 0 auto;
	}
	.mv .innerwrap {
		padding: 30px 5.5555% 0;
		display: flex;
		justify-content: center;
	}
	.mv .innerwrap .lead-wrap {
		width: 100%;
	}
	.mv .innerwrap .lead-wrap .lead-top {
		width: 90%;
		margin: 0 auto 0 -1%;
	}
	.mv .innerwrap .lead-wrap ul.lead-key {
		margin: 5px 0 0;
		display: flex;
		justify-content: space-between;
	}
	.mv .innerwrap .lead-wrap ul.lead-key li {
		width: 32.5%;
	}
	.mv .innerwrap .lead-wrap .lead-bottom {
		width: 90%;
		margin: 5.5555% auto 0;
	}
	.mv .mv-pic {
		width: 80%;
		margin: 15px auto 0;
	}
}

/* sec__about
---------------------------------------*/
.top .sec__about {
	padding: 0 10px 30px;
	position: relative;
	box-sizing: border-box;
}
.top .sec__about .secwrap {
	max-width: 1600px;
	margin: 0 auto;
	padding: 40px 10px;
	box-sizing: border-box;
	border-radius: 16px;
	background: linear-gradient(to right,#d8e8e2,#ffffff,#d8e8e2);
}
.top .sec__about .secwrap h2 {
	width: 70%;
	max-width: 522px;
	margin: 0 auto;
}
.top .sec__about .secwrap .worry-list {
	margin: 15px 0 0;
}
.top .sec__about .secwrap .worry-list picture {
	width: 100%;
}
.top .sec__about .secwrap .worry-list .yes {
	width: 31px;
	margin: 15px auto 0;
	padding: 0 0 0 10px;
	box-sizing: border-box;
}
.top .sec__about .secwrap .worry-list h3 {
	width: -moz-fit-content;
	width: fit-content;
	margin: 20px auto 0;
	padding: 0 0 5px;
	font-size: 22px;
	font-size: min(5.8666vw,38px);
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	text-align: center;
	position: relative;
}
.top .sec__about .secwrap .worry-list h3::after {
	width: 100%;
	height: 2px;
	content: "";
	display: block;
	background-image: radial-gradient(circle, #469aae 1px, transparent 1px);
  background-position: left 8px bottom;
  background-repeat: repeat-x;
  background-size: 12px 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.top .sec__about .secwrap .worry-list h3 span {
	font-size: 16px;
	font-size: min(4.2666vw,26px);
	font-weight: 500;
}
.top .sec__about .secwrap .worry-list p {
	margin: 5px 0 0;
	font-size: 14px;
	font-size: min(3.73333vw,24px);
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: normal;
	text-align: center;
}
@media only screen and (min-width:768px) {
	.top .sec__about {
		padding: 0 10px 30px;
		position: relative;
		box-sizing: border-box;
	}
	.top .sec__about .secwrap {
		max-width: 1600px;
		margin: 0 auto;
		padding: 60px 30px;
		border-radius: 16px;
	}
	.top .sec__about .secwrap h2 {
		width: 50%;
		max-width: 522px;
		margin: 0 auto;
	}
	.top .sec__about .secwrap .worry-list {
		margin: 30px 0 0;
	}
	.top .sec__about .secwrap .worry-list .yes {
		width: 42px;
	}
	.top .sec__about .secwrap .worry-list h3 {
		margin: 20px auto 0;
		font-size: min(5.8666vw,54px);
	}
	.top .sec__about .secwrap .worry-list h3 span {
		font-size: min(4.2666vw,36px);
		font-weight: 500;
	}
	.top .sec__about .secwrap .worry-list p {
		margin: 5px 0 0;
		font-size: min(3.73333vw,24px);
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__about {
		padding: 0 30px 30px;
	}
	.top .sec__about .secwrap {
		max-width: 1600px;
		margin: 0 auto;
		padding: 100px 60px 60px;
		border-radius: 20px;
	}
	.top .sec__about .secwrap h2 {
		width: 40%;
		max-width: 522px;
		margin: 0 auto;
	}
	.top .sec__about .secwrap .worry-list {
		max-width: 1080px;
		margin: 30px auto 0;
	}
	.top .sec__about .secwrap .worry-list .yes {
		width: 42px;
	}
	.top .sec__about .secwrap .worry-list h3 {
		margin: 20px auto 0;
		font-size: min(5.8666vw,54px);
	}
	.top .sec__about .secwrap .worry-list h3 span {
		font-size: min(4.2666vw,36px);
		font-weight: 500;
	}
	.top .sec__about .secwrap .worry-list p {
		margin: 5px 0 0;
		font-size: min(3.73333vw,24px);
	}
}

/* sec__about  / realtime
---------------------------------------*/
.top .sec__about .secwrap .realtime {
	margin: 30px 0 0;
	position: relative;
}
.top .sec__about .secwrap .realtime .illust-a {
	width: 50%;
	max-width: 240px;
	margin: 0 auto;
}
.top .sec__about .secwrap .realtime h3 {
	width: -moz-fit-content;
	width: fit-content;
	margin: 20px auto 0;
	padding: 8px 20px;
	font-size: min(5.3333vw,24px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3;
	color: #fff;
	background-color: #3daec9;
	border-radius: 9999px;
	position: relative;
}
.top .sec__about .secwrap .realtime h3::after {
	width: 2px;
	height: 15px;
	content: "";
	display: block;
	background-color: #3daec9;
	position: absolute;
	left: 50%;
	bottom: -15px;
}
.top .sec__about .secwrap .realtime .lead {
	margin: 25px auto 0;
	padding: 0 0 10px;
	font-size: min(4.8vw,24px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.3;
	text-align: center;
	color: #3daec9;
	position: relative;
}
.top .sec__about .secwrap .realtime .lead::after {
	width: 100%;
	height: 2px;
	content: "";
	display: block;
	background-color: #3daec9;
	position: absolute;
	left: 0;
	bottom: 0;
}
.top .sec__about .secwrap .realtime .txt {
	margin: 10px 0 0;
	padding: 0 10px 10px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2.2;
}
.top .sec__about .secwrap .realtime .txt a {
	font-size: 14px;
	font-weight: 500;
	color: #3daec9;
}
.top .sec__about .secwrap .realtime .illust-b {
	width: 50%;
	max-width: 240px;
	margin: 0 auto;
}
@media only screen and (min-width:768px) {
	.top .sec__about .secwrap .realtime {
		max-width: 1100px;
		margin: 30px auto 0;
		padding: 9.1145% 0 0;
		position: relative;
	}
	.top .sec__about .secwrap .realtime .illust-a {
		width: 20%;
		max-width: 240px;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
	}
	.top .sec__about .secwrap .realtime h3 {
		margin: 20px auto 0;
		padding: 8px 20px;
		font-size: min(3.0625vw,36px);
		position: relative;
	}
	.top .sec__about .secwrap .realtime h3::after {
		width: 2px;
		height: 25px;
		left: 50%;
		bottom: -25px;
	}
	.top .sec__about .secwrap .realtime .lead {
		max-width: 920px;
		margin: 25px auto 0;
		padding: 0 0 10px;
		font-size: min(4.6875vw, 54px);
		position: relative;
		box-sizing: border-box;
	}
	.top .sec__about .secwrap .realtime .txt {
		max-width: 920px;
		margin: 10px auto 0;
		font-size: 16px;
		box-sizing: border-box;
	}
	.top .sec__about .secwrap .realtime .txt a {
		font-size: 16px;
	}
	.top .sec__about .secwrap .realtime .illust-b {
		width: 20%;
		max-width: 240px;
		margin: 0;
		position: absolute;
		top: 0;
		right: 0;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__about .secwrap .realtime {
		max-width: 1100px;
		margin: 30px auto 0;
		padding: min(9.1145%,100px) 0 0;
		position: relative;
	}
	.top .sec__about .secwrap .realtime h3 {
		margin: 20px auto 0;
		padding: 8px 20px;
		font-size: min(3.0625vw,36px);
	}
	.top .sec__about .secwrap .realtime h3::after {
		width: 2px;
		height: 25px;
		left: 50%;
		bottom: -25px;
	}
	.top .sec__about .secwrap .realtime .lead {
		max-width: 920px;
		margin: 25px auto 0;
		padding: 0 0 10px;
		font-size: min(5.27345vw, 48px);
		position: relative;
		box-sizing: border-box;
	}
	.top .sec__about .secwrap .realtime .txt {
		margin: 15px auto 0;
		font-size: 18px;
	}
	.top .sec__about .secwrap .realtime .txt a {
		font-size: 18px;
	}
}


/* sec__about  / concierge
---------------------------------------*/
.top .sec__about .secwrap .concierge {
	margin: 50px 0 0;
	padding: 20px;
	border:3px solid #fff;
	border-radius: 10px;
	box-sizing: border-box;
}
.top .sec__about .secwrap .concierge .pic {
	width: 50%;
	max-width: 280px;
	margin: 0 auto;
}
.top .sec__about .secwrap .concierge .en {
	margin: 5px 0 0;
	font-size: 12px;
	font-family: var(--font-en);
	line-height: 1.3;
	color: #cca46a;
	text-align: center;
}
.top .sec__about .secwrap .concierge h3 {
	margin: 2px 0 0;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.7;
	text-align: center;
}
.top .sec__about .secwrap .concierge p {
	margin: 10px 0 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 2.2;
}
@media only screen and (min-width:768px) {
	.top .sec__about .secwrap .concierge {
		margin: 50px 0 0;
		padding: 30px;
		border: 5px solid #fff;
		border-radius: 20px;
	}
	.top .sec__about .secwrap .concierge .pic {
		width: 30%;
		max-width: 280px;
		margin: 0 auto;
	}
	.top .sec__about .secwrap .concierge .en {
		margin: 5px 0 0;
		font-size: 14px;
		text-align: center;
	}
	.top .sec__about .secwrap .concierge h3 {
		margin: 2px 0 0;
		font-size: 26px;
		text-align: center;
	}
	.top .sec__about .secwrap .concierge p {
		margin: 10px 0 0;
		font-size: 14px;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__about .secwrap .concierge {
		margin: 80px 0 0;
		padding: 50px;
		display: flex;
		justify-content: space-between;
	}
	.top .sec__about .secwrap .concierge .pic {
		width: 21%;
		max-width: 280px;
		margin: 0;
	}
	.top .sec__about .secwrap .concierge .col {
		width: 75%;
	}
	.top .sec__about .secwrap .concierge .en {
		margin: 5px 0 0;
		font-size: 14px;
		text-align: left;
	}
	.top .sec__about .secwrap .concierge h3 {
		margin: 2px 0 0;
		font-size: 28px;
		text-align: left;
	}
	.top .sec__about .secwrap .concierge p {
		margin: 10px 0 0;
		font-size: 16px;
	}
}


/* youtube
---------------------------------------*/
.top .sec__about .yt-wrap {
  max-width: 1000px;
	margin: 30px auto 0;
	padding: 0 10px;
	box-sizing: border-box;
}
.top .sec__about .yt-wrap .yt-movie {
  width: 100%;
  height: 0;
	margin: 30px 0 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.top .sec__about .yt-wrap .yt-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media only screen and (min-width:768px) {
.top .sec__about .yt-wrap {
	margin: 50px auto 0;
}
}
@media only screen and (min-width:1024px) {
.top .sec__about .yt-wrap {
	margin: 100px auto 0;
}
}

/* contact-bnr
---------------------------------------*/
.top .contact-bnr {
	margin: 50px 0 0;
	padding: 50px 20px;
	background: radial-gradient(#77c1cc, transparent),url(../images/common/bg_ptn_02.jpg);
	box-sizing: border-box;
	text-align: center;
}
.top .contact-bnr .lead {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	position: relative;
}
.top .contact-bnr .lead::before,
.top .contact-bnr .lead::after {
	width: 1px;
	height: 40px;
	content: "";
	background-color: #fff;
}
.top .contact-bnr .lead::before {
	position: absolute;
	left: 0;
	transform: rotate(-25deg);
	bottom: 0;
}
.top .contact-bnr .lead::after {
	position: absolute;
	right: 0;
	transform: rotate(25deg);
	bottom: 0;
}
.top .contact-bnr .telnum {
	margin: 20px 0 0;
}
.top .contact-bnr .telnum h2 {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}
.top .contact-bnr .telnum .num a {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	display: block;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
}
.top .contact-bnr .telnum .time {
	font-size: 12px;
	font-weight: 500;
	color: #fff;
}
.top .contact-bnr .btn {
	margin: 15px 0 0;
}
.top .contact-bnr .btn li {
	width: 60%;
	max-width: 300px;
	margin: 0 auto;
}
.top .contact-bnr .btn li:nth-child(n+2) {
	margin: 10px auto 0;
}
.top .contact-bnr .btn li a {
	display: block;
	border-radius: 9999px;
	overflow: hidden;
}
@media only screen and (min-width:768px) {
	.top .contact-bnr {
		margin: 20px 0 0;
		padding: 70px 20px;
	}
	.top .contact-bnr .lead {
		padding: 0 20px;
		font-size: 28px;
	}
	.top .contact-bnr .telnum {
		margin: 30px 0 0;
	}
	.top .contact-bnr .telnum h2 {
		font-size: 18px;
	}
	.top .contact-bnr .telnum .num a {
		font-size: 54px;
	}
	.top .contact-bnr .telnum .time {
		font-size: 14px;
	}
	.top .contact-bnr .btn {
		width: 60%;
		max-width: 500px;
		margin: 15px auto 0;
		display: flex;
		justify-content: space-between;
	}
	.top .contact-bnr .btn li {
		width: 49%;
		max-width: 300px;
		margin: 0 auto;
	}
	.top .contact-bnr .btn li:nth-child(n+2) {
		margin: 0;
	}
}
@media only screen and (min-width:1024px) {
	.top .contact-bnr {
		margin: 70px 0 0;
		padding: 100px 20px;
	}
	.top .contact-bnr .lead {
		font-size: 30px;
	}
	.top .contact-bnr .telnum {
		margin: 30px 0 0;
	}
	.top .contact-bnr .telnum h2 {
		font-size: 20px;
	}
	.top .contact-bnr .telnum .num a {
		font-size: 60px;
	}
	.top .contact-bnr .telnum .time {
		font-size: 16px;
	}
	.top .contact-bnr .btn {
		width: 60%;
		max-width: 500px;
		margin: 20px auto 0;
	}
	.top .contact-bnr .btn li {
		width: 49%;
		max-width: 300px;
		margin: 0 auto;
	}
	.top .contact-bnr .btn li {
		transition: all 0.3s ease;
	}
	.top .contact-bnr .btn li:hover {
		transform: translateY(-5px);
	}
}

/* sec__features
---------------------------------------*/
.top .sec__features {
	padding: 50px 20px;
	background: url(../images/common/bg_ptn_03.jpg) repeat center top / 80%;
}
.top .sec__features .secwrap {
	max-width: 1260px;
	margin: 0 auto;
}
.top .sec__features .secwrap ul li {
	width: 80%;
	margin: 30px auto 0;
	text-align: center;
}
.top .sec__features .secwrap ul li figure,
.top .sec__features .secwrap ul li figure img {
	width: 100%;
}
.top .sec__features .secwrap ul li h3 {
	padding: 10px 0;
	font-size: 20px;
	font-weight: 700;
	color: #3daec9;
	position: relative;
}
.top .sec__features .secwrap ul li h3::before {
	width: 1px;
	height: 50px;
	content: "";
	display: block;
	background-color: #3daec9;
	position: absolute;
	top: -45px;
	left: 50%;
}
.top .sec__features .secwrap ul li .txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}
.top .sec__features .secwrap .lead {
	margin: 50px 0 0;
	padding: 150px 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
	position: relative;
}
.top .sec__features .secwrap .lead::before {
	width: 80px;
	height: 156px;
	content: "";
	display: block;
	background: url(../images/common/illust_smafo@2x.png) no-repeat left top / cover;
	position: absolute;
	inset : 0;
	margin: 0 auto;
	transform: rotate(-15deg);

}
.top .sec__features .secwrap .lead p {
	font-size: min(4.8vw , 24px);
	font-weight: 500;
	color: #3daec9;
	line-height: 2.0;
	display: inline;
	background: linear-gradient(transparent 50%,#edf1f2 50%);
	position: relative;
}
@media only screen and (min-width:768px) {
	.top .sec__features {
		padding: 80px 50px;
		background: url(../images/common/bg_ptn_03.jpg) repeat center top / 80%;
	}
	.top .sec__features .secwrap {
		max-width: 1260px;
		margin: 0 auto;
	}
	.top .sec__features .secwrap ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.top .sec__features .secwrap ul li {
		width: 45%;
		margin: 30px 0 0;
		text-align: center;
	}
	.top .sec__features .secwrap ul li h3 {
		padding: 10px 0;
		font-size: 20px;
	}
	.top .sec__features .secwrap ul li .txt {
		font-size: 14px;
	}
	.top .sec__features .secwrap .lead {
		width: -moz-fit-content;
		width: fit-content;
		margin: 80px auto 0;
		padding: 0;
		font-size: 16px;
	}
	.top .sec__features .secwrap .lead::before {
		width: 80px;
		height: 156px;
		content: "";
		display: block;
		background: url(../images/common/illust_smafo@2x.png) no-repeat left top / cover;
		position: absolute;
		inset : 0;
		margin: auto 0 auto -50px;
		transform: rotate(-15deg);
	}
	.top .sec__features .secwrap .lead p {
		font-size: min(3.125vw , 32px);
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__features {
		padding: 140px 50px;
		background: url(../images/common/bg_ptn_03.jpg) repeat center top / 80%;
	}
	.top .sec__features .secwrap {
		max-width: 1260px;
		margin: 0 auto;
	}
	.top .sec__features .secwrap ul li {
		width: 29.6825%;
		margin: 50px 0 0;
	}
	.top .sec__features .secwrap ul li h3 {
		padding: 12px 0;
		font-size: 24px;
	}
	.top .sec__features .secwrap ul li .txt {
		font-size: 16px;
	}
	.top .sec__features .secwrap .lead {
		margin: 100px auto 0;
		padding: 0 100px;
		font-size: 16px;
	}
	.top .sec__features .secwrap .lead::before {
		width: 120px;
		height: 234px;
		inset : 0;
		margin: auto 0 auto -30px;
		transform: rotate(-15deg);
	}
	.top .sec__features .secwrap .lead p {
		font-size: min(3.125vw , 36px);
	}
}

/* sec__point
---------------------------------------*/
.top .sec__point {
	width: 100%;
	padding: 60px 0;
	background-color: #fff;
}
.top .sec__point .secwrap {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}
.top .sec__point .secwrap h2 {
	width: 90%;
	max-width: 520px;
	margin: 0 auto;
}
.top .sec__point .secwrap ul li {
	margin: 50px 0 0;
}
.top .sec__point .secwrap ul li figure {
	width: 100%;
	overflow: hidden;
	border-radius: 10px;
}
.top .sec__point .secwrap ul li figure img {
	width: 100%;
}
.top .sec__point .secwrap ul li .col {
	padding: 15px 0 0;
}
.top .sec__point .secwrap ul li .col .num {
	width: 25%;
	max-width: 112px;
	margin: 0 auto;
}
.top .sec__point .secwrap ul li .col h3 {
	margin: 15px 0 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}
.top .sec__point .secwrap ul li .col h3 span {
	font-weight: 500;
	color: #3daec9;
}
.top .sec__point .secwrap ul li .col p.txt {
	margin: 15px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 2.0;
}
@media only screen and (min-width:768px) {
	.top .sec__point {
		padding: 100px 0;
	}
	.top .sec__point .secwrap {
		padding: 0 50px;
	}
	.top .sec__point .secwrap h2 {
		width: 50%;
		max-width: 520px;
		margin: 0 auto;
	}
	.top .sec__point .secwrap ul li {
		width: 80%;
		margin: 70px auto 0;
	}
	.top .sec__point .secwrap ul li figure {
		width: 100%;
		overflow: hidden;
		border-radius: 10px;
	}
	.top .sec__point .secwrap ul li figure img {
		width: 100%;
	}
	.top .sec__point .secwrap ul li .col {
		padding: 15px 0 0;
	}
	.top .sec__point .secwrap ul li .col .num {
		width: 25%;
		max-width: 112px;
		margin: 0 auto;
	}
	.top .sec__point .secwrap ul li .col h3 {
		margin: 15px 0 0;
		font-size: 22px;
	}
	.top .sec__point .secwrap ul li .col h3 span {
		font-weight: 500;
		color: #3daec9;
	}
	.top .sec__point .secwrap ul li .col p.txt {
		margin: 15px 0 0;
		font-size: 14px;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__point {
		padding: 130px 0;
	}
	.top .sec__point .secwrap {
		padding: 0 50px;
	}
	.top .sec__point .secwrap h2 {
		width: 50%;
		max-width: 520px;
		margin: 0 auto;
	}
	.top .sec__point .secwrap ul li {
		width: 100%;
		margin: 6.25% auto 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.top .sec__point .secwrap ul li figure {
		width: 50%;
	}
	.top .sec__point .secwrap ul li:nth-child(2n) figure {
		order: 2;
	}

	.top .sec__point .secwrap ul li .col {
		width: 50%;
		padding: 0 6.9444%;
		box-sizing: border-box;
	}
	.top .sec__point .secwrap ul li .col .num {
		width: 25%;
		max-width: 112px;
		margin: 0 auto;
	}
	.top .sec__point .secwrap ul li .col h3 {
		margin: 20px 0 0;
		font-size: min(2.1484vw ,26px);
	}
	.top .sec__point .secwrap ul li .col p.txt {
		margin: 20px 0 0;
		font-size: min(1.3671vw ,16px);
	}
}

/* sec__services
---------------------------------------*/
.top .sec__services {
	width: 100%;
	padding: 60px 0 30px;
	background-color: #f9f8f3;
}
.top .sec__services .secwrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.top .sec__services .secwrap .compare-list {
	margin: 20px 0 0;
}
.top .sec__services .secwrap .compare-list table {
	width: 100%;
	border-top: 1px solid #acc0d0;
	border-right: 1px solid #acc0d0;
	box-sizing: border-box;
	background-color: #fff;
}
.top .sec__services .secwrap .compare-list table th {
	border-bottom: 1px solid #acc0d0;
	border-left: 1px solid #acc0d0;
	padding: 5px 2px;
	text-align: center;
	font-weight: 700;
	color: #3daec9;
	vertical-align: middle;
	line-height: 1.5;
}
.top .sec__services .secwrap .compare-list table th.service {
	width: 40%;
	padding: 15px 2px;
}
.top .sec__services .secwrap .compare-list table td {
	border-bottom: 1px solid #acc0d0;
	border-left: 1px solid #acc0d0;
	padding: 10px 2px;
	vertical-align: middle;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
}
.top .sec__services .secwrap .compare-list table .smart {
	background-color: #f3fdff;
}
@media only screen and (min-width:768px) {
	.top .sec__services {
		padding: 80px 0 40px;
	}
	.top .sec__services .secwrap {
		padding: 0 30px;
	}
	.top .sec__services .secwrap .compare-list {
		margin: 25px 0 0;
	}
	.top .sec__services .secwrap .compare-list table th {
		padding: 15px 5px;
	}
	.top .sec__services .secwrap .compare-list table th.service {
		padding: 35px 5px;
		font-size: 16px;

	}
	.top .sec__services .secwrap .compare-list table td {
		padding: 25px 5px;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__services {
		padding: 120px 0 60px;
	}
	.top .sec__services .secwrap {
		padding: 0 50px;
	}
	.top .sec__services .secwrap .compare-list {
		margin: 35px 0 0;
	}
	.top .sec__services .secwrap .compare-list table th {
		padding: 25px 5px;
		font-size: 16px;
	}
	.top .sec__services .secwrap .compare-list table th.service {
		padding: 45px 5px;
		font-size: 20px;

	}
	.top .sec__services .secwrap .compare-list table td {
		padding: 35px 5px;
		font-size: 16px;
	}
}

/* sec__price
---------------------------------------*/
.top .sec__price {
	width: 100%;
	padding: 30px 20px 60px;
	background-color: #f9f8f3;
	box-sizing: border-box;
}
.top .sec__price .secwrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: #fff;
	border-radius: 10px;
	box-sizing: border-box;
}
.top .sec__price .secwrap .price-wrap {
	margin: 5px 0 0;
	padding: 0 0 10px;
	text-align: center;
	position: relative;
}
.top .sec__price .secwrap .price-wrap span {
	color: #2baecf;
	font-weight: 500;
	line-height: 1.0;
}
.top .sec__price .secwrap .price-wrap span.size01 {
	font-size: 26px;
}
.top .sec__price .secwrap .price-wrap span.size02 {
	font-size: 54px;
}
.top .sec__price .secwrap .price-wrap span.size03 {
	font-size: 16px;
}
.top .sec__price .secwrap .price-wrap::after {
	width: 100%;
	height: 2px;
	content: "";
	display: block;
	background-image: radial-gradient(circle, #469aae 1px, transparent 1px);
  background-position: left 8px bottom;
  background-repeat: repeat-x;
  background-size: 12px 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.top .sec__price .secwrap .txt {
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.7;
}
.top .sec__price .secwrap .charge p {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.7;
}
.top .sec__price .secwrap .charge ul li {
	padding: 0 0 0 1em;
	text-indent: -1em;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.7;
	position: relative;
}
.top .sec__price .secwrap .charge ul li::before {
	content: "・";
}
@media only screen and (min-width:768px) {
	.top .sec__price {
		padding: 40px 30px 80px;
	}
	.top .sec__price .secwrap {
		padding: 40px;
	}
	.top .sec__price .secwrap .price-wrap {
		margin: 10px 0 0;
		padding: 0 0 15px;
	}
	.top .sec__price .secwrap .price-wrap span {
		color: #2baecf;
		font-weight: 500;
		line-height: 1.0;
	}
	.top .sec__price .secwrap .price-wrap span.size01 {
		font-size: 30px;
	}
	.top .sec__price .secwrap .price-wrap span.size02 {
		font-size: 60px;
	}
	.top .sec__price .secwrap .price-wrap span.size03 {
		font-size: 18px;
	}
	.top .sec__price .secwrap .txt {
		padding: 15px 0;
		font-size: 14px;
	}
	.top .sec__price .secwrap .charge p {
		font-size: 12px;
	}
	.top .sec__price .secwrap .charge ul li {
		font-size: 12px;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__price {
		padding: 60px 30px 120px;
	}
	.top .sec__price .secwrap {
		padding: 80px;
	}
	.top .sec__price .secwrap .price-wrap {
		margin: 20px 0 0;
		padding: 0 0 15px;
	}
	.top .sec__price .secwrap .price-wrap span {
		color: #2baecf;
		font-weight: 500;
		line-height: 1.0;
	}
	.top .sec__price .secwrap .price-wrap span.size01 {
		font-size: 40px;
	}
	.top .sec__price .secwrap .price-wrap span.size02 {
		font-size: 72px;
	}
	.top .sec__price .secwrap .price-wrap span.size03 {
		font-size: 20px;
	}
	.top .sec__price .secwrap .txt {
		padding: 20px 0;
		font-size: 16px;
	}
	.top .sec__price .secwrap .charge p {
		font-size: 14px;
	}
	.top .sec__price .secwrap .charge ul li {
		font-size: 14px;
	}
}

/* sec__voices
---------------------------------------*/
.top .sec__voices {
	width: 100%;
	padding: 60px 0;
	background: linear-gradient(to right,#c8dde9,#e2efe0);
	box-sizing: border-box;
}
.top .sec__voices .secwrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}
.top .sec__voices .secwrap ul li {
	margin: 30px 0 0;
	padding: 20px;
	background-color: #e4edeb;
	border: 1px solid #fff;
	border-radius: 10px;
	box-sizing: border-box;
}
.top .sec__voices .secwrap ul li figure {
	width: 80%;
	margin: 0 auto;
}
.top .sec__voices .secwrap ul li figure img {
	width: 100%;
}
.top .sec__voices .secwrap ul li .status {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 500;
	color: #2baecf;
	line-height: 1.5;
	text-align: center;
}
.top .sec__voices .secwrap ul li .name {
	margin: 2px 0 0;
	font-size: 22px;
	font-weight: 500;
	color: #2baecf;
	line-height: 1.3;
	text-align: center;
}
.top .sec__voices .secwrap ul li .insta,
.top .sec__voices .secwrap ul li .url {
	width: -moz-fit-content;
	width: fit-content;
	margin: 3px auto 0;
}
.top .sec__voices .secwrap ul li .insta a,
.top .sec__voices .secwrap ul li .url a {
	display: block;
	padding: 0 0 0 25px;
	font-size: 12px;
	font-weight: 500;
	color: #2baecf;
	line-height: 1.3;
	text-align: center;
	position: relative;
	box-sizing: border-box;
	word-break: break-all;
	text-decoration: none;
}
.top .sec__voices .secwrap ul li .insta a::before {
	width: 20px;
	height: 20px;
	content: "";
	display: inline-block;
	background: url(../images/common/icon_insta@2x.png) no-repeat left top / cover;
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
}
.top .sec__voices .secwrap ul li .url a::before {
	width: 20px;
	height: 20px;
	content: "";
	display: inline-block;
	background: url(../images/common/icon_url.svg) no-repeat left top / cover;
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
}
.top .sec__voices .secwrap ul li .lead {
	margin: 20px 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
}
.top .sec__voices .secwrap ul li .txt {
	margin: 5px 0 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 2.0;
	color: #555;
}
@media only screen and (min-width:768px) {
	.top .sec__voices {
		padding: 100px 0;
	}
	.top .sec__voices .secwrap {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 50px;
	}
	.top .sec__voices .secwrap ul li {
		margin: 30px 0 0;
		padding: 40px;
		background-color: #e4edeb;
		border: 1px solid #fff;
		border-radius: 10px;
		box-sizing: border-box;
	}
	.top .sec__voices .secwrap ul li figure {
		width: 60%;
		max-width: 394px;
		margin: 0 auto;
	}
	.top .sec__voices .secwrap ul li figure img {
		width: 100%;
	}
	.top .sec__voices .secwrap ul li .status {
		margin: 10px 0 0;
		font-size: 14px;
	}
	.top .sec__voices .secwrap ul li .name {
		margin: 2px 0 0;
		font-size: 26px;
	}
	.top .sec__voices .secwrap ul li .insta,
	.top .sec__voices .secwrap ul li .url {
		margin: 3px auto 0;
	}
	.top .sec__voices .secwrap ul li .insta a,
	.top .sec__voices .secwrap ul li .url a {
		display: block;
		padding: 0 0 0 25px;
		font-size: 14px;
	}
	.top .sec__voices .secwrap ul li .lead {
		margin: 25px 0 0;
		font-size: 20px;
	}
	.top .sec__voices .secwrap ul li .txt {
		margin: 10px 0 0;
		font-size: 14px;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__voices {
		padding: 140px 0;
	}
	.top .sec__voices .secwrap ul li {
		margin: 40px 0 0;
		padding: 10.714%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.top .sec__voices .secwrap ul li figure {
		width: 35%;
		max-width: inherit;
		margin: 0;
	}
	.top .sec__voices .secwrap ul li .col {
		width: 60%;
	}
	.top .sec__voices .secwrap ul li .status {
		margin: 0;
		font-size: 16px;
		text-align: left;
	}
	.top .sec__voices .secwrap ul li .name {
		margin: 5px 0 0;
		font-size: 36px;
		text-align: left;
	}
	.top .sec__voices .secwrap ul li .insta,
	.top .sec__voices .secwrap ul li .url {
		margin: 8px 0 0;
	}
	.top .sec__voices .secwrap ul li .insta a,
	.top .sec__voices .secwrap ul li .url a {
		display: block;
		padding: 0 0 0 25px;
		font-size: 16px;
	}
	.top .sec__voices .secwrap ul li .lead {
		margin: 35px 0 0;
		font-size: 20px;
		text-align: left;
	}
	.top .sec__voices .secwrap ul li .txt {
		margin: 15px 0 0;
		font-size: 14px;
		line-height: 2.2;
	}
}

/* sec__faq
---------------------------------------*/
.top .sec__faq {
	width: 100%;
	padding: 60px 0 30px;
	background-color: #f9f8f3;
	box-sizing: border-box;
}
.top .sec__faq .secwrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.top .sec__faq .secwrap .faqArea {
  max-width: 1280px;
  margin: 20px auto 0;
}
.top .sec__faq .secwrap .faqArea dl dt {
	margin: 20px 0 0;
  padding: 20px 40px 20px 45px;
  position: relative;
  font-size: 14px;
  font-family: var(--font-go);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: left;
	border-radius: 4px;
  background: url(../images/common/icon_q@2x.png) no-repeat left 15px center/22px 22px,
							#7aafb9;
  cursor: pointer;
}
.top .sec__faq .secwrap .faqArea dl dt:hover,
.top .sec__faq .secwrap .faqArea dl dt.open {
  background: url(../images/common/icon_q@2x.png) no-repeat left 15px center/22px 22px,#3daec9;
}
.top .sec__faq .secwrap .faqArea dl dt:after {
  width: 10px;
  height: 10px;
  content: "";
  display: inline-block;
  line-height: 1;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-color: #ede5df;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 20px;
  transition: all 0.2s ease 0s;
}
.top .sec__faq .secwrap .faqArea dl dt.open:after {
  transform: rotate(315deg);
  transition: all 0.2s ease 0s;
}
.top .sec__faq .secwrap .faqArea dl dd {
  padding: 15px 0 25px 45px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 2;
  text-align: left;
  position: relative;
}
.top .sec__faq .secwrap .faqArea dl dd:before {
  width: 22px;
  height: 22px;
  content: "";
  display: inline-block;
  background: url(../images/common/icon_a@2x.png) no-repeat left top/cover;
  position: absolute;
  top: 15px;
  left: 15px;
}
.top .sec__faq .secwrap .faqArea dl dd p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.0;
}
@media only screen and (min-width:768px) {
	.top .sec__faq {
		padding: 100px 0 50px;
	}
	.top .sec__faq .secwrap {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 50px;
	}
	.top .sec__faq .secwrap .faqArea {
		margin: 30px auto 0;
	}
	.top .sec__faq .secwrap .faqArea dl dt {
		margin: 30px 0 0;
		padding: 20px 40px 20px 45px;
		position: relative;
		font-size: 16px;
	}
	.top .sec__faq .secwrap .faqArea dl dd {
		padding: 15px 0 25px 45px;
		font-size: 14px;
	}
	.top .sec__faq .secwrap .faqArea dl dd p {
		font-size: 14px;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__faq {
		padding: 130px 0 70px;
	}
	.top .sec__faq .secwrap .faqArea {
		margin: 40px auto 0;
	}
}


/* sec__contact
---------------------------------------*/
.top .sec__contact {
	width: 100%;
	padding: 30px 20px 60px;
	background-color: #f9f8f3;
	box-sizing: border-box;
}
.top .sec__contact .secwrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 20px 60px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 8px;
}
.top .sec__contact .secwrap .lead {
	padding: 20px 0 10px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2.0;
}
.top .sec__contact .secwrap .contact-wrap {
	margin: 20px 0 0;
	padding: 20px 0;
	position: relative;
}
.top .sec__contact .secwrap .contact-wrap::before,
.top .sec__contact .secwrap .contact-wrap::after {
	width: 100%;
	height: 2px;
	content: "";
	display: block;
	background-image: radial-gradient(circle, #469aae 1px, transparent 1px);
	background-position: left 8px bottom;
	background-repeat: repeat-x;
	background-size: 12px 2px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.top .sec__contact .secwrap .contact-wrap::before {
	position: absolute;
	top: 0;
	left: 0;
}
.top .sec__contact .secwrap .contact-wrap::after {
	position: absolute;
	bottom: 0;
	left: 0;
}
.top .sec__contact .secwrap .contact-wrap {
	margin: 20px 0 0;
	padding: 20px 0;
	position: relative;
}
.top .sec__contact .secwrap .contact-wrap .telnum {
	text-align: center;
}
.top .sec__contact .secwrap .contact-wrap .telnum h2 {
	font-size: 14px;
	font-weight: 500;
	color: #222;
}
.top .sec__contact .secwrap .contact-wrap .telnum .num a {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	display: block;
	font-size: 48px;
	font-weight: 500;
	line-height: 1.0;
	color: #222;
	text-decoration: none;
}
.top .sec__contact .secwrap .contact-wrap .telnum .time {
	font-size: 12px;
	font-weight: 500;
	color: #222;
}
.top .sec__contact .secwrap .contact-wrap .btn {
	margin: 15px 0 0;
}
.top .sec__contact .secwrap .contact-wrap .btn li {
	width: 60%;
	max-width: 300px;
	margin: 0 auto;
}
.top .sec__contact .secwrap .contact-wrap .btn li:nth-child(n+2) {
	margin: 10px auto 0;
}
.top .sec__contact .secwrap .contact-wrap .btn li a {
	display: block;
	border-radius: 9999px;
	overflow: hidden;
}
.top .sec__contact .secwrap .contact-wrap .btn li a img {
	width: 100%;
}
@media only screen and (min-width:768px) {
	.top .sec__contact {
		padding: 60px 30px 120px;
	}
	.top .sec__contact .secwrap {
		padding: 60px 50px 80px;
	}
	.top .sec__contact .secwrap .lead {
		padding: 30px 0 15px;
		font-size: 14px;
	}
	.top .sec__contact .secwrap .contact-wrap {
		margin: 30px 0 0;
		padding: 40px 0;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum {
		text-align: center;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum h2 {
		font-size: 18px;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum .num a {
		font-size: 54px;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum .time {
		font-size: 14px;
	}
	.top .sec__contact .secwrap .contact-wrap .btn {
		width: 60%;
		max-width: 500px;
		margin: 15px auto 0;
		display: flex;
		justify-content: space-between;
	}
	.top .sec__contact .secwrap .contact-wrap .btn li {
		width: 49%;
		max-width: 300px;
		margin: 0 auto;
	}
	.top .sec__contact .secwrap .contact-wrap .btn li:nth-child(n+2) {
		margin: 0;
	}
}
@media only screen and (min-width:1024px) {
	.top .sec__contact {
		padding: 60px 30px 120px;
	}
	.top .sec__contact .secwrap {
		padding: 80px 50px 100px;
	}
	.top .sec__contact .secwrap .lead {
		text-align: center;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum {
		text-align: center;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum h2 {
		font-size: 18px;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum .num a {
		font-size: 54px;
	}
	.top .sec__contact .secwrap .contact-wrap .telnum .time {
		font-size: 14px;
	}
	.top .sec__contact .secwrap .contact-wrap .btn {
		width: 60%;
		max-width: 500px;
		margin: 15px auto 0;
		display: flex;
		justify-content: space-between;
	}
	.top .sec__contact .secwrap .contact-wrap .btn li {
		transition: all 0.3s ease;
	}
	.top .sec__contact .secwrap .contact-wrap .btn li:hover {
		transform: translateY(-5px);
	}
}

/* form
----------------------------------------*/
.forminner {
	width: 100%;
	margin: 40px 0 0;
}
.forminner .tit .en {
	margin: 5px 0 0;
	font-size: 12px;
	font-family: var(--font-en);
	line-height: 1.3;
	color: #cca46a;
	text-align: center;
}
.forminner .tit h3 {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	background: linear-gradient(transparent 60%, #cee9f0 40%);
}
.forminner .forminnerwrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 10px 50px;
	color: #333;
}
.forminner .formitem {
	width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #eaeaea;
	font-family: var(--font-min);
}
/*.forminner .formitem:first-child {
  border-top: 1px solid #eaeaea;
}*/
.forminner .formitem .col01 {
	padding: 10px 0 0;
	box-sizing: border-box;
	vertical-align: middle;
	font-size: 16px;
	line-height: 1.7;
	font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
}
.forminner span.indi {
  margin-left: 10px;
	padding: 2px 6px;
  display: inline-block;
  color: #d43333;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.forminner .formitem .col02 {
	padding: 20px 0;
	box-sizing: border-box;
	vertical-align: middle;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.7;
  letter-spacing: normal;
}
.forminner .formitem .col02 a  {
	color: #5f60b0;
}
.forminner .formitem .col02 a :hover {
	text-decoration: underline;
}
.forminner .formitem .col02 p {
	padding: 0 0 10px;
	line-height: 1.7;
}
.forminner .formitem .col02 p.anno,
.forminner .formitem .col02 span.anno {
	padding-top: 8px;
	font-size: 12px;
	color: #5f60b0;
} 
.forminner .formitem .col02 span.tit {
	padding: 0 0 10px;
	font-size: 14px;
	display: block;
}
.forminner .formitem .col02 span.wpcf7-list-item {
	margin: 0 0 1em 0;
	display: block;
	font-size: 14px;
}
.forminner .formitem .col02 .col02inner {
	padding: 15px 0 0;
	display: block;
}

.forminner input,
.forminner select {
	font-size: 14px;
}

.forminner input[type="text"],
.forminner input[type="email"],
.forminner textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	font-family: var(--font-min);
	letter-spacing: 0.1em;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.forminner input[name="your-zip1"],
.forminner input[name="your-zip2"] {
	width: 25%;
}

.forminner select {
	width: 280px;
	padding: 8px 30px 8px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	font-family: var(--font-min);
	letter-spacing: 0.1em;
	background: #fff url(images/common/arr_select.png) no-repeat top 50% right 15px / 9px 9px;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #333;
}

.forminner .col02.check-2col {
	width: 65%;
  margin-left: 5%;
}
.forminner span.mwform-checkbox-field {
	margin: 0 !important;
	padding: 8px 20px 8px 0;
	display: block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.forminner span.mwform-radio-field {
	margin: 0 !important;
	padding: 15px 20px 15px 0;
	display: inline-block;
	box-sizing: border-box;
}

.forminner .formitem .mwform-tel-field input {
	width: 31%;
}

.forminner .formitem .mwform-zip-field input {
	width: inherit;
}
.forminner .formitem div.add {
	display: block;
	margin-top: 12px;
}
.forminner .formitem div.add input {
	width: 100%;
}
.forminner .formitem div.add01 {
	display: block;
	margin-top: 5px;
}
.forminner .formitem div.reserveday {
    padding: 0 0 10px;
}
.forminner .formitem div.reserveday input {
	max-width: 160px;
}
.forminner .formitem div.reserveday .reservetime {
    max-width: 75px;
}
.forminner .formitem div p.reserveday-txt {
	padding: 10px 0 15px;
}

.forminner .formitem span.f-Area {
	display: block;
	padding: 5px 0 0;
}
.forminner .formitem span.f-tit {
	display: block;
	margin-top: 20px;
	padding: 20px 0 0;
	border-top: 1px solid #ddd;
	font-size: 12px;
	color: #eb6777;
}
.forminner .formitem span.f-md {
	display: block;
	margin-top: 10px;
	padding: 5px 0 0;
	font-size: 18px;
	line-height: 1.7;
}

.form-bt ul {
	padding-top: 20px;
	text-align: center;
	letter-spacing: -0.4em;
}
.form-bt li {
	width: 100%;
	display: inline-block;
	margin-top: 5px;
	letter-spacing: normal;
}
.form-bt li:last-child {
	margin-top: 15px;
}
.form-bt01 {
	text-align: center;
	margin: 20px 0 0;
}

input[type="tel"], input[type="email"], textarea, select {
    padding: 0.5em;
}

.forminner .formitem .col02.reserve div:nth-child(n+2) {
	padding-top: 10px;
}

.forminner .formitem .col02.reserve div p {
	padding-top: 5px;
	font-size: 10px;
	line-height: 1.5;
}

.forminner .formitem .col02 .block {
	padding-top: 10px;
}

.forminner input[type="submit"] {
	appearance: none;
  -webkit-appearance: none;
	width: 80%;
	max-width: 250px;
	font-size: 16px;
	color: #fff;
	display: inline-block;
	padding: 18px 0px;
	text-align: center;
	background-color: #3daec9;
	border: none;
	border-radius: 9999px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s;
}
.forminner input[type="submit"]:hover {
	background-color: #e47896;
}

/*----------privacy check-----*/
.formprivacy {
	margin-top: 20px;
	padding: 20px 0;
	line-height: 2.0;
	/*background-color: #f4f4f4;*/
	text-align: left;
}
.formprivacy p {
	font-family: var(--font-min);
	line-height: 2.4;
	letter-spacing: normal;
}
.formprivacy div.check {
	width: 100%;
	margin-top: 20px;
	padding: 10px;
	text-align: center;
	font-family: var(--font-min);
	font-weight: 700;
	display: inline-block;
	letter-spacing: normal;
	background-color: #f9f9f9;
	box-sizing: border-box;
}
.formprivacy div.check span.mwform-checkbox-field {
	width: 100%;
}
.formprivacy div.check span {
	font-weight: 700;
	padding: 10px 0;
}
.formprivacy div.check p {
	font-weight: 500;
	font-size: 12px;
	font-family: var(--font-min);
	text-align: left;
}

.formprivacy div.confirmtit {
	display: none;
}

/*pp-wrap*/
.formprivacy .pp-wrap {
	height: 300px;
	margin-top: 20px;
	padding: 20px 20px;
	text-align: left;
	line-height: 2.2;
	color: #555;
	border: 1px solid #ddd;
	background-color: #f9f9f9;
	overflow-y: scroll;;
	box-sizing: border-box;
}
.formprivacy .pp-wrap h2 {
	margin: 1em 0 1em;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	font-family: var(--font-min);
	letter-spacing: 0.1em;
	line-height: 1.7;
	color: #333;
	text-align: left;
}
.formprivacy .pp-wrap h2::before {
	content: none;
}
.formprivacy .pp-wrap h3 {
	margin: 3em 0 1em;
	font-size: 14px;
	font-family: var(--font-min);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.7;
}
.formprivacy .pp-wrap ul {
	margin: 0;
	padding: 0 0 10px;
}
.formprivacy .pp-wrap ul li {
	line-height: 2.4;
	padding: 0 0 0 1em;
	text-indent: -1em;
	font-size: 12px;
}
.formprivacy .pp-wrap p {
	font-size: 12px;
}
@media only screen and (min-width:768px) {
	.forminner {
		width: 100%;
		margin: 60px 0 0;
	}
	.forminner .forminnerwrap {
		padding: 0 25px 50px;
		box-sizing: border-box;
	}
	.forminner .formitem {
		width: 100%;
		padding: 25px 0;
		display:flex;
		justify-content: space-between;
		flex-wrap:wrap;
		align-items: center;
	}
	.forminner .formitem:nth-of-type(1) {
		align-items: flex-start;
	}
	.forminner .formitem .col01 {
		width: 25%;
		padding: 20px 0;
		box-sizing: border-box;
		vertical-align: middle;
		font-size: 14px;
		color: #333;
		line-height: 1.7;
		font-weight: 700;
		letter-spacing: 0.05em;
		display: inline-block;
	}
	.forminner .formitem .col02 {
		width:74%;
		padding: 20px 0;
		box-sizing: border-box;
		vertical-align: middle;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.7;
		letter-spacing: 0.05em;
	}
	.forminner .formitem .col02 a  {
		color: #5f60b0;
	}
	.forminner .formitem .col02 a :hover {
		text-decoration: underline;
	}

	.forminner .formitem .col02 p.anno,
	.forminner .formitem .col02 span.anno {
		padding-top: 8px;
		font-size: 12px;
		color: #5f60b0;
	}
		
	.forminner input,
	.forminner select {
		font-size: 14px;
	}

	.forminner input[type="text"],
	.forminner input[type="email"],
	.forminner textarea {
		width: 100%;
		padding: 18px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 16px;
		letter-spacing: 0.1em;
		box-sizing: border-box;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}

	.forminner input[name="your-zip1"],
	.forminner input[name="your-zip2"] {
		width: 20%;
	}
		
	.forminner input[type="tel"] {
		width: 50%;
		padding: 18px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 16px;
		letter-spacing: 0.1em;
		box-sizing: border-box;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}

	.forminner select {
		width: 280px;
		padding: 20px 50px 20px 20px;
		border: 1px solid #ddd;
		border-radius: 4px;
		font-size: 16px;
		letter-spacing: 0.1em;
		background: #fff url(images/common/arr_select.png) no-repeat top 50% right 15px / 9px 9px;
		box-sizing: border-box;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}

	.forminner select.birthday01 {
		max-width: 120px;
	}
	.forminner select.birthday02 {
		max-width: 120px;
	}

	.forminner .col02.check-2col {
		width: 65%;
			margin-left: 5%;
	}


	.forminner .formitem div.add {
		display: block;
		margin-top: 12px;
	}
	.forminner .formitem div.add input {
		width: 80%;
	}
	.forminner .formitem div.add01 {
		display: block;
		margin-top: 5px;
	}
	.forminner .formitem div.reserveday {
			padding: 0 0 10px;
	}
	.forminner .formitem div.reserveday input {
		max-width: 250px;
	}
	.forminner .formitem div.reserveday .reservetime {
			max-width: 100px;
	}
	.forminner .formitem div p.reserveday-txt {
		padding: 10px 0 15px;
	}

	.forminner .formitem span.f-Area {
		display: block;
		padding: 5px 0 0;
	}
	.forminner .formitem span.f-tit {
		display: block;
		margin-top: 20px;
		padding: 20px 0 0;
		border-top: 1px solid #ddd;
		font-size: 12px;
		color: #eb6777;
	}
	.forminner .formitem span.f-md {
		display: block;
		margin-top: 10px;
		padding: 5px 0 0;
		font-size: 18px;
		line-height: 1.7;
	}

	.form-bt ul {
		padding-top: 30px;
		text-align: center;
		letter-spacing: -0.4em;
	}
	.form-bt li {
		width: inherit;
		display: inline-block;
		margin-top: 5px;
		letter-spacing: normal;
	}
	.form-bt li:last-child {
		margin: 0 0 0 15px;
	}

	input[type="tel"], input[type="email"], textarea, select {
			padding: 0.5em;
	}

	.forminner .formitem .col02.reserve div:nth-child(n+2) {
		padding-top: 10px;
	}

	.forminner .formitem .col02.reserve div p {
		padding-top: 5px;
		font-size: 10px;
		line-height: 1.5;
	}

	.forminner .formitem .col02 .block {
		padding-top: 10px;
	}

	/*anno txt*/
	.forminner .anno-txt {
			padding: 20px 0;
		letter-spacing: 0.1em;
			line-height: 1.7;
	}
	.forminner .anno-txt span.indi {
		margin-left: 0;
	}
	
	/*----------privacy check-----*/
	.formprivacy div.check {
		padding: 20px;
	}
	.formprivacy div.check p {
		font-size: 14px;
		text-align: left;
	}
	.formprivacy div.check span {
		padding: 20px 0;
		font-size: 16px;
	}
	}
@media only screen and (min-width:1024px) {
	.forminner {
		margin: 100px 0 0;
	}
	.forminner .tit {
		padding: 0 0 20px;
	}
	.forminner .tit .en {
		margin: 5px 0 0;
		font-size: 14px;
	}
	.forminner .tit h3 {
		font-size: 26px;
	}
	.forminner .formitem .col01 {
		font-size: 16px;
	}
}


/* thanks page
----------------------------------------*/

.thanks .thanks-contents {
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 20px 100px;
	text-align: center;
	box-sizing: border-box;
}
.thanks .thanks-contents h1 {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.7;
	text-align: center;
}
.thanks .thanks-contents p {
	margin: 50px 0 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2.0;
	text-align: left;
}
.thanks .thanks-contents .btn {
	width: -moz-fit-content;
	width: fit-content;
	margin: 50px auto 0;
}
.thanks .thanks-contents .btn a {
	padding: 20px;
	display: block;
	background-color: #d4aa6c;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.0;
	color: #fff;
	text-decoration: none;
	text-align: center;
	border-radius: 9999px;
	overflow: hidden;
	transition: all 0.2s ease;
}
.thanks .thanks-contents .btn a:hover {
	text-decoration: none;
	opacity: 0.8;
}
@media only screen and (min-width:768px) {
	.thanks .thanks-contents {
		padding: 100px 20px 120px;
		text-align: center;
	}
	.thanks .thanks-contents h1 {
		font-size: 22px;
	}
	.thanks .thanks-contents p {
		margin: 70px 0 0;
		text-align: center;
	}
	.thanks .thanks-contents .btn {
		margin: 70px auto 0;
	}
}
@media only screen and (min-width:1024px) {
	.thanks .thanks-contents {
		padding: 120px 20px 140px;
		text-align: center;
	}
	.thanks .thanks-contents h1 {
		font-size: 26px;
	}
	.thanks .thanks-contents p {
		margin: 70px 0 0;
		font-size: 16px;
		font-weight: 500;
		line-height: 2.2;
	}
	.thanks .thanks-contents .btn {
		margin: 90px auto 0;
	}
	.thanks .thanks-contents .btn a {
		padding: 30px;
	}
	.thanks .thanks-contents .btn a:hover {
		opacity: 0.8;
		background-color: #e47896;
	}
}