@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 12rem;
}
@media screen and (min-width: 768px) and (max-width: 1327px) {
  html {
    font-size: 0.75vw;
    scroll-padding-top: 6rem;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  line-height: 1;
  background: #f2ecd7;
  color: #3d3522;
}
body.is-active {
  overflow: hidden;
}

/* --------------------------------------------------------------------------

---- 共通パーツ

-------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.inner {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.moreBtn01 {
  text-align: center;
}
.moreBtn01 a {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #3d3522;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 2rem;
  border: 1px solid #3d3522;
  text-transform: uppercase;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  overflow: hidden;
}
.moreBtn01 a::after {
  content: "";
  display: inline;
  width: 5rem;
  height: 1px;
  background: #3d3522;
  margin-left: 1rem;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.moreBtn01 a span {
  display: inline-block;
  position: relative;
}
.moreBtn01 a:hover {
  background: #ffffff;
}
.moreBtn01 a:hover::after {
  -webkit-transform: translateX(60%);
          transform: translateX(60%);
}

.splide__arrows button {
  outline: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* --------------------------------------------------------------------------

---- Header

-------------------------------------------------------------------------- */
.header {
  position: sticky;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 3rem 5rem 3rem 25rem;
  background: #f2ecd7;
}
.header .logo {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 23rem;
  padding: 3.5rem;
  border-radius: 0 0 3rem 0;
  background: #f2ecd7;
}
.header .logo a {
  position: relative;
  display: block;
}
.header .logo a img {
  position: relative;
  display: block;
}
.header .logo a img:not(:nth-of-type(1)) {
  position: absolute;
  top: 0;
  left: 0;
}
.header .logo a img.logo01 {
  z-index: 70;
}
.header .logo a img.logo02 {
  z-index: 60;
}
.header .logo a img.logo03 {
  z-index: 50;
}
.header .logo a img.logo04 {
  z-index: 40;
}
.header .logo a img.logo05 {
  z-index: 30;
}
.header .logo a img.logo06 {
  z-index: 20;
}
.header .logo a img.logo07 {
  z-index: 10;
}
.header .gNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .gNav_list li a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  display: block;
  padding: 2rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  letter-spacing: 0.08em;
  color: #3d3522;
}
.header .gNav_list li a:hover {
  color: #c90000;
}
.header .gNav_list li a.mailBtn {
  padding: 1.5rem 3rem;
  -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  border: 2px solid #3d3522;
  border-radius: 10rem;
}
.header .gNav_list li a.mailBtn span {
  display: inline-block;
  padding-left: 3.4rem;
  background: url(../img/ico_mail.png) no-repeat left center/2.4rem;
}
.header .gNav_list li a.mailBtn:hover {
  color: #3d3522;
  border-color: #ffffff;
  background-color: #ffffff;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0;
  }
  .header .logo {
    position: absolute;
    width: 100%;
    max-width: 10rem;
    padding: 1.5rem;
    border-radius: 0 0 5vw 0;
  }
  .header .gNav {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #f2ecd7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
  }
  .header .gNav_list {
    display: block;
    text-align: center;
    width: 100%;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
    -webkit-transition: 0.6s ease-in-out 0.1s;
    transition: 0.6s ease-in-out 0.1s;
  }
  .header .gNav_list li {
    margin: 8%;
  }
  .header .gNav_list li a {
    font-size: 4vw;
    display: block;
    padding: 0;
  }
  .header .gNav_list li a.mailBtn {
    display: inline-block;
    padding: 6% 10%;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    border: 2px solid #3d3522;
    border-radius: 10rem;
  }
  .header .gNav_list li a.mailBtn span {
    display: inline-block;
    padding-left: 3.4rem;
    background: url(../img/ico_mail.png) no-repeat left center/2.4rem;
  }
  .header .gNav_list li a.mailBtn:hover {
    color: #3d3522;
    border-color: #ffffff;
    background-color: #ffffff;
  }
  .header .gNav.is-active {
    opacity: 1;
    visibility: visible;
  }
  .header .gNav.is-active .gNav_list {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .hamburger {
    display: block;
    position: relative;
    cursor: pointer;
    width: 6rem;
    height: 6rem;
    z-index: 100;
  }
  .hamburger span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    height: 1px;
    border-radius: 2px;
    background: #3d3522;
    width: 45%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .hamburger span:nth-of-type(1) {
    top: 38%;
  }
  .hamburger span:nth-of-type(2) {
    top: 50%;
  }
  .hamburger span:nth-of-type(3) {
    top: 62%;
  }
  .hamburger.is-active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0) rotate(-45deg);
            transform: translate(-50%, 0) rotate(-45deg);
    width: 30%;
  }
  .hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
    -webkit-transform: translate(-50%, 0) scale(0, 1);
            transform: translate(-50%, 0) scale(0, 1);
  }
  .hamburger.is-active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0) rotate(45deg);
            transform: translate(-50%, 0) rotate(45deg);
    width: 30%;
  }
}
/* --------------------------------------------------------------------------

---- Footer

-------------------------------------------------------------------------- */
.footer {
  padding: 14rem 5rem 7rem;
  background: #3a2c10;
}
.footer .footerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 120rem;
  margin-right: auto;
  margin-left: auto;
}
.footer .footerBox_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 23rem;
  height: 23rem;
  padding: 4rem;
  border-radius: 100%;
  background: #ffffff;
}
.footer .footerBox_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  margin-left: 8rem;
}
.footer .footerBox_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .footerBox_nav ul li a {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.8rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  letter-spacing: 0.08em;
  color: #ffffff;
}
.footer .footerBox_nav ul li a:hover {
  color: #c90000;
}
.footer .footerBox_social {
  margin-left: auto;
}
.footer .footerBox_social .list_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.5rem;
}
.footer .footerBox_social .list_sns li a {
  display: block;
  width: 3.4rem;
}
.footer .footerBox_social .list_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .footerBox_social .list_btn li a {
  font-size: 1.7rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 2rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.footer .footerBox_social .list_btn li a::after {
  content: "";
  display: inline;
  width: 5rem;
  height: 1px;
  margin-left: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #ffffff;
}
.footer .footerBox_social .list_btn li a span {
  position: relative;
  display: inline-block;
}
.footer .footerBox_social .list_btn li a:hover {
  color: #3a2c10;
  background: #ffffff;
}
.footer .footerBox_social .list_btn li a:hover::after {
  -webkit-transform: translateX(80%);
          transform: translateX(80%);
  background: #3a2c10;
}
.footer .footerCopy {
  margin-top: 12rem;
}
.footer .footerCopy p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.08em;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 15% 5%;
  }
  .footer .footerBox {
    display: block;
  }
  .footer .footerBox_logo {
    overflow: hidden;
    width: 40%;
    height: auto;
    margin: auto;
    padding: 5%;
    aspect-ratio: 1/1;
  }
  .footer .footerBox_nav {
    display: none;
  }
  .footer .footerBox_social {
    margin-top: 4rem;
    margin-right: auto;
    margin-left: auto;
  }
  .footer .footerBox_social .list_sns {
    gap: 1.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 3rem;
  }
  .footer .footerBox_social .list_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .footerCopy {
    margin-top: 6rem;
  }
}
/* --------------------------------------------------------------------------

---- Top Layout

-------------------------------------------------------------------------- */
.frontView {
  margin-left: 10rem;
  position: relative;
}
.frontView h2 {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  max-width: 28rem;
}
.frontView .splide {
  overflow: hidden;
  border-radius: 0 0 0 3rem;
}
.frontView .splide__slide {
  width: 100%;
  height: calc(90vh - 15rem);
}
.frontView .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.frontAbout {
  margin: 8rem 5rem 28rem;
}
.frontAbout_box {
  padding-top: 6rem;
  padding-bottom: 23rem;
  text-align: center;
  background: url(../img/top/about_bg.png) no-repeat center top 4rem;
}
.frontAbout_box h2 {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.frontAbout_box h3 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.frontAbout_box p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.15em;
}
.frontAbout_intr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.frontAbout_intr_thumb {
  width: 45%;
}
.frontAbout_intr_body {
  width: 55%;
  padding-right: 12%;
}
.frontAbout_intr_body h3 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #3d3522;
  position: relative;
}
.frontAbout_intr_body h3::before {
  content: "";
  position: absolute;
  top: 100%;
  right: 100%;
  width: 4rem;
  height: 1px;
  background: #3d3522;
  z-index: 10;
}
.frontAbout_intr_body h3::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  width: 40%;
  height: 1px;
  background: #3d3522;
  z-index: 10;
}
.frontAbout_intr_body p {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-top: 3rem;
}

