@charset 'UTF-8';
/* 404
--------------------------- */
.p404_txt{
	margin-bottom: 0;
	margin-top: 1rem;
}
@media screen and (min-width: 768px){
	.block404{
		text-align: center;
	}
}

.bdr{
	border-radius: 10px;
	overflow: hidden;
}
.c50{
	color: #505050;
}
.txt_block p{
	margin-bottom: 0;
}


.slider--img {
	overflow: hidden;
	border-radius: 10px;
}
.slider--img img {
	width: 100%;
	height: auto;
	display: block;
}



/* 背景色
--------------------------- */
.bg_faf6, .bg_f1{
	position: relative;
}
.bg_faf6::before, .bg_f1::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;	
}
.bg_faf6::before{
	background-color: #faf6ed;
}
.bg_f1::before{
	background-color: #f1f1f1;
}


/* 各メディアごとのマージン設定
--------------------------- */
/* 768px以上用の記述 */
@media screen and (min-width: 768px) {
  .col-md-m20-bottom {
    margin-bottom: 20px;
  }
  .col-md-none {
    display: none;
  }
}
/* 991px以下用の記述 */
@media screen and (max-width: 991px) {
  .col-md-m40-bottom {
    margin-bottom: 40px;
  }
}
/* 991px以下用の記述 */
@media screen and (max-width: 991px) {
  .col-md-m40-bottom {
    margin-bottom: 40px;
  }
}
/* 767px以下用の記述 */
@media screen and (max-width: 767px) {
  .col-sm-m20-bottom {
    margin-bottom: 20px;
  }
  .col-sm-none {
    display: none;
  }
}
/* 576px以下用の記述 */
@media screen and (max-width: 576px) {
  .col-xs-m40-bottom {
    margin-bottom: 40px;
  }
  .col-xs-m20-bottom {
    margin-bottom: 20px;
  }
  .col-xs-none {
    display: none;
  }
}
/*******************************
PC/SP切り替え
*******************************/
.pc-none{
    display: block;
}
.sp-none{
    display: none;
}
@media screen and (min-width: 768px){
    .pc-none{
        display: none;
    }
    .sp-none{
        display: block;
    }
}
.none_max991{
	display: none;
}
.none_min992{
	display: block;
}
@media screen and (min-width: 992px){
	.none_max991{
		display: block;
	}
	.none_min992{
		display: none;
	}
}

