@charset "UTF-8";

/* reset
------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
	box-sizing: border-box;
}
section {
	width: 100%;
}
html, body {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
    overflow-y: scroll;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
input, textarea{
	margin: 0;
	padding: 0;
}
ol, ul{
    list-style:none;
}
table{
    border-collapse: collapse;
    border-spacing:0;
	width: 100%;
}
table ,th,td{
	border-collapse:collapse;
}
caption, th{
    text-align: left;
}
img {
	width: 100%;
	height:auto;
	line-height:0;
	vertical-align:top;
}
a,form,input,iframe,textarea,button {
	 outline:0px none black !important;
}
a {
	outline: none;
	display: inline-block;
    transition: all 0.28s ease;
}
a img{
	transition: 0.28s;
}
a:link,
a:hover,
a:visited {
	text-decoration: none !important;
	color: #333;
}



/* Primary Styles
------------------------------------------*/
html {
	overflow-y: scroll;
	box-sizing: border-box;
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 1.6rem;
	font-family: 'Crimson Text', serif;
	font-weight: 500;
	text-size-adjust:100%;
	color:#333;
	background-color: #faf9f5;
	letter-spacing: 0;
	line-height: 1.75;
	position: relative;
}

body.fixed {
    position: fixed;
    width: 100%;
}

main {
	font-size: 1.6rem;
	line-height: 2;
}

@media (max-width: 480px) {
	main {
		line-height: 1.75;
	}
}

*,
::before,
::after {
	box-sizing: inherit;
}

::before,
::after {
	vertical-align: inherit;
	text-decoration: inherit;
}

/* For modern browsers */
.cf:before,
.cf:after {
	content:"";
	display:table;
}

.cf:after {
	clear:both;
}

