@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-family:  'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  /*color: #383838;*/
  color: #111111;
}

/* 基本フォント: 明朝 */
/**/
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: 'Noto Sans JP', '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: 'Noto Serif JP', "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover{
  opacity: 0.8;
  text-decoration: none;
}

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;
}

/***********style-t.css 会社概要　テーブル***********/
.page_company .company_info_tbl td {
  border: 2px #341902 solid;
  text-align: left;
  color: #111111;
  padding: 23px 20px;
}
.page_company .company_info_tbl th {
  border: 2px #341902 solid;
  text-align: left;
  color: #111111;
  padding: 23px 20px;
  width: 300px;
  background-color: #ddd3c4;
  padding: 16px 20px;
  font-weight: normal
}











/*************************************************/

/* テーブル 汎用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;
  }
}


.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;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1220px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.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;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 330px;
}

/* 共通の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;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
header .hdr1 .box1{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: 100px;
  height: 100vh;
  background: #eeeeee;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}
header .hdr1 .box2{
  width: calc(100% - 100px);
  position: relative;
  margin-left: 100px;
}
header .hdr1 .hdr_logo{
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}

.hdr_sidemenu{
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.hdr_menu{
  text-align: center;
}
.hdr_menu a{
  color: #341902;
  text-decoration: none;
}
.hdr_menu i{
  font-size: 31px;
}
.hdr_menu a span{
  display: block;
  line-height: 1;
  font-size: 15.5px;
  font-weight: 700;
}
.hdr_sns{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.hdr_sns a{
  font-size: 20px;
  text-decoration: none;
  line-height: 1;
  position: relative;
}
.hdr_sns a + a{
  margin-top: 50px;
  padding-top: 50px;
 border-top: 1px solid #656565;
}
/*.hdr_sns a + a:before{
  content: "";
  width: 22px;
  height: 1px;
  background: #656565;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
*/
/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 910px;
  /*max-width: 100%;*/
  background: #eeeeee;
  z-index: 2;
  border-left: 1px solid #c9c9c9;
  padding: 80px 30px 100px;
}
.gnav.active{
  display: block;
}

.gnav_inner{
  width: 600px;
  max-width: 100%;
}
.gnav_contact{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnav_contact .tel{
  font-family: 'Bodoni Moda', serif;
  text-align: center;
}
.gnav_contact .tel a{
  display: block;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
.gnav_contact .tel span{
  display: block;
  font-size: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid;
}
.gnav_contact .email{
  text-align: center;
}
.gnav_contact .email a{
  display: block;
  width: 280px;
  padding: 15px 10px;
  background: #341902;
  color: #FFF;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.gnav_contact .email a:hover{
  background: #FFF;
  color: #341902;
  border: 1px solid #341902;
}

.gnav_sns{
  margin-top: 45px;
  text-align: right;
}
.gnav_sns a{
  font-size: 22px;
  position: relative;
}
.gnav_sns a + a{
  margin-left: 50px;
  padding-left: 50px;
}
.gnav_sns a + a:before{
  content: "";
  width: 1px;
  height: 22px;
  background: #111111;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.gnav_links{
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 500;
  margin-top: 60px;
}
.gnav_links > li{
  width: 100%;
  position: relative;
  border-top: 1px solid;
}
.gnav_links > li:last-child{
  border-bottom: 1px solid;
}
.gnav_links > 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{
  color: #333;
  text-decoration: none;
  display: block;
  padding: 22px 20px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.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;
}

/**/
.mv{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 910px;
  background-image: url('/img/mv_.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  /*background-size: cover;*/
  /*background-attachment: fixed;*/
  background-size: auto 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */

footer{
  
}

.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #a16533;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #341902;
  color: #FFF;
  text-decoration: none;
}


/* 検索フォーム */
.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 #d1c0a5;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  padding:35px;
}
.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: 20px;
  font-weight:700;
  padding: 5px 0 15px;
  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: 23px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 50px;
}
.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 a:hover,
.pagination .nav-posts .page-archive a:hover{
  background: #341902;
  color: #FFF;
  opacity: 1;
}


/* ページ送り(詳細) */
.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;
  max-width: 100%;
  width: 333px;
  font-size:20px;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.pg_contact .t1 {
  margin-top:80px;
  text-align: center;
  font-weight:normal;
  font-size: 46px;
  font-family: 'Noto Serif JP';
}
.pg_contact span.s1{
  text-align: center;
  font-weight:normal;
  font-size: 20px;
  font-family: 'Noto Serif JP';
  letter-spacing: 0.1em;
  display:block;
}
.pg_contact .t1:after {
    content: "";
    display: block;
    width: 70px;
    height: 6px;
    margin: 7px auto 5px;
    border-top:1px solid black;
}
.contact_info{
  background: #d1c0a5;
  text-align: center;
  padding: 28px 70px 20px;
  margin-bottom: 90px;
  margin-top:40px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 25px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #341902;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
}
.contact_info .box2 .tel a{
  display: block;
  font-family: 'Noto Serif JP';
  letter-spacing: 0.04em;
  color:#3e3e3e;
  text-decoration: none;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 10px 12px 10px 19px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 310px;
  letter-spacing: 0.08em;
  font-family: 'Noto Serif JP';
}
.contact_form th.join_hd1{
  width: 310px;
  padding:15px 12px 14px 19px;
}
.contact_form th.join_hd2 {
  padding:15px 12px 14px 19px;
}

.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  font-weight: normal;
  float: right;
}


