@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* ---------------------------------------------------------------
	Reset
--------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/* add to
---------------------------------------------------------- */
html{
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}

main{
	display: block;
}

img {
	border-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-weight: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}



/* ---------------------------------------------------------------
	Base
--------------------------------------------------------------- */
html{
	scroll-behavior: smooth;
}
body {
	color: #333;
	font-size: 15px;
	font-weight: normal;
	font-family: "Noto Serif JP", serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, arial, sans-serif;
	line-height: 1.7;
	word-break: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-align: left;
}
.notosans{
	font-family: "Noto Sans JP", sans-serif;
}

a {
	color: #fff;
	text-decoration: none;
}

strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 70%;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

img{
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: auto;
}

table{
	max-width: 100%;
}
.area_center{
	background: #fff;
}
/* PCのみ */
@media all and (min-width: 750px) {
	body{
		/*min-width: 1100px;*/
	}
	#all{
		margin: auto;
		position: relative;
		display: flex;
		/*justify-content: center;*/
	}
	.area_center{
		position: relative;
		z-index: 11;
		overflow: hidden;
	}
	.inner{
		width: 680px;
		margin: auto;
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	a:hover{
		text-decoration: none;
	}
	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
	.no_pc{
		display: none;
	}
}
/* SPのみ */
@media all and (max-width: 751px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	#all{
		width: 100%;
	}
}


/* ---------------------------------------------------------------
	Head
--------------------------------------------------------------- */
header{
	width: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	z-index: 1;
	height: 80px;
}
header > div{
	height: 70px;
	width: 100%;
	background: #fff;
	padding-top: 23px;
	box-shadow: 0px 0px 14px -6px rgba(0, 0, 0, 0.6);
	position: relative;
	z-index: 3;
}
header h1 a{
	display: block;
	margin: 0 0 0 4%;
	width: calc(196 / 750 * 500px);
	width: calc(196px / 2);
}
#global_menu{
	width: 100%;
	margin: auto;
	top: 80px !important;
	z-index: 90;
	padding: 0 4%;
}
#global_menu ul{
	border-top: 1px solid #333;
}
#global_menu ul li{
	list-style: none;
	text-align: center;
	border-bottom: 1px solid #333;
}
#global_menu ul li a{
	color: #333;
	font-size: 20px;
	font-weight: 500;
	display: block;
	padding: 0.8em 0;
	letter-spacing: 0.05em;
}
#global_menu ul li a:hover{
	opacity: 0.7;
}
/* PCのみ */
@media all and (min-width: 750px) {
	header,
	header > div,
	#global_menu{
		max-width: 500px;
	}
}
/* SPのみ */
@media all and (max-width: 751px) {
	#global_menu ul li a{
		font-size: calc(28vw / 750 * 100);
	}
}



/* ---------------------------------------------------------------
	Content
--------------------------------------------------------------- */

/* 下からフェードイン（ふわっと）
---------------------------------------------------------- */
.fadeIn_up {
	opacity: 0;
	transform: translate(0, 50%);
	transition: 1.5s;
}
.fadeIn_up.is-show {
	transform: translate(0, 0);
	opacity: 1;
}


/* fv
---------------------------------------------------------- */
.slider {
	height: calc(1010 / 750 * 500px);
	margin-inline: auto;
	overflow: hidden;
	width: 100%;
}
.slick-img img {
	width: 100%;
}
@keyframes zoomOut {
	0% {
		transform: scale(1.15); /* 拡大率 */
	}
	100% {
		transform: scale(1.05);
	}
}
.add-animation {
	animation: zoomOut 10s linear 0s normal both;
}

.fv{
	margin-top: 70px;
	position: relative;
	border: calc(30 / 750 * 500px) solid #fff;
	border-top: 0;
}
.txt_fv_btm,
.txt_fv_up{
	position: absolute;
	left: 0;
	width: calc(381 / 750 * 500px);
}
.txt_fv_btm{
	bottom: 8%;
}
.txt_fv_up{
	top: 7.5%;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.slider {
		height: calc(980vw / 750 * 100);
	}
	.fv{
		border-width: calc(30vw / 750 * 100);
	}
	.txt_fv_btm,
	.txt_fv_up{
		width: calc(381vw / 750 * 100);
	}
}


/* cont01
---------------------------------------------------------- */
.cont01{
	background: url("img/bg_cont01.jpg") no-repeat bottom center;
	background-size: 100%;
	position: relative;
	padding-bottom: 17%;
}
.cont01 .txt_scroll{
	padding: 6% 0;
	width: calc(106 / 750 * 500px);
	margin: auto;
}
.cont01 h2{
	font-size: calc(78 / 750 * 500px);
	font-weight: 400;
}
.cont01 h2 img{
	margin: 10% 0 10% 4%;
	width: calc(196 / 750 * 500px);
}
.cont01 .img_cont01{
	position: absolute;
	right: 0;
	top: 12%;
	width: calc(270 / 750 * 500px);
}
.cont01 p::before{
	content: "";
	display: block;
	background: #cdd7e0;
	width: calc(236 / 750 * 500px);
	height: calc(4 / 750 * 500px);
	position: absolute;
	top: 0;
	left: 0;
}
.cont01 p{
	font-feature-settings: "palt";
	font-size: calc(24 / 750 * 500px);
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 8% 0 0 4%;
	position: relative;
	line-height: 2.5;
}
.cont01 p + p::before{
	content: none;
}
.cont01 p + p{
	padding-top: 5%;
	font-size: calc(40 / 750 * 500px);
	line-height: 2;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont01 .txt_scroll{
		width: calc(106vw / 750 * 100);
	}
	.cont01 h2 img{
		width: calc(196vw / 750 * 100);
	}
	.cont01 .img_cont01{
		width: calc(270vw / 750 * 100);
	}
	.cont01 p::before{
		width: calc(236vw / 750 * 100);
		height: calc(4vw / 750 * 100);
	}
	.cont01 p{
		font-size: calc(24vw / 750 * 100);
	}
	.cont01 p + p{
		font-size: calc(40vw / 750 * 100);
	}
}


