@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Shippori+Mincho:wght@500;700&display=swap');
@import url("css/reset.min.css");
@import url("css/tamplateA.css");
@import url("css/tamplateB.css");
@import url("css/tamplateC.css");
@import url("css/tamplateD.css");
@import url("css/tamplateE.css");

/*
theme Name: tamaliving2021
Author: tamaliving2021
Description: tamaliving2021
*/

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /*pxだと10px;*/
}

@media screen and (min-width: 1000px) and (max-width: 1300px) {
  html {
    font-size: 56.7%;
  }
}

body {
  width: 100%;
  height: auto;
  background: #fff;
  color: #382C15;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  display: block;
  text-decoration-line: none;
}

a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
  transition-property: opacity;
}

a img:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
  transition-property: opacity;
}

a.anchor {
  display: block;
  margin-top: -80px;
  padding-top: 80px;
}

@media screen and (max-width: 999px) {
  a.anchor {
    margin-top: -40px;
    padding-top: 40px;
  }
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

@media screen and (max-width: 999px) {
  .pc-none {
    display: block;
  }

  .sp-none {
    display: none;
  }

  a.anchor {
    margin-top: -40px;
    padding-top: 40px;
  }
}

.clear {
  clear: both;
}

.max-img {
  width: 100%;
}

section {
  display: block;
}

/*ヘッダー
-------------------------------------*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 3;
}

#header .header-inner {
  width: 100%;
  padding: 0 3.385%;
  display: flex;
  align-items: center;
  transition-duration: 0.5s;
  transition-property: opacity;
  box-sizing: border-box;
}

@media screen and (max-width: 999px) {
  #header .header-inner {
    padding: 2% 3.077% 0;
    align-items: center;
    height: 45px;
  }
}

/*ロゴ*/
#header .logo-area {
  width: 24vw;
}

#header .logo-area h1 {
  display: flex;
  align-items: center;
}

#header .logo-area img {
  width: 100%;
  height: auto;
  margin-right: 0;
}

@media screen and (max-width: 999px) {
  #header .logo-area img {
    width: 240px;
  }
}

@media screen and (max-width: 390px) {
  #header .logo-area {
    width: 54vw;
  }
}


/*メインナビゲーション*/

#header nav {
  flex: 1;
}

#header nav ul.menu {
  display: flex;
  justify-content: flex-end;
}

#header nav li {
  list-style: none;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  align-items: center;
}

#header nav li.menu-item::before,
#header nav li.menu-item:nth-child(5):after {
  content: '';
  width: 1px;
  height: 30px;
  background-color: #6D624C;
  position: absolute;
  z-index: 2;
  top: calc(50% - 15px);
}


#header nav li::before {
  left: 0;
}

#header nav li::after {
  right: 0;
}

#header nav li a {
  line-height: 114%;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Shippori Mincho',
    serif;
  display: flex;
  align-items: center;
  transition-property: opacity;
  transition-duration: 0.5s;
  letter-spacing: 0.5px;
  height: 100px;
  padding-left: 30px;
  padding-right: 30px;
}

#header nav li.menu-item.active_sub {
  position: relative;
}

#header nav li.menu-item-has-children.active_sub:after {
  content: "";
  position: absolute;
  z-index: 9;
  bottom: -5px;
  left: calc(50% - 12px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #AC9E85 transparent;
}

#header nav li.menu-item ul li.menu-item:after {
  content: none
}

#header nav li {
  transition: 0.5s;
}

#header nav ul li a:hover,
#header nav ul li a.current {
  opacity: 0.8;
}

#header nav li a:hover,
#header nav li a.current {
  color: rgba(56, 44, 21, 0.8);
  opacity: 1;
}

#header nav li.menu-mail {
  margin-left: 46px;
}

#header nav li.menu-mail,
#header nav li.menu-user {
  padding: 0 6px;
}

#header nav li.menu-mail:hover,
#header nav li.menu-user:hover {
  opacity: 0.8;
}

#header nav li.menu-user {
  padding-right: 12px;
}

#header nav li.menu-mail a,
#header nav li.menu-user a {
  height: 72px;
  width: 90px;
  border: 1px solid #6D624C;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 10px 5px 10px;
}

#header nav li.menu-mail .img {
  width: 25px;
  display: block;
  padding-top: 3px;
}

#header nav li.menu-user .img {
  width: 20px;
  margin-bottom: 6px;
  display: block;
}

#header nav li.menu-mail span,
#header nav li.menu-user span {
  width: 100%;
  display: block;
  font-size: 13px;
  font-family: 'Shippori Mincho',
    serif;
  line-height: 107%;
  letter-spacing: 0.5px;
}

#header nav li.menu-mail::before,
#header nav li.menu-user::before {
  content: none;
}

#header nav ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

#header nav .sub-menu {
  position: fixed;
  z-index: 9;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: #AC9E85;
  height: 77px;
  justify-content: center;
  align-items: center;
  display: none;
}

#header nav li.active_sub .sub-menu {
  display: flex;
}



#header nav ul.sub-menu li {
  width: 170px;
  padding: 0;
  margin: 0 6px;
}

#header nav ul.sub-menu li:first-child {
  margin-left: 0;
}

#header nav ul.sub-menu li:last-child {
  margin-right: 0;
}

#header nav ul.sub-menu li a {
  font-size: 13px;
  line-height: 169%;
  color: #382C15;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  padding-left: 0;
  padding-right: 0;
}

#header nav .sub-menu li::before,
#header nav .sub-menu li.last-item::after {
  content: none;
}

@media screen and (max-width: 1460px) {

  #header nav li.menu-item.active_sub>a:after {
    left: calc(50% - 0.822vw);
    border-width: 0 0.822vw 1.027vw 0.822vw;
  }

  #header nav li::before,
  #header nav li.last-item::after {
    height: 2.055vw;
    top: calc(50% - 1.027vw);
  }

  #header nav li a {
    font-size: 0.959vw;
    height: 6.849vw;
    padding-left: 2.055vw;
    padding-right: 2.055vw;
    color: #382C15;
  }

  #header nav li.menu-mail {
    margin-left: 3.151vw;
  }

  #header nav li.menu-mail,
  #header nav li.menu-user {
    padding: 0 0.411vw;
  }

  #header nav li.menu-user {
    padding-right: 0.822vw;
  }

  #header nav li.menu-mail a,
  #header nav li.menu-user a {
    height: 4.932vw;
    width: 6.164vw;
    border-radius: 0.342vw;
    -webkit-border-radius: 0.342vw;
    -moz-border-radius: 0.342vw;
    -ms-border-radius: 0.342vw;
    -o-border-radius: 0.342vw;
    padding: 0.685vw 0.685vw 0.342vw 0.685vw;
  }

  #header nav li.menu-mail .img {
    width: 1.712vw;
    padding-top: 0.205vw;
  }

  #header nav li.menu-user .img {
    width: 1.37vw;
    margin-bottom: 0.411vw;
  }

  #header nav li.menu-mail span,
  #header nav li.menu-user span {
    font-size: 0.89vw;
  }

  #header nav .sub-menu {
    top: 6.849vw;
    height: 5.274vw;
  }


  #header nav ul.sub-menu li {
    width: 11.644vw;
    margin: 0 0.411vw;
  }

  #header nav ul.sub-menu li a {
    font-size: 0.89vw;
    height: 2.055vw;
  }
}


