@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #3B3938;
	--black: #3B3938;
	--white-hover: rgba(51, 51, 51, .6);
	--white: #fff;
	--white-hover: rgba(255,255,255, .6);


	/* site color */
	--primary: #DC7969;
	--primary-hover: #A1C56E;
	--secondary: #A1C56E;
	--secondary-hover: #DC7969;
	--tertiary: #FCFBF4;
	--quaternary: #F8A598;
	--fifth: #D8EBBF;
	--sixth: #92B541;
	--seventh: #FFD1C9;

	/* btn color */
	/*--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);*/

	/* font family */
	--base-font-family: "Zen Kaku Gothic Antique", sans-serif,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Zen Maru Gothic", sans-serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

	/* mask color */
	--mask-black: rgba(62,62,62,0.65);
	--mask-primary: rgba(104,120,80,.25);
	--gradation-primary: linear-gradient(90deg,rgba(220, 121, 105, 1) 0%, rgba(233, 124, 107, 1) 60%, rgba(245, 162, 24, 1) 100%);

	overflow-x: hidden;

}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}
 
body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background-color: var(--tertiary);
	overflow-x: hidden;
}

main {
	margin: 11.3rem auto 0;
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

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

a {
	transition: all .3s;
}

a:hover {
	transition: all .3s;
}

.text-center {
	text-align: center;
}

.overflow-hidden {
	overflow: hidden;
}

.box-radius01 {
	border-radius: 0 6rem 0 6rem;
}

.box-radius02 {
	border-radius: 0 8rem 0 8rem;
}

.padding-bottom-0 {
	padding-bottom: 0;
}

.d-none {
	display: none !important;
}

.border-bottom-0 {
	border-bottom: 0 solid !important;
}


/* ==========================================
コンテンツ
========================================== */

.frame {
	max-width: 122rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.row-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;	
}

.row-contents:nth-of-type(2n) {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}


.contents {
	position: relative;
}

/* ==========================================
画像
========================================== */

.img-control {
    position: relative;
    height: 0;
}

.img-control img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: auto;
}

/* ==========================================
色
========================================== */

.white {
	color: var(--white);
}

.black {
	color: var(--black);
}

.primary {
	color: var(--primary);
}

.secondary {
	color: var(--secondary);
}

.gradation-primary {
    background: var(--gradation-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mask:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 1;
}

/* ==========================================
ボタン
========================================== */

.navi-link a:hover {
	text-decoration: underline;
}

.com-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100vmax;
	position: relative;
	overflow: hidden;
}

.com-btn.bg-quaternary {
	background-color: var(--quaternary);
}

.btn01.bg-quaternary.white a {
	border: .1rem solid var(--quaternary);
}

.btn01 {
	font-family: var(--font-family01);
	max-width: 28.6rem;
	width: 100%;
}

.btn01 a {
	display: block;
	width: 100%;
	padding: 1.2rem 1.5rem;
	text-align: center;
	position: relative;
	border-radius: 100vmax;
	overflow: hidden;
}

.btn-arrow a:after {
    content: "";
    position: absolute;
    top: 0;
    right: 2.5rem;
    bottom: 0;
    margin: auto;
	max-width: 1.9rem;
	width: 10%;
	height: 1.3rem;
    z-index: 2;
}

.btn-arrow.bg-quaternary a:after {
    background: url(../../../../uploads/white-arrow.svg) no-repeat center;
	background-size: contain;
}

.com-btn.bg-quaternary.white a:hover {
	background-color: var(--white);
}

.btn01.bg-quaternary.white a:hover {
	border: .1rem solid var(--primary);
	color: var(--primary);
}

.btn01.btn-arrow.bg-quaternary a:hover::after {
    background: url(../../../../uploads/pink-arrow.svg) no-repeat center;
	background-size: contain;
}

.com-btn.bg-white {
	background-color: var(--white);
}

.btn01.bg-white.primary a {
	border: .1rem solid var(--white);
}

.btn-arrow.bg-white a:after {
    background: url(../../../../uploads/pink-arrow.svg) no-repeat center;
	background-size: contain;
}

.com-btn.bg-white.primary a:hover {
	background-color: var(--quaternary);
}

