@charset "UTF-8";

/* !HTML5 elements
---------------------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section
{ display: block;}

body, div, p,
dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre,
form, input, textarea,
table, th, td{  
margin:0px; 
padding:0px; 
}

ul {
list-style-type: none;
}

img{
border:0px;
vertical-align:bottom;
}

table {
	border-collapse:collapse;
	border-spacing:0px;
	width: 100%;
	margin: 0 0 25px;
}

tr {
}

th {
	padding: 12px 10px 0;
	vertical-align: top;
	display: block;
	font-weight: bold;
}

td {
	padding: 12px 10px;
	vertical-align: top;
	display: block;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				th {
					display: table-cell;
					padding: 20px 25px;
					white-space: nowrap;
					text-align: left;
					border-bottom: 1px solid #d0d0d0;
				}
				td {
					display: table-cell;
					padding: 20px 25px;
					border-bottom: 1px solid #d0d0d0;
				}
			}
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}

iframe {
border: 0;
overflow: hidden;
}


/* common
------------------------------------*/

a:link,
a:visited {
	color: #d70c18;
	text-decoration: underline;
	transition: .3s;
}

html {
  font-size: 62.5%;
}

body {
	font-size: 1.4rem;
	text-align: center;
	line-height: 1;
	color: #111;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3" , "Hiragino Kaku Gothic ProN," , "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 'メイリオ' , Meiryo , Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	overflow-x: hidden;
	width: 100%;
	background-color: #fff;
}

.pcTab,
.pc,
.tab { display: none;}
.sp,
.tabSp { display: block;}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				body {
					font-size: 1.6rem;
				}
				.pc,
				.sp { display: none;}
				.tab,
				.pcTab,
				.tabSp { display: block;}
			}
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				.sp,
				.tab,
				.tabSp { display: none;}
				.pcTab,
				.pc { display: block;}
				a:hover,
				a:active {
					opacity: 0.7;
				}
			}

#header {
	width: 100%;
	padding: 0 4%;
	position: fixed;
	top: 0;
	z-index: 10;
	box-sizing: border-box;
}

#header h1 {
	text-align: left;
	padding: 20px 0;
}

#header h1 a {
	position: relative;
	display: block;
}

#header h1 a img {
	height: 60px;
	transition: 0.3s;
}

#header h1 a img:nth-child(2) {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}

#header.active h1 a img:nth-child(1) {
	opacity: 0;
}

#header.active h1 a img:nth-child(2) {
	opacity: 1;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				#header h1 a img {
					height: 75px;
				}
				#header {
					padding: 0 0 0 4%;
					display: flex;
					justify-content: space-between;
				}
			}


#header #gNavi {
	display: none;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				#header #gNavi {
					display: block;
				}
				#header #gNavi ul {
					display: flex;
					align-items: center;
				}
				#header #gNavi ul li a {
					font-size: 1.5rem;
					font-weight: 900;
					display: flex;
					align-items: center;
					line-height: 1.4;
					height: 100px;
					padding: 0 20px;
					transition: 0.3s;
				}
				#header #gNavi ul li a:link,
				#header #gNavi ul li a:visited {
					color: #fff;
					text-decoration: none;
				}
				#header #gNavi ul li a:hover,
				#header #gNavi ul li a:active {
					opacity: 1;
					color: #d70c19;
				}
                #header #gNavi ul li.btn01 {
                    margin-left: 20px;
                }
				#header #gNavi ul li.btn01 a {
					display: block;
					background-color: #d70c19;
					height: 110px;
					line-height: 110px;
					padding: 0 20px;
				}
				#header #gNavi ul li.btn01 a:hover,
				#header #gNavi ul li.btn01 a:active {
					color: #fff;
					opacity: 0.6;
				}
				#header.active #gNavi ul li a:link,
				#header.active #gNavi ul li a:visited {
					color: #111;
				}
				#header.active #gNavi ul li.btn01 a:link,
				#header.active #gNavi ul li.btn01 a:visited {
					color: #fff;
				}
			}


#container {
	position: relative;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}


#contents {
	text-align: left;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}

#main {
}

#main h3 {
	font-size: 2rem;
	padding: 0 0 25px;
}

