
/* リセット
---------------------------------------------------------------------------- */
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 ,input ,textarea {
	margin:0;
	padding:0;
	border:0;
	box-sizing:border-box;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
body {
	width: 100%;
	max-width:1920px;
	margin: 0 auto !important;
	min-height: 100vh;
	background: #030505;
	color: #fff;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 400;
	line-height:1.96;
	text-rendering: optimizeSpeed;
	font-size: clamp(0.9rem, 1vw, 1.1rem);
}

/* 
font-family戻し用BK

	font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";

*/


/*基準を1rem=16pxに設定*/
html {
	font-size:1vw;
	scroll-behavior: smooth;
}
.zen-old-mincho-regular {
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
}
.fas {
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
		display:inline-block;
		font-style:normal;
		font-variant:normal;
		text-rendering:auto;
		line-height:1;
		font-family:"Font Awesome 6 Free",sans-serif;
		font-weight:900;
	}
	@font-face {
		font-family:"Font Awesome 6 Free";
		font-style:normal;
		font-weight:900;
		font-display:swap;
		src:url("../webfonts/fa-solid-900.eot");
		src:url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),
		url("../webfonts/fa-solid-900.woff2") format("woff2"),
		url("../webfonts/fa-solid-900.woff") format("woff"),
		url("../webfonts/fa-solid-900.ttf") format("truetype"),
		url("../webfonts/fa-solid-900.svg#fontawesome") format("svg")
	}

	.waku {
		overflow: hidden;
		zoom: 1;
	}
	.clearfix {
		zoom: 1;
	}
	.clearfix:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden;
	}



/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type=checkbox],
input[type=radio] {
	display: none;
}
input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
a {
	-webkit-text-decoration: none;
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	transition: 0.6s;
}
a:hover {
	color: #cda94e;
	text-decoration: none;
}

/* @keyframes
---------------------------------------------- */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* header
---------------------------------------------- */
.header {
	content: "";
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}
.header__wrap {
	display: flex;
	padding: 2.5rem 2.5%;
	align-items: center;
}
.header__btn {
	margin-left: auto;
}
.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1920px;
	padding-left: 0px;
	padding-right: 0px;
	width: 100%;
}
.menu-btn {
	cursor: pointer;
	height: 2.125rem;
	overflow: hidden;
	position: relative;
	width: 4.375rem;
	z-index: 100;
}
.menu-btn.is-active::after {
	opacity: 0;
	transform: translateX(-100%);
	visibility: hidden;
}
.menu-btn span {
	background-color: #fff;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	transition: transform 0.2s, rotate 0.2s, width 0.2s;
	width: 100%;
}
.menu-btn.is-reverse span.is-active {
	background-color: #fff;
}
.menu-btn span:nth-of-type(1) {
	top: 0;
}
.menu-btn span:nth-of-type(2) {
	top: 0.9375rem;
}
.menu-btn span:nth-of-type(3) {
	bottom: 0;
	right: 0;
}
.menu-btn span.is-active:nth-of-type(1) {
	transform: rotate(45deg) translate(8%, 0.5rem);
}
.menu-btn span.is-active:nth-of-type(2) {
	transform: translateX(-100%);
}
.menu-btn span.is-active:nth-of-type(3) {
	transform: rotate(-45deg) translate(8%, -0.5rem);
	width: 100%;
}
.nav-menu {
	background:rgba(23,37,39,0.9);
	content: "";
	height: 100vh;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease-out;
	width: 35.25rem;
	z-index: 20;
}
.nav-menu.is-show {
	transform: translateX(0);
}
.nav-menu__lists {
	padding-top: 7.25rem;
}
.nav-menu__link {
	color: #fff;
	cursor: pointer;
	display: block;
	font-size: clamp(16px, 2.1vw, 24px);
	line-height: 1;
	padding: 0.5375rem 1.75rem 0.9375rem 4.5vw;
	transition: transform 0.4s, opacity 0.3s;
	margin-bottom:1.5rem;
}
.nav-menu__link:hover {
	opacity: 0.7;
	transform: translateY(-0.1875rem);
}
.nav-menu__link::before {
	content: "";
	display: inline-block;
	margin-right: 1.25rem;
	margin-bottom: 0.5rem;
	width: 2.5vw;
	height: 1px;
	background: #fff;
}
.menu-txt{
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: clamp(8px, 0.55vw, 11px);
	padding-left:0.8rem;
	letter-spacing: 0.15rem;
}