.btn01.bg-white.primary a:hover {
	border: .1rem solid var(--quaternary);
	color: var(--white);
}

.btn01.btn-arrow.bg-white a:hover::after {
    background: url(../../../../uploads/white-arrow.svg) no-repeat center;
	background-size: contain;
}


/* ==========================================
タイトル・テキスト
========================================== */

.font-family01 {
	font-family: var(--font-family01);
}

.en-title01 {
	font-family: var(--font-family01);
    font-size: 7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3em;
}

.jp-title01 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.55em;
}

.jp-title02 {
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.jp-title02 br {
	display: none;
}

.text01 {
	font-size: 1.6rem;
	font-weight: 500;
    letter-spacing: 0.05em;
}

.title-box {
    display: inline-block;
}

.text-box {
	margin: 3rem auto 0;
}

.title-shadow-primary01,.title-shadow-primary02 {
 text-shadow: 
    /* 円周上に多数のポイントを配置して滑らかさを向上（4px幅の縁取り） */
    -4px -4px 0 var(--primary),
    -4px -3px 0 var(--primary),
    -4px -2px 0 var(--primary),
    -4px -1px 0 var(--primary),
    -4px 0 0 var(--primary),
    -4px 1px 0 var(--primary),
    -4px 2px 0 var(--primary),
    -4px 3px 0 var(--primary),
    -4px 4px 0 var(--primary),
    
    -3px -4px 0 var(--primary),
    -3px 4px 0 var(--primary),
    -2px -4px 0 var(--primary),
    -2px 4px 0 var(--primary),
    -1px -4px 0 var(--primary),
    -1px 4px 0 var(--primary),
    0 -4px 0 var(--primary),
    0 4px 0 var(--primary),
    1px -4px 0 var(--primary),
    1px 4px 0 var(--primary),
    2px -4px 0 var(--primary),
    2px 4px 0 var(--primary),
    3px -4px 0 var(--primary),
    3px 4px 0 var(--primary),
    
    4px -4px 0 var(--primary),
    4px -3px 0 var(--primary),
    4px -2px 0 var(--primary),
    4px -1px 0 var(--primary),
    4px 0 0 var(--primary),
    4px 1px 0 var(--primary),
    4px 2px 0 var(--primary),
    4px 3px 0 var(--primary),
    4px 4px 0 var(--primary),
    
    /* 内側の縁取りも追加して中間領域を埋める（3px） */
    -3px -3px 0 var(--primary),
    -3px -2px 0 var(--primary),
    -3px -1px 0 var(--primary),
    -3px 0 0 var(--primary),
    -3px 1px 0 var(--primary),
    -3px 2px 0 var(--primary),
    -3px 3px 0 var(--primary),
    
    -2px -3px 0 var(--primary),
    -2px -2px 0 var(--primary),
    -2px -1px 0 var(--primary),
    -2px 0 0 var(--primary),
    -2px 1px 0 var(--primary),
    -2px 2px 0 var(--primary),
    -2px 3px 0 var(--primary),
    
    -1px -3px 0 var(--primary),
    -1px -2px 0 var(--primary),
    -1px -1px 0 var(--primary),
    -1px 0 0 var(--primary),
    -1px 1px 0 var(--primary),
    -1px 2px 0 var(--primary),
    -1px 3px 0 var(--primary),
    
    0 -3px 0 var(--primary),
    0 -2px 0 var(--primary),
    0 -1px 0 var(--primary),
    0 1px 0 var(--primary),
    0 2px 0 var(--primary),
    0 3px 0 var(--primary),
    
    1px -3px 0 var(--primary),
    1px -2px 0 var(--primary),
    1px -1px 0 var(--primary),
    1px 0 0 var(--primary),
    1px 1px 0 var(--primary),
    1px 2px 0 var(--primary),
    1px 3px 0 var(--primary),
    
    2px -3px 0 var(--primary),
    2px -2px 0 var(--primary),
    2px -1px 0 var(--primary),
    2px 0 0 var(--primary),
    2px 1px 0 var(--primary),
    2px 2px 0 var(--primary),
    2px 3px 0 var(--primary),
    
    3px -3px 0 var(--primary),
    3px -2px 0 var(--primary),
    3px -1px 0 var(--primary),
    3px 0 0 var(--primary),
    3px 1px 0 var(--primary),
    3px 2px 0 var(--primary),
    3px 3px 0 var(--primary),
    
    /* 黒色のドロップシャドウ */
    5px 5px 8px rgba(0, 0, 0, .25);
}
/*.title-shadow-primary01 {
    text-shadow: 0 4px 6px rgb(0 0 0 / 25%);
    -webkit-text-stroke: 0.3rem var(--primary);
}

.title-shadow-primary02 {
    text-shadow: 0 4px 6px rgb(0 0 0 / 25%);
    -webkit-text-stroke: 0.1rem var(--primary);
}*/

.num-box {
	max-width: 6.4rem;
	width: 18%;
	height: 6.5rem;
	position: absolute;
	top: -1.3rem;
	left: 3rem;
	z-index: 1;
}

.num-bg-green {
    background: url(../../../../uploads/top-number-deco.svg) no-repeat bottom;
	background-size: cover;
}


.num-bg-pink {
    background: url(../../../../uploads/in-number-deco.svg) no-repeat bottom;
    background-size: cover;
}


.num-box .num-text {
	font-family: var(--font-family01);
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
}

.in-msg .has-inline-color {
    color: var(--primary)!important;
}

.in-msg br {
	display: block;
}

.in-jp-title {
    display: inline;
	padding: 0 2.3rem;
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    text-align: center;
}

/* ==========================================
下層
========================================== */

/* --- 下層カバー --- */

.incover {
	max-width: 192rem;
	width: 100%;
	margin: 17rem auto 0;
	position: relative;
}

.incover:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: var(--mask-primary);
	z-index: 1;
}