.frontMenu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.frontMenu_list_item {
  width: 100%;
  text-align: center;
  border-top: solid 2rem;
  padding: 7rem 1rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 10;
}
.frontMenu_list_item:nth-of-type(1) {
  background: #e4ede1;
  border-top-color: #c9dbc2;
}
.frontMenu_list_item:nth-of-type(2) {
  background: #f8e6c8;
  border-top-color: #f1cc91;
}
.frontMenu_list_item:nth-of-type(3) {
  background: #fbf4bc;
  border-top-color: #f6e879;
}
.frontMenu_list_item .sub {
  position: absolute;
  left: 5%;
  top: 1.5rem;
  z-index: -1;
}
.frontMenu_list_item .sub img {
  max-height: 8rem;
}
.frontMenu_list_item .ttl {
  font-size: 2.2rem;
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.frontMenu_list_item .txt {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 3rem;
}
.frontMenu_list_item .txt:last-of-type {
  margin-bottom: 4.5rem;
}
.frontMenu_list_item .moreBtn01 {
  margin-top: auto;
}

.frontNews {
  margin: 12rem 5rem;
}
.frontNews_box_head {
  margin-bottom: 3rem;
}
.frontNews_box_head p {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.frontNews_box_head h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.frontConsul {
  padding: 12rem 5rem;
  overflow: hidden;
}
.frontConsul_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3rem;
}
.frontConsul_box_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.frontConsul_box_head h2 {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}
.frontConsul_box_head p {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  margin-left: 1rem;
}
.frontConsul_box_body {
  overflow: hidden;
  padding-left: 15%;
  margin-right: calc(50% - 50vw);
}
.frontConsul_box .splide__slide {
  aspect-ratio: 1/1;
  border-radius: 100%;
  text-align: center;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.frontConsul_box .splide__slide.slide01 {
  background: #f4eaa1;
}
.frontConsul_box .splide__slide.slide02 {
  background: #f2d4c3;
}
.frontConsul_box .splide__slide.slide03 {
  background: #e1e8d4;
}
.frontConsul_box .splide__slide.slide04 {
  background: #f4eaa1;
}
.frontConsul_box .splide__slide.slide05 {
  background: #cbd9e2;
}
.frontConsul_box .splide__slide.slide06 {
  background: #f2dfbb;
}
.frontConsul_box .splide__slide.slide07 {
  background: #dfd5d9;
}
.frontConsul_box .splide__slide h3 {
  width: 90%;
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #3d3522;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.frontConsul_box .splide__slide p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 85%;
}
.frontConsul_box .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3rem;
  text-align: right;
  margin-right: 10%;
  margin-top: 4rem;
}
.frontConsul_box .splide__arrows button {
  width: 6.8rem;
}

.frontFlow {
  padding: 4rem 5rem 18rem;
}
.frontFlow_head {
  text-align: center;
}
.frontFlow_head_ttl {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
}
.frontFlow_head_ttl span {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  display: block;
  margin-top: 1rem;
}
.frontFlow_head_sub {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
}
.frontFlow_head_txt {
  font-size: 1.7rem;
  line-height: 1.85;
}
.frontFlow_list {
  margin-top: 10rem;
  margin-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
}
.frontFlow_list_item {
  width: 100%;
}
.frontFlow_list_item figure {
  position: relative;
}
.frontFlow_list_item figure span {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.frontFlow_list_item figure span img {
  max-height: 3.6rem;
}
.frontFlow_list_item h4 {
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.frontFlow_list_item p {
  font-size: 1.6rem;
  line-height: 1.65;
}
.frontFlow_body {
  text-align: center;
}
.frontFlow_body h4 {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .frontView {
    margin-left: 5%;
  }
  .frontView h2 {
    position: absolute;
    bottom: 5%;
    right: 5%;
    max-width: 50%;
  }
  .frontView .splide {
    border-radius: 0 0 0 8vw;
  }
  .frontView .splide__slide {
    height: 65vh;
  }
  .frontAbout {
    margin: 0;
    padding: 15% 0 25%;
  }
  .frontAbout_box {
    padding-top: 10%;
    padding-bottom: 15%;
  }
  .frontAbout_box h2 {
    font-size: 8vw;
    margin-bottom: 2%;
  }
  .frontAbout_box h3 {
    font-size: 5.4vw;
    margin-bottom: 8%;
  }
  .frontAbout_box p {
    text-align: left;
    font-size: 4vw;
    padding: 0 5%;
  }
  .frontAbout_intr {
    padding: 0 5%;
    display: block;
  }
  .frontAbout_intr_thumb {
    width: 100%;
    height: 85vw;
    overflow: hidden;
  }
  .frontAbout_intr_thumb img {
    width: 100%;
  }
  .frontAbout_intr_body {
    width: 100%;
    padding-right: 0;
  }
  .frontAbout_intr_body h3 {
    font-size: 7vw;
    padding-bottom: 5%;
    margin-bottom: 5%;
    margin-top: 8%;
  }
  .frontAbout_intr_body h3::before {
    display: none;
  }
  .frontAbout_intr_body h3::after {
    display: none;
  }
  .frontAbout_intr_body p {
    font-size: 3.8vw;
    margin-top: 5%;
  }
  .frontMenu_list {
    display: block;
  }
  .frontMenu_list_item {
    border-top: solid 4vw;
    padding: 13% 5% 10%;
  }
  .frontMenu_list_item .sub {
    left: 2%;
    top: 2%;
  }
  .frontMenu_list_item .sub img {
    max-height: 12vw;
  }
  .frontMenu_list_item .ttl {
    font-size: 5.4vw;
    margin-bottom: 2%;
  }
  .frontMenu_list_item .txt {
    text-align: left;
    font-size: 3.7vw;
    margin-top: 3%;
  }
  .frontMenu_list_item .txt:last-of-type {
    margin-bottom: 6%;
  }
  .frontMenu_list_item .moreBtn01 {
    margin-top: 7%;
  }
  .frontNews {
    margin: 15% 5%;
  }
  .frontNews_box_head {
    text-align: center;
    margin-bottom: 6%;
  }
  .frontNews_box_head p {
    font-size: 3.7vw;
    margin-bottom: 3%;
  }
  .frontNews_box_head h2 {
    font-size: 7vw;
  }
  .frontConsul {
    padding: 15% 5%;
  }
  .frontConsul_box {
    display: block;
    margin-bottom: 6%;
  }
  .frontConsul_box_head {
    display: block;
    text-align: center;
    margin-bottom: 8%;
  }
  .frontConsul_box_head h2 {
    font-size: 3.73vw;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
  .frontConsul_box_head p {
    font-size: 7vw;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    margin-left: 0;
    margin-top: 3%;
  }
  .frontConsul_box_body {
    padding-left: 0;
    margin-right: 0;
  }
  .frontConsul_box .splide__slide {
    padding: 8%;
    border-radius: 5vw;
    display: block;
  }
  .frontConsul_box .splide__slide h3 {
    width: 100%;
    font-size: 4.5vw;
    padding-bottom: 4%;
    margin-bottom: 4%;
  }
  .frontConsul_box .splide__slide p {
    font-size: 3.73vw;
    width: 100%;
    text-align: left;
    letter-spacing: 0;
  }
  .frontConsul_box .splide__arrows {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5vw;
    margin-right: 0;
    margin-top: 6%;
    margin-bottom: 5%;
  }
  .frontConsul_box .splide__arrows button {
    width: 10vw;
  }
  .frontFlow {
    padding: 10% 5% 20%;
  }
  .frontFlow_head {
    text-align: center;
  }
  .frontFlow_head_ttl {
    font-size: 3.73vw;
    margin-bottom: 8%;
  }
  .frontFlow_head_ttl span {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 7vw;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
  }
  .frontFlow_head_sub {
    font-size: 4.5vw;
    line-height: 1.5;
    margin-bottom: 5%;
  }
  .frontFlow_head_txt {
    font-size: 3.8vw;
    text-align: left;
  }
  .frontFlow_list {
    margin-top: 15%;
    margin-bottom: 15%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15vw;
  }
  .frontFlow_list_item figure img {
    width: 100%;
  }
  .frontFlow_list_item figure span {
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .frontFlow_list_item figure span img {
    max-height: 8vw;
  }
  .frontFlow_list_item h4 {
    font-size: 5.4vw;
    margin-top: 5%;
    margin-bottom: 4%;
  }
  .frontFlow_list_item p {
    font-size: 4vw;
  }
  .frontFlow_body h4 {
    font-size: 4.4vw;
    margin-bottom: 15%;
  }
}
/* --------------------------------------------------------------------------

----  Page Layout

-------------------------------------------------------------------------- */
.breadcrumb {
  padding: 3rem 5rem;
}
.breadcrumb ul {
  max-width: 140rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.breadcrumb ul li {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #3d3522;
}
.breadcrumb ul li a {
  color: #3d3522;
  position: relative;
  display: block;
}
.breadcrumb ul li:not(:last-child) a::after {
  content: ">";
  position: absolute;
  right: -2rem;
  top: 50%;
  opacity: 0.4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 5%;
  }
  .breadcrumb ul {
    gap: 3rem;
  }
  .breadcrumb ul li {
    font-size: 1.2rem;
  }
}
.pageView {
  text-align: center;
  padding: 15rem 5rem;
  background: url(../img/bg_view01.jpg) no-repeat center top/cover;
}
.pageView h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .pageView {
    padding: 25% 5%;
  }
  .pageView h1 {
    font-size: 7vw;
  }
}
.pageHead {
  text-align: center;
  margin-bottom: 8rem;
}
.pageHead h2 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.pageHead p {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
  .pageHead {
    margin-bottom: 12%;
  }
  .pageHead h2 {
    font-size: 7vw;
  }
  .pageHead p {
    font-size: 4vw;
    margin-bottom: 3%;
  }
}
.pageBanner {
  margin-top: 10rem;
}

@media screen and (max-width: 767px) {
  .pageBanner {
    margin-top: 15%;
  }
}
.pageWrap {
  max-width: 150rem;
  margin: 4rem auto 12rem;
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .pageWrap {
    margin: 5% auto 15%;
    padding: 5%;
    display: block;
  }
}
.pageMain {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 5rem;
}

@media screen and (max-width: 767px) {
  .pageMain {
    padding-left: 0;
  }
}
.pageSide {
  position: sticky;
  top: 15rem;
  left: 0;
  width: 28rem;
}
.pageSide_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5rem;
}
.pageSide_menu li a {
  font-size: 1.2rem;
  font-family: "IBM Plex Sans", sans-serif;
  color: #3d3522;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.pageSide_menu li a:hover {
  color: #c90000;
}
.pageSide_menu li a span {
  font-size: 2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}
.pageSide_btn {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
.pageSide_btn li a {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 2rem;
  border: 1px solid #3d3522;
  background-color: #3d3522;
  text-transform: uppercase;
  -webkit-transition: color 0.5s ease, background-color 0.5s ease;
  transition: color 0.5s ease, background-color 0.5s ease;
  overflow: hidden;
}
.pageSide_btn li a::after {
  content: "";
  display: inline;
  width: 5rem;
  height: 1px;
  background-color: #ffffff;
  margin-left: 1rem;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease;
  transition: transform 0.5s ease, background-color 0.5s ease, -webkit-transform 0.5s ease;
}
.pageSide_btn li a span {
  display: inline-block;
  position: relative;
}
.pageSide_btn li a:hover {
  color: #3a2c10;
  background-color: #ffffff;
}
.pageSide_btn li a:hover::after {
  background-color: #3a2c10;
  -webkit-transform: translateX(80%);
          transform: translateX(80%);
}
.pageSide_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pageSide_social li a {
  display: block;
  width: 3.4rem;
}

@media screen and (max-width: 767px) {
  .pageSide {
    display: none;
  }
}
.aboutBox {
  position: relative;
  z-index: 10;
}
.aboutBox_head {
  margin-bottom: 8rem;
}
.aboutBox_head dt {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  margin-left: auto;
}
.aboutBox_head dt h2 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.4;
}
.aboutBox_head dt p {
  font-size: 2.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-right: 3rem;
  text-decoration: underline;
  text-underline-offset: 0.8rem;
}
.aboutBox_head dt p.deco_red {
  text-decoration-color: #f08f90;
}
.aboutBox_head dt p.deco_green {
  text-decoration-color: #b8d4b9;
}
.aboutBox_head dt p.deco_blue {
  text-decoration-color: #90bcf2;
}
.aboutBox_head dd {
  width: 75%;
  height: 64%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  overflow: hidden;
}
.aboutBox_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.aboutBox_body_txt {
  background: #f2ecd7;
  padding: 4rem;
  margin-left: auto;
  max-width: 65%;
}
.aboutBox_body_txt p {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.aboutBox_body_txt p:last-child {
  margin-bottom: 0;
}
.aboutBox_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.aboutBox_bg img {
  width: 65%;
}

.aboutBox:nth-of-type(even) {
  margin: 8rem 0;
}
.aboutBox:nth-of-type(even) .aboutBox_head dt {
  margin-left: unset;
  margin-right: auto;
}
.aboutBox:nth-of-type(even) .aboutBox_head dd {
  left: unset;
  right: 0;
}
.aboutBox:nth-of-type(even) .aboutBox_body {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.aboutBox:nth-of-type(even) .aboutBox_body_txt {
  padding: 4rem;
  margin-left: unset;
  margin-right: auto;
  max-width: 65%;
}

@media screen and (max-width: 767px) {
  .aboutBox_head {
    margin-bottom: 0;
  }
  .aboutBox_head dt {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
  .aboutBox_head dt h2 {
    font-size: 5.4vw;
  }
  .aboutBox_head dt p {
    font-size: 5.4vw;
    margin-right: 0;
  }
  .aboutBox_head dd {
    margin-top: 8%;
    width: 100%;
    height: auto;
    position: static;
  }
  .aboutBox_body {
    display: block;
  }
  .aboutBox_body_txt {
    padding: 5% 0;
    max-width: 100%;
  }
  .aboutBox_body_txt p {
    font-size: 3.73vw;
    margin-bottom: 5%;
  }
  .aboutBox_body .moreBtn01 {
    margin-top: 6%;
  }
  .aboutBox_bg {
    display: none;
  }
  .aboutBox:nth-of-type(even) {
    margin: 25% 0;
  }
  .aboutBox:nth-of-type(even) .aboutBox_body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .aboutBox:nth-of-type(even) .aboutBox_body_txt {
    padding: 5% 0;
    max-width: 100%;
  }
  .aboutBox:nth-of-type(even) .aboutBox_body_txt p {
    font-size: 3.73vw;
    margin-bottom: 5%;
  }
}
.lawyerHead {
  margin-bottom: 4rem;
}
.lawyerHead h2 {
  font-size: 3.2rem;
  letter-spacing: 0.08em;
}
.lawyerHead h2 span {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.3rem;
  font-family: "IBM Plex Sans", sans-serif;
  display: block;
}

.lawyerDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lawyerDetail_thumb {
  width: 45%;
}
.lawyerDetail_body {
  width: 50%;
}
.lawyerDetail_body table {
  width: 100%;
  border-collapse: collapse;
}
.lawyerDetail_body table tr {
  border-top: 1px solid #d9d0bc;
}
.lawyerDetail_body table tr:last-child {
  border-bottom: 1px solid #d9d0bc;
}
.lawyerDetail_body table tr th {
  padding: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
}
.lawyerDetail_body table tr td {
  padding: 1.5rem;
  font-size: 1.3rem;
  line-height: 1.2;
}
.lawyerDetail_body table tr td ul {
  display: grid;
  row-gap: 0.7rem;
}

.lawyerBox_item {
  margin-top: 8rem;
  padding-top: 8rem;
  border-top: 1px solid #d9d0bc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.lawyerBox_item dt {
  width: 48%;
}
.lawyerBox_item dd {
  width: 48%;
  padding-left: 4rem;
}
.lawyerBox_item dd h3 {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  position: relative;
}
.lawyerBox_item dd h3::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -5rem;
  width: 3rem;
  height: 0.2rem;
  background: #3a2c10;
}
.lawyerBox_item dd p {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.lawyerBox_item:nth-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .lawyerHead {
    margin-bottom: 8%;
  }
  .lawyerHead h2 {
    font-size: 6vw;
    letter-spacing: 0.08em;
  }
  .lawyerHead h2 span {
    margin-top: 2%;
    font-size: 3.73vw;
  }
  .lawyerDetail {
    display: block;
  }
  .lawyerDetail_thumb {
    width: 100%;
    height: 85vw;
    overflow: hidden;
    margin-bottom: 8%;
  }
  .lawyerDetail_body {
    width: 100%;
  }
  .lawyerDetail_body table tr th {
    padding: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .lawyerDetail_body table tr td {
    padding: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .lawyerDetail_body table tr td ul {
    display: grid;
    row-gap: 0.7rem;
  }
  .lawyerBox_item {
    display: block;
    margin-top: 10%;
    padding-top: 10%;
  }
  .lawyerBox_item dt {
    width: 100%;
  }
  .lawyerBox_item dd {
    width: 100%;
    padding-left: 0;
  }
  .lawyerBox_item dd h3 {
    font-size: 5vw;
    line-height: 1.5;
    margin: 8% 0 5%;
    padding-left: 8%;
  }
  .lawyerBox_item dd h3::before {
    top: 4vw;
    left: 0;
    width: 5%;
  }
  .lawyerBox_item dd p {
    font-size: 3.83vw;
  }
  .lawyerBox_item:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.practiceBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.5rem;
  margin-bottom: 18rem;
}
.practiceBox_item {
  width: calc((100% - 9rem) / 3);
}
.practiceBox_item h3 {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 2rem 0;
}
.practiceBox_item p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.flowBox {
  background: #ffffff;
  border: 0.4rem solid #3d3522;
  padding: 6rem;
}
.flowBox_head {
  text-align: center;
  margin-bottom: 6rem;
}
.flowBox_head h2 {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}
.flowBox_head p {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 3rem;
}
.flowBox_body_ttl {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border: 1px solid #d9d0bc;
  position: relative;
}
.flowBox_body_ttl::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 1rem;
  bottom: 1rem;
  width: 0.6rem;
  background: #de634f;
}
.flowBox_body_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d9d0bc;
  padding: 3rem 0;
}
.flowBox_body_item:last-child {
  border-bottom: none;
}
.flowBox_body_item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15rem;
}
.flowBox_body_item dt p {
  font-family: sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #de634f;
  text-align: center;
}
.flowBox_body_item dt p span {
  font-size: 3.2rem;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}
.flowBox_body_item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 4rem;
  border-left: 1px solid #d9d0bc;
}
.flowBox_body_item dd h4 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.flowBox_body_item dd p {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
.flowBox_message {
  text-align: center;
  margin-top: 3rem;
}
.flowBox_message p {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .practiceBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10vw;
    margin-bottom: 15%;
  }
  .practiceBox_item {
    width: 100%;
  }
  .practiceBox_item figure img {
    width: 100%;
  }
  .practiceBox_item h3 {
    font-size: 5.4vw;
    margin: 6% 0 4%;
  }
  .practiceBox_item p {
    font-size: 3.73vw;
    padding: 0 1%;
  }
  .flowBox {
    padding: 8% 5%;
  }
  .flowBox_head {
    margin-bottom: 10%;
  }
  .flowBox_head h2 {
    font-size: 5.4vw;
    line-height: 1.5;
  }
  .flowBox_head p {
    font-size: 3.73vw;
    line-height: 1.5;
    margin-top: 5%;
    text-align: left;
  }
  .flowBox_body_ttl {
    font-size: 4.6vw;
    line-height: 1.4;
    padding: 5% 5% 5% 10%;
  }
  .flowBox_body_ttl::before {
    left: 4%;
    top: 15%;
    bottom: 15%;
    width: 1.2%;
  }
  .flowBox_body_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid #d9d0bc;
    padding: 10% 0;
  }
  .flowBox_body_item:last-child {
    border-bottom: none;
  }
  .flowBox_body_item dt {
    width: 100%;
    border-left: 1px solid #d9d0bc;
    border-right: 1px solid #d9d0bc;
  }
  .flowBox_body_item dt p {
    font-size: 3.73vw;
    margin-bottom: 4%;
  }
  .flowBox_body_item dt p span {
    font-size: 8vw;
    margin-top: 2.5%;
  }
  .flowBox_body_item dd {
    padding: 0 5%;
    border-left: 1px solid #d9d0bc;
    border-right: 1px solid #d9d0bc;
  }
  .flowBox_body_item dd h4 {
    font-size: 4.2vw;
    margin-bottom: 3%;
    text-align: center;
  }
  .flowBox_body_item dd p {
    font-size: 3.73vw;
  }
  .flowBox_message {
    margin-top: 6%;
  }
  .flowBox_message p {
    font-size: 4vw;
    margin-bottom: 6%;
  }
}
.contactBox {
  background: #ffffff;
  border: 1px solid #d9d0bc;
  padding: 4rem 4rem 6rem;
}
.contactBox table {
  width: 100%;
  border-collapse: collapse;
}
.contactBox table tbody tr {
  border-bottom: 1px dotted #d9d0bc;
}
.contactBox table tbody tr th {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: middle;
  padding: 3rem;
  width: 30rem;
  position: relative;
  z-index: 10;
}
.contactBox table tbody tr th::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 1rem;
  right: 1rem;
  z-index: -1;
  background: #f9f9f9;
}
.contactBox table tbody tr th .req {
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  position: absolute;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ff4b2f;
  color: #ffffff;
}
.contactBox table tbody tr td {
  font-size: 1.5rem;
  vertical-align: middle;
  padding: 3rem;
}
.contactBox table tbody tr td input[type=text],
.contactBox table tbody tr td input[type=email] {
  font-size: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dddddd;
}
.contactBox table tbody tr td textarea {
  font-size: 1.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 10rem;
  resize: vertical;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dddddd;
}
.contactBox table tbody tr td .horizontal-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.contactBox table tbody tr td .horizontal-list .horizontal-item {
  margin-left: 0;
}
.contactBox table tbody tr td .horizontal-list .horizontal-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contactBox table tbody tr td .item {
  margin-top: 1.5rem;
}
.contactBox table tbody tr td .error {
  margin-top: 1rem;
  font-size: 1.3rem;
}
.contactBox input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: 4rem auto 0;
  padding: 2rem;
  border-radius: 5rem;
  background: #de634f;
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  border: none;
}