/* footer
---------------------------------------------- */
footer {
	color: #fff;
	padding:3.5rem 5%;
	text-align: center;
}
footer .copy-txt{
	font-size: 13px;
}
.g-map-area iframe{
	vertical-align: bottom;
}
.g-map-area > div {
position: relative;
}
.g-map-area > div::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: overlay;
}

.scroll-top-link{
	width:100%;
}
.scroll-top-link a{
	width:100%;
	display: block;
	text-align: center;
	background: #172527;
	color:#fff;
	line-height: 1;
	padding:1.6rem 1rem 2.3rem;
	font-size: clamp(0.5rem, 1vw, 1rem);
}
.scroll-top-link a:hover{
	background: #cda94e;
}
.scroll-top-link a i{
	margin:0 0 0.2rem;
	line-height: 1;
	font-size: clamp(0.8rem, 3.25vw, 1.75rem);
}

/* index
---------------------------------------------- */
.top-main-area{
	width: 100%;
	position: relative;
	aspect-ratio: 1920/1080;
}
.h-logo-area {
	position: absolute;
	width: 20rem;
	min-width:210px;
	max-width:320px;
	top:1.5rem;
	left:2rem;
	z-index: 100;
}
.h-logo-area .h-logo a{
	display: block;
}

.top-main-area .top-movie-area{
	width: 100%;
	position: absolute;
}
.top-main-area .top-movie-area video{
	width: 100%;
}

.read-area{
	padding:3rem 0;
}
.read-area .img-logo{
	margin:0 auto;
	width:30vw;
	max-width:566px;
}
.read-area .catch-txt{
	margin:0 auto 5rem;
	width:80vw;
	max-width:1394px;
}
.read-area .txt{
	margin-bottom:3rem;
	font-size: clamp(13px, 1.25vw, 21px);
	line-height:2.2;
	text-align: center;
	font-weight: bold;
}

.st-area{
	padding:3rem 0;
	line-height: 1.7;
}
.st-area .st-box-01{
	background: url("../images/bg-st-box-01-min.png") no-repeat center center;
	background-size: 100%;
	aspect-ratio: 1920/731;
	margin-bottom:5.5rem;
}
.st-area .st-box-01 .con{
	padding:2.5rem 3rem;
	width:42.5%;
}
.st-area .st-box-01 .con .icon{
	width:17vw;
	max-width: 323px;
	margin-bottom:1.75rem;
}
.st-area .st-box-01 .con .txt{
	font-size: clamp(17px, 2vw, 42px);
	font-weight: 600;
	padding-left:1rem;
}
.st-area .st-box-01 .con .txt .big-txt{
	font-size: 1.5em;
}
.st-area .st-box-01 .con .txt .tsume{
	letter-spacing: -0.1145rem;
}

.st-area .st-box-02{
	background: url("../images/bg-st-box-02-min.png") no-repeat center center;
	background-size: 100%;
	aspect-ratio: 1920/731;
	margin-bottom:5.5rem;
}
.st-area .st-box-02 .con{
	padding:5.5rem 3rem 0;
	float:right;
	width:42.5%;
}
.st-area .st-box-02 .con .icon{
	width:100%;
	text-align:right;
	margin-bottom:1.75rem;
}
.st-area .st-box-02 .con .icon img{
	width:17vw;
	max-width: 323px;
}
.st-area .st-box-02 .con .txt{
	font-size: clamp(17px, 2vw, 42px);
	font-weight: 600;
	padding-left:1rem;
}
.st-area .st-box-02 .con .txt .big-txt{
	font-size: 1.5em;
}
.st-area .st-box-02 .con .txt .tsume{
	letter-spacing: -0.1145rem;
}

.st-area .st-box-03{
	background: url("../images/bg-st-box-03-min.png") no-repeat center center;
	background-size: 100%;
	aspect-ratio: 1920/731;
	margin-bottom:5.5rem;
}
.st-area .st-box-03 .con{
	padding:2.5rem 3rem;
}
.st-area .st-box-03 .con .icon{
	width:17vw;
	max-width: 323px;
	margin-bottom:1.75rem;
}
.st-area .st-box-03 .con .txt{
	font-size: clamp(17px, 2vw, 42px);
	font-weight: 600;
	padding-left:1rem;
}
.st-area .st-box-03 .con .txt .big-txt{
	font-size: 1.5em;
}
.st-area .st-box-03 .con .txt .mini-txt{
	font-size: 0.65em;
}
.st-area .st-box-03 .con .txt .tsume{
	letter-spacing: -0.1145rem;
}

