@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
/*============================
	html5 base style
============================*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html {
	color: #4f2908;
 background: #f7f3e8;
  overflow-x: hidden;
 font-family: "Noto Serif JP", serif;
}

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



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

  }


/* 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;
		font-size: 16px;
}
.flex {
        display: flex;
        display: -webkit-flex;
        display: -ms-flex;
    }
/* 【共通】パーツ 
----------------------------------------------------------------*/
/* リンク */
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;
}


/*基本設定
----------------------------------------------------------------*/
body {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .05em;
	line-height:1.5;
background: #f7f3e8;
	color: #5a4a42;
 font-family: "Noto Serif JP", serif !important;
	margin: auto;
	overflow-x: hidden;
  overflow-x: clip;
	position: relative;
	min-width: auto;
	opacity: 0;
	animation: bodyAppear .3s .3s forwards;
} 
@media screen and (min-width: 1024px) {
	body {
		font-size: 18px;
	}
}
@keyframes bodyAppear {
	0% {
			opacity: 0;
	}

	100% {
			opacity: 1;
	}
}


iframe {
    /* height: 250px; */
    width: 100%;
}
@media screen and (min-width: 768px) {
  p{margin-bottom: 0;
		font-size: 18px;
}
iframe {
 border: none; 

    width: 100%;
}
}

/*  配置  */
.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:end;
}
.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;
}
.jc-start {
  justify-content: flex-start;
}
.align-items {
    align-items: center;
}
.align-base {
  align-items: baseline;
}
.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;
  text-orientation: upright;
}
.sp {
display: block;
}
.pc {
display: none;
}
@media screen and (min-width: 768px) {
	.sp {
			display: none;
	}
	.pc {
			display: block;
	}
}

/* margin */
	.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;
	}
.pa50{
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
	.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;
	}
.pa50{
  padding-top: 35px;
}
}
@media screen and (min-width: 1024px) {
.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;
}
.pa50{
  padding-top: 50px;
}
}


/*============================
    setting
============================*/
.font-en {
        font-family: "Montserrat", sans-serif;
  font-weight:300;
 
}
.font-ja {
  /* font-family: "游ゴシック", serif; */
  font-weight:500;

}

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

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

.wh{
  color: #fff;
}
.bg{
  background-color:#fcf7ef;
}
.link {
	text-decoration-line: underline;
}
.lh{
  line-height: 2;
}
.lh_3{
  line-height: 3;
}
.ta-c{
	text-align: left;
}
.ta-l{
	text-align: left;
}
.text_center{
	text-align: center;
}
.ta-r{
	text-align: right;
}
.f-20{
	font-size: 16px;
	font-weight: 500;
}
.f-18{
	font-size: 15px;
	font-weight: 500;
}
@media screen and (min-width: 768px) {
.ta-c{
	text-align: center;
}
.f-20{
	font-size: 20px;
	font-weight: 500;
}
.f-18{
	font-size: 18px;
	font-weight: 500;
}
}

.b_shadow {
    box-shadow: 0px 3px 12px rgba(128, 73, 11, 0.1);
}

/*----------------------------
  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 共通
============================*/
.title_cmn{
  font-size: 20px;
  letter-spacing: 0;
  text-align: center;
  letter-spacing:.2rem;
  position: relative;
/* font-family: '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'MS Ｐ明朝', 'MS PMincho', serif; */
    color:#1f214d;
font-weight: bold;
}
.title_cmn_en{
  font-size: 35px;
  letter-spacing:.1rem;
  text-align: center;
    color:#1f214d;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .title_cmn{
	font-size: 22px !important;
  }
.title_cmn_en{
  font-size: 30px;
}
}
@media screen and (min-width: 1280px) {
  .title_cmn{
	font-size: 25px;
  }
.title_cmn_en{
  font-size: 45px;
}
}

.title-01 {
  margin:5px 0 10px 0;
  padding: 0 0 10px 0;
  font-size: 18px;
  text-align: left;
  border-bottom: 1px solid #4b3a32;
  line-height: 1.5;
  position: relative;
  font-weight: 500;
  /* font-family: "Noto Serif JP", serif; */

}
/*.title-01::after {
  position: absolute;content: " ";
 border-bottom: solid 2px #008475;
  bottom: -2px;
  width: 15%;
  display: block;
  left: 0;
}*/
@media screen and (min-width:768px) {
  .title-01 {
    font-size: 22px;
    margin-bottom:20px;
     margin-top:5px;
  }
}

@media screen and (min-width:1024px) {
.title-01{
   margin:10px 0 30px 0;
  padding: 0 0 10px 0;
  }
}


