@charset "UTF-8";
/* ============================
    reset
============================*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated:2010-09-17
Author:Richard Clark - http://richclarkdesign.com 
Twitter:@rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

/* add */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  border: 0;
  border-style: none;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul, ol, ul li, ol li {
  list-style: none;
}

/*main color*/
/*mono*/
/*accent*/
/*addcolor*/
/*font-family*/
/*font-weight*/
/*media query break point*/
/*se*/
/*sp*/
/*tablet*/
/*se*/
/*追加*/
/*grid settings*/
/* media query */
a {
  color: #333;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  a:hover {
    color: #333;
  }
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  line-height: 2;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.contents {
  font-family: "Shippori Mincho", serif;
}

button {
  font-family: "Shippori Mincho", serif;
}

em,
i {
  font-style: normal;
}

i {
  display: inline-block;
}

:focus {
  outline: none;
}

body.js-menuopen {
  overflow: hidden;
}

.l-header {
  height: 7rem;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .l-header {
    top: unset;
    bottom: 0;
    height: 5rem;
    transform: translateY(0);
    transition: 0.5s;
  }
  .l-header.hiddensp {
    transform: translateY(12rem);
    transition: 0.5s;
  }
}
.l-header-filter {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 2;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.33);
}
.js-menuopen .l-header-filter {
  opacity: 1;
  pointer-events: all;
  overflow: hidden;
}
.l-header__nav {
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .l-header__nav {
    width: 98% !important;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__nav {
    width: 100% !important;
  }
}
.l-header__nav-ul {
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 83rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1200px) {
  .l-header__nav-ul {
    max-width: 65rem;
    height: 5rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__nav-ul {
    grid-template-columns: repeat(3, 1fr);
    background-color: #EDEFE9;
  }
}
.l-header__nav__btn {
  position: relative;
  height: 100%;
}
.l-header__nav__btn a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .l-header__nav__btn a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .l-header__nav__btn a {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__nav__btn a {
    height: 5rem;
    border-top: 1px solid;
  }
}
.l-header__nav__btn a:hover {
  border-bottom: 1px solid;
  transition: 1s;
}
.l-header__nav__btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0.5lh;
  width: 1px;
  background-color: #333;
}
@media only screen and (max-width: 768px) {
  .l-header__nav__btn::after {
    display: none;
  }
}
.l-header__nav__btn:nth-of-type(6)::after {
  display: none;
}
.l-header__sns {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .l-header__sns {
    position: fixed;
    top: unset;
    transform: unset;
    bottom: 6rem;
    left: unset;
    right: 1rem;
    grid-template-columns: 1fr;
  }
}
.l-header__sns__icon {
  background-color: #A06639;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  transition: 0.3s;
}
.l-header__sns__icon:hover {
  background-color: #DDCABC;
  transition: 0.3s;
}
.l-header__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-header__menubtn {
    flex-direction: column;
    gap: 0;
    background: #63704D;
    color: #fff;
    border-radius: 1000px;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    height: 7rem !important;
    margin-top: -2rem;
    padding-top: 1.3rem;
  }
  .l-header__menubtn__txt {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    font-size: 15px;
    width: 3rem;
    height: 1px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 0.8rem 0;
    position: relative;
    transition: 0.3s;
  }
  .l-header__menubtn__txt::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1.4px;
    left: 50%;
    top: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .l-header__menubtn__txt::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1.4px;
    left: 50%;
    top: 50%;
    background-color: #fff;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  .l-header__menubtn__txt.js-open {
    border: unset;
    transition: 0.3s;
  }
  .l-header__menubtn__txt.js-open::after {
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.3s;
  }
  .l-header__menubtn__txt.js-open::before {
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: 0.3s;
  }
}
.l-header__spmenu {
  display: none;
}
@media only screen and (max-width: 768px) {
  .l-header__spmenu {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 2;
    background-color: #BDC6AA;
    width: 100%;
    transform: translateY(51rem);
    border-top: 1px solid #63704D;
    transition: 0.7s ease-out;
  }
  .l-header__spmenu::after {
    content: "";
    position: absolute;
    width: 8rem;
    height: 6px;
    background-color: #63704D;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1000px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .l-header__spmenu::after {
    top: -1.3rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__spmenu__arch {
    position: absolute;
    width: 100%;
    top: -3.7rem;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .l-header__spmenu__arch {
    top: -9.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .l-header__spmenu__arch img {
    width: 100%;
    height: 100%;
  }
  .l-header__spmenu__cont {
    margin-top: 2rem;
    margin-bottom: 9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .l-header__spmenu.js-open {
    transform: translateY(0);
    transition: 0.7s ease-out;
  }
}
.l-header__menu__list {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.l-header__menu__list .c-btnA {
  width: 100%;
}

html {
  scroll-behavior: auto;
}

.pageTop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #EDEFE9;
  height: 42px;
  color: #333;
  letter-spacing: 0;
  font-size: 12px;
  font-size: 1.4rem;
  border-bottom: 1px solid white;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 768px) {
  .pageTop.u-cont {
    width: 100%;
  }
}
.pageTop__img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.4rem;
}
.pageTop.is-top-scroll {
  pointer-events: all;
}

.l-footer {
  background: #63704D;
  color: #fff;
  padding-top: 5rem;
}
.l-footer__convarea {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l-footer__convarea {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }
}
.l-footer__convarea-in {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 3rem;
}
@media only screen and (max-width: 768px) {
  .l-footer__convarea-in {
    flex-direction: column;
  }
}
.l-footer__convarea__ttl {
  width: 13rem;
  height: auto;
}
.l-footer__convarea__ttl img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__convarea__tel {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.l-footer__convarea__tel .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  gap: 4px;
}
.l-footer__convarea__tel .tel__icon {
  width: 2.3rem;
  height: 2.3rem;
}
.l-footer__convarea__tel .num {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
@media (max-width: 768px) {
  .l-footer__convarea__tel .num {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .l-footer__convarea__tel .num {
    font-size: 2.6rem;
  }
}
.l-footer__convarea__tel a[href^="tel:"] {
  color: #fff;
  text-decoration: none;
}
.l-footer__convarea__company {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .l-footer__convarea__company {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .l-footer__convarea__company {
    font-size: 1.2rem;
  }
}
.l-footer__convarea__jusho {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .l-footer__convarea__jusho {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .l-footer__convarea__jusho {
    font-size: 1.2rem;
  }
}
.l-footer__convarea__mail {
  width: 2em;
  height: 1em;
}
.l-footer__convarea__mail img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(44%) sepia(7%) saturate(1422%) hue-rotate(41deg) brightness(92%) contrast(93%);
}
.l-footer__convarea__btn {
  margin-top: 1rem;
  transition: 0.3s;
  white-space: nowrap;
  border: transparent solid 1px;
}
@media only screen and (max-width: 768px) {
  .l-footer__convarea__btn {
    margin: 1rem auto 0;
    padding: 0 1rem !important;
  }
}
@media only screen and (max-width: 390px) {
  .l-footer__convarea__btn.c-btnA {
    font-size: 1.3rem;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .l-footer__convarea__btn:hover {
    border: #A06639 solid 1px;
    color: #fff;
    background: #A06639 !important;
  }
  .l-footer__convarea__btn:hover .l-footer__convarea__mail img {
    filter: invert(97%) sepia(97%) saturate(3%) hue-rotate(56deg) brightness(103%) contrast(100%);
  }
  .l-footer__convarea__btn:hover .u-arw-next {
    background: #fff;
    transform: translateX(0.5em);
  }
  .l-footer__convarea__btn:hover .u-arw-next::before {
    border: 0.05em solid #fff;
  }
}
.l-footer__bottomList {
  margin-top: 4.5rem;
  margin-inline: auto;
  padding-inline: 3rem;
  padding-block: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.4rem;
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 768px) {
  .l-footer__bottomList {
    padding-inline: unset;
    padding-block: 3rem;
    gap: 2rem;
    flex-direction: column;
  }
}
.l-footer__bottomList a {
  line-height: 1;
  display: block;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .l-footer__bottomList a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .l-footer__bottomList a {
    font-size: 1.3rem;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .l-footer__bottomList a:hover {
    opacity: 0.5;
  }
}
.l-footer__bottomItem {
  color: #fff;
}
.l-footer__bottomCopy {
  background: #333;
  padding-block: 3rem;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

.c-florbtn {
  width: 38.5rem;
  right: 5%;
  bottom: 2rem;
  position: fixed;
  z-index: 1;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .c-florbtn {
    display: none;
  }
}
body.js-florbtn__active .c-florbtn {
  pointer-events: unset;
  opacity: 1;
}
.c-florbtn__img {
  position: absolute;
  width: 35%;
  height: auto;
  top: -4%;
  left: 4%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.c-florbtn__img img {
  transform: scaleX(-100%);
}
.c-florbtn__a {
  width: 100%;
  display: block;
  color: #fff;
  background: #63704D;
  padding: 1.8rem;
  text-align: center;
  line-height: 1;
  transition: 0.3s;
  font-size: 15px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .c-florbtn__a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .c-florbtn__a {
    font-size: 1.3rem;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .c-florbtn__a:hover {
    color: #fff;
    background: #A06639;
  }
  .c-florbtn__a:hover .c-florbtn__arw {
    right: 1.5em !important;
  }
}
.c-florbtn__arw {
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translate(-50%, -50%);
}

.c-btnA {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.25rem;
  position: relative;
  padding: 0 3rem;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F7F7F7;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .c-btnA {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-btnA {
    font-size: 1.5rem;
  }
}
.c-btnA .u-arw-right {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.3s;
}
.c-btnA .u-arw-right::before {
  height: unset;
  width: 0.4em;
}
.c-btnA--w {
  background-color: #fff;
  transition: 0.3s;
}
.c-btnA:hover {
  background-color: #fff;
  transition: 0.3s;
}
.c-btnA:hover .u-arw-right {
  width: 105%;
  transition: 0.3s;
}
.c-btnA.c-btnA--w:hover {
  background-color: #F7F7F7;
  transition: 0.3s;
}

.c-pagination {
  position: relative;
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 6rem 0 4rem;
}
@media only screen and (max-width: 768px) {
  .c-pagination {
    padding: 6rem 0 8rem;
  }
}
.c-pagination .nav-links ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 1rem;
}
.c-pagination .nav-links ul li .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 1;
  background: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  border: 1px solid #333;
  border-radius: 1000px;
}
@media (max-width: 768px) {
  .c-pagination .nav-links ul li .page-numbers {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-pagination .nav-links ul li .page-numbers {
    font-size: 1.5rem;
  }
}
.c-pagination .nav-links ul li .page-numbers.current {
  color: #fff;
  background: #63704D;
}
.c-pagination .nav-links ul li .page-numbers:where(.prev, .next, .dots) {
  border: unset;
}
.c-pagination .nav-links ul li .page-numbers:where(.prev, .next) {
  display: grid;
  place-content: center;
}
.c-pagination .nav-links ul li .page-numbers:where(.prev, .next)::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.c-pagination .nav-links ul li .page-numbers.prev::before {
  transform: rotate(135deg);
  margin-left: 0.5rem;
}
.c-pagination .nav-links ul li .page-numbers.next::before {
  transform: rotate(-45deg);
  margin-right: 0.5rem;
}
.c-pagination .nav-links ul li .page-numbers.dots {
  width: -moz-fit-content;
  width: fit-content;
}

.c-ttl {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .c-ttl {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .c-ttl {
    font-size: 1.7rem;
  }
}
.c-ttl-jp {
  letter-spacing: 0.2rem;
  display: block;
  line-height: 1;
}
.c-ttl-eng {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  font-size: 4.8rem;
  letter-spacing: 0.2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-ttl-eng {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .c-ttl-eng {
    font-size: 4rem;
  }
}
.c-ttl--dot {
  position: relative;
}
.c-ttl--dot::after {
  content: "";
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6.4rem;
  height: 2px;
  background-image: linear-gradient(to right, #333 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.c-subttl {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 6.3rem;
}
@media only screen and (max-width: 768px) {
  .c-subttl {
    gap: 2rem;
  }
}
.c-subttl-jp {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .c-subttl-jp {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-subttl-jp {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-subttl-jp {
    line-height: 1.3;
  }
}
.c-subttl-jp::after {
  content: "";
  position: absolute;
  height: 1lh;
  width: 1px;
  background-color: #A06639;
  right: -3.1rem;
}
@media only screen and (max-width: 768px) {
  .c-subttl-jp::after {
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.c-subttl-eng {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 39px;
  font-size: 3.9rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-subttl-eng {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .c-subttl-eng {
    font-size: 3rem;
  }
}

.c-towttl {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
.c-towttl-jp {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .c-towttl-jp {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .c-towttl-jp {
    font-size: 1.5rem;
  }
}
.c-towttl-jp::after {
  content: "";
  position: absolute;
  height: 1lh;
  width: 1px;
  background-color: #A06639;
  right: -2.4rem;
}
.c-towttl-jp::before {
  content: "";
  position: absolute;
  height: 1lh;
  width: 1px;
  background-color: #A06639;
  left: -2.4rem;
}
.c-towttl--grn .c-towttl-jp::after, .c-towttl--grn .c-towttl-jp::before {
  background-color: #BDC6AA;
}
.c-towttl-eng {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-towttl-eng {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .c-towttl-eng {
    font-size: 2.6rem;
  }
}
.c-towttl--grn .c-towttl-eng {
  color: #63704D;
  font-size: 39px;
  font-size: 3.9rem;
}
@media (max-width: 768px) {
  .c-towttl--grn .c-towttl-eng {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .c-towttl--grn .c-towttl-eng {
    font-size: 2.6rem;
  }
}

.c-icon-plus {
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  width: 1em;
  height: 1px;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transition: 0.3s;
}
.c-icon-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: 0.3s;
}
.js-minus .c-icon-plus::before {
  width: 0;
  height: 0;
  transition: 0.3s;
}
.js-minus .c-icon-plus {
  transform: rotate(180deg);
  transition: 0.3s;
}

/* ------------------------------------------------------------
    block
------------------------------------------------------------ */
.u-container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.u-container-85 {
  width: 85%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.u-container-104 {
  max-width: 1040px;
}

.u-cont {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.u-bg-w {
  background-color: #fff;
}

.u-masktape {
  background-color: #F7F7F7;
  padding: 0.3rem 1rem;
  display: inline-block;
  margin: 0.4rem 0;
  border-bottom: 2px solid currentColor;
}

.u-arw-right {
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  position: relative;
  width: 3em;
  height: 0.1em;
  background: currentColor;
}
.u-arw-right::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

.u-arw-dwn {
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  background: currentColor;
  width: 1lh;
  height: 1px;
  transform: rotate(90deg);
  transition: 0.3s;
}
.u-arw-dwn::before {
  content: "";
  height: unset;
  width: 0.4em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  right: -0.05em;
  box-sizing: border-box;
  transition: 0.3s;
}

.u-arw-next {
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  line-height: 1;
  background: currentColor;
  width: 1lh;
  height: 1px;
  transform: rotate(0deg);
  transition: 0.3s;
}
.u-arw-next::before {
  content: "";
  height: unset;
  width: 0.4em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  right: -0.05em;
  box-sizing: border-box;
  transition: 0.3s;
}
.u-arw-next.-grn {
  background: #63704D;
}
.u-arw-next.-grn::before {
  border: 0.05em solid #63704D;
}

.u-mrg-t5 {
  margin-top: 5rem !important;
}
@media only screen and (max-width: 768px) {
  .u-mrg-t5 {
    margin-top: 3rem !important;
  }
}
.u-mrg-t9 {
  margin-top: 9rem !important;
}
@media only screen and (max-width: 768px) {
  .u-mrg-t9 {
    margin-top: 4rem !important;
  }
}
.u-mrg-t10 {
  margin-top: 10rem !important;
}
@media only screen and (max-width: 768px) {
  .u-mrg-t10 {
    margin-top: 8rem !important;
  }
}
.u-mrg-tb5 {
  margin-block: 5rem !important;
}
@media only screen and (max-width: 768px) {
  .u-mrg-tb5 {
    margin-block: 2.5rem !important;
  }
}

@media only screen and (max-width: 768px) {
  .u-spmrg-t2 {
    margin-top: 2rem !important;
  }
}

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

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

.u-pci {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .u-pci {
    display: none;
  }
}

.u-spi {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-spi {
    display: inline-block;
  }
}

.u-pcf {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .u-pcf {
    display: none;
  }
}

.u-spf {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-spf {
    display: flex;
  }
}

.u-pcg {
  display: grid;
}
@media only screen and (max-width: 768px) {
  .u-pcg {
    display: none;
  }
}

.u-spg {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-spg {
    display: grid;
  }
}

.anchor-target {
  pointer-events: none;
}
.anchor-target::before {
  content: "";
  display: block;
  height: 20vh; /* ウィンドウの高さの半分 */
  margin-top: -20vh;
}/*# sourceMappingURL=common.css.map */