.prof-area{
	background: url("../images/bg-about-min.png") no-repeat top center;
	background-size: 100%;
}
.prof-area .inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.prof-area .inner .photo{
	width: 50%;
	padding:4.5rem 5.5rem 0;
}
.prof-area .inner .con{
	width: 50%;
	padding:4.5rem 7.5rem 0 0;
}
.prof-area .inner .con h2{
	font-size: clamp(21px, 3.2vw, 58px);
	margin-bottom:2.5rem;
	line-height: 1.6;
}
.prof-area .inner .con .name{
	font-size: clamp(14px, 1.6vw, 28px);
	margin-bottom:2.5rem;
	font-weight: 600;
	line-height: 1.6;
}
.prof-area .inner .con .txt{
	font-size: clamp(9px, 1.15vw, 20px);
}

.voice-area{
	width: 100%;
	margin-bottom:5.5rem;
	background: #172527;
}
.voice-area .inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.voice-area .inner .ttl-img{
	width: 62%;
	padding:6.5rem 6.5rem 5rem 7rem;
}
.voice-area .inner .img-voice{
	width: 38%;
	padding:3.5rem 7.5rem 3.5rem 0;
}

.price-area{
	width: 100%;
	margin-bottom:5.5rem;
}
.price-area .ttl-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.price-area .ttl-area h2{
	font-size: clamp(21px, 3.2vw, 58px);
	font-weight: normal;
}
.price-area .ttl-area .ttl-en{
	font-size: clamp(15px, 2vw, 28px);
	letter-spacing: 0.15rem;
}
.price-area .img-price-01-area .syokaihi{
	width: 100%;
	max-width: 1480px;
	margin: 0 auto 5.5rem;
	padding:0 5rem 2.5rem;
	display: flex;
	flex-wrap: wrap;
}
.price-area .img-price-01-area .syokaihi div{
	width: 50%;
	padding:0 1rem;
}

.price-area .tsudo-price-area{
	width: 100%;
	max-width: 1680px;
	margin: 0 auto 5.5rem;
	padding:0 2rem;
	text-align: center;
}

.price-area .tsudo-price-area h3{
	width: 100%;
	margin: 0 auto 5.5rem;
	text-align: center;
	padding:0.75rem 1rem;
	background: #172527;
	font-size:32px;
}
.price-area .tsudo-price-area .tsudo-price div{
	margin: 0 auto 3.5rem;
}

.price-area .img-price-02-area{
	max-width: 1680px;
	margin: 0 auto 5.5rem;
	padding:0 2rem;
	text-align: center;
}
.price-area .img-price-02-area h3{
	width: 100%;
	margin: 0 auto 4.5rem;
	text-align: center;
	padding:0.75rem 1rem;
	background: #172527;
	font-size:32px;
}

