/*-------------- general --------------*/

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	overflow-x: hidden;
}
@media screen and (min-width:768px) {
	body {
	  /*width: calc(100vw - 15px);*/ /* モーダル時の横ズレ防止 */
	}
}
.container{
	width:1280px;
	max-width:100%;
	margin:0 auto;
}
.container_s{
	width:1000px;
	max-width:100%;
	margin:0 auto;
}
@media screen and (min-width:768px) and (max-width:1280px) {
	.container,
	.container_s{
		width:100%;
		padding:0 15px;
	}
}
@media screen and (max-width:767px) {
	.container,
	.container_s{
		width:100%;
	}
}

.now_fadein{
	animation-name:fadeInAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bg-beige{
	background:#F1F0E7;
}

.btn_more{
	display:block;
	border:1px solid #A58638;
	padding:24px 0;
	text-align:center;
	width:260px;
	color:#A58638;
	position: relative;
	transition: .6s ;
	letter-spacing: 0.12em;
}
.btn_more::after{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px; /* 要素の右からの距離 */
	width: 50px;
	height: 1px;
	background: #A58638;
}

.btn_more:hover{
	color:#001559;
	border:1px solid #001559;
}
.btn_more:hover::after{
	background: #001559;
}

@media screen and (max-width:767px) {
	.btn_more{
		padding:12px 0;
		width:100%;
		font-size:14px;
	}
	.btn_more::after{
		right: 16px; /* 要素の右からの距離 */
		width: 20px;
	}
}

.btn_more_s{
	display:block;
	border:1px solid #A58638;
	padding:8px 0;
	text-align:center;
	width:300px;
	color:#A58638;
	position: relative;
	transition: .6s ;
	letter-spacing: 0.12em;
}
.btn_more_s::after{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px; /* 要素の右からの距離 */
	width: 30px;
	height: 1px;
	background: #A58638;
}

.btn_more_s:hover{
	color:#001559;
	border:1px solid #001559;
}
.btn_more_s:hover::after{
	background: #001559;
}

@media screen and (max-width:767px) {
	.btn_more_s{
		padding:12px 0;
		width:100%;
		font-size:14px;
	}
	.btn_more_s::after{
		right: 16px; /* 要素の右からの距離 */
		width: 20px;
	}

	.btn_more_s.btn_more_s_sp{
			letter-spacing: 0em;
	}
	.btn_more_s.btn_more_s_sp::after{
		content:none;
	}
}


.btn_rsv{
	display:block;
	background:#A58638;
	padding:24px 0;
	text-align:center;
	width:260px;
	color:#fff;
	position: relative;
	transition: .6s ;
}
.btn_rsv::after{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px; /* 要素の右からの距離 */
	width: 50px;
	height: 1px;
	background: #fff;
}

.btn_rsv:hover{
	background:#001559;
}

.btn_more_w{
	display:block;
	border:1px solid #A58638;
	background:#fff;
	padding:24px 0;
	text-align:center;
	width:260px;
	color:#A58638;
	position: relative;
	transition: .6s ;
	letter-spacing: 0.12em;
}
.btn_more_w::after{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 16px; /* 要素の右からの距離 */
	width: 50px;
	height: 1px;
	background: #A58638;
}

.btn_more_w:hover{
	color:#fff;
	background:#001559;
	border:1px solid #001559;
}
.btn_more_w:hover::after{
	background: #001559;
}

@media screen and (max-width:767px) {
	.btn_more_w{
		padding:12px 0;
		width:100%;
		font-size:14px;
	}
	.btn_more_w::after{
		right: 16px; /* 要素の右からの距離 */
		width: 20px;
	}
}

@media screen and (max-width:767px) {
	.btn_rsv{
		padding:12px 0;
		width:80%;
		font-size:14px;
	}
	.btn_rsv::after{
		right: 16px; /* 要素の右からの距離 */
		width: 20px;
	}
}

.btn_pill{
	display: inline-block;
	padding: 10px 30px;
	font-size: .88em;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 10px;
	background:#666;
	position:relative;
	margin:6px
}

.btn_pill::after{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 6px; /* 要素の右からの距離 */
	width: 16px;
	height: 1px;
	background: #fff;
}


.btn_pill_dx{
	display:block;
	border:6px solid #A58638;
	background:#F1F0E7;
	padding:24px 0;
	border-radius: 36px;
	text-align:center;
	width:260px;
	color:#A58638;
	position: relative;
	transition: .6s ;
	letter-spacing: 0.12em;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight:600 !important;
	color:#001655;
	font-size:1.1em;
	
}

.btn_pill_dx:hover{
	color:#fff;
	background:#001559;
}
.btn_more_w:hover::after{
	background: #001559;
}

@media screen and (max-width:767px) {
	.btn_pill_dx{
		padding:12px 0;
		width:100%;
		font-size:14px;
	}
}


.section-padding-80{
	padding:80px 0;
}

@media screen and (max-width:767px) {
	.section-padding-80{
		padding:60px 0;
	}

	.btn_pill{
		padding: 20px 20px;
		border-radius: 10px;
		margin:6px
	}

	.btn_pill::after{
		top: 0;
		bottom: 0;
		right: 0px; /* 要素の右からの距離 */
		width: 16px;
	}

}


#pc_float_rsv{
	display:none;
}
@media screen and (min-width:768px) {
	#pc_float_rsv{
		display:block;
		position:fixed;
		top:300px;
		right:0;
		width:97px;
		cursor:pointer;
		z-index:1000;
	}
}


