@charset "utf-8";

/* base
-------------------------------------------------------- */
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,
b, 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: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}


/* フォントと背景
-------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: dnp-shuei-gothic-gin-std, sans-serif;
	color: #333;
	font-size: 1.6em;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
.en01 { font-family: utopia-std, serif; }
.serif { font-family: source-han-serif-japanese, serif; }
.fc_rd { color: #bc272d; }
.fc_s { font-size: 1.4rem; }
.semi_bold { font-weight: 600; }
.bold { font-weight: 700; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
.bg01 { background: #dfd7d0; }
@media screen and (max-width: 768px) {
}


/* リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover {
	opacity: 0.5;
}
.underline {
	text-decoration: underline;
}
.underline:hover {
	text-decoration: none;
	opacity: 1;
}
::-moz-selection {
	color: #42210b;
	background: #ecbe0e;
}
::selection {
	color: #42210b;
	background: #ecbe0e;
}


/* 余白
-------------------------------------------------------- */
/* margin */
.mt16 { margin-top: 16px; }
.mt24 { margin-top: 24px; }
.mt40 { margin-top: 40px; }
.mt60 { margin-top: 60px; }
.mb60 { margin-bottom: 60px; }
/* padding */
.pad_y01 { padding: 80px 0; }
.pb100 { padding-bottom: 100px; }
@media screen and (max-width: 768px) {
.mt40,
.mt60 { margin-top: 24px; }
.pad_y01 { padding: 40px 0; }
}

/* layout
-------------------------------------------------------- */
.inner {
	max-width: 1080px;
	width: 92%;
	margin: auto;
}
.inner.mw900 {
	max-width: 900px;
}
.border_btm {
	border-bottom: solid 1px #754c24;
}
.cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
}
.iframe {
	position: relative;
}
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.anchor {
	margin-top: -100px;
	padding-top: 100px;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}


/* flex系 */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.ai_fs {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}
.btns {
	max-width: 1000px;
	width: 100%;
	margin: 24px 0 0;
}
.btns a {
	width: 48%;
}
@media screen and (max-width: 768px) {
	.btns {
		max-width: inherit;
		display: block;
	}
.btns a {
	width: 100%;
}
.btns a:nth-child(1) {
	margin: 0 0 10px;
}
}
/* title
-------------------------------------------------------- */
.title01 {
	padding-left: 36px;
	position: relative;
}
.title01::before {
	content: "";
	width: 20px;
	height: 20px;
	background-image: url("../img/cmn/title01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 10px);
	left: 0;
}
.title01 .jp {
	color: #42210b;
	font-size: 2.6rem;
}
.title01 .en {
	color: #876239;
	margin-top: 4px;
	margin-left: 10px;
}
.title02 {
	font-size: 1.8rem;
	margin-bottom: 16px;
}
.index_head {
	margin-bottom: 24px;
}
.index_head .title01 {
	margin-bottom: 0 !important;
}
.index_head .btn02 {
	background: #edc100;
	border: none;
	max-width: 140px;
	height: 30px;
	margin-left: 16px;
}
.index_head .btn02.is_arrow::after {
	right: 0;
}
.index_head .bnr {
	margin-top: 4px;
}
.page_title_wrap {
	border-bottom: solid 1px #754c24;
	padding: 24px 0;
}
.page_title span {
	display: block;
	line-height: 1;
}
.page_title .jp {
	color: #42210b;
	font-size: 3rem;
	margin-bottom: 10px;
}
.page_title .en {
	color: #876239;
}
@media screen and (max-width: 480px) {
.index_head > .flex {
	display: block
}
.index_head .bnr {
	margin-top: 10px;
}
.index_head .btn02 {
	margin-top: 4px;
	margin-left: 0;
}
}

.mt10 { margin-top: 10px; }
.mb40 { margin-bottom: 40px; }
/* btn
-------------------------------------------------------- */
.btn01 {
	padding-right: 24px;
	position: relative;
}
.btn01::after {
	content: "";
	width: 19px;
	height: 19px;
	background-image: url("../img/cmn/btn01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn01:hover .underline {
	text-decoration: none;
}
.btn02 {
	color: #603813;
	max-width: 527px;
	width: 100%;
	height: 80px;
	background: #fff;
	border: solid 1px #603813;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn02,
.btn02 span {
	position: relative;
}
.btn02.is_pdf span::after,
.btn02.is_arrow::after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.btn02.is_pdf span {
	display: inline-block;
	padding-left: 32px;
}
.btn02.is_pdf span::after {
	width: 23px;
	height: 26px;
	background-image: url("../img/cmn/icon_pdf.svg");
	left: 0;
}
.btn02.is_arrow::after {
	width: 19px;
	height: 19px;
	background-image: url("../img/cmn/btn01.svg");
	right: 24px;
}
.btn03 {
	width: 77px;
	height: 38px;
	background: #ecbe0e;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn03 span {
	display: inline-block;
	padding-right: 20px;
	position: relative;
}
.btn03 span::after {
	content: "";
	width: 19px;
	height: 19px;
	background-image: url("../img/cmn/btn01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
.btn02 {
	height: 64px;
}
}


/* list
-------------------------------------------------------- */


/* tbl
-------------------------------------------------------- */
.tbl01 tr:nth-of-type(odd) {
	background: #f8f5f3;
}
.tbl01 th,
.tbl01 td {
	padding: 16px 24px;
}
.tbl01 th {
	color: #42210b;
	width: 170px;
	font-weight: bold;
}
.tbl02 {
	border-top: solid 1px #dacebf;
}
.tbl02 th,
.tbl02 td {
	border-bottom: solid 1px #dacebf;
	padding: 8px;
}
.tbl02 th {
	font-size: 1.8rem;
	font-weight: bold;
	width: 250px;
	background: #e8e2dd;
	padding-left: 20px;
}
.tbl03 th,
.tbl03 td {
	border: solid 1px #dacebf;
	padding: 8px;
}
.tbl03 th {
	font-size: 1.8rem;
	font-weight: bold;
	width: 250px;
	background: #e8e2dd;
	padding-left: 20px;
}

@media screen and (max-width: 768px) {
.tbl01 th,
.tbl01 td {
	display: block;
}
.tbl01 th {
	width: auto;
	padding-bottom: 0;
}
.tbl01 td {
	padding-top: 4px;
}
.tbl02 th,
.tbl02 td {
	display: block;
}
.tbl02 th {
	width: 100%;
}
.tbl03 th {
	font-size: 1.4rem;
	padding: 8px;
}
}


/* animation
-------------------------------------------------------- */
.fade_in {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	transition: .3s;
}
.fade_in.is_active {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.is_firstView {
	opacity: 0;
	animation-name: firstView;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
@keyframes firstView {
0% {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}

100% {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
}
/* PC SP
-------------------------------------------------------- */
.is_sp { display: none; }
@media screen and (max-width: 768px) {
	.is_pc { display: none; }
	.is_sp { display: block; }
}




/* header
-------------------------------------------------------- */
.humb { display: none; }
header {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
header.is_front_page {
	width: 100%;
	padding-right: 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}
header.is_page,
header.is_scroll {
	background: #fff;
	border-bottom: solid 1px #754c24;
	padding: 16px 30px 16px 16px;
	position: relative;
}
header.is_page::after,
header.is_scroll::after {
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
}
header.is_scroll {
	position: fixed;
	z-index: 10000;
	top: -89px;
	transition: .5s;
}
header.is_scroll.is-fixed {
	top: 0;
}
header .logo {
	z-index: 10;
}
header.is_front_page .logo {
	max-width: 386px;
	width: 19%;
	background: #603813;
	padding: 24px;
}
header.is_page .logo,
header.is_scroll .logo {
	max-width: 210px;
	width: 100%;
}
.gnav {
	z-index: 10;
}
.gnav a,
.gnav span {
	display: inline-block;
	position: relative;
}
.gnav a::after,
.gnav span::after {
	content: "";
	width: 100%;
	height: 2px;
	background: #ecbe0e;
	position: absolute;
	bottom: -4px;
	left: 0;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
.gnav a:hover,
.gnav span:hover {
	opacity: 1;
}
.gnav a.is_active::after,
.gnav a:not(.is_active):hover::after {
	transform: scale(1, 1);
}
.gnav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
header.is_front_page .gnav {
	color: #fff;
}
header.is_page .gnav,
header.is_scroll .gnav {
	color: #603813;
}
.gnav ul li:not(:last-child) {
	margin-right: 24px;
}

@media screen and (max-width: 1200px) {
.gnav,
.gnav ul { display: none; }
header.is_front_page .logo {
	max-width: 288px;
	width: 100%;
}
.humb {
	width: 60px;
	height: 60px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	z-index: 10;
}
header.is_front_page .humb {
	position: absolute;
	top: 20px;
	right: 20px;
}
header.is_page .humb,
header.is_scroll .humb {
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.humb .icon {
	width: 34px;
	height: 20px;
	position: relative;
}
.humb span {
	width: 100%;
	height: 1px;
	display: block;
	position: absolute;
	transition: .5s;
}
header.is_front_page .humb span {
	background: #fff;
}
header.is_page .humb span,
header.is_scroll .humb span {
	background: #603813;
}
.humb span:first-child {
	top: 0;
}
.humb span:nth-child(2) {
	top: 50%;
}
.humb span:nth-child(3) {
	bottom: 0;
}
.is_open { overflow: hidden; }
.is_open .humb .icon span:first-child {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.is_open .humb .icon span:nth-child(2) {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.is_open .humb .icon span:nth-child(3) {
	top: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.gnav a::after {
	content: none;
}
.is_open .gnav {
	font-size: 2rem;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	overflow: auto;
	padding: 150px 4% 100px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
}
.is_open header .gnav {
	color: #fff;
	background: #603813;
}
header.is_page .gnav,
header.is_scroll .gnav {
	color: #fff;
}
.is_open .gnav ul {
	text-align: center;
	display: block;
}
.is_open .gnav ul li:not(:last-child) {
	margin-bottom: 24px;
}
}
@media screen and (max-width: 480px) {
header.is_front_page .logo {
	width: 75%;
	padding: 16px 24px;
}
header.is_front_page .humb {
	top: 4px;
	right: 10px;
}
header.is_page .logo,
header.is_scroll .logo {
	max-width: 160px;
	width: 100%;
}
header.is_scroll {
	top: -76px;
}
}

/* footer
-------------------------------------------------------- */
.ft_wrap {
	color: #fff;
	background: #603813;
	padding: 60px 6% 90px;
}
.ft_wrap .flex {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.ft_l,
.ft_r {
	width: 50%;
}
.ft_l {
	border-right: solid 1px #6b421c;
	padding-right: 4%;
}
.ft_l .logo_wrap {
	border-bottom: solid 1px #6b421c;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.ft_l .logo {
	max-width: 300px;
	width: 100%;
}
.ft_l .copy {
	font-size: 1.8rem;
	margin-top: 16px;
}
.ft_info .label {
	font-size: 1.8rem;
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
}
.ft_info .label::before {
	content: "";
	width: 12px;
	height: 12px;
	background: #fff;
	display: block;
	position: absolute;
	top: calc(50% - 6px);
	left: 0;
}
.ft_info .name_wrap .is_main {
	font-size: 2.4rem;
	display: inline-block;
	padding-right: 32px;
	position: relative;
}
.ft_info .name_wrap .is_main .icon {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.ft_info .name_wrap .is_main .icon::before {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/cmn/icon_facebook.svg") no-repeat;
	background-size: contain;
	display: block;
}
.ft_info .btn_wrap {
	margin-top: 24px;
}
.ft_r {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 4%;
}
.ft_nav {
	max-width: 600px;
	width: 100%;
}
.ft_nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.ft_nav ul li {
	width: 50%;
	margin: 6px 0;
}
.ft_nav ul li a,
.ft_nav ul li span {
	display: inline-block;
	padding-left: 24px;
	position: relative;
}
.ft_nav ul li a::before,
.ft_nav ul li span::before {
	content: "";
	width: 7px;
	height: 7px;
	background-image: url(../img/cmn/arrow01.svg);
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ft_nav ul li:not(:last-child) {
}
#copyright {
	color: #754c24;
	font-size: 1.4rem;
	padding: 10px 0;
}
.ft_bnr {
	padding: 24px 0;
}
.ft_bnr ul li {
	width: 32%;
	margin-top: 2%;
	margin-right: 2%;
}
@media screen and (max-width: 1024px) {
.ft_nav {
	font-size: 1.4rem;
}
.ft_nav ul li a,
.ft_nav ul li span {
	padding-left: 16px;
}
}
@media screen and (min-width: 769px) {
.ft_bnr ul li:nth-child(-n + 3) {
	margin-top: 0;
}
.ft_bnr ul li:nth-child(3n),
.ft_bnr ul li:last-child {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.ft_bnr ul li {
	width: 49%;
}
.ft_bnr ul li:nth-child(-n + 2) {
	margin-top: 0;
}
.ft_bnr ul li:nth-child(2n),
.ft_bnr ul li:last-child {
	margin-right: 0;
}

.ft_wrap {
	padding: 24px 0 40px;
}
.ft_wrap .flex {
	display: block;
}
.ft_l .logo_wrap {
	margin-bottom: 16px;
	padding-bottom: 16px;
}
.ft_l,
.ft_r {
	width: 100%;
}
.ft_l {
	border-right: none;
	padding-right: 0;
}
.ft_l .copy {
	margin-top: 16px;
}
.ft_r {
	margin-bottom: 24px;
	padding-left: 0;
}
.ft_info .btn_wrap {
	margin-top: 16px;
}
#copyright {
	font-size: 1.2rem;
	padding: 10px 4px;
}
}


/* mainv
-------------------------------------------------------- */
.mainv {
	background-image: url("../img/index/mainv_bg.jpg");
	background-position: right center;
	background-size: cover;
	padding: 130px 0 40px;
	position: relative;
}
.mainv::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(96, 56, 19, 0.35);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.mainv_txt,
.mainv_info {
	position: relative;
	z-index: 1;
}
.mainv_txt {
	max-width: 260px;
	width: 90%;
	margin: 0 auto 24px;
}
.mainv_info ul li {
	width: 46%;
}
.fix_btn {
	position: fixed;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 4;
}
.fix_btn a {
	color: #603813;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	background: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 16px 8px;
}
.fix_btn a::before,
.fix_btn a::after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}
.fix_btn a::before {
	width: 23px;
	height: 24px;
	background-image: url("../img/cmn/icon_calender.svg");
	margin-bottom: 12px;
}
.fix_btn a::after {
	width: 19px;
	height: 19px;
	background-image: url("../img/cmn/btn01.svg");
	margin-top: 10px;
}
@media screen and (max-width: 768px) {
.mainv {
	background-image: none;
	padding: 0;
}
.mainv .inner,
.mainv_info ul li {
	width: 100%;
}
.mainv_txt_wrap {
	background-image: url("../img/index/mainv_bg_sp.jpg");
	background-position: right bottom;
	background-size: cover;
	padding: 130px 0 24px;
}
.mainv_txt {
	width: 30%;
	margin: auto;
}
.mainv_info {
	background: #603813;
	padding: 10px 20%;
}
.mainv_info ul li:not(:last-child) {
	margin-bottom: 16px;
}
}
@media screen and (max-width: 480px) {
.mainv_txt_wrap {
	padding: 110px 0 24px;
}
}


/* index_news
-------------------------------------------------------- */
.news_list li {
	border-bottom: dotted 1px #dacebf;
}
.news_list li > a,
.news_list li > span {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px 0;
}
.news_list li > a .title {
	text-decoration: underline;
}
.news_list li > a:hover .title {
	text-decoration: none;
}
.date {
	color: #876239;
	margin-right: 30px;
}
.index_news .btn_wrap {
	margin-top: 24px;
}
@media screen and (max-width: 768px) {
.news_list .date {
	margin-right: 0;
	margin-bottom: 4px;
}
.news_list li a,
.news_list li span {
	display: block;
	padding: 16px 0;
}
.index_news .btn_wrap {
	margin-top: 16px;
}
}


/* index_bnr
-------------------------------------------------------- */
.index_bnr {
	padding: 40px 0;
}
.index_bnr ul li {
	width: 48%;
}
.index_bnr ul li img {
	width: 100%;
}
@media screen and (max-width: 768px) {
.index_bnr {
	padding: 24px 0;
}
.index_bnr ul li {
	width: 100%;
	margin-bottom: 16px;
}.index_bnr ul li:last-child {
	margin-bottom: 0;
}
}


/* index_outline
-------------------------------------------------------- */
.index_outline .title01 {
	margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
}


/* index_movie
-------------------------------------------------------- */
.index_movie {
	padding: 40px 0;
}
.index_movie ul {
	max-width: 540px;
	width: 100%;
	margin: auto;
}
.index_movie ul li {
	width: 100%;
}
.index_movie .iframe {
	padding-top: 56%;
}
@media screen and (max-width: 768px) {
.index_movie {
	padding: 24px 0;
}
.index_movie ul li {
}
}
/* sponsor
-------------------------------------------------------- */
.sponsor_sec .title01 {
	margin-bottom: 24px;
}
.sponsor_sec:not(:last-child) .btn_wrap {
	margin-top: 40px;
}
.sponsor_sec .name_wrap {
	margin-bottom: 16px;
}
.sponsor_sec:last-child .btn_wrap {
	margin-top: 24px;
}

@media screen and (max-width: 768px) {
.sponsor_sec .title01 {
	margin-bottom: 16px;
}
.sponsor_sec:not(:last-child) .btn_wrap {
	margin-top: 24px;
}
.sponsor_sec .name_wrap {
	margin-bottom: 10px;
}
.sponsor_sec:last-child .btn_wrap {
	margin-top: 16px;
}
}
/* program
-------------------------------------------------------- */
.program01 {
	padding: 40px 0;
}
.program02 .program_wrap:not(:last-child) {
	margin-bottom: 70px;
}
.program02 .head {
	margin-bottom: 16px;
}
.program02 .head .title01 .jp {
	margin-bottom: 4px;
}
.program02 .head .title01 .jp span {
	display: inline-block;
	margin-left: 16px;
}
.program_list li {
	border: solid 1px #c2ad94;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.program_list li:not(:last-child) {
	margin-bottom: 16px;
}
.program_list .program_time,
.program_list .program_name {
	padding: 20px;
}
.program_list .program_time {
	color: #fff;
	font-size: 2rem;
	width: 217px;
	background: #603813;
	line-height: 1.4;
}
.program_list .program_body {
	width: calc(100% - 217px);
}
.program_list .program_name {
	padding-right: 110px;
	position: relative;
}
.program_list .program_name .btn03 {
	font-size: 1.6rem;
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.program_list .program_info {
	border-top: solid 1px #c2ad94;
	padding: 8px 20px;
}
@media screen and (max-width: 768px) {
.program02 .program_wrap:not(:last-child) {
	margin-bottom: 40px;
}
.program02 .head .title01 {
	line-height: 1.4;
}
.program02 .head .title01 .jp span {
	display:block;
	margin-left: 0;
}
.program_list li {
	display: block;
}
.program_list .program_time,
.program_list .program_body {
	width: 100%;
}
}
/* access
-------------------------------------------------------- */
.venue .image {
	margin-top: 32px;
}
.venue .image .cover {
	height: 228px;
	background-image: url("../img/access/venue.jpg");
}
.venue .name_wrap {
	margin-top: 40px;
	margin-bottom: 16px;
}
.venue .name_wrap .name {
	font-size: 2.4rem;
	margin-right: 16px;
}
.venue .address {
	margin-bottom: 8px;
}
.access_list {
	margin-top: 32px;
}
.access .map {
	margin-top: 40px;
}
.access .map .iframe {
	padding-top: 32%;
}
.access_list > div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.access_list > div:not(:last-of-type) {
	margin-bottom: 16px;
}
.access_list > div dt {
	font-weight: bold;
	width: 60px;
}
.access_list > div dd {
	width: calc(100% - 60px);
}
.stay p {
	margin-top: 32px;
}
.stay .btn_wrap {
	margin-top: 40px;
}
@media screen and (max-width: 768px) {
.venue .image {
	margin-top: 16px;
}
.venue .name_wrap {
	display: block;
	margin-top: 24px;
}
.access_list {
	margin-top: 16px;
}
.access .map {
	margin-top: 24px;
}
.access .map .iframe {
	padding-top: 56%;
}
.access_list > div {
	display: block;
}
.access_list > div dt,
.access_list > div dd {
	width: 100%;
}
	.access_list > div dt {
		margin-bottom: 4px;
	}
.stay p {
	margin-top: 16px;
}
.stay .btn_wrap {
	margin-top: 24px;
}
}

/* message
-------------------------------------------------------- */
.message_list li .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.message_list li p:not(:last-of-type) {
	margin-bottom: 40px;
}
.message_list .image_wrap {
	width: 36%;
}
.message_list .name {
	color: #42210b;
	font-size: 2.4rem;
	line-height: 1.4;
	margin: 24px 0 8px;
}
.message_list .job {
	padding-bottom: 40px;
}
.message_list .txt {
	width: 60%;
}
@media screen and (max-width: 768px) {
.message_list li .inner {
	display: block;
}
.message_list li p:not(:last-of-type) {
	margin-bottom: 24px;
}
.message_list .image_wrap,
.message_list .txt {
	width: 100%;
}
.message_list .name {
	margin: 16px 0 8px;
}
}


/* news
-------------------------------------------------------- */
.wp-pagenavi {
	color: #3a3232;
	font-size: 2.5rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 40px;
}
.wp-pagenavi a {
	text-decoration: underline;
}
.wp-pagenavi a:hover {
	text-decoration: none;
}
.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	width: 19px;
	height: 19px;
	border: none;
	display: block;
	overflow: hidden;
	text-align: center;
	text-indent: -999999999999px;
	position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	content: "";
	background-image: url(../img/cmn/btn01.svg);
	width: 19px;
	height: 19px;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.wp-pagenavi .previouspostslink::before {
	-webkit-transform: translate(-50%, -50%) scale(-1, 1);
	transform: translate(-50%, -50%) scale(-1, 1);
}
.article {
	margin-bottom: 24px;
}
.article_head {
	border-bottom: solid 1px #dacebf;
	padding-bottom: 16px;
}
.article_head .date {
	font-size: 2.4rem;
	margin-bottom: 8px;
}
.article_body {
	border-bottom: solid 1px #dacebf;
	padding: 56px 40px;
}
.single_pager {
	position: relative;
}
.single_pager .btn01.list,
.single_pager .btn01.prev {
	padding-right: 0;
}
.single_pager .btn01.prev {
	padding-left: 24px;
}
.single_pager .btn01.list::after {
	content: none;
}
.single_pager .btn01.prev::after {
	right: inherit;
	left: 0;
}
.single_pager .btn01.prev,
.single_pager .btn01.next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.single_pager .btn01.prev::after {
	-webkit-transform: translate(-50%, -50%) scale(-1, 1);
	transform: translate(-50%, -50%) scale(-1, 1);
}

.single_pager .btn01.prev {
	left: 0;
}
.single_pager .btn01.next {
	right: 0;
}
@media screen and (max-width: 768px) {
.wp-pagenavi {
	font-size: 2.2rem;
	margin-top: 24px;
}
.article_head .date {
	font-size: 2rem;
}
.article_body {
	border-bottom: solid 1px #dacebf;
	padding: 24px 0;
}
.single_pager {
	font-size: 1.4rem;
}
.single_pager .btn01.prev::after {
	-webkit-transform: translateY(-50%) scale(-1, 1);
	transform: translateY(-50%) scale(-1, 1);
}
}



::-webkit-input-placeholder {
	color:#9a9a9a;
}
:-ms-input-placeholder {
	color:#9a9a9a;
}
::placeholder{
	color:#9a9a9a;
}
.form_txt {
	margin-bottom: 40px;
}
.form_txt .title01 {
	margin-bottom: 16px;
}
#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro select,
#mailformpro textarea {
	color: #3a3232;
	font-size: 16px;
	width: 100% !important;
	background: #fff;
	border: solid 1px #c2ad94;;
	border-radius: 0;
	box-shadow: none;
	padding: 10px 18px;
	box-sizing: border-box;
}
#mailformpro textarea {
	height: 250px !important;
}
#mailformpro .required,
#mailformpro .required .icon {
	display: inline-block;
}
#mailformpro .required {
	padding-left: 40px;
	position: relative;
}
#mailformpro .required .icon {
	color: #fff;
	font-size: 1.2rem;
	background: #bc272d;
	line-height: 1;
	padding: 4px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#mailformpro .btn_wrap {
	margin-top: 40px;
}
#mailformpro .btn03 {
	max-width: 170px;
	width: 100%;
	height: 52px;
	border: none;
	border-radius: 0;
	text-shadow: none;
	position: relative;
}
#mailformpro .btn03:hover {
	background: #ecbe0e;
	box-shadow: none;
}
#mailformpro .btn03 span {
	position: static;
}
.mfp_element_all {
	max-width: 100%;
}
@media screen and (max-width: 768px) {
.form_txt {
	margin-bottom: 24px;
}
#mailformpro .btn_wrap {
	margin-top: 24px;
}
}
.sponsor_end_wrap .left {
	width: 60%;
}
.sponsor_end_wrap .right {
	width: 35%;
}
.kouen_list li {
	width: 48%;
	margin-top: 10px;
}
@media screen and (min-width: 769px) {
.kouen_list li:nth-child(1) {
	margin-top: 0;
}
}
@media screen and (max-width: 768px) {
	.sponsor_end_wrap {
		display: block;
	}
.sponsor_end_wrap .left ,
.sponsor_end_wrap .right {
	width: 100%;
}
	.sponsor_end_wrap .right {
	}
	.kouen_list li {
		width: 100%;
	}
	.kouen_list li:nth-child(1) {
		margin-top: 0;
	}
}
.tabs {
	margin: 0 0 24px;
}
.tabs span,
.tabs a,
.tabs label {
	width: 50%;
	border: solid 1px #754c24;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
}
.tabs span {
	color: #fff;
	background: #754c24;
}
.tabs label {
	cursor: pointer;
}
.tabs label:hover {
	color: #fff;
	background: #754c24;
}
#tab1:checked ~ .tabs label:nth-child(1),
#tab2:checked ~ .tabs label:nth-child(2) {
	color: #fff;
	background: #754c24;
}
.panel {
	display: none;
}
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content {
	display: block;
}
@media screen and (max-width: 768px) {
	.tabs {
		font-size: 1.2rem;
	}	
.tabs span,
.tabs a,
.tabs label {
	padding: 16px 8px;
}
}
.num_list li {
	width: 30%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
		margin-top: 16px;
}
.num_list li .num {
	color: #fff;
	width: 32px;
	height: 32px;
	background: #603813;
	border-radius: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 16px 0 0;
}
.num_list li .txt {
	width: calc(100% - 48px);
}
.access_list.type02 > div dt {
	width: 180px;
}
.access_list.type02 > div dd {
	width: calc(100% - 180px);
}
@media screen and (min-width: 769px) {
	.num_list li:nth-child(-n + 3) {
		margin-top: 0;
	}
}
@media screen and (max-width: 768px) {
.num_list li {
	width: 49%;
}
	.num_list li:nth-child(-n + 2) {
		margin-top: 0;
	}
	.scroll_tbl {
		overflow-x: scroll;
	}
	.scroll_tbl table {
		white-space: nowrap;
	}
.access_list.type02 > div dt,
.access_list.type02 > div dd {
	width: 100%;
}
}
.num_title {
	font-size: 1.8rem;
	margin: 0 0 10px;
	padding-left: 40px;
	position: relative;
}
.num_title .num {
	color: #fff;
	font-size: 2rem;
	width: 30px;
	height: 30px;
	background: #815a42;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
}
.hybrid_list li:not(:last-child) {
	margin: 0 0 40px;
}
.hybrid_list figure {
	margin: 24px 0 0;
}
.index_nav {
	margin: 40px 0 0;
}
.index_nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.index_nav ul li {
	width: 32%;
}
.index_nav ul li a {
	color: #fff;
	display: block;
	text-align: center;
	padding: 16px 24px;
}
.index_nav ul li:nth-child(1) a {
	background: #c34d42;
}
.index_nav ul li:nth-child(2) a {
	background: #4b8a35;
}
.index_nav ul li:nth-child(3) a {
	background: #ec960e;
}
.important {
	color: #e14e78;
	background: #fff;
	border: solid 1px #e14e78;
	opacity: 1;
	text-align: center;
	margin: 16px 0 0;
	padding: 10px;
	position: relative;
	z-index: 10;
}
.important a {
	text-decoration: underline;
}
.important a:hover {
	opacity: 1;
	text-decoration: none;
}
@media screen and (max-width: 768px) {
.important {
	margin: 0;
}
	.index_nav ul {
		display: block;
	}
	.index_nav ul li {
		width: 100%;
	}
	.index_nav ul li:not(:last-child) {
		margin: 0 0 10px;
	}

}
.profile_img {
	margin: 24px 0 0;
}
.profile_name {
	margin: 10px 0 0;
}

.download_list {
	margin: 16px 0 0;
	position: relative;
	z-index: 5;
}
.download_list li {
	color: #fff;
	width: 48%;
}
.download_list li a {
	color: #fff;
	width: 100%;
	height: 100%;
	background: #c34d42;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 16px;
}
.download_list li a span {
	font-size: 1.3rem;
}
.download_list li:nth-child(2) a {

}
.download_list .note {
	font-size: 1.4rem;
}
.fix_download_btn {
	display: none;
}
@media screen and (max-width: 768px) {
	.download_list {
		margin: 0;
	}
	.download_list li {
		width: 100%;
		position: relative;
	}
	.download_list li:not(:last-child)::after {
		content: "";
		width: 100%;
		height: 1px;
		background: #fff;
		display: block;
		position: absolute;
		bottom: 0;
		left: 0;
		opacity: 0.5;
	}
	.fix_download_btn {
		background: #fff;
		border-top: solid 1px #754c24;
		display: block;
		position: -webkit-sticky;
		position: sticky;
		bottom: 0;
	}
	.fix_download_btn a {
		display: block;
		line-height: 1.5;
		padding: 16px 10px;
		position: relative;
	}
	.fix_download_btn a::after {
		content: "";
    width: 19px;
    height: 19px;
    background-image: url(../img/cmn/btn01.svg);
		background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
		top: 0;
		right: 0;
		
	}
	.fix_download_btn a span {
		font-size: 1.2rem;
	}
}