/* cont02
---------------------------------------------------------- */
.cont02 h2{
	margin: 4% 0 4.5%;
	font-weight: 400;
	font-size: calc(48 / 750 * 500px);
	line-height: 2;
	font-feature-settings: "palt";
}
.cont02 h2 span:first-child{
	font-size: calc(28 / 750 * 500px);
	font-weight: 500;
	margin-left: 1em;
}
.cont02 h2 span:last-child{
	font-size: calc(58 / 750 * 500px);
	font-weight: 500;
	color: #d9656a;
}
.cont02_uv::before,
.cont02_uv::after{
	content: "";
	background: url("img/icon_cont02_uv_l.png") no-repeat;
	background-size: contain;
	width: calc(41 / 750 * 500px);
	height: calc(31 / 750 * 500px);
	position: absolute;
}
.cont02_uv::before{
	left: 5%;
	top: calc(-19 / 750 * 500px);
}
.cont02_uv::after{
	background-image: url("img/icon_cont02_uv_r.png");
	right: 5%;
	bottom: calc(-19 / 750 * 500px);
}
.cont02_uv{
	background: rgba(255, 249, 241, 0.9);
	border-radius: 0 calc(30 / 750 * 500px) 0 0;
	padding: 1.5em 1em 1.5em 1.8em;
	font-size: calc(24 / 750 * 500px);
	font-weight: 500;
	width: calc(452 / 750 * 500px);
	min-height: calc(140 / 750 * 500px);
	position: relative;
}
.cont02_uv_r{
	border-radius: calc(30 / 750 * 500px) 0 0 0;
	margin-left: auto;
}
.cont02_uv > strong{
	display: block;
	color: #d9656a;
	font-size: calc(48 / 750 * 500px);
	font-weight: normal;
	line-height: 1.15;
	letter-spacing: 0.05em;
	margin-bottom: 0.6em;
}
.cont02_uv > p{
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1.75;
	font-size: calc(24 / 750 * 500px);
	font-weight: 600;
}
.cont02_uv > div{
	display: inline-block;
	background: #d9656a;
	color: #fff;
	font-size: calc(17 / 750 * 500px);
	font-weight: 500;
	padding: 0 1em;
	letter-spacing: 0.1em;
	margin: 0.5em 1% 0 0;
	text-align: justify;
}
.cont02_01 > img{
	margin: 0 0 0 auto;
	width: calc(400 / 750 * 500px);
}
.cont02_01 .cont02_uv{
	margin-top: -52%;
}
.cont02_02 > img{
	margin: 17% auto 0 0;
	width: calc(420 / 750 * 500px);
}
.cont02_02 .cont02_uv{
	margin-top: -50%;
	width: calc(387 / 750 * 500px);
}
.cont02_03 > img{
	margin: 30% 0 0 auto;
	width: calc(260 / 750 * 500px);
}
.cont02_03 .cont02_uv{
	margin-top: -57%;
	width: calc(515 / 750 * 500px);
}
.cont02_03 .cont02_uv > p{
	letter-spacing: 0.03em;
}
.cont02_04 > img{
	margin: 8% auto 0 0;
	width: calc(380 / 750 * 500px);
}
.cont02_04 .cont02_uv{
	margin-top: -53%;
	width: calc(498 / 750 * 500px);
}
.cont02_05 > img{
	margin: 14% 0 0 auto;
	width: calc(370 / 750 * 500px);
}
.cont02_05 .cont02_uv{
	margin-top: -46%;
	width: calc(405 / 750 * 500px);
}
.cont02_06 > img{
	margin: 11% auto 0 0;
	width: calc(330 / 750 * 500px);
}
.cont02_06 .cont02_uv{
	margin-top: -53%;
	width: calc(499 / 750 * 500px);
}
.cont02_07 > img{
	margin: 13% 0 0 auto;
	width: calc(500 / 750 * 500px);
}
.cont02_07 .cont02_uv{
	margin-top: -12%;
	width: calc(545 / 750 * 500px);
}
.cont02_08 > img{
	margin: 8% auto 0 0;
	width: calc(410 / 750 * 500px);
}
.cont02_08 .cont02_uv{
	margin-top: -53%;
	width: calc(499 / 750 * 500px);
}
.cont02_annotation{
	margin: 5em 1em;
	letter-spacing: 0.25em;
	font-size: calc(16 / 750 * 500px);
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont02 h2{
		font-size: calc(48vw / 750 * 100);
	}
	.cont02 h2 span:first-child{
		font-size: calc(28vw / 750 * 100);
	}
	.cont02 h2 span:last-child{
		font-size: calc(58vw / 750 * 100);
	}
	.cont02_uv::before,
	.cont02_uv::after{
		width: calc(41vw / 750 * 100);
		height: calc(31vw / 750 * 100);
	}
	.cont02_uv::before{
		top: calc(-19vw / 750 * 100);
	}
	.cont02_uv::after{
		bottom: calc(-19vw / 750 * 100);
	}
	.cont02_uv{
		border-radius: 0 calc(30vw / 750 * 100) 0 0;
		font-size: calc(24vw / 750 * 100);
		width: calc(452vw / 750 * 100);
		min-height: calc(140vw / 750 * 100);
	}
	.cont02_uv_r{
		border-radius: calc(30vw / 750 * 100) 0 0 0;
	}
	.cont02_uv > strong{
		font-size: calc(48vw / 750 * 100);
	}
	.cont02_uv > p{
		font-feature-settings: "palt";
		font-size: calc(24vw / 750 * 100);
		/*letter-spacing: 0.05em;
		line-height: 2.1;*/
	}
	.cont02_uv > div{
		font-size: calc(17vw / 750 * 100);
	}
	.cont02_01 > img{
		width: calc(400vw / 750 * 100);
	}
	.cont02_02 > img{
		width: calc(420vw / 750 * 100);
	}
	.cont02_02 .cont02_uv{
		width: calc(387vw / 750 * 100);
	}
	.cont02_03 > img{
		width: calc(260vw / 750 * 100);
	}
	.cont02_03 .cont02_uv{
		width: calc(515vw / 750 * 100);
	}
	.cont02_04 > img{
		width: calc(380vw / 750 * 100);
	}
	.cont02_04 .cont02_uv{
		width: calc(498vw / 750 * 100);
	}
	.cont02_05 > img{
		width: calc(370vw / 750 * 100);
	}
	.cont02_05 .cont02_uv{
		width: calc(405vw / 750 * 100);
	}
	.cont02_06 > img{
		width: calc(330vw / 750 * 100);
	}
	.cont02_06 .cont02_uv{
		width: calc(499vw / 750 * 100);
	}
	.cont02_07 > img{
		width: calc(500vw / 750 * 100);
	}
	.cont02_07 .cont02_uv{
		width: calc(545vw / 750 * 100);
	}
	.cont02_08 > img{
		width: calc(410vw / 750 * 100);
	}
	.cont02_08 .cont02_uv{
		width: calc(499vw / 750 * 100);
	}
	.cont02_annotation{
		font-size: calc(16vw / 750 * 100);
	}
}


/* cont03
---------------------------------------------------------- */