.app-area{
	width: 100%;
	padding:3rem 0 2rem;
	margin-bottom:5.5rem;
	background: #172527;
}
.app-area .inner{
	width: 100%;
	max-width: 1200px;
	padding:0 1.5rem;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
}
.app-area .inner .iphone{
	width: 25%;
	padding-right:2%;
}
.app-area .inner .con{
	width: 75%;
	color:#030505;
}
.app-area .inner .con .ttl-area{
	width: 100%;
	display: table;
	margin-bottom: 0.35rem;
}
.app-area .inner .con .ttl-area h2{
	width: 60%;
	color:#fff;
	font-size: clamp(21px, 3.7vw, 44px);
	display: table-cell;
	font-weight: 600;
}
.app-area .inner .con .ttl-area .sub-ttl{
	width: 40%;
	color:#fff;
	background: #665425;
	line-height: 1.4;
	text-align: center;
	padding:0.95rem .5rem;
	font-size: clamp(11px, 1.45vw, 17px);
	font-weight: bold;
	vertical-align: middle;
	display: table-cell;
}
.app-area .inner .con .tokuten{
	width: 100%;
	display: table;
	margin-bottom:1rem;
}
.app-area .inner .con .tokuten .icon{
	width: 127px;
	display: table-cell;
	vertical-align: middle;
}
.app-area .inner .con .tokuten .txt-area{
	display: table-cell;
	padding:0.75rem 2rem;
	vertical-align: middle;
	line-height: 1.6;
	font-size: clamp(15px, 1.2vw, 18px);
	color:#fff;
}
.app-area .inner .con .tokuten .txt-area .txt span{
	font-size: clamp(17px, 1.4vw, 24px);
	font-weight: bold;
	color:#ffa200;
}
.app-area .inner .con .inst .base{
	width: 100%;
	display: flex;
	padding:1rem 2rem;
	background: #2b3e41;
	border-radius: 5px;
}
.app-area .inner .con .inst .base .qr{
	width: 156px;
}
.app-area .inner .con .inst .base .qr img{
	display: inline-block;
}
.app-area .inner .con .inst .base .inst-con{
	padding-left:2rem;
	width: 100%;
}
.app-area .inner .con .inst .base .inst-con h3{
	padding:0.35rem;
	background: #030505;
	text-align: center;
	font-size:14px;
	color: #fff;
	margin-bottom: 0.5rem;
}
.app-area .inner .con .inst .base .inst-con .inst-txt{
	font-size:14px;
	margin-bottom: 0.5rem;
	color: #fff;
}
.app-area .inner .con .inst .base .inst-con .link{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.app-area .inner .con .inst .base .inst-con .link .ban-ap-app{
	width:138px;
	margin-right:6px;
}
.app-area .inner .con .inst .base .inst-con .link .ban-g-app{
	width:154px;
}

.access-area{
	width: 100%;
	margin-bottom:5.5rem;
}
.access-area .ttl-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.access-area .ttl-area h2{
	font-size: clamp(21px, 3.2vw, 58px);
	font-weight: normal;
}
.access-area .ttl-area .ttl-en{
	font-size: clamp(15px, 2vw, 28px);
	letter-spacing: 0.15rem;
}
.access-area .txt-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.access-area .photo-area{
	width:100%;
	max-width: 1620px;
	display: flex;
	flex-wrap: wrap;
	padding:0 2.5rem;
	margin:0 auto 8.5rem;
}
.access-area .photo-area .photo{
	width:50%;
	padding:0 0.5rem;
}

.cta-area{
	width: 100%;
	margin-bottom:5.5rem;
}
.cta-area .ttl-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.cta-area .ttl-area h2{
	font-size: clamp(21px, 3.2vw, 58px);
	font-weight: normal;
}
.cta-area .ttl-area .ttl-en{
	font-size: clamp(15px, 2vw, 28px);
	letter-spacing: 0.15rem;
}
.cta-area .txt-area{
	font-size: 30px;
	text-align: center;
	margin-bottom:5.5rem;
}















/*---------- SP 幅768pxまでnone ----------*/
@media(max-width:768px) {
.pc{
	display: none !important;
}
html {
	font-size: 2vw;
	scroll-behavior: smooth;
}
.h-logo-area {
	min-width:auto;
}

.nav-menu {
	width: 100%;
}
.nav-menu__lists {
	padding-top: 13rem;
}
.nav-menu__link {
	font-size: 20px;
	padding: 0.9375rem 1.75rem 1.9375rem 5rem;
}
.scroll-top-link a{
	width:100%;
	display: block;
	text-align: center;
	color:#d1d4e4;
	line-height: 1;
	background: #172527;
	padding:3.8rem 1rem 5.3rem;
	font-size: clamp(16px, 1.25vw, 20px);
}
.scroll-top-link a:hover{
	background: #cda94e;
}
.scroll-top-link a i{
	margin:0 0 0.2rem;
	line-height: 1;
	font-size: clamp(0.8rem, 3.25vw, 1.75rem);
}

/* index
---------------------------------------------- */
.top-main-area{
	aspect-ratio: 1080/1920;
}
.read-area{
	padding:3rem 0 5rem;
}
.read-area .img-logo{
	width:70vw;
}
.read-area .catch-txt{
	margin:0 auto 8rem;
	width:80vw;
}
.read-area .txt{
	margin-bottom:3rem;
	font-size: 16px;
	line-height:2.2;
	padding:0 3.5rem;
	text-align: left;
}


.st-area{
	padding:5rem 0;
	line-height: 1.7;
	background: #243236 url("../images/bg-strp.png") repeat;
}
.st-area .sp-photo{
	padding:5rem 0;
}
.st-area .st-box-01{
	background: none;
	background-size: 100%;
	aspect-ratio: auto;
	margin-bottom:5.5rem;
}
.st-area .st-box-01 .con{
	padding:2.5rem 3rem;
	text-align: center;
	width:100%;
}
.st-area .st-box-01 .con .icon{
	width:35vw;
	max-width: 323px;
	margin:0 auto 3.75rem;
}
.st-area .st-box-01 .con .txt{
	font-size: 20px;
	font-weight: 600;
}
.st-area .st-box-01 .con .txt .big-txt{
	font-size: 1.5em;
}
.st-area .st-box-01 .con .txt .tsume{
	letter-spacing: -0.1145rem;
}

.st-area .st-box-02{
	background: none;
	background-size: 100%;
	aspect-ratio: auto;
	margin-bottom:5.5rem;
}
.st-area .st-box-02 .con{
	padding:2.5rem 3rem;
	text-align: center;
	float:none;
	width:100%;
}
.st-area .st-box-02 .con .icon{
	width:100%;
	text-align:center;
	margin:0 auto 3.75rem;
}
.st-area .st-box-02 .con .icon img{
	width:35vw;
	max-width: 323px;

}
.st-area .st-box-02 .con .txt{
	font-size: 20px;
	font-weight: 600;
}
.st-area .st-box-02 .con .txt .big-txt{
	font-size: 1.5em;
}
.st-area .st-box-02 .con .txt .tsume{
	letter-spacing: -0.1145rem;
}
.st-area .st-box-03{
	background: none;
	background-size: 100%;
	aspect-ratio: auto;
	margin-bottom:5.5rem;
}
.st-area .st-box-03 .con{
	padding:2.5rem 3rem;
	text-align: center;
}
.st-area .st-box-03 .con .icon{
	width:35vw;
	max-width: 323px;
	margin:0 auto 3.75rem;
}
.st-area .st-box-03 .con .txt{
	font-size: 20px;
	font-weight: 600;
}
.st-area .st-box-03 .con .txt .big-txt{
	font-size: 1.5em;
}
.st-area .st-box-03 .con .txt .mini-txt{
	font-size: 0.65em;
}
.st-area .st-box-03 .con .txt .tsume{
	letter-spacing: -0.1145rem;
}

.prof-area{
	background: url("../images/bg-about-min.png") no-repeat top center;
	background-size: 150%;
}
.prof-area .inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.prof-area .inner .photo{
	width: 100%;
	padding:2.5rem 8.5rem 0;
}
.prof-area .inner .con{
	width: 100%;
	padding:4.5rem 3.5rem 12.5rem;
}
.prof-area .inner .con h2{
	font-size: 27px;
	margin-bottom:3.5rem;
	line-height: 1.6;
	text-align: center;
}
.prof-area .inner .con .name{
	font-size: 17px;
	text-align: center;
	margin-bottom:3.5rem;
}
.prof-area .inner .con .txt{
	font-size:15px;
}

.voice-area{
	width: 100%;
	margin-bottom:8.5rem;
	background: #172527;
}
.voice-area .inner{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.voice-area .inner .ttl-img{
	width: 100%;
	padding:8.5rem 1.5rem 5rem;
}
.voice-area .inner .img-voice{
	width: 100%;
	padding:0 3.5rem 10rem;
}

.price-area{
	width: 100%;
	margin-bottom:5.5rem;
}
.price-area .ttl-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.price-area .ttl-area h2{
	font-size: 36px;
	font-weight: normal;
}
.price-area .ttl-area .ttl-en{
	font-size: 18px;
	letter-spacing: 0.15rem;
}

.price-area .img-price-01-area .syokaihi{
	width: 100%;
	margin: 0 auto 5.5rem;
	padding:0 2.5rem 2.5rem;
	display: flex;
	flex-wrap: wrap;
}
.price-area .img-price-01-area .syokaihi div{
	width: 100%;
	padding:0 1rem 2rem;
	text-align: center;
}

.price-area .tsudo-price-area{
	width: 100%;
	margin: 0 auto 5.5rem;
	padding:0 3.5rem;
	text-align: center;
}

.price-area .tsudo-price-area h3{
	width: 100%;
	margin: 0 auto 5.5rem;
	text-align: center;
	padding:0.75rem 1rem;
	background: #172527;
	font-size: 24px;
}
.price-area .tsudo-price-area .tsudo-price div{
	margin: 0 auto 5.5rem;
}

.price-area .img-price-02-area{
	max-width: 1680px;
	margin: 0 auto 5.5rem;
	padding:0 3.5rem;
	text-align: center;
}
.price-area .img-price-02-area h3{
	width: 100%;
	margin: 0 auto 4.5rem;
	text-align: center;
	padding:0.75rem 1rem;
	background: #172527;
	font-size: 24px;
}



.app-area{
	width: 100%;
	padding:7.5rem 0;
	margin-bottom:5.5rem;
}
.app-area .inner{
	width: 100%;
	max-width: 1200px;
	padding:0 1.5rem;
	margin:0 auto;
	display: flex;
	flex-wrap: wrap;
}
.app-area .inner .iphone{
	width: 100%;
	padding:0 9rem 2rem 9rem;
	text-align: center;
}
.app-area .inner .iphone img{
	max-width: 125px;
}
.app-area .inner .con{
	width: 100%;
}
.app-area .inner .con .ttl-area{
	width: 100%;
	display: block;
	margin-bottom: 4.35rem;
}
.app-area .inner .con .ttl-area h2{
	width: 100%;
	font-size: 30px;
	display: block;
	font-weight: 600;
	text-align: center;
	padding:0 0 1rem;
}
.app-area .inner .con .ttl-area .sub-ttl{
	width: 100%;
	line-height: 1.4;
	text-align: center;
	padding:1.25rem 0.5rem;
	font-size: 16px;
	font-weight: bold;
	display: block;
}
.app-area .inner .con .tokuten{
	width: 100%;
	display: block;
	margin-bottom:1rem;
}
.app-area .inner .con .tokuten .icon{
	width: 127px;
	display: block;
	margin:0 auto 3rem;
}
.app-area .inner .con .tokuten .txt-area{
	display: block;
	padding:0.75rem 1.5rem;
	line-height: 1.6;
	font-size: 14px;
}
.app-area .inner .con .tokuten .txt-area .txt span{
	font-size: clamp(17px, 1.4vw, 24px);
	font-weight: bold;
}
.app-area .inner .con .inst .base{
	width: 100%;
	display: block;
	padding:2rem;
	border-radius: 5px;
}

.app-area .inner .con .inst .base .inst-con{
	padding-left:0;
	width: 100%;
}
.app-area .inner .con .inst .base .inst-con h3{
	padding:1rem;
	background: #030505;
	text-align: center;
	font-size:15px;
	color: #fff;
	margin-bottom: 1.5rem;
}
.app-area .inner .con .inst .base .inst-con .inst-txt{
	font-size:12px;
	margin-bottom: 1.5rem;
}
.app-area .inner .con .inst .base .inst-con .link{
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.app-area .inner .con .inst .base .inst-con .link .ban-ap-app{
	width:138px;
	margin-right:6px;
}
.app-area .inner .con .inst .base .inst-con .link .ban-g-app{
	width:154px;
}


.access-area{
	width: 100%;
	margin-bottom:8.5rem;
}
.access-area .ttl-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.access-area .ttl-area h2{
	font-size: 36px;
	font-weight: normal;
}
.access-area .ttl-area .ttl-en{
	font-size: 18px;
	letter-spacing: 0.15rem;
}
.access-area .txt-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
	font-size: 16px;
}
.access-area .photo-area{
	width:100%;
	max-width: 1620px;
	display: flex;
	flex-wrap: wrap;
	padding:0 2.5rem;
	margin:0 auto 8.5rem;
}
.access-area .photo-area .photo{
	width:100%;
	padding:0 0.5rem 1.5rem;
}

.cta-area{
	width: 100%;
	margin-bottom:5.5rem;
}
.cta-area .ttl-area{
	width: 100%;
	margin-bottom:5.5rem;
	text-align: center;
}
.cta-area .ttl-area h2{
	font-size: 36px;
	font-weight: normal;
}
.cta-area .ttl-area .ttl-en{
	font-size: 18px;
	letter-spacing: 0.15rem;
}
.cta-area .txt-area{
	font-size: 21px;
	text-align: center;
	margin-bottom:5.5rem;
}

}
/*---------- 769px以上でnone ----------*/
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

