@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
/*------@import------*/
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
  /*------▼基本設定▼------*/
  --color-background: #fff;
  --color-font: #242425;
  --color-primary: #29446C;
  --color-primary-shade: ;
  --color-primary-tint: ;
  --color-secondary: #FCF16E;
  --color-secondary-tint: ;
  --color-table-border: #CCC;
  --body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
  /* 1.6-1.4rem (1920-375) */
  --body-font-family: "Noto Serif JP", serif;
  --content-max-width: 1240px;
  /*------▼ヘッダー設定▼------*/
  --header-background: #FCF16E;
  --header-color-font: #242425;
  --header-color-primary: #29446C;
  --header-secondary: ;
  --header-color-primary-shade: ;
  --header-color-primary-tint: ;
  /*------▼フッター設定▼------*/
  --footer-background: #fff;
  --footer-color-font: #111;
  --footer-color-primary: ;
  /*------▼フォント設定▼------*/
  --font-family01: 'Noto Sans JP', sans-serif;
  --font-family02: "Noto Serif JP", serif;
  --font-family03: "Kiwi Maru", serif;
  --font-family04: ;
}

/*--メディアクエリ--------------------------------------------*/
@media print,
screen and (min-width: 1024px) {}

@media print,
screen and (max-width: 1023px) {}

@media print,
screen and (min-width: 769px) {}

@media print,
screen and (max-width: 768px) {}

/*--全体の設定--------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/*--アンカーリンク--------------------------------------------*/
.anchor-link_contents {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

.anchor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-weight: bold;
  color: var(--color-primary-shade);
  max-width: 370px;
  width: 100%;
  border-radius: 50em;
  padding: var(--px20) var(--px40);
  position: relative;
  border: 1px solid var(--color-primary-shade);

  &::before,
  &::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 7px);
    right: 30px;
    width: 2px;
    height: 14px;
    border-radius: 9999px;
    background-color: var(--color-primary-shade);
    transform-origin: 50% calc(100% - 1px);
  }

  &::before {
    transform: rotate(45deg);
  }

  &::after {
    transform: rotate(-45deg);
  }

  &:hover {
    background-color: var(--color-primary-tint);
    color: var(--color-primary-shade);
  }

  &.anchor-link--special {
    max-width: 540px;
    width: 100%;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;

    &::before,
    &::after {
      background-color: #fff;
    }

    &:hover {
      background: var(--color-primary-tint);
      color: var(--color-primary);

      &::before,
      &::after {
        background-color: var(--color-primary);
      }
    }
  }
}

@media print,
screen and (max-width: 768px) {
  .anchor-link {

    &::before,
    &::after {
      content: "";
      position: absolute;
      bottom: calc(50% - 5px);
      right: 20px;
      width: 2px;
      height: 10px;
      border-radius: 9999px;
      transform-origin: 50% calc(100% - 1px);
    }
  }
}

/*--表示の切り替え--------------------------------------------*/

body:not(.page.home) .top-news {
  display: none;
}

/*--お知らせ　下線--------------------------------------------*/
.postlist li {
  border-top: 1px solid #ddd;
}

.postlist li:last-child {
  border-bottom: 1px solid #ddd;
}

.post .time,
.postlist .time,
.post2b .time,
.post4b .time {
  border-radius: 50em;
}

/*--fvの比率調整--------------------------------------------*/
#mainImg img {
  width: 100% !important;
  height: auto;
}

/*--幅フル100%背景色--------------------------------------------*/

.widecolor--bg01 {
  margin-right: calc(((100vw - 100%) / 2) * -1);
  margin-left: calc(((100vw - 100%) / 2) * -1);
  padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px);
  /* 120-80px (1920-375) */
  background-color: #FAFAFA;
}

@media print,
screen and (max-width: 768px) {
  .widecolor {
    padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) 10% min(calc(150px + (1vw - 19.2px) * 3.2362), 150px) 10%;
    /* 120-80px (1920-375) */
  }
}

.post .widecolor>h2:first-child {
  margin-top: 0 !important;
}

.widearea {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
}

#content,
body:not(.home) #content.wide {
  margin: 0 auto;
}

body.page.page-id-6199 #content.wide {
  padding: 0;
}