/* cont03_02 */
.ls0{
	letter-spacing: 0 !important;
}
.cont03_02{
	padding: 17% 0 11%;
	background: url("img/bg_cont03_02.jpg") no-repeat top center;
	background-size: cover;
}
.cont03_02 h3{
	text-align: center;
	font-weight: 500;
	font-size: calc(58 / 750 * 500px);
	color: #d9656a;
	letter-spacing: 0.15em;
	line-height: 1.3;
}
.cont03_02 h3 span:first-child{
	display: block;
	font-size: calc(28 / 750 * 500px);
	letter-spacing: 0.15em;
	color: #333;
}
.cont03_02 h3 span:nth-child(2){
	font-size: calc(78 / 750 * 500px);
}
.cont03_02_point h4 img{
	margin: 8% 0 4% 4%;
	width: calc(65 / 750 * 500px);
}
.cont03_02_point h4 + div{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.cont03_02_point h4 + div > img{
	margin: 0 4.5% 0 0;
	width: calc(380 / 750 * 500px);
}
.cont03_02_point_sub_tit{
	margin: 0.8em 0 1.2em;
	font-feature-settings: "palt";
}
.cont03_02_point_sub_tit span{
	display: inline-block;
	font-size: calc(42 / 750 * 500px);
	border: 1px solid #000;
	line-height: 1;
	padding: 0.1em 0.2em 0.2em 0.4em;
	letter-spacing: 0.2em;
	margin-bottom: 0.2em;
	background: #fff;
}
.cont03_02_point02 .cont03_02_point_sub_tit span{
	letter-spacing: 0.1em;
}
.cont03_02_point01 .cont03_02_point_sub_tit + img{
	margin: 0;
	width: calc(237 / 750 * 500px);
}
.cont03_02_point p{
	font-size: calc(20 / 750 * 500px);
	font-weight: 600;
	line-height: 2.1;
	margin: 1em 0;
	letter-spacing: 0.1em;
}
.cont03_02_point_annotation{
	font-size: calc(16 / 750 * 500px);
}
.cont03_02_point02 h4 img{
	margin: 6% 4% 4% auto;
	width: calc(79 / 750 * 500px);
}
.cont03_02_point03 h4 img{
	width: calc(78 / 750 * 500px);
}
.cont03_02_point02 h4 + div{
	flex-direction: row-reverse;
}
.cont03_02_point02 h4 + div > img{
	margin: 0 0 0 6.5%;
}
.cont03_02_point02 h4 + div > div{
	margin: 0 -40% 0 4%;
	position: relative;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont03_02 h3{
		font-size: calc(58vw / 750 * 100);
	}
	.cont03_02 h3 span:first-child{
		font-size: calc(28vw / 750 * 100);
	}
	.cont03_02 h3 span:nth-child(2){
		font-size: calc(78vw / 750 * 100);
	}
	.cont03_02_point h4 img{
		width: calc(65vw / 750 * 100);
	}
	.cont03_02_point02 h4 img{
		width: calc(79vw / 750 * 100);
	}
	.cont03_02_point03 h4 img{
		width: calc(78vw / 750 * 100);
	}
	.cont03_02_point h4 + div > img{
		width: calc(380vw / 750 * 100);
	}
	.cont03_02_point_sub_tit span{
		font-size: calc(42vw / 750 * 100);
	}
	.cont03_02_point01 .cont03_02_point_sub_tit + img{
		width: calc(237vw / 750 * 100);
	}
	.cont03_02_point p{
		font-size: calc(20vw / 750 * 100);
	}
	.cont03_02_point_annotation{
		font-size: calc(16vw / 750 * 100);
	}
}


/* cta
---------------------------------------------------------- */
.bg_cta_btm{
	background: url("img/bg_cta_btm.jpg") no-repeat bottom center;
	background-size: 100% auto;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cta{
		border-width: calc(30vw / 750 * 100);
	}
}

/* cta_01 */
.cta_01{
	position: relative;
	margin-bottom: 5%;
}
.cta h2{
	position: absolute;
	top: 1.8em;
	left: 0;
	right: 0;
	margin: auto;
	font-size: calc(42 / 750 * 500px);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
}
.cta_amount{
	background: #fff;
	border-radius: 50%;
	font-size: calc(28 / 750 * 500px);
	font-weight: 600;
	text-align: center;
	line-height: 1.1;
	letter-spacing: 0.1em;
	width: calc(173 / 750 * 500px);
	height: calc(173 / 750 * 500px);
	position: absolute;
	left: 3.5%;
	top: 41%;
	padding: 5% 0 0 1%;
}
.cta_amount > span.cta_amount_big{
	font-size: calc(38 / 750 * 500px);
}
.cta_amount > span:last-child{
	font-size: calc(20 / 750 * 500px);
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cta h2{
		font-size: calc(42vw / 750 * 100);
	}
	.cta_amount{
		font-size: calc(28vw / 750 * 100);
		width: calc(173vw / 750 * 100);
		height: calc(173vw / 750 * 100);
	}
	.cta_amount > span.cta_amount_big{
		font-size: calc(38vw / 750 * 100);
	}
	.cta_amount > span:last-child{
		font-size: calc(20vw / 750 * 100);
	}
}

/* cta_02 */
.cta_02{
	text-align: center;
}
.cta_fukidashi{
	color: #d9656a;
	text-align: center;
	font-size: calc(28 / 750 * 500px);
	font-weight: 800;
	letter-spacing: 0.19em;
	border: calc(3 / 750 * 500px) solid #d9656a;
	border-radius: calc(20 / 750 * 500px);
	display: inline-block;
	margin: 0.7em auto 1em;
	padding: 0.3em 1em;
	position: relative;
}
.cta_fukidashi::after{
	content: "";
	display: block;
	background: url("img/icon_cta_fukidashi.png") no-repeat;
	background-size: contain;
	width: calc(20 / 750 * 500px);
	height: calc(23 / 750 * 500px);
	position: absolute;
	bottom: calc(-23 / 750 * 500px);
	left: 20%;
}
.cta_02_price{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}
.cta_02_price > div{
	background: #d9656a;
	display: inline-block;
	font-size: calc(28 / 750 * 500px);
	font-weight: 500;
	color: #fff;
	padding: 0 0.4em 0 0.6em;
	letter-spacing: 0.2em;
}
.txt_cta_02_price{
	width: calc(296 / 750 * 500px);
}
.cta_02_price > img{
	margin: 0 0 0 3%;
}
.btn_cta::before{
	content: "";
	display: inline-block;
	background: url("img/icon_track.png") no-repeat;
	background-size: contain;
	width: calc(49 / 750 * 500px);
	height: calc(32 / 750 * 500px);
	margin-right: 3%;
}
.btn_cta{
	display: block;
	background: #d9656a;
	border-radius: calc(69 / 750 * 500px);
	color: #fff;
	font-size: calc(42 / 750 * 500px);
	font-weight: 500;
	letter-spacing: 0.1em;
	width: calc(590 / 750 * 500px);
	height: calc(137 / 750 * 500px);
	line-height: calc(137 / 750 * 500px);
	margin: 6% auto 2%;
	box-shadow: 0px calc(5 / 750 * 500px) calc(10 / 750 * 500px) calc(3 / 750 * 500px) rgb(0 0 0 / 20%);
}
.btn_cta::after{
	content: "";
	display: inline-block;
	background: url("img/icon_arrow.png") no-repeat;
	background-size: contain;
	width: calc(19 / 750 * 500px);
	height: calc(34 / 750 * 500px);
	margin: 0 -5% 0 5%;
}
.link_txt_cta{
	display: inline-block;
	margin: 0.6em auto;
	color: #333;
	font-size: calc(28 / 750 * 500px);
	font-weight: 600;
/*	text-decoration: underline !important;
	text-underline-offset: 0.3em;
*/	letter-spacing: 0.01em;
	border-bottom: calc(2 / 750 * 500px) solid #333;
}
.link_txt_cta img{
	margin: 0;
	display: inline-block;
	vertical-align: middle;
}
.link_txt_cta span{
	font-size: calc(21 / 750 * 500px);
}
.link_txt_cta span.link_txt_cta_big{
	font-size: calc(38 / 750 * 500px);
	font-weight: 800;
}
.txt_cta_02_price_3960{
	width: calc(85 / 750 * 500px);
}
.cta_02_mini{
	color: #d9656a;
	font-size: calc(28 / 750 * 500px);
	font-weight: 600;
	letter-spacing: 0.05em;
	margin: 0.4em 0 -0.7em;
}
.cta_02_annotation{
	margin: 4% 11% 0;
	text-align: left;
	font-size: calc(16 / 750 * 500px);
	letter-spacing: 0.1em;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cta_fukidashi{
		font-size: calc(28vw / 750 * 100);
		border-width: calc(3vw / 750 * 100);
		border-radius: calc(20vw / 750 * 100);
	}
	.cta_fukidashi::after{
		width: calc(20vw / 750 * 100);
		height: calc(23vw / 750 * 100);
		bottom: calc(-23vw / 750 * 100);
	}
	.cta_02_price > div{
		font-size: calc(28vw / 750 * 100);
	}
	.txt_cta_02_price{
		width: calc(296vw / 750 * 100);
	}
	.btn_cta::before{
		width: calc(49vw / 750 * 100);
		height: calc(32vw / 750 * 100);
	}
	.btn_cta{
		border-radius: calc(69vw / 750 * 100);
		font-size: calc(42vw / 750 * 100);
		width: calc(590vw / 750 * 100);
		height: calc(137vw / 750 * 100);
		line-height: calc(137vw / 750 * 100);
		box-shadow: 0px calc(5vw / 750 * 100) calc(10vw / 750 * 100) calc(3vw / 750 * 100) rgb(0 0 0 / 20%);
	}
	.btn_cta::after{
		width: calc(19vw / 750 * 100);
		height: calc(34vw / 750 * 100);
	}
	.link_txt_cta{
		font-size: calc(28vw / 750 * 100);
		border-width: calc(2vw / 750 * 100);
	}
	.link_txt_cta span{
		font-size: calc(21vw / 750 * 100);
	}
	.link_txt_cta span.link_txt_cta_big{
		font-size: calc(38vw / 750 * 100);
	}
	.txt_cta_02_price_3960{
		width: calc(85vw / 750 * 100);
	}
	.cta_02_mini{
		font-size: calc(28vw / 750 * 100);
	}
	.cta_02_annotation{
		font-size: calc(16vw / 750 * 100);
	}
}

/* cta_03 */
.cta_03{
	padding: 5% 11%;
	letter-spacing: 0.05em;
	text-align: justify;
}
.cta_03 h3{
	font-size: calc(28 / 750 * 500px);
	font-weight: 700;
	letter-spacing: 0.1em;
}
.cta_03 h3 + p{
	font-size: calc(22 / 750 * 500px);
	line-height: 1.45;
}
.cta_annotation{
	margin: 0.8em 0 2.3em;
	font-size: calc(16 / 750 * 500px);
	line-height: 1.75;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cta_03 h3{
		font-size: calc(28vw / 750 * 100);
	}
	.cta_03 h3 + p{
		font-size: calc(22vw / 750 * 100);
	}
	.cta_annotation{
		font-size: calc(16vw / 750 * 100);
	}
}


/* cont04
---------------------------------------------------------- */
.cont04_step{
	list-style: none;
	background: url("img/bg_cont04_step.jpg") no-repeat center top;
	background-size: cover;
	width: 100%;
	padding: 2.4% 0 9%;
}
.cont04_step > li{
	text-align: center;
	width: calc(602 / 750 * 500px);
	width: 81%;
	padding-top: 3%;
}
.cont04_step > li:nth-child(odd){
	margin-left: 2%;
}
.cont04_step > li:nth-child(even){
	margin-left: auto;
	margin-right: 4%;
}
.cont04_step > li:nth-child(2){
	margin-top: 0;
}
.cont04_step > li:nth-child(3){
	margin-top: 0;
}
.cont04_step > li:last-child{
	margin-top: 5%;
}
.cont04_step dt{
	font-style: italic;
	font-size: calc(42 / 750 * 500px);
	text-align: left;
	margin-left: 4%;
	line-height: 1.3;
}
.cont04_step dt span{
	font-size: calc(62 / 750 * 500px);
}
.cont04_step > li:nth-child(even) dt{
	text-align: right;
	margin-right: 0.3em;
}
.cont04_step dd{
	background: url("img/bg_stripe_cont04_step.png") top 20px left 20px;
	background-size: calc(22 / 750 * 500px);
	width: 94%;
	margin: 7.5% 0 0 8%;
	padding: 1% 3% 3% 0;
}
.cont04_step dd > div{
	background: #fff;
	border: 2px solid #edd6d7;
	width: 104%;
	margin: -5% 0 0 -4%;
	padding: 10% 3%;
}
.cont04_step_tit{
	font-size: calc(48 / 750 * 500px);
	color: #d9656a;
	line-height: 1.5;
}
.cont04_step_tit + img{
	margin: 8% auto;
}
.cont04_step_tit_sub{
	color: #d9656a;
	font-size: calc(32 / 750 * 500px);
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 0.5em;
}
.cont04_step_tit_sub span{
	background: #faedeb;
	display: inline-block;
	padding: 0 0.2em;
	line-height: 1;
}
.cont04_step dd > div p{
	font-size: calc(24 / 750 * 500px);
	line-height: 1.75;
	font-weight: 600;
}
.cont04_step_annotation{
	font-size: calc(16 / 750 * 500px);
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont04_step > li{
		width: calc(602vw / 750 * 100);
	}
	.cont04_step dt{
		font-size: calc(42vw / 750 * 100);
	}
	.cont04_step dt span{
		font-size: calc(61vw / 750 * 100);
	}
	.cont04_step dd{
		background: url("img/bg_stripe_cont04_step.png") top 20px left 20px;
		background-size: calc(22vw / 750 * 100);
	}
	.cont04_step dd > div{
		border-width: 1px;
	}
	.cont04_step_tit{
		font-size: calc(48vw / 750 * 100);
	}
	.cont04_step_tit + img{
		width: calc(540vw / 750 * 100);
	}
	.cont04_step_tit_sub{
		font-size: calc(32vw / 750 * 100);
	}
	.cont04_step_tit_sub span{
	}
	.cont04_step dd > div p{
		font-size: calc(24vw / 750 * 100);
	}
	.cont04_step_annotation{
		font-size: calc(16vw / 750 * 100);
	}
}


/* cont05
---------------------------------------------------------- */
.cont05{
	background: url("img/bg_cont05.jpg") no-repeat top center;
	background-size: 100% auto;
	padding-bottom: 10%;
}
.cont05 h2{
	background: url("img/bg_cont05_tit.png") no-repeat;
	background-size: contain;
	width: calc(664 / 750 * 500px);
	height: calc(119 / 750 * 500px);
	margin: auto;
	color: #fff;
	text-align: center;
	font-size: calc(42 / 750 * 500px);
	font-weight: 400;
	padding-top: 0.5em;
	font-feature-settings: "palt";
	letter-spacing: -0.05em;
	margin-bottom: 6%;
}
.cont05 ul li{
	list-style: none;
	margin: 5% auto;
}
.cont05 ul li a{
	display: block;
	width: calc(600 / 750 * 500px);
	margin: auto;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont05 h2{
		width: calc(664vw / 750 * 100);
		height: calc(119vw / 750 * 100);
		font-size: calc(42vw / 750 * 100);
	}
	.cont05 ul li a{
		width: calc(600vw / 750 * 100);
	}
}


/* cont06
---------------------------------------------------------- */
.cont06{
	background: url("img/bg_cont06.jpg") no-repeat;
	background-size: cover;
	padding: 13% 0;
}
.cont06 > div{
	background: #fff;
	width: 90%;
	margin: auto;
	box-shadow: 10px 8px 8px #fce2c3;
	padding-bottom: 5%;
}
.cont06_tit_sub{
	width: calc(421 / 750 * 500px);
	margin: auto;
}
.cont06 h2{
	margin: 4% auto;
	text-align: center;
	font-size: calc(62 / 750 * 500px);
	font-weight: 500;
	line-height: 1.3;
	color: #d9656a;
}
.wrap_cont06_img{
	position: relative;
}
.wrap_cont06_img img{
	width: calc(462 / 750 * 500px);
	margin-right: 0;
}
.wrap_cont06_img div{
	background: #fff;
	width: calc(353 / 750 * 500px);
	box-shadow: 5px 3px 8px rgba(0,0,0,.15);
	font-size: calc(48 / 750 * 500px);
	padding: 2% 7% 4%;
	line-height: 1.1;
	font-weight: 500;
	position: absolute;
	top: 18%;
	left: 1%;
}
.wrap_cont06_img div > span{
	font-size: calc(22 / 750 * 500px);
	font-weight: 700;
}
.cont06_txt{
	margin: 5%;
}
.cont06_txt > p:first-child{
	font-size: calc(24 / 750 * 500px);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: justify;
	line-height: 1.75;
	margin-bottom: 1.5em;
}
.cont06_txt > p span{
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: calc(6 / 750 * 500px);
	text-decoration-color: #edd6d7;
	text-underline-offset: 0;
}
.cont06_txt_annotation{
	font-size: calc(16 / 750 * 500px);
	line-height: 1.75;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont06_tit_sub{
		width: calc(421vw / 750 * 100);
	}
	.cont06 h2{
		font-size: calc(62vw / 750 * 100);
	}
	.wrap_cont06_img img{
		width: calc(462vw / 750 * 100);
	}
	.wrap_cont06_img div{
		width: calc(353vw / 750 * 100);
		font-size: calc(48vw / 750 * 100);
	}
	.wrap_cont06_img div > span{
		font-size: calc(22vw / 750 * 100);
	}
	.cont06_txt > p:first-child{
		font-size: calc(24vw / 750 * 100);
	}
	.cont06_txt > p span{
		text-decoration-thickness: calc(6vw / 750 * 100);
	}
	.cont06_txt_annotation{
		font-size: calc(16vw / 750 * 100);
	}
}


/* cont07
---------------------------------------------------------- */
.cont07{
	padding: 13% 0;
}
.cont07 h2{
	text-align: center;
	font-size: calc(48 / 750 * 500px);
	font-weight: 600;
	line-height: 1.5;
}
.cont07 h2::after{
	content: "";
	background: url("img/bdr_cont07.png") no-repeat;
	background-size: contain;
	display: block;
	width: calc(338 / 750 * 500px);
	height: 2px;
	margin: 7% auto 8%;
}
.cont07 ul li{
	margin-top: 6%;
	list-style: none;
	font-size: calc(24 / 750 * 500px);
	font-weight: 600;
	width: 100%;
	position: relative;
	padding-top: 5%;
}
.cont07 ul li img{
	width: calc(370 / 750 * 500px);
	margin: 0;
	position: absolute;
	z-index: -1;
}
.cont07 ul li > div{
	margin-left: 36%;
	padding-top: 3%;
}
.cont07_ul_name{
	font-size: calc(32 / 750 * 500px);
	line-height: 1.3;
}
.cont07 ul li > div a{
	display: block;
	background: #b60005;
	text-align: center;
	font-weight: 300;
	border-radius: 27px;
	width: calc(416 / 750 * 500px);
	padding: 0.5em;
	line-height: 1;
	margin-top: 1em;
}
.cont07 ul li:nth-child(2) > div a{
	background: #352e3a;
}
.cont07 ul li:nth-child(3) > div a{
	background: #b0a8cb;
}
.cont07 ul li:nth-child(4) > div a{
	background: #569793;
}
.cont07 ul li:last-child > div a{
	background: #fabe00;
}
.cont07 ul li > div a:hover{
	opacity: .7;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.cont07 h2{
		font-size: calc(48vw / 750 * 100);
	}
	.cont07 h2::after{
		width: calc(338vw / 750 * 100);
	}
	.cont07 ul li{
		font-size: calc(24vw / 750 * 100);
	}
	.cont07 ul li img{
		width: calc(370vw / 750 * 100);
	}
	.cont07_ul_name{
		font-size: calc(32vw / 750 * 100);
	}
	.cont07 ul li > div a{
		border-radius: calc(27vw / 750 * 100);
		width: calc(416vw / 750 * 100);
	}
}


/* last
---------------------------------------------------------- */
.last{
	margin: 7% 0 5%;
	position: relative;
}
.last_logo{
	position: absolute;
	bottom: 40%;
	left: 0;
	right: 0;
	margin: auto;
	width: calc(196 / 750 * 500px);
}
.last_ul{
	display: flex;
	list-style: none;
	justify-content: space-around;
	width: 37%;
	margin: auto;
	position: absolute;
	bottom: 30.8%;
	left: 0;
	right: 0;
}
.last_ul a{
	cursor: pointer;
}
.last_ul li a img{
	width: calc(75 / 750 * 500px);
}
.foot_nav{
	list-style: none;
	position: absolute;
	bottom: 7.5%;
	left: 0;
	right: 0;
	margin: auto;
	font-size: calc(28 / 750 * 500px);
	text-align: center;
}
.foot_nav li{
	line-height: 2.2em;
}
.foot_nav li a{
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
.foot_nav li a:hover{
	text-decoration: none;
}
.area_center address{
	position: absolute;
	bottom: 4%;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	font-style: normal;
	font-size: calc(20 / 750 * 500px);
	font-weight: 300;
	color: #fff;
}
/* SPのみ */
@media all and (max-width: 751px) {
	.last_logo{
		width: calc(196vw / 750 * 100);
	}
	.last_ul li a img{
		width: calc(75vw / 750 * 100);
	}
	.foot_nav{
		font-size: calc(28vw / 750 * 100);
	}
	.area_center address{
		font-size: calc(20vw / 750 * 100);
	}
}

.success-msg{
	display: none;
	position: absolute;
	bottom: 28.3%;
	right: 25%;
	background: rgba(248,241,231,0.7);
	padding: 0.2em 0.8em;
	text-align: center;
	border-radius: calc(15 / 750 * 500px);
	font-size: calc(15 / 750 * 500px);
}
/* SPのみ */
@media all and (max-width: 751px) {
	.success-msg{
		font-size: calc(15vw / 750 * 100);
	}
}


/* ---------------------------------------------------------------
	PC サイド設定
--------------------------------------------------------------- */

/*------- base -------*/
.background {
	background: url("img/bg_pc.jpg") no-repeat top center;
	background-size: cover;
	background-attachment: fixed;
}
#all{
	display: flex;
	/*justify-content: center;*/
	align-items: flex-start;
}
.sticky{
	position: sticky;
	/*left: 0;*/
	top: 0;
}
#all{
	width: 100%;
}
/* PCのみ */
@media all and (min-width: 750px) {
	.area_center{
		width: 500px;
		margin: auto;
	}
}
/* SPのみ */
@media all and (max-width: 751px) {
	.area_center{
		width: 100%;
	}
}