/**モーダル基本**/
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left:0;
	width: 100%;
	overflow: auto;
	z-index:999;
}
.modal__bg{
	background: rgba(0,0,0,0.4);
	height: 100vh;
	position: absolute;
	width: 100%;
}




#pc_pagetop {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 40px;
  cursor: pointer;
	width:70px;
	transition: none !important;
}

#pc_pagetop img{
  width:100%;
}

ul.style_disc{
	margin: 1em 0;
	padding-left: 20px;
	list-style-type: disc;
}

/**オープニング画面用**/

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #011655;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.op_sp{
	display:none;
}
@media screen and (max-width: 767px) {
	.op_sp{
		display:block;
	}
	.op_pc{
		display:none;
	}
}


/*-------------- typography --------------*/

body{
	font-family: source-han-serif-japanese, serif;
	font-weight:400;
	font-size: 1.6rem;
	color:#000;
	line-height:1.4em;
}
@media screen and (max-width: 767px) {
	body{
		font-size: 1.4rem;
	}
}

.gothic{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.bold{
	font-weight:600;
}

a {
	transition: .6s ;
}

a:hover {
	color: #A58638 ;
}

/*-------------- header --------------*/
#sub_nav{
		z-index:100;
position:relative;
}
#sub_nav .container{
	display: flex;
	padding:20px 30px 0 0;
	justify-content: right;
	vertical-align: middle;
	margin-bottom:-15px;
}
#lang_nav{
	font-size:14px;
	margin-right:20px;
}
#lang_nav img{
	vertical-align: middle;
	width:13px;
	height:13px;
}
#lang_nav span{
	border-bottom:2px solid #000;
}
#member_nav{
	vertical-align: middle;
	padding-top:3px;
	display:flex;
}
#member_nav li{
	position: relative;
}
#member_nav .link_mypage{
	position: relative;
	display: inline-block;
	padding-left: 12px;
	margin-left:16px;
	cursor:pointer;
}
#member_nav .link_mypage:before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #A58638;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -6px;
}
#member_nav{
	font-size:13px;
}

header{
    position: sticky;
    position: -webkit-sticky;
    top: 0;
		z-index:99;
		background:rgb(255,255,255,0.8);
}

header .container{
	display: flex;
	justify-content: space-between;
	align-items: top;
	padding:15px 35px 15px;
}

header h1 img{
	width:238px;
}
nav ul li{
	font-size: 1.4rem !important;
	text-align:center;
	list-style: none;
	display: inline-block;
	margin:0 8px;
}
nav ul li span{
	display:block;
	font-family: adobe-garamond-pro, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem !important;
	color:#A58638;
	margin-top:6px;
	letter-spacing: 0.12em;
}
#head_tel{
	padding-top:20px;
}
#head_tel li{
	display: inline-block;
}
#head_tel li.headtel_1 img{
	display: block;
	width:193px;
}
#head_tel li.headtel_2 img,
#head_tel li.headtel_3 img,
#head_tel li.headtel_4 img,
#head_tel li.headtel_5 img{
	display: block;
	width:22px;
	margin-left:14px;
}