body.page.page-id-6199 #breadcrumb {
  background: #fdf9ea;
}

@media print,
screen and (max-width: 768px) {

  #content,
  #content.wide {
    width: 100%;
  }

  .content_inner {
    width: 100%;
  }
}


/*----------------------------------------------
  utility
----------------------------------------------*/
/*---------コンテンツ幅-----------*/
.max_w600 {
  max-width: 600px;
}

/*---------背景色-----------*/
.bg_white {
  background: var(--color-background) !important;
}

/*---------文字色-----------*/
.fc_black {
  color: var(--color-font) !important;
}

.fc_navy {
  color: var(--color-primary) !important;
}

/*---------文字-----------*/
.ff_mincho {
  font-family: var(--font-family02) !important;
}

/*---------sp表示-----------*/
@media screen and (max-width: 450px) {
  .sp-txt_l {
    text-align: left !important;
  }

  .sp-txt_c {
    text-align: center !important;
  }
}

/*----------------------------------------------
  title
----------------------------------------------*/
.post h1,
h1,
.post h2,
h2,
.post h3,
h3,
.post h4,
h4,
.post h5,
h5,
p {

  /*---------txtstyle01-----------*/
  &.txtstyle01 {
    position: relative;
    margin: 0;
    margin-bottom: var(--rem20);
    padding-top: var(--rem120);

    .txtstyle01__en {
      width: 100%;
      font-family: var(--font-family03);
      font-size: var(--rem120);
      font-weight: 100;
      color: var(--color-secondary);
      position: absolute;
      bottom: 0;
      left: 0;
      line-height: 1;
      text-align: left;
    }

    .txtstyle01__ja {
      width: 100%;
      color: var(--color-primary);
      font-family: var(--font-family02);
      font-size: var(--rem36);
      font-weight: 600;
      position: absolute;
      top: 57%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      line-height: 1;
      text-align: left;
    }

    &::before,
    &::after {
      content: none;
    }

    &:after {
      content: '';
      position: absolute;
      visibility: visible;
      display: block;
      width: var(--px80);
      height: 3px;
      background: var(--color-primary);
      bottom: 0;
      left: 0;
    }

    &.txtstyle01--center {
      .txtstyle01__en {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        text-align: center;
      }

      .txtstyle01__ja {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
      }

      &:after {
        content: '';
        position: absolute;
        visibility: visible;
        display: block;
        width: var(--px80);
        height: 3px;
        background: var(--color-primary);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
      }
    }

    &.txtstyle01--white {
      .txtstyle01__en {
        color: var(--color-background);
      }

      .txtstyle01__ja {
        color: var(--color-primary);
      }
    }

    &.txtstyle01--page {
      .txtstyle01__en {
        font-size: var(--rem60);
      }

      .txtstyle01__ja {
        font-size: var(--rem28);
      }
    }
  }

  /*---------txtstyle02-----------*/
  &.txtstyle02 {
    font-size: var(--rem24);
    font-family: var(--font-family02);
    color: var(--color-font);
    padding-bottom: var(--rem30);
    position: relative;
    text-align: center;
    margin: 0;
    border: none;
    line-height: 1.2;
    font-weight: bold;

    &::before,
    &:after {
      content: none;
    }

    &.txtstyle02--left {
      text-align: left;
    }
  }

  /*---------txtstyle03-----------*/
  &.txtstyle03 {
    font-size: var(--rem36);
    font-family: var(--font-family02);
    color: var(--color-font);
    padding-bottom: var(--rem30);
    position: relative;
    text-align: center;
    margin: 0;
    border: none;
    line-height: 1.2;
    font-weight: bold;

    &::before,
    &:after {
      content: none;
    }

    &::after {
      content: '';
      position: relative;
      visibility: visible;
      display: block;
      width: 2.2em;
      height: 3px;
      background: var(--color-primary);
      margin: 0.6em auto 0;
    }

    &.txtstyle03--left {
      text-align: left;
    }
  }

}


