@charset "UTF-8";

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
 *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}
*,*::before,*::after {
    box-sizing: border-box;
}
a, button {
    cursor: revert;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ol, ul, menu {
    list-style: none;
}
img {
    max-inline-size: 100%;
    max-block-size: 100%;
	vertical-align: top;
	/* backface-visibility: hidden; */
}
table {
    border-collapse: collapse;
}
input, textarea {
    -webkit-user-select: auto;
}
textarea {
    white-space: revert;
}
meter {
    -webkit-appearance: revert;
    appearance: revert;
}
:where(pre) {
    all: revert;
}
::placeholder {
    color: unset;
}
::marker {
    content: initial;
}
:where([hidden]) {
    display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}
:where([draggable="true"]) {
    -webkit-user-drag: element;
}
:where(dialog:modal) {
    all: revert;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size:62.5%;
}
body{
	font-size:1.7em;
	font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 400;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
	color: var(--c-text);
}
p{
	line-height: 1.7;
}
a {
	color: var(--c-text);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link {
	color: var(--c-text);
}
a:visited {
	color: var(--c-text);
}
@media (hover: hover) and (pointer: fine){
	a:hover {
		text-decoration: none;
		opacity: 0.7;
	}	
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events:none;
	}
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		font-size:1.5em;
		text-size-adjust:100%;
		-webkit-text-size-adjust: 100%;
	}
	p{
		line-height: 1.5;
	}	
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
/* 変数
==================================== */
:root{
	/* color */
	--c-bk: #000;
	--c-wh: #fff;
	--c-gry: #666;
	--c-primary: #02b06f;
	--c-secondary: #67d407;
	--c-tertiary: #194b00;
	--c-accent-primary: #ff7800;
	--c-accent-secondary: #ffff00;
	--c-accent-tertiary: #ffb400;
	--c-text: #1a1a1c;
	--c-form: #0057c0;
	--bgc-gry: #eee;
	--bgc-gr: #e8f9da;
	--bgc-yl: #fff3bd;
	--bgc-overlap: #333;
	/* gradation */
	--c-gradation: linear-gradient(90deg, #67d407 0%, #67d407 13%, #02b06f 50%);
	/* font-weight */
	--fw-light: 100;
	--fw-medium: 400;
	--fw-bold: 600;
	--fw-black: 700;
	/* line-height */
	--lh-none: 1.0;
	--lh-small: 1.3;
    --lh-tall: 2.0;
	/* font-family */
	--ff-en: 'Montserrat', sans-serif;
	--ff-num: 'Barlow', sans-serif;
	/* border-radius */
	--br-10px: 10px;
	--br-5px: 5px;
	/* drop-shadow */
	--ds-10px: drop-shadow(0 0 10px rgba(0,0,0,.1));;
}

/* wrapper */
#wrapper{
	position:relative;
	overflow:hidden;
}

/* ctsArea */
.ctsArea{
	width: 1200px;
	margin: 0 auto;
	padding: 120px 30px;
	position: relative;
	z-index: 10;
}
@media screen and (max-width:812px){
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 50px 20px;
	}
}

/* arrowArea */
.arrowArea{
	position: relative;
}
.arrowArea::after{
    content: "";
    width: 100vw;
    height: 120px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: var(--bgc-gr);
    position: absolute;
    left: 50%;
    bottom: -119px;
    transform: translateX(-50%);
	z-index: 10;
}
@media screen and (max-width:812px){
	.arrowArea::after{
		height: 60px;
		bottom: -59px;
	}
}

/* 背景 */
.bgDot{
	background-image: radial-gradient(#d1dbcc 10%, transparent 10%);
	background-position: 1px 1px;
	background-size: 16px 16px;
	background-color: var(--c-wh);
}

/* タイトル
==================================== */
/* 大見出し */
.cmn__titArea{
	margin-bottom: 60px;
	text-align: center;
}
.cmn__titL{
	font-size: 5.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-tertiary);
}
.cmn__tit-en{
	display: block;
	font-size: 1.5rem;
	color: var(--c-secondary);
}
/* 中見出し */
.cmn__titM{
	margin-bottom: 15px;
	padding-left: 10px;
	font-size: 1.8rem;
	font-weight: var(--fw-bold);
	border-left: 5px solid var(--c-tertiary);
}
/* 小見出し */
.cmn__titS{
	margin-bottom: 5px;
	padding-left: 10px;
	font-weight: var(--fw-bold);
	border-left: 5px solid var(--c-tertiary);
	line-height: var(--lh-small);
}
@media screen and (max-width:812px){
	/* 大見出し */
	.cmn__titArea{
		margin-bottom: 30px;
	}
	.cmn__titL{
		font-size: 3.0rem;
	}
	.cmn__tit-en{
		font-size: 1.2rem;
	}
	/* 中見出し */
	.cmn__titM{
		margin-bottom: 15px;
		padding-left: 10px;
		font-size: 1.6rem;
	}
}

/* テキスト */
.cmn__txt{
	margin-top: 30px;
}
@media screen and (max-width:812px){
	.cmn__txt{
		margin-top: 20px;
		text-align: left;
	}
}