/*******************************
container
*******************************/
.container_wide{
	width: 86.66%;
	margin-right: auto;
	margin-left: auto;
}
.container_1540{
	width: 87.17%;
	margin-right: auto;
	margin-left: auto;
}
.container_1300{
	width: 87.17%;
	margin-right: auto;
	margin-left: auto;
}
.container_1000{
	width: 86.66%;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (min-width: 768px){
	.container_1000{
		width: 72.22%;
		max-width: 1000px;
	}
}
@media screen and (min-width: 768px){
	.container_1300{
		width: 72.22%;
	}
}
@media screen and (min-width: 768px){
	.container_1540{
		width: 85.55%;
	}
}


/*******************************
見出し
*******************************/
/* c-title1 */
.c-title1{
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-bottom: 2.13rem;
}
.c-title1 .f-eng{
	display: block;
	letter-spacing: -0.01em;
	font-size: 2.81rem;  
	line-height: 1.15;
	margin-bottom: 0.56rem;
}
@media screen and (min-width: 768px){
	.c-title1{
		margin-bottom: 2.84rem;
	}
}
@media screen and (min-width: 992px){
	.c-title1{
		margin-bottom: 3.55rem;
	}
	.c-title1 .f-eng{
		font-size: 3.9rem;
		margin-bottom: 0.7rem;
	}
}
@media screen and (min-width: 1400px){
	.c-title1{
		font-size: 0.88rem;
		margin-bottom: 4.26rem;
	}
	.c-title1 .f-eng{
		font-size: 5rem;
		margin-bottom: 0.85rem;
	}
}

/*******************************
TOP BUTTON
*******************************/
/* vm */
.vm{
	position: relative;
	display: inline-flex;
	align-items: center;
	width: 220px;
	height: 60px;
	font-size: 0.94rem;
	padding-left: 50px;
	font-weight: 400;
	letter-spacing: 0;
	color: #000;
	background-color: #f6f6f6;
	border-radius: 30px;
	transition: .3s;
}
.vm .arrow, .vm .tab{
	position: absolute;
	width: 28px;
	height: 28px;
	background-color: #1d2087;
	border-radius: 50%;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	transition: .3s;
}
.vm .arrow::after{
	position: absolute;
	content: "";
	background-image: url("../images/arrow_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 8px;
	height: 7px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .3s;
}
.vm .tab::after{
	position: absolute;
	content: "";
	background-image: url("../images/tab_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 12px;
	height: 9px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: .3s;
}
.vm:hover{
	text-decoration: none;
	background-color: #1d2087;
	color: #fff;
}
.vm:hover .arrow, .vm:hover .tab{
	background-color: #f6f6f6;
}
.vm:hover .arrow::after{
	background-image: url("../images/arrow_blue.svg");
}
.vm:hover .tab::after{
	background-image: url("../images/tab_blue.svg");
}


/*******************************
パンクズ
*******************************/
#pls {
	width: 86.66%;
	margin: 5.93rem auto 0;
}
#pan {
    font-size: 0.8125rem;
	font-family: "Poppins", "Noto Sans JP", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-weight: 400;
	font-style: normal;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	color: #000;
	line-height: 1.4;
	letter-spacing: 0.06em;
}
#pan a{
    color: #8c8c8c;
    text-decoration: none;
}
.pan-punctuation {
	display: inline-block;
	width: 12px;
	height: 1px;
	margin: 0 13px;
	background-color: rgba(140,140,140,0.6)
}
@media screen and (min-width: 1200px){
	#pls{
		margin-top: 11.176rem;
	}
	#pan{
		font-size: 0.764rem;
	}
}

/*******************************
/* フォーム/テーブル
*******************************/
.wpcf7-submit {
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border-style: none;
  width: 60%;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
}
#form {
  max-width: 100%;
}
#form th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form th, #form td{
	padding: 31px 0;
	font-size: 1rem;
	letter-spacing: 0.02em;
	line-height: 1.5;
	border-bottom: 1px solid rgba(100,100,100,0.25);
}
#form tr:first-child th, #form tr:first-child td{
	border-top: 1px solid rgba(100,100,100,0.25);
}
#form th {
	width: 30%;
	font-weight: 500;
	vertical-align: baseline;
}
#form td {
	text-align: left;
	font-weight: 400;
}
@media screen and (min-width: 1200px){
	#form th, #form td{
		font-size: 1.058rem;
		padding: 41px 0;
	}
	#form th{
		width: 24.44%;
	}
	#form td{
		width: 75.56%;
	}
}
/* テキストエリアの設定 */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  color: #000;
  padding: 10px 0 10px 10px;
  margin: 10px 0;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  background-color: #fff;
}
@media only screen and (max-width:479px) {
  /* 479px以下用（スマートフォン用）の記述 */
  #form {
    max-width: 100%;
    margin-bottom: 0;
  }
  #form th {
    width: 100%;
    display: block;
    border-top: none;
	  padding: 20px 0 0;
	  border-bottom: none;
  }
  #form td {
    width: 100%;
    display: block;
    border-top: none;
	  padding: 5px 0 20px;
  }
	#form tr:first-child td{
		border-top: none;
	}
  /* テキストエリアの設定 */
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 10px 0px 0px 0px;
    margin: 10px 0;
  }
  .wpcf7-submit {
    font-size: 1.2em;
    border-style: none;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
.pagenation {
    text-align: center;    
	font-family: "Poppins", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	margin-top: 4rem;
}
.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.pagenation ul {
  margin: 0;
    display: flex;
    justify-content: center;
}
.pagenation li {
  list-style: none outside none;
  margin-left: 20px;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
	background-color: #1d2087;
    color: #fff;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
	border-radius: 50%;
    font-size: 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.02em;
}
.pagenation li a {
    position: relative;
	text-decoration: none;
	width: 42px;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
    font-size: 1rem;
	letter-spacing: 0.02em;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	overflow: hidden;
}
.pagenation li a:hover {
	text-decoration: none;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}
.pagenation li.prev,
.pagenation li.next{
	text-transform: uppercase;
}
.pagenation li.prev a,
.pagenation li.next a{
	position: relative;
	font-size: 0;
	color: transparent;
}
.pagenation li.prev a::after,
.pagenation li.next a::after{
	position: absolute;
	content: "";
	background-image: url("../images/arrow.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 10px;
	height: 8px;
	top: 50%;
	left: 50%;
}
.pagenation li.prev a::after{
	transform: translate(-50%,-50%) rotate(180deg);
}
.pagenation li.next a::after{
	transform: translate(-50%,-50%);
}
@media screen and (min-width: 768px){
	.pagenation{
		margin-top: 4.44rem;
	}
}
@media screen and (min-width: 992px){
	.pagenation{
		margin-top: 5.55rem;
	}
}
@media screen and (min-width: 1200px){
	.pagenation li.prev a::after,
	.pagenation li.next a::after{
		width: 12px;
		height: 10px;
	}
}
@media screen and (min-width: 1400px){
	.pagenation{
		margin-top: 6.66rem;
	}
}
@media screen and (max-width: 767px){
    .pagenation{
        margin-top: 3.33rem;
    }
    .pagenation li{
        margin-left: 6px;
    }
    .pagenation li.active{
        width: 35px;
        height: 35px;
    }
    .pagenation li a{
        width: 35px;
        height: 35px;
    }
}
/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px){
	.sgl{
		margin-bottom: 3rem;
	}
}

/*************************
/* single.php 日付
*************************/
#date span {
	color: #878787;
	font-size: 1rem;
	font-family: "Work Sans", sans-serif;
	letter-spacing: 0;
}

/*--------------------------------
PREV NEXT
---------------------------------*/
#prev_next {
  width: 100%;
  margin: 36px 0 24px;
  padding: 0;
  display: table;
}
#prev_next #prev, #prev_next #next {
  width: 50%;
  padding: 30px 10px 10px;
  border-top: #000 1px solid;
  border-bottom: #000 1px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
}
#prev_next #next{
	text-align: right;
}
#prev_next #prev p, #prev_next #next p {
  font-size: 90%;
  line-height: 1.5;
    margin-top: 0.5rem;
    color: #000;
}
#prev_next #prev:hover, #prev_next #next:hover {
  background-color: #f7f7f5;
}
#prev_next #prev {
  border-right: #000 1px solid;
}
#prev_next #prev_title, #prev_next #next_title {
  font-size: 90%;
  top: -1em;
  position: absolute;
  border: 1px #000 solid;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #000;
    font-family: 'Playfair Display', serif;
}
#prev_next #next_title {
  right: 10px;
}
#prev_next #prev img, #prev_next #next img {
  margin: 0 auto;
    width: auto;
}
#prev_next #prev_no, #prev_next #next_no {
  width: 50%;
  height: 140px;
  padding: 0 10px;
  display: table-cell;
}
#prev_next #prev_no {
  border-right: #000 1px solid;
}
#prev_next_home {
  margin: 0 auto;
  background-color: #000;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #000;
  -webkit-box-shadow: 0 0 0 3px #000;
  -moz-box-shadow: 0 0 0 3px #000;
  text-align: center;
}
#prev_next_home:hover {
opacity: 0.7;
}
#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px;
}
@media screen and (min-width: 768px){
    #prev_next #prev, #prev_next #next{
        padding: 40px 10px 20px;
    }
}
/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 780px) {
  /*-- ここから --*/
  /*--------------------------------------
768px PREV NEXT
--------------------------------------*/
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after, #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px;
  }
  #prev_next #next_title {
    right: 10px;
  }
  #prev_next #prev img {
    float: left;
    margin-right: 10px
  }
  #prev_next #next img {
    float: right;
    margin-left: 10px;
  }
  /*-- ここまで --*/
}

