@charset "utf-8";
/* CSS Document */

/* !setClass
---------------------------------------------------------- */
@import url("./normalize.css");
@import url("./import.css");

/* !font
---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

/* !html
---------------------------------------------------------- */
html {
	font-size: 62.5%;
	height: 100%;
	letter-spacing: 0.1rem;
  opacity: 0;
}
html.load {
	transition: opacity 0.75s;
  opacity: 1;
}

/* !body
---------------------------------------------------------- */
body {
	color: #333;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
	font-size: 1.5rem;
	line-height: 2;
  width: 100%;
	height: 100%;
	min-width: 1300px;
  min-height: 100%;
	background: #fff;
}
body.fixed {
	position: fixed;
	width: 100%;
	left: 0;
}
@media screen and (max-width: 750px) {
body {
	font-size: 1.2rem;
	line-height: 1.8;
}
}

/* !wrap
---------------------------------------------------------- */
.wrap {
	width: 1200px;
	margin: auto;
	position: relative;
}
.wrap::after {
	content:"";
	height: 0;
	display: block;
	clear: both;
}
@media screen and (max-width: 750px) {
body {
	min-width: 100%;
}
.wrap {
  width: auto;
	height: 100%;
	padding: 0 15px;
}
}

/* !header
---------------------------------------------------------- */
header {
	width: 100%;
	height: 120px;
	background-color: rgba(255,255,255,0.95);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
}
header.fixed {
	-webkit-transition: background-color .25s ease-out;
	-moz-transition: background-color .25s ease-out;
	transition: background-color .25s ease-out;
}
header h1 {
	font-size: 2.8rem;
	font-weight: 400;
	text-align: center;
	position: absolute;
	top: 30px;
	left: 0;
}
header h1 a {
	display: block;
}
header h1 a::after {
	content:"";
	width: 112px;
	height: 12px;
	margin: 2px auto 0;
	background:url("../img/common/common_bg_logo.svg") no-repeat center center;
	background-size: 112px 12px;
	display: block;
}
@media screen and (max-width: 750px) {
header {
	height: 60px;
}
header h1 {
	font-size: 1.6rem;
	top: 10px;
	left: 15px;
}
}

/* !header__nav_sp
---------------------------------------------------------- */
.header__nav_sp {
	display: none;
}
@media screen and (max-width: 750px) {
.header__nav_sp {
  position: absolute;
  top: 0;
  right: 0;
	display: block;
}
.header__nav__menubtn {
	color: #fff;
	font-size: 1.0rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	width: 60px;
	padding: 40px 0 10px;
	background: #c37d55;
	position: relative;
	display: block;
	-webkit-transition: .25s ease-out;
	-moz-transition: .25s ease-out;
	transition: .25s ease-out;
}
.header__nav__menubtn:before {
  content:"";
  width: 100%;
  height: 100%;
  background: #fff;
	position: absolute;
	top: 0;
  left: 0;
	z-index: 1;
  display: block;
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  transform-origin: right;
  -webkit-transition: transform .50s ease;
  -webkit-transition: -webkit-transform .50s ease;
  -moz-transition: transform .50s ease;
  transition: transform .50s ease;
}
.header__nav__menubtn__txt {
  position: relative;
  z-index: 3;
}
.header__nav__menubtn__txt span {
	width: 26px;
	height: 1px;
	margin: 0 auto;
	background: #fff;
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	display: block;
  -webkit-transition: .25s ease-out;
  -moz-transition: .25s ease-out;
  transition: .25s ease-out;
}
.header__nav__menubtn__txt span:first-child {
	top: -26px;
}
.header__nav__menubtn__txt span:last-child {
	top: -14px;
}
.header__nav__menubtn:hover {
	color: #c37d55;
	cursor: pointer;
  -webkit-transition: .25s ease-out;
  -moz-transition: .25s ease-out;
  transition: .25s ease-out;
}
.header__nav__menubtn:hover .header__nav__menubtn__txt span{
	background: #c37d55;
	cursor: pointer;
  -webkit-transition: .25s ease-out;
  -moz-transition: .25s ease-out;
  transition: .25s ease-out;
}
.header__nav__menubtn:hover:before {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  transform-origin: left;
}
}