#main h4 {
	font-size: 1.8rem;
	padding: 0 0 20px;
}

#main h5 {
	font-size: 1.8rem;
	padding: 0 0 10px;
}

#main h6 {
	font-size: 1.6rem;
	padding: 0 0 10px;
}

#main .cassette {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 40px;
	line-height: 1.8;
}

#main .cassette p,
#main .cassette ul,
#main .cassette ol {
	padding: 0 0 25px;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}

#pagetop {
	position: fixed;
	right: 4%;
	bottom: 20px;
}

#pagetop a img {
	width: 50px;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				#pagetop a img {
					width: 70px;
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}


#footer .contactArea {
	position: relative;
	overflow: hidden;
}

#footer .contactArea:after {
	content: '';
	display: block;
	width: 105%;
	height: 105%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	background: url(../img/contact_bg01.jpg) no-repeat center center;
	background-size: cover;
	z-index: -1;
	transition: all .3s;
}

#footer .contactArea:hover:after {
	transform: translate(-50%,-50%) scale(1.2);
}

#footer .contactArea a {
	display: block;
	padding: 50px 0;
	width: 100%;
}

#footer .contactArea a:link,
#footer .contactArea a:visited {
	color: #fff;
	text-decoration: none;
}

#footer .contactArea a h2 .en {
	font-size: 6rem;
	font-weight: 700;
}

#footer .contactArea a p {
	color: #fff;
	line-height: 1.8;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				#footer .contactArea a {
					padding: 80px 0;
				}
				#footer .contactArea a h2 .en {
					font-size: 7.2rem;
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				#footer .contactArea a {
					padding: 120px 0;
				}
			}


#footer .box {
	background-color: #232323;
	padding: 40px 0;
}

#footer .box01 {
	width: 92%;
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

#footer .box0101 {
	padding: 0 0 20px;
}

#footer .box0101 .logo img {
	width: 276px;
}

#footer .box0102 {
	text-align: left;
	padding: 0 0 40px;
}

#footer .box0102 p {
	font-size: 1.2rem;
	line-height: 1.8;
}

#footer .box0102 p span {
	font-size: 1.4rem;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				#footer .box01 {
					display: flex;
					align-items: center;
				}
				#footer .box0101 {
					width: 50%;
					box-sizing: border-box;
					padding: 20px 40px 20px 80px;
					border-right: 1px solid #323232;
					text-align: right;
				}
				#footer .box0102 {
					width: 50%;
					box-sizing: border-box;
					padding: 80px 40px;
				}
				#footer .box0102 p {
					font-size: 1.4rem;
				}
				#footer .box0102 p span {
					font-size: 1.8rem;
				}
			}


.columnRight {
	display: block;
	float: right;
}

.columnLeft {
	display: block;
	float: left;
}

.textRed {
	color: #d70c18;
}

.bold {
	font-weight: 700;
}

.fontS {
	font-size: 1.2rem;
}

.fontL {
	font-size: 1.6rem;
}

.centerH {
	display: flex;
	align-items: center;
}

.img {
	text-align: center;
}

.img img {
	max-width: 100%;
}

ul.disc > li {
	list-style-type: disc;
	margin: 0 0 0 1em;
	padding: 0;
}

ol.decimal > li {
	list-style-type: decimal;
	margin: 0 0 0 1em;
	padding: 0;
}

ol ul {
	padding: 10px 0 !important;
}