/* 注釈 */
.list__notes{
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}
.list__notes > li{
	font-size: 1.4rem;
	color: var(--c-gry);
	padding-left: 18px;
	position: relative;
}
.list__notes > li::before{
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width:812px){
	.list__notes{
		gap: 10px;
	}
	.list__notes > li{
		font-size: 1.3rem;
		padding-left: 15px;
	}
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	background-color: var(--c-wh);
}
.header__logo{
	width: 55px;
}
@media screen and (max-width:812px){
	#header{
		padding: 12px 20px;
	}
	.header__logo{
		width: 45px;
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
.kv__top{
	background: url("../images/bg_kv_pc.png") no-repeat center center / cover;
	position: relative;
}
.kv__top::before{
	content: '';
	width: 400px;
	height: 100%;
	background: var(--c-primary);
	position: absolute;
	top: 0;
	right: 10%;
	transform: skewX(-30deg);
	opacity: 0.3;
	mix-blend-mode: multiply;
}
.kv__topArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1400px;
	min-width: 1200px;
	min-height: 530px;
	margin: 0 auto;
	padding: 40px 20px;
	position: relative;
	z-index: 1;
}
.kv__titArea{
	display: flex;
	justify-content: center;
	width: 59%;
	position: relative;
	z-index: 20;
}
.kv__txt{
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 10px;
	transform: skew(-10deg) rotate(-10deg);
	position: absolute;
	top: 10px;
	left: 0;
	z-index: 10;
}
.kv__txt span{
	display: inline-block;
	padding: 10px 12px 12px;
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-tertiary);
	background-color: var(--c-accent-secondary);
	line-height: var(--lh-none);
}
.kv__catch{
	width: 90%;
	margin-top: 140px;
	position: relative;
}
.kv__ico{
	width: 15%;
	max-width: 120px;
	position: absolute;
	top: -15%;
	right: -6%;
	z-index: 30;
}
.kv__img{
	width: 41%;
	max-width: 500px;
	margin-left: -5%;
	position: relative;
	z-index: 10;
}
.kv__catchImg02{
	position: absolute;
	top: 0;
	left: 0;
}
/* list */
.kv__list{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	position: absolute;
	right: 30px;
	bottom: -30px;
}
.kv__list li{
	width: 185px;
}
.authority__area{
	padding-top: 100%;
	border-radius: 100%;
	position: relative;
	background: url("../images/bg_authority.svg") no-repeat center center / 100%;
}
.authority__areaIn{
	width: 90%;
	text-align: center;
	position: absolute;
	top: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.authority__txt{
	padding: 5px 5px 0 0;
	font-size: 2.8rem;
	font-weight: bold;
	color: var(--c-bk);
	line-height: var(--lh-small);
	font-style: italic;
	filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 1));
}

.kv__btm{
	background-color: var(--c-tertiary);
}
.kv__btmArea{
	width: 1200px;
	margin: 0 auto;
	padding: 30px;
}
/* btn */
#kv .cta__btnArea li{
	max-width: 370px;
}
#kv a[class^="cta__btn"]{
	padding: 20px;
	font-size: 2.0rem;
}
#kv a[class^="cta__btn"]::after{
    width: 18px;
    height: 18px;
    right: 20px;
}
@media screen and (max-width:812px){
	.kv__top{
		background: url("../images/bg_kv_sp.png") no-repeat center center / cover;
	}
	.kv__top::before{
		width: 50%;
		right: -10%;
	}
	.kv__topArea{
		flex-direction: column;
		max-width: 500px;
		min-width: auto;
		min-height: auto;
		padding: 20px 20px;
	}
	.kv__titArea{
		width: 100%;
		margin-bottom: 5px;
	}
	.kv__txt{
		gap: 5px;
		top: 10px;
		left: 0;
	}
	.kv__txt span{
		padding: 8px 8px 10px;
		font-size: 1.4rem;
	}
	.kv__catch{
		width: 95%;
		margin-top: 85px;
	}
	.kv__img{
		width: 70%;
		max-width: 500px;
		margin: 0 auto -25px;
	}
	/* list */
	.kv__list{
		justify-content: center;
		gap: 5px;
		width: 100%;
		position: static;
	}
	.kv__list li{
		width: calc((100% - 10px)/3);
		max-width: 120px;
	}
	.authority__txt{
		font-size: 1.7rem;
	}
	.kv__btmArea{
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
		padding: 20px;
	}
	/* btn */
	#kv a[class^="cta__btn"]{
		padding: 20px;
		font-size: 1.8rem;
	}
	#kv a[class^="cta__btn"]::after{
		width: 18px;
		height: 18px;
	}
}


/*
	なりすましメールの対策はできていますか？
-----------------------------------------------------------------------------------------------*/
#measures{
	background-color: var(--bgc-gr);
}
/* list */
.measures__list{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.measures__list li{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: calc((100% - 120px)/3);
	padding: 40px;
	background-color: var(--c-wh);
	border-radius: var(--br-10px);
	filter: var(--ds-10px);
}
.measures__txt{
	margin-bottom: 20px;
	font-size: 2.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-tertiary);
	text-align: center;
}
.measures__img{
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width:812px){
	/* list */
	.measures__list{
		justify-content: center;
		gap: 15px;
	}
	.measures__list li{
		width: calc((100% - 15px)/2);
		padding: 20px;
	}
	.measures__txt{
		margin-bottom: 15px;
		font-size: 1.6rem;
	}
	.measures__img{
		width: 95%;
		max-width: 150px;
}
}


