@charset 'UTF-8';
/*******************************
共通
*******************************/
/*フォント*/
.e_font {
  font-family: "Cinzel", serif;
  font-weight: 400;
}
.e_font500 {
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.j_font {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
}
.j_font_gothic {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
}
/*タイトル-マージン*/
.section_title_box {
  margin-bottom: 3.5rem;
}
.section_title_box.section_title_bottom {
  margin-bottom: 3rem;
}
.section_title_center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section_title_box {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .section_title_box {
    margin-bottom: 4.5rem;
  }
  .section_title_box.section_title_bottom {
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .section_title_box {
    margin-bottom: 5rem;
  }
  .section_title_box.section_title_bottom {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1500px) {
  .section_title_box {
    margin-bottom: 6.2rem;
  }
}
/*タイトル*/
.section_title span {
  display: block;
  font-size: 2.85rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
}
.section_title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .section_title span {
    font-size: 3rem;
    margin-bottom: 0.6rem;
  }
  .section_title {
    font-size: 0.9375rem;
  }
}
/*ボタン*/
.section_btn_center .section_btn {
  margin-left: auto;
  margin-right: auto;
}
.section_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 55px;
}
.section_btn_green {
  color: #fff;
  background-color: #3a6432;
  border: 1px solid rgba(58, 100, 50, 0.5);
  transition: all 0.5s;
  position: relative;
}
.section_btn_green:hover {
  color: #3a6432;
  background-color: #fff;
  transition: all 0.5s;
}
/*.section_btn_white {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
  transition: all 0.5s;
  position: relative;
  z-index: 0;
}
.section_btn_white:hover {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
}*/
/*MOREボタン*/
.more_btn {
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.more_btn_arrow {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
  transition: all 0.5s;
}
.more_btn_txt {
  line-height: 1;
  position: relative;
  transition: all 0.5s;
}
/*MOREボタン-緑色-黒文字*/
.more_btn_arrow_green {
  background-color: #3a6432;
  border: 1px solid rgba(58, 100, 50, 0.5);
}
a:hover .more_btn_arrow_green {
  background-color: #fff;
  transition: all 0.5s;
}
.more_btn_arrow_green::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a:hover .more_btn_arrow_green::before {
  background-image: url("../images/arrow_green.svg");
  transition: all 0.5s;
}
.more_btn_txt_black {
  color: #000;
}
a:hover .more_btn_txt_black {
  color: #3a6432;
  transition: all 0.5s;
}
.more_btn_txt_black::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(58, 100, 50, 0.5);
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s;
}
a:hover .more_btn_txt_black::before {
  opacity: 1;
  transition: all 0.5s;
}
/*MOREボタン-緑色-緑文字*/
.more_btn_txt_green {
  color: #3a6432;
}
a:hover .more_btn_txt_green {
  color: #3a6432;
  transition: all 0.5s;
}
.more_btn_txt_green::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(58, 100, 50, 0.5);
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s;
}
a:hover .more_btn_txt_green::before {
  opacity: 1;
  transition: all 0.5s;
}
@media screen and (min-width: 1200px) {
  .section_btn {
    font-size: 0.875rem;
    width: 200px;
  }
  .more_btn {
    font-size: 0.875rem;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}
/*******************************
共通
*******************************/
/*横幅*/
.cotainer87-855 {
  width: 87%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  .cotainer87-855 {
    width: 85.5%;
  }
}
ul li {
  list-style: none;
}
ul {
  margin-bottom: 0;
}
.page_back_gray {
  background-color: #F0F1F4;
}
/* 各メディアごとのマージン設定
--------------------------- */
/* 768px以上用の記述 */
@media screen and (min-width: 768px) {
  .col-md-m20-bottom {
    margin-bottom: 20px;
  }
  .col-md-none {
    display: none;
  }
}
/* 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-m20-bottom {
    margin-bottom: 20px;
  }
  .col-xs-none {
    display: none;
  }
}
/*******************************
パンクズ
*******************************/
#pls {
  width: 100%;
  margin: 0 auto 3.5rem;
  color: #000;
}
#pan span {
  font-size: 0.785rem;
}
#pan a {
  color: #b4b4b4;
}
.pagenation_line {
  color: #b4b4b4;
  margin: 0 2px;
}
@media screen and (min-width: 1200px) {
  #pls {
    margin-bottom: 5.7rem;
  }
  #pan span {
    font-size: 0.75rem;
  }
  .pagenation_line {
    margin: 0 4px;
  }
}
/*******************************
/* フォーム/テーブル
*******************************/
.form-w {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
}
@media screen and (min-width: 992px) {
  .form-w {
    width: 80%;
  }
}
.wpcf7-submit {
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border-style: none;
  width: 100%;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
  border: 1px solid #000;
}
.wpcf7-submit:hover {
  transition: .4s;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
#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 #000;
}
#form td {
  padding: 10px;
  border-bottom: 1px solid #000;
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}
#form2 tr {
  display: flex;
  flex-wrap: wrap;
}
#form2 tr:first-child th, #form2 tr:first-child td {
  border-top: 1px solid #ccc;
}
#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 {
  background-color: #f9f9f9;
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #ccc;
}
#form2 td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  font-weight: normal;
  width: 70%;
}
#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: 'Manrope', sans-serif;
  line-height: 1;
  display: block;
}
.f-note {
  font-size: 85%;
  color: #ff1414;
}
/* テキストエリアの設定 */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  color: #000;
  padding: 20px;
  margin: 20px 0 10px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="date"] {
  width: 100%;
  color: #000;
  padding: 20px;
  margin: 0 0 10px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #fff;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  input[type="date"] {
    margin: 20px 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    padding: 25px;
  }
  input[type="date"] {
    padding: 25px;
  }
}
@media screen and (max-width: 576px) {
  input[type="date"] {
    text-align: left;
    width: 100%;
  }
  input[type="date"]::before {
    content: attr(placeholder);
    width: 100%;
    color: #000;
    /* padding-left: 10px;*/
    white-space: nowrap;
  }
  input[type="date"].has-value::before {
    content: ""; /* 日付が入力されたらプレースホルダーを非表示にする */
    width: 0;
    padding-left: 0;
  }
}
@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: 100%;
  }
  #form2 td {
    width: 100%;
    display: block;
  }
  #form2 tr:first-child td {
    border-top: none;
  }
  #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: 20px;
    margin: 0 0 10px;
  }
  .wpcf7-submit {
    font-size: 1.2em;
    border-style: none;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}
.form_grecaptcha {
  text-align: center;
  color: #777;
  font-size: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 0;
  display: none;
}
.form_grecaptcha a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .form_grecaptcha {
    margin-top: 4rem;
  }
}
/*******************************
/* イベントテーブル
***************************/
.table th {
  background-color: #f9f9f9;
  border-bottom: 1px solid #CCCCCC;
}
/*******************************
/* プライバシーフレーム
***************************/
.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;
}
/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 2rem;
  text-align: center;
}
.sgl img {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .sgl {
    margin-bottom: 3rem;
  }
}
/*************************
/* single.php 日付
*************************/
#date span {
  color: #FFF;
  background-color: #A8A8A8;
  font-size: 0.8em;
  padding: 5px;
}
/* single.php ページ送り
-------------------------*/
#next {
  background-color: #f6f6f6;
  padding: 10px;
  margin-top: 30px;
}
.nx_left {
  width: 100%;
  text-align: left;
}
.nx_left a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 35px;
  transition: all 0.5s;
}
.nx_left a:hover {
  /*
  background-color: #828282;
*/
  background-color: #a6a3a3;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left2.png);
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.5s;
}
.nx_right {
  width: 100%;
  text-align: right;
}
.nx_right a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
  transition: all 0.5s;
}
.nx_right a:hover {
  /*
  background-color: #828282;
*/
  background-color: #a6a3a3;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right2.png);
  background-repeat: no-repeat;
  background-position: right center;
  transition: all 0.5s;
}
/*--------------------------------
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: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
}
#prev_next #prev p, #prev_next #next p {
  font-size: 90%;
  line-height: 1.5;
}
#prev_next #prev:hover, #prev_next #next:hover {
  background-color: rgba(238, 238, 238, 0.7);
}
#prev_next #prev {
  border-right: #ccc 1px solid;
}
#prev_next #prev_title, #prev_next #next_title {
  font-size: 90%;
  top: -1em;
  position: absolute;
  border: 1px #ccc solid;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #666;
}
#prev_next #next_title {
  right: 10px;
}
#prev_next #prev img, #prev_next #next img {
  margin: 0 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: #ccc 1px solid;
}
#prev_next_home {
  margin: 0 auto;
  background-color: #1a1a1a;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #1a1a1a;
  -webkit-box-shadow: 0 0 0 3px #1a1a1a;
  -moz-box-shadow: 0 0 0 3px #1a1a1a;
  text-align: center;
}
#prev_next_home:hover {
  opacity: 0.7;
}
#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px;
}
/*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 -5px;
}
.gallery .gallery-item {
  float: left;
  margin: 0;
  text-align: center;
  width: 25%;
  padding: 5px;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.33%;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .gallery-caption {
  margin-left: 0;
  margin-bottom: 35px;
  padding-right: 20px;
  padding-left: 20px;
}
/*-----------------------------
wordpressのギャラリースマホ調整
------------------------------*/
@media screen and (max-width: 640px) {
  #gallery-1, #gallery-2, #gallery-3, #gallery-4, #gallery-5, #gallery-6 {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    float: none;
    width: 50% !important;
    margin: 0;
  }
  .gallery.gallery-columns-2 .gallery-item, .gallery-columns-3 .gallery-item {
    width: 100%;
  }
  .gallery .gallery-item {
    padding: 3px;
  }
}
/*******************************
/* 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
*******************************/
.con_form .wpcf7-list-item {
  display: block;
}
/*******************************
/*関連画像
*******************************/
.related-thumb {
  height: 120px;
}
.related-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.related-title {
  margin: 8px 0;
  color: #000;
  text-align: center;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (min-width: 992px) {
  .related-thumb {
    height: 200px;
  }
}
/***************************************
about_container-(トップ、会社概要共通)
***************************************/
.about_container {
  padding-bottom: 4rem;
  margin-bottom: 5.7rem;
  position: relative;
  z-index: 0;
}
.about_container::before {
  content: "";
  display: block;
  width: 100%;
  height: 97.8%;
  background-color: #fafafa;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.about_block {
  width: 77%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.about_unit01 {
  width: 20%;
}
.about_head {
  font-size: 1.42rem;
  letter-spacing: 0.1em;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  margin: 0;
  display: inline-block;
}
.about_unit02 {
  padding-top: 4.6rem;
  width: 80%;
}
.about_unit02 > ul > li {
  margin-bottom: 2.28rem;
}
.about_unit02 > ul > li:last-child {
  margin-bottom: 0;
}
.about_item {
  display: block;
}
.about_img {
  margin-bottom: 1.4rem;
}
.about_title span {
  display: block;
  font-size: 0.928rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #646464;
  margin-bottom: 0.5rem;
}
.about_title {
  font-size: 1.14rem;
  letter-spacing: 0.08em;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about_container {
    padding-bottom: 5rem;
    margin-bottom: 6.7rem;
  }
  .about_unit01 {
    width: 15%;
  }
  .about_unit02 {
    padding-top: 5.6rem;
    width: 85%;
  }
  .about_unit02 > ul {
    display: flex;
    gap: 3%;
  }
  .about_unit02 > ul > li {
    width: calc((100% - 6%) / 3);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .about_unit01 {
    width: 10%;
  }
  .about_unit02 {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .about_container {
    padding-bottom: 6rem;
    margin-bottom: 8.6rem;
  }
  .about_container::before {
    height: 97%;
    width: 92.8%;
  }
  .about_block {
    width: 72.2%;
  }
  .about_unit01 {
    width: 11.5%;
  }
  .about_unit02 {
    padding-top: 7.2rem;
    width: 88.5%;
  }
  .about_head {
    font-size: 1.75rem;
  }
  .about_img {
    margin-bottom: 1.8rem;
  }
  .about_title span {
    font-size: 0.875rem;
    margin-bottom: 0.7rem;
  }
  .about_title {
    font-size: 1.25rem;
  }
}
/***************************************
model_container(トップ、スタッフ紹介共通)
***************************************/
.model_container {
  margin-bottom: 5.4rem;
}
.model_back {
  position: relative;
  z-index: 0;
  padding-bottom: 5.8rem;
}
.model_back::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.model_block {
  margin-bottom: 1.8rem;
}
.model_slider_img {
  height: 260px;
}
.model_slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model_wrap {
  width: 87%;
  margin: 0 auto;
}
.model_unit01 {
  margin-bottom: 4rem;
}
.model_title {
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.model_title span {
  margin-left: -0.6rem;
}
.model_txt {
  line-height: 1.64;
  letter-spacing: 0;
  margin-bottom: 0;
}
.model_unit02 .section_btn {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .model_container {
    margin-bottom: 7rem;
  }
  .model_back {
    padding-bottom: 6.8rem;
  }
  .model_back::before {
    height: 55%;
  }
  .model_back_inner {
    width: 77%;
    margin: 0 auto;
  }
  .model_block {
    margin-bottom: 1.95rem;
  }
  .model_slider_img {
    height: 100%;
  }
  .model_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .model_unit01 {
    margin-bottom: 0;
  }
  .model_unit02 .section_btn {
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .model_title {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .model_container {
    margin-bottom: 8.4rem;
  }
  .model_back {
    padding-bottom: 8.5rem;
  }
  .model_back::before {
    height: 61.5%;
    width: 92.8%;
  }
  .model_back_inner {
    width: 55.5%;
  }
  .model_title {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
  }
  .model_title span {
    margin-left: -0.9rem;
  }
  .model_txt {
    font-size: 0.9375rem;
    line-height: 1.53;
    margin-left: -0.15rem;
  }
}
@media screen and (min-width: 1500px) {
  .model_container .section_title_box {
    margin-bottom: 6.4rem;
  }
}
/*||slick||*/
.model_slider {
  margin-bottom: 0 !important;
}
.model_slider .slick-prev, .model_slider .slick-next {
  z-index: 100;
  top: auto;
  bottom: -1px;
  transform: translate(0%, 0%);
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: #fff;
}
.model_slider .slick-prev {
  left: auto;
  right: calc(0% + 49px);
  border-right: 1px solid rgba(180, 180, 180, 0.25);
}
.model_slider .slick-next {
  left: auto;
  right: -1px;
}
.model_slider .slick-prev::before {
  content: "";
  display: block;
  width: 8px;
  height: 11px;
  background-image: url("../images/prev_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
.model_slider .slick-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 11px;
  background-image: url("../images/next_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .model_slider .slick-prev, .model_slider .slick-next {
    width: 60px;
    height: 60px;
  }
  .model_slider .slick-prev {
    right: calc(0% + 59px);
  }
}
@media screen and (min-width: 1200px) {
  .model_slider .slick-prev, .model_slider .slick-next {
    width: 70px;
    height: 70px;
  }
  .model_slider .slick-prev {
    right: calc(0% + 69px);
  }
  .model_slider .slick-prev::before {
    width: 10px;
    height: 13px;
  }
  .model_slider .slick-next::before {
    width: 10px;
    height: 13px;
  }
}
/***************************************
lineup_container(トップ、商品ラインナップ共通)
***************************************/
.lineup_container {
  background-color: #f0f1f4;
  padding: 5.4rem 0;
  margin-bottom: 5.8rem;
}
.lineup_container .section_title_box {
  margin-bottom: 3.6rem;
}
.lineup_block {
  width: 87%;
  margin: 0 auto 4.3rem;
}
.lineup_block > ul > li {
  margin-bottom: 3.5rem;
}
.lineup_block > ul > li:last-child {
  margin-bottom: 0;
}
.lineup_unit01 {
  position: relative;
  z-index: 0;
}
.lineup_logo {
  position: absolute;
  top: 0;
  left: 0;
}
.lineup_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lineup_logo01 {
  width: 70px;
  height: 70px;
}
.lineup_logo02 {
  width: 70px;
  height: 78px;
}
.lineup_logo03 {
  width: 98px;
  height: 70px;
}
.lineup_img {
  height: 234px;
}
.lineup_img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.lineup_unit02 {
  background-color: #fff;
  padding: 3.4rem 0 4.3rem;
  position: relative;
}
.lineup_pass_img {
  position: absolute;
  z-index: 3;
}
.lineup_pass_img01 {
  width: 168px;
  top: -4.6rem;
  right: -1.2rem;
}
.lineup_pass_img02 {
  width: 190px;
  top: -4.6rem;
  right: -1.8rem;
}
.lineup_pass_img03 {
  width: 164px;
  top: -5.3rem;
  right: -1.1rem;
}
.lineup_unit02_inner {
  width: 88%;
  margin: 0 auto;
}
.lineup_title span {
  display: block;
  font-size: 2.28rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lineup_title {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 2.3rem;
}
.lineup_txt {
  line-height: 1.71;
  letter-spacing: 0;
  text-align: justify;
  margin-bottom: 2.6rem;
}
.lineup_unit02 .more_btn_box {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .lineup_container {
    padding: 6.4rem 0 7rem;
    margin-bottom: 6.8rem;
  }
  .lineup_item {
    display: flex;
  }
  .lineup_unit01 {
    width: 50%;
  }
  .lineup_block {
    margin-bottom: 6.5rem;
  }
  .lineup_block > ul > li {
    margin-bottom: 4.5rem;
  }
  .lineup_block > ul > li:nth-child(2n) .lineup_unit01 {
    order: 2;
  }
  .lineup_block > ul > li:nth-child(2n) .lineup_logo02 {
    left: auto;
    right: 0;
  }
  .lineup_img {
    height: 100%;
  }
  .lineup_unit02 {
    width: 50%;
  }
  .lineup_block > ul > li:nth-child(2n) .lineup_unit02 {
    order: 1;
  }
  .lineup_unit02_inner {
    width: 77%;
  }
  .lineup_pass_img01 {
    top: auto;
    right: -1.2rem;
    bottom: -1.5rem;
  }
  .lineup_pass_img02 {
    top: auto;
    right: -22%;
    bottom: -1.5rem;
  }
  .lineup_pass_img03 {
    top: auto;
    right: -1.1rem;
    bottom: -1.5rem;
  }
  .lineup_title {
    text-align: left;
  }
  .lineup_unit02 .more_btn_box {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .lineup_container .section_title_box {
    margin-bottom: 4.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .lineup_container {
    padding: 8.5rem 0 8.8rem;
    margin-bottom: 8.5rem;
  }
  .lineup_block {
    width: 85.5%;
    margin-bottom: 8.7rem;
  }
  .lineup_logo01 {
    width: 100px;
    height: 100px;
  }
  .lineup_logo02 {
    width: 100px;
    height: 110px;
  }
  .lineup_logo03 {
    width: 140px;
    height: 100px;
  }
  .lineup_block > ul > li {
    margin-bottom: 6.3rem;
  }
  .lineup_unit02 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lineup_unit02_inner {
    width: 72%;
  }
  .lineup_block > ul > li:nth-child(2n) .lineup_unit02_inner {
    width: 64%;
  }
  .lineup_title {
    font-size: 0.9375rem;
    margin-bottom: 3.5rem;
  }
  .lineup_txt {
    width: 86%;
    line-height: 1.625;
    margin-bottom: 3.6rem;
  }
  .lineup_block > ul > li:nth-child(2n) .lineup_txt {
    width: 97%;
  }
  .lineup_pass_img01 {
    width: 290px;
    right: -3.2rem;
    bottom: -3.5rem;
  }
  .lineup_pass_img02 {
    width: 330px;
    right: -23.3%;
    bottom: -1.9rem;
  }
  .lineup_pass_img03 {
    width: 290px;
    right: -2.9rem;
    bottom: -2.8rem;
  }
}
@media screen and (min-width: 1500px) {
  .lineup_container .section_title_box {
    margin-bottom: 6.4rem;
  }
  .lineup_unit02 {
    padding: 0;
  }
  .lineup_title span {
    font-size: 3rem;
    margin-bottom: 0.6rem;
  }
  .lineup_pass_img02 {
    right: -14.3%;
  }
}
/*||reform_block||*/
.reform_block {
  width: 77%;
  margin: 0 auto;
  max-width: 760px;
}
.reform_item {
  display: block;
}
.reform_img_wrap {
  position: relative;
  z-index: 0;
}
.reform_img {
  position: relative;
  z-index: 0;
}
.reform_img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.reform_title span {
  display: block;
  font-size: 1.85rem;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.reform_title {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin-bottom: 0;
}
.reform_bottom {
  background-color: #3a6432;
  padding: 0.8rem 0;
  text-align: center;
}
.reform_bottom_txt {
  font-size: 0.892rem;
  letter-spacing: 0.03em;
  color: #fff;
  font-weight: 100;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .reform_img::before {
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.5s;
  }
  a:hover .reform_img::before {
    background-color: rgba(0, 0, 0, 0.55);
    transition: all 0.5s;
  }
}
@media screen and (min-width: 1200px) {
  .reform_title span {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
  }
  .reform_title {
    font-size: 0.9375rem;
    top: 49%;
  }
  .reform_bottom {
    padding: 0.6rem 0;
  }
  .reform_bottom_txt {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
  }
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
/*.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}*/
.pagenation ul {
  margin: 0;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180, 180, 180, 0.25);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 3px;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
  color: #000;
  cursor: not-allowed;
  padding: 10px 10px;
  display: inline-block;
  position: relative;
  font-family: "Cinzel", serif;
  font-weight: 400;
}
/*.pagenation li.active::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}*/
.pagenation li a {
  /*  background: none repeat scroll 0 0 #fff;*/
  background: inherit;
  color: #a0a0a0;
  padding: 10px 10px;
  text-decoration: none;
  display: inline-block;
  font-family: "Cinzel", serif;
  font-weight: 400;
}
.pagenation li a:hover {
  text-decoration: none;
}
.pagenation li.active, .pagenation li a {
  font-size: 1.2rem;
}
.pagenation .next, .pagenation .prev {
  display: none;
}
@media screen and (min-width: 768px) {
  .pagenation ul {
    padding-top: 1.6rem;
    margin-top: 6rem;
    margin-bottom: 18rem;
  }
  .pagenation li.active, .pagenation li a {
    font-size: 1.25rem;
    padding: 10px 14px;
  }
  .pagenation li:first-child {
    margin-right: auto;
  }
  .pagenation li:last-child {
    margin-left: auto;
    margin-right: 0;
  }
  .pagenation .next, .pagenation .prev {
    font-size: 1rem;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    display: block;
  }
  .pagenation .next span, .pagenation .prev span {
    font-size: 1rem;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
  }
  .pagenation .next a, .pagenation .prev a {
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
  }
  .pgna_icon {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #3a6432;
    border-radius: 50%;
    position: relative;
  }
  .pagenation .pgna_icon_next {
    margin-left: 10px;
  }
  .pagenation .pgna_icon_next::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-image: url("../images/arrow_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
  }
  .pagenation .pgna_icon_prev {
    margin-right: 10px;
  }
  .pagenation .pgna_icon_prev::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-image: url("../images/arrow_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
}
@media screen and (min-width: 1200px) {
  .pagenation ul {
    margin-bottom: 12.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .pagenation ul {
    margin-bottom: 15.5rem;
  }
}
/***************************************
event_container
***************************************/
.event_container {
  background-color: #f0f1f4;
  padding: 5.5rem 0;
  margin-bottom: 5.8rem;
}
.event_left {
  width: 87%;
  margin: 0 auto 3.5rem;
}
.event_left .section_title_box {
  margin-bottom: 0;
}
.event_btn_pc {
  display: none;
}
.event_right .event_block {
  margin-bottom: 4rem;
}
.event_item {
  display: flex;
  flex-direction: column;
  width: 93%;
  height: 100%;
  color: #000;
}
.event_img_wrap {
  position: relative;
  margin-bottom: 1.7rem;
}
.event_category_name {
  font-size: 0.928rem;
  letter-spacing: 0.12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 2rem;
  background-color: #000;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.event_img {
  aspect-ratio: 60 / 43;
  position: relative;
}
.event_img_end {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 0;
}
.event_img_end_txt {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.event_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event_title {
  font-size: 1.14rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  flex-grow: 1;
}
.event_detail {
  letter-spacing: 0;
  margin-bottom: 0.1rem;
}
.event_detail_wrap .event_detail:last-child {
  margin-bottom: 0;
}
.event_item .more_btn_box {
  display: none;
}
@media screen and (min-width: 768px) {
  .event_container {
    padding: 7rem 0;
    margin-bottom: 7rem;
  }
  .event_right .event_block {
    margin-bottom: 5rem;
  }
  .event_item .more_btn_box {
    display: block;
    margin-top: 1.3rem;
  }
  .event_item .more_btn {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1200px) {
  .event_container {
    padding: 8.5rem 0;
    margin-bottom: 8.8rem;
  }
  .event_2col_wrap {
    display: flex;
  }
  .event_left {
    width: 30.6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 7.2%;
    border-right: 1px solid rgba(180, 180, 180, 0.25);
    margin-bottom: 0;
  }
  .event_btn_pc {
    display: block;
  }
  .event_right {
    padding-top: 0.2rem;
    width: 69.4%;
    padding-bottom: 0.5rem;
  }
  .event_right .event_block {
    margin-bottom: 0;
  }
  .event_item {
    width: 87%;
  }
  .event_img_wrap {
    margin-bottom: 1.9rem;
  }
  .event_img {
    aspect-ratio: 40 / 29;
  }
  .event_category_name {
    font-size: 0.8125rem;
    padding: 2px 1.7rem;
  }
  .event_btn_sp {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .event_left {
    padding-left: 10.7%;
  }
  .event_title {
    font-size: 1.25rem;
    margin-bottom: 0.95rem;
  }
  .event_detail {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1700px) {
  .event_left {
    padding-left: 13.7%;
  }
}
/*||slick||*/
.event_slider {
  display: none;
}
.event_slider.slick-initialized {
  display: block;
}
.event_slider {
  padding-left: 6.5%;
}
.event_slider .slick-list {
  padding: 0 12% 0 0 !important;
}
.event_slider .slick-track {
  display: flex;
}
.event_slider .slick-slide {
  height: auto !important;
}
.event_slider .slick-prev, .event_slider .slick-next {
  z-index: 100;
  top: -7.85rem;
  bottom: auto;
  transform: translate(0%, 0%);
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: #fff;
}
.event_slider .slick-prev {
  left: auto;
  right: calc(6.3% + 51px);
}
.event_slider .slick-next {
  left: auto;
  right: 6.3%;
}
.event_slider .slick-prev::before {
  content: "";
  display: block;
  width: 8px;
  height: 11px;
  background-image: url("../images/prev_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
.event_slider .slick-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 11px;
  background-image: url("../images/next_arrow_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .event_slider .slick-prev, .event_slider .slick-next {
    width: 60px;
    height: 60px;
  }
  .event_slider .slick-prev {
    right: calc(6.3% + 61px);
  }
}
@media screen and (min-width: 992px) {
  .event_slider .slick-list {
    padding: 0 9.5% 0 0 !important;
  }
}
@media screen and (min-width: 1200px) {
  .event_slider {
    padding-left: 11.15%;
  }
  .event_slider .slick-list {
    padding: 0 10% 0 0 !important;
  }
  .event_slider .slick-prev, .event_slider .slick-next {
    top: 8.3rem;
    width: 70px;
    height: 70px;
  }
  .event_slider .slick-prev {
    left: -33.8%;
    right: auto;
  }
  .event_slider .slick-prev::before {
    width: 10px;
    height: 13px;
  }
  .event_slider .slick-next {
    left: calc(-33.8% + 71px);
    right: auto;
  }
  .event_slider .slick-next::before {
    width: 10px;
    height: 13px;
  }
}
@media screen and (min-width: 1500px) {
  .event_slider .slick-list {
    padding: 0 17% 0 0 !important;
  }
  .event_slider .slick-prev {
    left: -28.6%;
  }
  .event_slider .slick-next {
    left: calc(-28.6% + 71px);
  }
}
@media screen and (min-width: 1700px) {
  .event_slider .slick-prev {
    left: -24.1%;
  }
  .event_slider .slick-next {
    left: calc(-24.1% + 71px);
  }
}
/***************************************
イベント一覧 
***************************************/
.archive_event_container .event_block > ul > li {
  margin-bottom: 4rem;
}
.archive_event_container .event_block .event_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .archive_event_container .event_block > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
  .archive_event_container .event_block > ul > li {
    width: calc((100% - 4%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .archive_event_container .event_block > ul > li {
    width: calc((100% - 8%) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .archive_event_container .event_block > ul > li {
    margin-bottom: 6rem;
  }
}
/***************************************
 イベント詳細
***************************************/
.single_event_container .single_main_back {
  width: 94%;
  margin: 0 auto 6rem;
  max-width: 800px;
}
@media screen and (min-width: 1200px) {
  .single_event_container .single_main_back {
    margin-bottom: 8rem;
  }
}
.siev_top_block {
  margin-bottom: 3rem;
}
.siev_top_category_name {
  font-size: 0.928rem;
  letter-spacing: 0.12rem;
  display: inline-block;
  padding: 2px 2rem;
  background-color: #000;
  color: #fff;
  margin-bottom: 0.8rem;
}
.event_eye_img {
  margin-bottom: 3.5rem;
}
.event_eye_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sievent_btn {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3a6432;
  border: 1px solid rgba(58, 100, 50, 0.5);
  color: #fff;
  height: 55px;
  width: 77%;
  max-width: 300px;
  margin: 0 auto 4rem;
  margin-bottom: 4rem;
  font-weight: 500;
  border-radius: 45px;
  transition: all 0.5s;
}
.sievent_btn:hover {
  background-color: #fff;
  color: #3a6432;
  transition: all 0.5s;
}
.sievent_contents {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .siev_top_wrap {
    display: flex;
  }
  .siev_top_category_name {
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .siev_top_wrap .event_detail_wrap {
    display: flex;
  }
  .siev_top_wrap .event_detail_wrap .event_detail:first-child {
    margin-right: 1.5rem;
  }
  .event_eye_img {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .siev_top_block {
    margin-bottom: 3.5rem;
  }
  .siev_top_category_name {
    font-size: 0.8125rem;
    padding: 2px 1.7rem;
  }
  .sievent_btn {
    font-size: 1rem;
    padding: 0;
    height: 60px;
    margin-bottom: 6rem;
  }
  .sievent_contents {
    margin-bottom: 7.4rem;
  }
}
/*||event詳細-繰り返し内容||*/
.siev_repeat_block {
  /*  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(151, 151, 151, 0.25);*/
  margin-bottom: 6rem;
}
.siev_repeat_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.siev_repeat_block > ul > li {
  margin-bottom: 4rem;
}
.siev_repeat_block > ul > li:last-child {
  margin-bottom: 0;
}
.siev_repeat_title {
  margin-bottom: 2rem;
}
.siev_repeat_txt {
  margin-bottom: 2.5rem;
}
.siev_repeat_btn {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3a6432;
  border: 1px solid rgba(58, 100, 50, 0.5);
  color: #fff;
  height: 55px;
  width: 77%;
  max-width: 300px;
  margin: 3rem auto 0;
  margin-bottom: 4rem;
  font-weight: 500;
  border-radius: 42px;
  transition: all 0.5s;
}
.siev_repeat_btn:hover {
  background-color: #fff;
  color: #3a6432;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .single_voice_eyeimg {
    aspect-ratio: 48 / 23;
  }
}
@media screen and (min-width: 1200px) {
  .siev_repeat_block {
    /*   padding-bottom: 7.5rem;*/
    margin-bottom: 8rem;
  }
  .siev_repeat_block > ul > li {
    margin-bottom: 5.7rem;
  }
  .siev_repeat_title {
    margin-bottom: 2.4rem;
  }
  .siev_repeat_txt {
    margin-bottom: 3rem;
  }
  .siev_repeat_btn {
    font-size: 1rem;
    padding: 0;
    height: 60px;
    margin-top: 5rem;
  }
}
/*||event詳細-table||*/
.event_table_block {
  margin-bottom: 4rem;
}
.event_table_block tr {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(180, 180, 180, 0.25);
  padding: 0.8rem 0;
}
.event_table_block tr:first-child {
  border-top: 1px solid rgba(180, 180, 180, 0.25);
}
.event_table_block tr:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.event_table_block th {
  line-height: 1;
  width: 17%;
  font-weight: 400;
  padding: 5px 0;
}
.event_table_block td {
  width: 83%;
  padding-left: 5%;
}
@media screen and (min-width: 1200px) {
  .event_table_block {
    margin-bottom: 4.5rem;
  }
  .event_table_block tr {
    font-size: 0.9375rem;
    padding: 1.4rem 0;
  }
}
/*||event詳細-電話番号||*/
.single_form_tel {
  width: 87%;
  margin: 0 auto 2rem;
  max-width: 1300px;
}
.pgcontact_tel_item {
  display: block;
  color: #000;
  background-color: #fafafa;
  padding: 2.3rem 0 2.8rem;
  transition: all 0.5s;
}
.pgcontact_tel_item:hover {
  color: #000;
  transition: all 0.5s;
}
.pgcontact_tel_inner {
  width: 88%;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pgcontact_tel_name {
  font-size: 1.14rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.pgcontact_tel_number {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.pgcontact_tel_txt {
  /*  font-size: 0.714rem;*/
  font-size: 0.928rem;
  line-height: 1;
  letter-spacing: 0;
  margin-left: -6px;
  white-space: nowrap;
}
.page_arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  transition: all 0.5s;
}
.page_arrow_green {
  background-color: #3a6432;
  border: 1px solid rgba(58, 100, 50, 0.5);
}
.page_arrow_green::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
a:hover .page_arrow_green::before {
  background-image: url("../images/arrow_green.svg");
  transition: all 0.5s;
}
.pgcontact_tel_item:hover .page_arrow_green {
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (min-width: 768px) {
  .pgcontact_block {
    margin-bottom: 5rem;
  }
  .pgcontact_tel_item {
    padding: 4.3rem 0 4.8rem;
  }
  .pgcontact_tel_inner {
    width: 86%;
    align-items: center;
  }
  .pgcontact_tel_unit01 {
    display: flex;
    align-items: center;
  }
  .pgcontact_tel_name {
    font-size: 1.25rem;
    margin-right: 4rem;
    margin-bottom: 0;
  }
  .pgcontact_tel_number {
    font-size: 2.2rem;
  }
  .pgcontact_tel_txt {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .page_arrow {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .pgcontact_block {
    margin-bottom: 6rem;
  }
  .pgcontact_tel_item {
    padding: 5.3rem 0 5.8rem;
  }
  .pgcontact_tel_number {
    font-size: 2.5rem;
  }
  .pgcontact_tel_name {
    margin-right: 7rem;
  }
}
@media screen and (min-width: 1200px) {
  .pgcontact_block {
    margin-bottom: 6.2rem;
  }
  .single_form_tel {
    margin-bottom: 2.4rem;
  }
  .pgcontact_tel_item {
    padding: 5.8rem 0 5.8rem;
  }
  .pgcontact_tel_name {
    margin-right: 9.2rem;
  }
  .pgcontact_tel_number {
    margin-bottom: 1.4rem;
  }
}
/*||event詳細-フォーム||*/
.single_event_form_container {
  background-color: #fafafa;
  width: 87%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 0;
}
.single_form_block {
  width: 87%;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .single_event_form_container {
    padding: 5.6rem 0 8.8rem;
  }
}
/***************************************
prev,next表示
***************************************/
/*||prev,next表示||*/
.single_nextbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 87%;
  margin: 4.5rem auto 0;
  padding-top: 3.7rem;
  border-top: 1px solid rgba(180, 180, 180, 0.25);
}
.single_prev, .single_next {
  margin-bottom: 0;
}
.single_link_btn, .single_nolink {
  font-size: 0.785rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single_link_btn {
  color: #000;
  transition: all 0.5s;
}
.single_nolink {
  color: #A0A0A0;
}
.single_nolink:hover {
  color: #A0A0A0;
}
.single_link_circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #3A6432;
  position: relative;
}
.single_prev .single_link_circle {
  margin-right: 5px;
}
.single_prev .single_link_circle::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.single_next .single_link_circle {
  margin-left: 5px;
}
.single_next .single_link_circle::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
}
.single_menu {
  font-size: 0.785rem;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 1rem;
  border-radius: 45px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
}
.single_menu:hover {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (min-width: 1200px) {
  .single_nextbox {
    width: 85.5%;
    padding-top: 2rem;
    margin-top: 6.2rem;
    margin-bottom: 16rem;
  }
  .single_link_btn, .single_nolink {
    font-size: 1rem;
  }
  .single_link_circle {
    width: 30px;
    height: 30px;
  }
  .single_prev .single_link_circle {
    margin-right: 10px;
  }
  .single_prev .single_link_circle::before {
    width: 7px;
    height: 7px;
  }
  .single_next .single_link_circle {
    margin-left: 10px;
  }
  .single_next .single_link_circle::before {
    width: 7px;
    height: 7px;
  }
  .single_menu {
    font-size: 1rem;
    padding: 13px 5rem;
  }
}
/***************************************
news_container
***************************************/
.news_container {
  margin-bottom: 5.8rem;
}
.news_container .news_block {
  width: 82%;
  margin: 0 auto 4.2rem 11.5%;
  max-width: 760px;
}
.news_block > ul > li {
  border-bottom: 1px solid rgba(180, 180, 180, 0.25);
}
.news_item {
  display: block;
  padding: 2.8rem 0 2rem;
  transition: all 0.5s;
}
.news_item:hover {
  opacity: 0.6;
  transition: all 0.5s;
}
.news_block > ul > li:first-child .news_item {
  padding-top: 0;
}
.news_date {
  font-size: 0.857rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #787878;
  margin-bottom: 0.6rem;
}
.news_title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .news_container {
    margin-bottom: 7rem;
  }
  .news_container .news_block {
    width: 77%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 992px) {
  .news_item {
    display: flex;
    align-items: center;
  }
  .news_date {
    font-size: 0.8125rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .news_container {
    margin-bottom: 8.8rem;
  }
  .news_container .news_block {
    margin-bottom: 5rem;
  }
  .news_item {
    padding: 3.5rem 0 2.3rem;
  }
  .news_date {
    margin-right: 3.8rem;
  }
}
@media screen and (min-width: 1500px) {
  .news_container .section_title_box {
    margin-bottom: 6.1rem;
  }
}
/***************************************
お知らせ一覧
***************************************/
.archive_container .news_block {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
/***************************************
投稿詳細
***************************************/
.single_main_block {
  width: 92%;
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  padding: 3rem 1% 2rem;
}
.single_date {
  font-size: 0.857rem;
  letter-spacing: 0.02em;
  color: #787878;
}
.single_eye_img {
  margin-bottom: 3rem;
}
.single_main_block .single_nextbox {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .single_main_block {
    width: 87%;
    padding: 4rem 5% 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .single_main_block {
    padding: 6rem 10% 4rem;
  }
  .single_date {
    font-size: 0.875rem;
  }
  .single_eye_img {
    margin-bottom: 5rem;
  }
}
/***************************************
blog_container
***************************************/
.blog_container {
  padding: 5.5rem 0;
  position: relative;
  z-index: 0;
}
.blog_container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f0f1f4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.blog_2col_wrap {
  width: 77%;
  margin: 0 auto;
}
.blog_left {
  margin-bottom: 3.5rem;
}
.blog_left .section_title_box {
  text-align: center;
  margin-bottom: 0;
}
.blog_btn_pc {
  display: none;
}
.blog_right .blog_block {
  margin-bottom: 4.4rem;
}
.blog_block > ul > li {
  margin-bottom: 2.95rem;
}
.blog_block > ul > li:last-child {
  margin-bottom: 0;
}
.blog_item {
  display: block;
}
.blog_img {
  aspect-ratio: 150 / 103;
  margin-bottom: 1.6rem;
}
.blog_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_date {
  font-size: 0.857rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #787878;
  margin-bottom: 0.6rem;
}
.blog_title {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #000;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .blog_container {
    padding: 7rem 0;
  }
  .blog_block > ul {
    display: flex;
    gap: 4%;
  }
  .blog_block > ul > li {
    width: calc((100% - 8%) / 3);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .blog_right .blog_block {
    margin-bottom: 5.4rem;
  }
  .blog_left {
    margin-bottom: 4.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .blog_container {
    padding: 8.5rem 0;
  }
  .blog_2col_wrap {
    display: flex;
    width: 87%;
  }
  .blog_left {
    width: 24.6%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .blog_left .section_title_box {
    text-align: left;
  }
  .blog_btn_pc {
    display: block;
  }
  .blog_right {
    padding-top: 0.2rem;
    width: 75.4%;
  }
  .blog_right .blog_block {
    margin-bottom: 0;
  }
  .blog_block > ul {
    gap: 5%;
  }
  .blog_block > ul > li {
    width: calc((100% - 10%) / 3);
  }
  .blog_img {
    aspect-ratio: 292 / 201;
    margin-bottom: 1.3rem;
  }
  .blog_date {
    font-size: 0.8125rem;
    margin-bottom: 0.8rem;
  }
  .blog_title {
    font-size: 1rem;
  }
  .blog_btn_sp {
    display: none;
  }
}
@media screen and (min-width: 1500px) {
  .blog_container::before {
    width: 92.8%;
  }
  .blog_2col_wrap {
    width: 72%;
  }
}
/***************************************
works_container
***************************************/
.works_container {
  margin-bottom: 5.6rem;
}
.works_container .works_block {
  width: 87%;
  margin: 0 auto 4.1rem;
}
.works_block > ul > li {
  margin-bottom: 2.8rem;
}
.works_block > ul > li:last-child {
  margin-bottom: 0;
}
.works_img {
  aspect-ratio: 170 / 117;
  margin-bottom: 1.9rem;
}
.works_img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.works_title {
  font-size: 1.14rem;
  letter-spacing: 0.08em;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .works_container {
    margin-bottom: 7rem;
  }
  .works_block > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
  }
  .works_block > ul > li {
    width: calc((100% - 4%) / 2);
  }
  .works_block > ul > li:nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .works_container {
    margin-bottom: 8.8rem;
  }
  .works_container .works_block {
    width: 85.5%;
    margin-bottom: 4.8rem;
  }
  .works_block > ul > li {
    width: calc((100% - 8%) / 3);
    margin-bottom: 4.8rem;
  }
  .works_block > ul > li:nth-last-child(3) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1500px) {
  .works_container .section_title_box {
    margin-bottom: 6.4rem;
  }
  .works_title {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
  }
}
/***************************************
施工事例一覧　
***************************************/
.archive_works_container {
  margin-bottom: 7rem;
}
	@media screen and (min-width: 768px) {
		.archive_works_container {
  margin-bottom: 10rem;
}
}

@media screen and (min-width: 1200px) {
  .archive_works_container {
    margin-bottom: 12rem;
  }
}
/***************************************
施工事例一覧-検索結果なし　
***************************************/
.arwo_nopost_block {
  text-align: center;
}
.arwo_nopost_txt {
  margin-bottom: 4rem;
}
.arwo_nopost_link a {
  font-size: 0.928rem;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 45px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
  max-width: 245px;
  margin: 0 auto;
}
.arwo_nopost_link a:hover {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (min-width: 1200px) {
  .arwo_nopost_txt {
    font-size: 1.125rem;
    margin-bottom: 6rem;
  }
  .arwo_nopost_link a {
    font-size: 0.9375rem;
  }
}
/***************************************
施工事例詳細
***************************************/
.pgwoks_head_outer {
  width: 87%;
  margin: 0 auto;
  padding: 8rem 0 5rem;
}
.pgwoks_head_unit01 {
  margin-bottom: 4rem;
}
.pgwoks_head_category_name {
  font-size: 0.9375rem;
  background-color: #3A6432;
  color: #fff;
  display: inline-block;
  padding: 6px 1rem;
  border-radius: 45px;
  transition: all 0.5s;
  margin-bottom: 2rem;
}
.pgwoks_head_title {
  color: #000;
  font-size: 1.57rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.pgwoks_head_table {
  margin-bottom: 2rem;
}
.pgwoks_head_table tr {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(180, 180, 180, 0.25);
  padding: 1rem 0;
}
.pgwoks_head_table th {
  width: 30%;
  font-weight: 200;
}
.pgwoks_head_table td {
  width: 70%;
}
.pgwoks_features_box > ul {
  display: flex;
  flex-wrap: wrap;
}
.pgwoks_features_box > ul > li {
  line-height: 2.6;
  margin-right: 0.8rem;
}
.pgwoks_features_box > ul > li:last-child {
  margin-right: 0;
}
.pgwoks_features_name {
  font-size: 0.857rem;
  display: flex;
  align-items: center;
}
.pgwoks_features_name span {
  font-size: 0.928rem;
  width: 23px;
  height: 23px;
  background-color: #3A6432;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.pgwoks_head_img {
  aspect-ratio: 45 / 31;
}
.pgwoks_head_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .pgwoks_head {
    display: flex;
    justify-content: space-between;
  }
  .pgwoks_head_unit01 {
    width: 45%;
    margin-bottom: 0;
  }
  .pgwoks_head_unit02 {
    width: 50%;
  }
  .pgwoks_head_img {
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .pgwoks_head_outer {
    width: 85.5%;
    padding: 10rem 0 7.5rem;
  }
  .pgwoks_head_unit01 {
    width: 35%;
  }
  .pgwoks_head_category_name {
    font-size: 1rem;
    padding: 7px 1.2rem;
    margin-bottom: 2.1rem;
  }
  .pgwoks_head_title {
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 2.95rem;
  }
  .pgwoks_head_table {
    margin-bottom: 3.3rem;
  }
  .pgwoks_head_table tr {
    font-size: 1rem;
    padding: 1.35rem 0.7rem;
  }
  .pgwoks_head_table th {
    width: 20.5%;
  }
  .pgwoks_head_table td {
    width: 79.5%;
  }
  .pgwoks_features_box > ul > li {
    margin-right: 1.2rem;
  }
  .pgwoks_features_name {
    font-size: 0.875rem;
  }
  .pgwoks_features_name span {
    width: 26px;
    height: 26px;
  }
  .pgwoks_head_unit02 {
    width: 58.5%;
  }
}
@media screen and (min-width: 1500px) {
  .pgwoks_head {
    align-items: center;
  }
}
/*||リピート画像||*/
.siwo_repeat_block > ul > li {
  margin-bottom: 2rem;
}
.siwo_repeat_item {
  display: block;
  aspect-ratio: 62 / 45;
}
.siwo_repeat_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .siwo_repeat_block > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4.5%;
  }
  .siwo_repeat_block > ul > li {
    width: calc((100% - 4.5%) / 2);
    margin-bottom: 4.5%;
  }
}
/*||内容||*/
.siwo_main_contents {
  width: 87%;
  margin: 0 auto;
  background-color: #fff;
}
.siwo_main_inner {
  width: 87%;
  margin: 0 auto;
}
.siwo_repeat_block {
  padding: 4.2rem 0 3rem;
}
.siwo_contents {
  padding-bottom: 4rem;
}
@media screen and (min-width: 1200px) {
  .siwo_main_contents {
    width: 85.5%;
  }
  .siwo_main_inner {
    width: 84.5%;
  }
  .siwo_repeat_block {
    padding: 7.4rem 0 4rem;
  }
  .siwo_contents {
    padding-bottom: 8rem;
  }
}
/***************************************
カスタム投稿-共通
***************************************/
.single_main_container {
  margin-bottom: 3rem;
}
@media screen and (min-width: 1200px) {
  .single_main_container {
    margin-bottom: 7rem;
  }
}
/***************************************
関連記事
***************************************/
.single_other_block {
  padding-top: 4rem;
  border-top: 1px solid rgba(153, 153, 153, 0.5);
}
.so_3col_parts > ul > li {
  margin-bottom: 3rem;
}
.so_3col_parts > ul > li:last-child0 {
  margin-bottom: 3rem;
}
.so_3col_item {
  display: block;
  color: #333;
}
.so_3col_img {
  margin-bottom: 0.5rem;
}
.so_3col_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.so_3col_title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .so_3col_parts > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .so_3col_parts > ul > li {
    width: 50%;
  }
  .so_3col_item {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .so_3col_parts > ul > li {
    width: calc(100% / 3);
  }
}
@media screen and (min-width: 1200px) {
  .single_other_block {
    padding-top: 8rem;
  }
}
/***************************************
404 
***************************************/
.pg_search_container #main h1 {
  font-size: 1.4rem;
}
@media screen and (min-width: 1200px) {
  .pg_search_container #main h1 {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}
/************************
/*FORM(お問い合わせ)
************************/
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
/* FORM MODEL */ ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #919191;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: inherit;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #919191;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: inherit;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
::placeholder {
  /* Most modern browsers support this now. */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
.pg_contact_txt1 {
  font-size: 0.9375rem;
  line-height: 1.73;
  color: #000;
  margin-bottom: 3.5rem;
}
.cl-red {
  color: #c40000;
  font-size: 1rem;
  line-height: 1;
  margin: 0 5px;
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  .pg_contact_txt1 {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  #form-model .section_title_box {
    margin-bottom: 3.2rem;
  }
  .pg_contact_txt1 {
    margin-bottom: 6rem;
  }
}
/*************
/*FORM
*************/
/* FORM MODEL */
#form-model {
  max-width: 1000px;
  margin: 0 auto;
}
#form-model .form-label__required {
  font-family: "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  background-color: #3A6432;
  padding: 4px 13px;
  color: #fff;
  margin-left: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}
#form-model input, #form-model textarea, #form-model select {
  padding: 15px;
  background-color: #fff;
  outline: none;
  resize: none;
  font-weight: 500;
  /*font-size: 1rem;*/
  font-size: 0.9375rem;
  margin: 0;
  border-radius: 0;
  border: none;
  width: 100%;
  /*height:56px; */
}
/*#form-model #zip3 {
  margin-bottom: 0;
}*/
#form-model .form-group {
  border-bottom: 1px solid rgba(200, 200, 200, 0.25);
  padding-bottom: 1.85rem;
  margin-bottom: 1.85rem;
}
#form-model .form-group.form-group_img_wrap {
  padding-bottom: 1rem;
}
#form-model .form-group.form-group--bottom {
  border: none;
  padding-bottom: 0;
  margin-bottom: 2.7rem;
}
#form-model .form-input__checkbox .agree .wpcf7-form-control {
  margin-bottom: 2rem;
}
#form-model .form-group--bottom span.wpcf7-list-item {
  text-align: center;
  margin: 0;
}
#form-model input[type="checkbox"], #form-model input[type="radio"] {
  display: inline-block;
}
#form-model .form-input__checkbox label {
  cursor: pointer;
}
#form-model .form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#form-model .form-group .form-label {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
#form-model .form-group_check_outer {
  padding: 0.5rem 0 1rem;
}
#form-model .form-group_address input.form-input__small300 {
  margin-top: 0.5rem;
}
#form-model .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
#form-model input[type="submit"] {
  letter-spacing: 0.02em;
  background-color: #3A6432;
  color: #fff;
  height: 65px;
  width: 100%;
  max-width: 420px;
  font-weight: 200;
  font-size: 1rem;
  border: none;
  border-radius: 45px;
}
@media screen and (min-width: 768px) {
  #form-model .form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1.85rem;
    margin-bottom: 1.85rem;
  }
  #form-model .form-group .form-label {
    width: 30%;
    display: flex;
    margin-bottom: 0;
    padding-right: 1.8rem;
    justify-content: space-between;
  }
  #form-model .form-group .form-label.form-label_up {
    padding-bottom: 4rem;
  }
  #form-model .form-label__required {
    padding: 5px 20px;
  }
  #form-model .form-group_address input.form-input__half {
    width: 49%;
  }
  #form-model .form-group_address input.form-input__small300 {
    margin-top: 1rem;
  }
  #form-model .form-group_check_outer {
    padding: 1rem 0 2rem;
  }
  #form-model .form-group.form-group--bottom {
    align-items: flex-start;
    margin-bottom: 3rem;
  }
  #form-model .form-group--bottom .form-label {
    padding-top: 1.7rem;
  }
  #form-model .form-group .wpcf7-form-control-wrap {
    width: 70%;
    margin-left: auto;
  }
  #form-model input, #form-model textarea, #form-model select {
    width: 100%;
  }
  #form-model .form-group.form-group_area {
    margin-top: -1.8rem;
    margin-bottom: 3.7rem !important;
  }
  #form-model .form-group--submit {
    width: 70%;
    margin-left: auto;
    text-align: left !important;
  }
}
@media screen and (min-width: 992px) {
  #form-model .form-group .form-label {
    width: 30%;
    padding-right: 2.4rem;
  }
  #form-model .form-group .wpcf7-form-control-wrap {
    width: 70%;
  }
  #form-model .form-group--submit {
    width: 70%;
  }
  #form-model input, #form-model textarea, #form-model select {
    padding: 27px;
  }
  #form-model input[type="submit"] {
    padding: 0;
    height: 82px;
  }
}
/* RADIO */
#form-model .form-input__checkbox .wpcf7-form-control {
  color: #4c4948;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
/* CUSTOM CHECKBOX */
#form-model .form-input__checkbox .wpcf7-list-item {
  margin: 0;
}
#form-model .form-input__checkbox label {
  cursor: pointer;
  margin-bottom: 0;
}
#form-model .form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#form-model .form-input__checkbox .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  /*  font-size: 1.6rem;*/
  font-size: 1rem;
  letter-spacing: 0;
  border-radius: 50%;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::before, #form-model .form-input__checkbox .wpcf7-list-item-label::after {
  content: "";
  transition: 0.2s;
  border-radius: 0;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::before {
  left: 0;
  display: block;
  height: 17px;
  width: 17px;
  margin-right: 10px;
  border: none;
  background-color: #fff;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  opacity: 0;
  background-color: #3A6432;
}
#form-model .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
#form-model .form-input__checkbox .wpcf7-list-item {
  margin-right: 1.5rem;
}
/*ラジオボタン*/
#form-model .form-input__checkbox.form-input__radio .wpcf7-list-item-label::before {
  border-radius: 50%;
}
#form-model .form-input__checkbox.form-input__radio .wpcf7-list-item-label::after {
  border-radius: 50%;
}
@media screen and (min-width: 1200px) {
  #form-model .form-input__checkbox .wpcf7-list-item {
    margin-right: 1.5rem;
    margin-bottom: 0.2rem;
  }
  /*  #form-model .form-input__checkbox .wpcf7-list-item-label::before {
    height: 30px;
    width: 30px;
    margin-right: 14px;
  }
  #form-model .form-input__checkbox .wpcf7-list-item-label::after {
    left: 9px;
    width: 11px;
    height: 11px;
  }*/
}
/* 2COLUMN */
.form-group_2col_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}
.form-group_2col_item {
  width: 49%;
  min-width: 49%;
  position: relative;
}
/*.form-group_2col_item01{
    margin-bottom: 5px;
}*/
@media screen and (min-width: 768px) {
  .form-group_2col_wrap {
    width: 70%;
  }
  .form-group_2col_item {
    width: 49%;
  }
  .form-group_2col_item01 {
    margin-bottom: 0;
  }
  #form-model .form-group .form-group_2col_people .wpcf7-form-control-wrap {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 992px) {
  .form-group_2col_wrap {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .form-group_people .form-group_2col_item {
    padding-left: 10px;
  }
  #form-model .form-group .form-group_2col_people .wpcf7-form-control-wrap {
    width: calc(100% - 52px);
  }
}
.form-group_2col_item::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translate(0%, -50%) rotate(-45deg);
  z-index: 1;
}
.form-group_2col_item.select-active::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .form-group_2col_item::before {
    width: 8px;
    height: 8px;
    right: 2rem;
  }
}
.form-group_select {
  position: relative;
}
.form-group_select::before {
  content: "";
  display: block;
  width: 7px;
  height: 5px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #555;
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translate(0%, -50%);
  z-index: 1;
}
.form-group_select.select-active::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .form-group_select::before {
    width: 10px;
    height: 6px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 6px solid #555;
    right: 2rem;
  }
}
/*||人数||*/
.form-group_2col_people {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-group_2col_people .wpcf7-form-control-wrap {
  width: calc(100% - 37px);
}
/* 3COLUMN */
#form-model .form-col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 70%;
}
#form-model .form-col3 div {
  width: calc((100% - 15px)/3);
}
#form-model .form-col3 div select {
  background-color: #fff;
  color: #747474;
}
#form-model .form-col3 div select.selected {
  color: #000;
}
@media screen and (max-width: 767px) {
  #form-model .form-col3 {
    width: 100%;
  }
  #form-model .form-col3 div {
    width: calc((100% - 15px)/3);
    max-width: 100%;
  }
  #form-model .form-col3 div:nth-child(2) {
    margin-right: 0;
  }
  #form-model .form-col3 div:last-child {
    width: 100%;
    margin-top: 6px;
  }
}
@media screen and (min-width: 992px) {
  #form-model .form-col3 div {
    width: calc((100% - 45px)/3);
  }
}
#form-model .form-group--agree {
  margin-bottom: 3rem;
}
.f_note {
  font-size: 1rem !important;
  margin-top: 2rem;
  margin-bottom: 0;
}
.f_note a {
  color: #000;
  text-decoration: underline;
  transition: all 0.5s;
}
.f_note a:hover {
  color: #828282;
  transition: all 0.5s;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  #form-model .form-group--agree {
    width: 70%;
    margin-left: auto;
    text-align: left !important;
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 992px) {
  #form-model .form-group--agree {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .f_note {
    font-size: 0.875rem !important;
    margin-top: 1.7rem;
  }
}
/* CUSTOM CHECKBOX */
.form-input__checkbox {
  margin-bottom: 0;
}
.form-input__checkbox label {
  cursor: pointer;
}
.form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.form-input__checkbox .wpcf7-list-item {
  margin-right: 2rem;
  margin-left: 0;
}
.form-input__checkbox .wpcf7-list-item-label {
  position: relative;
  padding-left: 38px;
  line-height: 40px;
  padding-top: 0;
  top: 0;
}
.form-input__checkbox.form-input__radio .wpcf7-list-item-label {
  padding-left: 30px;
}
.form-input__checkbox .wpcf7-list-item-label::before, .form-input__checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  transition: 0.2s;
}
.form-input__checkbox .wpcf7-list-item-label::before {
  display: block;
  height: 40px;
  width: 40px;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}
.form-input__radio .wpcf7-list-item-label::before {
  border-radius: 50%;
}
.form-input__checkbox .wpcf7-list-item-label::after {
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  opacity: 0;
  background-color: #000;
}
.form-input__radio .wpcf7-list-item-label::after {
  border-radius: 50%;
}
.form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .form-input__checkbox {
    width: 70%;
  }
}
/*||個人情報の取り扱いに同意する||*/
#form-model .form-input__checkbox--round .wpcf7-form-control {
  justify-content: center;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label {}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::before, #form-model .form-input__checkbox--round .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::before {
  left: 0;
  display: block;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::after {
  left: 14.5px;
  width: 10px;
  height: 10px;
  opacity: 0;
  background-color: #3A6432;
  border-radius: 50%;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label {
  border-radius: 50%;
  line-height: 35px;
  padding-top: 0;
  font-size: 0.9375rem;
  position: relative;
  padding-left: 50px;
}
.form-input__checkbox--round .wpcf7-list-item-label::before {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}
.form-input__checkbox--round .wpcf7-list-item-label::after {
  left: 19.5px;
  top: 50%;
}
@media screen and (min-width: 768px) {
  #form-model .form-input__checkbox--round .wpcf7-form-control {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  #form-model .form-input__checkbox--round .wpcf7-list-item-label {
    font-size: 1rem;
    padding-left: 58px;
  }
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
#form-model input[type="date"] {
  min-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
@media screen and (max-width: 576px) {
  #form-model .form-group_2col_item input[type="date"] {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #524b40;
  }
  #form-model input[type="date"] {
    min-width: 90%;
  }
  .form-group_2col_item .wpcf7-select {
    height: 54px;
  }
  /*  #form-model .form-group_2col_item01 .wpcf7-date {
    position: relative;
    width: 100% !important;
  }
  #form-model .form-group_2col_item01 .wpcf7-date::before {
    content: '日付を選択';
    color: #000;
    width: 100%;
      font-size: 10px;
  }*/
  /*  #form-model .form-group_2col_item01 input[type="date"]::before {
    content: attr(placeholder);
    width: 100%;
    color: #524b40;
    padding-left: 10px;
  }*/
  #form-model .form-group_2col_item01 input[type="date"].has-value::before {
    content: ""; /* 日付が入力されたらプレースホルダーを非表示にする */
    width: 0;
    padding-left: 0;
  }
}
@supports (-webkit-touch-callout: none) {
  #form-model .form-group_2col_item01 input[type="date"]::before {
    content: attr(placeholder);
    width: 100%;
    color: #524b40;
    padding-left: 10px;
  }
}
.form-input__areacontents_txt {
  font-size: 0.857rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .form-input__areacontents {
    width: 70%;
    margin-left: auto;
  }
  .form-input__areacontents_txt {
    width: 70%;
    margin-left: auto;
    font-size: 0.8125rem;
  }
}
/*友人・知人の紹介-選択*/
#form-model .form-group.form-group_other_block {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}
#form-model .form-group .form-label.form-label_other_text {
  font-size: 0.857rem;
}
@media screen and (min-width: 768px) {
  #form-model .form-group.form-group_other_block {
    flex-direction: column;
    margin-left: auto;
    width: 70%;
  }
  #form-model .form-group.form-group_other_block .form-label {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  #form-model .form-group.form-group_other_block .wpcf7-form-control-wrap {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  #form-model .form-group.form-group_other_block {
    width: 70%;
  }
}
/*3COL*/
.form-group_3col_wrap {
  display: flex;
  justify-content: space-between;
}
.form-group_3col_item {
  width: 32%;
}
@media screen and (min-width: 768px) {
  .form-group_3col_wrap {
    width: 70%;
  }
}
/***************************************

***************************************/
/**************************************
/* レスポンシブ改行
***************************************/
@media screen and (max-width: 575px) {
  .br-sp5 {
    display: block;
  }
  .br-pc5 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .br-sp5 {
    display: none;
  }
  .br-pc5 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .br-sp7 {
    display: inline-block;
  }
  .br-pc7 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .br-sp7 {
    display: none;
  }
  .br-pc7 {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .br-pc9 {
    display: none;
  }
  .br-sp9 {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .br-pc9 {
    display: block;
  }
  .br-sp9 {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .br-pc12 {
    display: none;
  }
  .br-sp12 {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .br-pc12 {
    display: block;
  }
  .br-sp12 {
    display: none;
  }
}
@media screen and (max-width: 1499px) {
  .br-pc15 {
    display: none;
  }
  .br-sp15 {
    display: block;
  }
}
@media screen and (min-width: 1500px) {
  .br-pc15 {
    display: block;
  }
  .br-sp15 {
    display: none;
  }
}
@media screen and (max-width: 1799px) {
  .br-pc18 {
    display: none;
  }
  .br-sp18 {
    display: block;
  }
}
@media screen and (min-width: 1800px) {
  .br-pc18 {
    display: block;
  }
  .br-sp18 {
    display: none;
  }
}