.flexList li {
	padding: 0 0 10px;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				.center {
					text-align: center;
				}
				.flex {
					display: flex;
					justify-content: space-between;
				}
				.flexList {
					display: flex;
					flex-wrap: wrap;
				}
				.flexList2 li {
					width: 49%;
					margin: 0 2% 0 0;
				}
				.flexList2 li:nth-child(2n) {
					margin: 0;
				}
				.flexList3 li {
					width: 32%;
					margin: 0 2% 0 0;
				}
				.flexList3 li:nth-child(3n) {
					margin: 0;
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				.fontS {
					font-size: 1.4rem;
				}
				.fontL {
					font-size: 2rem;
				}
			}


/* tableWrap
------------------------------------*/

.tableWrap {
	overflow-x: scroll;
	margin: 0 0 25px;
}

.tableWrap p {
	padding: 0 0 10px;
}

.tableWrap table {
	margin: 0;
}

.tableWrap table tr th,
.tableWrap table tr td {
	display: table-cell;
	border: 1px solid #d0d0d0;
	vertical-align: middle;
	text-align: center;
	white-space: nowrap;
	padding: 12px 10px;
}

.tableWrap table tr th {
	background-color: #e4e4e4;
}


			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				.tableWrap {
					overflow: auto;
				}
				.tableWrap table tr th,
				.tableWrap table tr td {
					padding: 20px 25px;
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				.tableWrap p {
					display: none;
				}
			}

.tableBox table {
	border-top: 1px solid #d0d0d0;
	border-left: 1px solid #d0d0d0;
}

.tableBox table tr th,
.tableBox table tr td {
	border-right: 1px solid #d0d0d0;
	border-bottom: 1px solid #d0d0d0;
	vertical-align: middle;
	padding: 12px 10px;
}

.tableBox table tr th {
	background-color: #e4e4e4;
}


			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				.tableBox table tr th,
				.tableBox table tr td {
					padding: 20px 25px;
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}


/* formWrap
------------------------------------*/

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

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;
}

.formWrap table th .textRed {
	display: inline-block;
	padding: 0 0 0 5px;
}

.formWrap input[type="text"],
.formWrap input[type="email"] {
	width: 100%;
	line-height: 40px;
	height: 40px;
	padding: 1px 5px;
	font-size: 16px;
	box-sizing: border-box;
	border: 1px solid #ddd;
}

.formWrap .inputS input[type="text"] {
	width: 150px;
}

.formWrap input[type="text"].date {
	width: 150px;
}
.formWrap input[type="text"].time {
	width: 50px;
}

.formWrap textarea {
	width: 100%;
	border: 1px solid #ddd;
	font-size: 16px;
	padding: 1px 5px;
	box-sizing: border-box;
}

.formWrap #btn {
	text-align: center;
}

.formWrap #btn input[type="submit"] {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	height: 40px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
	background-color: #d70c18;
	color: #fff;
	font-size: 100%;
}

.formWrap #btn input[type="submit"]:hover {
	opacity: 0.7;
}

.formWrap #btn button[type="submit"] {
	display: inline-block;
	width: 100%;
	max-width: 350px;
	height: 40px;
	margin: 20px auto 0;
	border: none;
	cursor: pointer;
	background-color: #eee;
	color: #000;
	font-size: 100%;
}

.formWrap #btn button[type="submit"]:hover {
	opacity: 0.7;
}


			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				.formWrap #btn button[type="submit"] {
					margin: 0 0 0 20px;
				}
			}


/* original
------------------------------------*/

.en {
	font-family: 'Josefin Sans', sans-serif;
}

.redTag {
	display: inline-block;
	vertical-align: bottom;
	background-color: #d70c18;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	padding: 10px 15px;
	margin: 0 0 20px;
	position: relative;
	overflow: hidden;
}

.redTag:after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	background-color: #d70c18;
	position: absolute;
	left: 0;
	top: 0;
}


			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				.redTag {
					font-size: 1.8rem;
					padding: 10px 30px;		
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}

.btnWhite a {
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	max-width: 330px;
	padding: 23px 29px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	background-color: #fff;
	box-shadow: 0px 3px 7px 0px rgba(99, 99, 99, 0.35);
	position: relative;
	text-align: left;
}

.btnWhite a:link,
.btnWhite a:visited {
	color: #d70c18;
	text-decoration: none;
}

.btnWhite a:hover,
.btnWhite a:active {
	color: #fff;
	background-color: #d70c18;
	opacity: 1;
}

.btnWhite a:after {
	content: '';
	display: block;
	width: 14px;
	height: 9px;
	background: url(../img/arrow01_re.png) no-repeat center center / contain;
	position: absolute;
	right: 29px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
}

.btnWhite a:hover:after {
	background: url(../img/arrow01_wh.png) no-repeat center center / contain;
	right: 15px;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
			}


#pageTitle {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 180px 4% 40px;
}