/* !nav
---------------------------------------------------------- */
nav {
	position: absolute;
	top: 45px;
	right: 0;
}
nav .nav__close {
	display: none;
}
nav ul li {
	float: left;
	margin: 0 60px 0 0;
	position: relative;
}
nav ul li::after {
	content:"";
	width: 1px;
	height: 100%;
	background: #333;
	position: absolute;
	top: 0;
	right: -30px;
	transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
}
nav ul li:last-child {
	margin: 0;
}
nav ul li:last-child::after {
	content: none;
}
nav ul li a::before {
	content: "";
	text-align: center;
	width: 0;
	height: 1px;
	margin: 0 auto;
	border-bottom: solid 2px #c37d55;
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	transition: width .3s ease;
	-webkit-transition: width .3s ease;
}
nav ul li a:hover::before,
nav ul li.current a::before {
	width: 100%;
}
@media screen and (max-width: 750px) {
nav {
	width: 0;
	height: 100vh;
	margin: 0;
	background: rgba(255,255,255,0.95);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100000;
	-webkit-transition: .3s ease-out;
  -moz-transition: .3s ease-out;
  transition: .3s ease-out;
	overflow-y: auto;
}
nav.is-active {
	width: 100%;
	-webkit-transition: .3s ease-out;
  -moz-transition: .3s ease-out;
  transition: .3s ease-out;
}
nav .nav__close {
	width: 25px;
	position: absolute;
	top: 15px;
	right: 15px;
	display: block;
}
nav .nav__close:hover {
	cursor: pointer;
}
nav ul {
	float: none;
	max-width: 800px;
	margin: auto;
	padding: 100px 0;
	opacity: 0;
}
nav ul.is-active {
	opacity: 1;
	-webkit-transition: opacity .3s;
  transition: opacity .3s;
}
nav ul li {
	text-align: center;
	float: none;
	margin: 0 0 25px;
}
nav ul li:last-child {
	margin: 0 0 25px;
}
nav ul li::after {
	content: none;
}
nav ul li a {
	color: #333;
	font-size: 1.6rem;
	font-weight: 400;
	position: relative;
	display: inline-block;
}
nav ul li span {
	font-size: 3.2rem;
	font-family: 'Bebas Neue', cursive;
	line-height: 1;
}
}

/* !main
---------------------------------------------------------- */
main{
	padding: 120px 0;
	overflow-x: auto;
	overflow: hidden;
}
@media screen and (max-width: 750px) {
main{
	padding: 60px 0;
}
}

/* !footer
---------------------------------------------------------- */
footer {
	padding: 30px 0 50px;
	background: #755441;
	position: relative;
}
footer h2 {
	color: #fff;
	font-size: 3.0rem;
	font-weight: 500;
	margin: 0 0 15px;
}
footer h2 span {
	font-size: 1.3rem;
	display: block;
}
footer .footer__info {
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.5;
}
footer .footer__info a {
	color: #fff;
}
footer .footer__gnav {
	position: absolute;
	top: 0;
	right: 0;
}
footer .footer__gnav ul {
	overflow: hidden;
}
footer .footer__gnav ul li {
	float: left;
	margin: 0 30px 0 0;
}
footer .footer__gnav ul li:last-child {
	margin: 0;
}
footer .footer__gnav ul li a {
	color: #fff;
}
.footer__copy {
	color: #fff;
	font-size: 1.2rem;
	text-align: right;
	position: relative;
	top: 30px;
}
@media screen and (max-width: 750px) {
footer {
	padding: 30px 0;
}
footer h2 {
	font-size: 2.0rem;
	text-align: center;
	margin: 0 0 15px;
}
footer h2 span {
	font-size: 1.1rem;
}
footer .footer__info {
	font-size: 1.2rem;
	max-width: 160px;
	margin: 0 auto 20px;
}
footer .footer__gnav {
	position: static;
	margin: 0 auto 30px;
	padding: 20px 0 0;
	border-top: solid 1px #b38063;
}
footer .footer__gnav ul li {
	text-align: center;
	float: none;
	margin: 0 0 5px;
}
footer .footer__gnav ul li:last-child {
	margin: 0;
}
.footer__copy {
	font-size: 1.0rem;
	text-align: center;
	position: static;
}
}

/* !foot-info
---------------------------------------------------------- */
.footinfo {
	margin: 0 0 -120px;
	padding: 60px 0;
	background: #f4f1eb;
}
.footinfo__inner {	
	margin-bottom: -40px;
}
.footinfo__box {
	width: calc(50% - 50px);
}
.footinfo__inner .footinfo__box:nth-child(even) {
	margin-left: 50px;
}
.footinfo__inner .footinfo__box:nth-child(odd) {
	margin-right: 50px;
}
.footinfo__title {
	font-size: 2.0rem;
	font-weight: 500;
	color: #755441;
	border-bottom: 1px solid #b9a79d;
	padding-bottom: 10px;
}
.footinfo__txtbox {
	font-size: 1.4rem;
	margin-bottom: 40px;
	margin-top: 15px;
}
.footinfo__txtbox img {
	margin: 20px 0;
	width: auto;
}
.footinfo__txtbox img.img__time {
	width: 335px;
}
.footinfo__subtitle {
	font-weight: 500;
	font-size: 1.4rem;
	margin-bottom: 10px;
}
.footinfo__subtitle::before {
	content: "";
	height: 10px;
	width: 10px;
	background-color: #c37d55;
	border-radius: 50%;
	display: inline-block;
	margin-right: 5px;
}
* + .footinfo__subtitle {
	margin-top: 25px;
}
.footinfo__subtitle + .footinfo__subtitle{
	margin-top: 10px;
}
.cal__explanation_txt {
	margin: 15px 0 0 65px;
	position: relative;
}
.cal__explanation_txt::before {
	content: "";
	width: 35px;
	height: 20px;
	background-color: #e5cec1;
	display: inline-block;
	margin-right: 10px;
	top: 50%;
	left: -45px;
	position: absolute;
	transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
.footinfo {
	padding: 40px 0 120px;
	margin: 0 0 -60px;
}
.footinfo__inner .footinfo__box:last-child .footinfo__txtbox {
	margin-bottom: 0;
}
.footinfo__box {
	width: 100%;
}
.footinfo__inner .footinfo__box:nth-child(odd) {
	margin-right: 0;
}
.footinfo__inner .footinfo__box:nth-child(even) {
	margin-left: 0;
}
.footinfo__title {
	font-size: 1.5rem;
	padding: 20px 0;
}
.acc__title {
	position: relative;
}
.acc__title::before,
.acc__title::after {
	content: "";
	background-color: #755441;
	position: absolute;
}
.acc__title::before {
	width: 2px;
	height: 20px;
	right: 30px;
	display: block;
	top: 50%;
	transform: translateY(-50%);
}
.acc__title::after {
	width: 20px;
	height: 2px;
	right: 21px;
	display: block;
	top: 50%;
	transform: translateY(-50%);
}
.acc__title.acc__open::before {
	display: none;
}
.acc__content {
	display: none;
}
}