@media print,
screen and (max-width: 550px) {

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p {

    /*---------txtstyle01-----------*/
    &.txtstyle01 {
      position: relative;
      margin: 0;
      margin-bottom: var(--rem20);
      padding-top: var(--rem80);

      .txtstyle01__en {
        width: 100%;
        font-family: var(--font-family03);
        font-size: var(--rem80);
        font-weight: 100;
        color: var(--color-secondary);
        position: absolute;
        bottom: 0;
        left: 0;
        line-height: 1;
        text-align: left;
      }

      .txtstyle01__ja {
        width: 100%;
        color: var(--color-primary);
        font-family: var(--font-family02);
        font-size: var(--rem20);
        font-weight: 600;
        position: absolute;
        top: 57%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        line-height: 1;
        text-align: left;
      }

      &::before,
      &::after {
        content: none;
      }

      &:after {
        content: '';
        position: absolute;
        visibility: visible;
        display: block;
        width: var(--px80);
        height: 3px;
        background: var(--color-primary);
        bottom: 0;
        left: 0;
      }

      &.txtstyle01--center {
        .txtstyle01__en {
          left: 50%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          text-align: center;
        }

        .txtstyle01__ja {
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
          text-align: center;
        }

        &:after {
          content: '';
          position: absolute;
          visibility: visible;
          display: block;
          width: var(--px80);
          height: 3px;
          background: var(--color-primary);
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
        }
      }

      &.txtstyle01--white {
        .txtstyle01__en {
          color: var(--color-background);
        }

        .txtstyle01__ja {
          color: var(--color-primary);
        }
      }

      &.txtstyle01--page {
        .txtstyle01__en {
          font-size: var(--rem60);
        }

        .txtstyle01__ja {
          font-size: var(--rem28);
        }
      }
    }
  }
}

@media print,
screen and (max-width: 450px) {

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p {

    /*---------txtstyle01-----------*/
    &.txtstyle01 {
      padding-top: var(--rem120);
    }
  }
}

@media print,
screen and (max-width: 375px) {

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p {

    /*---------txtstyle01-----------*/
    &.txtstyle01 {
      padding-top: var(--rem80);
    }
  }
}



/*----------------------------------------------
  card
----------------------------------------------*/
/*---------coln02-----------*/
.post .col2_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.post .col2_list>li {
  width: 49%;
  margin-bottom: 2%;
}

@media print,
screen and (max-width: 414px) {
  .post .col2_list>li {
    width: 100%;
  }

  .post .col2_list>li:last-child {
    margin-bottom: 0;
  }
}

/*---------col03-----------*/

.post .col3_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.post .col3_list>li {
  width: 32%;
  margin-bottom: 2%;
}

.post .col3_list::before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}

.post .col3_list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}

@media print,
screen and (max-width: 768px) {
  .post .col3_list>li {
    width: 49%;
  }

  .post .col3_list::before,
  .post .col3_list:after {
    content: none;
  }
}

@media print,
screen and (max-width: 414px) {
  .post .col3_list>li {
    width: 100%;
  }

  .post .col3_list>li:last-child {
    margin-bottom: 0;
  }
}

/*---------style02-------------*/
.card01_list.cardstyle02>li .txtarea {
  background: #fff;
  padding: 20px 20px 30px 20px;
}

/*----------------------------------------------
  header
----------------------------------------------*/
#header {

  a.head_btn.tel_btn {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    background: none;
    color: var(--header-color-font);
    background-color: var(--header-background);
    position: relative;

    &::before {
      content: "";
      display: block;
      background: var(--color-font);
      width: 1px;
      height: 60px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
    }

    &:hover {
      color: var(--color-primary);
      opacity: 0.8;
    }
  }

  a.head_btn .header_tel {
    font-family: var(--font-family01);
    font-weight: 400;

    &:before {
      content: '\f095';
      display: inline-block;
      font-family: 'FontAwesome';
      color: var(--color-primary);
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1;
      margin-bottom: .1em;
      margin-right: 5px;
    }
  }

  a.head_btn .header_time {
    font-family: var(--font-family01);

    &::before {
      content: none;
    }
  }

  a.head_btn.mail_btn {
    &::before {
      content: none;
    }

    >span {
      &:before {
        content: '\f0e0';
        color: var(--color-primary);
        display: inline-block;
        font-family: 'FontAwesome';
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1;
        margin-bottom: .1em;
        margin-right: 5px;
      }
    }
  }

  /* nav#mainNav ul li a span,
  nav#mainNav ul li.current-menu-item a span {
    color: var(--color-primary);
  } */

  nav#mainNav ul li a:active span,
  nav#mainNav ul li a:hover span,
  nav#mainNav ul li.current-menu-item a span,
  nav#mainNav ul li.current-menu-parent a span {
    color: var(--color-primary);
  }
}

.spmenu #menu p {
  transform: translateX(-50%);
  left: 50%;
  white-space: nowrap;
}

@media print,
screen and (min-width: 1024px) {
  nav#mainNav ul li a {
    padding: var(--px20) var(--px12);

    &:hover {
      opacity: 0.6;
    }
  }

  #header a.head_btn.mail_btn {
    background: var(--header-background);
    color: var(--header-color-font);
    position: relative;

    &:before {
      content: "";
      display: block;
      background: var(--color-font);
      width: 1px;
      height: 60px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
    }

    &:hover {
      color: var(--color-primary);
      opacity: 0.8;
    }
  }
}

@media print,
screen and (min-width: 1024px) {
  nav#mainNav ul li li {
    background: var(--color-background);
  }

  nav#mainNav ul,
  #header .header__nav-contact {
    font-family: var(--font-family02);
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  nav#mainNav ul li a:active,
  nav#mainNav ul li a:hover,
  nav#mainNav ul li.current-menu-ancestor a,
  nav#mainNav ul li.current-menu-item a,
  nav#mainNav ul li.current-menu-parent a {
    background: var(--header-background);
  }

  .sticky-header #header>.inner {
    background: var(--color-secondary);
  }

}

/*----------------------------------------------
  footer
----------------------------------------------*/
#footer {
  background: var(--color-primary);
  color: var(--color-background);
}

#footer .footnav ul>li::before,
#footer .footnav ul>li::after {
  background: var(--color-background);
}

#copyright {
  background: var(--color-primary);
  color: var(--color-background);
}

/*----------------------------------------------
  btn
----------------------------------------------*/
.linkBtn,
.post .linkBtn,
a.linkBtn,
.post .subimitarea .linkBtn input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  font-size: var(--rem16);
  color: #fff;
  line-height: 1.8;
  text-align: center;
  background: var(--color-primary);
  padding: var(--rem20) 30px var(--rem20) 20px;
  margin: 0 auto 0;
  border-radius: 50vh;
  transition: all .3s;
}

.linkBtn::after,
.post .linkBtn::after,
a.linkBtn::after,
.post .subimitarea .linkBtn input[type="submit"]::after {
  content: '\f35a';
  position: absolute;
  font-size: var(--rem16);
  color: #fff;
  font-family: 'FontAwesome';
  font-weight: 400;
  line-height: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  width: auto;
  height: auto;
  margin: 0;
  transition: 0.3s all;
}

.post .linkBtn:hover,
.linkBtn:hover,
a.linkBtn:hover,
.post .subimitarea .linkBtn input[type="submit"]:hover {
  color: #fff;
  background: var(--color-primary);
  opacity: 0.6;
}

.post .linkBtn:hover::after,
.linkBtn:hover::after,
a.linkBtn:hover::after {
  color: #fff;
}

.subimitarea>.linkBtn {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.post .subimitarea .linkBtn input[type="submit"] {
  margin-top: 0;
}


.linkBtn--max100,
.post .linkBtn--max100,
a.linkBtn--max100,
.post .subimitarea .linkBtn--max100 input[type="submit"] {
  max-width: 100%;
}

/*----------------------------------------------
  CTA
----------------------------------------------*/
.cta01 {
  background: url(/wp-content/uploads/bg-cta.jpg) no-repeat center / cover;
  position: relative;
  z-index: 0;

  p {
    color: var(--color-primary);
  }
}

.cta01 .cta01_wrap {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  padding: var(--px80);
}

.cta01 .ctabtnlist {
  justify-content: space-between;
  max-width: 1100px;
  margin: var(--px50) auto 0 auto;
}

.cta01 .ctabtnlist li {
  width: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
}

.cta01 a.item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--px30) 0;
  text-align: center;
  box-sizing: border-box;
  color: #111;
  border-radius: 0;
  transition: all ease .15s;
}

