@charset "utf-8";

/* ========== 初期設定 ========== */
html {
	overflow-y: scroll;
	overflow-x: hidden;
}
@media screen and (min-width:1024px) {
	html {
		font-size: 62.5%;
	}
}

body {
	width: 100%;
	height: auto;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-style: normal;
	font-feature-settings: "palt";
	word-break: break-all;
	font-size: calc((100vw / 375) * 15);
	line-height: 1.8;
	letter-spacing: 0.1rem;
	color: #1c1c1c;
	background: #f1f5f6;
	overflow-x: hidden;
}
@media screen and (min-width:1024px) {
  body {
		font-size: 1.8rem;
    line-height: 1.8;
		min-width: 1440px;
  }
}

body, div, p, h1, h2, h3, h4, ul, figure {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
	line-height: 1.5;
}

textarea,input[type="text"],input[type="tel"],input[type="email"],select,
textarea::placeholder,input[type="text"]::placeholder,
input[type="tel"]::placeholder,input[type="email"]::placeholder {
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #1c1c1c;
}

img {
	border: 0;
	max-width: 100%;
	height: auto;
}

p {
	font-weight: 500;
	line-height: 2.0;
}

a {
	color: #1c1c1c;
	text-decoration: none;
	outline: none;
	transition: 0.7s;
	backface-visibility: hidden;
}
a.under-line {
	text-decoration: underline;	
}
@media screen and (min-width:1024px) {
	a {
		transition: all .6s ease;
	}
}

li {
	list-style-type: none;
}

table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

svg {
  overflow: visible;
}

/* レスポンシブ制御 */
.set-pc {
  display: none;
}
@media screen and (min-width:1024px) {
  .set-pc {
    display: block;
  }
}

.set-sp {
  display: block;
}
@media screen and (min-width:1024px) {
  .set-sp {
    display: none;
  }
}

/* クリアフィックス */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
} 
.clearfix:before {
  content: "";
  display: block;
  clear: both;
} 
.clearfix {
  display: block;
}

/* コンテンツ幅 */
.container {
	position: relative;
	width: auto;
	max-width: 1800px;
	margin: 0 auto;
	padding-left: calc((100vw / 375) * 20);
	padding-right: calc((100vw / 375) * 20);
}
@media screen and (min-width: 1024px) {
	.container {
		padding-left: 40px;
		padding-right: 40px;
		min-width: 1360px;
	}
}
@media screen and (min-width: 1440px) {
	.container {
		padding-left: 60px;
		padding-right: 60px;
	}
}
@media screen and (min-width: 1600px) {
	.container {
		padding-left: 100px;
		padding-right: 100px;
	}
}

/* フォント設定 */
.en {
	font-family: "Cinzel", serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}

.exlight { font-weight: 200 !important; }
.light { font-weight: 300 !important; }
.medium { font-weight: 500 !important; }
.semiBold { font-weight: 600 !important; }
.bold {	font-weight: bold !important; }
.black { font-weight: 900 !important; }

/* ========== 共通部品 ========== */
/* ボタンデザイン */
.btn01 {
	position: relative;
	display: block;
	font-size: calc((100vw / 375) * 15);
	font-weight: bold;
	text-align: center;
	background-color: #fff;
	border-radius: 40px;
	padding-top: calc((100vw / 375) * 15);
	padding-bottom: calc((100vw / 375) * 15);
	white-space: nowrap;
	width: calc((100vw / 375) * 300);
	overflow: hidden;
	transition: all .4s ease;
	z-index: 1;
}
@media screen and (min-width:1024px) {
	.btn01 {
		font-size: 1.8rem;
		border-radius: 40px;
		padding-top: 24px;
		padding-bottom: 24px;
		width: 600px;
	}
	.btn01:hover {
		color: #fff;
	}
}

.btn01 .i-arrow {
	position: absolute;
	top: 50%;
	right: calc((100vw / 375) * 8);
	transform: translateY(-50%);
	width: calc((100vw / 375) * 40);
	height: calc((100vw / 375) * 40);
	background: url(../common_img/arrow_circle01.svg) center center / cover no-repeat;
}
@media screen and (min-width:1024px) {
	.btn01 .i-arrow {
		right: 10px;
		width: 60px;
		height: 60px;
	}
}

@media screen and (min-width:1024px) {
	.btn01::before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background-color: #7db6be;
		transition: all .4s ease;
		z-index: -1;
	}
	.btn01:hover::before {
		transform: translateY(-50%) scale(22);
	}
}

/* ========== メインエリア ========== */
main {
	background: #f1f5f6;
}

.contents {
	padding-top: calc((100vw / 375) * 120);
	padding-bottom: calc((100vw / 375) * 120);
}
@media screen and (min-width: 1024px) {
	.contents {
		padding-top: 250px;
		padding-bottom: 100px;
	}
}

.contents img {
	display: block;
  width: calc((100vw / 375) * 220);
	margin: 0 auto;
}
@media screen and (min-width: 1024px) {
	.contents img  {
		width: auto;
	}
}

.contents .head {
	font-size: calc((100vw / 375) * 22);
	text-align: center;
	margin-top: calc((100vw / 375) * 32);
}
@media screen and (min-width: 1024px) {
	.contents .head {
		font-size: 3.8rem;	
		text-align: center;
		margin-top: 50px;
	}
}

.contents p {
	font-size: calc((100vw / 375) * 15);
  margin-top: calc((100vw / 375) * 22);
	text-align: center;
}
@media screen and (min-width: 1024px) {
	.contents p {
		font-size: 1.8rem;
		margin-top: 40px;
		text-align: center;
	}
}

.contents .btn01 {
	margin: calc((100vw / 375) * 40) auto 0;
}
@media screen and (min-width: 1024px) {
	.contents .btn01 {
		margin: 65px auto 0;
	}
}