@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : base.css
Description : 共通
===================================================================== */
/* =====================================================================
    共通（大枠）
======================================================================*/
html {
  min-height: 100vh;
  font-size: calc(10 / 750 * 100vw);
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1920 * 100vw);
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
    font-size: clamp(1.8rem, 1.4vw, 14px);
  }
}
body img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
body a,
body button {
  display: block;
  color: currentColor;
  word-wrap: break-word;
  line-break: anywhere;
}
@media screen and (min-width: 768px) {
  body a,
  body button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  body a:hover,
  body button:hover {
    opacity: 0.7;
  }
}

section,
main,
header,
footer {
  position: relative;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

@supports (aspect-ratio: 1) {
  .main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.main > * {
  overflow: hidden;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(650 / 750 * 100%);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .inner {
    width: 82%;
    max-width: 1200px;
  }
}

.main p,
.main dd {
  line-height: 1.785;
}
.main p a,
.main dd a {
  display: inline;
  color: #f36700;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
/* =====================================================================
    共通
======================================================================*/
.ff-en {
  font-family: "Lexend", sans-serif;
  font-weight: 600;
}

.sec-ttl {
  margin-bottom: 10rem;
  text-align: center;
  font-size: 5rem;
}
@media screen and (min-width: 768px) {
  .sec-ttl {
    margin-bottom: 6rem;
  }
}
.sec-ttl .en {
  display: block;
  margin-bottom: 0.2em;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #7c3e1c;
}
.sec-ttl .ja {
  display: block;
  font-size: 48%;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .sec-ttl .ja {
    font-size: 32%;
    font-size: 1.6rem;
    font-size: max(1.6rem, 10px);
  }
}

.btn01 {
  margin-top: 8rem;
  text-align: center;
}
.btn01 a {
  position: relative;
  display: inline-block;
  padding: 1.2em 2.2em;
  min-width: 40rem;
  font-size: 107%;
  color: #ffffff;
  background-color: #f39700;
  border-radius: 3em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .btn01 a {
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .btn01 a:hover {
    opacity: 1;
    background-color: #f36700;
  }
}
.btn01 a::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0.9em;
  width: 0.58em;
  height: 0.58em;
  background: url(../images/common/icon_arrow.svg) no-repeat center/contain;
}

.btn02 a {
  position: relative;
  border: 2px solid #f39700;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .btn02 a {
    -webkit-transition-property: border-color, -webkit-box-shadow;
    transition-property: border-color, -webkit-box-shadow;
    transition-property: border-color, box-shadow;
    transition-property: border-color, box-shadow, -webkit-box-shadow;
  }
  .btn02 a:hover {
    opacity: 1;
    border-color: #f36700;
    -webkit-box-shadow: 0 0 0 2px #f39700;
            box-shadow: 0 0 0 2px #f39700;
  }
  .btn02 a:hover span {
    background-color: #f36700;
  }
}
.btn02 a span {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 0.5em 1em;
  padding-right: 2em;
  font-size: 1.4rem;
  border-radius: 0.5em;
  color: #ffffff;
  background-color: #f39700;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btn02 a span::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0.6em;
  margin: auto 0;
  width: 0.78em;
  height: 0.78em;
  background: url(../images/common/icon_arrow.svg) no-repeat center/contain;
}

/* =====================================================================
*    header
* =================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    background-color: #ffffff;
  }
}
.header-column {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    padding: 1.5rem calc(25 / 1920 * 100%);
  }
}
.header-logo {
  position: relative;
  padding: 0 calc(35 / 750 * 100%);
  background-color: #ffffff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header-logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: auto;
    margin-right: 3rem;
    padding: 0;
    background-color: transparent;
  }
}
.header-logo h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22.1rem;
  height: 16rem;
}
@media screen and (min-width: 768px) {
  .header-logo h1 {
    height: auto;
  }
}
.header.is-active .btn-menu span:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.header.is-active .btn-menu span:nth-of-type(2) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.btn-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto;
  width: 10rem;
  height: 10rem;
  font-size: 1rem;
  background-color: #f39700;
  border-radius: 50%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .btn-menu {
    display: none !important;
  }
}
.btn-menu-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 3.2em;
  height: 1.8em;
}
.btn-menu span {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.3em;
  background-color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-menu span:nth-of-type(1) {
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.btn-menu span:nth-of-type(2) {
  bottom: 0;
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.nav {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 24rem 0 120px;
  background-color: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .nav {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent !important;
    margin-left: auto;
    padding: 0;
    width: auto;
    height: 100%;
    overflow: visible;
  }
}
@media screen and (max-width: 767px) {
  .nav-menu {
    margin-left: calc(100 / 750 * 100%);
    border-top: 2px solid #f39700;
  }
}
@media screen and (min-width: 768px) {
  .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .nav-menu > li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 4.5rem 0 0;
  }
}
.nav-menu > li:last-child {
  margin-bottom: 0;
}
.nav-menu > li > a {
  position: relative;
  padding: 4.8rem 0;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #7c3e1c;
  border-bottom: 2px solid #f39700;
}
@media screen and (min-width: 768px) {
  .nav-menu > li > a {
    padding: 0.2em 0;
    font-size: 1.8rem;
    font-size: max(1.8rem, 10px);
    border-bottom-color: #ffffff;
    -webkit-transition-property: border-bottom-color;
    transition-property: border-bottom-color;
  }
  .nav-menu > li > a:hover {
    opacity: 1;
    border-bottom-color: #f39700;
  }
}
.nav-menu > li.nolink a {
  pointer-events: none;
  -webkit-filter: grayscale(1) opacity(0.5);
          filter: grayscale(1) opacity(0.5);
}
.nav-contact {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .nav-contact {
    margin-top: 0;
  }
}
.nav-contact a {
  min-width: 55rem;
  font-size: 3.2rem;
}
@media screen and (min-width: 768px) {
  .nav-contact a {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    min-width: 31rem;
    font-size: 1.8rem;
  }
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 105%;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .footer {
    font-size: 111%;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  z-index: -3;
}
.footer .footnavi {
  position: relative;
  width: 100%;
  padding: 32rem 0 16rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi {
    padding: 13.8rem 0 12rem 0;
  }
}
.footer .footnavi_column {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5rem;
}
.footer .footnavi_info {
  position: relative;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_info {
    width: 45.8333333333%;
  }
}
.footer .footnavi_logo {
  position: relative;
  width: 36.9230769231%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_logo {
    width: 43.6363636364%;
  }
}
.footer .footnavi_logo > a {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_logo > a:hover {
    opacity: 1;
  }
}
.footer .footnavi_text {
  position: relative;
  width: 100%;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_text {
    margin-top: 6rem;
  }
}
.footer .footnavi_text > :first-child {
  margin-top: 0 !important;
}
.footer .footnavi_address {
  position: relative;
  width: 100%;
  margin-top: 4.8rem;
  font-size: 92%;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_address {
    margin-top: 3.6rem;
  }
}
.footer .footnavi_contact {
  position: relative;
  width: 100%;
  margin-top: 4.8rem;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_contact {
    margin-top: 3.6rem;
  }
}
.footer .footnavi_contact > li {
  width: 100%;
  font-weight: 500;
  text-decoration: underline;
}
.footer .footnavi_list {
  position: relative;
  width: 100%;
  margin: 12rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list {
    width: 37.5%;
    margin: 0;
  }
}
.footer .footnavi_list > li {
  width: 100%;
  border-bottom: 1px solid #e3dbca;
}
.footer .footnavi_list > li:first-child {
  border-top: 1px solid #e3dbca;
}
.footer .footnavi_list > li > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.825em 0;
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list > li > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list > li > a:hover::before {
    -webkit-transform: translateX(1rem) translateY(-50%);
            transform: translateX(1rem) translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .footer .footnavi_list > li > a:hover > span {
    color: #997631;
    -webkit-transform: translateX(1rem);
            transform: translateX(1rem);
  }
}
.footer .footnavi_list > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 0.41em;
  aspect-ratio: 22/32;
  -webkit-mask-image: url(../../images/common/arrow_bg01.svg);
          mask-image: url(../../images/common/arrow_bg01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #bfa26a;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer .footnavi_list > li > a > span {
  display: block;
  padding-left: 1.7em;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.footer .copyright {
  position: relative;
  width: 100%;
  padding: 0 0 6rem 0;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    padding: 0 0 4.5rem 0;
  }
}
.footer .copyright_text {
  position: relative;
  width: 100%;
  color: #b08b42;
  font-size: 88%;
  text-align: center;
  line-height: 1.8;
}
.footer .pagetop {
  position: absolute;
  right: calc(50% - 6rem);
  top: 12rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer .pagetop {
    right: 5.2083333333%;
    top: 4.8rem;
  }
}
.footer .pagetop_btn {
  position: relative;
  width: 12rem;
  aspect-ratio: 123/73;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn {
    width: 7.6rem;
  }
}
.footer .pagetop_btn > a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  background-image: url(../../images/common/btn_pagetop.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn > a:hover {
    background-image: url(../../images/common/btn_pagetop_h.png);
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
    opacity: 1;
  }
}/*# sourceMappingURL=base.css.map */