.thanks {
  background: #ffffff;
  border: 1px solid #d9d0bc;
  padding: 4rem 4rem 6rem;
  text-align: center;
}
.thanks p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 2rem 0;
}
.thanks p:first-of-type {
  font-size: 2.2rem;
  font-weight: 500;
}
.thanks .moreBtn01 {
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  .contactBox {
    padding: 5% 5% 10%;
  }
  .contactBox table {
    display: block;
  }
  .contactBox table tbody {
    display: block;
  }
  .contactBox table tbody tr {
    display: block;
  }
  .contactBox table tbody tr th {
    display: block;
    font-size: 1.4rem;
    padding: 3rem 2rem;
    width: auto;
    position: relative;
    z-index: 10;
  }
  .contactBox table tbody tr th::before {
    top: 1rem;
    bottom: 1rem;
    left: 0;
    right: 0;
  }
  .contactBox table tbody tr th .req {
    font-size: 1rem;
    right: 2rem;
  }
  .contactBox table tbody tr td {
    display: block;
    font-size: 1.4rem;
    padding: 1rem 1rem 2rem;
  }
  .contactBox table tbody tr td input[type=text],
  .contactBox table tbody tr td input[type=email] {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  .contactBox table tbody tr td textarea {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  .contactBox input[type=submit] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    display: block;
    width: 100%;
    max-width: 28rem;
    margin: 4rem auto 0;
    padding: 2rem;
    border-radius: 5rem;
    background: #de634f;
    color: #ffffff;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    border: none;
  }
  .thanks {
    padding: 8% 5%;
  }
  .thanks p {
    font-size: 3.73vw;
    margin: 6% 0;
  }
  .thanks p:first-of-type {
    font-size: 4.5vw;
  }
  .thanks .moreBtn01 {
    margin-top: 10%;
  }
}
/* --------------------------------------------------------------------------

---- Post

-------------------------------------------------------------------------- */
.newsList li {
  border-bottom: 1px solid #3d3522;
}
.newsList li a {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 0;
  color: #3d3522;
}
.newsList li a .date {
  padding-left: 5rem;
}
.newsList li a .ttl {
  padding-left: 5rem;
}

@media screen and (max-width: 767px) {
  .newsList li a {
    font-size: 3.7vw;
    line-height: 1.5;
    display: block;
    padding: 5% 2%;
  }
  .newsList li a .date {
    padding-left: 0;
  }
  .newsList li a .ttl {
    padding-left: 0;
    margin-top: 3%;
  }
}
.single {
  margin-bottom: 12rem;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .single {
    margin-bottom: 15%;
    padding: 0;
  }
}
.single > * {
  font-weight: 600;
  line-height: 1.4;
}
.single h1 {
  font-size: 2.4rem;
  line-height: 1.45;
  position: relative;
  margin: 4rem 0 2.5rem;
  padding-left: 1.8rem;
  border-left: solid 0.6rem #3d3522;
}
@media screen and (max-width: 767px) {
  .single h1 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
  }
}
.single h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.6rem;
  width: 0.6rem;
  height: 50%;
  background: #3d3522;
}
.single h2 {
  font-size: 2.2rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding: 1rem 1.5rem;
  color: #ffffff;
  border-radius: 1rem;
  background: #3d3522;
}
@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.single h3 {
  font-size: 2.2rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding-left: 1.8rem;
  border-left: solid 0.6rem #3d3522;
}
@media screen and (max-width: 767px) {
  .single h3 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.single h4 {
  font-size: 2rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: dashed 0.1rem #3d3522;
}
@media screen and (max-width: 767px) {
  .single h4 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.single h4::before {
  content: "-";
  font-weight: 600;
  display: inline;
  margin-right: 1rem;
  vertical-align: baseline;
  color: #3d3522;
}
.single h5 {
  font-size: 1.8rem;
  line-height: 1.45;
  margin: 4rem 0 2.5rem;
  padding-bottom: 1rem;
  color: #3d3522;
}
@media screen and (max-width: 767px) {
  .single h5 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
  }
}
.single h6 {
  font-size: 1.8rem;
  margin: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .single h6 {
    font-size: 1.6rem;
    margin: 2rem 0;
  }
}
.single p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  margin: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .single p {
    font-size: 1.4rem;
    margin: 2rem 0;
  }
}
.single p a {
  text-decoration: underline;
  color: #3d3522;
}
.single p a:hover {
  text-decoration: none;
}
.single ul {
  padding: 3rem;
  border-radius: 1rem;
  background: #3d3522;
}
.single ul li {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  margin-left: 2rem;
  list-style: disc;
}
.single ul li:last-child {
  margin-bottom: 0;
}
.single ol {
  padding: 3rem;
  border-radius: 1rem;
  background: #3d3522;
}
.single ol li {
  font-size: 1.5rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  margin-left: 2rem;
}
.single ol li:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------