/*
	自社のなりすましメールを放置するとどうなるの？
-----------------------------------------------------------------------------------------------*/
#risk{
	padding-top: 120px;
	background-color: var(--c-wh);
}
#risk.arrowArea::after{
	background-color: var(--c-wh);
}
/* list */
.risk__list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 50px;
}
.risk__list li{
	display: flex;
	width: calc((100% - 50px)/2);
	
}
.risk__list li:nth-of-type(1),
.risk__list li:nth-of-type(4){
	justify-content: flex-end;
}
.risk__fukidashi{
	display: flex;
	align-items: center;
	width: 420px;
	padding: 50px;
	color: var(--c-wh);
	background-color: var(--c-accent-tertiary);
	border-radius: var(--br-10px);
	position: relative;
}
.risk__fukidashi::after{
    content: "";
    width: 30px;
    height: 17px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: var(--c-accent-tertiary);
    position: absolute;
	right: 50px;
    bottom: -16px;
}
.risk__list li:nth-of-type(2) .risk__fukidashi,
.risk__list li:nth-of-type(3) .risk__fukidashi{
	background-color: var(--c-primary);
}
.risk__list li:nth-of-type(2) .risk__fukidashi::after{
	left: 50px;
	background-color: var(--c-primary);
}
.risk__list li:nth-of-type(3) .risk__fukidashi::after,
.risk__list li:nth-of-type(4) .risk__fukidashi::after{
	background-color: var(--c-primary);
	top: 50%;
	right: -22px;
	transform: translateY(-50%) rotate(-90deg);
}
.risk__list li:nth-of-type(4) .risk__fukidashi::after{
	background: var(--c-accent-tertiary);
	left: -22px;
	transform: translateY(-50%) rotate(90deg);
}
[class^="risk__listItm"]{
	position: absolute;
	bottom: -15px;
}
.risk__listItm01{
	width: 25%;
	left: -18%;
}
.risk__listItm02{
	width: 14%;
	right: -6%;
}
.risk__listItm03{
	width: 19%;
	left: -6%;
	bottom: -35px;
}
.risk__listItm04{
	width: 26%;
	right: -5%;
	bottom: -30px;
}
/* item */
.risk__item{
	display: block;
	width: 22%;
	margin: -175px auto 0;
}
@media screen and (max-width:812px){
	#risk{
		padding-top: 60px;
	}
	/* list */
	.risk__list{
		flex-direction: column;
		gap: 20px;
	}
	.risk__list li{
		width: 100%;
	}
	.risk__fukidashi{
		width: 100%;
		padding: 20px 20px 20px 20%;
	}
	.risk__fukidashi::after{
		width: 25px;
		height: 15px;
		right: 40px;
		bottom: -14px;
	}
	.risk__list li:nth-of-type(2n) .risk__fukidashi{
		padding: 20px 20% 20px 20px;
		background-color: var(--c-primary);
	}
	.risk__list li:nth-of-type(2n) .risk__fukidashi::after{
		left: 40px;
		background-color: var(--c-primary);
	}
	.risk__list li:nth-of-type(3) .risk__fukidashi,
	.risk__list li:nth-of-type(3) .risk__fukidashi::after{
		background-color: var(--c-accent-tertiary);
	}
	.risk__list li:nth-of-type(3) .risk__fukidashi::after,
	.risk__list li:nth-of-type(4) .risk__fukidashi::after{
		width: 25px;
		height: 15px;
		right: 40px;
		top: auto;
		bottom: -14px;
		transform: translateY(0) rotate(0);
	}
	.risk__list li:nth-of-type(4) .risk__fukidashi::after{
		left: 40px;
		transform: translateY(0) rotate(0);
	}
	[class^="risk__listItm"]{
		bottom: -15px;
	}
	.risk__listItm01{
		width: 22%;
		left: -18px;
	}
	.risk__listItm02{
		width: 12%;
		right: 15px;
	}
	.risk__listItm03{
		width: 16%;
		left: 8px;
		bottom: -15px;
	}
	.risk__listItm04{
		width: 22%;
		right: -5px;
		bottom: -15px;
	}
	/* item */
	.risk__item{
		width: 50%;
		max-width: 180px;
		margin: 15px auto 0;
	}
}


/*
	なりすましメールを防ぐ方法は？
-----------------------------------------------------------------------------------------------*/
#prevent{
	padding-top: 120px;
	background-color: var(--bgc-yl);
}
#prevent.arrowArea::after{
	background-color: var(--bgc-yl);
}
.prevent__img{
	width: 900px;
	margin: 0 auto;
	padding: 60px;
	background-color: var(--c-wh);
	border-radius: var(--br-10px);
	filter: var(--ds-10px);
}
.prevent__txtArea{
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: 60px;
}
.prevent__txt{
	margin-bottom: 20px;
	font-size: 2.8rem;
	font-weight: var(--fw-bold);
	text-align: center;
}
.prevent__item{
	display: block;
	width: 8%;
	margin: 0 auto;
}
@media screen and (max-width:812px){
	#prevent{
		padding-top: 60px;
	}
	.prevent__img{
		width: 100%;
		padding: 20px;
	}
	.prevent__txtArea{
		margin-top: 30px;
	}
	.prevent__txt{
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	.prevent__item{
		width: 15%;
		max-width: 60px;
	}
}