/*************
/* 投稿ギャラリー
*************/
.wp-caption-text {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.gallery {
  margin: auto;
}
.gallery .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 25%;
  padding: 5px;
}
.gallery img {
  margin-bottom: 5px;
}
.gallery .gallery-caption {
  margin-left: 0;
  margin-bottom: 35px;
  padding-right: 20px;
  padding-left: 20px;
}
/*-----------------------------
wordpressのギャラリースマホ調整
------------------------------*/
@media screen and (max-width: 640px) {
  #gallery-1 {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    float: none;
    width: 50% !important;
    margin: 0;
  }
}
/*******************************
/* youtube　gmapレスポンシブ対応
***************************/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*******************************
/* レスポンシブ改行
***************************/
@media screen and (min-width: 576px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
@media screen and (min-width: 768px){
	.br_max767{
		display: none;
	}
	.br_min768{
		display: block;
	}
}
@media screen and (max-width: 767px){
	.br_max767{
		display: block;
	}
	.br_min768{
		display: none;
	}
}
@media screen and (min-width: 992px){
	.br_max991{
		display: none;
	}
	.br_min992{
		display: block;
	}
}
@media screen and (max-width: 991px){
	.br_max991{
		display: block;
	}
	.br_min992{
		display: none;
	}
}
@media screen and (min-width: 1200px){
	.br_max1199{
		display: none;
	}
}
@media screen and (max-width: 1199px){
	.br_max1199{
		display: block;
	}
}
@media screen and (min-width: 1400px){
	.br_min1400{
		display: block;
	}
}
@media screen and (max-width: 1399px){
	.br_min1400{
		display: none;
	}
}
.br_768_991{
	display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.br_768_991{
		display: block;
	}
}
.br_768_1199{
	display: none;
}
@media screen and (min-width: 768px) and (max-width: 1199px){
	.br_768_1199{
		display: block;
	}
}



/*****************************
/* フォーム共通
*****************************/
.form_outer{
	position: relative;
	width: 93%;
	max-width: 1360px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 6.79rem;
	padding: 5.84rem 0 6.46rem;
}
.form_outer::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: -1;
}
.form_inner{
	width: 86%;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}
.form_inner .c-title1{
	margin-bottom: 2.56rem;
}
.form_inner .c-title1 .f-eng{
	font-size: 2.5rem;
	margin-bottom: 1.22rem;
}
@media screen and (min-width: 768px){
	.form_inner .c-title1 .f-eng{
		font-size: 3.07rem;
	}
}
@media screen and (min-width: 1200px){
	.form_inner .c-title1{
		margin-bottom: 4.93rem;
	}
	.form_inner .c-title1 .f-eng{
		font-size: 3.33rem;
		margin-bottom: 1.1rem;
	}
}
@media screen and (min-width: 1400px){
	.form_outer{
		margin-top: 10.43rem;
		padding: 11.33rem 0 11.46rem;
	}
}

/*****************************
/* form_customize
*****************************/
.form_intro{
	font-size: 0.9375rem;
	margin-bottom: 3.81rem;
}
.form_intro p{
	margin-bottom: 0;
}
@media screen and (min-width: 1200px){
	.form_intro{
		font-size: 0.941rem;
		margin-bottom: 4.53rem;
	}
}
#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
    background-color: #fff;
    border: none;
    padding: 1.15rem 1rem;
	font-size: 0.9375rem;
    margin: 0;
    width: 100%;
	border-radius: 5px;
	line-height: 1.5;
	outline: none;
	resize: none;
}
#form_customize input[type="text"], #form_customize input[type="email"], #form_customize input[type="tel"], #form_customize textarea, #form_customize select{
	color: #000;
}
#form_customize input:focus, #form_customize select:focus, #form_customize textarea:focus{
	outline: none;
}
#form_customize .form_block{
	margin-bottom: 2rem;
}
/* プレースホルダー */
#form_customize .wpcf7-form-control::placeholder{
	color: #d1d1d1;
	opacity: 1;
}
/* ラベル */
#form_customize .form_c_label{
	display: flex;
	font-size: 1rem;
	margin-bottom: 0.85rem;
	line-height: 1.4;
	color: #000;
}
/* 必須 */
.form_label_req{
	color: #e50012;
	margin-left: 5px;
}
/* 入力してください */
#form_customize .wpcf7-not-valid-tip{
	font-size: 0.88rem;
	color: #e50012;
}
/* 個人情報 */
#form_customize .form_c_agree{
	border-bottom: none;
	margin-top: 1.65rem;
	margin-bottom: 2.825rem;
	text-align: center;
}
#form_customize .form_c_agree .form_check_box{
	margin-bottom: 1.075rem;
}
#form_customize .form_c_agree .form_check_box .wpcf7-list-item{
	width: 100%;
}
.f_note{
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 0;
}
.f_note a{
	color: #000;
	text-decoration: underline;
	transition: .3s;
}
.f_note a:hover{
	opacity: 0.7;
	transition: .3s;
}
/* 送信ボタン */
#form_customize .form_c_submit{
	border-bottom: none;
	margin-bottom: 0 !important;
	padding-bottom: 0;
	position: relative;
	text-align: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
#form_customize .form_c_submit input{
	width: 100%;
	max-width: 300px;
	height: 65px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	background-color: #1d2087;
	color: #fff;
	border-radius: 80px;
	margin-bottom: 0;
	padding: 0;
	transition: .3s;
}
#form_customize .form_c_submit input:hover{
	opacity: 0.7;
	transition: .3s;
}
#form_customize .form_c_submit .wpcf7-spinner{
	display: none;
}
@media screen and (min-width: 768px){
	#form_customize .form_block{
		display: flex;
	}
	#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
		padding: 1.35rem 1.5rem;
	}
	#form_customize .form_c_label{
		width: 170px;
		padding: 1.35rem 0;
		margin-bottom: 0;
	}
	#form_customize .form_c_item{
		width: calc(100% - 170px);
	}
	/* 個人情報 */
	#form_customize .form_c_agree{
		text-align: left;
	}
	#form_customize .form_c_agree .form_c_item{
		margin-left: auto;
	}
	/* 送信ボタン */
	#form_customize .form_c_submit{
		width: calc(100% - 170px);
		margin-right: 0;
		margin-left: auto;
	}
}
@media screen and (min-width: 992px){
	#form_customize .form_c_label{
		width: 250px;
	}
	#form_customize .form_c_item{
		width: calc(100% - 250px);
	}
	/* 送信ボタン */
	#form_customize .form_c_submit{
		width: calc(100% - 250px);
		margin-right: 0;
		margin-left: auto;
	}	
}
@media screen and (min-width: 1200px){
	#form_customize input, #form_customize select, #form_customize textarea, #form_customize input[type="date"]{
		padding: 1.65rem 2rem;
	}
	#form_customize .form_c_label{
		width: 270px;
		padding: 1.65rem 0;
	}
	#form_customize .form_c_item{
		width: calc(100% - 270px);
	}
	/* 個人情報 */
	#form_customize .form_c_agree{
		margin-top: 2.5rem;
		margin-bottom: 3.229rem;
	}
	#form_customize .form_c_agree .form_check_box{
		margin-bottom: 1.025rem;
	}
	/* 送信ボタン */
	#form_customize .form_c_submit{
		width: calc(100% - 270px);
	}
	#form_customize .form_c_submit input{
		max-width: 400px;
		height: 75px;
	}
}
/* CUSTOM radio */
#form_customize .form_check_box .wpcf7-form-control{
	display: flex;
	flex-wrap: wrap;
}
#form_customize .form_check_box .wpcf7-list-item{
	margin: 0;
	display: block;
	width: 50%;
}
#form_customize .form_check_box label{
	cursor: pointer;
	margin-bottom: 0;
}
#form_customize .form_check_box input{
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
#form_customize .form_check_box .wpcf7-list-item-label{
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	font-size: 0.9375rem;
	color: #000;
	line-height: 1.9;
}
#form_customize .form_check_box .wpcf7-list-item-label::before, #form_customize .form_check_box .wpcf7-list-item-label::after {
	content: "";
	border-radius: inherit;
	transition: .2s;
}
#form_customize .form_check_box .wpcf7-list-item-label::before{
	left: 0;
	display: block;
	width: 35px;
	height: 35px;
	margin-right: 10px;
	background-color: #fff;
	border-radius: 50%;
	border: none;
}
#form_customize .form_check_box .wpcf7-list-item-label::after{
	position: absolute;
	top: 13px;
	left: 13px;
	width: 8px;
	height: 8px;
	background-color: #1d2087;
	border-radius: 50%;
	opacity: 0;
}
#form_customize .form_check_box input:checked ~ .wpcf7-list-item-label::after{
	opacity: 1;
}
@media screen and (min-width: 1200px){
	#form_customize .form_check_box .wpcf7-list-item-label::before{
		width: 42px;
		height: 42px;
		margin-right: 20px;
	}
	#form_customize .form_check_box .wpcf7-list-item-label::after{
		top: 15px;
		left: 15px;
		width: 12px;
		height: 12px;
	}
}


/* ============================ */
/* POST INDEX */
.c-post-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	border-top: 1px solid rgba(100,100,100,0.25);
	margin-top: 4.85rem;
	padding-top: 3.125rem;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1;
}
.c-post-index__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
	transition: .3s;
	color: #000;
}
.c-post-index__link span {
  display: inline-block;
  margin-top: 2px;
}
.c-post-index__link .arrow{
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #1d2087;
	display: flex;
	justify-content: center;
	align-items: center;
}
.c-post-index__link img {
	display: block;
	width: 10px;
	height: 10px;
}
.c-post-index__link.link-prev .arrow{
	margin-right: 10px;
}
.c-post-index__link.link-next .arrow{
	margin-left: 10px;
}
.c-post-index__link.link-prev img {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.c-post-index__link.is-disable {
  opacity: 0.3;
  pointer-events: none;
}
.c-post-index__link:hover{
	color: #000;
	text-decoration: none;
	opacity: 0.7;
	transition: .3s;
}
.c-post-index__text {
	text-align: center;
	color: #000;
}
.c-post-index__text:hover{
	text-decoration: none;
	opacity: 0.7;
	color: #000;
	transition: .3s;
}
.c-post-index--tab {
  display: none;
}
@media screen and (min-width: 1200px){
	.c-post-index{
		font-size: 0.941rem;
		margin-top: 8.11rem;
		padding-top: 4.7rem;
	}
	.c-post-index__link .arrow{
		width: 42px;
		height: 42px;
	}
	.c-post-index__link.link-prev .arrow{
		margin-right: 20px;
	}
	.c-post-index__link.link-next .arrow{
		margin-left: 20px;
	}
	.c-post-index__link img{
		width: 11px;
		height: 11px;
	}
}

/********************
/* お知らせ
********************/
.news_block{
	margin-bottom: 0;
}
.news_block li{
	list-style: none;
	position: relative;
}
.news_block li::before, .news_block li::after{
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: rgba(100,100,100,0.25);
	left: 0;
}
.news_block li:first-child::before{
	content: "";
	top: 0;
}
.news_block li::after{
	content: "";
	bottom: 0;
}
.news_block li a{
	display: block;
	color: #000;
	padding: 2.06rem 0 2.93rem;
}
.news_block li a:hover{
	text-decoration: none;
}
.news_dc{
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 0.45rem;
}
.news_dc::after{
	position: absolute;
	content: "";
	width: 8px;
	height: 7px;
	display: block;
	background-image: url("../images/arrow_blue.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.news_dc .news_date{
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	font-weight: 400;
}
.news_dc .news_cat{
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	margin-left: 20px;
}
.news_tit{
	font-size: 0.875rem;
	line-height: 1.64;
	letter-spacing: 0.04em;
	margin-bottom: 0;
	text-align: justify;
}
@media screen and (min-width: 768px){
	.news_block{
		display: flex;
		flex-wrap: wrap;
	}
	.news_block li{
		width: calc((100% - 80px)/3);
		margin-right: 40px;
	}
	#main2 .news_block li{
		margin-top: 3rem;
	}
	#main2 .news_block li:nth-child(1), #main2 .news_block li:nth-child(2), #main2 .news_block li:nth-child(3){
		margin-top: 0;
	}
	.news_block li:nth-child(3n){
		margin-right: 0;
	}
	.news_block li::before, .news_block li::after{
		display: none;
	}
	.news_block li a{
		padding: 0;
	}
	.news_dc{
		padding-bottom: 0.625rem;
		margin-bottom: 0.6rem;
	}
	.news_dc::after{
		background-image: none;
		width: 100%;
		height: 1px;
		right: unset;
		left: 0;
		top: unset;
		bottom: 0;
		transform: none;
		background-color: rgba(100,100,100,0.25);
	}
	.news_dc .news_date{
		padding-right: 1rem;
		position: relative;
	}
	.news_dc .news_date::after{
		position: absolute;
		content: "";
		width: 1px;
		height: 18px;
		background-color: rgba(200,200,200,0.25);
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.news_dc .news_cat{
		margin-left: 1rem;
	}
}
@media screen and (min-width: 992px){
	.news_block li{
		width: calc((100% - 120px)/3);
		margin-right: 60px;
	}
	#main2 .news_block li{
		margin-top: 4rem;
	}
}
@media screen and (min-width: 1200px){
	#main2 .news_block li{
		margin-top: 6rem;
	}
	.news_dc{
		padding-bottom: 1.47rem;
		margin-bottom: 1.17rem;
	}
	.news_dc .news_date{
		font-size: 0.88rem;
	}
	.news_dc .news_date::after{
		height: 20px;
	}
	.news_dc .news_cat{
		font-size: 0.88rem;
	}
	.news_tit{
		font-size: 0.88rem;
		line-height: 1.8;
	}
}
@media screen and (min-width: 1400px){
	.news_block li{
		width: calc((100% - 160px)/3);
		margin-right: 80px;
	}
}
/** single **/
.single_bk{
	position: relative;
	padding: 5rem 0;
}
.single_bk::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #f3f6fa;
	border-radius: 30px;
	z-index: -1;
}
.single_container{
	width: 86.66%;
	margin-right: auto;
	margin-left: auto;
	font-size: 0.9375rem;
}
.single_container .news_dc::after{
	display: none;
}
.single_container .news_dc .news_date::after{
	background-color: rgba(100,100,100,0.25);
}
.sgl_eye{
	margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px){
	.single_bk::before{
		width: 87.17%;
		left: 50%;
		transform: translateX(-50%);
	}
	.single_container{
		width: 72.22%;
		max-width: 1000px;
	}
	.single_container .news_dc{
		padding-bottom: 0;
	}
}
@media screen and (min-width: 1200px){
	.single_bk{
		padding: 9.41rem 0;
	}
	.single_container{
		font-size: 0.941rem;
	}
	.sgl_eye{
		margin-bottom: 3.529rem;
	}
}
@media screen and (max-width: 767px){
	.single_bk::before{
		border-radius: 0;
	}
}