#pageTitle h2 {
	max-width: 1400px;
	margin: 0 auto;
	text-align: left;
}

#pageTitle h2 .en {
	color: #fff;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	opacity: 0;
	transition: 0.8s;
}

#pageTitle.active h2 .en {
	letter-spacing: 0.05em;
	opacity: 1;
}

			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 761px) {
				#pageTitle h2 .en {
					font-size: 9rem;
				}
			}		
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				#pageTitle {
					padding: 360px 4% 40px;
				}
			}



/* tab sp menu
------------------------------------*/

.menu-btn {
	position: absolute;
    cursor: pointer;
    z-index: 1499;
    padding: 26px 20px 27px;
    top: 0;
    right: 0;
    background-color: #d70c18;
}

.menu-btn-close {
	position: absolute;
    cursor: pointer;
    z-index: 1501;
    top: 20px;
    right: 20px;
}

.menu-btn span:after {
	display: block;
	content: '';
	width: 33px;
	height: 47px;
	background: url(../img/menu_icon.png) no-repeat center center;
	background-size: 33px 47px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn-close span:after {
	display: block;
	content: '';
	width: 27px;
	height: 27px;
	background: url(../img/menu_close.png) no-repeat center center;
	background-size: 27px 27px;
}

.menu {
	position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
    box-sizing: border-box;
    z-index: 1500;
}

.menu div {
	height: 100%;
	margin: 0 auto;
    overflow: auto;
    box-sizing: border-box;
    position: relative;
    padding: 67px 4% 0;
	font-size: 15px;
	color: #000;
	font-weight: bold;
}

.menu div > ul {
	margin: 0 0 67px;
}

.menu div > ul > li {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.menu div ul li a {
    display: block;
    padding: 20px 0;
}

.menu div ul li a:link,
.menu div ul li a:visited {
	color: #000;
	text-decoration: none;
}

.menu div ul li.box {
	display: flex;
	padding: 8px 0;
}

.menu div ul li.box a {
	padding: 12px 0;
}

.menu div ul li.box p span {
	display: block;
	white-space: nowrap;
	width: 88px;
}

.menu div ul li.box ul {
	font-weight: normal;
}


/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
    -webkit-transition: all .5s;
    transition: all .5s;
    left: 0%;
}

.menu div ul li a {
	position: relative;
}

.menu div > ul {
	border-top: 1px solid #565656;
}

.menu div > ul > li {
	border-bottom: 1px solid #565656;
}

body.open {
	position: fixed;
	left: 0;
	top: 0;
}

			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 1200px) {
				.menu-btn {
					display: none;
				}
				.menu {
					display: none;
				}
			}


.menu div > ul > li.accordion.open {
	background-color: rgba(208,50,109,0.1);
}

.menu div > ul > li.accordion span {
	display: block;
    padding: 17px 20px;
    position: relative;
}

.menu div > ul > li.accordion span:after {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	background: url(../img/sp/icon-plus.png) no-repeat center center;
	background-size: 13px auto;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.menu div > ul > li.accordion span.open:after {
	content: '';
	background: url(../img/sp/icon-minus.png) no-repeat center center;
	background-size: 13px auto;
}

.menu div > ul > li.accordion ul {
	display: none;
}


/* WordPressデフォルト
------------------------------------*/

.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }


/* pager
------------------------------------*/

.wpNavi {
	margin: 30px auto;
}

.wpNavi ol {
	text-align: center;
}

.wpNavi ol li {
	display: inline-block;
	margin: 0.2em;
	font-size: 100%;
}

.wpNavi ol li a {
	color: #d70c19;
	padding: 10px 16px;
	background-color: #fff;
	border: 1px solid #d70c19;
}

.wpNavi ol li a:link,
.wpNavi ol li a:visited {
	text-decoration: none;
}

.wpNavi ol li .current {
    color: #fff;
	background: #d70c19;
	border: 1px solid #d70c19;
	padding: 10px 16px;
}


/* clearfix
------------------------------------*/

.clearfix:after {
content: ".";
display: block;
clear: both;
height: 0;
visibility: hidden;
overflow:hidden;
}

.clearfix {
display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
height: 1%
}

.clearfix {
display:block;
}
/* end MacIE5 */