/*
	KAGOAYなら解決できます！
-----------------------------------------------------------------------------------------------*/
#solution{
	position: relative;
}
.solution__fukidashi{
	margin: -70px auto 50px;
	text-align: center;
	position: relative;
	z-index: 10;
}
.solution__fukidashi span{
	display: inline-block;
	padding: 10px 40px;
	font-size: 3.8rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	background-color: var(--c-accent-primary);
	border-radius: var(--br-10px);
	position: relative;
}
.solution__fukidashi span::after{
    content: "";
    width: 60px;
    height: 25px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    background: var(--c-accent-primary);
    position: absolute;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
	z-index: 10;
}
.solution__area{
	position: relative;
}
.solution__tit{
	margin-bottom: 30px;
	font-size: 4.0rem;
	font-weight: var(--fw-bold);
}
.solution__tit  span{
	display: inline-block;
	padding: 0 5px;
	font-size: 5.0rem;
	color: var(--c-primary);
	vertical-align: bottom;
}
.solution__logo{
	display: inline-block;
	height: 42px;
	padding-right: 5px;
	vertical-align: baseline;
}
.solution__img{
	width: 35%;
	position: absolute;
	top: -2%;
	right: 0;
}
.solution__deco{
	width: 200%;
	height: 3000px;
	background-color: var(--bgc-gr);
	border-radius: 3000px 3000px 0 0;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width:812px){
	.solution__fukidashi{
		margin: -15px auto 30px;
	}
	.solution__fukidashi span{
		display: inline-block;
		padding: 10px 20px;
		font-size: 2.0rem;
		border-radius: var(--br-5px);
	}
	.solution__fukidashi span::after{
		width: 25px;
		height: 15px;
		bottom: -14px;
	}
	.solution__tit{
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	.solution__tit  span{
		font-size: 2.5rem;
	}
	.solution__logo{
		height: 20px;
		padding: 0 5px;
	}
	.solution__img{
		width: 50%;
		margin: 20px auto 0;
		position: static;
	}
	.solution__deco{
		top: 80%;
	}
}


/*
	どんなことができるの？
-----------------------------------------------------------------------------------------------*/
#spec{
	background-color: var(--bgc-gr);
}
#spec .ctsArea{
	padding: 40px 30px 120px;
}
/* spec_list */
.spec__list{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin-bottom: 100px;
}
.spec__list li{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	width: 870px;
	margin-right: 80px;
	padding: 40px 50px;
	background-color: var(--c-primary);
	border-radius: var(--br-10px);
}
.spec__list li:nth-child(even){
	flex-direction: row-reverse;
	margin-right: 0;
	margin-left: 80px;
	background-color: var(--c-accent-tertiary);
}
.spec__list li:nth-child(even) .spec__listImg{
	margin-right: 0;
	margin-left: -90px;
}
.spec__listTxtArea{
	width: 460px;
	color: var(--c-wh);
}
.spec__listTit{
	margin-bottom: 15px;
	font-size: 2.8rem;
	font-weight: var(--fw-bold);
}
.spec__listImg{
	width: 360px;
	margin-right: -90px;
	padding: 20px;
	background-color: var(--c-wh);
	filter: var(--ds-10px);
	position: relative;
}
.spec__listImg::before {
	content: '';
	width: 25px;
	height: 25px;
	background: url(../images/ico_zoom.svg) no-repeat;
	position: absolute;
	right: 15px;
	bottom: 15px;
	z-index: 10;
}
/* specEtc_list */
.specEtc__listFukidashi{
	margin-bottom: 20px;
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-tertiary);
	text-align: center;
}
.specEtc__listFukidashi span{
	position: relative;
}
.specEtc__listFukidashi span::before,
.specEtc__listFukidashi span::after{
	content: "";
	width: 3px;
	height: 100%;
	background-color: var(--c-tertiary);
	position: absolute;
	bottom: 0;
}
.specEtc__listFukidashi span::before{
	left: -30px;
	transform: rotateZ(-45deg);
}
.specEtc__listFukidashi span::after{
	right: -30px;
	transform: rotateZ(45deg);
}
.specEtc__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.specEtc__list li{
	width: calc((100% - 120px)/4);
}
.specEtc__listImg{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 100%;
	background-color: var(--c-wh);
	border-radius: 100%;
	position: relative;
}
.specEtc__listImg img{
	position: absolute;
	top: 0;
	left: 0;
}
.specEtc__listTit{
	margin: 15px 0 10px;
	font-size: 2.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-tertiary);
	text-align: center;
}
.specEtc__listTxt{
	font-size: 1.6rem;
}
@media screen and (max-width:812px){
	#spec .ctsArea{
		padding: 0 20px 60px;
	}
	/* spec_list */
	.spec__list{
		gap: 15px;
		margin-bottom: 50px;
	}
	.spec__list li{
		gap: 20px;
		width: 100%;
		margin-right: 0;
		padding: 25px;
	}
	.spec__list li:nth-child(even){
		margin-left: 0;
	}
	.spec__list li:nth-child(even) .spec__listImg{
		margin-left: 0;
	}
	.spec__listTxtArea{
		width: 100%;
	}
	.spec__listTit{
		margin-bottom: 10px;
		font-size: 1.8rem;
	}
	.spec__listImg{
		width: 100%;
		margin-right: 0;
	}
	.spec__listImg::before {
		width: 20px;
		height: 20px;
		right: 10px;
		bottom: 10px;
	}
	/* specEtc_list */
	.specEtc__listFukidashi{
		margin-bottom: 20px;
		font-size: 2.0rem;
	}
	.specEtc__listFukidashi span::before,
	.specEtc__listFukidashi span::after{
		width: 2px;
	}
	.specEtc__listFukidashi span::before{
		left: -20px;
	}
	.specEtc__listFukidashi span::after{
		right: -20px;
	}
	.specEtc__list{
		gap: 15px;
	}
	.specEtc__list li{
		width: calc((100% - 30px)/2);
		max-width: 160px;
	}
	.specEtc__listTit{
		margin: 10px 0 5px;
		font-size: 1.6rem;
	}
	.specEtc__listTxt{
		font-size: 1.5rem;
	}
}


/*
	よくあるご質問
-----------------------------------------------------------------------------------------------*/
#faq{
	background-color: var(--c-wh);
	position: relative;
	z-index: 1;
}
/* item */
.faq__item{
	width: 14%;
	position: absolute;
	top: -1%;
	left: 30px;
}
/* list */
.faq__list{
	display: flex;
	flex-direction: column;
	width: 800px;
	margin: 0 auto;
	gap: 60px;
}
.faq__tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 25px 80px;
	font-size: 2.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	background-color: var(--c-primary);
    border-radius: var(--br-10px);
    position: relative;
}
.faq__q{
	font-family: var(--ff-en);
	font-size: 3.2rem;
	color: var(--c-tertiary);
	position: absolute;
	top: 50%;
	left: 27px;
	transform: translateY(-50%);
}
.faq__txtArea {
	padding: 30px 80px 0;
}
/* olist */
.faq__olistArea{
	margin-top: 30px;
}
.faq__olist{
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.faq__olist li{
	display: flex;
	counter-increment: mycounter;
	position: relative;
}
.faq__olist > li::after{
	content: "";
    width: 25px;
    height: 25px;
	background: url("../images/arrow_gr.svg") no-repeat center center / 100%;
    position: absolute;
    right: 50%;
	bottom: -43px;
    transform: translateX(50%) rotate(90deg);
	z-index: 10;
}
.faq__olist > li:last-of-type:after{
	display: none;
}
.faq__olistNum{
	width: 45px;
	background-color: var(--c-gry);
	border-radius: 10px 0 0 10px;
	position: relative;
}
.faq__olistNum::before{
	content: counter(mycounter,decimal-leading-zero);
	font-family: var(--ff-num);
	font-size: 2.2rem;
	color: var(--c-wh);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq__olistTxtArea{
	width: calc(100% - 45px);
	padding: 30px;
	background-color: var(--bgc-gry);
	border-radius: 0 10px 10px 0;
}
.faq__olistTxt{
	font-size: 1.6rem;
}
.faq__olistImg{
	margin-top: 10px;
	padding: 20px;
	background-color: var(--c-wh);
	position: relative;
}
.faq__olistImg::before {
	content: '';
	width: 25px;
	height: 25px;
	background: url(../images/ico_zoom.svg) no-repeat;
	position: absolute;
	right: 15px;
	bottom: 15px;
	z-index: 10;
}
.faq__modalImg{
	max-width: 640px;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid var(--bgc-gry);
}
@media screen and (max-width:812px){
	/* item */
	.faq__item{
		width: 15%;
		top: -1%;
		left: 20px;
	}
	/* list */
	.faq__list{
		width: 100%;
		gap: 40px;
	}
	.faq__tit {
		padding: 20px 20px 20px 60px;
		font-size: 1.6rem;
	}
	.faq__q{
		font-size: 3.0rem;
		left: 15px;
	}
	.faq__txtArea {
		padding: 20px;
	}
	/* olist */
	.faq__olistArea{
		margin-top: 20px;
	}
	.faq__olist{
		gap: 30px;
	}
	.faq__olist li{
		flex-direction: column;
	}
	.faq__olist > li::after{
		width: 20px;
		height: 20px;
		bottom: -25px;
	}
	.faq__olistNum{
		width: 100%;
		height: 35px;
		border-radius: 5px 5px 0 0;
	}
	.faq__olistNum::before{
		font-size: 1.8rem;
	}
	.faq__olistTxtArea{
		width: 100%;
		padding: 20px;
		border-radius: 0 0 5px 5px;
	}
	.faq__olistTxt{
		font-size: 1.4rem;
	}
	.faq__olistImg{
		padding: 10px;
	}
	.faq__olistImg::before {
		width: 20px;
		height: 20px;
		right: 10px;
		bottom: 10px;
	}
	.faq__modalImg{
		max-width: 450px;
		padding: 15px;
	}
}


/*
	料金表
-----------------------------------------------------------------------------------------------*/
#price{
	background-color: var(--bgc-gr);
}
.price__tbl{
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 800px;
	margin: 0 auto;
	position: relative;
}
.price__ico{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 110px;
	font-size: 1.8rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	text-align: center;
	line-height: var(--lh-small);
	background: url("../images/ico_price.svg") no-repeat center center / 100%;
	filter: var(--ds-10px);
	position: absolute;
	top: -40px;
	left:-55px;
}
.price__ico span{
	margin-top: 5px;
}
.price__tblTit{
	padding: 20px;
	font-size: 2.2rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	text-align: center;
	background: var(--c-gradation);
	border-radius: 10px 10px 0 0;
}
/* 表 */
.price__tblList{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
[class^="price__tblItem"]{
	min-height: 84px;
	padding: 15px;
	font-size: 1.8rem;
	font-weight: var(--fw-bold);
	text-align: center;
	background-color: var(--c-wh);
}
[class^="price__tblItem"]:first-of-type{
	width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--fw-medium);
	color: var(--c-wh);
	background-color: var(--c-tertiary);
}
[class^="price__tblItem"]:last-of-type{
	width: calc(100% - 305px);
}
.price__tblItem-center{
	display: flex;
	justify-content: center;
	align-items: center;
}
[class^="price__tblEm"]{
	display: inline-block;
	margin-right: 5px;
}
[class^="price__tblEm-num"]{
	font-family: var(--ff-num);
	font-size: 4.5rem;
}
.price__tblEm-numGr{
	color: var(--c-primary);
}
.price__tblEm-numGray{
	color: #999999;
}
.price__tblEm-jp{
	font-size: 2.5rem;
	color: var(--c-accent-primary);
}
@media screen and (max-width:812px){
	.price__tbl{
		gap: 5px;
		width: 100%;
	}
	.price__ico{
		width: 65px;
		height: 65px;
		font-size: 1.2rem;
		top: -25px;
		left:-15px;
	}
	.price__ico span{
		margin-top: 5px;
	}
	.price__tblTit{
		padding: 15px;
		font-size: 1.8rem;
	}
	/* 表 */
	.price__tblList{
		flex-direction: column;
		gap: 0;
	}
	[class^="price__tblItem"]{
		width: 100%;
		min-height: auto;
		padding: 7px 15px;
		font-size: 1.4rem;
	}
	[class^="price__tblItem"]:first-of-type{
		width: 100%;
		display: block;
	}
	[class^="price__tblItem"]:last-of-type{
		width: 100%;
	}
	[class^="price__tblEm-num"]{
		font-size: 3.5rem;
	}
	.price__tblEm-jp{
		font-size: 2.0rem;
	}
}


/*
	ご利用までの流れ
-----------------------------------------------------------------------------------------------*/
/* olist */
.flow__olist{
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.flow__olist > li{
	width: calc((100% - 120px)/3);
	padding: 40px 30px;
	background-color: var(--bgc-gr);
	border-radius: var(--br-10px);
	position: relative;
	counter-increment: mycounter;
}
.flow__olist > li::before{
	content: counter(mycounter,decimal-leading-zero);
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	font-family: var(--ff-num);
	font-size: 2.2rem;
	color: var(--c-wh);
	background-color: var(--c-tertiary);
	border-radius: 50%;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
}
.flow__olist > li::after{
	content: "";
    width: 25px;
    height: 25px;
	background: url("../images/arrow_gr.svg") no-repeat center center / 100%;
    position: absolute;
	top: 50%;
    right: -43px;
    transform: translateY(-50%);
	z-index: 10;
}
.flow__olist > li:last-of-type:after{
	display: none;
}
.flow__img{
	width: 150px;
	margin: 0 auto;
}
.flow__tit{
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 1.8rem;
	color: var(--c-tertiary);
	font-weight: var(--fw-bold);
	text-align: center;
}
.flow__txt{
	font-size: 1.6rem;
}
@media screen and (max-width:812px){
	/* olist */
	.flow__olist{
		gap: 55px;
	}
	.flow__olist > li{
		width: 80%;
		max-width: 300px;
		margin: 0 auto;
		padding: 20px;
	}
	.flow__olist > li::before{
		width: 40px;
		height: 40px;
		font-size: 1.8rem;
		top: -20px;
	}
	.flow__olist > li::after{
		width: 20px;
		height: 20px;
		top: auto;
		bottom: -25px;
		right: 50%;
		transform: translateY(0) translateX(50%) rotate(90deg);
		z-index: 10;
	}
	.flow__img{
		width: 40%;
		margin: 5px auto 0;
	}
	.flow__tit{
		margin-top: 0;
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.flow__txt{
		font-size: 1.5rem;
	}
}


/*
	KAGOYAについて
-----------------------------------------------------------------------------------------------*/
#about{
	position: relative;
}
.about__ctsArea{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
	gap: 50px;
}
.about__img{
	width: 250px;
	padding: 60px 40px;
	background-color: var(--c-wh);
	border-radius: var(--br-10px);
	filter: var(--ds-10px);
}
.about__txt{
	width: 600px;
	line-height: var(--lh-tall);
}
/* inview_blur */
#about.blur::before{
	animation: blur .7s ease-in-out 0.1s forwards;
}
@media screen and (max-width:812px){
	.about__ctsArea{
		flex-direction: column;
		gap: 30px;
	}
	.about__img{
		width: 50%;
		max-width: 200px;
		padding: 13% 10%;
		background-color: var(--c-wh);
		border-radius: var(--br-10px);
		filter: var(--ds-10px);
	}
	.about__txt{
		width: 100%;
	}
}


/*
	information
-----------------------------------------------------------------------------------------------*/
#info{
	background-color: var(--c-wh);
}
.info_ctsArea{
	margin-bottom: 100px;
}
/* 表 */
.info__tbl{
	display: flex;
	flex-direction: column;
	width: 800px;
	margin: 0 auto;
}
.info__tblList{
	display: flex;
	flex-wrap: wrap;
	border-bottom: 2px solid var(--bgc-gry);
}
.info__tblList li{
	padding: 20px 0;
	font-size: 1.5rem;
	line-height: var(--lh-tall);
}
.info__tblTit{
	width: 200px;
	font-weight: var(--fw-bold);
	color: var(--c-tertiary);
}
.info__tblTxt{
	width: calc(100% - 200px);
}
.info__tblTxt_ctsArea{
	margin-bottom: 15px;
}
.info__tblTxt_ctsArea:last-of-type{
	margin-bottom: 0;
}
#qual.info__tbl .info__tblTxt{
	display: flex;
	gap: 20px;
}
.info__tblImg{
	width: 135px;
}

/* サービスサイトリンク */
#information .ctsArea{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.site__linkArea{
	display: flex;
	align-items: center;
	flex-direction: column;
}
a.site__link{
	display: flex;
	align-items: center;
	flex-direction: column;
	transition: color 0.2s;
}
.site__logo{
	width: 90px;
	transition: opacity 0.2s;
}
.site__txt{
	margin-top: 10px;
	font-weight: var(--fw-bold);
}
/* hover */
a.site__link:hover{
	opacity: 1.0;
}
a.site__link:hover .site__logo{
	opacity: .7;
}
a.site__link:hover .site__txt{
	color: var(--c-tertiary);
}
@media screen and (max-width:812px){
	.info_ctsArea{
		margin-bottom: 30px;
	}
	/* 表 */
	.info__tbl{
		width: 100%;
	}
	.info__tblList{
		flex-direction: column;
		border: none;
	}
	.info__tblList li{
		padding: 10px 15px;
	}
	.info__tblList li:first-of-type{
		line-height: var(--lh-small);
	}
	.info__tblList li:last-of-type{
		padding: 15px 15px 25px;
	}
	.info__tblTit{
		width: 100%;
		text-align: center;
		background-color: var(--bgc-gr);
		border-radius: var(--br-5px);
	}
	.info__tblTxt{
		width: 100%;
	}
	.info__tblTxt_ctsArea{
		margin-bottom: 15px;
	}
	#qual.info__tbl .info__tblTxt{
		flex-direction: column;
		gap: 10px;
	}
	.info__tblImg{
		margin: 0 auto;
	}
	/* サービスサイトリンク */
	.site__logo{
		width: 80px;
	}
	.site__txt{
		font-size: 1.3rem;
	}
}



/*
	cta
-----------------------------------------------------------------------------------------------*/
.cta{
	background: var(--c-gradation);
	position: relative;
}
.cta::after{
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/bg_cta_pc.png") no-repeat center center / cover;
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
}
.cta .ctsArea{
	padding: 80px 30px;
	position: relative;
	z-index: 1;
}
.cta__txtArea{
	width: 950px;
	margin: 0 auto 40px;
	position: relative;
}
.cta__txt{
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
}
.cta__item{
	width: 27%;
	position: absolute;
	right: 0;
	bottom: -20%;
}
/* btn
==================================== */
.cta__btnArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.cta__btnArea li{
	width: calc((100% - 20px)/2);
}
.cta__btnTxt{
	margin-bottom: 15px;
	font-size: 2.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-accent-secondary);
	text-align: center;
}
.cta__btnTxt span{
	position: relative;
}
.cta__btnTxt span::before,
.cta__btnTxt span::after{
	content: "";
	width: 2px;
	height: 100%;
	background-color: var(--c-accent-secondary);
	position: absolute;
	bottom: 0;
}
.cta__btnTxt span::before{
	left: -20px;
	transform: rotateZ(-45deg);
}
.cta__btnTxt span::after{
	right: -20px;
	transform: rotateZ(45deg);
}
a[class^="cta__btn"]{
	display: block;
	padding: 30px;
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	text-align: center;
	background-color: var(--c-accent-primary);
	border-radius: var(--br-10px);
	filter: var(--ds-10px);
	position: relative;
}
a[class^="cta__btn"]::after{
	content: "";
    width: 25px;
    height: 25px;
	background: url("../images/arrow_wh.svg") no-repeat center center / 100%;
    position: absolute;
	top: 50%;
    right: 30px;
    -webkit-transform: translateY(50%);
    transform: translateY(-50%);
}
a.cta__btn-bd{
	color: var(--c-accent-primary);
	background-color: var(--c-wh);
	border: 2px solid var(--c-accent-primary);
}
a.cta__btn-bd::after{
	background: url("../images/arrow_or.svg") no-repeat center center / 100%;
}
/* btn＿header */
#header a.cta__btn{
	padding: 12px;
	font-size: 1.4rem;
	border-radius: 5px;
	filter: none;
}
#header a.cta__btn::after{
	display: none;
}
/* 別窓リンク */
a[class^="cta__btn"] .window::after{
	content: " ";
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-left: 5px;
	background: url("../images/ico_window_or.svg") no-repeat center center / cover;
}
@media screen and (max-width:812px){
	.cta::after{
		background: url("../images/bg_cta_sp.png") no-repeat center center / cover;
	}
	.cta .ctsArea{
		padding: 0 20px 30px;
	}
	.cta__txtArea{
		display: flex;
		flex-direction: column-reverse;
		width: 100%;
		margin: 0 auto 30px;
		gap: 10px;
	}
	.cta__txt{
		width: 100%;
		font-size: 1.8rem;
	}
	.cta__item{
		width: 30%;
		max-width: 120px;
		margin: -15px auto 0;
		position: static;
	}
	/* btn
	==================================== */
	.cta__btnArea{
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	.cta__btnArea li{
		width: 100%;
	}
	.cta__btnTxt{
		margin-bottom: 10px;
		font-size: 1.5rem;
	}
	.cta__btnTxt span::before{
		left: -15px;
	}
	.cta__btnTxt span::after{
		right: -15px;
	}
	a[class^="cta__btn"]{
		padding: 20px;
		font-size: 1.8rem;
	}
	a[class^="cta__btn"]::after{
		width: 18px;
		height: 18px;
		right: 20px;
	}
	/* btn＿header */
	#header a.cta__btn{
		width: 150px;
		padding: 10px;
		font-size: 1.3rem;
		border-radius: 5px;
	}
	/* 別窓リンク */
	a[class^="cta__btn"] .window::after{
		width: 18px;
		height: 18px;
		margin-left: 5px;
	}
}


/*
	modal
-----------------------------------------------------------------------------------------------*/
.modal_box {
	display: none;
	width: 90%;
	max-width: 1000px;
	margin: 0;
    position: fixed;
    z-index: 7777;
}
.modal__itemArea{
	max-height: 85vh;
	border-radius: var(--br-10px);
	filter: var(--ds-10px);
}
.modal__tit{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 90px;
	padding: 15px;
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	background: var(--c-gradation);
	border-radius: 10px 10px 0 0;
}
[class^="modal__ctsArea"]{
	max-height: calc(80vh - 90px);
	padding: 60px;
	background-color: var(--c-wh);
	border-radius: var(--br-10px);
	overflow-y: scroll;
}
.modal__ctsArea-form{
	border-radius: 0 0 10px 10px;
}
/* modal_open */
.modal_open:hover{
	cursor: pointer;
}
/* modal_close */
.modal_close {
	width: 55px;
	height: 55px;
	background-color: var(--c-tertiary);
	border-radius: 50%;
    position: absolute;
    top: -15px;
    right: -15px;
	cursor: zoom-out;
}
.modal_close::before,
.modal_close::after{
	content: '';
	width: 1px;
	height: 20px;
	background-color: var(--c-wh);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.modal_close::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* modal_bg */
.modal_bg {
	display: none;
	width: 100%;
	height: 120%;
	background-color: var(--bgc-gr);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
	opacity: 0.98;
	cursor: zoom-out;
}
/* spec__modal */
.spec__modalImg{
	max-width: 640px;
	margin: 0 auto;
	padding: 20px;
	border: 1px solid var(--bgc-gry);
}
@media screen and (max-width:812px){
	.modal_box {
		max-width: 500px;
	}
	.modal__tit{
		height: 70px;
		font-size: 1.8rem;
	}
	[class^="modal__ctsArea"]{
		max-height: calc(80vh - 70px);
		padding: 20px;
	}
	/* modal_close */
	.modal_close {
		width: 45px;
		height: 45px;
		top: -10px;
		right: -10px;
	}
	.modal_close::before,
	.modal_close::after{
		height: 15px;
	}
	/* spec__modal */
	.spec__modalImg{
		max-width: 450px;
		padding: 15px;
	}
}


/*
	form
-----------------------------------------------------------------------------------------------*/
/* 見出し */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group label {
    margin: 0 auto;
	padding-bottom: 10px;
    font-size: 1.5rem;
	font-weight: var(--fw-bold);
	color: var(--c-bk);
    line-height: var(--lh-none);
    letter-spacing: 1px;
}
/* 必須マーク */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group label .satori__require {
    margin-left: 10px;
	padding: 6px 8px;
	font-size: 1.2rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
    background-color: var(--c-accent-primary);
    line-height: var(--lh-none);
}
/* 任意マーク */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group label .satori__not_require {
    margin-left: 10px;
	padding: 6px 8px;
	font-size: 1.2rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
    background-color: var(--c-gry);
    line-height: var(--lh-none);
}
/* 注釈 */
.satori__system_notes{
	font-size: 1.2rem;
}
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group .satori__notes {
	background: 0 0;
    border: none;
    border-radius: 0;
    -webkit-transition: none;
    transition: none;
    font-size: 1.4rem;
    color: #999;
    padding: 5px 2px 0;
}
/* 入力フォーム */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group input,#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group textarea{
    font-size: 1.4rem;
	background-color: #f6f7f9 !important;
    border-radius: 5px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group {
    padding: 20px 0;
}
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__horiz_group .satori__input_group+.satori__input_group {
    margin-left: 10px;
}
/* エラー */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group .satori__error_messages {
    padding-top: 10px;
	font-size: 1.4rem;
	color: #ff0000;
}
/* 選択ボタン */
#modal_inquiry [class^="satori__custom_form_"] select,
#modal_reserve [class^="satori__custom_form_"] select{
	height: auto;
	padding: 12px 15px;
	font-size: 1.4rem;
	line-height: var(--lh-none);
	border: 1px solid var(--c-gry);
	background-color: #f6f7f9;
	border-radius: 5px;
	cursor: pointer;
}
/* placeholder */
.modal_satori ::placeholder {
    color: #999;
}
/* お問い合わせ内容 */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group textarea {
    min-height: 300px;
    resize: none
}
/* 個人情報の取り扱いについて */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form #satori__privacy_policy_agreement_wrapper .txtspace {
    margin: 0 auto;
	padding: 10px 30px 30px;
	border: 1px solid var(--c-primary);
    border-radius: 5px;
}
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form #satori__privacy_policy_agreement_wrapper .txtspace .privacytitle {
    margin: 0 auto;
	padding-left: 0 !important;
	font-size: 1.8rem;
	color: var(--c-tertiary);
	text-align: center;
    border: none !important;
}
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form #satori__privacy_policy_agreement_wrapper .txtspace .satori__privacy_policy_message {
    font-size: 1.4rem;
    line-height: 180%;
    letter-spacing: .05em;
}
.satori__custom_form_aa2a1f6c5ded9dd0_css .txtspace a{
	text-decoration: underline;
	position: relative;
}
.satori__custom_form_aa2a1f6c5ded9dd0_css .txtspace a::before{
	content: "";
    width: 14px;
    height: 14px;
	background: url("../images/ico_window_bl.svg") no-repeat center center / 100%;
    position: absolute;
	top: 50%;
    right: -18px;
    transform: translateY(-50%);
}
/* 同意する */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group input[type=checkbox],#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group input[type=radio] {
    -webkit-appearance: auto!important;
    -moz-appearance: auto!important;
    appearance: auto!important;
    visibility: initial!important;
    width: 16px;
    height: 16px;
    accent-color: #0057c0;
    position: relative;
    top: 2px
}
/* ボタン */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__submit_group {
    margin-top: 35px;
}
/* submitボタン */
#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__submit_group .satori__btn.submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	width: 250px;
	height: auto;
	margin: 0 auto;
	padding: 20px;
	color: var(--c-wh);
    background-color: var(--c-form);
    border-radius: 5px;
    font-size: 1.6rem;
    line-height: var(--lh-none);
}
/* cancelボタン */
.satori__custom_form_aa2a1f6c5ded9dd0_css .satori__btn.cancel,
#modal_reserve .satori__custom_form_fd757500ce62f500_css .satori__btn.cancel{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	width: 250px;
	height: auto;
	margin: 0 auto;
	padding: 20px;
	color: var(--c-wh);
    background-color: var(--c-gry);
    border-radius: 5px;
    font-size: 1.6rem;
    line-height: var(--lh-none);
}
@media screen and (max-width:812px){
	/* 注釈 */
	.satori__system_notes{
		display: block;
		padding-top: 5px;
	}
	/* 入力フォーム */
	#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__input_group {
		padding: 15px 0;
	}
	/* 個人情報の取り扱いについて */
	#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form #satori__privacy_policy_agreement_wrapper .txtspace {
		margin: 0 auto;
		padding: 0 10px 20px;
	}
	#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form #satori__privacy_policy_agreement_wrapper .txtspace .privacytitle {
		font-size: 1.6rem;
	}
	/* ボタン */
	#satori__creative_container #satori__custom_form #satori__form_body .satori__custom_form .satori__submit_group {
		margin-top: 20px;
	}
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	display: flex;
	flex-direction: column;
	gap: 45px;
	padding: 60px 30px;
	background: var(--c-tertiary);
}
.footer__list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.footer__list > li{
	margin-right: 20px;
	padding-right: 20px;
	border-right: 1px solid var(--c-wh);
	line-height: var(--lh-none);
}
.footer__list > li a{
	display: inline-block;
	font-size: 1.4rem;
	color: var(--c-wh);
	text-decoration: underline;
	position: relative;
}
.footer__list > li a:hover{
	text-decoration: none;
	opacity: 1.0;;
}
.footer__list > li:last-of-type{
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.footer__copyright{
	font-size: 1.2rem;
	color: var(--c-wh);
	text-align: center;
}
@media screen and (max-width:812px){
	#footer{
		padding: 40px 20px;
	}
	.footer__list{
		flex-direction: column;
		gap: 20px;
	}
	.footer__list > li{
		margin-right: 0;
		padding-right: 0;
		border-right: none;
	}
	.footer__list > li a{
		font-size: 1.3rem;
	}
	.footer__copyright{
		font-size: 1.2rem;
		color: var(--c-wh);
		text-align: center;
	}
}
/*バナー*/
.c-campaignAnnounce {
  background-image:url(/app/themes/kagoya/assets/img/ad/kir-campaign/bg_c-pageHead--campaign-202408.jpg);
  background-size:cover;
}
picture {
  max-width: 100%;
  display: block;
}
.c-campaignAnnounce img {
  margin: 0px auto;
  max-width: 100%;
  display: block;
}

.del {
  -webkit-text-decoration: line-through 1px solid #292b2d;
  text-decoration: line-through 1px solid #292b2d;
}