@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #181818;
}


/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
} 

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.inglesa{
  font-family: "inglesa-script-variable", sans-serif;
  font-variation-settings: "wght" 400;
}
.outfit{
  font-family: 'Outfit', sans-serif;
}

a{
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}
a:hover{
  opacity: 0.7;
  text-decoration: none;
}
a[data-lity]{
  cursor: zoom-in;
}


img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video { 
  position: relative; 
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video, 
.responsive_video iframe, 
.responsive_video object, 
.responsive_video embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 15px; 
  margin: 0 auto;
}
@media only screen and (max-width:1220px){
  .container{
    width: 100%;
  }
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.pg_header .tt1{
  min-width: 210px;
  padding: 5px 15px 15px;
  background: #ffffff;
}
.main{
  margin-top: 20px;
}
body.home .main{
  margin-top: 0;
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{

}
.listbox .item .date{

}
.listbox .item .txt{

}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.hdr_logo{
  margin: 8px 10px 5px;
  display: block;
}

.hdr_insta{
  margin-right: 25px;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  letter-spacing: 0.015em;
}
.hdr_insta:before{
  content: "";
  width: 26px;
  height: 26px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  background: url(/img/insta_i1.png) no-repeat center / contain;
}

@media(max-width:767px){
  body{
    padding-bottom: 60px;
  }
  .hdr_tel,
  .hdr_form{
    display: none;
  }
  .hdr_insta {
    font-size: 12px;
    margin-right: 5px;
  }
  .hdr_insta:before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .hdr_logo img{
    width: 80px;
  }
}
@media(min-width:768px){
  header{
    justify-content: space-between;
  }
  .hdr_contact{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .hdr_tel{
    font-size: 15px;
    width: 110px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #8d8d8d;
    color: #ffffff;
    line-height: 1.4;
  }
  .hdr_tel:before{
    content: "\f095";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }
  .hdr_form{
    font-size: 15px;
    width: 110px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #d8c9a1;
    color: #ffffff;
    line-height: 1.4;
  }
  .hdr_form:before{
    content: "\f0e0";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }

  .pg_header .tt1{
    min-width: 270px;
    padding: 5px 35px 15px;
    margin-bottom: 25px;
  }
}
@media(min-width:1024px){
  .hdr_logo{
    margin-left: 20px;
  }
  .hdr_form,
  .hdr_tel{
    width: 90px;
    font-size: 14px;
  }
  .hdr_insta {
    margin-right: 15px;
  }
}
@media(min-width:1200px){
  .hdr_logo{
    margin-left: 50px;
  }
  .hdr_form,
  .hdr_tel{
    width: 110px;
    font-size: 15px;
  }
  .hdr_tel{
    margin-left: 5px;
  }
  .hdr_insta {
    margin-right: 25px;
  }

}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  width: 100%;
}
.gnav ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  /*font-size: 18px;*/
}
.gnav ul > li{
  padding: 0 14px;
  margin: 5px 0;
  position: relative;
}
.gnav ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


@media(max-width:767px){
  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
  }
  .gnav > ul > li + li,
  .gnav > ul > li:first-child,
  .gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav > ul > li a{
    padding: 10px 0;
  }
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
}
@media(min-width:768px){
  .gnav{
    margin: 20px 0;
  }
}
@media(min-width:1024px){
  .gnav{
    width: auto;
    margin: 0;
    margin-right: 12px;
  }
  .gnav ul {
    max-width: 365px;
    justify-content: flex-start;
  }
}
@media(min-width:1420px){
  .gnav ul {
    max-width: inherit;
  }

}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 50px;
}
footer .ftr1{
  margin-top: 50px;
  margin-bottom: 70px;
}
.ftr1 .home_ttl1{
  margin-bottom: 10px;
}
.ftr1 .home_ttl1 .ja{
  letter-spacing: 0;
}
.ftr1_box{
  margin-top: 30px;
  padding: 10px 15px;
  background: #cebb89;
  color: #ffffff;
}
.ftr1_box .item{
  padding: 15px 10px;
  text-align: center;
}
.ftr1_box .ttl{
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}
.ftr1_box .tel {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.ftr1_box .tel:before{
  font-size: 30px;
  margin-right: 5px;
  content: "\f879";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}
.ftr1_box .min{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ftr1_box .link{
  font-size: 18px;
  margin: 16px auto 0;
  padding: 8px;
  max-width: 346px;
  display: block;
  background: #ffffff;
  color: #cebb89;
  border-radius: 10px;
}
.ftr1_box .link:before{
  content: "\f0e0";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}


footer .ftr2{
  padding-top: 50px;
  background: #fbf8f2;
}
.ftr_addr {
  margin-top: 10px;
  letter-spacing: 0.075em;
}

footer .copy{
  text-align: center;
  font-size: 14px;
  padding: 8px 0;
  margin-top: 30px;
  letter-spacing: 0.075em;
  border-top: 1px solid;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #b4a274;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 27%;
}
.footer_fix ul li.btn2{
  width: 19%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 3px;
  background: #8d8d8d;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn1.school a{
  background: #2196f3;
}
.footer_fix ul li.btn1.tel a{
  background: #b4a274;
}
.footer_fix ul li.btn1.line a{
  background: #06c755;
}
.footer_fix ul li.btn2 a{
  background: #6594a2;
}
.footer_fix ul li a i{
  font-size: 20px;
  display: block;
}

@media(max-width:767px){
  .ftr1_box .item + .item{
    border-top: 2px solid;
  }
  footer .ftr2{
    text-align: center;
  }
  .ftr_logo img{
    width: 300px;
  }
  footer .ftr_links{
    display: none;
  }
  .ftr_addr{
    margin: 10px 0 30px;
  }
  footer{
    margin-top: 80px;
  }
}
@media(min-width:768px){
  footer{
    margin-top: 100px;
  }
  .ftr1 .home_text1{
    font-size: 18px;
    line-height: 1.95;
  }
  .ftr1_box {
    padding: 30px 0 10px;
    display: flex;
  }
  .ftr1_box .item{
    width: 50%;
    padding: 15px 0 0;
    position: relative;
  }
  .ftr1_box .item + .item:before{
    content: "";
    width: 2px;
    height: calc(100% - 20px);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
  }
  .ftr1_box .ttl{
    font-size: 20px;
  }
  .ftr1_box{
    margin-top: 60px;
  }
  .ftr1_box .tel {
    font-size: 45px;
  }

  footer .ftr2{
    padding-top: 110px;
  }
  footer .ftr2 .box1{
    width: 40%;
  }
  footer .ftr2 .box2{
    width: 60%;
    padding-left: 30px;
  }
  footer .ftr_links{
    max-width: 498px;
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer .ftr_links li{
    border-right: 1px solid;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    padding: 0 13px;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.075em;
  }
  footer .ftr_links li:last-child{
    border-right: 0;
    padding-right: 0;
  }
  footer .ftr_links li:nth-child(n+5){
    margin-top: 22px;
  }
  footer .ftr2 .hdr_insta{
    margin-left: 22px;
    margin-right: 18px;
  }
  footer .ftr2 .hdr_insta:before{    
    width: 31px;
    height: 30px;
  }
  footer .copy{
    margin-top: 55px;
  }
  footer .ftr1 {
    margin-top: 100px;
    margin-bottom: 120px;
  }
  footer .ftr2 .container{
    display: flex;
    justify-content: space-between;
  }

  .footer_fix{
    display: none;
  }
}
@media(min-width:1024px){
  footer{
    margin-top: 150px;
  }
  .home footer{
    margin-top: 120px;
  }
  .ftr1_box{
    margin-top: 70px;
  }
  footer .ftr2 .box1{
    width: auto;
    margin-top: -5px;
  }
  footer .ftr2 .box2{
    width: auto;
    padding-left: 0;
  }
  footer .ftr_links{
    margin-bottom: 70px;
  }
  footer .ftr1 {
    margin-top: 110px;
    margin-bottom: 180px;
  }
  footer .ftr_links li{
    font-size: 15px;
    padding: 0 24px;
  }
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{

}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{

}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{

}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;

}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 70px;
  z-index: 5;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #6594a2;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{

}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 


.contact_form_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{

}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{

}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h3{
  font-size: 18px;

  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 50px;
  font-size: 14px;
  overflow-x: auto;
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media(min-width:768px){  
  .breadcrumb{
    margin-bottom: 80px;
  }
}

/* **********************************
 *  メイン
 * ********************************* */
.tt1{
  padding: 5px;
  line-height: 1.2;
}
.tt1 strong{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  display: block;
}
.tt1 strong:before{
  content: "";
  width: 60px;
  height: 1px;
  margin-right: 12px;
  background: #201107;
  display: inline-block;
  vertical-align: middle;
}
.tt1 span{
  font-size: 34px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.tt2{

}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

/* 詳しく見る サンプル */
.read_more{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}



/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{

}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 110px;
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{

}
.pg_company .section#sec3{

}


/* **********************************
 *  Home
 * ********************************* */
/*.mv{
  position: relative;
  height: 70vh;
  background-repeat: no-repeat;
  background-position: 70% center;
  background-size: cover;

  display: flex;
  align-items: center;
}*/

.mv_slider{
  position: relative;
}
.mv_box{
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mv_box .txt{
  font-size: 28px;
  color: #ffffff;  
  text-shadow: 0px 8px 17.4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.pg_home .section#sec1{
  padding: 50px 0;
}
.home_ttl1 {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
  color: #b4a274;
}
.home_ttl1 .en{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: 'Outfit', sans-serif;
}
.home_ttl1 .en:before,
.home_ttl1 .en:after{
  content: "";
  width: 25px;
  height: 2px;
  margin: 0 10px 5px;
  background: #b4a274;
  display: inline-block;
  vertical-align: middle;
}
.home_ttl1 .en:before{
  margin-left: 0;
}
.home_ttl1 .en:after{
  margin-right: 0;
}
.home_ttl1 .ja{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.pg_home .section#sec2,
.pg_home .section#sec4,
.pg_home .section#sec6,
.pg_home .section#sec8,
.pg_home .section#sec10{
  padding: 40px 0;
  background: #fcf9f4;
}
.home_concept .ttl{
  font-size: 22px;
  margin-right: -5px;
  margin-bottom: 34px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: center;
}
.home_concept .text{
  line-height: 2.125;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: justify;
}
.home_concept{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.home_concept .txt{
  width: 100%;
}
.home_concept .img{
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}

.pg_home .section#sec3{
  padding: 50px 0;
}
.home_text1 {
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 1.2;
}
ul.home_plans {
  margin: 30px -15px 0;
  display: flex;
  flex-wrap: wrap;
}
ul.home_plans li{
  width: 50%;
  padding: 0 15px;
}
ul.home_plans li a {
  font-size: 13px;
  padding: 14px;
  text-align: center;
  display: block;
  background: #cebb89;
  color: #ffffff;
  position: relative;
}
ul.home_plans li a:after{
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  position: absolute;
  left: 5px;
  top: 5px;
  border: 1px solid #ffffff;
}

.home_gallery {
  margin: 30px -4px 0;
  display: flex;
  flex-wrap: wrap;
}
.home_gallery .item{
  width: 33.33%;
  padding: 0 4px;
}
.home_gallery .img:before{
  padding-top: 101%;
  display: block;
  content: "";
}
.link_1 {
  width: 220px;
  margin: 30px auto 0;
  padding: 4px;
  font-weight: 400;
  display: block;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  background: #cebb89;
  color: #ffffff;
  border-radius: 20px;
  position: relative;
}
.link_1:after{
  content: "→";
  position: absolute;
  font-size: 14px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.pg_home .section#sec5{
  padding: 50px 0;
}
.home_parti{
  margin: 30px -8px 0;
  display: flex;
  flex-wrap: wrap;
}
.home_parti .item{
  width: 50%;
  padding: 0 8px;
}
.home_parti .ttl{
  margin: 10px 0 22px;
  text-align: center;
  line-height: 1.3;
  color: #b4a274;
}
.home_parti .ttl .en{
  font-size: 24px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  position: relative;
}
.home_parti .ttl .en:before {
  content: "";
  width: 100%;
  height: 1px;  
  background: #b4a274;
  position: absolute;
  left: 0;
  top: 50%;
}
.home_parti .ttl .en span{
  padding: 0 25px;
  display: inline-block;
  background: #fcf9f4;
  position: relative;
  z-index: 1;
}
.home_parti .ttl .ja{
  font-size: 16px;
  font-weight: 400;
}
.home_parti .text{
  letter-spacing: 0.07em;
  text-align: justify;
  line-height: 1.75;
}
.pg_home .section#sec6 .home_text1{
  font-size: 18px;
}

.pg_home .section#sec7{
  padding: 50px 0;
  text-align: center;
}

.home_blog {
  margin: 30px -8px 0;
  display: flex;
  flex-wrap: wrap;
}
.home_blog .item{
  width: 50%;
  padding: 0 8px;
  display: flex;
}
.home_blog .item a{
  width: 100%;
  padding: 5px;
  display: block;
  background: #ffffff;
}
.home_blog .img:before{
  padding-top: 92%;
  display: block;
  content: "";
}
.home_blog .date{
  font-size: 14px;
  margin-top: 15px;
  padding: 7px 5px 0;
  border-top: 1px solid;
  display: inline-block;
  letter-spacing: 0.075em;
}
.home_blog .title{
  font-size: 16px;
  padding: 0 5px;
  font-weight: 500;
  line-height: 1.5;
}

.pg_home .section#sec9{
  padding: 50px 0;
}
.home_insta{
  margin: 35px 0 0;
}
.home_insta .item a{
  width: 100%;
  padding: 1px;
  background: #b4a274;
  display: block;
  position: relative;
}
.home_insta .item a:before,
.home_insta .item a:after{
  width: calc(100% - 15px);
  height: 0;
  display: block;
  content: "";
  position: absolute;
  left: 0;
}
.home_insta .item a:before{
  border-bottom: solid 15px #b4a274;
  border-left: solid 15px transparent;
  bottom: 100%;
}
.home_insta .item a:after{  
  border-top: solid 15px #b4a274;
  border-right: solid 15px transparent;
  top: 100%;
}
.home_insta .item span{
  width: calc(100% - 4px);
  font-size: 18px;
  margin: 0 auto;
  background: #ffffff;
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #b4a274;
}
.home_insta .item span:before,
.home_insta .item span:after{
  width: calc(100% - 13px);
  height: 0;
  display: block;
  content: "";
  position: absolute;
  left: 0;
}
.home_insta .item span:before{
  border-bottom: solid 13px #ffffff;
  border-left: solid 13px transparent;
  bottom: 100%;
}
.home_insta .item span:after{  
  border-top: solid 13px #ffffff;
  border-right: solid 13px transparent;
  top: 100%;
}
.home_insta .item strong{
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
}
.home_insta .item strong:before{
  content: "";
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background: url(/img/home/insta_i2.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}
.home_insta .item strong:after{
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.home_access .info p,
.home_access .info dl{
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid #b4a274;
}
.home_access .info dl{
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
}
.home_access .map iframe{
  height: 352px;
}

.pg_home .section#sec11{
  padding: 30px 0;
}
.home_links .item a{
  font-size: 20px;
  padding: 20px;
  font-weight: 500;
  display: block;
  background: #949494;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.home_links .item a:before{
  content: "";
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  border: 2px solid #ffffff;
  position: absolute;
  left: 7px;
  top: 7px;
  pointer-events: none;
}
.home_links .item a:after{
  content: "";
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 7px;
  bottom: 7px;
}

@media (max-width:767px){

  .mv_box .txt{
    display: none;
  }
  
  .home_bnrs .item + .item{
    margin-top: 15px;
  }

  .home_ttl1 .en span{
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
  }

  ul.home_plans li:nth-child(n+3){
    margin-top: 20px;
  }

  .home_gallery .item:nth-child(n+4){
    margin-top: 8px;
  }
  .home_gallery .item:nth-child(n+10){
    display: none;
  }

  .home_parti .item:nth-child(n+3){
    margin-top: 20px;
  }

  .home_blog .item:nth-child(n+3){
    margin-top: 20px;
  }

  .home_insta .item + .item{
    margin-top: 45px;
  }

  .home_access .map{
    margin-top: 30px;
  }

  .home_links .item + .item{
    margin-top: 20px;
  }
}
@media (min-width:768px){
  /*.mv{
    height: 70vh;
  }*/
  .mv_box{
    padding-bottom: 70px;
  }
  .mv_box .txt {
    font-size: 40px;
  }

  .pg_home .section#sec1{
    padding: 80px 0;
  }
  .home_ttl1 {
    margin-bottom: 55px;
  }
  .home_ttl1 .en {
    font-size: 32px;
  }
  .home_ttl1 .en:before,
  .home_ttl1 .en:after{
    width: 50px;
    margin: 0 20px 5px;
  }
  .home_ttl1 .ja {
    font-size: 18px;
  }

  .home_bnrs{
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
  }
  .home_bnrs .item{
    width: 50%;
    padding: 0 15px;
  }
  .home_bnrs .item:nth-child(n+3){
    margin-top: 30px;
  }

  .pg_home .section#sec2{
    padding: 70px 0 100px;
  }
  .home_concept .ttl{
    font-size: 28px;
  }

  .pg_home .section#sec3{
    padding: 80px 0;
  }
  .pg_home .section#sec3 .home_ttl1,
  .pg_home .section#sec4 .home_ttl1,
  .pg_home .section#sec6 .home_ttl1,
  .pg_home .section#sec8 .home_ttl1{
    margin-bottom: 20px;
  }
  ul.home_plans{
    margin-top: 60px;
  }
  ul.home_plans li{
    width: 25%;
  }
  ul.home_plans li:nth-child(n+5){
    margin-top: 27px;
  }
  .home_text1 {
    text-align: center;
  }

  .home_gallery{
    margin-top: 60px;
  }
  .home_gallery .item{
    width: 16.66%;
  }
  .home_gallery .item:nth-child(n+7){
    margin-top: 8px;
  }
  .link_1 {
    margin-top: 60px;
  }

  .pg_home .section#sec4{
    padding: 50px 0 70px;
  }

  .pg_home .section#sec5{
    padding: 80px 0;
  }
  .home_parti{
    margin: 55px -15px 0;
  }
  .home_parti .item{
    width: 25%;
    padding: 0 15px;
  }

  .pg_home .section#sec7{
    padding: 95px 0 120px;
  }

  .pg_home .section#sec8{
    padding: 50px 0 80px;
  }
  .home_blog{
    margin: 58px -8px 0;
  }
  .home_blog .item{
    width: 25%;
  }
  .home_blog .item a{
    min-height: 305px;
  }
  .pg_home .section#sec8 .link_1{
    margin-top: 70px;
  }  
  .home_blog .title{
    letter-spacing: 0.075em;
  }

  .pg_home .section#sec9{
    padding: 80px 0;
  }
  .home_insta{
    display: flex;
    flex-wrap: wrap;
    margin: 65px -15px 0;
  }
  .home_insta .item{
    width: 50%;
    padding: 0 15px;
  }

  .pg_home .section#sec10{
    padding: 50px 0 80px;
  }
  .home_access{
    display: flex;
  }
  .home_access .info{
    width: 50%;
    padding-right: 40px;
  }
  .home_access .map{
    width: 50%;
  }

  .pg_home .section#sec11{
    padding: 80px 0;
  }
  .home_links{
    margin: 0 -15px;
    display: flex;
  }
  .home_links .item{
    width: 50%;
    padding: 0 15px;
  }
}
@media (min-width:1024px){
  /*.mv{
    height: 90vh;
  }*/
  .mv_box{
    padding-bottom: 125px;
  }
  .mv_box .txt {
    font-size: 50px;
  }

  .pg_home .section#sec1{
    padding: 105px 0 120px;
  }

  .pg_home .section#sec2{
    padding: 65px 0 115px;
  }
  .pg_home .section#sec2 .home_ttl1{
    margin-bottom: 75px;
  }
  .home_concept .img{
    width: 49%;
    order: 2;
  }
  .home_concept .txt{
    width: 51%;
    padding-right: 30px;
    order: 1;
  }
  .home_concept .ttl{
    margin-top: -50px;
    text-align: left;
  }

  .pg_home .section#sec3{
    padding: 85px 0 100px;
  }
  ul.home_plans li a {
    font-size: 16px;
  }

  .pg_home .section#sec4{
    padding: 50px 0 80px;
  }

  .pg_home .section#sec5{
    padding: 115px 0;
  }

  .pg_home .section#sec6{
    padding: 50px 0;
  }

  .home_blog{
    margin: 58px -15px 0;
  }
  .home_blog .item{
    padding: 0 15px;
  }
  .home_blog .item a{
    min-height: 355px;
  }
  .pg_home .section#sec8 .link_1{
    margin-top: 80px;
  }

  .pg_home .section#sec9{
    padding: 95px 0 125px;
  }
  .pg_home .section#sec9 .home_ttl1 {
    margin-bottom: 20px;
  }

  .pg_home .section#sec10{
    padding: 50px 0 90px;
  }
  .pg_home .section#sec10 .home_ttl1{
    margin-bottom: 75px;
  }

  .pg_home .section#sec11{
    padding: 122px 0 105px;
  }

  .home_access .info{
    padding-right: 58px;
  }
}
@media (min-width:1200px){
  /*.mv{
    max-height: 800px;
    height: 95vh;
  }*/

  .home_blog .item a{
    min-height: 405px;
  }
}


/* **********************************
 *  撮影プラン
 * ********************************* */
.pg_plan .section + .section{
  padding-top: 70px;
}

.plan_jump {
  margin: 50px -3px 0;
  display: flex;
  flex-wrap: wrap;
}
.plan_jump li{
  width: 50%;
  padding: 0 3px;
}
.plan_jump li a{
  width: 100%;
  padding: 10px;
  display: block;
  border: 1px solid #ad9b82;
  border-radius: 27px;
  text-align: center;
  font-weight: 500;
  color: #ad9b82;
  position: relative;
}
.plan_jump li a:hover{
  opacity: 1;
  background: #ad9b82;
  color: #ffffff;
}
.plan_jump li a:after{
  font-size: 13px;
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);  
}
.plan_ttl1 {
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
}
.plan_ttl1 .ja{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.plan_ttl1 .ja:after{
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  margin: 10px auto 8px;
  background: #b4a274;
}
.plan_ttl1 .en{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.plan_ttl2 {
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}
.plan_ttl2:before{
  content: "";
  width: 100%;
  height: 1px;
  background: #d3bf8a;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
}
.plan_ttl2 span{
  font-size: 20px;
  padding: 0 25px;
  font-weight: 500;
  letter-spacing: 0.075em;
  display: inline-block;
  background: #ffffff;
  position: relative;
}
.plan_ttl3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #b4a274;
  text-align: center;
  letter-spacing: 0.075em;
  font-weight: 500;
}
.plan_text1{
  text-align: justify;
  line-height: 2.125;
  letter-spacing: 0.075em;
}

.plan_ttl4 {
  padding: 5px 0;
  margin: 52px 0 30px;
  border-top: 1px solid #b4a274;
  border-bottom: 1px solid #b4a274;
  text-align: center;
  cursor: pointer
}
.plan_ttl4 .ttl{
  font-size: 18px;
  padding: 5px 0;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #b4a274;
  color: #ffffff;
  position: relative;
  line-height: 1.5;
}
.plan_ttl4 .ttl:after{
  font-size: 12px;
  /*content: "詳細\f13a";*/
  content: "詳細\f055";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.plan_ttl4.active .ttl:after{
  /*content: "詳細\f139";*/
  content: "詳細\f056";
}
.plan_ttl4 + .contents{
  display: none;
}

.plan_box1 + .plan_box1{
  margin-top: 30px;
}
.plan_box1 {
  padding: 20px 15px 25px;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #b4a274;
}
.plan_box1 .ttl{
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 5px;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #c2c2c2; 
  line-height: 1.5;
}
.plan_box1 .ttl:after{
  content: "";
  display: block;
  clear: both;
}
.plan_box1 .ttl .tt{
  font-size: 18px;
  font-weight: 500;
  float: left;
}
.plan_box1 .ttl .price{
  float: right;
  font-weight: 500;
}
.plan_box1 .ttl .price span{
  font-size: 16px;
}
.plan_box1 .desc{
  letter-spacing: 0.075em;
  line-height: 1.85;
  text-align: justify;
}
.plan_box1 .desc p:not(.indent) + p:not(.indent){
  margin-top: 15px;
}
.plan_box1 .subttl{
  margin: 10px 0 -5px -8px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.plan_box1 .list{
  margin: 5px -10px;
  display: flex;
  flex-wrap: wrap;
}
.plan_box1 .list li{
  padding: 0 10px;
  margin-top: 16px;
}
.plan_box1 .list span{
  padding: 1px 10px;
  border: 1px dashed;
  display: inline-block;
  letter-spacing: 0.075em;
}
.plan_link{
  width: 170px;
  font-size: 15px;
  padding: 1px;
  margin: 22px auto 0;
  letter-spacing: 0.075em;
  display: block;
  background-image: -moz-linear-gradient( 90deg, rgba(228,229,230,0.99608) 0%, rgb(207,208,210) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(228,229,230,0.99608) 0%, rgb(207,208,210) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(228,229,230,0.99608) 0%, rgb(207,208,210) 100%);
  text-align: center;
  border-radius: 15px;
  line-height: 1.65;
}
.plan_box1 .caution{
  margin-top: 25px;
  letter-spacing: 0.075em;
  line-height: 1.75;
  text-align: justify;
}
.plan_box1 .caution .ls{
  letter-spacing: 0.02em;
}
.plan_box1 .caution .indent{
  padding-left: 1em;
  text-indent: -1em;
}

.plan_ttl5 {
  margin-top: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.075em;
  text-align: center;
  position: relative;
}
.plan_ttl5:before{
  content: "";
  width: 100%;
  height: 1px;
  background: #181818;
  position: absolute;
  left: 0;
  top: 50%;
}
.plan_ttl5 .tt{
  min-width: 120px;
  font-size: 20px;
  padding: 0 15px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #ffffff;
  line-height: 1.2;
}
.plan_box2 {
  border: 2px solid #e2d4b1;
  background: #fffdf7;
}
.plan_box2 .ttl1 {
  font-size: 18px;
  padding: 5px 0;
  margin-top: -2px;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  background: #e2d4b1;
  color: #ffffff;
  line-height: 1.5;
}
.plan_box2 .inner{
  padding: 0 15px 30px;
  letter-spacing: 0.075em;
  text-align: justify;
}
.plan_box2 .subttl1 {
  text-align: center;
  font-weight: 500;
}
.plan_box2 .list{
  margin: 0 -15px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.plan_box2 .list li{
  padding: 0 15px;
  margin-top: 15px;
}
.plan_box2 .list span{
  min-width: 128px;
  padding: 1px 10px;
  border: 1px dashed;
  display: inline-block;
  letter-spacing: 0.075em;
  background: #ffffff;
  text-align: center;
}
.plan_box2 .price {
  width: 100%;
  padding: 10px 15px;
  border-bottom: 1px solid #d0d0d0;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.65;
  /*display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;*/
}
.price1_list .item:first-child .price,
.plan_box2 .inner > .price:first-child{
  border-top: 1px solid #d0d0d0;
}
.price1_list .item .price + .price{
  border-top: 0;
}
.plan_box2 .price:after{
  content: "";
  display: block;
  clear: both;
}
.pg_plan .price dt{
  float: left;
}
.pg_plan .price dd{
  float: right;
}

.plan_box2 + .plan_box2{
  margin-top: 30px;
}
.price1_list .item .caution{
  padding: 5px 30px;
}
.plan_box2_two {
  margin: 30px 0;
}
.plan_box2_two .plan_box2 .ttl1{
  margin-bottom: 30px;
}

.plan_box3 {
  margin: 38px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.plan_box3 .item{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.plan_box3 .inner{
  width: 100%;
  min-height: 161px;
  padding: 12px 0;
  text-align: center;
  border-radius: 20px;
}
.plan_box3 .item.no1 .inner{
  background: url(/img/plan/bg01.png) left top;
  border: 3px solid #d3bf8a;
}
.plan_box3 .item.no2 .inner{
  background: url(/img/plan/bg02.png?1) left top #f6f6f6;
  border: 3px solid #bfbfbf;
}
.plan_box3 .icon.no1{
  margin: 15px 0;
  text-align: center;
}
.plan_box3 .icon.no2{
  margin: 15px 0;
  text-align: center;
}
.plan_box3 .ttl{
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.plan_box3 .caution{
  margin-top: 8px;
  line-height: 1.625;
  letter-spacing: 0.075em;
}
.plan_box1 .desc .indent,
.plan_box3 .caution .indent,
.price1_list .item .caution .indent{
  padding-left: 1em;
  text-indent: -1em;
}

.plan_ttl6 {
  font-size: 20px;
  margin: 30px 0 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  line-height: 1.5;
}
.plan_ttl6:after{
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin: 7px auto 0;
  background: #b4a274;
  display: block;
}
.plan_box2_two .item .plan_box2 + .plan_box2{
  margin: 30px 0 0;
}
.price2 {
  font-size: 30px;
  margin-top: -12px;
  margin-bottom: 8px;
  color: #cb0017;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: center;
}
.price2 span{
  font-size: 18px;
}
.medium {
  font-weight: 500;
}
.plan_link.center{
  margin-right: auto;
}
.plan_link2 {
  width: 220px;
  font-size: 15px;
  padding: 8px;
  margin: 30px auto 0;
  border-radius: 20px;
  display: block;
  background-image: -moz-linear-gradient( 90deg, rgba(228,229,230,0.99608) 0%, rgb(207,208,210) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(228,229,230,0.99608) 0%, rgb(207,208,210) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(228,229,230,0.99608) 0%, rgb(207,208,210) 100%);
  text-align: center;
  line-height: 1.65;
  letter-spacing: 0.075em;
}
.plan_box2 .price2_list{
  margin-top: 30px;
}
.plan_box2 .price2_list .price{
  width: 100%;
}
.plan_box2 .price2_list .price:first-child{
  border-top: 1px solid #d0d0d0;
}

.pg_plan .section#sec8 .plan_box1,
.pg_plan .section#sec7 .plan_box1{
  margin-top: 25px;
}

.plan_box2_two .caution{
  padding: 5px 30px;
}

.plan_box2 .plus{
  padding: 5px;
  text-align: center;
}

.plan_link3 a {
  max-width: 414px;
  width: 100%;
  margin: 37px auto -15px;
  padding: 1px;
  background: #b4a274;
  display: block;
  position: relative;
}
.plan_link3 a:before, 
.plan_link3 a:after {
  width: calc(100% - 15px);
  height: 0;
  display: block;
  content: "";
  position: absolute;
  left: 0;
}
.plan_link3 a:before {
  border-bottom: solid 15px #b4a274;
  border-left: solid 15px transparent;
  bottom: 100%;
}
.plan_link3 a:after {
  border-top: solid 15px #b4a274;
  border-right: solid 15px transparent;
  top: 100%;
}
.plan_link3 span {
  width: calc(100% - 4px);
  font-size: 16px;
  margin: 0 auto;
  background: #ffffff;
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #b4a274;
}
.plan_link3 span:before, 
.plan_link3 span:after {
  width: calc(100% - 13px);
  height: 0;
  display: block;
  content: "";
  position: absolute;
  left: 0;
}
.plan_link3 span:before {
  border-bottom: solid 13px #ffffff;
  border-left: solid 13px transparent;
  bottom: 100%;
}
.plan_link3 span:after {
  border-top: solid 13px #ffffff;
  border-right: solid 13px transparent;
  top: 100%;
}
.plan_link3 strong {
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
}
.plan_link3 strong:after {
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.bridal_img{
  margin-top: 30px;
}

/*衣装カタログ*/
.catalog_cat {
  max-width: 920px;
  margin: 0 auto;
}
.catalog_cat ul{
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
}
.catalog_cat li{
  width: 50%;
  padding: 0 8px;
}
.catalog_cat li a{
  padding: 3px;
  text-align: center;
  display: block;
  border: 2px solid #cebb89;
  color: #cebb89;
  font-weight: 500;
}
.catalog_cat li.on a{
  border-color: #858585;
  background: #858585;
  color: #ffffff;
}

.catalog_list{
  margin: 40px -12px 0;
  display: flex;
  flex-wrap: wrap;
}
.catalog_list .item{
  width: 50%;
  padding: 0 12px;
  cursor: pointer;
}
.catalog_list .item a{
  display: block;
}
.catalog_list .item .img:before{
  padding-top: 138%;
  display: block;
  content: "";
}
.catalog_list .item{
  /*display: flex;*/
}
.catalog_list .item .title{
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.swiper-slide .item{
  display: flex;
}
.swiper-slide .img{
  width: 60%;
  margin: 0 auto ;
  
  position: relative;
}
.swiper-slide .img.hasSub{
  cursor: pointer;
}
.swiper-slide .img.hasSub:after{
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 0;
  right: 5px;
}
.swiper-slide .imgs{
  width: 60%;
  margin: 0 auto ;
}
.swiper-slide .imgs.wide{
  width: 100%;
}
.swiper-slide .imgs .img1,
.swiper-slide .imgs .img2{
  position: relative;
}
.swiper-slide .imgs .img1:after,
.swiper-slide .imgs .img2:after{
  content: "\f00e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 0;
  right: 5px;
}
.swiper-slide .imgs .img1{
  
}
.swiper-slide .imgs .img2{
  margin-top: 10px;
}
.swiper-slide .img:before{
  padding-top: 130%;
  display: block;
  content: "";
}

.swiper-slide .txt{
  width: 40%;
  text-align: center;
  position: relative;
  padding-bottom: 35px;
}
.swiper-slide .txt dl{
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.075em;
}
.swiper-slide .txt dt{
  width: 100%;
  font-weight: 500;
}
.swiper-slide .txt dd{
  width: 100%;
}
.swiper-slide .txt dd p{
  border-bottom: 1px solid #b4a274;
  padding-top: 10px;
  padding-bottom: 10px;
}
.swiper-slide .txt .msg{
  margin-top: 20px;
}
.swiper-slide .txt .brand{
  font-size: 14px;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}

.popup_content{
  display: none;
}

/* ---------------------------- */
/* --- Base --- */
/* ---------------------------- */

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 20px;
}
.modal_inner {
  filter: drop-shadow(0px 0px 4px #ddd);
  background: #FFF;
  width: 90%;
  margin: 0 auto;
  border-radius: 2px;
  padding: 20px 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
}
.modal__close-btn:hover {
  opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #313131;
  line-height: 1;
  width: 2rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}
.lineClose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
p.swiperText {
  margin: 0;
  text-align: center;
}

.custome_list {
  margin: 0 -8px 50px;
  display: flex;
  flex-wrap: wrap;
}
.custome_list .item{
  width: 50%;
  padding: 0 8px;
}
.custome_list .img{
  height: 30vw;
  background: #f3f3f3;
}
.custome_list .img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.custome_list .ttl {
  margin-top: 12px;
  border-left: 4px solid #af9653;
  padding-left: 10px;
  line-height: 1.5;
}

.plan_box4 {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.plan_box4 .item{
  width: 100%;
  padding: 0 15px;
}
.plan_box4 .item + .item{
  margin-top: 25px;
}
.plan_box4 .item .ttl{
  font-size: 18px;
  padding: 0 15px 5px;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #d3bf8a;
  border-left: 6px solid #d3bf8a;
  line-height: 1.85;
  text-align: justify;
}

.pg_plan .section#sec12 button.view-more-button{
  width: 220px;
  margin: 30px auto 0;
  padding: 7px;
}
.pg_plan .section#sec12 button.view-more-button:after{
  right: 15px;
}

@media (max-width:767px){
  .plan_jump li a{
    font-size: 12px;
  }
  .plan_jump li:nth-child(n+3){
    margin-top: 10px;
  }
  .plan_box1 .list span{
    font-size: 14px;
  }
  .plan_box1 .txt{
    margin-top: 20px;
  }
  .plan_box3 .icon.no1{
    transform: rotate(90deg);
  }  
  .plan_box2_two .item + .plan_box2{
    margin-top: 25px;
  }

  .matternity_imgs{
    margin: 30px 0 50px;
  }
  .matternity_imgs .img{
    text-align: center;
  }
  .matternity_imgs .img + .img{
    margin-top: 15px;
  }

  .custome_list .item.large{
    width: 100%;
  }
  .custome_list .item.large .img{
    height: 70vw;
  }
  .custome_list .item:nth-child(n+2){
    margin-top: 25px;
  }
  .catalog_cat li:nth-child(n+3){
    margin-top: 10px;
  }
  
  .swiper-slide .item{
    
  }
  .swiper-slide .txt{
    padding-left: 10px;
    padding-bottom: 50px;
  }
  .swiper-slide .txt dd{
    font-size: 10px;
  }
  .swiper-slide .txt .msg,
  .swiper-slide .txt .brand{
    font-size: 10px;
  }
  .swiper-slide .txt .msg{
    letter-spacing: 0.02em;
    /*text-align: justify;*/
  }
  .swiper-slide .txt .brand{
    font-size: 12px;
    padding-left: 10px;
  }
  .swiper-slide .txt .brand rt{
    font-size: 10px;
  }
  
  .modal,
  .modal__content{
    padding: 0;
  }
  .modal_inner{
    width: 80%;
    /*height: 80%;*/
    height: auto;
    padding: 15px 10px;
  }
  .swiper-slide .item{
    align-items: flex-start;
    /*height: 75vh;*/
    height: auto;
    overflow-y: scroll;
  }
  .catalog_list .item:nth-child(n+3){
    margin-top: 15px;
  }
  .pg_plan .swiper-button-next:after, 
  .pg_plan .swiper-button-prev:after{
    font-size: 30px;
  }

  .plan_link3 a {
    margin: 50px auto 70px;
  }
  .plan_link3 strong{
    padding: 5px 0;
  }

}
@media (min-width:768px){
  .pg_header {
    height: 450px;
    padding-right: 70px;
    justify-content: flex-end;
  }
  .tt1 span{
    font-size: 38px;
  }
  .tt1 strong{
    font-size: 18px;
  }
  .pg_plan .section + .section{
    padding-top: 115px;
  }
  .pg_plan .section#sec2{
    padding-top: 75px;
  }

  .plan_jump {
    margin: 120px -5px 0;
  }
  .plan_jump li{
    width: 33.33%;
    padding: 0 5px;
  }
  .plan_jump li:nth-child(n+4){
    margin-top: 10px;
  }

  .plan_ttl1 {
    margin-bottom: 50px;
  }
  .plan_text1{
    text-align: center;
  }

  .plan_ttl3 {
    font-size: 25px;
  }

  .plan_box1{
    padding: 20px 30px 25px;
  }
  .plan_box1 .img {
    width: 36.4%;
  }
  .plan_box1 .txt {
    width: 63.6%;
    padding-left: 30px;
    padding-right: 5px;
  }
  .plan_box1 .ttl,
  .plan_box1 .ttl .tt{
    font-size: 20px;
  }
  .plan_box1 .list span{
    padding: 1px 19px;
  }
  .plan_link{
    margin-right: 0;
  }

  .plan_box2 .inner{
    padding: 0 30px 25px;
  }
  .plan_box2 .list{
    margin-bottom: 45px;
  }
  .price1_list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }  
  .plan_box2 .price {
    padding: 10px 30px;
  }
  .plan_box2 .price,
  .price1_list .item .caution {
    width: 320px;
    margin: 0 auto;
  }
  .pg_plan .price1_list:not(.nobdr) .item:nth-child(2) .price,  
  .pg_plan .price1_list .item:nth-child(2) .price:first-child{
    border-top: 1px solid #d0d0d0;
  }
  .plan_box2_two {
    display: flex;
    flex-wrap: wrap;
  }
  .plan_box2_two .plan_box2{
    width: calc(50% - 15px);
    /*min-height: 365px;*/
  }
  .plan_box2_two .plan_box2 + .plan_box2{
    margin-left: 30px;
    margin-top: 0;
  }
  .plan_box2_two .plan_box2 .price{
    width: 100%;
  }
  .plan_box3 {
    margin: 58px 0 0;
  }
  .plan_box3 .item{
    width: 29.66%;
  }
  .plan_box3 .icon.no1{
    width: 4.5%;
    margin-top: 60px;
    margin-bottom: 0;
  }
  .plan_box3 .icon.no2{
    width: 6.5%;
    margin-top: 60px;
    margin-bottom: 0;
  } 

  .plan_box2_two .item{
    width: calc(50% - 15px);    
  }
  .plan_box2_two .item .plan_box2{
    width: 100%;
  }
  .plan_box2_two .item + .plan_box2{
    margin-left: 30px;
  }
  .plan_ttl5 {
    margin-top: 75px;
    margin-bottom: 25px;
  }
  .plan_box3 + .plan_ttl5{
    margin-top: 45px;
  }
  .plan_ttl5 .tt{
    min-width: 150px;
    font-size: 22px;
    padding: 0 25px;
  }
  .plan_ttl6 {
    font-size: 22px;
    margin: 75px 0 20px;
  }
  .plan_link2{
    margin-top: 60px;
  }

  .matternity_imgs {
    margin: 40px -15px 82px;
    display: flex;
  }
  .matternity_imgs .img{
    width: 50%;
    padding: 0 15px;
  }

  .plan_ttl4 .ttl{
    font-size: 20px;
  }
  .plan_ttl4 .ttl:after{
    font-size: 16px;
    right: 34px;
  }

  .plan_ttl1 .ja{
    font-size: 30px;
  }

  .furisode_men_rental .plan_box2 .plan_link{
    margin-top: 35px;
  }
  .furisode_men_rental .plan_box2 .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .pg_plan .section#sec9 .furisode_men_rental .plan_box2 .inner {
    min-height: 318px;
  }

  .pg_plan .section#sec10 .plan_ttl6{
    margin-top: 42px;
  }
  .bridal_img{
    margin-top: 60px;
  }

  .pg_plan .section#sec12 button.view-more-button{
    margin-top: 40px;
  }
  .catalog_cat ul{
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
  }
  .catalog_cat li{
    width: 25%;
    padding: 0 15px;
  }
  .catalog_cat li:nth-child(n+5){
    margin-top: 20px;
  }
  .catalog_list{
    margin-top: 60px;
  }
  .catalog_list .item{
    width: 25%;
  }
  .catalog_list .item:nth-child(n+5){
    margin-top: 20px;
  }
  .swiper-slide .item{
    display: flex;
    flex-wrap: wrap;
  }
  .swiper-slide .img{
    width: 55%;
  }
  .swiper-slide .txt{
    width: 45%;
    padding-left: 30px;
  }
  .swiper-slide .txt dt{
    /*width: 100%;*/
  }
  .swiper-slide .txt .msg{
    font-size: 14px;
  }
  .swiper-slide .img{
    margin-bottom: 0;
  }
  .custome_list {
    margin: 70px -15px 80px;
  }
  .custome_list .item{
    width: 33.33%;
    padding: 0 15px;
  }
  .custome_list .item:nth-child(n+4){
    margin-top: 20px;
  }
  .custome_list .img{
    height: 225px;
  }
}
@media (min-width:1024px){
  .pg_header {
    height: 520px;
    padding-right: 135px;
  }

  .plan_jump li{
    width: 25%;
  }
  .plan_jump li:nth-child(n+4){
    margin-top: 0;
  }
  .plan_jump li:nth-child(n+5){
    margin-top: 10px;
  }

  .plan_box1 .txt {
    padding-left: 62px;
    padding-right: 30px;
  }
  .plan_link{
    width: 160px;
  }
  .plan_box1 .links{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .plan_box1 .links .plan_link{
    margin: 0;
  }
  .plan_box1 .links .plan_link + .plan_link{
    margin-left: 15px;
  }

  .plan_box2 .inner{
    padding: 0 40px 25px;
  }
  .plan_box2 .price,
  .price1_list .item .caution,
  .plan_box2_two .plan_box2 .price{
    width: 410px;
  }  
  .plan_box2 .list{
    margin: 0 -10px 30px;
  }
  .plan_box2 .list li{
    padding: 0 10px;
  }

  .plan_box3 .ttl{
    font-size: 22px;
  }
  .furisode_rental .plan_link{
    margin-top: 35px;
  }

  .catalog_cat li{
    width: 20%;
  }
  .catalog_list .item{
    width: 20%;
  }
  .catalog_cat li:nth-child(n+5){
    margin-top: 0;
  }
  .catalog_cat li:nth-child(n+6){
    margin-top: 20px;
  }

  .plan_box4{
    margin-top: 60px;
  }
  .plan_box4 .item{
    width: 50%;
  }
  .plan_box4 .item + .item{
    margin-top: 0;
  }
  .plan_box4 .item:nth-child(n+3){
    margin-top: 40px;
  }
  .plan_box4 + .plan_ttl6{
    margin-top: 70px;
  }

  .swiper-slide .txt dd{
    /*width: calc(100% - 120px);*/
  }

  .catalog_list .item:nth-child(n+5){
    margin-top: 0;
  }
  .catalog_list .item:nth-child(n+6){
    margin-top: 20px;
  }
}
@media (min-width:1200px){
  .plan_jump li{
    width: 20%;
  }
  .plan_jump li:nth-child(n+5){
    margin-top: 0;
  }
  .plan_jump li:nth-child(n+6){
    margin-top: 10px;
  }

  .plan_link{
    width: 170px;
  }

  .plan_box2 .list{
    margin: 0 -15px 30px;
  }
  .plan_box2 .list li{
    padding: 0 15px;
  }

  .plan_box2 .inner{
    padding: 0 60px 25px;
  }

  .furisode_rental .plan_box2 .inner {
    padding: 0 90px 25px;
  }

  .furisode_men_rental .plan_box2 .inner {
    padding: 0 84px 25px;
  }
  .pg_plan .section#sec9 .furisode_men_rental .plan_box2 .inner {
    min-height: 223px;
  }
  .pg_plan .section#sec10 .furisode_men_rental .plan_box2 .inner {
    min-height: 170px;
  }
  .furisode_men_rental .plan_box2:first-child .medium{
    margin-right: -30px;
    margin-left: 10px;
  }
  
  .swiper-slide .txt{
    padding-top: 70px;
  }
}



/* **********************************
 *  商品ページ
 * ********************************* */
.pg_products .section#sec1{
  padding-bottom: 50px;
}
.products_text1{
  margin-bottom: 50px;
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 2;
}