@media screen and (max-width: 999px) {
  #header nav .inner {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  #header nav li.menu-item.active_sub>a:after,
  #header nav li.menu-item-has-children.active_sub:after {
    display: none;
  }

  #header nav li::before,
  #header nav li.last-item::after {
    display: none;
  }

  #header nav {
    position: absolute;
    top: 0vh;
    right: -100%;
    width: 76.923vw;
    height: 100vh;
    background: #AC9E85;
    z-index: 200;
    opacity: 0;
    transition: right 0.5s;
    -webkit-transition: right 0.5s;
    -moz-transition: right 0.5s;
    -ms-transition: right 0.5s;
    -o-transition: right 0.5s;
  }

  #header nav li {
    width: 100%;
    border-left: 0px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    flex-wrap: wrap;
  }

  #header nav li.menu_last {
    width: 100%;
  }

  #header nav li a {
    width: 100%;
    line-height: 114%;
    box-sizing: border-box;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    transition-property: opacity;
    transition-duration: 0.5s;
    font-weight: 600;
    height: 54px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }


  #header nav li a:hover,
  #header nav li a.current {
    color: rgba(255, 255, 255, 0.8);
  }

  #header nav li.menu_last a {
    height: 76px;
    line-height: 130.769%;
  }

  #header .open nav {
    right: 0;
    opacity: 1;
    overflow-y: auto;
  }

  #header nav .navlogo {
    text-align: center;
    margin-top: 10vh;
  }

  #header nav .inner ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;

  }

  #header nav li.menu-mail,
  #header nav li.menu-user {
    width: 131px;
    height: 72px;
    border-bottom: 0;
    padding: 0;
    margin: 0 6px;
    margin-top: 45px;
  }

  #header nav li.menu-mail {
    margin-left: 6px;
  }

  #header nav li.menu-mail a,
  #header nav li.menu-user a {
    background-color: #FFFFFF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    width: 131px;
    height: 72px;
    padding: 10px 10px 5px 10px;
  }

  #header nav li.menu-mail span,
  #header nav li.menu-user span {
    font-size: 13px;
    color: #382C15;
  }

  #header nav li.menu-mail .img {
    width: 25px;
    padding-top: 3px;
  }

  #header nav li.menu-user .img {
    width: 20px;
    margin-bottom: 6px;
  }



  #header nav li .sub-menu {
    position: relative;
    z-index: 1;
    top: 0;
    background-color: #895D3B;
    height: auto;
    display: none;
    margin-left: -20px;
    margin-right: -20px;
    flex-wrap: wrap;
  }

  #header nav li.active_sub>.sub_menu {
    display: flex;
  }

  #header nav ul.sub-menu li {
    width: 100%;
    margin: 0;
  }

  #header nav ul.sub-menu li a {
    font-size: 13px;
    line-height: 169%;
    background-color: #F7F6F4;
    justify-content: flex-start;
    height: 45px;
    padding-left: 35px;
    padding-right: 35px;
  }

  #header nav ul.sub-menu li:first-child {}

  #header nav ul.sub-menu li:last-child {
    border-bottom: 0;
  }
}

@media screen and (max-width: 390px) {
  #header nav .inner {
    padding-top: 10vw;
    padding-bottom: 10.256vw;
  }

  #header nav li a {
    height: 13.846vw;
    padding-left: 5.128vw;
    padding-right: 5.128vw;
  }

  #header nav ul.sub-menu li a {
    height: 11.538vw;
    padding-left: 8.974vw;
    padding-right: 8.974vw;
  }

  #header nav li.menu-mail a,
  #header nav li.menu-user a {
    border-radius: 1.282vw;
    -webkit-border-radius: 1.282vw;
    -moz-border-radius: 1.282vw;
    -ms-border-radius: 1.282vw;
    -o-border-radius: 1.282vw;
    width: 33.59vw;
    height: 18.462vw;
    padding: 2.564vw 2.564vw 1.282vw 2.564vw;
  }

  #header nav li.menu-mail span,
  #header nav li.menu-user span {
    font-size: 3.333vw;
  }

  #header nav li.menu-mail .img {
    width: 6.41vw;
    padding-top: 0.769vw;
  }

  #header nav li.menu-user .img {
    width: 5.128vw;
    margin-bottom: 1.538vw;
  }

  #header nav li.menu-mail,
  #header nav li.menu-user {
    width: 33.59vw;
    height: 18.462vw;
    margin: 0 1.538vw;
    margin-top: 11.538vw;
  }
}


/*ハンバーガーボタン*/
@media screen and (min-width: 1000px) {

  /* PC時はMENUボタンを非表示 */
  .toggle_btn {
    display: none !important;
  }

  #navi {
    display: block !important;
  }
}

@media screen and (max-width: 999px) {
  #header nav .sub-menu {
    display: block
  }

  #header .toggle_btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 45px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
  }


  #header .toggle_btn span {
    display: block;
    position: absolute;
    right: calc(50% - 12px);
    width: 24px;
    height: 2px;
    background-color: #707070;
    border-radius: 4px;
    transition: all 0.5s;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
  }



  #header .toggle_btn span:nth-child(1) {
    top: 15px;
  }


  #header .toggle_btn span:nth-child(2) {
    top: 22px;
  }


  #header .toggle_btn span:nth-child(3) {
    top: 29px;
  }



  #header .open .toggle_btn {
    z-index: 300;
    background-color: #AC9E85
  }

  #header .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
    top: 10px;
    background-color: #FFFFFF;
  }

  #header .open .toggle_btn span:nth-child(2) {
    opacity: 0;
    background: #895D3B;
  }

  #header .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
    top: 30px;
    background-color: #FFFFFF;
  }

  #header #mask {
    display: none;
    transition: all 0.5s;
  }

  #header .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
  }
}

/*コンテナ
-------------------------------------*/
.wrap {
  padding-top: 100px;
}

#top .wrap {
  padding-top: 0;
}

@media screen and (max-width: 1460px) {
  .wrap {
    padding-top: 6.849vw;
  }
}

@media screen and (max-width: 999px) {
  .wrap {
    padding-top: 30px;
  }
}

.container {
  max-width: 960px;
  width: 85%;
  margin: 0 auto;
}

.container-full {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}


/*フッター
-------------------------------------*/
footer {
  width: 100%;
  background: #fff;
  margin-top: 100px;
}

footer .div_backtop {
  width: 100%;
  background-color: #AC9E85;
}

.footer-backtop {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  height: 80px;
}

.footer-in {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 0;
}

.footer-in .btn_instagram {
  display: flex;
  background-color: rgba(216, 202, 190, 0.56);
  align-items: center;
  margin-top: 15px;
}

.footer-in .btn_instagram .img {
  width: 44px;
  height: 44px;
  background-color: #D8CABE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-in .btn_instagram .img img {
  width: 28px;
}

