@charset 'UTF-8';
a:hover {
  text-decoration: none;
}
/**************************
/* page 共通
**************************/
.p_container__1200 {
  width: 85%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (min-width: 992px) {
  .p_container__1200 {
    width: 77.77%;
  }
}
@media screen and (min-width: 1200px) {
  .p_container__1200 {
    width: 73%;
  }
}
/* watermark
--------------------------- */
.watermark {
  position: relative;
}
.watermark::before {
  position: absolute;
  content: "";
  background-image: url("../images/watermark.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 10px;
  bottom: 3%;
  right: 3%;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .watermark::before {
    width: 100px;
    height: 15px;
  }
}
/* 背景
--------------------------- */
.bk_f2f2f2 {
  background: #f2f2f2;
}
/* 404
--------------------------- */
.p404_txt {
  margin-bottom: 0;
  margin-top: 1rem;
}
.container404 .page-area {
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .container404 {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .container404 .page-area {
    max-width: 400px;
    margin: 0 auto;
  }
}
/* 各メディアごとのマージン設定
--------------------------- */
/* 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;
  }
}
/*******************************
container
*******************************/
.page_container {
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 1400px) {
  .page_container {
    width: 90%;
  }
}
/* single_container */
.single_container {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1200px) {
  .single_container {
    width: 90%;
  }
}
/*page_container1300*/
.page_container1300 {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1300px;
}
@media screen and (min-width: 992px) {
  .page_container1300 {
    width: 72.22%;
  }
}
/*page_container1000*/
.page_container1000 {
  max-width: 1000px;
  margin: 0 auto;
  width: 85%;
}
@media screen and (min-width: 992px) {
  .page_container1000 {
    width: 72.22%;
  }
}
@media screen and (min-width: 1200px) {
  .page_container1000 {
    width: 66.66%;
  }
}
/*******************************
見出し
*******************************/
/* e_title */
.e_title {
  font-size: 0.85rem;
  line-height: 1;
  margin-bottom: 3rem;
  font-weight: 400;
}
.e_title .f-eng {
  display: block;
  letter-spacing: 0.05rem;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 768px) {
  .e_title {
    font-size: 0.95rem;
    margin-bottom: 4rem;
  }
  .e_title .f-eng {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .e_title {
    margin-bottom: 5rem;
  }
  .e_title .f-eng {
    font-size: 3.8rem;
    margin-bottom: 1.3rem;
  }
}
/*******************************
TOP BUTTON
*******************************/
/* 黒ベタ */
.vm {
  display: inline-block;
  width: 180px;
  text-align: center;
  text-decoration: none;
  line-height: 50px;
  outline: none;
  color: #fff;
  background-color: #1a1a1a;
  position: relative;
  transition: color 0.5s ease;
  height: 50px;
}
.vm:hover {
  color: #fff;
}
a.vm:hover {
  text-decoration: none;
}
.vm:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.vm::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #235bc8;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.vm .text {
  position: relative;
}
.vm.f-eng {
  letter-spacing: 0.05rem;
}
@media screen and (min-width: 768px) {
  .vm {
    width: 230px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .vm {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1400px) {
  .vm {
    width: 280px;
    height: 70px;
    line-height: 70px;
  }
}
/* 白抜き */
.vm.vm-w {
  color: #fff;
  background-color: unset;
  border: 1px solid #fff;
}
.vm.vm-w:hover {
  color: #1a1a1a;
}
.vm.vm-w::before {
  background: #fff;
}
/* 青 */
.vm.vm-b {
  color: #fff;
  background-color: #235bc8;
}
.vm.vm-b:hover {
  color: #fff;
}
.vm.vm-b::before {
  background: #1a1a1a;
}
/*******************************
パンクズ
*******************************/
#pls {
  width: 100%;
  margin: 0;
  padding: 4.5rem 0 3rem;
}
#pan {
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#pan a {
  color: #1a1a1a;
  text-decoration: none;
}
.pan-punctuation {
  display: inline-block;
  position: relative;
}
.pan-punctuation::before {
  content: " ";
  height: 1px;
  position: absolute;
  display: block;
  background-color: rgba(0, 0, 0, 0.55);
  top: 50%;
}
#pan .current-item {
  color: #666666;
}
@media screen and (min-width: 768px) {
  #pan {
    font-size: 0.85rem;
  }
  #pls {
    padding: 6rem 0 4rem;
  }
}
@media screen and (max-width: 1399px) {
  .pan-punctuation {
    width: 12.121%;
    max-width: 4rem;
  }
  .pan-punctuation::before {
    width: calc(100% - 1.6rem);
    left: 0.8rem;
  }
}
@media screen and (min-width: 1400px) {
  #pls {
    padding: 7.5rem 0 6rem;
  }
  .pan-punctuation {
    width: 7.53%;
    max-width: 7rem;
  }
  .pan-punctuation::before {
    width: 71.428%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/*******************************
/* フォーム/テーブル
*******************************/
.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%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form th {
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #1a1a1a;
}
#form td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}
#form2 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form2 th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form2 th {
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #1a1a1a;
  text-align: center;
}
#form2 td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-weight: normal;
  text-align: center;
}
#form3 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form3 tr {
  border-bottom: 1px dotted #bfbfbf;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  display: flex;
}
#form3 th {
  width: 150px;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
}
#form3 th span {
  background-color: #808080;
  display: inline-block;
  width: 150px;
}
#form3 td {
  padding: 10px;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 4rem;
}
#form3 td .tel_txt1 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
#form3 td .tel_txt2 {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  display: block;
}
/* テキストエリアの設定 */
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: 40px;
  }
  #form th {
    width: 100%;
    display: block;
    border-top: none;
  }
  #form td {
    width: 100%;
    display: block;
    border-top: none;
  }
  #form tr:first-child th {
    border-top: 1px solid #ddd;
  }
  #form2 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form2 th {
    width: 50%;
    border-top: none;
    text-align: center;
  }
  #form2 td {
    width: 100%;
    display: block;
    border-top: none;
    text-align: center;
  }
  #form3 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form3 tr {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
  #form3 th {
    width: 50%;
    display: block;
    border-top: none;
  }
  #form3 td {
    width: 100%;
    display: block;
    border-top: none;
    margin-bottom: 0;
    padding-left: 10px;
  }
  #form3 tr:first-child th {
    /*	border-top: 1px solid #ddd;*/
  }
  /* テキストエリアの設定 */
  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;
  }
}
/*入力欄共通装飾*/
#form-wrap input, #form-wrap textarea, #form-wrap select, input[type='date'] {
  background-color: #fff;
  outline: none;
  resize: none;
  margin: 0;
  width: 100%;
  border: 1px rgba(148, 148, 148, 0.25) solid;
}
/*date*/
.fw-datepiker span.wpcf7-form-control-wrap::after {
  display: none;
}
.fw-datepiker input[type='date'] {
  display: block;
  height: 100%;
  border: none;
  line-height: 1.675;
  min-width: 0; /* 必要に応じて最小幅を解除 */
  width: 100% !important;
  -webkit-appearance: none;
  appearance: none;
}
.fw-datepiker input[type='date']::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 0;
  z-index: 100;
}
.fw-datepiker input[type="date"]::-webkit-date-and-time-value, .fw-datepiker input[type="time"]::-webkit-date-and-time-value, .fw-datepiker input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .fw-datepiker input[type='date'] {
    min-height: 4.066666666666667rem;
  }
}
@media screen and (min-width: 1200px) {
  .fw-datepiker input[type='date'] {
    min-height: 4.9rem;
  }
}
/*希望日時部分*/
.form-input-multiline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.form-input-multiline + .form-input-multiline {
  margin-top: 1em;
}
.form-input-Wishto-date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-input-Wishto-date .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.form-input-Wishto-time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-input-Wishto-time .wpcf7-form-control-wrap {
  display: block;
}
.form-input-tk {
  font-size: 0.875em;
  margin-top: 1.5em;
}
/*form reset*/
input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'], input[type='radio'] {
  display: none;
}
input[type='submit'], input[type='button'], label, button, select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/*date*/
.fw-datepiker span.wpcf7-form-control-wrap::after {
  display: none;
}
.fw-datepiker input[type='date'] {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  line-height: 1.675;
}
.fw-datepiker input[type='date']::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 0;
  z-index: 100;
}
.fw-datepiker input[type="date"]::-webkit-date-and-time-value, .fw-datepiker input[type="time"]::-webkit-date-and-time-value, .fw-datepiker input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .fw-datepiker input[type='date'] {
    min-height: 4.066666666666667rem;
  }
}
@media screen and (min-width: 1200px) {
  .fw-datepiker input[type='date'] {
    min-height: 4.9rem;
  }
}
/*******************************
/* プライバシーフレーム
***************************/
.formPrivacy {
  border: 1px solid #CCCCCC;
  background: #fff none repeat scroll 0%;
  height: 150px;
  overflow: scroll;
  max-width: 600px;
  padding: 10px 19px;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 1.0em;
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
.pagenation {
  margin-top: 2rem;
}
.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: 10px;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
  background: #235bc8;
  border-radius: 50%;
  color: #FFFFFF;
  cursor: not-allowed;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pagenation li a {
  position: relative;
  padding: 0;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1a1a1a;
  border-radius: 50%;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  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 {
  display: none;
}
@media screen and (max-width: 767px) {
  .pagenation {
    margin-top: 3.5rem;
  }
  .pagenation li {
    margin-left: 10px;
  }
  .pagenation li.active {
    width: 35px;
    height: 35px;
  }
  .pagenation li a {
    width: 35px;
    height: 35px;
  }
}
/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 30px;
  text-align: center;
}
/*************************
/* single.php 日付
*************************/
#date span {
  color: #878787;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0;
}
/* single.php ページ送り
----------------------------------------------------------------------------------------------------*/
#next {
  background-color: #efefef;
  padding: 10px;
  margin-top: 30px;
}
#next ul {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}
#next ul li {
  list-style: none;
  width: calc((100% - 1rem)/2);
}
.nx_left {
  width: 100%;
  text-align: left;
}
.nx_left a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: .3s;
}
.nx_left a:hover {
  background-color: #ccc;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: .3s;
}
.nx_right {
  width: 100%;
  text-align: right;
}
.nx_right a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: .3s;
}
.nx_right a:hover {
  background-color: #ccc;
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
  transition: .3s;
}
@media screen and (min-width: 992px) {
  #next {
    margin-top: 4rem;
  }
}
/*--------------------------------
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;
  }
  /*-- ここまで --*/
}
/*******************************
/* archive tit
*******************************/
.gall_tit {
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.gall_tit a {
  color: #000;
}
/*************
/* 投稿ギャラリー
*************/
.wp-caption-text {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.gallery {
  margin: 0 -7px;
}
.gallery .gallery-item {
  float: left;
  margin: 0;
  text-align: center;
  width: 25%;
  padding: 7px;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 100%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 50%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .gallery.gallery-columns-2 .gallery-item {
    width: 50%;
  }
  .gallery.gallery-columns-3 .gallery-item {
    width: 33.33%;
  }
}
/*******************************
/* 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;
  }
}
/*フォームコンテナ*/
.form-note-wrap {
  width: 85%;
  margin: 0 auto;
}
.form-container {
  width: 85%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .form-container {
    width: 65%;
  }
  .form-note-wrap .form-p {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .form-container {
    width: 55%;
  }
}
/*****************************
/* form_customize
*****************************/
/* セレクトボックスの矢印をカスタマイズ */
.wpcf7 select {
  /* デフォルトの矢印を非表示にする */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('../images/form_arrow.svg') no-repeat right 20px center; /* 矢印の位置と右側の余白を調整 */
  background-size: 12px 12px; /* 矢印のサイズ */
  padding-right: 30px; /* テキストと矢印の間隔を広げる */
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box; /* パディングとボーダーを含む */
  color: #000; /* フォントの色を指定 */
}
.wpcf7 select:focus {
  border-color: #000; /* フォーカス時のボーダー色を変更 */
  outline: none; /* フォーカスのアウトラインを非表示 */
}
#form_customize input, #form_customize select, #form_customize textarea {
  background-color: #f9f9f9;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0;
  width: 100%;
  border-radius: 0;
  border: 1px solid #d3d3d3;
}
.inversion #form_customize input, .inversion #form_customize select, .inversion #form_customize textarea {
  background-color: #fff;
}
#form_customize input, #form_customize select {
  height: 63px;
}
#form_customize .add input.form-input__small300 {
  margin-bottom: 0.7rem;
}
#form_customize input:focus, #form_customize select:focus, #form_customize textarea:focus {
  outline: none;
}
#form_customize select:focus option {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
#form_customize .form_block {
  margin-bottom: 1.92rem;
}
.select_item {
  position: relative;
  width: 100%;
}
.form_c_item2 .select_item {
  width: 60%;
}
.form_c_item .select_item:first-child {
  margin-bottom: 0.7rem;
}
.form_c_item.select .select_item:first-child {
  margin-bottom: 0;
}
.form_flex_item .form_c_item {
  display: flex;
  align-items: center;
}
.form_flex_item .form_c_item:first-child {
  margin-bottom: 0.7rem;
}
.form_flex_item .form_c_item p {
  margin-right: 1rem;
  width: 50px;
}
.form_flex_item .form_c_item .wpcf7-form-control-wrap {
  width: calc(100% - 50px);
}
@media screen and (min-width: 768px) {
  #form_customize .add input.form-input__small300 {
    width: 50%;
  }
  .form_flex_item {
    display: flex;
    justify-content: space-between;
  }
  #form_customize .form_flex_item .form_c_item {
    width: calc(50% - 1rem);
  }
  .form_flex_item .form_c_item:first-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  #form_customize .add input.form-input__small300 {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .form_flex_item .form_c_item p {
    width: 55px;
  }
}
/* 説明文 */
.form-p {
  margin-bottom: 3rem;
}
.contact_txt {
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.contact_txt span {
  color: #c31a00;
  margin-right: 5px;
  font-size: 1.06rem;
}
@media screen and (min-width: 992px) {
  .form-p {
    margin-bottom: 4rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.9;
  }
}
@media screen and (min-width: 1400px) {
  .form-p {
    margin-bottom: 4.5rem;
  }
}
/* プレースホルダー */
#form_customize .wpcf7-form-control::placeholder {
  color: #d1d1d1;
  opacity: 1;
}
/* ラベル */
#form_customize .form_c_label {
  display: flex;
  margin-bottom: 1.15rem;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0;
  align-items: center;
}
/*先に日付を～*/
.datetime-none {
  font-size: 0.75rem;
  margin: 0.4rem 0 0;
}
/* 必須 */
.form_label_req {
  color: #ffffff;
  margin-right: 0.8rem;
  margin-top: 0;
  line-height: 0;
  background: #235bc8;
  padding: 0.8rem 0.7rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
@media screen and (min-width: 1400px) {
  /*先に日付を～*/
  .datetime-none {
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1800px) {
  .form_label_req {
    margin-right: 0.8rem;
    padding: 1rem 1.1rem 1.12rem;
    font-size: 0.9rem;
  }
}
/* 入力してください */
#form_customize .wpcf7-not-valid-tip {
  font-size: 0.86rem;
  color: #c31a00;
  margin-top: 0.7rem;
}
/* 個人情報 */
#form_customize .form_c_agree {
  border-bottom: none;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}