.pg_products .section#sec2{
  padding: 35px 0 50px;
  background: #fdfcf9;
}
.products_ttl1 {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}
.products_ttl1 .en{
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.products_ttl1 .en:before,
.products_ttl1 .en:after{
  content: "";
  width: 32px;
  height: 2px;
  background: #8d7e5b;
  display: inline-block;
  transform: rotate(-45deg);
  transform-origin: left top;
}
.products_ttl1 .en:before{
  margin-right: 10px;
}
.products_ttl1 .en:after{
  margin-left: 10px;
}
.products_ttl1 .ja{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #8d7e5b;
}
.products_box1{
  display: flex;
  flex-wrap: wrap;
}
.products_box1 .item{
  width: 100%;
}
.products_box1 .ttl{
  font-size: 20px;
  margin: 26px 0 15px;
  padding-left: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-left: 3px solid #b4a274;
  line-height: 1.5;
}
.products_box1 .text{
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 1.85;
}

@media (max-width:767px){
  .products_box1 .item:nth-child(n+2){
    margin-top: 40px;
  }

}
@media (min-width:768px){
  .pg_products .section#sec1{
    padding-bottom: 120px;
  }
  .products_text1{
    font-size: 18px;
    margin-bottom: 70px;
    text-align: center;
  }

  .pg_products .section#sec2{
    padding: 75px 0 100px;
  }
  .products_ttl1 {
    margin-bottom: 52px;
  }
  .products_ttl1 .en{
    font-size: 38px;
  }
  .products_ttl1 .en:before,
  .products_ttl1 .en:after{
    width: 40px;
  }
  .products_ttl1 .en:before{
    margin-right: 15px;
  }
  .products_ttl1 .en:after{
    margin-left: 15px;
  }
  .products_box1{
    margin: 0 -15px;
  }
  .products_box1 .item{
    width: 50%;
    padding: 0 15px;
  }
  .products_box1 .item:nth-child(n+3){
    margin-top: 75px;
  }
  .pg_products {
    margin-bottom: -30px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){


}


/* **********************************
 *  ギャラリー
 * ********************************* */
.gallery_cat{
  padding-bottom: 60px;
  margin-bottom: 20px;
  border-bottom: 1px solid;
}
.gallery_cat ul{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.gallery_cat li{
  width: 50%;
  padding: 0 5px;
}
.gallery_cat li a{
  font-size: 12px;
  padding: 12px 8px;
  display: block;
  border: 1px solid #ad9b82;
  color: #ad9b82;
  position: relative;
  font-weight: 500;
  text-decoration: none;
}
.gallery_cat li.on a{
  background: #ad9b82;
  color: #FFF;
}
.gallery_cat li a:after{
  font-size: 13px;
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

/*.gallery_list{
  margin: 0 -2px;
  padding-top: 20px;
  border-top: 1px solid #2c2419;
}
.gallery_list:after{
  content: "";
  display: block;
  clear: both;
}
.gallery_list .item{
  width: 33.33%;
  padding: 0 2px;
  float: left;
}*/

button.view-more-button{
  width: 213px;
  margin: 50px auto 0;
  padding: 10px;
  display: block;
  background: #333333;
  color: #ffffff;
  border: 0;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
button.view-more-button:before{
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 3px;
  top: 3px;
  border: 2px solid #fff;
  pointer-events: none;
}
button.view-more-button:after{
  font-size: 13px;
  content: "\f107";
  font-weight: 900;
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width:767px){
  .gallery_cat li{
    width: 50%;
  }
  .gallery_cat li:nth-child(n+3){
    margin-top: 5px;
  }
}
@media (min-width:768px){
  .gallery_cat li{
    width: 33.33%;
  }
  .gallery_cat li:nth-child(n+4){
    margin-top: 5px;
  }
  .gallery_cat li a {
    font-size: 15px;
  }

  /*.gallery_list .item{
    width: 25%;
  }*/

}
@media (min-width:1024px){
  .gallery_cat li{
    width: 20%;
  }
  .gallery_cat li:nth-child(n+4){
    margin-top: 0;
  }
  .gallery_cat li:nth-child(n+6){
    margin-top: 5px;
  }

  button.view-more-button{
    margin-top: 80px;
  }


}
@media (min-width:1200px){


}



/* コピー用 */
@media (max-width:767px){

}
@media (min-width:768px){


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