@media only screen and (min-width: 768px) and (max-width: 1180px) {
	#sub_nav .container{
		padding:6px 30px 0 0;
		justify-content: right;
		vertical-align: middle;
		margin-bottom:0px;
	}
	header{
		/*height:100px;*/
	}
	header .container{
		/*display: block;*/
		padding:10px 10px 10px;
	}
	header h1{
		width:200px;
		/*margin-bottom:16px;*/
	}
	header h1 img{
		width:100%;
	}
	#head_tel{
/*
		text-align:center;
		float:right;
		width:200px;
		padding:0;
		margin-top:-20px;
*/
	}
	#head_tel li.headtel_1{
/*
		text-align:center;
		width:100%;
*/
	}
	#head_tel li.headtel_1 img{
		/*margin:0 auto 6px;*/
	}
	header nav{
		width:530px;
		float:left;
		/*margin-bottom:16px;*/
	}

	#head_tel li.headtel_2 img,
	#head_tel li.headtel_3 img,
	#head_tel li.headtel_4 img,
	#head_tel li.headtel_5 img{
		width:22px;
		margin-left:10px;
	}

}

/*
@media only screen and (min-width: 768px) and (max-width: 1180px) {
	header{
		height:100px;
	}
	header .container{
		display: block;
		padding:0 10px 20px;
	}
	header h1{
		width:300px;
		margin-bottom:16px;
	}
	#head_tel{
		text-align:center;
		float:right;
		width:200px;
		padding:0;
		margin-top:-20px;
	}
	#head_tel li.headtel_1{
		text-align:center;
		width:100%;
	}
	#head_tel li.headtel_1 img{
		margin:0 auto 6px;
	}
	header nav{
		width:560px;
		float:left;
		margin-bottom:16px;
	}
}
*/

@media only screen and (min-width: 768px) and (max-width: 1087px) {
	header .container{
		/*padding:10px 10px 10px;*/
	}
	header h1{
		width:200px;
		/*margin-bottom:16px;*/
	}
	header h1 img{
		/*width:100%;*/
	}
	#head_tel{
/*
		text-align:center;
		float:right;
		width:200px;
		padding:0;
		margin-top:-20px;
*/
	}
	#head_tel li.headtel_1{
/*
		text-align:center;
		width:100%;
*/
	}
	#head_tel li.headtel_1 img{
		/*margin:0 auto 6px;*/
	}
	header nav{
		width:530px;
		float:left;
		/*margin-bottom:16px;*/
	}

	#head_tel li.headtel_2 img,
	#head_tel li.headtel_3 img,
	#head_tel li.headtel_4 img,
	#head_tel li.headtel_5 img{
display:none;
/*
		width:22px;
		margin-left:10px;
*/
	}

}

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

	#head_tel{
		display:none;
	}


}


@media screen and (max-width: 767px) {
	#sub_nav,
	header nav,
	#head_tel{
		display:none;
	}
	header .container{
		padding:10px;
	}
	header h1 img{
		width:180px;
	}
}


.mypage_dropdown_menu{
	width: 160px;
	display: none;
	position: absolute;
	margin-left: -30px;
	margin-top: 15px;
	padding: 15px;
	background: #fff;
	box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);
	z-index:99;
}

.mypage_dropdown_menu li{
	width: 100%;
	cursor: pointer;
	border-bottom:1px solid #9F8745;
}
.mypage_dropdown_menu li:last-child{
	border-bottom:none;
}

.mypage_dropdown_menu li a{
    padding: 10px 0;
    display: block;
		text-align:center;
		position:relative;
}

mypage_dropdown_menu li a:hover{
    background: #b3d7ff;
    color: rgb(65, 65, 65);
}

/*-------------- footer --------------*/


footer{
	background:#F1F0E7;
	padding-top:100px;
}
.footer_wrap{
	display:flex;
	padding-bottom:50px;
}
footer .footlogo{
	padding:0 0 30px 30px;
}
footer .footlogo img{
	width:192px;
}
.footer_info{
	margin-right:150px;
}
.footer_info p{
	font-size:14px;
	line-height:1.5em;
	margin-bottom:10px;
}
#footsns li{
	display:inline-block;
}
#footsns li img{
	height:22px;
	margin:6px;
}