/* container-fluid
---------------------------------*/
.container-fluid {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Float Elements
---------------------------------*/
.fl-lt {float:left;}
.fl-rt {float:right;}

/* Common style
---------------------------------*/
.imgBg {
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.imgBg2 {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.img-center {
	display: block;
	margin: 0 auto;
}
.txt-center,
.stxt-center {
	text-align: center;
}
@media (max-width: 768px){
	.stxt-center {
		text-align: left;
	}
}

.block { display: block;}
.iblock { display: inline-block;}

/*PC SP only*/
@media (min-width: 1281px){.sp-only-ll {display: none;}}
@media (max-width: 1280px){.pc-only-ll {display: none;}}
@media (min-width: 1025px){.sp-only-l {display: none;}}
@media (max-width: 1024px){.pc-only-l {display: none;}}
@media (min-width: 769px){.sp-only {display: none;}}
@media (max-width: 768px){.pc-only {display: none;}}
@media (min-width: 481px){.sp-only-m {display: none;}}
@media (max-width: 480px){.pc-only-m {display: none;}}

/* flex ---------------- */
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex.column {
    flex-direction: column;
}
.flex.between {
	-webkit-box-pack: justify;
    justify-content: space-between;
}
/* 上下左右中央 */
.flex.vc {
    flex-direction: column; /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
}
/* 上下中央横並び */
.flex.vm {
    flex-direction: row; /* 子要素をflexboxにより縦方向に揃える */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */
}

/* layout --------------------- */
[class^="col-"], [class*=" col-"] {
	padding-right: 0;
    padding-left: 0;
}
.container-fluid {
	padding-right: 0;
	padding-left: 0;
}
.wrap {
    box-sizing: border-box;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.wrap-s {
    box-sizing: border-box;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

.row {
	margin-right: 0;
    margin-left: 0;
}

/* font STYLE ------------------- */
.f-ari { font-family: Arial, Helvetica, sans-serif; }

/* font weight --------------------------------------*/
.f-bold { font-weight: bold;}
.f-normal { font-weight: normal;}
.f-w100 { font-weight: 100;}
.f-w200 { font-weight: 200;}
.f-w300 { font-weight: 300;}
.f-w400 { font-weight: 400;}
.f-w500 { font-weight: 500;}
.f-w600 { font-weight: 600;}
.f-w700 { font-weight: 700;}
.f-w900 { font-weight: 900;}

/* font color --------------------------------------*/
.f-wht { color: #fff;}
.f-blk { color: #333;}
.f-gry { color: #4c4c4a;}
.f-gry99 { color: #999;}
.f-red { color: #991414;}
.f-grn { color: #024503;}

/* font writing mode*/
.f-rl {
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.f-tb {
	-ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
	
}

/* font size --------------------------------------*/
[class^="f-sz"] {
	-webkit-transition: all 0.28s ease;
	-moz-transition: all 0.28s ease;
	transition: all 0.28s ease;	
}
.f-sz10 { font-size: 1.0rem;}
.f-sz11 { font-size: 1.1rem;}
.f-sz12 { font-size: 1.2rem;}
.f-sz13 { font-size: 1.3rem;}
.f-sz14 { font-size: 1.4rem;}
.f-sz15 { font-size: 1.5rem;}
.f-sz16 { font-size: 1.6rem;}
.f-sz17 { font-size: 1.7rem;}
.f-sz18 { font-size: 1.8rem;}
.f-sz19 { font-size: 1.9rem;}
.f-sz20 { font-size: 2.0rem;}
.f-sz21 { font-size: 2.1rem;}
.f-sz22 { font-size: 2.2rem;}
.f-sz23 { font-size: 2.3rem;}
.f-sz24 { font-size: 2.4rem;}
.f-sz25 { font-size: 2.5rem;}
.f-sz26 { font-size: 2.6rem;}
.f-sz27 { font-size: 2.7rem;}
.f-sz28 { font-size: 2.8rem;}
.f-sz29 { font-size: 2.9rem;}
.f-sz30 { font-size: 3.0rem;}
.f-sz31 { font-size: 3.1rem;}
.f-sz32 { font-size: 3.2rem;}
.f-sz33 { font-size: 3.3rem;}
.f-sz34 { font-size: 3.4rem;}
.f-sz35 { font-size: 3.5rem;}
.f-sz36 { font-size: 3.6rem;}
.f-sz37 { font-size: 3.7rem;}
.f-sz38 { font-size: 3.8rem;}
.f-sz39 { font-size: 3.9rem;}
.f-sz40 { font-size: 4.0rem; line-height: 1.3;}
.f-sz41 { font-size: 4.1rem; line-height: 1.2;}
.f-sz42 { font-size: 4.2rem; line-height: 1.2;}
.f-sz43 { font-size: 4.3rem; line-height: 1.2;}
.f-sz44 { font-size: 4.4rem; line-height: 1.2;}
.f-sz45 { font-size: 4.5rem; line-height: 1.2;}
.f-sz46 { font-size: 4.6rem; line-height: 1.2;}
.f-sz47 { font-size: 4.7rem; line-height: 1.2;}
.f-sz48 { font-size: 4.8rem; line-height: 1.2;}
.f-sz49 { font-size: 4.9rem; line-height: 1.2;}
.f-sz50 { font-size: 5.0rem; line-height: 1.2;}
.f-sz51 { font-size: 5.1rem; line-height: 1.2;}
.f-sz52 { font-size: 5.2rem; line-height: 1.2;}
.f-sz53 { font-size: 5.3rem; line-height: 1.2;}
.f-sz54 { font-size: 5.4rem; line-height: 1.2;}
.f-sz55 { font-size: 5.5rem; line-height: 1.0;}
.f-sz56 { font-size: 5.6rem; line-height: 1.0;}
.f-sz57 { font-size: 5.7rem; line-height: 1.0;}
.f-sz58 { font-size: 5.8rem; line-height: 1.0;}
.f-sz59 { font-size: 5.9rem; line-height: 1.0;}
.f-sz60 { font-size: 6.0rem; line-height: 1.0;}
.f-sz62 { font-size: 6.2rem; line-height: 1.0;}
.f-sz64 { font-size: 6.4rem; line-height: 1.0;}
.f-sz66 { font-size: 6.6rem; line-height: 1.0;}
.f-sz68 { font-size: 6.8rem; line-height: 1.0;}
.f-sz70 { font-size: 7.0rem; line-height: 1.0;}
.f-sz72 { font-size: 7.2rem; line-height: 1.0;}
.f-sz76 { font-size: 7.5rem; line-height: 1.0;}
.f-sz80 { font-size: 8.0rem; line-height: 1.0;}
.f-sz85 { font-size: 8.5rem; line-height: 1.0;}
.f-sz90 { font-size: 9.0rem; line-height: 1.0;}
.f-sz95 { font-size: 9.5rem; line-height: 1.0;}
.f-sz100 { font-size:10rem; line-height: 1.0;}
.f-sz110 { font-size:11rem; line-height: 1.0;}
@media (min-width: 481px) and (max-width: 1200px) {
    .f-sz15 { font-size: calc(1.4rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz16 { font-size: calc(1.5rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz17 { font-size: calc(1.6rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz18 { font-size: calc(1.7rem + ((1vw - 0.48rem) * 0.1389));}
    .f-sz19 { font-size: calc(1.75rem + ((1vw - 0.48rem) * 0.2083));}
    .f-sz20 { font-size: calc(1.8rem + ((1vw - 0.48rem) * 0.2778));}
    .f-sz21 { font-size: calc(1.85rem + ((1vw - 0.48rem) * 0.3472));}
    .f-sz22 { font-size: calc(1.9rem + ((1vw - 0.48rem) * 0.4167));}
    .f-sz23 { font-size: calc(1.95rem + ((1vw - 0.48rem) * 0.4861));}
    .f-sz24 { font-size: calc(2rem + ((1vw - 0.48rem) * 0.5556));}
    .f-sz25 { font-size: calc(2rem + ((1vw - 0.48rem) * 0.6944));}
    .f-sz26 { font-size: calc(2.1rem + ((1vw - 0.48rem) * 0.6944));}
    .f-sz27 { font-size: calc(2.1rem + ((1vw - 0.48rem) * 0.8333));}
    .f-sz28 { font-size: calc(2.2rem + ((1vw - 0.48rem) * 0.8333));}
    .f-sz29 { font-size: calc(2.2rem + ((1vw - 0.48rem) * 0.9722));}
    .f-sz30 { font-size: calc(2.3rem + ((1vw - 0.48rem) * 0.9722));}
    .f-sz31 { font-size: calc(2.3rem + ((1vw - 0.48rem) * 1.1111));}
    .f-sz32 { font-size: calc(2.4rem + ((1vw - 0.48rem) * 1.1111));}
    .f-sz33 { font-size: calc(2.4rem + ((1vw - 0.48rem) * 1.25));}
    .f-sz34 { font-size: calc(2.5rem + ((1vw - 0.48rem) * 1.25));}
    .f-sz35 { font-size: calc(2.5rem + ((1vw - 0.48rem) * 1.3889));}
    .f-sz36 { font-size: calc(2.6rem + ((1vw - 0.48rem) * 1.3889));}
    .f-sz37 { font-size: calc(2.6rem + ((1vw - 0.48rem) * 1.5278));}
    .f-sz38 { font-size: calc(2.7rem + ((1vw - 0.48rem) * 1.5278));}
    .f-sz39 { font-size: calc(2.7rem + ((1vw - 0.48rem) * 1.6667));}
    .f-sz40 { font-size: calc(2.8rem + ((1vw - 0.48rem) * 1.6667));}
    .f-sz41 { font-size: calc(2.8rem + ((1vw - 0.48rem) * 1.8056));}
    .f-sz42 { font-size: calc(2.9rem + ((1vw - 0.48rem) * 1.8056));}
    .f-sz43 { font-size: calc(2.9rem + ((1vw - 0.48rem) * 1.9444));}
    .f-sz44 { font-size: calc(3rem + ((1vw - 0.48rem) * 1.9444));}
    .f-sz45 { font-size: calc(3rem + ((1vw - 0.48rem) * 2.0833));}
    .f-sz46 { font-size: calc(3.1rem + ((1vw - 0.48rem) * 2.0833));}
    .f-sz47 { font-size: calc(3.1rem + ((1vw - 0.48rem) * 2.2222));}
    .f-sz48 { font-size: calc(3.2rem + ((1vw - 0.48rem) * 2.2222));}
    .f-sz49 { font-size: calc(3.2rem + ((1vw - 0.48rem) * 2.3611));}
    .f-sz50 { font-size: calc(3.3rem + ((1vw - 0.48rem) * 2.3611));}
    .f-sz51 { font-size: calc(3.3rem + ((1vw - 0.48rem) * 2.5));}
    .f-sz52 { font-size: calc(3.4rem + ((1vw - 0.48rem) * 2.5));}
    .f-sz53 { font-size: calc(3.4rem + ((1vw - 0.48rem) * 2.6389));}
    .f-sz54 { font-size: calc(3.5rem + ((1vw - 0.48rem) * 2.6389));}
    .f-sz55 { font-size: calc(3.5rem + ((1vw - 0.48rem) * 2.7778));}
    .f-sz56 { font-size: calc(3.6rem + ((1vw - 0.48rem) * 2.7778));}
    .f-sz57 { font-size: calc(3.6rem + ((1vw - 0.48rem) * 2.9167));}
    .f-sz58 { font-size: calc(3.7rem + ((1vw - 0.48rem) * 2.9167));}
    .f-sz59 { font-size: calc(3.7rem + ((1vw - 0.48rem) * 3.0556));}
    .f-sz60 { font-size: calc(3.8rem + ((1vw - 0.48rem) * 3.0556));}
    .f-sz62 { font-size: calc(3.8rem + ((1vw - 0.48rem) * 3.3333));}
    .f-sz64 { font-size: calc(3.9rem + ((1vw - 0.48rem) * 3.4722));}
    .f-sz66 { font-size: calc(3.9rem + ((1vw - 0.48rem) * 3.75));}
    .f-sz68 { font-size: calc(4rem + ((1vw - 0.48rem) * 3.8889));}
    .f-sz70 { font-size: calc(4.2rem + ((1vw - 0.48rem) * 3.8889));}
    .f-sz72 { font-size: calc(4.4rem + ((1vw - 0.48rem) * 3.8889));}
    .f-sz76 { font-size: calc(4.6rem + ((1vw - 0.48rem) * 4.1667));}
    .f-sz80 { font-size: calc(4.8rem + ((1vw - 0.48rem) * 4.4444));}
    .f-sz85 { font-size: calc(5rem + ((1vw - 0.48rem) * 4.8611));}
    .f-sz90 { font-size: calc(5rem + ((1vw - 0.48rem) * 5.5556));}
    .f-sz95 { font-size: calc(5.5rem + ((1vw - 0.48rem) * 5.5556));}
    .f-sz100 { font-size: calc(5.5rem + ((1vw - 0.48rem) * 6.25));}
    .f-sz110 { font-size: calc(5.5rem + ((1vw - 0.48rem) * 7.6389));}
}
@media (max-width: 480px){
    .f-sz15 { font-size: 1.4rem;}
    .f-sz16 { font-size: 1.5rem;}
    .f-sz17 { font-size: 1.6rem;}
    .f-sz18 { font-size: 1.7rem;}
    .f-sz19 { font-size: 1.75rem;}
    .f-sz20 { font-size: 1.8rem;}
    .f-sz21 { font-size: 1.85rem;}
    .f-sz22 { font-size: 1.9rem;}
    .f-sz23 { font-size: 1.95rem;}
    .f-sz24 { font-size: 2rem;}
    .f-sz25 { font-size: 2rem;}
    .f-sz26 { font-size: 2.1rem;}
    .f-sz27 { font-size: 2.1rem;}
    .f-sz28 { font-size: 2.2rem;}
    .f-sz29 { font-size: 2.2rem;}
    .f-sz30 { font-size: 2.3rem;}
    .f-sz31 { font-size: 2.3rem;}
    .f-sz32 { font-size: 2.4rem;}
    .f-sz33 { font-size: 2.4rem;}
    .f-sz34 { font-size: 2.5rem;}
    .f-sz35 { font-size: 2.5rem;}
    .f-sz36 { font-size: 2.6rem;}
    .f-sz37 { font-size: 2.6rem;}
    .f-sz38 { font-size: 2.7rem;}
    .f-sz39 { font-size: 2.7rem;}
    .f-sz40 { font-size: 2.8rem;}
    .f-sz41 { font-size: 2.8rem;}
    .f-sz42 { font-size: 2.9rem;}
    .f-sz43 { font-size: 2.9rem;}
    .f-sz44 { font-size: 3rem;}
    .f-sz45 { font-size: 3rem;}
    .f-sz46 { font-size: 3.1rem;}
    .f-sz47 { font-size: 3.1rem;}
    .f-sz48 { font-size: 3.2rem;}
    .f-sz49 { font-size: 3.2rem;}
    .f-sz50 { font-size: 3.3rem;}
    .f-sz51 { font-size: 3.3rem;}
    .f-sz52 { font-size: 3.4rem;}
    .f-sz53 { font-size: 3.4rem;}
    .f-sz54 { font-size: 3.5rem;}
    .f-sz55 { font-size: 3.5rem;}
    .f-sz56 { font-size: 3.6rem;}
    .f-sz57 { font-size: 3.6rem;}
    .f-sz58 { font-size: 3.7rem;}
    .f-sz59 { font-size: 3.7rem;}
    .f-sz60 { font-size: 3.8rem;}
    .f-sz62 { font-size: 3.8rem;}
    .f-sz64 { font-size: 3.9rem;}
    .f-sz66 { font-size: 3.9rem;}
    .f-sz68 { font-size: 4rem;}
    .f-sz70 { font-size: 4.2rem;}
    .f-sz72 { font-size: 4.4rem;}
    .f-sz76 { font-size: 4.6rem;}
    .f-sz80 { font-size: 4.8rem;}
    .f-sz85 { font-size: 5rem;}
    .f-sz90 { font-size: 5rem;}
    .f-sz95 { font-size: 5.5rem;}
    .f-sz100 { font-size: 5.5rem;}
    .f-sz110 { font-size: 5.5rem;}
}


/* padding */
.pt130 { padding-top: 130px;}
.pt120 { padding-top: 120px;}
.pt110 { padding-top: 110px;}
.pt100 { padding-top: 100px;}
.pt90 { padding-top: 90px;}
.pt85 { padding-top: 85px;}
.pt80 { padding-top: 80px;}
.pt70 { padding-top: 70px;}
.pt60 { padding-top: 60px;}
.pt50 {	padding-top: 50px;}
.pt40 { padding-top: 40px;}
.pt30 { padding-top: 30px;}
.pt20 { padding-top: 20px;}
.pt15 {	padding-top: 15px;}
.pt10 {	padding-top: 10px;}

.pb130 { padding-bottom: 130px;}
.pb120 { padding-bottom: 120px;}
.pb110 { padding-bottom: 110px;}
.pb100 { padding-bottom: 100px;}
.pb90 { padding-bottom: 90px;}
.pb80 { padding-bottom: 80px;}
.pb70 {	padding-bottom: 70px;}
.pb60 {	padding-bottom: 60px;}
.pb50 {	padding-bottom: 50px;}
.pb40 {	padding-bottom: 40px;}
.pb30 {	padding-bottom: 30px;}
.pb20 {	padding-bottom: 20px;}
.pb15 {	padding-bottom: 15px;}
.pb10 {	padding-bottom: 10px;}

.mb90 {	margin-bottom: 90px;}
.mb70 {	margin-bottom: 70px;}
.mb60 {	margin-bottom: 60px;}
.mb50 {	margin-bottom: 50px;}
.mb40 {	margin-bottom: 40px;}
.mb30 {	margin-bottom: 30px;}
.mb20 { margin-bottom: 20px;}
.mb15 { margin-bottom: 15px;}
.mb10 { margin-bottom: 10px;}
.mb5 { margin-bottom: 5px;}

@media (max-width: 768px) {
	.pt130 { padding-top: 100px;}
	.pt120 { padding-top: 95px;}
	.pt110 { padding-top: 90px;}
	.pt100 { padding-top: 75px;}
	.pt90 { padding-top: 60px;}
	.pt85 { padding-top: 63px;}
	.pt80 { padding-top: 55px;}
	.pt70 { padding-top: 50px;}
	.pt60 { padding-top: 45px;}
	.pt50 { padding-top: 40px;}
	.pt40 { padding-top: 30px;}
	.pt30 { padding-top: 25px;}
	.pt20 { padding-top: 15px;}
	
	.pb130 { padding-bottom: 100px;}
	.pb120 { padding-bottom: 95px;}
	.pb110 { padding-bottom: 90px;}
	.pb100 { padding-bottom: 80px;}
	.pb90 { padding-bottom: 65px;}
	.pb80 { padding-bottom: 55px;}
	.pb70 { padding-bottom: 50px;}
	.pb60 { padding-bottom: 45px;}
	.pb50 { padding-bottom: 40px;}
	.pb40 { padding-bottom: 30px;}
	.pb30 { padding-bottom: 25px;}
	.pb20 { padding-bottom: 20px;}
	
	.mb30 { margin-bottom: 25px;}
	.mb40 {	margin-bottom: 30px;}
	.mb50 {	margin-bottom: 35px;}
	.mb60 {	margin-bottom: 40px;}
	.mb70 { margin-bottom: 55px;}
	.mb90 { margin-bottom: 60px;}
}

@media (max-width: 480px) {
	.pt130 { padding-top: 65px;}
	.pt120 { padding-top: 60px;}
	.pt110 { padding-top: 55px;}
	.pt100 { padding-top: 50px;}
	.pt90 { padding-top: 45px;}
	.pt85 { padding-top: 40px;}
	.pt80 { padding-top: 40px;}
	.pt70 { padding-top: 35px;}
	.pt60 { padding-top: 30px;}
	.pt50 { padding-top: 25px;}
	.pt40 { padding-top: 20px;}
	.pt30 { padding-top: 15px;}
	.pt20 { padding-top: 10px;}

	.pb130 { padding-bottom: 65px;}
	.pb120 { padding-bottom: 60px;}
	.pb110 { padding-bottom: 55px;}	
	.pb100 { padding-bottom: 50px;}
	.pb90 { padding-bottom: 45px;}
	.pb80 { padding-bottom: 40px;}
	.pb70 { padding-bottom: 35px;}
	.pb60 { padding-bottom: 30px;}
	.pb50 { padding-bottom: 25px;}
	.pb40 { padding-bottom: 20px;}
	.pb30 { padding-bottom: 15px;}
	.pb20 { padding-bottom: 10px;}
	
	.mb90 {	margin-bottom: 45px;}
	.mb70 {	margin-bottom: 35px;}
	.mb60 {	margin-bottom: 30px;}
	.mb50 {	margin-bottom: 25px;}
	.mb40 { margin-bottom: 20px;}
	.mb30 { margin-bottom: 15px;}
	.mb20 { margin-bottom: 10px;}
}

@media (min-width: 768px) {
	/* ttl-lls */
	.ttl-lls {
		letter-spacing: 0.15em;
	}
}

/* iOS タップバグ回避
========================= */
@media screen and (max-width: 640px) {
	.button a{
		pointer-events: none;
	}
	a:hover:after,
	a:active:after,
	a:focus:after
	a:after {
		display: none !important;
	}
}

/* ----------------------------------------
   header
------------------------------------------*/
/* .site-header */
.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.8);
}

.site-header.fixed-header {
}



/* header-logo --------------------------*/
.site-header .header-logo {
	width: 260px;
	padding-left: 10px;
}
.site-header .header-logo .h-logo a {
	display: flex;
	align-items: center;
}
.site-header .header-logo .h-logo img {
	width: 80px;
	height: 30px;
	margin-right: 10px;
}
.site-header .header-logo .h-logo .f-wht {
	line-height: 1;
}
@media (max-width: 767px) {
	.site-header .header-logo {
		width: 250px;
		padding-left: 5px;
	}
}

@media (max-width: 480px) {
	.site-header .header-logo {
/*		width: 90px;*/
	}
}

/* .site-header .h-right --------------------------*/
.site-header .h-right {
	width: calc(100% - 260px); /* 100% - ロゴの領域 */
	display: flex;
	justify-content: flex-end;
}

.h-right .menulist {
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	display: table;
}

.h-right .menulist li {
    display: table-cell;
    vertical-align: middle;
}

.h-right .menulist .talkappi-faq-icon{
	display: block;
	padding-left: 25px;
	padding-right: 25px;
	line-height: 60px;
	color: #fff;
	transition: background-color ease 0.28s;
}
.h-right .menulist .talkappi-faq-icon:hover {
	background-color: rgba(255,255,255,0.15);
}


@media (max-width: 991px) {
  .h-right .menulist  {
    display: none;
  }
}

@media (max-width: 767px) {
	.site-header .h-right {
		width: calc(100% - 250px); /* 100% - ロゴの領域 */
	}	
}
@media (max-width: 480px) {
	.site-header .h-right {
/*		width: calc(100% - 90px);*/
	}
}

/* sp-header */
.sp-header {
	display: none;
	position: relative;
}

/* menu button */
.hamburger-menu {
	transition: all 0.5s;
	z-index: 1000;
}

body.fixed .site-header .hamburger-menu {
	right: 0;
	top: 0;
}

.menu-button {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #000;
    cursor: pointer;
    position: relative;
    transition: all 0.25s;
}
@media (max-width: 480px) {
	.menu-button {
	    width: 50px;
	    height: 50px;
	}
}

.menu-button .lines {
    color: #fff;
	background: #fff;
    width: 20px;
    height: 1px;
	display: inline-block;
    position: absolute;
	left: 20px;
    transition: 0.2s cubic-bezier(.33333,0,.66667,.33333),opacity 0.1s 0.27s ease;
}
.menu-button .lines:first-child {
	top: 23px;
}
.menu-button .lines:nth-child(2) {
	top: 30px;
	transition: all 0.2s ease;
}
.menu-button .lines:nth-child(3) {
	top: 37px;
}

@media (max-width: 480px) {
	.menu-button .lines {
		left: 15px;
	}
	.menu-button .lines:first-child {
		top: 18px;
	}
	.menu-button .lines:nth-child(2) {
		top: 25px;
	}
	.menu-button .lines:nth-child(3) {
		top: 32px;
	}	
}

.menu-button.active .lines:first-child {
    transform: translate3d(0,7px,0) rotate(-45deg);
    transition-delay: 0.2s;
    transition-timing-function: ease;
}

.menu-button.active .lines:nth-child(2) {
	transform: scale(0,0);
}

.menu-button.active .lines:nth-child(3) {
    transform: translate3d(0,-7px,0) rotate(45deg);
    transition-delay: 0.2s;
    transition-timing-function: ease;
}

/* PCメニューとSPボタン切り替え　メニューの長さでmax-widthを調整 */
@media (max-width: 991px) {
	.sp-header {
		display: block;	
	}
	.site-header #gnav {
		display: none;
	}
}



/* h-tel */
.h-tel{
	display: table;
	table-layout: auto;
}
.h-tel dt,
.h-tel dd {
	display: table-cell;
	vertical-align: middle;
	padding-right: 20px;
}
.h-tel dd span {
	display: block;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.05em;
}
.h-tel dd .time {
	letter-spacing: 0.075em;
}

.h-tel dt,
.h-tel span {
	color: #fff;
}


/* h-plan */
.h-plan {
	width: 190px;
}
.h-plan a {
	display: block;
	background-color: #0a730c;
	color: #fff;
	line-height: 60px;
	text-align: center;
	position: relative;
}
/* IEのみ */
@media (-ms-high-contrast: none){
	.h-plan a {
		padding-top: 5px;
		line-height: 55px;
	}
}
.h-plan a span {
	display: none;
}
.h-plan a:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity ease 0.28s, visibility ease 0.28s;
}
.h-plan a:hover:before {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 991px) {
	.h-tel {
		display: none;
	}
	.h-plan {
		width: 240px;
	}
	.h-plan a span {
		display: inline-block;
	}
}
@media (max-width: 480px) {
	.h-plan {
		display: none;
	}
	.h-plan a {
		font-size: 1.5rem;
		line-height: 50px;
	}
}
/* IEのみ */
@media (-ms-high-contrast: none) and (max-width: 480px){
	.h-plan a {
		line-height: 45px;
	}
}






/* h-FL */
.h-FL {
	display: table;
	table-layout: auto;
}
.h-FL li {
	display: table-cell;
	vertical-align: middle;
}
.h-FL li a {
	display: block;
	width: 45px;
	background-color: #b4b1ac;
	color: #fff;
	line-height: 60px;
	text-align: center;
}
.h-FL li:nth-child(3) a {
    width: 55px;
}
/* IEのみ */
@media (-ms-high-contrast: none){
	.h-FL li a {
		padding-top: 5px;
		line-height: 55px;
	}
}
.h-FL li a.current,
.h-FL li a:hover {
	background-color: #000;	
}
@media (max-width: 991px) {
	.h-FL {
		display: none;
	}
}


/* spnav */
.spnav.hide-nav {
}
.spnav {
	width: 100%;
	height: 100%;
    position: fixed;
    top: 0;
    right: 0; 
    left: 0;
    z-index: 900;
    text-align: center;
	opacity: 0;
	visibility: hidden;
    background: rgba(0,0,0,0.8);
    transition: .5s cubic-bezier(.77,0,.175,1);
}

.spnav.show-nav {
	visibility: visible;
	opacity: 1;	
}

@media (min-width: 992px) {
	.spnav {
		display: none;
	}	
}

.inner-spnav {
    width: 100%;
    height: calc(100% - 100px);
    margin-top: 100px;
    box-sizing: border-box;
    overflow: auto;
}

.inner-spnav nav {
	width: 90%;
    max-width: 618px;
    margin: 0 auto;
}

/* .sp-uppermenu */
.inner-spnav .sp-uppermenu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
}
@media (max-width: 480px) {
	.inner-spnav .sp-uppermenu {
		justify-content: center;
	}
}

/* .sp-plan */
.inner-spnav .sp-plan .btn {
	display: none;
	background-color: #48760c;
	border-radius: 0;
	color: #fff;
}
@media (max-width: 480px) {
	.inner-spnav .sp-plan .btn {
		display: block;
	}
}

/* .sp-FL */
.inner-spnav .sp-FL {
	display: flex;
	flex-wrap: wrap;
}
.inner-spnav .sp-FL li {
	width: 80px;
	margin-right: 1px;
}
.inner-spnav .sp-FL li:last-child {
	margin-right: 0;
}
.inner-spnav .sp-FL li a {
	display: block;
	color: #fff;
	background-color: #000;
	line-height: 50px;
	white-space: nowrap;
}
.inner-spnav .sp-FL li a:hover,
.inner-spnav .sp-FL li a.current {
	color: #333;
	background-color: #fff;
}
@media (max-width: 480px) {
	.inner-spnav .sp-FL {
		width: 100%;
/*		justify-content: center;*/
	}
	.inner-spnav .sp-FL li {
		width: 60px;
	}
}

@media (-ms-high-contrast: none) {
	.inner-spnav .sp-FL li a {
		padding-top: 5px;
		line-height: 45px;
	}
}


.inner-spnav .sp-menulist > li {
	border-top: 1px solid rgba(255,255,255,0.3);
}
.inner-spnav .sp-menulist > li:last-child {
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.inner-spnav .sp-menulist > li .link {
	cursor: pointer;
	position: relative;
}
.inner-spnav .sp-menulist > li .link:before,
.inner-spnav .sp-menulist > li .link:after {
	content: "";
	display: block;
	width: 13px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 15px;
	transition: all ease 0.28s;
}
.inner-spnav .sp-menulist > li .link:before {
	transform: rotate(-90deg);
}
.inner-spnav .sp-menulist > li .link.sub-open:before {
	transform: rotate(0deg);
}


.inner-spnav .sp-menulist > li > span,
.inner-spnav .sp-menulist > li a {
	display: block;
	color: #fff;
	padding: 20px 0;
}
/* IEのみ */
@media (-ms-high-contrast: none) {
	.inner-spnav .sp-menulist > li > span,
	.inner-spnav .sp-menulist > li a {
		padding: 23px 0 17px 0;
	}
}
.inner-spnav .sp-menulist > li > span:hover,
.inner-spnav .sp-menulist > li a:hover {
	background-color: rgba(255,255,255,0.1);
}

.inner-spnav .sp-menulist > li .sp-submenu {
/*	display: none;*/
}

.inner-spnav .sp-menulist > li .has-line {
	position: relative;
}
.inner-spnav .sp-menulist > li .has-line:before {
	content: "";
	display: block;
	width: 1px;
	height: calc(100% - 20px);
	background-color: rgba(255,255,255,0.3);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}


.inner-spnav .sp-menulist > li .row-3 {
	display: flex;
	flex-wrap: wrap;
}
.inner-spnav .sp-menulist > li .row-3 li {
	width: 33.333333333%;
}
@media (max-width: 480px) {
	.inner-spnav .sp-menulist > li .row-3 li {
		width: 100%;
	}
	.inner-spnav .sp-menulist > li .row-3 li br {
		display: none;
	}
	.inner-spnav .sp-menulist > li .row-3 .has-line:before {
		width: 100%;
		height: 1px;
		top: 0;
		left: 0;
		transform: translateY(0);
	}
}

/* .sp-contact */
.inner-spnav .sp-contact a {
	background-color: #0a730c;
	border-radius: 0;
}
.inner-spnav .sp-contact a:before {
	content: "";
	display: block;  
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.1);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity ease 0.28s, visibility ease 0.28s;
}
.inner-spnav .sp-contact a:hover:before {
	opacity: 1;
	visibility: visible;	
}
@media (max-width: 480px) {
	.inner-spnav .sp-contact a {
		padding: 21px 0;
	}
}
/* IEのみ */
@media (-ms-high-contrast: none) and (max-width: 480px) {
	.inner-spnav .sp-contact a {
		padding: 24px 0 18px 0;
	}
}

/* .sp-telnum */
.inner-spnav .sp-telnum .btn-tel {
	border-radius: 0;
	background-color: #48760c;
}
.inner-spnav .sp-telnum .btn-tel .btn-icon-tel img {
	width: 18px;
	height: 21px;
}

@media (-ms-high-contrast: none) {
	.inner-spnav .sp-telnum .btn-tel .btn-lower .btn-txt {
		padding-top: 5px;
		margin-bottom: -5px;		
	}
}


/* .sp-menulist02 */
.inner-spnav .sp-menulist02 {
	text-align: left;
	padding-bottom: 40px;
}
.inner-spnav .sp-menulist02 > li a {
	color: #fff;
	line-height: 40px;
}
.inner-spnav .sp-menulist02 > li a span {
	padding-bottom: 5px;
	border-bottom: 1px solid transparent;
	transition: border-color ease 0.28s;
}
.inner-spnav .sp-menulist02 > li a:hover span {
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* 共通スタイル ------------------------*/
/* #pagetitle */
#pagetitle {
	height: 600px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 50%;
	position: relative;
}
#pagetitle:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
	position:absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#pagetitle .txt {
	display: block;
	height: 100%;
	margin: 0 auto;
	padding-top: 60px;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.25em;
	text-align: center;
	white-space: nowrap;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	position: absolute;
	top: 50%;
	right: 50%;
	z-index: 1;
	transform: translate(50%, -50%);
}
@media (max-width: 768px) {
	#pagetitle {
		height: 450px;
	}	
}

@media (max-width: 480px) {
	#pagetitle {
		height: 350px;
	}
	#pagetitle .txt {
		padding-top: 50px;
	}
}


/* #pageintro */
#pageintro {
	
}
#pageintro .intro-head {
	position: relative;
}
#pageintro .intro-head:before {
	content: "";
	display: block;
	width: 80px;
	height: 2px;
	background-color: #47760c;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
#biyuu #pageintro .intro-head:before {
	background-color:#490775;
}
#pageintro .intro-txt {
	line-height: 2;
}
@media (max-width: 767px) {
	#pageintro .intro-head:before {
		left: 0;
		transform: translateX(0);
	}
}