/* !breadcrumb
---------------------------------------------------------- */
.breadcrumb {
	width: 1200px;
	margin: 0 auto 100px;
}
.breadcrumb ol {
	overflow: hidden;
}
.breadcrumb ol li {
	float: left;
	margin: 0 10px 0 0;
}
.breadcrumb ol li:last-child {
	margin: 0;
}
.breadcrumb ol li::after {
	content:">";
	margin: 0 0 0 10px;
}
.breadcrumb ol li:last-child::after {
	content: none;
}
.breadcrumb ol li {
	font-size: 1.3rem;
	float: left;
}
.breadcrumb ol li a {
	font-size: 1.3rem;
	-webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.breadcrumb ol li a {
	font-size: 1.3rem;
	-webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.breadcrumb ol li a {
	font-size: 1.3rem;
  transition: opacity 0.25s;
	-webkit-transition: opacity 0.25s;
}
.breadcrumb ol li a:hover {
  opacity: 0.4;
  transition: opacity 0.25s;
	-webkit-transition: opacity 0.25s;
}
@media screen and (max-width: 750px) {
.breadcrumb {
  display: none;
}
}

/* !pageheader
---------------------------------------------------------- */
.pageheader-simple,
.pageheader-page,
.pageheader-single {
	height: 250px;
	margin: 0 0 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.pageheader-archive {
	height: 500px;
	margin: 0 0 15px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.pageheader-simple h2,
.pageheader-page h2,
.pageheader-single h2,
.pageheader-archive h2 {
	font-size: 3.8rem;
	font-weight: 700;
	height: 1em;
	line-height: 1;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.pageheader-page h2 {
	color: #fff;
}
@media screen and (max-width: 750px) {
.pageheader-simple,
.pageheader-page,
.pageheader-single {
	height: 100px;
	margin: 0 0 30px;
}
.pageheader-simple h2,
.pageheader-page h2,
.pageheader-single h2 {
	position: static;
}
.pageheader-archive {
	height: auto;
	margin: 0 0 30px;
}
.pageheader-archive h2 {
	padding: 45px 0;
	position: static;
}
}

/* !form parts
---------------------------------------------------------- */
input[type="submit"],
input[type="button"] {
	padding: 10px;
  background: none;
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
}

/* !sns list
---------------------------------------------------------- */
.social__list {
	margin: 10px 0 0;
}
.social__list ul {
	overflow: hidden;
}
.social__list ul li {
	text-align: center;
	float: left;
	margin: 0 10px 0 0;
}
.social__list ul li:last-child {
	margin: 0;
}
.social__list ul li a {
	width: 30px;
	height: 30px;
	padding: 0 0 1px 2px;
	border: solid 1px #fff;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	display: block;
}
.social__list ul li a i {
	color: #fff;
}
@media screen and (max-width: 750px) {
.social__list {
	margin: 0 0 15px;
}
.social__list ul {
	display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.social__list ul li {
	float: none;
	margin: 0 8px;
}
.social__list ul li:last-child {
	margin: 0 8px;
}
.social__list ul li a i {
	font-size: 1.6rem;
}
}

/* !pagetop
---------------------------------------------------------- */
.pagetop {
	width: 60px;
	height: 76px;
	background: url("../img/common/common_img_pagetop.svg") no-repeat center center;
	background-size: 60px 76px;
	text-indent: -99999px;
	right: 50px;
}
.pagetop:hover {
	cursor: pointer;
	opacity: 0.4;
	-webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
@media screen and (max-width: 750px) {
.pagetop {
	width: 40px;
	height: 52px;
	background-size: 40px 52px;
	right: 20px;
}
}