.cta01 a.item:hover {
  opacity: 0.8;
}

@media print,
screen and (max-width: 768px) {

  .cta01 .ctabtnlist li,
  .cta01 .ctabtnlist a.item {
    width: 100%;
  }

  .cta01 .ctabtnlist li+li {
    margin-top: 1rem;
  }
}

/*ボタン共通パーツ*/

.cta01 .btnttl {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta01 .infotxt {
  font-size: var(--rem16);
  font-weight: 400;
}

/*電話ボタン*/

.cta01 .telnum {
  font-size: var(--rem36);
  margin-bottom: 1rem;
}

.cta01 .telbtn .btnttl {
  font-size: var(--rem20);
}

.cta01 a.telbtn {
  background: var(--color-background);
  color: var(--color-primary);
  border-radius: 50em;
  border: 2px solid var(--color-primary);
}

/*メールボタン*/

.cta01 .mailbtn .btnttl {
  font-size: var(--rem24);
}

.cta01 a.mailbtn {
  background: var(--color-primary);
  color: var(--color-background);
  border-radius: 50em;
}

/*LINEボタン*/

.cta01 a.linebtn {
  background: #EF796B;
  color: #fff;
  border-radius: 50em;
}

.cta01 .linebtn .btnttl {
  font-size: var(--rem24);
}

/*ボタンアイコン*/

.cta01 .telnum::before,
.cta01 .mailbtn .btnttl::before,
.cta01 .linebtn .btnttl::before {
  content: '';
  display: inline-block;
  font-family: 'Font Awesome 5 Free', 'FontAwesome';
  font-weight: 900;
  margin-right: 1rem;
}

.cta01 .telnum::before {
  content: '\f3cd';
}

.cta01 .mailbtn .btnttl::before {
  content: '\f0e0';
}

.cta01 .linebtn .btnttl::before {
  content: '\f16d';
  font-weight: 400;
}


/*----------------------------------------------
  column
----------------------------------------------*/
/*---------column_01-----------*/
.column01 {
  position: relative;
  margin: var(--px60) 0 0;
}

.column01_wrap {
  position: relative;
  max-width: 1600px;
  width: 94%;
  margin: 0 auto;
  z-index: 1;
}

.column01 .txtarea {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--px80) var(--px40);
  margin: 0;
}

.column01 .txtarea .txtinner {
  max-width: 540px;
}

.column01 .imgarea {
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.column01 .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------column_06-----------*/
.column06 {
  position: relative;
  margin: var(--px60) 0 0;
}

.column06_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  z-index: 20;
}

.column06 .imgarea {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 60%;
}

.column06 .imgarea img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.column06 .txtarea {
  position: relative;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  padding: var(--px80) var(--px40);
  margin: auto auto 0 -5%;
  z-index: 10;
}

.column06 .txtarea .txtinner {
  max-width: 540px;
}

.column06_wrap+.column06_wrap {
  margin-top: var(--px80);
}

@media print,
screen and (min-width: 1024px) {

  /*左右反転*/
  .column06_wrap.rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .column06_wrap.rev .txtarea {
    margin: auto -5% 0 auto;
  }
}

@media print,
screen and (max-width: 1023px) {
  .column06_wrap.rev {
    flex-direction: row;
  }

  .column06 .imgarea,
  .column06 .txtarea {
    width: 90%;
  }

  .column06 .txtarea {
    margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
  }
}

/*----------------------------------------------
  table
----------------------------------------------*/
.post table.add_tb01,
table.add_tb01 {
  border-collapse: collapse;
  width: 100%;

  th,
  td {
    width: auto;
    padding: 10px;
    border: solid 1px var(--color-table-border);
    box-sizing: border-box;
  }

  th {
    background: var(--color-secondary);
    color: var(--color-primary);

  }
}


