@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
	--hiragino: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
	--notoJP: "Noto Sans JP", sans-serif;
	--notoseJP: "Noto Serif JP", serif;

	/* color */
	--blk: 98, 95, 95;
	--wht: 255, 255, 255;
	--brw: 188, 130, 87;
	--lightBlue: 220, 241, 244;
	--mainColor: 193, 174, 137;
	--periodColor: 98, 95, 95;
	--textColor: 112, 112, 112;
}

/* reset add
----------------------------------- */
body,h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
	font-weight: normal;
}

ul {
	list-style: none;
}

a {
	cursor: pointer;
}

a:hover {
	opacity: 0.8;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline-block;
}
br.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}	
	br.pc {
		display: none;
	}
	br.sp {
		display: inline-block;
	}
}

a[href^="tel"] {
	color: #000;
	text-decoration: none;
}

/*
	#reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

p:not(:last-of-type) {
	/* margin-bottom: 1em; */
	word-wrap: break-word;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset, img {
	border: 0;
}

address, caption, cite, code, dfn, em, th, var {
	font-style: normal;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

caption, th {
	text-align: left;
}

a {
	text-decoration: none;
	transition: all 0.5s ease 0s;
}
a:hover {
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

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


/* common
----------------------------------- */
html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background: url(../img/bg-img_pc.webp) no-repeat;
	background-size: cover;
	line-height: 1.5;
	color: #343131;
	font-family: var(--notoJP);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
}

.note {
	font-size: 13px;
}
.note::before {
	content: '*';
}

@media screen and (max-width: 768px) {}

/* バーガーメニュー
---------------------------------------- */
.header {
	max-width: 1366px;
	margin: 0 auto;
	position: relative;
}

.header .logo {
	width: 250px;
	position: absolute;
	top: 20px;
	left: 20px;
}

.header .pc-menu {
	display: flex;
	align-items: center;
	background: url(../img/pc-menu-bg.webp) no-repeat;
	background-size: 100%;
	width: 300px;
	height: 210px;
	padding-left: 40px;
	position: fixed;
	top: 20px;
	right: max(0px, calc((100vw - 1366px) / 2));
	z-index: 100;
}

.header .pc-menu ul li {
	font-size: min(2rem, 1.464vw);
	font-weight: 500;
	margin-bottom: 10px;
	position: relative;
}
.header .pc-menu ul li::before {
	content: '';
	background: url(../img/menu-icon.webp) no-repeat;
	background-size: 100%;
	display: block;
	width: 16px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translate(-50%, -50%) rotate(-25deg);
}
.header .pc-menu ul li:hover::before {
	transform: translate(-50%, -50%);
}

.header .pc-menu ul li a {
	color: #000;
}

.header .area-icon-left .icon {
	/* width: 26%; */
	width: 350px;
	position: absolute;
	left: 30px;
}

.header .area-icon-left .icon.iconA {
    top: 240px;
}

.header .area-icon-left .icon.iconB {
	/* width: 6%; */
	width: 90px;
	top: 920px;
	left: 150px;
}

.header .area-icon-left .icon.iconC {
	top: 1150px;
}

.header .area-icon-left .icon.iconD {
	/* width: 7.4%; */
	width: 111px;
	top: 1860px;
	left: 150px;
}

.header .area-icon-left .icon.iconE {
	top: 2170px;
}

.header .area-icon-left .icon.iconF {
	/* width: 14%; */
	width: 210px;
	top: 2930px;
	left: 90px;
	mix-blend-mode: multiply;
}

.header .area-icon-left .icon.iconG {
	top: 3090px;
}

.header .area-icon-left .icon.iconH {
	top: 3980px;
}

.header .area-icon-right .icon {
	/* width: 26%; */
	width: 350px;
	position: absolute;
	right: 30px;
}

.header .area-icon-right .icon.iconA {
	/* width: 19%; */
	width: 285px;
	top: 340px;
	right: 130px;
}

.header .area-icon-right .icon.iconB {
	top: 690px;
}

.header .area-icon-right .icon.iconC {
	/* width: 14%; */
	width: 210px;
	top: 1160px;
	right: 120px;
	z-index: -1;
	mix-blend-mode: multiply;
}

.header .area-icon-right .icon.iconD {
	top: 1520px;
}

.header .area-icon-right .icon.iconE {
	top: 2350px;
}

.header .area-icon-right .icon.iconF {
	top: 3200px;
}

.header .area-icon-right .icon.iconG {
	/* width: 14%; */
	width: 210px;
	top: 4090px;
	right: 80px;
	z-index: -1;
	mix-blend-mode: multiply;
}

.header .area-icon-right .icon.iconH {
	top: 4210px;
}

@media screen and (max-width: 1280px) {
	.header .area-icon-left .icon {
		width: 22%;
	}
	.header .area-icon-left .icon.iconB {
		width: 6%;
	}
	.header .area-icon-left .icon.iconD {
		width: 7.4%;
	}
	.header .area-icon-left .icon.iconF {
		width: 14%;
	}
	.header .area-icon-right .icon {
		width: 22%;
	}
	.header .area-icon-right .icon.iconA {
		width: 19%;
	}
	.header .area-icon-right .icon.iconC {
		width: 14%;
	}
	.header .area-icon-right .icon.iconG {
		width: 14%;
	}
}

@media screen and (max-width: 1111px) {
	.header .logo {
		width: 22%;
	}
	.header .area-icon-right .icon.iconA {
		right: 60px;
	}
}

@media screen and (max-width: 1028px) {
	.header .pc-menu {
		width: 230px;
		height: 180px;
	}
}

@media screen and (max-width: 899px) {
	.header {
		display: none;
	}
}

/* アコーディオン
---------------------------------------- */
.accordion_one {
	max-width: 1024px;
	margin: 0 auto;
}
.accordion_one .accordion_header {
	background-color: #db0f2f;
	color: #fff;
	font-size: 26px;
	font-weight: bold;
	padding: 20px 11%;
	text-align: center;
	position: relative;
	z-index: +1;
	cursor: pointer;
	transition-duration: 0.2s;
}
.accordion_one:nth-of-type(2) .accordion_header {
	background-color: #ff9a05;
}
.accordion_one:nth-of-type(3) .accordion_header {
	background-color: #1c85d8;
}
.accordion_one .accordion_header:hover {
	opacity: .8;
}
.accordion_one .accordion_header .i_box {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 5%;
	width: 40px;
	height: 40px;
	border: 1px solid #fff;
	margin-top: -20px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
}
.accordion_one .accordion_header .i_box .one_i {
	display: block;
	width: 18px;
	height: 18px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.accordion_one .accordion_header.open .i_box {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.accordion_one .accordion_header .i_box .one_i:before, .accordion_one .accordion_header .i_box .one_i:after {
	display: flex;
	content: '';
	background-color: #fff;
	border-radius: 10px;
	width: 18px;
	height: 4px;
	position: absolute;
	top: 7px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.accordion_one .accordion_header .i_box .one_i:before {
	width: 4px;
	height: 18px;
	top: 0;
	left: 7px;
}
.accordion_one .accordion_header.open .i_box .one_i:before {
	content: none;
}
.accordion_one .accordion_header.open .i_box .one_i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.accordion_one .accordion_inner {
	display: none;
	padding: 30px 30px;
	border-left: 2px solid #db0f2f;
	border-right: 2px solid #db0f2f;
	border-bottom: 2px solid #db0f2f;
	box-sizing: border-box;
}
.accordion_one:nth-of-type(2) .accordion_inner {
	border-left: 2px solid #ff9a05;
	border-right: 2px solid #ff9a05;
	border-bottom: 2px solid #ff9a05;
}
.accordion_one:nth-of-type(3) .accordion_inner {
	border-left: 2px solid #1c85d8;
	border-right: 2px solid #1c85d8;
	border-bottom: 2px solid #1c85d8;
}
.accordion_one .accordion_inner .box_one {
	height: 300px;
}
.accordion_one .accordion_inner p.txt_a_ac {
	margin: 0;
}
@media screen and (max-width: 1024px) {
	.accordion_one .accordion_header {
		font-size: 18px;
	}
	.accordion_one .accordion_header .i_box {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
}
@media screen and (max-width: 767px) {
	.accordion_one .accordion_header {
		font-size: 16px;
		text-align: left;
		padding: 15px 60px 15px 15px;
	}
}

/* 共通
---------------------------------------- */
.wrap-fx{
display: flex;
justify-content: center;
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
#pageTop a {
	background: rgba(var(--mainColor), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 0.5em;
	bottom: 0.5em;
	z-index: 10;
	transform: rotate(-180deg);
}

#pageTop a svg {
	width: 20px;
	height: auto;
}

/* ----------------------------------------------------
fadeIn
---------------------------------------------------- */
/*
透明度が変化
------------------------------ */
.fadeBlock {
opacity: 0;
transition: all 1.5s;
}

.fadeBlock.fadeIn {
opacity: 1;
}

.title_fadeIn {
animation-name: fadeInAnime;
animation-duration: 3s;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes fadeInAnime{
from {
	opacity: 0;
}

to {
	opacity: 1;
}
}


/*
下から
------------------------------ */
.fadeBottom {
transform: translateY(100px);
}

.fadeBottom.fadeIn {
transform: translateY(0);
}

/*
上から
------------------------------ */
.fadeTop {
transform: translateY(-100px);
}

.fadeTop.fadeIn {
transform: translateY(0);
}


/*
右から
------------------------------ */
.fadeRight {
transform: translateX(100px);
}

.fadeRight.fadeIn {
transform: translateX(0);
}

/*
左から
------------------------------ */
.fadeLeft {
transform: translateX(-100px);
}

.fadeLeft.fadeIn {
transform: translateX(0);
}

/* ----------------------------------------------------
object
---------------------------------------------------- */
.object {
animation: korokoro 2.5s linear 0s infinite;
}

@keyframes korokoro {
10% {
	-webkit-transform: rotate(-10deg);
}

20% {
	-webkit-transform: rotate(8deg);
}

30% {
	-webkit-transform: rotate(-5deg);
}

40% {
	-webkit-transform: rotate(4deg);
}

50% {
	-webkit-transform: rotate(-3deg);
}

60% {
	-webkit-transform: rotate(2deg);
}

70% {
	-webkit-transform: rotate(-1deg);
}

80% {
	-webkit-transform: rotate(1deg);
}

90% {
	-webkit-transform: rotate(-1deg);
}

100% {
	-webkit-transform: rotate(0deg);
}
}