@charset "UTF-8"; 
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
管理画面
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*    .logged-in{
        margin-top: 32px;
    }*/
    .logged-in .clone-nav{
        top: 32px;
    }
@media (max-width: 750px) {
    #wpadminbar {
    position: fixed !important;
  }
    .logged-in .clone-nav{
        top: 46px;
    }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
scroll 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.clone-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: .5s;
    transform: translateY(-200%);
    background: #fff;
   /* box-shadow: 0 2px 2px #eee;*/
}

.is-show {
    transform: translateY(0);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PC SP 切り替え
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc {
      display: none !important;
  }

  .sp {
      display: block !important;
  }
}

@media screen and (min-width: 751px) {
  .br_sp {
      display: none;
  }
}

@media screen and (max-width: 750px) {
  .br_pc {
      display: none;
  }
}
@media screen and (max-width: 1550px) {
      .br_tab {
      display: none;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
リセット
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, p {
  margin: 0;
  padding: 0;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", "yugothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  color: #222222;
  line-height: 1.5;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
  position: relative;
}

@media (max-width: 750px) {
  body {
      font-size: 15px;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

ul, li, dl, dt, dd {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1,h2,h3,h4{
    margin: 0;
}

a {
  text-decoration: none;
    color: #151515;
    transition: .2s ease-in; 
}
a:hover{
  opacity: .7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
コーダー向け汎用クラス　＞　縦横のサイズ固定のボックス内にある画像について、比率を保ったまま縦横中央揃え＆トリミングして表示
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* 4:3の箱を用意する */
.img_container {
    position: relative;
    /* パディングへのパーセント指定が親ボックスの横幅基準で計算される性質を利用する */
    /* padding-top: 66.6666%; */
    padding-top: 75%;
    overflow: hidden;
}

.img_container img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* 画像の高さを画像コンテナの高さに収める（4:3画像がアップされた場合に隙間が空かない様に考慮し、15%のゆとりを持たせる） */
    /* height: 115%!important; */
    /* width: auto; */
    height: 100%!important;
    width: 100%;
    /* ▼background-size:cover的に動作する */
    object-fit: cover;
    /* IE対策（併せて「ofi.js」を読み込むことではじめて正しく機能する） */
    font-family: 'object-fit: cover;';
}
/* 併せて画像の拡大も行なうバージョン */
.zoom_container .img_container img {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.zoom_container:hover .img_container img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.kugiri_m{
    padding: 80px 0;
}

.kugiri_m02{
    padding: 125px 0;
}

.base_width {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    min-width: 1080px;
    
}
.base_width .inner{
max-height: fit-content;
}
.base_width02 {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
     min-width: 880px;
}

.base_width03 {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    min-width: 980px;
}
@media (max-width: 750px) {
    .kugiri_m02{
    padding: 40px 0;
}
    
.base_width {
    min-width: auto;
        width: 100%;
    padding: 0 30px;
}
    
    
.base_width02,
.base_width03{
min-width: auto;
        width: 100%;
    padding: 0 30px;  
}
}
.f_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.floating{
    color: #929C25;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: none;
    font-weight: bold;
    border: 1px solid #929C25;
    border-radius: 100%;
    padding: 10px;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ページネーション　詳細
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page_nation_s {
    width: 100%;
    margin: 195px -5px 90px;
}

.page_nation_s > * {
    width: calc(50% - 10px);
    margin: 0 5px;
}

.page_nation_s > * a {
    background: #EDEDE4;
    display: block;
    border-radius: 10px;
    padding: 28px 65px;
    position: relative;
}

.page_nation_s .area_a a {
    
}

.page_nation_s .area_b a {
    text-align: right;
}

.page_nation_s .area_a a::before {
    position: absolute;
    content:"";
    background: url(../images/se_r.svg) no-repeat 50% / contain;
    width: 6px;
    height: 10px;
    top: calc(50% - 5px);
    left: 40px;
    transform: rotate(180deg);
}

.page_nation_s .area_b a::after {
    position: absolute;
    content:"";
    background: url(../images/se_r.svg) no-repeat 50% / contain;
    width: 6px;
    height: 10px;
    top: calc(50% - 5px);
    right: 40px;
}

p.arc_btn{
    text-align: center;
}

p.arc_btn a{
    position: relative;
    font-size: 14px;
    padding-left: 50px;
}

p.arc_btn a:hover{
    color: #929C25;
}

p.arc_btn a:before{
    position: absolute;
    content:"";
    background: url(../images/se_r.svg) no-repeat 50% / 6px 10px;
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
    left: 0;
    transform: rotate(180deg);
    border-radius: 100%;
    border: 1px solid #929C25;
    transition: .3s ease-in;
}

p.arc_btn a:hover::before{
    background-image: url(../images/se_r_w.svg);
    background-color: #929C25;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
header {
    padding: 10px 20px;
}

header .inner {
    justify-content: space-between;
    align-items: center;
}

header .logo {
    line-height: 1.4;
    margin: 0;
    width: 200px;
}

header ul {
    display: flex;
    align-items: center;
}

header ul li {
    padding: 5px 15px;
}

header ul li:not(last-child) {
    margin-right: 15px;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
pushy内
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 800px) {
header .logo, 
#pushy .logo{
    width: 120px;
}
    #pushy .inner{
      padding: 10px 20px;   
      align-items: center;
    }
}
#pushy ul {
    padding: 50px 15px;
}

#pushy ul li {
    padding-bottom: 5px;
    margin: 0 0 15px;
    border-bottom: 1px solid #707070;
}

#pushy ul li a {
    display:block;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガー (スマホ)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#ham {
    position: relative;
    width: 30px;
    height: 20px;
    margin-left: auto;
}

#ham .c_h {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    background: #151515;
    width: 100%;
}

.ham1 {
    top: 0;
}

#ham.active .ham1 {
    top: calc(50% - 7px);
    transform: translateY(6px) rotate(-45deg);
}

.ham2 {
    top: 50%;
}

#ham.active .ham2 {
    opacity: 0;
}

.ham3 {
    top: 100%;
}

#ham.active .ham3 {
    top: calc(50% + 5px);
    transform: translateY(-6px) rotate(45deg);
}

.hambuger_inner02 {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: #999;
    transition: all 1.2s;
}

.hambuger_inner02.panelactive{
    right: 0;
    
}

.hambuger_inner02 .bg {
    background: #fff;
    height: 100%;
    width: 100%;
}

.hambuger_inner02 .bg ul.items {
    padding-top: 100px;
    width: 100%;
    padding-right: 20px;
}

.hambuger_inner02 .bg ul.items li a {
    color: #151515;
    text-decoration: none;
    padding: 15px;
    display: block;
}

.hambuger_inner02 .bg ul.items li:not(:last-child) a {
    border-bottom: 1px solid #999999;
}

.active02 {
    display: block !important;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フッター
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer {
    height: 70px;
    background: #eee;
}

footer .inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォーム要素　＞　汎用
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.require,.any {
    /* color: red; */
    /* font-weight: bold; */
    font-size: 13px;
    border-radius: 3px;
    padding: 3px 8px;
    margin: 0 13px 0 0;
    font-weight: normal;
    color: #fff;
}

.require {
    background: #d9534f;
}

.any {
    background: #78909C;
}

input, textarea, button {
    /* border: 1px solid #999; */
    /* padding: 10px; */
    margin-bottom: 5px;
    /* border-radius: 2px; */
    box-sizing: border-box;
    border: none;
    padding: 8px 12px;
}

select {
    padding: 5px;
}

input[type="file"] {
    border: 0;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], input[type="file"],/* forIE(IEでは入力欄が表示されるため) */
textarea {
    width: 100%;
    background: #f5f5f5;
}

input.w50 {
    width: 50px;
}

input.w70 {
    width: 70px;
}

input.w100 {
    width: 100px;
}

input.w150 {
    width: 150px;
}

input.w200 {
    width: 200px;
}

input.w7 {
    width: 7em;
}

input.zip {
    width: 9em;
}

h1.ttl {
    background: #d9534f;
}

h1.ttl span {
    font-size: 34px;
}



h1.ttl span {
    position: relative;
    display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォーム要素　＞　チェックボックスのカスタマイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* デフォルトのパーツを非表示に */
.ipt_custom input[type*="radio"], .ipt_custom input[type*="checkbox"] {
    display: none;
}

.ipt_custom input[type*="radio"] + span, .ipt_custom input[type*="checkbox"] + span {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 10px 10px 10px 40px;
    line-height: 1;
}

/* インプットの｢枠組み｣部分を作成 */
.ipt_custom input[type*="radio"] + span:before, .ipt_custom input[type*="checkbox"] + span:before {
    position: absolute;
    content: "";
    top: 0;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: 8px;
    border: 1px solid #aaa;
    background: #fff;
    box-sizing: border-box;
}

/* 上記の｢丸｣バージョン（[class*="exclusive"]はコンタクトフォームで付与されるクラス） */
.ipt_custom input[type*="radio"] + span:before, .ipt_custom [class*="exclusive"] input[type*="checkbox"] + span:before {
    border-radius: 50%;
}

/* チェックマーク部分 */
.ipt_custom input[type*="radio"]:checked + span:after, .ipt_custom input[type*="checkbox"]:checked + span:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 10px;
    width: 15px;
    height: 6px;
    margin-top: -7px;
    border-left: 4px solid #E71063;
    border-bottom: 4px solid #E71063;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 上記の｢丸｣バージョン（[class*="exclusive"]はコンタクトフォームで付与されるクラス） */
.ipt_custom input[type*="radio"]:checked + span:after, .ipt_custom [class*="exclusive"] input[type*="checkbox"]:checked + span:after {
    left: 15px;
    top: 0;
    width: 10px;
    height: 10px;
    margin-top: 13px;
    border-radius: 50%;
    background: #E71063;
    border-left: 0;
    border-bottom: 0;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}
@media (max-width: 750px) {
.ipt_custom input[type*="radio"]:checked + span:after, .ipt_custom [class*="exclusive"] input[type*="checkbox"]:checked + span:after{
    
}
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
WPプラグイン　＞　「コンタクトフォーム」
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
form {
    max-width: 1000px;
    margin: 0 auto;
}

/* 行を区切る (2020-06-01-take)*/
.form_table tr:not(:last-child) {
    border-bottom: 1px solid #dedede;
}

.form_table th, .form_table td {
    /* border-top: 1px solid #ccc; */
    /* border-bottom: 1px solid #ccc; */
    padding: 15px 10px;
}

.form_table th {
    vertical-align: top;
    padding-right: 50px!important;
    padding-top: 23px;
    text-align: left;
    width: 30%;
}
.form_table td{
    max-width: 680px;
}
#wpcf_comp_msg {
    background: #ffc;
    padding: 15px;
}

.wpcf7-list-item {
    display: block;
}

.content-form button,/* 「MTS Simple Booking C」の予約ボタン */
.wpcf7 input[type="submit"] {
    margin: 20px auto;
    padding: 10px 50px;
    text-align: center;
    border-radius: 5px;
    font-size: 1.5rem;
    color: white;
    background: #151515;
}

.wpcf7 input[type="submit"].submit_disable {
    background: #ddd;
    /* color: #333; */
    color: #151515;
    border-radius: 0;
}

.wpcf7 select {
    border-radius: 5px;
}

.wpcf7 input,.wpcf7 span ,.wpcf7 textarea {
    border-radius: 5px;
    font-size: 17px;
}

/*ローディングアイコンがでかくなってボタンの位置がずれる調整2021-04-20hiro*/
.wpcf7 .ajax-loader {
    margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
WPプラグイン　＞　「コンタクトフォーム」　必須項目の表示をカスタマイズ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wpcf7-not-valid {
    /* background: #fee!important; */
    border-color: #da7a7a!important;
    background-color: #fdf2f2!important;
}

.wpcf7-not-valid .wpcf7-list-item-label:before {
    border-color: #da7a7a!important;
}

.wpcf7-checkbox {
    display: block;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
送信完了
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.thanks .bg {
    padding: 0 20px 150px;
}
.thanks h2{
    text-align: center;
    margin-bottom: 20px;
}
.thanks p.main_img {
    width: 250px;
    margin: 0 auto 40px;
}

.thanks p.txt {
    margin-bottom: 150px;
}

.thanks p.btn {
    text-align: center;
}

@media (max-width: 750px) {
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
送信完了
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */.thanks .bg {
        padding: 30px 0 50px;
    }

    .thanks h1 {
        line-height: 1.5;
    }

    .thanks p.main_img {
        width: 200px;
        margin: 0 auto 20px;
    }

    .thanks p.txt {
        margin-bottom: 100px;
    }

    .thanks p.btn {
        text-align: center;
    }

    .thanks p.btn a {
    }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
フォームセレクトのスタイルを各ブラウザで統一
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
select {
    border-radius: 5px;
    padding: 5px 1.5em 5px .75em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(../images/form_arrow.svg) no-repeat right .4em top 50%/.65em auto #fff;
}

select::-ms-expand {
    display: none;
}
@media (max-width: 750px) 
{/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
外部(コンタクトフォーム)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form_table th, .form_table td {
    /*border: 1px solid #ccc;*/
}

.form_table th {
    /*background: #eee;*/
    /*text-align: center;*/
    /*padding: 0 0 15px 0!important;*/
    padding: 15px 0px 10px 0!important;
    
}

.form_table td {
    /* padding: 0 0 30px 0; */
    padding: 0 0 15px 0;
}

/* 追加修正2019-10-31tky */
.wpcf7 input[type="submit"] {
    margin: 0 auto;
    display: block;
}

/* 追加修正2019-10-31tky */
div.wpcf7 .ajax-loader {
    margin: 0 auto;
}
span.small {
    font-size: .75em;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
テーブルを１列に変型する（WPCFのスマホ最適化などに使用）
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.change01 {
    padding-top: 1px;
}

.change01 td, .change01 th {
    display: block;
    margin-top: -1px;
    width: auto!important;
}
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
pagenavi
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wp-pagenavi {
    text-align: center;
    padding-bottom: 125px;
}

.wp-pagenavi a, .wp-pagenavi span {
    border: none;
    display: inline-block;
    padding: 6px 15px;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    color: #fff;
    background: #262626;
    font-weight: normal;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ビジュアルエディタ　＞　汎用見出し
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* スムーズスクロールの移動先改善、h2のパディング考慮(2021-10-08)mk */
h2[class*="h2"] a[id],
h3[class*="h3"] a[id]{
	position:absolute;
	top:0;
}

/* 見出しと見なされる要素の行間を詰める */
[class*="ttl"], [class*="header"] {
    line-height: 1.4;
}

/* [.h2a][.h2b]共通のスタイル */
h2[class*="h2"] {
   font-size: 28px;
    margin-bottom: 1em;
    clear: both;
    position: relative;
    line-height: 1.4;
}

h2[class*="h2"]:before {
    content: '';
    background: no-repeat 50% / contain;
    display: inline-block;
}

* + h2[class*="h2"] {
    margin-top: 2em;
}

/* [.h2a]のスタイル */
h2[class*="h2a"] {
    padding: 0px 0px 10px;
    border-bottom-width: 4px;
    border-bottom-style: double;
}

h2[class*="h2b"] {
    padding: 85px 0 0px;
    text-align: center;
}

h2[class*="h2b"]:before {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    right: calc(50% - 35px);
    background-color: #eee;
}

/* [.h3a][.h3b]共通のスタイル */
h3[class*="h3"] {
   font-size: 20px;
    margin-bottom: 1em;
    clear: both;
    position: relative;
    line-height: 1.4;
}

h2[class*="h3"]:before {
    content: '';
    background: no-repeat 50% / contain;
    display: inline-block;
}

* + h3[class*="h3"] {
    margin-top: 2em;
}

/* [.h3a]のスタイル */
h3[class*="h3a"] {
    padding: 10px 0 10px 15px;
    border-left-width: 8px;
    border-left-style: solid;
}

/* [.h3b]のスタイル */
h3[class*="h3b"] {
    color: #ffffff;
    padding: 10px 15px;
}
@media (max-width: 750px) {

   h2[class*="h2"] {
    font-size: 21px;
}

h3[class*="h3"] {
    font-size: 18px;
}

* + h3[class*="h3"] {margin-top: 1em;}

.related_post h2 {
    font-size: 24px;
}

aside.related_post {
    padding: 30px 15px;
} 
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ビジュアルエディタ　＞　汎用ボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.box01 {
    background-color: #f3eedb;
    padding: 30px;
}
.post-type-post{
    width: 980px;
}
.box02 {
    border-width: 2px;
    border-style: solid;
    padding: 30px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ビジュアルエディタ　＞　汎用ボックス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.box01 {
    background-color: #f3eedb;
    padding: 30px;
}
.post-type-post{
    width: 980px;
}
.box02 {
    border-width: 2px;
    border-style: solid;
    padding: 30px;
}

table.table01 {
    width: 100%;
    border: 1px solid #939393;
    border-collapse: collapse;
}

table.table01 th , table.table01 td {
    padding: 10px 15px;
}

table.table01 th {
    width: 30%;
    border-right: 1px solid #939393;
    background: #f4f4f4;
    font-size: 15px;
    font-weight: normal;
}

table.table01 td {
    font-size: 15px;
}

table.table01 tr:not(:last-child) th, table.table01 tr:not(:last-child) td {
    border-bottom: 1px solid #939393;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
sample-page
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
p.yohaku_m {
    margin: 50px 0;
}

.column02{
    display: flex;
}
.column02.size5_5 {
    margin: 0 -10px;
}

.size5_5 > div {
    width: calc(50% - 20px);
    margin: 0 auto;
}

@media (max-width: 750px) {
.column02 {
    display: block;
}
    .column02.size5_5{
        margin: 0;
    }
.column02 > div {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.column02 > div:first-child {
    margin-bottom: 20px;
}

}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
詳細
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
p.more {
    margin-bottom: 15px;
}

a.more-btn {
    font-size: 14px;
    border: 1px solid #c1c1c1;
    border-radius: 4px;
    padding: 5px 10px;
    min-width: 72px;
    text-align: center;
    display: table;
    position: relative;
}

a.more-btn::before {
    border-bottom: solid 1px;
    border-left: solid 1px;
    width: .5rem;
    height: .5rem;
    transform: rotate(45deg);
    position: absolute;
    content: "";
    top: calc(50% - .3em);
    left: 10px;
}
@media (max-width: 750px) {

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
local_navi2（新バージョン）追加2019-10-31tky
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .local_navi2_wrap {
        background: #D6D6D6;
    }

    .local_navi2_wrap dt {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
        margin-bottom: 6px;
        padding: 10px 10px 0;
        display: none;
    }

    .local_navi2_wrap dt:after {
        font-family: "icomoon";
        content: '\f101';
        font-weight: normal;
        margin-left: 8px;
    }

    .local_navi2_wrap dd {
        overflow-x: auto;
        /* padding: 0 0 10px; */
        padding: 10px 0 10px;
    }

    .local_navi2_wrap ul {
        -webkit-overflow-scrolling: touch;
        list-style: none;
        display: flex;
        position: relative;
    }

    .local_navi2_wrap ul li {
        flex: 1;
        width: auto;
    }



    .local_navi2_wrap ul li a {
        text-align: center;
        text-decoration: none;
        font-size: 1.5rem;
        white-space: nowrap;
        padding: 12px 22px;
        display: block;
        font-weight: bold;
        position: relative;
        background-color: #ffffff;
    }

    .local_navi2_wrap ul li:first-child a {
        border-radius: 5px 0 0 5px;
    }

    .local_navi2_wrap ul li:last-child a {
        border-radius: 0 5px 5px 0;
    }

    .local_navi2_wrap ul li[class*="current"] a {
        background-color: #c1c1c1;
        color: #ffffff;
    }

    .local_navi2_wrap ul li:not(:last-child) a {
        border-right: 1px solid #9c9c9c;
    }

    /* ローカルナビ孫を非表示(2021-10-01)mf */
    .local_navi2_wrap ul li .children {
        display: none;
    }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
よくある質問
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#qa.kugiri_m {
    padding: 62px 0;
}

#qa h2.cmn_ttl {
    text-align: center;
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 75px;
}

#qa h2.cmn_ttl::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: #ffe500;
    bottom: 0;
    left: calc(50% - 35px);
}

.faq .inner02 {
    max-width: 880px;
    margin: 0 auto;
}

.nav-open {
    padding: 10px 15px;
    border-bottom: 1px solid #919191;
    position: relative;
    font-size: 22px;
    font-weight: bold;
}

.nav-open::before {
    /* 閉じている時 */
    content: "＋";
    position: absolute;
    color: #a1a1a1;
    font-size: 1.5em;
    top: calc(50% - .8em);
    right: 0;
}

.nav-open.active::before {
    /* 開いている時 */
    content: "－";
}

.nav-open + nav {
    padding: 15px;
    line-height: 2.0885;
    display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
会社概要
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
table.com{
     border-collapse: collapse;
     border: 1px solid #eee;
     width: 100%;
}

table.com tr:not(:last-child) th{
    border-bottom: 1px solid #fff;
}

table.com tr:not(:last-child) td{
    border-bottom: 1px solid #eee;
}

table.com th,
table.com td{
  padding: 15px 20px;
}

table.com th{
    background: #eee;
    width: 30%;
}

table.com td{
    width: 70%;
}