#form_customize .form_c_agree .form_check_box {
  margin-bottom: 0.8rem;
}
.f_note {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
  text-align: revert;
}
.f_note a {
  color: #1a1a1a;
  text-decoration: underline;
  transition: 0.3s;
}
.wpcf7-list-item-label a:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .f_note {
    text-align: center;
  }
  #form_customize .form_c_agree {
    margin-bottom: 3rem;
  }
}
/* 送信ボタン */
#form_customize .form_c_submit {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 220px;
  margin-right: auto;
  margin-left: auto;
}
#form_customize .form_c_submit input {
  width: 100%;
  height: 55px;
  font-size: 1rem;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 45px;
  margin-bottom: 0;
  padding: 0;
  transition: .3s;
  letter-spacing: 0.01rem;
}
#form_customize .form_c_submit input:hover {
  background-color: #235bc8;
  transition: .3s;
}
#form_customize .form_c_submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 0;
  left: calc((50% + 100px) + 30px);
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .form_c_item .select_item:first-child {
    margin-bottom: 0;
    width: 65.71%;
  }
  .form_c_item .select_item:last-child {
    width: 31.42%;
  }
  /* 説明文 */
  .contact_txt {
    text-align: center;
  }
  /* 入力欄 */
  #form_customize .form_c_item {
    margin-top: 0;
  }
  .form_block .form_c_item.form_c_item2 .select_item {
    width: 50%;
  }
  /* 個人情報 */
  #form_customize .form_c_agree .form_c_item {
    width: 100%;
  }
  #form_customize .form_c_agree .form_check_box .wpcf7-list-item {
    margin-right: 0;
  }
  #form_customize .form_c_agree .form_check_box .wpcf7-form-control {
    justify-content: center;
  }
  /* 送信ボタン */
  #form_customize .form_c_submit::after {
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-width: 992px) {
  #form_customize .form_block {
    margin-bottom: 2.8rem;
  }
  #form_customize input, #form_customize select, #form_customize textarea {
    padding: 1.5rem;
  }
  #form_customize input, #form_customize select {
    height: 80px;
  }
  .select_item.dp::before {
    top: 34px;
  }
  /* ラベル */
  #form_customize .form_c_label {
    margin-bottom: 1.1rem;
  }
  .select_item::before {
    width: 10px;
    height: 10px;
    top: 28px;
    right: 30px;
  }
  #form_customize .form_c_agree {
    margin-top: 0;
    margin-bottom: 3.5rem;
  }
  #form_customize .form_c_submit {
    max-width: 280px;
  }
  #form_customize .form_c_submit input {
    height: 70px;
    font-size: 1.1rem;
    line-height: 70px;
  }
  #form_customize .form_c_agree .form_check_box {
    margin-bottom: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .select_item.dp::before {
    top: 39px;
  }
}
/* CUSTOM SELECTBOX */
#form_customize select {
  color: #d1d1d1;
}
#form_customize select.selected {
  color: #000;
}
/* CUSTOM CHECKBOX */
#form_customize .form_check_box {
  margin-top: 1.2rem;
}
#form_customize .form_check_box .wpcf7-list-item {
  margin: 0.4rem 0 0;
  display: block;
}
#form_customize .form_check_box .wpcf7-list-item.first {
  margin-top: 0;
}
#form_customize .form_check_box label {
  cursor: pointer;
}
#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;
  font-size: 0.9375rem;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
}
#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: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: #f9f9f9;
  border-radius: 0;
  border: 1px solid #d3d3d3;
}
.inversion #form_customize .form_check_box .wpcf7-list-item-label::before {
  background-color: #fff;
}
#form_customize .form_check_box .wpcf7-list-item-label::after {
  position: absolute;
  top: 11px;
  left: 11px;
  width: 8px;
  height: 8px;
  background-color: #1a1a1a;
  border-radius: 0;
  opacity: 0;
}
#form_customize .form_check_box input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #form_customize .form_check_box .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #form_customize .form_check_box.radio .wpcf7-form-control {
    display: flex;
  }
  #form_customize .form_check_box .wpcf7-list-item {
    width: unset;
    margin-bottom: 0;
    margin-right: 2rem;
  }
  #form_customize .form_check_box .wpcf7-list-item {
    margin-top: 0;
  }
  #form_customize .form_check_box.radio .wpcf7-list-item {
    margin: 0 2rem 0 0;
  }
  #form_customize .form_check_box.radio .wpcf7-list-item {
    width: unset;
  }
}
@media screen and (min-width: 992px) {
  #form_customize .form_check_box .wpcf7-form-control-wrap {
    width: 100%;
  }
  #form_customize .form_check_box {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  #form_customize .form_check_box .wpcf7-list-item-label::before {
    width: 35px;
    height: 35px;
    margin-right: 15px;
  }
  #form_customize .form_check_box .wpcf7-list-item-label::after {
    top: 11px;
    left: 11px;
    width: 12px;
    height: 12px;
  }
  .form_check_box label {
    margin-bottom: 0.8rem;
  }
}
/* CUSTOM RADIO */
#form_customize .form_check_box.radio .wpcf7-list-item-label::before {
  border-radius: 50%;
}
#form_customize .form_check_box.radio .wpcf7-list-item-label::after {
  border-radius: 50%;
}
/*希望日時部分*/
.form-input-multiline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.form-input-multiline + .form-input-multiline {
  margin-top: 1em;
}
.form-input-Wishto-date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-input-Wishto-date .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.form-input-Wishto-time {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-input-Wishto-time .wpcf7-form-control-wrap {
  display: block;
}
.form-input-tk {
  font-size: 0.875em;
  margin-top: 1.5em;
}
/*form reset*/
input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  resize: vertical;
}
input[type='checkbox'], input[type='radio'] {
  display: none;
}
input[type='submit'], input[type='button'], label, button, select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/*date*/
.fw-datepiker span.wpcf7-form-control-wrap::after {
  display: none;
}
.fw-datepiker input[type='date'] {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  line-height: 1.675;
}
.fw-datepiker input[type='date']::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  opacity: 0;
  z-index: 100;
}
.fw-datepiker input[type="date"]::-webkit-date-and-time-value, .fw-datepiker input[type="time"]::-webkit-date-and-time-value, .fw-datepiker input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
}
.form-input-Wishto-dat {
  position: relative;
  display: inline-block;
}
.form-input-Wishto-dat input[type="date"] {
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.wpcf7-date-placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #cbcbcb;
  ;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.2s;
}
input[type="date"]:focus + .wpcf7-date-placeholder {
  opacity: 0;
}
input[type="date"]:not(:placeholder-shown) + .wpcf7-date-placeholder {
  background: #f9f9f9;
  width: 100%;
  padding-left: 1.5rem;
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
}
.inversion input[type="date"]:not(:placeholder-shown) + .wpcf7-date-placeholder {
  background: #fff;
}
/* 見学希望日時 */
#form_customize .datetime select {
  -webkit-appearance: none;
  appearance: none;
}
#form_customize .datetime .ff_date select {
  padding: 1.2rem 1.5rem;
  -webkit-padding-start: 1.2rem 1.5rem;
  padding-start: 1.2rem 1.5rem;
}
@media screen and (min-width: 768px) {
  #form_customize .datetime {
    display: flex;
    justify-content: space-between;
  }
  #form_customize .datetime .wpcf7-form-control-wrap {
    width: 100%
  }
  #form_customize .datetime select {
    margin-top: 0;
  }
  #form_customize .datetime .ff_date select {
    padding: 1.2rem 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  #form_customize .datetime .ff_date select {
    padding: 1.7rem;
    -webkit-padding-start: 1.7rem;
    padding-start: 1.7rem;
  }
}
/**************************************
/* マウスストーカー
***************************************/
/* MOUSE FOLLOW */
#mouse-follow {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  background-color: #235bc8;
  border-radius: 50%;
  position: absolute;
  z-index: 1001;
  pointer-events: none;
  will-change: transform;
  transform: scale(0);
  transition: 0.3s;
  opacity: 0;
}
#mouse-follow::before {
  content: "";
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
/* 表示時 */
#mouse-follow.is-show {
  opacity: 0.8;
  transition: 0.3s;
  transform: scale(1);
}
/* 拡大表示 */
#mouse-follow.is-large {
  width: 120px;
  height: 120px;
  margin-top: -70px;
  margin-left: -60px;
  transition: 0.3s;
}
/* c-link-vm 用の表示 */
#mouse-follow.is-show.is-large::before {
  content: "VIEW MORE";
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 0.85rem;
  position: absolute;
  letter-spacing: 0.025rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: transform 0.3s ease-out;
}
/* スマホでは非表示 */
@media screen and (max-width: 767px) {
  #mouse-follow {
    display: none;
  }
}
/*********************
EVENT
*********************/
/*トップ・アーカイブ表示*/
.event_tit {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1.5rem;
}
.event_day span {
  margin-right: 0.7rem;
}
.event_time span {
  letter-spacing: 0.29rem;
  margin-right: 0.6rem;
}
.event_day span, .event_time span {
  min-width: 57px;
}
p.event_day, p.event_time {
  margin-bottom: 0.15rem;
  color: #666666;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
}
p.event_place {
  margin-top: 0.6rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  color: #1a1a1a;
  font-size: 0.95rem;
}
p.event_place span.icon {
  background-image: url(../images/icon_map_b.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  min-width: 20px;
  height: 25px;
  background-position: center;
  display: inline-block;
  margin-right: 0.5rem;
}
@media screen and (min-width: 1400px) {
  .event_tit {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
  }
  p.event_place {
    margin-top: 0.93rem;
  }
}
/*終了しました表示*/
.event_img {
  position: relative;
}
.event_img_end {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9;
}
.event_img_end_txt {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.25rem;
}
/*アーカイブのみ*/
.event_archive .event_item {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .event_archive {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.3rem;
  }
  .event_archive .event_item {
    margin-bottom: 3.5rem;
    width: 50%;
    padding: 0 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .event_archive .event_item {
    width: 33.33%;
  }
}
@media screen and (min-width: 1400px) {
  .event_archive .event_item {
    margin-bottom: 4rem;
    padding: 0 1.6rem;
  }
  .event_archive {
    margin: 0 -1.6rem;
  }
}
@media screen and (min-width: 1400px) {
  .event_archive .event_item {
    margin-bottom: 5rem;
    padding: 0 2rem;
  }
  .event_archive {
    margin: 0 -2rem;
  }
}
/*詳細ページ*/
.Post_page_container h1 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.event_note {
  margin-bottom: 2rem;
}
.Post_page_container .event_note .event_time span {
  letter-spacing: 0.45rem;
}
.event_main_img {
  margin-bottom: 4rem;
  position: relative;
}
.page_form {
  margin-top: 5rem;
}
.Post_page_container .e_title .f-eng {
  font-size: 2rem;
}
.ev_contents {
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .single_container.Post_page_container {
    width: 77.77%;
    max-width: 800px;
  }
  .Post_page_container h1 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .event_note {
    margin-bottom: 3rem;
  }
  .event_main_img {
    margin-bottom: 5rem;
  }
  .Post_page_container .e_title {
    margin-bottom: 3rem;
  }
  .page_form {
    margin-top: 7rem;
  }
  .ev_contents {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 992px) {
  .single_container.Post_page_container {
    width: 66.66%;
  }
}
@media screen and (min-width: 1400px) {
  .Post_page_container h1 {
    margin-bottom: 1.6rem;
  }
  .page_form {
    margin-top: 9rem;
  }
  .Post_page_container .e_title {
    margin-bottom: 3.5rem;
  }
  .ev_contents {
    margin-bottom: 9rem;
  }
}
/*イベント概要*/
.event_detail {
  margin-bottom: 3rem;
}
.event_detail #form {
  margin-bottom: 0;
  background: unset;
}
.event_detail #form th, .event_detail #form td {
  border-bottom: 1px solid #d2d2d2;
  padding: 20px 0;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
.event_detail #form tr:first-child th, .event_detail #form tr:first-child td {
  border-top: 1px solid #d2d2d2;
}
.event_detail #form td .event_end-txt {
  margin-left: 1rem;
  color: #cb0000;
}
@media only screen and (max-width: 479px) {
  .event_detail #form {
    margin-bottom: 0;
  }
  .event_detail #form th {
    border-bottom: none;
    padding: 15px 0 0;
  }
  .event_detail #form td {
    padding: 5px 0 15px;
  }
  .event_detail #form tr:first-child td {
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .event_detail #form th {
    width: 20%;
  }
  .event_detail {
    margin: 0 auto 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .event_detail #form th, .event_detail #form td {
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
  .ev_map {
    margin-top: 3rem;
  }
  .event_detail {
    margin-top: 9rem;
    margin: 0 auto 4.5rem;
  }
  .event_detail .section-title-h2, .event_form .section-title-h2 {
    margin-bottom: 3rem;
  }
  .Post_page_container .e_title .f-eng {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .event_detail #form th, .event_detail #form td {
    padding: 25px 0;
  }
}
/*********************
GALLERY
*********************/
/*トップ・アーカイブ*/
.gallery_item a {
  color: #1a1a1a;
}
.gallery_item a:hover {
  text-decoration: none;
}
.gallery_tit {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 0.625rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1.5rem;
}
.gallery_tit_dc {
  font-size: 0.86rem;
  color: #666666;
}
.model_archive .gallery_img {
  position: relative;
}
/*slider*/
.gallery_item {
  padding: 0 1rem;
}
.slick-dotted.gallery_slider.slick-slider {
  margin-bottom: 0;
  padding-bottom: 3rem;
}
.gallery_slider .slick-list {
  padding: 0 7% !important;
}
@media screen and (min-width: 768px) {
  .gallery_slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -1.5rem;
  }
  .gallery_item {
    padding: 0 1.5rem;
    width: 50%;
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .gallery_item {
    width: 33.33%;
  }
}
@media screen and (min-width: 1400px) {
  .gallery_slider {
    margin: 0 -1.875rem;
  }
  .gallery_item {
    padding: 0 1.875rem;
    margin-bottom: 3.75rem;
  }
  .gallery_tit {
    margin-bottom: 0.7rem;
    margin-top: 1.68rem;
  }
}
/*アーカイブのみ*/
.gallery_archive .gallery_item {
  padding: 0;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .gallery_archive {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.3rem;
  }
  .gallery_archive .gallery_item {
    margin-bottom: 3.5rem;
    width: 50%;
    padding: 0 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .gallery_archive .gallery_item {
    width: 33.33%;
  }
}
@media screen and (min-width: 1400px) {
  .gallery_archive {
    margin: 0 -2rem;
  }
  .gallery_archive .gallery_item {
    margin-bottom: 5rem;
    padding: 0 2rem;
  }
}
/*詳細ページ*/
.fl_page_container {
  width: 85%;
  margin: 0 auto;
}
.ga_details {
  margin-bottom: 3rem;
}
.ga_tag li {
  display: inline-block;
  border: 1px solid rgba(170, 170, 170, 0.5);
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  transition: .3s;
  border-radius: 50px;
  color: #969696;
  line-height: 1;
  margin-right: 0.2rem;
  margin-bottom: 0.5rem;
}
.ga_tag li a {
  text-decoration: none;
}
.ga_tag li a:hover {
  opacity: 0.6;
  transition: .3s;
}
.ga_table {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.ga_table li {
  list-style: none;
  display: flex;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
.ga_table li:first-child {
  border-top: 1px solid rgba(170, 170, 170, 0.5);
}
.ga_table li .item {
  width: 27%;
  text-align: left;
  padding: 0.94rem 0rem 0.94rem 0;
}
.ga_table li .content {
  width: 73%;
  padding: 0.94rem 1.5rem 0.94rem;
}
.ga_eye img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ga_comment {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.sri-contents-image-img {
  margin-bottom: 10px;
}
.single-result-introduction {
  margin-top: 10px;
}
.sri-contents-image-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.button-page-gallery {
  margin-top: 1.7rem;
}
.button-page-gallery.pc-none {
  margin-top: 3rem;
  text-align: center;
}
.gallery-cat-logo {
  margin-bottom: 1rem;
}
.gc-logo-simplenote {
  max-width: 180px;
}
.gc-logo-sankyohome p, .gc-logo-renovation p {
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .ga_details {
    margin-bottom: 4rem;
  }
  .ga_table {
    margin-top: 3rem;
  }
  .sri-contents-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .sri-contents-gallery .sri-contents-image-img {
    width: calc(50% - 5px);
  }
  .button-page-gallery {
    max-width: 360px;
  }
  .button-page-gallery.sp-none {
    display: none;
  }
  .button-page-gallery.pc-none {
    display: block;
    margin: 3rem auto 0;
  }
}
@media screen and (min-width: 992px) {
  .fl_page_container .single_inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  .ga_details {
    position: sticky;
    top: 120px;
    width: 32.46%;
  }
  .ga_contents {
    width: 61.03%;
  }
  .button-page-gallery {
    max-width: unset;
  }
  .ga_details h1.j-font {
    margin-bottom: 1.6rem;
  }
  .ga_table {
    margin-top: 3rem;
  }
  .ga_table li .content {
    width: 83%;
    padding: 0.94rem 0 0.94rem 3.66rem;
  }
  .gallery-cat-logo {
    margin-bottom: 1.5rem;
  }
  .button-page-gallery {
    margin-top: 2rem;
  }
  .button-page-gallery.sp-none {
    display: block;
  }
  .button-page-gallery.pc-none {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .ga_details {
    top: 160px;
  }
  .fl_page_container {
    width: 90%;
  }
}
@media screen and (min-width: 1400px) {
  .ga_details {
    top: 200px;
  }
  .button-page-gallery.sp-none {
    margin-top: 4rem;
  }
}
/*その他*/
.relation {
  border-top: 1px solid #cccccc;
  padding-top: 5rem;
  width: 90%;
  margin: 6rem auto 0;
}
.page_relation_container {
  width: 94.44%;
  margin: 0 auto;
}
.relation .gallery_item {
  padding: 0;
  margin-bottom: 3rem;
}
.button-relation {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .relation_archive {
    display: flex;
    margin: 0 -1rem;
  }
  .relation .gallery_item {
    margin-bottom: 0;
    width: 33.33%;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 992px) {
  .relation {
    padding-top: 7rem;
    margin: 8rem auto 0;
  }
}
@media screen and (min-width: 1200px) {
  .relation {
    width: 95%;
  }
  .page_relation_container {
    width: 94.74%;
  }
}
@media screen and (min-width: 1400px) {
  .relation {
    padding-top: 9rem;
    margin: 10rem auto 0;
  }
  .relation .gallery_item {
    padding: 0 1.3rem;
  }
  .relation_archive {
    margin: 0 -1.3rem;
  }
  .button-relation {
    margin-top: 4.5rem;
  }
}
@media screen and (min-width: 1800px) {
  .relation .gallery_item {
    padding: 0 1.875rem;
  }
  .relation_archive {
    margin: 0 -1.875rem;
  }
}
/***************************************
INFO トップ・アーカイブ共通
***************************************/
.top_info {
  padding: 5rem 0 6rem
}
.top_info a:hover {
  text-decoration: none;
}
.top_info_btn.pc-none {
  margin-top: 3rem;
  margin-left: 7.5%;
}
.top_info .e_title {
  width: 85%;
  margin: 0 auto 2.5rem;
}
.info_list_parts.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.info_list_parts.slick-slider {
  padding-left: calc(7.5% - 1.2rem);
  padding-bottom: 3rem;
}
.info_list_parts .slick-list {
  padding: 0 7.5% 0 0 !important;
}
@media screen and (min-width: 768px) {
  .top_info .e_title {
    width: 100%;
    margin-bottom: 3.5rem;
  }
  .top_info {
    padding: 8rem 0 8rem 7.5%;
  }
}
@media screen and (min-width: 1200px) {
  .top_info {
    padding: 10rem 0 10rem 5%;
  }
}
@media screen and (min-width: 1400px) {
  .post.active a.info_item {
    padding: 0 1.8rem;
  }
  .top_info .e_title {
    margin-bottom: 4.3rem;
  }
  .top_info {
    padding: 12.5rem 0 12.5rem 5%;
  }
}
/*タブ表示*/
.info_container .post {
  display: none;
  transition: all 0.5s;
}
.info_container .post.active {
  display: block;
  transition: all 0.5s;
}
.info_unit02 {
  position: relative;
}
/*タブ表示-END*/
.info_category_box > ul {
  display: flex;
  width: 85%;
  margin: 0 auto 2rem;
}
.info_category_box > ul > li {
  width: auto;
  margin-right: 25px;
}
.info_category_box > ul > li:last-child {
  margin-right: 0;
}
.info_category_list {
  font-size: 0.95rem;
  cursor: pointer;
  color: #666666;
  text-transform: uppercase;
  transition: all 0.5s;
  letter-spacing: 0.025rem;
}
.info_category_list:hover {
  color: #1a1a1a;
  transition: all 0.5s;
}
.info_category_box > ul > li .active {
  color: #1a1a1a;
  position: relative;
  transition: all 0.2s;
}
.info_list_parts > li a {
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
  padding-bottom: 1.33rem;
  padding-top: 1.33rem;
}
.info_list_parts > li:last-child {
  margin-bottom: 0;
}
.post a.info_item {
  display: none;
}
.post.active a.info_item {
  color: #1a1a1a;
  display: block;
  padding: 0 1.2rem;
}
.info_item:hover {
  opacity: 1;
}
.info_img {
  width: 100%;
  position: relative;
}
.info_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-cat {
  position: absolute;
  top: 0;
  left: 0;
  background: #235bc8;
  padding: 0.25rem 1.5rem;
  color: #fff;
  letter-spacing: 0.025rem;
  font-size: 0.88rem;
}
.info_txtbox {
  width: 100%;
}
.info_date_box {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.info_date {
  color: #666666;
  font-size: 0.88rem;
  letter-spacing: 0.025rem;
}
.info_date span.f-eng {
  color: #969696;
  margin-right: 0.7rem;
}
.info_date span.info-cat {
  font-size: 0.77rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 11px;
  background-color: #302d2b;
  color: #fff;
  line-height: 22px;
}
.info_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 1.2rem 0 0.6rem;
  font-size: 1.15rem;
}
.info_list_parts {
  margin-bottom: 0;
}
.info_category_box > ul > li .active::before {
  content: "";
  height: 5px;
  width: 5px;
  display: inline-block;
  border-radius: 50%;
  background: #235bc8;
  position: absolute;
  top: -8px;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .info_block {
    display: flex;
    justify-content: space-between;
  }
  .info_unit01 {
    width: calc(100% - 74.6%);
    display: block;
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    position: relative;
  }
  .top_info_btn.sp-none {
    position: absolute;
    bottom: 0;
  }
  .top_info_btn .vm {
    width: 180px;
  }
  .post.active a.info_item {
    padding: 0 1.5rem;
  }
  .info_list_parts .slick-list {
    padding: 0 10% 0 0 !important;
  }
  .info_list_parts.slick-slider {
    padding-left: calc(10% - 1.5rem);
    padding-bottom: 4rem;
  }
  .info-cat {
    padding: 0.5rem 2.18rem;
    font-size: 0.93rem;
  }
  .info_title {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.25rem;
  }
  .info_date {
    font-size: 0.93rem;
  }
  /*タブ*/
  .info_category_box > ul {
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 0;
    width: 100%;
  }
  .info_category_box > ul > li {
    padding-right: 0;
    margin-right: 0;
    text-align: left;
    margin-bottom: 1rem;
    padding-left: 1rem;
  }
  .info_category_box > ul > li .active::before {
    top: 50%;
    left: -14px;
    transform: translate(0, -50%);
    height: 6px;
    width: 6px;
  }
  .info_unit02 {
    width: 74.6%;
  }
}
@media screen and (min-width: 992px) {
  .info_unit01 {
    width: calc(100% - 82.22%);
  }
  .info_unit02 {
    width: 82.22%;
  }
}
@media screen and (min-width: 1400px) {
  .info_category_box > ul > li {
    margin-bottom: 0.77rem;
  }
  .info_list_parts.slick-slider {
    padding-left: 0;
    padding-bottom: 5rem;
  }
  .info_list_parts .slick-list {
    padding: 0 18% 0 0 !important;
  }
  .info_category_box > ul {
    margin-bottom: 6rem;
  }
  .info_title {
    margin: 1.8rem 0 1rem;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1600px) {
  .top_info_btn .vm {
    width: 230px;
  }
}
/*記事がありません*/
.nopost_txt {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0;
}
.nopost_txt span {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .nopost_txt {
    height: 200px;
  }
}
@media screen and (min-width: 1200px) {
  .nopost_txt {
    height: 300px;
  }
}
/*詳細ページのみ*/
.event_main_img.info_main_img {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .event_main_img.info_main_img {
    margin-top: 3rem;
  }
}
/* ============================ */
/* 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;
  padding-top: 5.33rem;
  border-top: 1px solid #cccccc;
  width: 100%;
  margin: 4rem auto 0;
}
.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;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1;
  position: relative;
  background: #235bc8;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  justify-content: center;
  transition: .3s;
}
.c-post-index__link:hover {
  background: #1a1a1a;
  transition: .3s;
}
.c-post-index__link img {
  display: block;
  width: 16px;
  opacity: 1;
}
.c-post-index__link.link-prev img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  width: 16px;
}
.c-post-index__link.link-prev::before {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.c-post-index__link:hover img {
  opacity: 1;
}
.c-post-index__link.is-disable {
  opacity: 0.3;
  pointer-events: none;
}
.c-post-index__link:hover {
  text-decoration: none;
  opacity: 1;
  transition: .3s;
}
.c-post-index__text {
  line-height: 1;
  text-align: center;
  color: #1a1a1a;
  font-size: 1.05rem;
  text-decoration-line: none;
  letter-spacing: 0.025rem;
}
.c-post-index__text:hover {
  opacity: 0.8;
  text-decoration-line: none;
  transition: .3s;
  color: #1a1a1a;
}
.c-post-index--tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-post-index {
    margin: 5rem auto 0;
    padding-top: 3rem;
  }
  .c-post-index__link {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 992px) {
  .c-post-index {
    margin: 6rem auto 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-post-index__text {
    font-size: 1rem;
  }
  .c-post-index__link {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .c-post-index {
    margin: 7rem auto 0;
    padding-top: 4rem;
  }
  .c-post-index__link {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-post-index {
    padding-top: 3rem;
  }
}
/*アーカイブのみ*/
.info_archive a {
  color: #1a1a1a;
  display: block;
  margin-bottom: 3rem;
}
.info_nav {
  display: flex;
  margin: 0 -0.7rem 3rem;
}
.info_nav li a {
  padding: 0 0.7rem;
  display: block;
  color: #666666;
  position: relative;
}
.info_nav li.active a {
  color: #1a1a1a;
}
.info_nav li.active a::before {
  content: "";
  height: 5px;
  width: 5px;
  display: inline-block;
  border-radius: 50%;
  background: #235bc8;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .info_archive {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.3rem;
  }
  .info_archive a {
    margin-bottom: 3.5rem;
    width: 50%;
    padding: 0 1.3rem;
  }
  .info_nav {
    margin: 0 -0.7rem 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  .info_archive a {
    width: 33.33%;
  }
}
@media screen and (min-width: 1400px) {
  .info_archive {
    margin: 0 -2rem;
  }
  .info_archive a {
    margin-bottom: 5rem;
    padding: 0 2rem;
  }
  .info_nav {
    margin: 0 -0.9rem 4.5rem;
  }
  .info_nav li a {
    font-size: 1.2rem;
    padding: 0 0.9rem;
  }
  .info_nav li.active a::before {
    height: 7px;
    width: 7px;
    top: -12px;
  }
}
/*******************************
/* お客様の声
***************************/
.voice_archive li {
  margin-bottom: 3rem;
}
.voice_tit {
  margin: 1.2rem 0 0;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .voice_archive {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
  }
  .voice_archive li {
    width: 50%;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .voice_archive li {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .voice_archive li {
    width: 33.33%;
  }
}
@media screen and (min-width: 1400px) {
  .voice_archive {
    margin: 0 -2rem;
  }
  .voice_archive li {
    padding: 0 2rem;
  }
  .voice_tit {
    margin: 1.7rem 0 0;
    font-size: 1.3rem;
  }
}
/*******************************
/* デザインカーサ　トップ・ページ共通
***************************/
/*architect slider*/
.top_lineup__dc_architect {
  margin-top: 5rem;
  padding-left: 7.5%;
  display: flex;
  justify-content: space-between;
}
.top_lineup__dc_architect .top_lineup__title {
  writing-mode: vertical-rl;
  margin: 0;
  width: 7%;
  display: flex;
  align-items: end;
}
.architect_img img {
  width: 100%;
  height: auto;
  opacity: 0;
}
.dc_architect_slider.slick-slider .architect_img img {
  opacity: 1;
}
.slider-wrapper {
  width: 93%;
  padding-left: 1.2rem;
  margin-top: 0;
}
.slick-slider.dc_architect_slider {
  margin-bottom: 0
}
.dc_architect_slider .slick-list {
  padding: 0 6% 0 0 !important;
}
.dc_architect_slider .dc_architect_slider_item {
  padding: 0 0.5rem;
}
.dc_architect_slider a.dc_architect_slider_item {
  color: #1a1a1a;
}
.dc_architect_slider a.dc_architect_slider_item:hover {
  text-decoration: none;
}
.architect_name {
  font-size: 1.05rem;
  margin: 0.7rem 0 0.3rem;
}
.architect_office {
  font-size: 0.83rem;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .top_lineup__dc_architect {
    margin-top: 6rem;
  }
}
@media screen and (min-width: 992px) {
  .top_lineup__dc_architect .top_lineup__title {
    width: 2%;
  }
  .slider-wrapper {
    width: 98%;
    padding-left: 5.6rem;
  }
  .architect_name {
    font-size: 1.125rem;
    margin: 1.4rem 0 0.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .dc_architect_slider .slick-list {
    padding: 0 17% 0 0 !important;
  }
  .top_lineup__dc_architect {
    padding-left: 5%;
  }
}
@media screen and (min-width: 1400px) {
  .architect_office {
    font-size: 0.8125rem;
  }
  .top_lineup__dc_architect {
    margin-top: 6.25rem;
  }
  .top_lineup__dc_architect .top_lineup__title {
    font-size: 1.06rem;
  }
}
/*slick-dots*/
.dc_gallery_slider .slick-dots {
  flex-direction: row;
  justify-content: center;
  top: unset;
  right: unset;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dc_gallery_slider .slick-dots {
  justify-content: flex-start;
  bottom: 0;
  left: 7.5%;
  transform: unset;
  margin-left: -0.4rem;
}
.dc_gallery_slider .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 0.4rem;
}
.dc_gallery_slider li button {
  width: 8px;
  height: 8px;
  padding: 0;
}
.dc_gallery_slider .slick-dots li button::before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background-color: #666666;
  border-radius: 50%;
}
.dc_gallery_slider .slick-dots li.slick-active button::before {
  opacity: 1;
  border: none;
  background-color: #235bc8;
}
@media screen and (min-width: 768px) {
  .dc_gallery_slider .slick-dots {
    left: 8.5%;
    transform: unset;
    width: 200px;
    justify-content: flex-start;
    margin-left: -5px;
  }
  .dc_gallery_slider .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0 0.5rem;
  }
}
@media screen and (min-width: 992px) {
  .dc_gallery_slider .slick-dots {
    left: 13.89%;
  }
}
@media screen and (min-width: 1400px) {
  .dc_gallery_slider .gallery_item {
    padding: 0 1.5rem;
  }
}
/************************
/* 建築家紹介(modal)
************************/
/*-- modal --*/
.modal_open {
  display: inline-flex;
}
.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  width: 80%;
  max-height: 60vh;
  margin: 0;
  box-sizing: border-box;
}
.modal_box--inner {
  background: #fff;
  width: 100%;
  height: 100%;
  max-height: 60vh;
  overflow-y: scroll;
}
.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal_prev {
  position: absolute;
  bottom: -7.5rem;
  left: calc(50% - 2.5rem);
  transform: translateX(-50%);
}
.modal_next {
  position: absolute;
  bottom: -7.5rem;
  left: calc(50% + 2.5rem);
  transform: translateX(-50%);
}
.modal_prev .modal_switch, .modal_next .modal_switch {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  width: 3.52rem;
  padding-top: 3.52rem;
  text-transform: uppercase;
}
.modal_prev .modal_switch:hover, .modal_next .modal_switch:hover {
  text-decoration: none;
}
.modal_prev .modal_switch::before, .modal_next .modal_switch::before {
  position: absolute;
  content: "";
  width: 3.52rem;
  height: 3.52rem;
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 0;
}
.modal_prev .modal_switch::after, .modal_next .modal_switch::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 11px;
  top: 33%;
  left: 50%;
  background-image: url("../images/arrow_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.modal_prev .modal_switch::after {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.modal_next .modal_switch::after {
  transform: translate(-50%, -50%);
}
.modal_link a {
  color: #fff;
}
.modal_close {
  position: absolute;
  top: -4.423rem;
  right: 0;
  color: #fff;
  text-align: center;
  width: 2.823rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.025rem;
  cursor: pointer;
  text-transform: uppercase;
}
.modal_close:hover {
  text-decoration: none;
  color: #fff;
}
#page-main .modal_close:hover img {
  opacity: 1;
}
.archi_modal img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .modal_box {
    width: 75%;
    max-height: 80vh;
  }
  .modal_box--inner {
    max-height: 80vh;
  }
  .modal_prev {
    bottom: unset;
    top: 50%;
    left: -4.923rem;
    transform: translateY(-50%);
  }
  .modal_next {
    bottom: unset;
    left: unset;
    top: 50%;
    right: -4.923rem;
    transform: translateY(-50%);
  }
  .modal_prev .modal_switch::after, .modal_next .modal_switch::after {
    width: 19px;
    height: 12px;
    top: 34%;
  }
  .modal_close {
    top: 0;
    right: -4.923rem;
  }
}
@media screen and (min-width: 992px) {
  .modal_prev {
    left: -6.423rem;
  }
  .modal_next {
    right: -6.423rem;
  }
  .modal_close {
    right: -6.423rem;
  }
}
@media screen and (min-width: 1400px) {
  .modal_box {
    width: 80%;
    max-width: 1280px;
  }
}
.archi_modal_txtArea {}
.archi_modal_profile {
  padding: 2.5rem 2.2rem;
}
.modal_archi_office {
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #666666;
}
.modal_archi_name {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.modal_archi_pro {
  border-top: 1px solid #cccccc;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: justify;
  padding-top: 2.5rem;
}
.modal_archi_message {
  background-color: #f2f2f2;
  padding: 2.5rem 2.2rem 3rem;
}
.modal_archi_message .title {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.025rem;
  color: #666666;
}
.modal_archi_message .copy {
  font-size: 1.2rem;
}
.modal_archi_message .message {
  margin-bottom: 0;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .archi_modal_img {
    height: 600px
  }
  #page-main .archi_modal_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #page-main #architect1 .archi_modal_img img, #page-main #architect9 .archi_modal_img img {
    object-position: center 10%;
  }
  #page-main #architect2 .archi_modal_img img, #page-main #architect13 .archi_modal_img img {
    object-position: center 20%;
  }
  #page-main #architect3 .archi_modal_img img, #page-main #architect4 .archi_modal_img img, #page-main #architect5 .archi_modal_img img, #page-main #architect8 .archi_modal_img img {
    object-position: center 5%;
  }
  #page-main #architect6 .archi_modal_img img, #page-main #architect10 .archi_modal_img img, #page-main #architect11 .archi_modal_img img, #page-main #architect12 .archi_modal_img img {
    object-position: center 15%;
  }
  #page-main #architect7 .archi_modal_img img {
    object-position: center 30%;
  }
  .archi_modal_txtArea {
    padding: 4.3rem 3.7rem;
  }
  .archi_modal_profile {
    padding: 0;
    margin-bottom: 3rem;
  }
  .modal_archi_message {
    padding: 3rem 2.5rem 4rem;
  }
  .modal_archi_message .copy {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .archi_modal {
    display: flex;
    align-items: flex-start;
  }
  .archi_modal_img {
    width: 45%;
    height: 100%;
    position: sticky;
    top: 0;
  }
  #page-main .archi_modal_img img {
    max-width: 100%;
    height: auto;
    width: unset;
    object-fit: unset;
  }
  .archi_modal_txtArea {
    width: 55%;
  }
  .modal_archi_message .copy {
    font-size: 1.2rem;
  }
  .modal_box--inner {
    max-height: 380px;
  }
  .modal_box {
    max-height: 380px;
  }
}
@media screen and (min-width: 1200px) {
  .modal_box--inner {
    max-height: 450px;
  }
  .modal_box {
    max-height: 450px;
  }
}
@media screen and (min-width: 1400px) {
  .archi_modal_txtArea {
    padding: 4rem 4.7rem 5.8rem;
  }
  .modal_box--inner {
    max-height: 630px;
  }
  .modal_box {
    max-height: 630px;
  }
}
/************************
/* モデルハウス
************************/
.Post_page_container.Post_page_model h1 {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .Post_page_container.Post_page_model h1 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .Post_page_container.Post_page_model h1 {
    margin-bottom: 3.5rem;
  }
}
/*GALLERY*/
.trade-image-sub {
  width: 87.17%;
  margin: 1rem auto 0;
  max-width: 830px;
}
.trade-image-sub.slick-initialized .slick-slide {
  margin-right: 5px;
  margin-left: 5px;
  position: relative;
  aspect-ratio: 1 / 0.667;
}
.tr-photo-wrap .slick-initialized .slick-slide {
  aspect-ratio: 1 / 0.667;
}
.tr-photo-wrap .slick-initialized .slick-slide img, .trade-image-sub.slick-initialized .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*POINT*/
.model-page-point {
  padding: 4rem 0 3rem;
  margin-top: 5rem;
}
.model-page-point ul {
  margin-bottom: 0;
}
.model-i-img {
  margin-bottom: 1.5rem;
}
.model-i-ttl {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
}
.model-i-ttl .f-eng {
  background: #235bc8;
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.85rem;
  min-width: 30px;
  margin-right: 0.8rem;
}
.model-page-point .model_item {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .model-page-point {
    padding: 5rem 0 2rem;
    margin-top: 6rem;
  }
  .model-page-point ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
  }
  .model-page-point .model_item {
    margin-bottom: 4rem;
    width: 50%;
    padding: 0 1.5rem;
  }
  .Post_page_container .model-page-point .e_title {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .model-page-point {
    padding: 7rem 0 5rem;
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1400px) {
  .model-page-point {
    padding: 8rem 0 6rem;
    margin-top: 9rem;
  }
  .Post_page_container .model-page-point .e_title {
    margin-bottom: 4.5rem;
  }
  .model-i-ttl {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .model-i-img {
    margin-bottom: 1.8rem;
  }
  .model-page-point .model_item {
    padding: 0 2rem;
    margin-bottom: 5rem;
  }
  .model-page-point ul {
    margin: 0 -2rem;
  }
  .model-i-ttl .f-eng {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    min-width: 40px;
    margin-right: 0.8rem;
    line-height: 40px;
  }
  .model-i-ttl .txt {
    margin-top: 2px;
  }
}
/*間取り*/
.model-page-plan {
  padding: 4rem 0 0;
}
.model-page-plan a {
  margin-bottom: 2rem;
  display: block;
}
.model-page-plan .event_detail {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .model-page-plan {
    padding: 5rem 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .model-page-plan {
    padding: 7rem 0 0;
  }
}
/*建築家紹介*/
.model-page-architect {
  padding: 3rem 2rem 4rem;
  margin-top: 5rem;
  font-size: 0.95rem;
}
.model-page-architect .e_title {
  margin-bottom: 2rem;
}
.model-page-architect .txt {
  margin-top: 1.7rem;
}
.model-page-architect .txt1 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.model-page-architect .txt2 {
  font-size: 0.8rem;
  margin-bottom: 1.2rem;
}
.model-page-architect .img {
  aspect-ratio: 3 / 2;
}
.model-page-architect .img img {
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .model-page-architect {
    padding: 4rem 4rem 6rem;
    margin-top: 6rem;
  }
  .model-page-architect .e_title {
    margin-bottom: 3rem;
  }
  .model-page-architect .Profile {
    display: flex;
    justify-content: space-between;
  }
  .model-page-architect .Profile .img {
    width: 48%;
  }
  .model-page-architect .txt {
    margin-top: 0;
    width: 45%;
  }
}
@media screen and (min-width: 992px) {
  .model-page-architect .Profile .img {
    width: 55%;
  }
  .model-page-architect .txt {
    width: 37%;
  }
  .model-page-architect .Profile {
    align-items: center;
  }
}
@media screen and (min-width: 1200px) {
  .model-page-architect {
    padding: 6rem 6rem 7rem;
    margin-top: 8rem;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .model-page-architect .txt1 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  .model-page-architect .txt2 {
    margin-bottom: 1.5rem;
  }
  .model-page-architect .e_title {
    margin-bottom: 3.5rem;
  }
}
/*建築家インタビュー*/
.interview {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .interview {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .interview {
    margin-top: 5rem;
  }
}
/*clicklist*/
.tgl-clicklist *, .tgl-clicklist *:after, .tgl-clicklist *:before {
  box-sizing: border-box;
}
.tgl-clicklist {
  overflow-x: hidden;
  margin: 0 auto;
  border-top: 1px #cccc solid;
}
.tgl-clicklist .tgl-clicklist-tab {
  border-bottom: 1px #cccc solid;
}
.tgl-clicklist label {
  width: 100%;
  margin: 0;
  cursor: pointer;
  color: #000;
  position: relative;
  transition: .3s;
  display: flex;
  align-items: center;
}
.tgl-ct-ttl {
  display: block;
}
.tgl-clicklist .tgl-clicklist-tab-content {
  position: relative;
  overflow: hidden;
  height: 0;
  transition: 0.4s ease;
  opacity: 0;
  display: flex;
}
.tgl-clicklist .tgl-clicklist-tab input[type=checkbox]:checked ~ .tgl-clicklist-tab-content {
  height: auto;
  opacity: 1;
  padding-bottom: 1.5rem;
}
.tgl-clicklist .tgl-clicklist-tab input[type=checkbox] {
  display: none;
}
.tgl-clicklist label {
  padding: 1.2rem 3.2rem 1.2rem 0;
}
.tgl-ct-ttl, .tgl-answer {
  width: calc(100% - 2.5rem);
}
.Q-icon, .A-icon {
  width: 2.5rem;
  font-size: 1.5rem;
  display: block;
  color: #235bc8;
  line-height: 1.5rem;
}
.Q-icon {
  top: -3px;
  position: relative;
}
.tgl-answer {
  padding-right: 3.2rem;
}
@media screen and (min-width: 768px) {
  .tgl-clicklist label {
    padding: 1.5rem 4rem 1.5rem 0;
  }
  .tgl-answer {
    padding-right: 4rem;
  }
  .Q-icon {
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  .tgl-clicklist {
    margin-bottom: 2.4rem;
  }
  .tgl-clicklist label {
    padding: 1.6rem 3.2rem 1.6rem 0;
  }
  .Q-icon, .A-icon {
    width: 2.5rem;
    font-size: 1.6rem;
  }
  .tgl-ct-ttl, .tgl-answer {
    width: calc(100% - 2.5rem);
  }
  .tgl-clicklist .tgl-clicklist-tab input[type=checkbox]:checked ~ .tgl-clicklist-tab-content {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .qa_container {
    width: 77.77%;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1400px) {
  .tgl-clicklist label {
    padding: 1.8rem 6rem 1.8rem 0;
  }
  .tgl-clicklist .tgl-clicklist-tab input[type=checkbox]:checked ~ .tgl-clicklist-tab-content {
    padding-bottom: 3rem;
  }
  .tgl-answer {
    padding-right: 6rem;
  }
}
/* tct-tgl-icon */
.tct-tgl-icon span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.tct-tgl-icon span::before, .tct-tgl-icon span::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #1a1a1a;
  transition: -webkit-transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  top: calc(50% - 1px);
  right: 0;
  border-radius: 2px;
}
.tct-tgl-icon span::before {}
.tct-tgl-icon span::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.tct-tgl-wrap:checked + label .tct-tgl-icon span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tct-tgl-wrap:checked + label .tct-tgl-icon span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tct-tgl-icon {
  position: absolute;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .tct-tgl-icon {
    width: 1.2rem;
    height: 1.2rem;
  }
}
@media screen and (min-width: 1400px) {
  .tct-tgl-icon {
    right: 1rem;
  }
}
/*モデルハウス概要*/
.model-page-detail.event_detail {
  padding: 4rem 0 5rem;
  margin: 5rem auto 4rem;
}
.model-page-detail .ev_map {
  margin-top: 3rem;
}
.model-page-form .page_form {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .model-page-detail.event_detail {
    padding: 6rem 0 7rem;
    margin: 7rem auto 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .model-page-detail.event_detail {
    padding: 7rem 0 8rem;
    margin: 8rem auto 7rem;
  }
}
@media screen and (min-width: 1400px) {
  .model-page-detail .ev_map {
    margin-top: 4.5rem;
  }
}
/***************資料請求********************/
ul.catalog-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
ul.catalog-list li {
  width: 50%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
.cat-txt01 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth"100;
  display: block;
  font-size: 1.5rem;
  margin: 0.7rem 0 0.7rem;
  letter-spacing: 0.025rem;
}
/*選択中　ラジオボタン*/
#form_customize .catalog-list .wpcf7-form-control-wrap {
  position: relative;
}
#form_customize .catalog-list .form-group {
  margin-bottom: 0;
}
#form_customize .catalog-list label {
  margin-bottom: 0;
}
#form_customize .catalog-list .form-input__checkbox .wpcf7-list-item {
  margin: 0;
  display: block;
}
#form_customize .catalog-list .form-input__checkbox label {
  cursor: pointer;
  width: 100%;
  display: inline-block;
  text-align: center;
}
#form_customize .catalog-list .form-input__checkbox input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#form_customize .catalog-list .form-input__checkbox .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  align-items: center;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0;
  width: 80%;
  height: 45px;
  color: #fff;
  text-align: center;
  border-radius: 0;
}
#form_customize .catalog-list .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
#form_customize .catalog-list .form-input__checkbox .wpcf7-list-item-label::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  opacity: 0;
  background-color: #235bc8;
  content: "選択中";
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  line-height: 37px;
}
#form_customize .catalog-list .wpcf7-list-item-label::before {
  content: "資料を選択";
  position: absolute;
  background-color: #1f2126;
  color: #fff;
  width: 100%;
  height: 45px;
  display: block;
  font-size: 1rem;
  left: 0;
  border-radius: 0;
  top: 0;
  line-height: 42px;
  margin: 0;
	    border: none;
}
#form_customize .catalog-list input:checked ~ .wpcf7-list-item-label::before {
  background: transparent;
}
@media screen and (min-width: 768px) {
  #form_customize .form_check_box .catalog-list .wpcf7-form-control {
    display: block;
  }
  ul.catalog-list li {
    width: 33.33%;
  }
	#form_customize .catalog-list .form-input__checkbox .wpcf7-list-item-label::after {
  line-height: 37px;
}
#form_customize .catalog-list .wpcf7-list-item-label::before {
  line-height: 43px;
}
}
@media screen and (min-width: 1200px) {
	    ul.catalog-list li {
        width: 25%;
    }
	.cat-txt01 {
    font-size: 1.4rem;
}
}


/*リキャプチャ*/
.grecaptcha-badge{
	display: none!important;
}
.reCAPTCHA_p {
    text-align: center;
    line-height: 1.5;
    font-size: 0.8rem;
    margin: 2rem 0 0;
    color: #b1b1b1;
}
.reCAPTCHA_p a{
	color: #b1b1b1;
	text-decoration: underline;
}