.contact_form th.vtop {
  vertical-align: top;
}
.contact_form td{
  font-family: "Noto Sans JP", sans-serif;
}

.contact_form td.course_top [name="select"]{
  width:320px;
  padding-right:10px;
  letter-spacing: 0.160em;
  font-size:15px;
}
.contact_form td.input-erea [name="your-name"]{
  width:460px;
}
.contact_form td.input-erea [name="your-kana"]{
  width:460px;
}
.contact_form td.input-erea [name="your-email"]{
  width:460px;
}
.contact_form td.input-erea [name="your-tel"]{
  width:460px;
}
.contact_form td label {
  padding-right:40px;
  font-size:15px;
  letter-spacing: 0.160em;
}

.contact_form td input::placeholder{
  color:#c5c5c5;
  font-weight:100;
  letter-spacing: 0.160em;
  font-size:15px;
}
.contact_form td textarea::placeholder{
  color:#c5c5c5;
  letter-spacing: 0.16em;
  font-weight:100;
  font-size:15px;
}


.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 + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.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_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 90px;
}
.contact_form_addr dd{
  width: calc(100% - 90px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}

.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{
  
}

.addr_auto_box button{
  margin-left: 20px;
}



.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 input ,
.contact_form td textarea ,
.contact_form td select ,
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 7px 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="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before,
.contact_form td .wpcf7-form-control-wrap[class$="_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: 5px 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: 70px;
  font-size:17px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.080em;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.pg_contact .container {
/*  width:1200px;*/
/*  padding:0;*/
}
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 14px;
  width: 315px;
  margin: 0 10px;
  font-size:18px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns input[type="submit"]:hover,
.contact_form_btns input[type="button"]:hover,
.contact_form_btns button:hover{
  background: #341902;
  color: #FFF;
}

.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* サイトマップ */
.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: 50px;
  font-size:23px;
  letter-spacing: 0.2em;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.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{
  letter-spacing: 0.04em;
  
}
.privacy_items .item{
/*  line-height: 1.6;*/
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;
  
  border-left: 6px solid #341902;
  padding-left: 19px;
  margin-bottom: 13px;
  line-height: 2.33;
}
.privacy_items .item .txt{
  line-height: 1.875em;
  font-family: "Noto Sans JP", sans-serif;
}
.privacy_items .item ul{
/*  list-style: disc;*/
/*  margin-left: 1em;*/
/*  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: 20px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.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%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding-top: 90px;
  padding-left: 100px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{
  font-size:46px;
  margin-bottom: 40px;
  text-align: center;
  font-weight:normal;
  font-size: 46px;
  font-family: 'Noto Serif JP';
  
}
.tt2 em{
  display: block;
}
.tt2 em:after{
  content: "";
  display: block;
  width: 70px;
  height: 6px;
  margin: 7px auto 5px;
  border-top:1px solid black;
}
.tt2 span{
  display: block;
  font-weight:normal;
  font-family: 'Noto Serif JP';
  letter-spacing: 0.1em;
  line-height: 1.44;
}
.tt2 span.sub{
  font-size: 18px;
  margin-top: -2px;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0;
}
.tt2 span.en{
  font-size: 20px;
  margin-top: 10px;
}
.tt2 span.en:first-letter{
  text-transform: uppercase;
}

/*.s1 {
 text-align: center;
  font-weight:normal;
  font-size: 20px;
  font-family: 'Noto Serif JP';
  letter-spacing: 0.1em;
  display:block; 
}*/

.tt3{
  font-size: 24px;
  font-weight: 400;
  font-family: 'Noto Serif JP';
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}
.tt3:after{
  content: "";
  display: block;
  height: 8px;
  margin-top: 10px;
  background-image: url('/img/tt3_bdr.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.tt4{
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}
.tt4 span{
  width: 280px;
  background: #FFF;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tt4:after{
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background: #341902;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  z-index: 0;
}
.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  
}
.read_more a{
  display: block;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px 0;
  border-radius: 10px;
  border: 1px solid;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "→";
  position: absolute;
  top: 50%;
  right: 55px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.read_more a.wh{
  color: #FFF;
}

.read_more a:hover{
  background: #341902;
  color: #FFF;
  opacity: 1;
}
.read_more a.wh:hover{
  background: #FFF;
  color: #341902;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  
}
.pg_home .section#sec2{
  background-image: url('/img/home/celemony_bg.jpg');
  background-repeat: no-repeat;
  /*background-position: right*/
  background-size: auto;
  margin-top: 150px;
}
.pg_home .section#sec3{
  margin-top: 150px;
}
.pg_home .section#sec4{
  margin-top: 150px;
}

.home_msg_wrap{
  text-align: center;
}
.home_msg_wrap .title{
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #341902;
}
.home_msg_wrap .txt{
  letter-spacing: 0.05em;
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.home_news_wrap{
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
}
.home_news_wrap .box1{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  background: #341902;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.home_news_wrap .box2{
  display: flex;
  align-items: center;
  width: calc(100% - 150px);
  min-height: 100px;
  padding: 15px 30px;
  border: 1px solid #341902;
  border-radius: 0 10px 10px 0;
  font-family: "Noto Sans JP", sans-serif;
}

/**/
.home_info_wrap{
  margin-top: 100px;
}

/**/
.home_ceremony_wrap{
  display: flex;
  align-items: center;
  /*height: 500px;*/
  padding: 72px 0;
}
.home_ceremony_wrap .box1{
  color: #FFF;
}
.home_ceremony_wrap .title{
  font-size: 36px;
  font-weight: 400;
  line-height: 1.444;
  letter-spacing: 0.2em;
}
.home_ceremony_wrap .txt{
  font-size: 19px;
  line-height: 1.578;
  margin-top: 20px;
}

/**/
.home_plan_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  
}
.home_plan_items .item{
  width: 33.333%;
  padding: 0 16px;
}
.home_plan_items .item .img{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.home_plan_items .item .img:before{
  content: "";
  display: block;
  padding-top: 92.10%;
}
.home_plan_items .item a{
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  transition: 0.2s all;
}

.home_plan_items .item a:after{
  content: "";
  display: block;
  background: rgba(52, 25, 2, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.home_plan_items .item a:hover{
  transform: scale(1.1);
  text-shadow: 0 0 10px #222;
}
.home_plan_items .item a:hover:after{
  background: none;
}

.home_plan_items .item a .inner{
  width: 100%;
  color: #FFF;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_plan_items .item a span{
  display: block;
  font-size: 26px;
  font-weight: 500;
}
.home_plan_items .item a em{
  display: block;
  font-size: 34px;
  font-weight: 700;
}

/**/
.home_service_wrap{
  position: relative;
  padding-bottom: 50px;
}
.home_service_wrap:after{
  content: "";
  background: #341902;
  position: absolute;
  top: 150px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.home_service_wrap .read_more{
  margin-top: 60px;
  margin-bottom: 60px;
}

.service_slider_item{
  position: relative;
  padding-bottom: 50px;
}
.service_slider_item a img{
  opacity: 1;
}
.service_slider_item .img{
  position: relative;
  overflow: hidden;
}
.service_slider_item .img:before{
  content: "";
  display: block;
  padding-top: 130.95%;
}
.service_slider_item .img span{
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  transition: 0.2s all;
}
.service_slider_item .img:hover span{
  transform: scale(1.1);
}
.service_slider_item .box{
  width: 320px;
  height: 100px;
  background: #FFF;
  padding: 10px 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.service_slider_item .title{
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.service_slider_item .title span{
  display: block;
  font-size: 14px;
}
.service_slider_item .more{
  font-size: 15px;
  font-weight: 500;
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: 10px;
}


/* **********************************
 *  
 * ********************************* */
.pg_plan{
  
}
.pg_plan .section#sec1{
  
}

.service_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -44px;
}
.service_items .item{
  width: 33.333%;
  padding: 0 44px;
  padding-top: 16px;
}
.service_items .item:nth-child(n+4){
  margin-top: 50px;
}
.service_items .inner{
  background: #ddd3c4;
  margin-left: 16px;
  padding-top: 1px;
}
.service_items .img{
  margin-top: -15px;
  margin-left: -16px;
  padding-right: 22px;
  position: relative;
  overflow: hidden;
}
.service_items .img:after{
  content: "";
  width: 2px;
  background: #341902;
  position: absolute;
  top: 15px;
  right: 6px;
  bottom: 0;
}
.service_items .img a{
  display: block;
  position: relative;
}
.service_items .img a:before{
  content: "";
  display: block;
  padding-top: 110%;
}
.service_items .img a span{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s all;
}
.service_items .img a:hover{
  opacity: 1;
}
.service_items .img a:hover span{
  transform: scale(1.1);
}

.service_items .box{
  height: 100px;
  padding: 10px 20px;
  position: relative;
}
.service_items .title{
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.service_items .title span{
  font-size: 14px;
}
.service_items .more{
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  right: 15px;
  bottom: 10px;
}
.service_items .more a{
  display: block;
  padding: 0 10px;
  color: #111;
  background: #FFF;
}
.service_items .more a:hover{
  background: #341902;
  color: #FFF;
}

/* **********************************
 *  
 * ********************************* */
.pg_plan_detail{
  
}
.pg_plan_detail .section#sec1{
  
}
.pg_plan_detail .section#sec2{
  margin-top: 120px;
}
.pg_plan_detail .section#sec3{
  margin-top: 120px;
}
.pg_plan_detail .section#plan_nav{
  margin-top: 80px;
  
}
.pg_plan_detail .section#plan_qa + .section#plan_nav{
  margin-top: 0;
}

.plan_header{
  margin-bottom: 90px;
}

.plan_top_msg_wrap{
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
.plan_top_msg_wrap + .plan_top_msg_wrap{
  margin-top: 45px;
}
.plan_top_msg_wrap .title{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.plan_top_msg_wrap .title:before,
.plan_top_msg_wrap .title:after{
  content: "";
  flex-grow: 1;
  /*width: 100%;*/
  height: 1px;
  background: #000;
}
.plan_top_msg_wrap .title span{
  min-width: 140px;
  padding: 0 25px;
}
.plan_top_msg_wrap .title span.md{
  min-width: 220px;
}
.plan_top_msg_wrap .txt{
  line-height: 1.875;
}

/**/
.plan_gallery_slider{
  margin-top: 50px;
}
.plan_gallery_slider .slider-pro img.sp-image{
  border-radius: 10px !important;
}

.plan_gallery_slider .sp-next-arrow:after, 
.plan_gallery_slider .sp-next-arrow:before, 
.plan_gallery_slider .sp-previous-arrow:after, 
.plan_gallery_slider .sp-previous-arrow:before{
  background-color: #d4c4ac;
}

/**/
.plan_album_wrap{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.plan_album_wrap + .plan_album_wrap{
  margin-top: 65px;
}

.plan_album_title{
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  background: #d4c4ac;
  padding: 3px 15px;
  margin-bottom: 30px;
}
.plan_album_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -35px;
  
}
.plan_album_items .item{
  width: 33.333%;
  padding: 0 35px;
}
.plan_album_items .item:nth-child(n+2){
  border-left: 1px solid #7d7d7d;
}
.plan_album_items .item:nth-child(3n+1){
  border-left: 0;
}
.plan_album_items .item:nth-child(n+4){
  margin-top: 80px;
}
.plan_album_items .item .inner{
  /*display: flex;
  flex-wrap: wrap;
  align-content: space-between;*/
  height: 100%;
}
.plan_album_items .item .inner_box1,
.plan_album_items .item .inner_box2{
}

.plan_album_items .item .imgbox{
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.plan_album_items .item .imgbox:before{
  content: "";
  display: block;
  padding-top: 74.28%;
}
.plan_album_items .item .img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s all;
}

/*.plan_album_items .item .img:hover{
  transform: scale(1.1);
}*/
.plan_album_items .item .title{
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 10px;
}
.plan_album_items .item .comment{
  line-height: 1.625;
  font-weight: 400;
  margin-bottom: 10px;
}
.plan_album_items .item .range{
  /*-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;*/
  margin: 15px auto 0;
  text-align: center;
}
.plan_album_items .item .range span{
  display: inline-block;
  transform: rotate(90deg);
}

/**/
.plan_album_price1{
  width: 170px;
  max-width: 100%;
  background: #eeeeee;
  text-align: center;
  font-weight: 500;
  padding: 5px 10px;
}
.plan_album_price1 + .plan_album_price1{
  margin-top: 10px;
}

.plan_album_price2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #eeeeee;
  font-weight: 500;
  padding: 5px 20px 5px 10px;
}
.plan_album_price2 + .plan_album_price2{
  margin-top: 5px;
}

.plan_album_price2 dt{
  
}
.plan_album_price2 dd{
  margin-left: auto;
}


/**/

.plan_album_price_plus{
  display: flex;
  justify-content: space-between;
  padding-right: 20px;
}
.plan_album_price_plus .box1{
  width: 170px;
  max-width: 100%;
  text-align: center;
}
.plan_album_price_plus .box2{
  font-size: 15px;
  font-weight: 400;
}

/**/
.plan_other_price{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.plan_other_price .item{
  width: 100%;
  padding: 5px 15px;
}
.plan_other_price.col2 .item{
  width: 50%;
}

.plan_other_price .item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #eeeeee;
  font-weight: 500;
  padding: 5px 20px 5px 10px;
}

.plan_other_price.md .item .inner{
  padding: 13px 25px;
}

.plan_other_price .item .title{
  font-weight: 400;
}
.plan_other_price .item .price{
  font-weight: 400;
}
.plan_other_price.col3{
  margin: 0 -40px;
}
.plan_other_price.col3 .item{
  width: 33.333%;
  padding: 0 40px;
}
.plan_other_price.col3 .item .inner{
  /*padding: 13px 25px;*/
}
.plan_other_price.col3 .item .price{
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}

.plan_other_price_msg1{
  text-align: right;
  margin-top: 15px;
  font-weight: 400;
}
.plan_other_price_msg2{
  border: 5px solid #eeeeee;
  padding: 15px 20px;
  margin-top: 35px;
  letter-spacing: 0.1em;
}

.plan_other_price_msg_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 5px solid #eeeeee;
  padding: 15px 20px;
  margin-top: 35px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.plan_other_price_msg_items .item{
  width: 49%;
}
.plan_other_price_msg_items .item{
  
}
.plan_other_price_msg_items dl.item{
  display: flex;
  /*justify-content: space-between;*/
}
.plan_other_price_msg_items dl.item dt{
  min-width: 325px;
}
.plan_other_price_msg_items dl.item dd{
  
}

/* スペシャルプラン */
.section#plan_special{
  background: #f8f3ec;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 70px;
}
.section#plan_special .plan_top_msg_wrap{
  margin-bottom: 50px;
}
.plan_special_notice{
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  text-align: right;
  margin-bottom: 5px;
}