.btn_cmn {
  width:200px;
  position: relative;
  padding: 10px 30px;
  border: 1px solid #008475;
  color:#008475;
  text-align: center;
}
.btn_cmn a::before{
  position: absolute;
  content:"";
  cursor: pointer;
  background: #008475;
  transition: .3s ease-out;
  width:30px;
  height:1px;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn_cmn a:hover::before{
  right: 20px;
}

.btn_cmn_news.btn_right{
  margin: 0 0 0 auto;
}
.btn_cmn_news {
  width:100px;
  position: relative;
  color:#008475;
}
.btn_cmn_news a::before{
  position: absolute;
  content:"";
  cursor: pointer;
  background: #008475;
  transition: .3s ease-out;
  width:30px;
  height:1px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn_cmn_news a:hover::before{
  right: 10px;
}

.btn_cmn_other {
  width:130px;
  position: relative;
  color:#008475;
  margin:0 auto;
}
.btn_cmn_other a::before{
  position: absolute;
  content:"";
  cursor: pointer;
  background: #008475;
  transition: .3s ease-out;
  width:30px;
  height:1px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.btn_cmn_other a:hover::before{
  right: 10px;
}
@media screen and (min-width:1024px) {
.btn_cmn_other {
  width:150px;
}
}
/* font-size */
.f20 p{
    font-size: 35px;
    font-weight:bold;
}
.f18 p{
    font-size: 25px;
}
.fs-40 {
    font-size: 2rem;
}

.fs-38 {
    font-size: 2rem;
}

.fs-36 {
    font-size: 1.8rem;
}

.fs-32 {
    font-size: 1.8rem;
}

.fs-30 {
    font-size: 1.6rem;
}

.fs-28 {
    font-size: 1.6rem;
}

.fs-26 {
    font-size: 1.6rem;
}

.fs-24 {
    font-size: 1.6rem;
}

.fs-22 {

    font-size: 1.4rem;
}

.fs-20 {
    font-size: 1.4rem;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 p{
    font-size: 1.4rem;
}

.fs-15 {
    font-size: 1.3rem;
}

@media screen and (min-width:768px) {
    .fs-40 {
        font-size: 3rem;
    }

    .fs-38 {
        font-size: 2.8rem;
    }

    .fs-36 {
        font-size: 2.4rem;
    }

    .fs-32 {
        font-size: 2rem;
    }

    .fs-30 {
        font-size: 2rem;
    }

    .fs-28 {
        font-size: 2rem;
    }

    .fs-26 {
        font-size: 1.8rem;
    }

    .fs-24 {
        font-size: 1.8rem;
    }

    .fs-22 {
        font-size: 1.6rem;
    }

    .fs-20 {
        font-size: 1.6rem;
    }

    .fs-18 p{
        font-size: 1.4rem;
    }

    .fs-15 {
        font-size: 1.4rem;
    }

    .fs-14 {
        font-size: 1.2rem;
    }
}

@media screen and (min-width:1025px) {
    .fs-40 {
        font-size: 4rem;
    }

    .fs-38 {
        font-size: 3.8rem;
    }

    .fs-36 {
        font-size: 3.6rem;
    }

    .fs-32 {
        font-size: 3.2rem;
    }

    .fs-30 {
        font-size: 3rem;
    }

    .fs-28 {
        font-size: 2.8rem;
    }

    .fs-26 {
        font-size: 2.6rem;
    }

    .fs-24 {
        font-size: 2.4rem;
    }

    .fs-22 {
        font-size: 2.2rem;
    }

    .fs-20 {
        font-size: 2rem;
    }

    .fs-18 p{
        font-size: 1.8rem;
    }

    .fs-15 {
        font-size: 1.5rem;
    }

    .fs-14 {
        font-size: 1.4rem;
    }

    .fw-500 {
        font-weight: 500;
    }

    .fw-600 {
        font-weight: 600;
    }

    .pl-2e {
        padding-left: 2em;
    }

    .lh-2 {
        line-height: 2;
    }
}

.sub_contents .bold{
    font-weight: bold;
}
/*============================
	index 共通
============================*/
/* sp */

/* btn ▼*/
 #sub_contents .rec_btn {
   margin:0 auto;
}
 #sub_contents .rec_txt p{
   font-size:19px;
}

#sub_contents .link__btn {
    display: block;
    position: relative;
    white-space: nowrap;
    max-width: 100%;
    width: 170px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 1.4rem;
    padding: 0 1em .5em 0;
    border-bottom: solid 1px #333333;
    font-size: 1.8rem;
    letter-spacing: .05em;
    transition: .3s ease-out;
    text-align: center;

    & p {
        line-height: 1;
        letter-spacing: .05em;
    }

    #sub_contents .arw {
        width: 13px;
        height: auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        transition: .3s ease-out;
    }

    &:hover {
   
        border-color: #caaf65;

        #sub_contents .arw {
            right: -3%;
        }
    }


}


/* btn ▲*/
#sub_contents .section__ttl,
#sub_contents .section__ttl .txt {
    position: relative;
    line-height: 1;
    white-space: nowrap;
    font-weight: 400;
    display: block;
    letter-spacing: .1em;
}

#sub_contents .section__ttl .font-en {
    letter-spacing: .05em;
    display: block;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
    position: relative;
}

#sub_contents .section__ttl img {
    width: auto;

}

@media screen and (min-width:768px) {

    #sub_contents .link__btn {
        width: 170px;
        font-size: 1.4rem;
        font-size: 1.8rem;

        #sub_contents .arw {
            width: 13px;
        }

    }


}

@media screen and (min-width:1025px) {


    #sub_contents .link__btn {
        width: 175px;

        font-size: 1.4rem;
        font-size: 1.8rem;

        #sub_contents .arw {
            width: 13px;
        }

    }

}