@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Itim&family=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Itim&family=Shippori+Mincho&display=swap');

/*============================
	html5 base style
============================*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html {
 color: #191919;
 width: 100%;
 height: 100%;
  z-index: -999; 
}

/* 新規追加要素をブロック要素化 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}



/* 行の高=フォントサイズ */
body {
    line-height:1;
  }


/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}
/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    outline: none;
	transition: .3s ease-in-out;
  }

img,svg,video {
    width: 100%;
    vertical-align: bottom;
}
/* 画像を縦に並べた時に余白0 */
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
  }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  
.clearfix:after {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
}

br {
    line-height: inherit;
}
input,select {
    vertical-align: middle;
}

input,select,button {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}
input:focus,select:focus,button:focus {
    outline: 0;
}
p{margin-bottom: 0}


/* 【共通】パーツ 
----------------------------------------------------------------*/
/* リンク */
a,
a * {
	-webkit-transition: opacity 0.7s ease;
	-moz-transition: opacity 0.7s ease;
	-o-transition: opacity 0.7s ease;
	transition: opacity  0.7s ease;
	text-decoration: none;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	font-family: inherit;
	-webkit-backface-visibility: hidden; /* 追加 */
	backface-visibility: hidden; /* 追加 */
	/*transition: .3s ease-in-out;*/
}
a:hover, a:active {
  color: inherit;
	text-decoration:none;
}
img {
	max-width: 100%;
	height: auto;
}

iframe {width: 100%; border: none;}
/*基本設定
----------------------------------------------------------------*/