.plan_special_wrap{
  background: #FFF;
  border: 1px solid #d4c4ac;
  padding: 25px 35px 35px;
  font-family: "Noto Sans JP", sans-serif;
}
.plan_special_wrap + .plan_special_wrap{
  margin-top: 35px;
}
.plan_special_wrap .header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.plan_special_wrap .header .title{
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.plan_special_wrap .header .title .icon{
  margin-right: 25px;
}
.plan_special_wrap .header .title .icon.plan_blank + .txt1{
  margin-left: -100px;
}
.plan_special_wrap .header .title .icon.plan_platinum{
  margin-left: -25px;
  margin-right: 10px;
}
.plan_special_wrap .header .title .txt1{
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  
}
.plan_special_wrap .header .title .reserve{
  width: 130px;
  background: #341902;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-left: 25px;
  padding: 2px;
}
.plan_special_wrap .header .box1{
  width: calc(100% - 460px - 15px);
}
.plan_special_wrap .header .box1 .txt{
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
}
.plan_special_wrap .header .box2{
  margin-top: -40px;
  width: 460px;
}
.plan_special_wrap .header .box2 .intax{
  text-align: right;
}
.plan_special_wrap .header .box2 .price {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: right;
  border-bottom: 8px solid #d4c4ac;
  letter-spacing: 0.1em;
  padding-right: 15px;
}
.plan_special_wrap .header .box2 .price em{
  font-size: 1.8em;
  line-height: 1;
  letter-spacing: 0.1em;
}
.plan_special_wrap .header .box2 .price_sub{
  text-align: right;
  margin-top: 15px;
  padding-right: 15px;
  letter-spacing: 0.1em;
}


.plan_special_wrap .including{
  background: #d4c4ac;
  padding: 12px 10px 25px;
  margin-top: 40px;
}
.plan_special_wrap .including + .including{
  margin-top: 20px;
}
.plan_special_wrap .including .txt1{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.plan_special_wrap .including .txt1 span{
  display: inline-block;
  background: #FFF;
  padding: 0 10px;
}
.plan_special_wrap .including .txt1 span.lg{
  min-width: 210px;
  font-size: 20px;
  font-weight: 500;
}
.plan_special_wrap .including .txt1 .sub{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  background: none;
  padding: 0;
  margin-left: 20px;
}

.plan_special_wrap .including .list{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.plan_special_wrap .including .list .item{
  width: 25%;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.plan_special_wrap .including .list .item:nth-child(n+5){
  margin-top: 20px;
}
.plan_special_wrap .including .list .item .icon{
  width: 98px;
  margin-right: 10px;
}
.plan_special_wrap .including .list .item .txt{
  width: calc(100% - 98px - 10px);
  font-size: 14px;
  line-height: 1.428;
  text-align: left;
}
.plan_special_wrap .including .list .item .txt span{
  display: inline-block;
}
.plan_special_wrap .including .list .item .txt.center span{
  text-align: center;
}

/* 複数カテゴリ用 */
.plan_special_wrap .including .inc_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 35px;
}
.plan_special_wrap .including .inc_box1{
  width: 74.32%;
  width: calc(100% - 295px - 15px);
}
.plan_special_wrap .including .inc_box2{
  width: 295px;
  border-bottom: 8px solid #fff;
  margin-top: -50px;
}
.plan_special_wrap .including .inc_inner .list .item{
  width: auto;
  padding: 0 5px;
}

.plan_special_wrap .including .intax{
  margin-bottom: -10px;
  text-align: right;
}
.plan_special_wrap .including .price {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  text-align: right;
  border-bottom: 8px solid #d4c4ac;
  letter-spacing: 0.1em;
}
.plan_special_wrap .including .price em{
  font-size: 1.8em;
  line-height: 1;
  letter-spacing: 0.1em;
}


/**/
.plan_special_wrap .notes{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 15px;
}
.plan_special_wrap .notes .box1{
  width: 50%;
}
.plan_special_wrap .notes .box2{
  width: 50%;
}



/**/
.plan_album_option_wrap{
  font-family: "Noto Sans JP", sans-serif;
  border: 3px solid #d4c4ac;
  padding: 20px 45px;
  margin-top: 50px;
}
.plan_album_option_wrap dl{
  display: flex;
}
.plan_album_option_wrap dl + dl{
  margin-top: 5px;
}
.plan_album_option_wrap dl dt{
  width: 360px;
}
.plan_album_option_wrap dl dd{
  width: calc(100% - 360px);
}

.plan_album_option_wrap.md {
  
}
.plan_album_option_wrap.md dt{
  width: 460px;
}
.plan_album_option_wrap.md dd{
  width: calc(100% - 460px);
}
.plan_album_option_wrap.lg{
  
}

.plan_album_option_msg{
  text-align: right;
  margin-top: 15px;
}

/* QA */
.plan_qa_items_wrap{
  margin-top: 120px;
}
.plan_qa_items_wrap .tt4{
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.plan_qa_items{
  /*border-bottom: 1px solid;*/
  padding-bottom: 35px;
}
.plan_qa_items .item{
  padding-bottom: 30px;
  border-bottom: 1px dotted;
}
.plan_qa_items .item + .item{
  padding-top: 30px;
}
.plan_qa_items .item dt,
.plan_qa_items .item dd{
  position: relative;
  min-height: 38px;
  padding-left: 63px;
  font-family: "Noto Sans JP", sans-serif;
}
.plan_qa_items .item dt{
  font-weight: 500;
  margin-bottom: 15px;
}
.plan_qa_items .item dd{
  
}
.plan_qa_items .item dt:before,
.plan_qa_items .item dd:before{
  content: "";
  width: 38px;
  height: 38px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
.plan_qa_items .item dt:before{
  background-image: url('/img/qa_q.png');
}
.plan_qa_items .item dd:before{
  background-image: url('/img/qa_a.png');
}

.plan_qa_items .item a{
  border-bottom: 1px solid ;
}


/**/
.plan_nav_wrap{
  padding-top: 120px;
  border-top: 1px solid #341902;
}
.plan_nav{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7.5px;
  
}
.plan_nav .item{
  width: 33.333%;
  padding: 5px 7.5px;
}
.plan_nav .item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  background: #341902;
  color: #FFF;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  height: 58px;
  padding: 0 25px;
  text-decoration: none;
  position: relative;
}
.plan_nav .item a span{
  width: 100%;
  font-size: 12px;
}
.plan_nav .item a:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.plan_nav .item.on a,
.plan_nav .item:hover a{
  background: #ddd3c4;
  color: #111111;
}


/* **********************************
 *  
 * ********************************* */

/* 記念日 */
.anniv_price_tbl{
  display: flex;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
}
.anniv_price_tbl .box1{
  width: 25%;
  background: #fdeada;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
}
.anniv_price_tbl .box2{
  width: 43.333%;
}
.anniv_price_tbl .box3{
  width: 29.166%;
}

.anniv_price_tbl .box1 .price{
  width: 100%;
  letter-spacing: 0;
}
.anniv_price_tbl .price1,
.anniv_price_tbl .price2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  padding: 10px 25px;
}
.anniv_price_tbl .price1{
  
  background: #fdeada;
}
.anniv_price_tbl .price1 + .price1,
.anniv_price_tbl .price2 + .price2{
  margin-top: 5px;
}
.anniv_price_tbl .price1 dt{
  
}
.anniv_price_tbl .price1 dd{
  font-size: 18px;
}


.anniv_price_tbl .price2{
  background: #eeeeee;
}
.anniv_price_tbl .price2 dt{
  font-size: 14px;
}
.anniv_price_tbl .price2 dd{
  font-size: 20px;
  color: #c90000;
}


/* 七五三 */
.shichigosan_price_tbl{
  font-family: "Noto Sans JP", sans-serif;
  
}
.shichigosan_price_tbl td,
.shichigosan_price_tbl th{
  text-align: center;
  border: 1px solid #bababa;
  padding: 20px 10px;
}
.shichigosan_price_tbl th{
  background: #eeeeee;
  font-weight: 500;
}
.shichigosan_price_tbl th{
  
}

/* プロフィール */
.profile_price_tbl{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile_price_tbl .box1,
.profile_price_tbl .box2,
.profile_price_tbl .box3{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 195px;
  background: #fdeada;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
}
.profile_price_tbl .calc{
  font-size: 46px;
  color: #341902;
}
.profile_price_msg{
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin-top: 40px;
}
.profile_price_msg span{
  display: inline-block;
  border-bottom: 1px solid;
}
.profile_price_msg .center{
  display: inline-block;
  text-align: left;
}

/* LIFEアルバム */
.lifealbum_imgs_wrap{
  display: flex;
  flex-wrap: wrap;
}
.lifealbum_imgs_wrap .item{
  width: 50%;
  padding: 0 15px;
  text-align: center;
}
.lifealbum_imgs_wrap .item .txt{
  line-height: 1.5;
  margin-top: 10px;
}

.lifealbum_price_wrap{
  border: 5px solid #eeeeee;
  padding: 30px 15px;
  margin-top: 35px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
.lifealbum_price_wrap h3{
  margin-bottom: 25px;
  text-align: center;
}
.lifealbum_price_wrap .price{
  display: flex;
  justify-content: space-between;
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.lifealbum_price_wrap .price+.price{
  margin-top: 15px;
}
.lifealbum_price_wrap .price dt{
  
}
.lifealbum_price_wrap .price dd{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  margin-top:90px;
}
.pg_company .section#sec3{
  
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
  
}
.pg_contact .section#sec1{
  
}
.pg_contact .section#sec2{
  
}
.pg_contact .section#sec3{
  margin-top:110px;
}

.contact_tt{
  text-align: center;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}