.incover-frame {
	display: flex;
	align-items: center;
	justify-content: center;
}

.incover-img {
	max-width: 192rem;
	width: 100%;
	height: 35.5rem;
}

.incover-img img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.incover-title {
	font-family: var(--font-family01);
	display: flex; 
	justify-content: center;
	align-items: center;
	font-size: 6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.7;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	z-index: 3;
}

/* --- ぱんくず --- */

.breadcrumbs-wrapper {
    margin: 2rem auto 0;
	padding: 0 1.5rem;
    max-width: 114rem;
    width: 100%;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
}

.breadcrumbs-item span {
    margin: 0 0.5rem;
}

/* --- 下層共通 --- */

.inner {
    padding: 15rem 0 11rem;
}

.inner-frame {
    padding: 0 1.5rem;
}

.inner-wrapper {
    max-width: 138rem;
    width: 100%;
    margin: 10rem auto 0;
}

.inner-wrapper:first-child {
    margin: 0 auto;
}

.lead-text-box {
    margin: 2rem auto 0;
}


/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	padding: 0 8rem 0 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 8rem;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: var(--secondary);
	color: var(--white);
}

.sp-nav-btn-bar-box {
	max-width: 4rem;
	width: 100%;
	height: 3rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-35deg) translateY(-50%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--white);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	padding: 10rem 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-list-item a{
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--black);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

	.jp-title02 {
		font-size: 2.4rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	.incover {
		margin: 13rem auto 0;
	}

	.header-logo {
		width: 21%;
	}
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	/* ==========================================
	タイトル・テキスト
	========================================== */

	.jp-title02 {
		font-size: 2.2rem;
	}

	.jp-title02 br {
        display: block;
    }

	.en-title01 {
    	font-size: 6rem;
	}
	
	/* ==========================================
	コンテンツ
	========================================== */

	.row-contents, .row-contents:nth-of-type(2n){
		flex-direction: column;
		align-items: center;
	}


	.title-box {
		text-align: center;
	}

	/* ==========================================
	下層
	========================================== */

    .incover {
        margin: 11rem auto 0;
    }

	.incover-title {
    	font-size: 4rem;
	}

	/* --- 下層共通 --- */

	.inner {
		padding: 8rem 0 ;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.js-sp-nav {
		display: block;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/* ==========================================
	タイトル・テキスト
	========================================== */

	.en-title01 {
		font-size: 4rem;
	}

	.jp-title02 {
        font-size: 2rem;
    }

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	
	.sp-header{
		height: 6rem;
		padding: 0 6rem 0 0;
	}

	.sp-header-link:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
		margin: 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a{
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */