@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	font-family: "Zen Kaku Gothic New", 'sans-serif','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size:16px;
	color: var(--black);
	line-height: 1.65;
	letter-spacing: .025em;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	min-width: 1200px;
}
body *, :before, :after {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--black);
	display: block;
	transition: all 0.3s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.1em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.red {
	color: #eb1c1c;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.wf {
	font-family: "Lato", sans-serif;
}
:root{
	--black: #282828;
	--green: #62ab51;
	--bg_black: #464646;
	--bg_green: #278267;
	--bg_beige: #f8f4e9;
}
.image img{
	width: 100%;
	height: 100%;
}
.textarea{
	text-align: justify;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance : none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid #c9c9c9;
	width: 90%;
	box-sizing: border-box;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.6rem;
}
textarea {
	width: 90%;
	height: 10em;
	max-width: 560px;
}
select {
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 25px 10px 10px;
	border-radius: 3px;
	max-width: 12em;
	color: var(--black);
	border: 1px solid #c9c9c9;
	font-family: "Zen Kaku Gothic New", sans-serif;
	background: #fff url(/pochikame/pc/img/common/s_arrow.svg) no-repeat right 10px center;
	background-size: auto 4px;
	font-size: 14px;
	cursor: pointer;
}
label{
	display: block;    
	margin-bottom: 10px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
::placeholder {
	color: #c9c9c9;
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid #c9c9c9;
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
}
input[type="checkbox"]:checked {
	background: var(--green);
	border: 1px solid #c9c9c9;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 4px;
	top: 13px;
	display: block;
	content: "";
	width: 5px;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	left: 9px;
	top: 13px;
	content: "";
	width: 10px;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"]{
	border: 1px solid #c9c9c9;
	-webkit-appearance: none;
	position: relative;
	margin-right: 7px;
	border-radius: 50vw;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	background: #fff;
}
input[type="radio"]:checked{
	background:#627877;
	border: 1px solid #c9c9c9;
}
input[type="radio"]:checked:after {
	display: block;
	position: absolute;
	left: 4px;
	top: 4px;
	content: '';
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50vw;
}
input[type="submit"] {
	display: block;
	width: 420px;
	margin: auto;
	padding: 20px;
	font-size: 18px;
	font-weight: bold;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: .002em;
	text-align: center;
	background: var(--black);
	color: #fff;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}
input[type="submit"]:hover {
	background: #fff;
	color: var(--black);
	border: 2px solid var(--black);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}

/*------------------------
header
------------------------*/
header {
	position: sticky;
	top: 10px;
	left: 0px;
	right: 0;
	z-index: 110;
	transition: all .3s ease 0s;
	min-width: 1200px;
	display: flex;
	justify-content: flex-end;
	margin-right: 50px;
}
header .inner {
	background: #fff;
	display: inline-block;
	border-radius: 50px;
}
header .main_menu{
	padding: 0 15px 0 30px;
}

/* ヘッターメニュー */
header .main_menu nav{
	display: flex;
	align-items: center;
}
header .main_menu .menu_list a{
	padding: 0 10px;
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	letter-spacing: .06em;
	height: 60px;
	position: relative;
}
header .main_menu .menu_list a::after {
	content: '';
	width: 15px;
	height: 20px;
	background: url(/pochikame/pc/img/common/icon_logo_parts.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -1px;
	left: 42%;
	opacity: 0;
	transition: all 0.3s ease 0s;
}
header .main_menu .menu_list a:hover{
	color: var(--green);
}

header .main_menu .menu_list a:hover::after {
	opacity: 1;
}

/* コンタクト */
header .main_menu .contact a{
	background: var(--bg_black);
	color: #fff;
	font-size: 16px;
	width: 163px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	border-radius: 50px;
	padding-bottom: 2px;
	margin-left: 20px;
}
header .main_menu .contact a:hover{
	background: var(--green);
}


/*------------------------
共通CONTACT
------------------------*/
#bottom-contact {
	background: var(--green);
}
#bottom-contact .inner{
	padding: 80px 0 70px;
	position: relative;
	color: #fff;
	text-align: center;
}
#bottom-contact .inner .illust01{
	content: "";
	width: 270px;
	height: 292px;
	background: url(/pochikame/pc/img/index/top_illust_02.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -10px;
	left: -10px;
	opacity: 0;
}
#bottom-contact .inner .illust02{
	content: "";
	width: 140px;
	height: 197px;
	background: url(/pochikame/pc/img/index/top_illust_04.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -10px;
	right: 10px;
	opacity: 0;
}

#bottom-contact .inner .illust01.anime{
	opacity: 1;
	transform : translate(0, 0);
	animation: jump 2.8s cubic-bezier(.4, 0, .2, 1) forwards;
}
#bottom-contact .inner .illust02.anime{
	opacity: 1;
	transform : translate(0, 0);
	animation: jump 2.8s cubic-bezier(.4, 0, .2, 1) forwards;
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
}




#bottom-contact .logo {
	width: 130px;
	height: 120px;
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 10;
	background: var(--green);
	border-radius: 50%;
	padding: 22px 20px 10px;
}
#bottom-contact .logo img{
	object-fit: contain;
}

#bottom-contact h2{
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 15px;
}
#bottom-contact .sub-text{
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 25px;
	letter-spacing: .04em;
}
#bottom-contact .mail-wrap .ttl{
	font-weight: bold;
	letter-spacing: .04em;
	line-height: 1;
}
#bottom-contact .mail-wrap .mail a{
	font-size: 46px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: .02em;
	color: #fff;
}
#bottom-contact .mail-wrap .mail a:hover{
	opacity: .8;
}

/*------------------------
page_top
------------------------*/
#page-top {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	text-align: right;
	width: 100px;
	height: 87px;
	position: sticky;
	top: 0;
	bottom: 50px;
	z-index: 100;
	opacity: 0;
	margin: -43px 50px -43px auto;
}
#page-top.show {
	opacity: 1;
	visibility: visible;
}
#page-top a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	background: url(/pochikame/pc/img/common/icon_pagetop.png) no-repeat;
	background-size: contain;
	display: flex;
	align-items: center;
	justify-content: center;
}
#page-top a:hover{
	transform: translateY(-5px);
}

/*------------------------
footer
------------------------*/
footer .inner{
	width: 1000px;
	margin: 0 auto;
}

/* nav */
footer .n-area{
	background: var(--bg_beige);
}
footer .n-area .inner{
	padding: 50px 0 60px;
}
footer .n-area .logo-wrap .sub{
	line-height: 1;
	font-weight: bold;
	margin-bottom: 10px;
}
footer .n-area .logo-wrap .logo a{
	width: 274px;
	margin-bottom: 25px;
}
footer .n-area nav ul li a {
	padding: 0px 12px;
	font-weight: bold;
}
footer .n-area nav ul li:first-child a{
	padding: 0 12px 0 0;
}
footer .n-area nav ul li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid var(--black);
}
footer .n-area nav ul li a:hover::after {
	width: 100%;
}


/* copy */
footer .c-area {
	justify-content: space-between;
}
footer .c-area .left {
	font-size: 14px;
	line-height: 1;
}

/* 個人情報 */
footer .c-area{
	padding: 30px 0;
}
footer .c-area .privacy {
	display: block;
	margin-bottom: 10px;
}
footer .c-area .privacy a {
	display: inline-block;
	position: relative;
	text-decoration: underline;
}
footer .c-area .privacy a:hover{
	color: var(--green);
}
footer .c-area .logo {
	width: 167px;
}
footer .c-area .logo a:hover{
	opacity: .8;
}


/*------------------------
エフェクト
------------------------*/
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition: all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}
.img-animation {
	overflow: hidden;
	position: relative;
}
.img-animation.active::before {
	animation: img-animation .5s cubic-bezier(.4, 0, .2, 1) forwards;
	background: var(--bg_grad2);
	content: '';
	pointer-events: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}


@keyframes jump {
	0% {
		transform: scale(1) rotate(0deg) translate(0);
	}
	10% {
		transform: scale(1.06, 1.02) rotate(8deg) translateY(-6%);
	}
	20% {
		transform: scale(1.04, 1.1) rotate(-6deg) translateY(2%);
	}
	30% {
		transform: scale(1.1, 1.02) rotate(12deg) translateY(-20%);
	}
	46%, 100% {
		transform: scale(1) rotate(0deg) translate(0);
	}
}