@media screen and (max-width: 768px) {

  .post table.add_tb01,
  table.add_tb01 {
    width: 100%;

    .head {
      display: none;
    }

    td,
    th {
      display: block;
      width: 100%;
      border-bottom: none;
      padding: 10px !important;
    }

    td.sp-table_bg {
      background: var(--color-secondary);
    }

    td {
      padding: 0px 12px 0 0;
      display: block;
      width: 100%;
      line-height: 2.5;
      text-align: left;
    }

    td:before {
      color: var(--color-font);
      content: attr(data-label);
      font-weight: bold;
      padding: 0px 10px;
      display: inline;
      background-color: var(--color-secondary);
      margin-right: 10px;
      float: left;
    }

    tr:last-child {
      border-bottom: solid 1px #ccc;
    }

  }
}

.v-align {
  vertical-align: middle !important;
}


.post table th {
  background: var(--color-secondary);
  color: var(--color-font);
}

/* ==============================
TOP
============================== */
.top-about {
  background: url(/wp-content/uploads/bg_top-about.jpg) no-repeat center /cover;

  .top-about__content-inner {
    padding: var(--rem48) var(--rem120);
    background: var(--color-secondary);
  }
}

.top-reason {
  background: url(/wp-content/uploads/bg_top-reason.png) no-repeat bottom / cover;
}

@media screen and (max-width: 768px) {

  .top-about,
  .top-about .top-about__content-inner,
  .top-reason {
    padding: var(--rem60) 8%;
  }

  .top-lesson {
    padding-top: 0;
  }
}

/* ==============================
店舗概要
============================== */
.post .staff_name {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  background: none;
  border: none;
  border-bottom: 2px solid var(--color-primary);
  margin: 0 0 var(--rem40);
  /* -- 1920 120px 375 40px -- */
  /* -- 1920 45px 375 25px -- */
  padding: 0 0 0.5em;
  color: #404040;
  font-family: inherit;
  font-size: var(--rem28);
  /* -- 1920 3.6rem 375 2.1rem -- */
  font-weight: 700;
  text-align: left;
  line-height: 1.35;
  letter-spacing: normal;
  gap: 0.15em 1em;
}

.post .staff_name::before,
.post .staff_name::after {
  content: none;
}

.staff_name span.sub {
  color: var(--color-primary);
  font-weight: 500;
  font-size: min(calc(2.1rem + (1vw - 19.2px) * 0.3883), 2.1rem);
  text-align: left;
  letter-spacing: normal;
}

.staff_message {
  padding: var(--rem40);
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ==============================
修理情報
============================== */
.page-repair_note {
  padding: var(--rem40);
  background: #FAFAFA;

  .note-title {
    padding: var(--rem14) var(--rem48);
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: var(--rem20);
    font-weight: bold;
    border: none;
    display: inline-block;
  }
}

/* ==============================
修理情報
============================== */
/*--flow02-----------------------*/

.flowlist02 {
  padding-left: 5rem;
  position: relative;
}

.flowlist02::before {
  content: "";
  width: 15px;
  height: 100%;
  background: var(--color-primary);
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 1rem;
  left: 5rem;
}

.flowlist02>li {
  position: relative;
}

.flowlist02>li:not(:last-child) {
  margin-bottom: 8vh;
}

.flowlist02>li .icon {
  font-size: var(--body-font-size);
  width: 6rem;
  height: 6rem;
  color: var(--color-primary);
  font-weight: bold;
  background: var(--color-secondary);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -3rem;
  z-index: 100;
  border-radius: 50vh;
}

.flowlist02>li .icon::after {
  content: none;
}

.flowlist02>li dl {
  padding-left: 7rem;
  position: relative;
  padding-top: 0.7rem;
}

.flowlist02>li dl::before {
  content: none;
}

.flowlist02>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
}

.flowlist02>li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
  top: 23px;
}

.flowlist02>li dd {
  padding-bottom: 10px;
}

.flowlist02>li dl dt {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  border-bottom: dotted 2px
}

@media (max-width: 768px) {
  .flowlist02 {
    padding-left: 2rem;
  }

  .flowlist02>li .icon {
    left: -3.5rem;
  }

  .flowlist02::before {
    left: 1.5rem;
  }

  .flowlist02>li dl {
    padding-left: 4.5rem;
  }

  .flowlist02>li dl::after {
    width: 30px;
  }

  .flowlist02>li dl dt {
    font-size: 1.4rem;
  }
}

/* ==============================
お問い合わせ
============================== */
.wpcf7-form .must {
  background: var(--color-primary);
}