.footnav_1,
.footnav_2,
.footnav_3{
	font-size:12px;
	margin-top:20px;
}
.footnav_1 ul,
.footnav_2 ul,
.footnav_3 ul{
	width:190px;
}
.footnav_3 ul:not(:first-child){
	margin-top:20px;
}
.footnav_1 ul li,
.footnav_2 ul li,
.footnav_3 ul li{
	padding:0 0 12px 0;
}
.copyright{
	font-size:12px;
	text-align:center;
	padding:50px 0;
	border-top:1px solid #A58638;
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
	.footer_info{
		width:300px;
		text-align:center;
		margin-right:50px;
	}
	.footnav_1 ul,
	.footnav_2 ul,
	.footnav_3 ul{
		width:150px;
	}
}
@media screen and (max-width:767px) {
	footer{
		padding-top:50px;
	}
	.footer_wrap{
		display:block;
	}
	.footer_info{
		margin-right:0;
		text-align:center
	}
	footer .footlogo img{
		width:100px;
	}
	.footer_info p{
		line-height:2em;
	}
	#footsns li img{
		height:40px;
		margin:15px;
	}
	.footnav_1 ul,
	.footnav_2 ul,
	.footnav_3 ul{

		margin: 1em 0;
		/*padding-left: 20px;
		list-style-type: disc;*/
		width:auto;

	}
	.footnav_1,
	.footnav_2{
		width:50%;
		padding:0 20px;
	}
	.footnav_1{
		float:left;
	}
	.footnav_2{
		float:left;
	}
	.footnav_3{
		clear:both;
		width:100%;
		padding:20px 20px 0;
	}
	.footnav_3 ul{
		width:100%;
	}
	.copyright{
		font-size:10px;
		padding:10px 0;
	}
}

/*-------------- sp_nav --------------*/
#fixed_nav_sp{
	position:fixed;
	bottom: 0;
	left: 0;
	width:100%;
	background:#001559;
  z-index: 999;
}
#fixed_nav_sp a{
	color:#fff;
	font-size:14px;
}
#fixed_nav_sp a img{
	width:20px;
}
#fixed_nav_sp ul{
	display:flex;
	list-style: none;
	width:100%;
}
#fixed_nav_sp ul li{
	justify-content: center;
	align-items: center;
	padding:15px 0;
	margin:0;
	font-size: 14px;
	border-right: 1px solid #fff;
	text-align:center;
}

#fixed_nav_sp ul li:nth-child(1){
	width:26%;
}
#fixed_nav_sp ul li:nth-child(2){
	width:32%;
}
#fixed_nav_sp ul li:nth-child(3){
	width:26%;
}
#fixed_nav_sp ul li:nth-child(4){
	width:16%;
	border-right: none;
}

#sp_float_nav{
	position:fixed;
	bottom: 80px;
	right: 16px;
	width:30px;
	z-index:999;
}

#sp_float_nav img{
	width:30px;
	margin-bottom:10px;
}

#sp_nav{
  position: fixed;
  width: 100vw;
  top: 45px;
  right: -100vw;
  background-color: rgba(0,22,85,.8);
  height: 100%;
  padding-top: 60px;
  padding-left: 100px;
  z-index: 998;
}
.sp_nav_inner{
	width:250px;
}
.sp_nav_inner nav{
	padding-bottom:30px;
	border-bottom:1px solid #fff;
}
.sp_nav_inner ul li {
	width:100%;
	padding:15px 0;
	text-align:left;
}
.sp_nav_inner nav a{
	display:block;
	color:#fff;
	font-size:18px;
	letter-spacing:0.12em;
}
.sp_nav_telset{
	width:90%;
	margin:30px 0;
}

#lang_nav_sp{
	font-size:14px;
	margin-right:20px;
	color:#fff;
}
#lang_nav_sp img{
	vertical-align: middle;
	width:13px;
	height:13px;
}
#lang_nav_sp span{
	border-bottom:2px solid #fff;
}

#spnav_sns li{
	display:inline-block;
	width:auto;
}
#spnav_sns li img{
	height:30px;
	margin:8px;
}


@media screen and (min-width: 767px) {
	#fixed_nav_sp{
		display:none;
	}

	#sp_float_nav{
		display:none;
	}

	#sp_nav{
		display:none;
	}
}


/**予約モーダル**/
.modal__content{
	background: #fff;
	left: 50%;
	padding: 30px 40px;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 350px;
	height:560px;
	font-weight:500;
}

.modal__content h3 {
	text-align:center;
	font-size: 20px;
	color: #A58638;
	margin: 0px auto 24px;
}
.modal__content h5 {
	font-size:14px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	margin:8px 0 4px;
	font-weight:600;
}

.modal_btn_rsv{
	margin-top:14px;
}
.modal_btn_plan{
	margin-top:30px;
}
.modal_btn_cancel{
	margin-top:14px;
}

.modal_formact{
	margin-top:14px;
	font-size:13px;
}

.rsv-close{
	position:absolute;
	top:16px;
	right:16px;
	cursor:pointer;
	font-size:20px;
	color:#9f8745;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1.6rem;
	font-weight: 400;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.modal__content_in{
	display:flex;
}

.modal__content_in .day{
	margin-left:6px;
}

.modal_checkout select{
	width:60px;
}

.modal_pnum select{
	width:60px;
}

.addspan{
	padding-top:6px;
}
.modal__content span{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-size:14px;
	margin-left:4px;
}

.rsv_wrap{
	border-bottom:1px solid #ccc;
	padding-bottom:14px;
}


/*-------------- 下層ページ共通 --------------*/

#pagehead{
	text-align:center;
	background-color:#F1F0E7;
	padding:60px 0;
	background-repeat:no-repeat;
}
#pagehead h2{
	font-size:30px;
	color:#9F8745;
	display:inline-block;
	padding-bottom:8px;
	border-bottom:1px solid #9F8745;
	margin-bottom:10px;
}
#pagehead h4{
	color:#9F8745;
}
#sec_page_intro{
	padding:40px 0;
}
#sec_page_intro p{
	line-height:2em;
}

@media screen and (min-width:768px) {
	#sec_page_intro p{
		text-align:center;
	}
}

@media screen and (max-width:767px) {
	#sec_page_intro p{
		padding-left:20px;
		padding-right:20px;
	}
}

.cnr_ttl{
	text-align:center;
	margin-bottom:50px;
}

.cnr_ttl h3{
	display:inline-block;
	font-size:20px;
	color:#9F8745;
	padding:24px 60px;
	border:1px solid #9F8745;
	background:#fff;
}

.cnr_ttl_gold{
	text-align:center;
	margin-bottom:50px;
}

.cnr_ttl_gold h3{
	display:inline-block;
	font-size:20px;
	color:#fff;
	padding:24px 60px;
	border:6px solid #fff;
	background:#9F8745;
}
@media screen and (max-width:767px) {
	.cnr_ttl_gold h3{
		color:#fff;
		padding:15px;
		border:6px solid #fff;
		background:#9F8745;
		line-height:1.5em;
	}
}

footer #footer_btn_covid{
	display:block;
cursor: pointer;
}


::-webkit-scrollbar{
   width: 6px;
}
::-webkit-scrollbar-track{
   background-color: #ccc;
}
::-webkit-scrollbar-thumb{
   background-color: #001655;
}



/**コロナモーダル**/
.modal__content_covid{
	background: #fff;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	max-width: 1120px;
	width:70%;
	font-weight:500;
	z-index:101;
}
.covid-close{
	position:absolute;
	top:30px;
	right:30px;
	cursor:pointer;
	font-size:20px;
	color:#9f8745;
}
.modal__content_covid .modal_header{
	background:#f1f0e8;
	color:#9f8745;
	font-size:24px;
	padding:30px 15px;
	line-height:1.6em;
	text-align:center;
}
.modal__content_covid .modal_inner{
	padding:30px 0px;
	max-width:900px;
	width:90%;
	margin:0 auto;
	line-height:1.6em;
	text-align:left;
	font-size:14px;
}
.modal__content_covid .modal_inner h5{
	font-size:24px;
	color:#9f8745;
	border-bottom:1px solid #9f8745;
	padding-bottom:8px;
	margin-bottom:10px;
}

@media screen and (max-width:767px) {
	.modal__content_covid{
		top:70px;
		transform: translate(-50%,0);
		width:94%;
	  height: 400px;               /* 横幅を200pxに指定 */
	  overflow-y: scroll;          /* 縦方向にスクロール可能にする */
	}

	.modal__content_covid::-webkit-scrollbar{
	   width: 6px;
	}
	.modal__content_covid::-webkit-scrollbar-track{
	   background-color: #ccc;
	}
	.modal__content_covid::-webkit-scrollbar-thumb{
	   background-color: #001655;
	}


	.modal__content_covid .modal_header{
		font-size:18px;
		padding:20px 0px;
		line-height:1.4em;
	}


	.covid-close{
		top:15px;
		right:15px;
	}

	.modal__content_covid .modal_inner{
		padding:20px 0px;
		width:96%;
		line-height:1.4em;
		font-size:14px;
	}
	.modal__content_covid .modal_inner h5{
		font-size:18px;
	}

}



/**マンスリーモーダル**/
.modal__content_monthly{
	background: #fff;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	max-width: 1120px;
	width:70%;
	font-weight:500;
}
.monthly-close{
	position:absolute;
	top:30px;
	right:30px;
	cursor:pointer;
	font-size:20px;
	color:#9f8745;
}
.modal__content_monthly .modal_header{
	background:#f1f0e8;
	padding:40px 15px;

}
.modal__content_monthly .modal_header h3{
	color:#9f8745;
	font-size:24px;
	line-height:1.6em;
}
.modal__content_monthly .modal_header p{
	font-size:14px;
	margin-top:10px;
}
.modal__content_monthly .modal_header p.link_regist{
	font-size:14px;
	color:#ff0000;
	margin-top:16px;
}
.modal__content_monthly .modal_header p.link_regist a{
	color:#666;
	border:3px solid #666;
	background:#fff;
	padding:3px 10px;
	margin-left:8px;
	font-weight:bold;
}

.modal__content_monthly .modal_inner{
	padding:40px 0px;
	max-width:810px;
	width:80%;
	margin:0 auto;
	line-height:1.6em;
	text-align:left;
	font-size:14px;
}
.modal__content_monthly .modal_inner .monthly_wrapper{
	width:100%;
	display:flex;
}
.modal__content_monthly .modal_inner .monthly_wrapper .img_monthly{
	width:40%;
	margin-right:5%;
}
.modal__content_monthly .modal_inner .monthly_wrapper .img_monthly img{
	width:100%;
}

.modal__content_monthly .modal_inner .monthly_wrapper .txt_monthly{
	width:55%;
}

.midashi_monthly{
	background:#9f8745;
	color:#fff;
	padding:8px;
	margin-bottom:20px;
}

.link_monthly{
	display:block;
	color:#9f8745;
	text-decoration:underline;
	margin-top:20px !important;
}

@media screen and (max-width:767px) {
	.modal__content_monthly{
		top:70px;
		transform: translate(-50%,0);
		width:94%;
	  height: 430px;               /* 横幅を200pxに指定 */
	  overflow-y: scroll;          /* 縦方向にスクロール可能にする */
	}

::-webkit-scrollbar{
   width: 6px;
}
::-webkit-scrollbar-track{
   background-color: #ccc;
}
::-webkit-scrollbar-thumb{
   background-color: #001655;
}

	.modal__content_monthly .modal_header{
		font-size:18px;
		padding:20px 10px;
		line-height:1.4em;
	}

	.modal__content_monthly .modal_header h3{
		font-size:18px;
		line-height:1.4em;
	}
	.monthly-close{
		top:15px;
		right:15px;
	}

	.modal__content_monthly .modal_inner{
		padding:20px 0px;
		width:96%;
		line-height:1.4em;
		font-size:14px;
	}

	.modal__content_monthly .modal_inner .monthly_wrapper{
		display:block;
	}

	.modal__content_monthly .modal_inner .monthly_wrapper .img_monthly{
		width:100%;
		text-align:center;
		margin-right:0;
	}
	.modal__content_monthly .modal_inner .monthly_wrapper .img_monthly img{
		width:80%;
		margin:0 auto 20px;
	}

	.modal__content_monthly .modal_inner .monthly_wrapper .txt_monthly{
		width:100%;
	}



}