body {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height:1.5;
	background: url(../images/bg.png) repeat center top / cover;
    width: 100%;
    height: 100%;
    z-index: -999; 
	color: #191919;
	font-family: "Shippori Mincho", serif;
	margin: auto;
	overflow-x: hidden;
	position: relative;
	min-width: auto;
	opacity: 0;
	animation: bodyAppear .3s .3s forwards; 
}
@media screen and (max-width: 1024px) {
	body {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	body {
		font-size: 14px;
	}
}
@keyframes bodyAppear {
	0% {
			opacity: 0;
	}

	100% {
			opacity: 1;
	}
}




/*  配置  */
.flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
}
.flex-nml {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
}
.flex-btw {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
}
.flex-cnt {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.flex-end {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	justify-content:flex-end;
}
.flex-start {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:start;
	-ms-flex-pack:start;
	justify-content:flex-start;
}
.jc-between {
    justify-content: space-between;
}

.jc-around {
    justify-content: space-around;
}

.jc-center {
    justify-content: center;
}

.jc-end {
    justify-content: flex-end;
}
.jc-space{
    justify-content: space-evenly;
}

.align-items {
    align-items: center;
}

.row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.items-center {
	-webkit-align-items: center;
	align-items: center;
}
.items-start {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.items-end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}


/*----------------------------
  layout
-----------------------------*/
.tategaki {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
}

.sp {
display: none;
}
.pc {
display: block;
}
@media screen and (max-width: 1024px) {
	.sp {
			display: block;
	}
	.pc {
			display: none;
	}
}

/* margin */
.mb20{
    margin-bottom: 20px;
}
.mb30{
margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
	}
.mb50 {
margin-bottom: 50px;
}
.mb60 {
margin-bottom: 60px;
}
.mb70 {
margin-bottom: 70px;
}
.mb80 {
margin-bottom: 80px;
}
.mb100 {
margin-bottom: 100px;
}
.mb130{
	margin-bottom: 130px;
}
@media screen and (max-width: 1024px) {
	.mb20{
			margin-bottom: 15px;
	}
	.mb30 {
			margin-bottom: 20px;
	}
	.mb40 {
		margin-bottom: 30px;
	}
	.mb50 {
			margin-bottom: 35px;
	}
	.mb60 {
			margin-bottom: 45px;
	}
	.mb70 {
			margin-bottom: 50px;
	}
	.mb80 {
			margin-bottom: 60px;
	}
	.mb100 {
			margin-bottom: 70px;
	}
	.mb130{
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 768px) {
	.mb20{
			margin-bottom: 10px;
	}
	.mb30 {
			margin-bottom: 20px;
	}
	.mb40 {
		margin-bottom: 25px;
	}
	.mb50 {
			margin-bottom: 30px;
	}
	.mb60 {
			margin-bottom: 30px;
	}
	.mb70 {
			margin-bottom: 40px;
	}
	.mb80 {
			margin-bottom: 40px;
	}
	.mb100 {
			margin-bottom: 50px;
	}
	.mb130{
		margin-bottom: 70px;
	}
}


/*============================
    setting
============================*/

.font-en {
  font-weight:400;
  font-family: "Cormorant Infant", serif;
}


/* ------ inner ------ */
.inner__large{
	max-width: 1720px;
	width: 96%;
	margin-inline: auto;
  padding-top: 100px;
  padding-bottom:100px;
}
@media screen and (max-width: 1024px) {
	.inner__large{
			width: 94%;
	}
}
	@media screen and (max-width: 768px) {
	.inner__large{
			width: 92%;
      padding-top: 50px;
	}
}
	@media screen and (max-width: 414px) {
	.inner__large{
			width: 92%;
      padding-top: 20px;
	}
}
.inner{
	  max-width: 1080px;
  padding-top: 100px;
  padding-bottom:100px;
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.inner {
    padding-top: 80px;
    padding-bottom:80px;
    width: 94%;
  }
}
	@media screen and (max-width: 768px) {
	 .inner {
    padding-top: 60px;
    padding-bottom:60px;
    width: 92%;
  }
}



/* -------color setting------- */
.color01{
  color:#90c132;
}
.color02{
  color:#f3bc18;
}

.wh{
  color: #fff;
}
.bg{
  background-color:#fcf7ef;
}
.bg02{
  background-color:#f1f1f1;
}
.bg_pattern{
  background:url(../images/bg_pattern.png) repeat-y center center / cover;
  position:relative;
}
.bg_pattern::before {
    content: "";
    width: 100%;
    height: 105%;
    background: url(../images/bg_pattern.png) repeat-y center top / cover;
    position: absolute;
    top: 5%;
    left: 0;
    z-index: -1;
}
.link {
	text-decoration-line: underline;
}
.lh{
  line-height: 2;
}
.ta-c{
	text-align: center;
}
.ta-l{
	text-align: left;
}
.text_center{
	text-align: center;
}
.ta-r{
	text-align: right;
}
.f-20{
	font-size: 20px;
	font-weight: 500;
}
.f-18{
	font-size: 18px;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
.ta-c{
	text-align: left;
}
	.f-20{
		font-size: 16px;
	}
	.f-18{
		font-size: 15px;
	}
}

.b_shadow {
    box-shadow: 0px 3px 12px rgba(128, 73, 11, 0.1);
}
@media screen and (max-width: 414px) {
  .ta-c{
	text-align: left;
}
}

/*----------------------------
  position
-----------------------------*/
.ps-r {
    position: relative;
}
.ps-a {
    position: absolute;
}

/*----------------------------
  list
-----------------------------*/
.list-style {
	padding-left: 1em;
  position: relative;
}
.list-style::before{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50vh;
	background-color: #f3bc18;
	position: absolute;
	top: 6px;
	left: 0.2em;
}



/*============================
	index 共通
============================*/
.header01{
  text-align: center;
	position: relative;
}
.title_cmn{
	font-size: 30px;
	letter-spacing: 0;
    text-align: center;
  	letter-spacing:.2rem;
	font-weight:500;
	font-family: "Cormorant Infant", serif;
	
}
.title_cmn::before{
	content: "";
	position: absolute;
	background: url(../images/bg_header01.png) no-repeat center center / contain;
	width:100px;
	height:100px;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -5;
}

@media screen and (max-width: 1024px) {
  .title_cmn{
	font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .title_cmn{
	font-size: 20px;
  }
}
@media screen and (max-width: 414px) {
  .title_cmn{
	font-size: 20px;
  }
}


.title-01 {
  margin-bottom:24px;
  padding: 0 0 10px 0;
  font-size: 18px;
  text-align: left;
  border-bottom: 1px solid #f8f3ef;
  line-height: 1.5;
  position: relative;
  font-weight: 600;
}
.title-02 {
  margin-bottom:24px;
  padding: 0 0 10px 0;
  text-align: left;
  border-bottom: 1px solid #fff;
  position: relative;
  font-weight: 600;
}
.title-01::after {
  position: absolute;content: " ";
  border-bottom: solid 3px #bda791;
  bottom: -2px;
  width: 10%;
  display: block;
  left: 0;
}
.title-02::after {
  position: absolute;content: " ";
  border-bottom: solid 3px #a08674;
  bottom: -2px;
  width: 15%;
  display: block;
  left: 0;
}
@media screen and (max-width:1024px) {
  .title-01 {
    font-size: 22px;
    margin-bottom:20px;
     margin-top:5px;
  }
}

@media screen and (max-width:768px) {
.title-01{
    font-size: 16px;
    padding-bottom:5px ;
    margin-bottom: 20px;
  margin-top:5px;
  }
.title-01::after {
  position: absolute;content: " ";
  border-bottom: solid 3px #bda791;
  bottom: -2px;
  width: 15%;
  display: block;
  left: 0;
}
}
@media screen and (max-width:414px) {
.title-01{
    font-size: 14px;
  }
}


.section__title .font-jp{
  font-size:40px;
  margin-bottom:10px;    
  font-weight: 400;
}
.section__title .font-en{
  font-size:16px;
  color:#917518;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .section__title .font-jp{
    font-size:32px;
  }
}
@media screen and (max-width: 768px) {
  .section__title .font-jp{
    font-size:24px;
  }
}



/* ------  btn ------ */

.btn_cmn {
	max-width: 250px;
	width: 100%;
	height: 50px;
	position: relative;
  color:#bda791;
  font-weight:600;
  z-index: 2;
}
.btn_cmn a {
	display: block;
    cursor: pointer;
	line-height: 50px;
	transition: .3s ease-out;
	position: relative;
}
.btn_arw{
	position: absolute;
	max-width: 70px;
	top:50%;
	left:40%;
	transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
	transform: translateY(-50%);
    transition: .3s ease-out;
}
.btn_cmn a:hover{
	display: block;
    cursor: pointer;
	line-height: 50px;
	transition: .3s ease-out;
	position: relative;
}
.btn_cmn:hover .btn_arw{
	left: 45%;
}

.btn_cmn_wh {
	max-width: 250px;
	width: 100%;
	height: 50px;
	position: relative;
  color:#fff;
  font-weight:600;
}
.btn_cmn_wh a {
	display: block;
    cursor: pointer;
	line-height: 50px;
	transition: .3s ease-out;
	position: relative;
}
.btn_arw_wh{
	position: absolute;
	max-width: 70px;
	top:50%;
	left:40%;
	transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
	transform: translateY(-50%);
    transition: .3s ease-out;
}
.btn_cmn_wh a:hover{
	display: block;
    cursor: pointer;
	line-height: 50px;
	transition: .3s ease-out;
	position: relative;
}
.btn_cmn_wh:hover .btn_arw_wh{
	left: 45%;
}

.btn_cmn_ga {
	max-width: 250px;
	width: 100%;
	height: 50px;
	position: relative;
  color:#fff;
  background: #bda791;
  font-weight:600;
}
.btn_cmn_ga a {
	display: block;
    cursor: pointer;
	line-height: 50px;
	transition: .3s ease-out;
	position: relative;
  padding-left: 50px;
}
.btn_arw_ga{
	position: absolute;
	max-width: 70px;
	top:50%;
	left:60%;
	transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
	transform: translateY(-50%);
    transition: .3s ease-out;
}
.btn_cmn_ga a:hover{
	display: block;
    cursor: pointer;
	line-height: 50px;
	transition: .3s ease-out;
	position: relative;
}
.btn_cmn_ga:hover .btn_arw_ga{
	left: 65%;
}

/*下層ボタン
.btn__cmn {
	display:block;
	margin: 0 auto;
 	max-width: 350px;
	width: 100%;
	height: 50px;
	position: relative;
	border: 1px solid #643b14;
  text-align: center;
  color:#643b14;
  font-weight:600;
}
.btn__cmn a {
	max-width: 350px;
    cursor: pointer;
	line-height: 50px;
	text-align: center;
	transition: .3s ease-out;
	position: relative;
}
.btn__cmn a:hover{
	background: #643b14;
 	color:#fff;
	display: block;
    cursor: pointer;
	line-height: 50px;
	text-align: center;
}
.btn__cmn:hover .btn_arw{
	right: 5%;
}*/  