.footer-in .btn_instagram .txt {
  font-size: 16px;
  color: #030303;
  width: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pagetop {
  position: absolute;
  z-index: 1;
  top: -70px;
  right: 15px;
  width: 70px;
  height: 70px;
}

.footer-logo {
  font-size: 16px;
  line-height: 150%;
  color: #382C15;
  font-weight: 600;
}

.footer-logo img {
  width: 190px;
}

.footer-logo p {
  font-size: 1.3rem;
  white-space: nowrap;
  color: #fff;
  padding-left: 10px;
}

.footer-nav {
  display: flex;
}

.footer-nav .ft_nav .sub-menu li a {
  display: block;
  line-height: 175%;
  font-size: 13px;
  white-space: nowrap;
  margin-top: 6px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  padding-left: 1em;
}

.navi-inner {
  display: flex;
}

.navi-inner li.menu-item {
  padding: 0 1.8vw 0 0;
}


.footer-nav .ft_nav .sub-menu li a::before {
  content: "";
  width: 4px;
  height: 6px;
  background-image: url(img/common/ft_arrow.svg);
  position: absolute;
  z-index: 2;
  top: calc(50% - 3px);
  left: 0;
}

.footer-nav a.nolink {
  cursor: default;
}

.ft_nav-after a,
.footer-nav .ft_nav li a {
  margin-bottom: 12px;
  margin-top: 0;
  padding-left: 0;
  font-size: 14px;
  font-family: 'Shippori Mincho',
    serif;
}

.footer-nav .ft_nav {
  margin: 0;
}

footer .copyright {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

footer .copyright p {
  font-size: 9px;
  line-height: 133.333%;
  color: #382C15;
  max-width: 1660px;
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: -10px;
  padding-bottom: 35px;
}


@media screen and (max-width: 1700px) {
  footer {
    margin-top: 50px;
  }

  .footer-in,
  .footer-backtop,
  footer .copyright p {
    max-width: 90vw;
  }
}

@media screen and (max-width: 1460px) {
  #pagetop {
    top: -4.795vw;
    right: 1.027vw;
    width: 4.795vw;
    height: 4.795vw;
  }

  .footer-backtop {
    height: 5.479vw;
  }

  .footer-logo {
    font-size: 1.096vw;
  }

  .footer-in .btn_instagram {
    margin-top: 1.027vw;
  }

  .footer-in .btn_instagram .img {
    width: 3.014vw;
    height: 3.014vw;
  }

  .footer-in .btn_instagram .img img {
    width: 1.918vw;
  }

  .footer-in .btn_instagram .txt {
    font-size: 1.096vw;
    width: 7.945vw;
  }

  .footer-in {
    padding-top: 2.74vw;
  }

  .footer-nav .ft_nav li a {
    margin-bottom: 0.822vw;
    font-size: 0.959vw;
  }

  .footer-nav .ft_nav .sub-menu li a {
    margin-top: 0.411vw;
    margin-bottom: 0.411vw;
  }


  .footer-nav .ft_nav:last-child a {
    margin-bottom: 0.822vw;
    font-size: 0.959vw;
  }
}

@media screen and (max-width: 999px) {
  #pagetop {
    top: -39px;
    right: 12px;
    width: 39px;
    height: 39px;
  }

  .footer-backtop {
    height: 30px;
  }

  .footer-in,
  .footer-backtop,
  footer .copyright p {
    max-width: 100%;
    padding: 0 12px;
  }

  .footer-in {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-in .all_logo {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 18px;
    margin-bottom: 25px;
  }

  .footer-logo {
    font-size: 16px;
    width: 100%;
  }

  .footer-in .btn_instagram .txt {
    font-size: 16px;
    width: 107px;
  }

  .footer-in .btn_instagram .img img {
    width: 22px;
  }

  .footer-in .btn_instagram .img {
    width: 37px;
    height: 37px;
  }

  .footer-in .btn_instagram {
    max-width: 144px;
    margin-top: 15px;
    margin-left: calc(50% - 144px);
    margin-right: calc(50% - 144px);
  }

  .footer-nav {
    flex-wrap: wrap;
    width: 100%;
    max-width: 340px;
    justify-content: space-between;
  }

  .navi-inner {
    display: block
  }

  .footer-nav .ft_nav {
    margin: 0;
    width: 160px;
    margin-bottom: 20px;
  }

  .footer-nav .ft_nav:nth-child(even) {
    width: 150px;
  }

  .footer-nav .ft_nav li a,
  .ft_nav-after a {
    margin-bottom: 4px;
    margin-top: 8px;
    font-size: 13px;
    white-space: nowrap;
  }



  .footer-nav a::before {
    left: 0;
  }

  .footer-nav .ft_nav:last-child {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer-nav .ft_nav:last-child a {
    width: 150px;
    margin-top: 0;
    margin-bottom: 19px;
  }

  footer .copyright {
    text-align: center;
  }

  footer .copyright p {
    font-size: 9px;
    text-align: center;
    width: 100%;
    display: block;
    padding-bottom: 30px;
  }
}


@media screen and (max-width: 390px) {
  #pagetop {
    top: -10vw;
    right: 3.077vw;
    width: 10vw;
    height: 10vw;
  }

  .footer-backtop {
    height: 7.692vw;
  }

  .footer-in,
  .footer-backtop,
  footer .copyright p {
    padding: 0 3.077vw;
  }

  .footer-in .all_logo {
    padding-top: 4.615vw;
    margin-bottom: 6.41vw;
  }

  .footer-logo {
    font-size: 4.103vw;
  }

  .footer-in .btn_instagram .txt {
    font-size: 4.103vw;
    width: 27.436vw;
  }

  .footer-in .btn_instagram .img img {
    width: 5.641vw;
  }

  .footer-in .btn_instagram .img {
    width: 9.487vw;
    height: 9.487vw;
  }

  .footer-in .btn_instagram {
    max-width: 36.923vw;
    margin-top: 3.846vw;
    margin-left: calc(50% - 36.923vw);
    margin-right: calc(50% - 36.923vw);
  }

  .footer-nav {
    max-width: 87.179vw;
  }

  .footer-nav .ft_nav {
    width: 41.026vw;
    margin-bottom: 10vw;
  }



  .footer-nav .ft_nav:last-child a {
    width: 38.462vw;
    margin-bottom: 4.872vw;
    margin-top: 2vw;
  }

  footer .copyright p {
    padding-bottom: 7.692vw;
  }
}

/*Banner title
-------------------------------------*/

.page_full .banner-area h1 {
  margin-left: auto;
  margin-right: auto;
}

.banner-area h1 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 134.615%;
  color: #003349;
  height: 94px;
  display: flex;
  align-items: center;
  background-image: url(img/common/banner_img.svg);
  background-position: center left;
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 6.2rem;
  width: 79.071%;
  margin-left: auto;
  margin-top: 42px;
  margin-bottom: 43px;
}

@media screen and (max-width: 999px) {
  .banner-area h1 {
    font-size: 1.8rem;
    line-height: 134.615%;
    height: 45px;
    padding-left: 0;
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 26px;
  }
}

/*Content Child Page
-------------------------------------*/

.title_stylepage01 {
  font-size: 30px;
  font-family: 'Shippori Mincho',
    serif;
  line-height: 166%;
  letter-spacing: 0.1px;
  width: 100%;
  padding-bottom: 25px;
  padding-top: 40px;
}

.side_bar {
  width: 17%;
}

.side_bar ul li a {
  font-size: 16px;
  font-family: 'Shippori Mincho',
    serif;
  line-height: 160%;
  color: #382C15;
  background-color: #FFFFFF;
  border-top: 1px dashed #707070;
  height: 83px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  letter-spacing: -1px;
}

.side_bar ul li:last-child a {
  border-bottom: 1px dashed #707070;
}

.side_bar ul li.current_page_item a,
.side_bar ul li a:hover {
  background-color: #AC9E85;
  color: #FFFFFF;
  opacity: 1;
}

.side_bar ul li.current_page_item a {
  border-top: none;
  border-bottom: none;
}

.all_content {
  width: 80%;
  margin-bottom: 135px;
}

.wp-block-group {
  display: none;
}

.side_bar ul li.page-item-280 {
  display: none;
}

.wp-block-columns {
  margin-bottom: 0;
}

@media all and (-ms-high-contrast:none) {
  .side_bar ul li a {
    padding-top: 3px;
  }
}

@media screen and (max-width: 1460px) {
  .side_bar ul li a {
    font-size: 1.096vw;
    height: 5.685vw;
    padding-left: 1.37vw;
    padding-right: 1.37vw;
  }

  .all_content {
    margin-bottom: 9.247vw;
  }


  .title_stylepage01 {
    font-size: 2.055vw;
    padding-bottom: 1.712vw;
    padding-top: 2.74vw;
  }
}

@media screen and (max-width: 999px) {
  .side_bar {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
  }

  .all_content {
    width: 100%;
    margin-bottom: 40px;
  }

  .title_stylepage01 {
    font-size: 18px;
    padding-bottom: 30px;
    padding-top: 15px;
  }

  .side_bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .side_bar ul li a {
    width: 48.634%;
    font-size: 14px;
    line-height: 178%;
    color: #382C15;
    background-color: #FFFFFF;
    border: 1px solid #707070;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
  }

  .side_bar ul li.current_page_item a,
  .side_bar ul li a:hover {
    border: 1px solid #895D3B;
  }

  .side_bar ul li:last-child a {
    border-bottom: 1px solid #707070;
  }

  .wp-block-group {
    display: none;
  }

  ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }

  ul.menu li a {
    width: 44vw;
  }
}

@media screen and (max-width: 390px) {
  .side_bar {
    margin-bottom: 0;
  }

  .all_content {
    margin-bottom: 4vw;
  }

  .title_stylepage01 {
    font-size: 4.615vw;
    padding-bottom: 4vw;
    padding-top: 3.846vw;
  }

  .side_bar ul li a {
    font-size: 3.59vw;
    height: 14.103vw;
    padding-left: 2.746vw;
    padding-right: 2.746vw;
    margin-bottom: 2.564vw;
  }
}

/*ぱんくずリスト
-------------------------------------*/
ul.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 128%;
  color: #FFFFFF;
}

ul.breadcrumb a {
  padding: 0 1em;
}

@media screen and (max-width: 1460px) {
  ul.breadcrumb {
    font-size: 0.959vw;
  }
}

@media screen and (max-width: 999px) {
  ul.breadcrumb {
    font-size: 8px;
    letter-spacing: -0.5px;
  }

  ul.breadcrumb a {
    margin-top: 1px;
    margin-bottom: 1px;
    padding: 0 0.5em;
  }
}


@media screen and (max-width: 390px) {
  ul.breadcrumb {
    font-size: 2.051vw;
  }

  ul.breadcrumb li:nth-child(even) {
    padding: 0 0.2vw;
  }

  ul.breadcrumb li img {
    width: 1.795vw;
  }
}

/* 下からフェードイン */
.slide-bottom {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s ease-out;
  transition-delay: 0.2s;
}

/* 左からフェードイン */
.slide-left {
  opacity: 0;
  transform: translate(-80px, 0);
  transition: all 1s ease-out;
}

/* 右からフェードイン */
.slide-right {
  opacity: 0;
  transform: translate(80px, 0);
  transition: all 1s ease-out;
}

/*絞り込み検索
-------------------------------------*/
.modellist .wp-block-columns {
  width: 100%;
}

.shitei {
  padding: 3.8rem 5.2rem 2.5rem;
  background: #fff;
}

.shitei p {
  font-size: 1.6rem;
  font-weight: 400;
  border: 1px solid #382C15;
  display: inline-block;
  padding: 0.2em 1em;
}

.vkfs {
  background: #fff;
  padding: 0 5.2rem 3.8rem;
}

.vkfs__labels>.vkfs__outer-wrap--col-xl-12 {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 1em;
}

#tarm li.vkfs__level-0:nth-child() {
  color: red;
}

.vkfs__label-name {
  font-size: 1.5rem;
}

.vkfs__input-wrap label {
  font-size: 1.45rem;
  font-weight: 400;
  white-space: nowrap;
}

.vkfs input[type=checkbox] {
  top: 0.6em;
}

.vkfs input[type=checkbox]::after {
  border-right: 3px solid #382C15;
  border-bottom: 3px solid #382C15;
}

.vkfs__input-wrap {
  justify-content: flex-start;
}

.vkfs__input-wrap li {
  width: 25%;
}

.vkfs .btn[type=submit] {
  display: inline-block;
  width: 138px;
  line-height: 36.4px;
  background: #382C15;
  color: #fff;
  margin-top: 15px;
  font-size: 1.4rem;
  text-align: center;
  padding: 0;
}

a.serch-clear {
  width: 138px;
  height: 36.4px;
  line-height: 36.4px;
  border: 1px solid #382C15;
  color: #382C15;
  float: left;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin-right: 20px;
  margin-left: calc((100% - 296px) /2);
  margin-top: 15px
}

.btn-primary img {
  width: 1.2em;
  margin-right: 0.4em;
}

.vkfs input[type=text] {
  font-size: 1.45rem;
  padding: 0.5rem 0.75rem;
}

.resa {
  font-size: 1.6rem;
  font-weight: 400;
  border: 1px solid #382C15;
  display: block;
  padding: 0.2em 1em;
  background: #fff;
  color: #382C15;
}

@media screen and (max-width: 700px) {
  .shitei {
    text-align: center;
    padding: 2.8rem 5.2rem 1rem;
  }

  .shitei p {
    font-size: 1.4rem;
  }

  .vkfs__input-wrap label {
    font-size: 1.4rem;
    white-space: pre-wrap;
  }

  .vkfs__input-wrap li {
    width: 50%;
  }

  .vkfs {
    background: #fff;
    padding: 1.8rem 2.2rem;
    margin-bottom: 30px;
  }

  .vkfs__label-name {
    font-size: 1.4rem;
  }

  .vkfs .btn[type=submit] {
    margin: 0 auto 30px;
    float: none;
    display: block;
    width: 100%;
  }

  a.serch-clear {
    margin: 20px auto 15px;
    float: none;
    width: 100%;
  }
}