---- Pager

-------------------------------------------------------------------------- */
.singlePager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8rem;
}
.singlePager .prev {
  width: 49%;
  max-width: 28rem;
}
.singlePager .prev a {
  font-weight: 600;
  position: relative;
  text-align: center;
  display: block;
  padding: 2rem 3rem;
  color: #ffffff;
  background: #3a2c10;
  border-radius: 1rem;
}
.singlePager .prev a::before {
  content: "‹";
  position: absolute;
  left: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.singlePager .next {
  width: 49%;
  max-width: 28rem;
}
.singlePager .next a {
  font-weight: 600;
  position: relative;
  text-align: center;
  display: block;
  padding: 2rem 3rem;
  color: #ffffff;
  background: #3a2c10;
  border-radius: 1rem;
}
.singlePager .next a::before {
  content: "›";
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pager {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 15%;
  }
}
.pager .wp-pagenavi a,
.pager .wp-pagenavi span {
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #3a2c10;
  padding: 1rem 1.5rem 1.2rem;
  margin: 0 0.2rem;
  display: inline-block;
  border-radius: 1rem;
  vertical-align: middle;
  color: #ffffff;
  letter-spacing: 0;
  background: #3a2c10;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .pager .wp-pagenavi a,
  .pager .wp-pagenavi span {
    margin: 0.1rem;
  }
}
.pager .wp-pagenavi span.current {
  background: #3a2c10;
  color: #ffffff;
  border: solid 1px #3a2c10;
}
.pager .wp-pagenavi a:hover {
  background: #3a2c10;
  color: #ffffff;
  border: solid 1px #3a2c10;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */