@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    base
======================================================== */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
  border: none;
}

a {
  text-decoration: none;
  word-break: break-all;
  transition: 0.3s ease;
  outline: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

dt {
  font-weight: 400;
}

em {
  font-style: normal;
}

.sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}

.color_gold {
  color: #d4b87a;
}
.color_gold2 {
  color: #88785f;
}

.text_align_left {
  text-align: left;
}
.text_align_center {
  text-align: center;
}
.text_align_right {
  text-align: right;
}
.text_indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

ruby rt {
  font-size: 40%;
}

/* ========================================================
    layout
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 10px;
  }
}

body {
  width: 100%;
  color: #252525;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main {
  position: relative;
  width: 100%;
}

/* ========================================================
    mv
======================================================== */
.mv {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv {
    position: fixed;
    left: 0;
    right: 50%;
    top: 0;
    bottom: 0;
    display: block;
    width: 50%;
  }
}
.mv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #252525;
  z-index: -5;
}
.mv_img {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .mv_img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
  }
}
.mv_img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.mv_img img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .mv_img img {
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center right;
       object-position: center right;
  }
}

/* ========================================================
    article
======================================================== */
.article {
  position: relative;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .article {
    width: 50%;
    margin: 0 0 0 auto;
    padding-top: 0 !important;
  }
}
.article .inner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 4rem;
}
@media screen and (min-width: 768px) {
  .article .inner {
    width: 80rem;
    margin: 0 auto 0 0;
    padding: 0 6.5rem;
  }
}

/* ========================================================
    header
======================================================== */
.header {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #d4b572 0%, #ad904f 100%);
}
@media screen and (min-width: 768px) {
  .header {
    background: none;
    padding-top: 0 !important;
  }
}
.header .headnavi {
  position: relative;
  width: 100%;
}
.header .headnavi_spmenu {
  position: relative;
  left: inherit;
  top: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.6rem 4rem 1.6rem 2.4rem;
  background: linear-gradient(90deg, #d4b572 0%, #ad904f 100%);
  box-shadow: 0 0.2em 0.2em rgba(37, 37, 37, 0.3);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header .headnavi_spmenu {
    display: none;
  }
}
.header .headnavi_spmenu::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  display: block;
  width: 100%;
  height: calc(100% + 1px);
  background: linear-gradient(90deg, #d4b572 0%, #ad904f 100%);
  z-index: -1;
}
.header .headnavi_spmenu.is-fixed::before {
  top: -100vh;
  height: calc(100% + 100vh);
}
.header .headnavi_spmenu_logo {
  position: relative;
  width: 28.2rem;
}
.header .headnavi_spmenu_logo > a {
  display: block;
  width: 100%;
}
.header .headnavi_spmenu_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  width: auto;
  max-width: 38rem;
}
.header .headnavi_spmenu_list > li {
  width: auto;
  margin-left: 4.8rem;
}
.header .headnavi_spmenu_list > li:first-child {
  margin-left: 0;
}
.header .headnavi_spmenu_list > li > a {
  display: block;
  width: 100%;
}
.header .headnavi_spmenu_list > li > a > span {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
}
.header .headnavi_spmenu_sns {
  position: absolute;
  right: 2rem;
  top: calc(100% + 2.4rem);
  display: block;
  width: 10rem;
}
.header .headnavi_spmenu_sns > li {
  width: 100%;
  aspect-ratio: 1/1;
  margin-top: 1.2rem;
}
.header .headnavi_spmenu_sns > li:first-child {
  margin-top: 0;
}
.header .headnavi_spmenu_sns > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(-30deg, #d4b572 0%, #ad904f 100%);
}
.header .headnavi_spmenu_sns > li > a > svg {
  width: 40%;
  aspect-ratio: 1/1;
  fill: #252525;
  transition: 0.3s ease;
}
.header .headnavi_pcmenu {
  display: none;
}
@media screen and (min-width: 768px) {
  .header .headnavi_pcmenu {
    position: fixed;
    right: calc(50% - 80rem);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    padding: 0.8rem 0.8rem 0.8rem 6rem;
    filter: drop-shadow(0 0.2em 0.2em rgba(37, 37, 37, 0.3));
    z-index: 100;
  }
}
.header .headnavi_pcmenu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #d4b572 0%, #ad904f 100%);
  z-index: -4;
}
.header .headnavi_pcmenu_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  width: auto;
}
.header .headnavi_pcmenu_list > li {
  width: auto;
  margin-left: 4.8rem;
}
.header .headnavi_pcmenu_list > li:first-child {
  margin-left: 0;
}
.header .headnavi_pcmenu_list > li > a {
  display: block;
  width: 100%;
}
.header .headnavi_pcmenu_list > li > a:hover {
  opacity: 1;
}
.header .headnavi_pcmenu_list > li > a:hover > span {
  color: #916400;
}
.header .headnavi_pcmenu_list > li > a > span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.header .headnavi_pcmenu_sns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  width: auto;
  margin-left: 6rem;
}
.header .headnavi_pcmenu_sns > li {
  width: 6.4rem;
  aspect-ratio: 1/1;
  margin-left: 0.8rem;
}
.header .headnavi_pcmenu_sns > li:first-child {
  margin-left: 0;
}
.header .headnavi_pcmenu_sns > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border: 1px solid #252525;
  background-color: transparent;
}
.header .headnavi_pcmenu_sns > li > a:hover {
  background-color: #252525;
  opacity: 1;
}
.header .headnavi_pcmenu_sns > li > a:hover > svg {
  fill: #d4b87a;
}
.header .headnavi_pcmenu_sns > li > a > svg {
  width: 43.75%;
  aspect-ratio: 1/1;
  fill: #252525;
  transition: 0.3s ease;
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
  padding: 16rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 12rem 0 0 0;
  }
}
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #252525;
  z-index: -4;
}
.footer .footbtn {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .footer .footbtn {
    width: 80rem;
    margin: 0 auto 0 0;
  }
}
.footer .footbtn_list {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 78.6666666667%;
  margin: 0 auto -2rem auto;
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list {
    width: 73.75%;
    margin: 0 auto -1rem auto;
  }
}
.footer .footbtn_list > li {
  width: 100%;
  aspect-ratio: 590/110;
  margin: 0 0 2rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list > li {
    width: 49.1525423729%;
    aspect-ratio: 290/60;
    margin: 0 0 1rem 1.6949152542%;
  }
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list > li:nth-child(2n+1) {
    margin-left: 0;
  }
}
.footer .footbtn_list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  border-radius: 5.5rem;
  background-color: #467474;
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list > li > a {
    border-radius: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list > li > a:hover {
    background-color: #ad904f;
    opacity: 1;
  }
}
.footer .footbtn_list > li > a::before {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  display: block;
  width: 1.2rem;
  aspect-ratio: 9/20;
  background-image: url(../images/common/arrow_bg01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list > li > a::before {
    right: 2rem;
    width: 0.9rem;
  }
}
.footer .footbtn_list > li > a > span {
  display: block;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  transform: translateY(-0.07em);
}
@media screen and (min-width: 768px) {
  .footer .footbtn_list > li > a > span {
    font-size: 2rem;
  }
}
.footer .footbnr {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 8rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .footer .footbnr {
    width: 80rem;
    margin: 0 auto 0 0;
    padding: 6rem 0 0 0;
  }
}
.footer .footbnr_list {
  position: relative;
  width: 72%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footbnr_list {
    width: 56.25%;
  }
}
.footer .footbnr_list > li {
  width: 100%;
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .footer .footbnr_list > li {
    margin-top: 2.4rem;
  }
}
.footer .footbnr_list > li:first-child {
  margin-top: 0;
}
.footer .footbnr_list > li > a {
  display: block;
  width: 100%;
}
.footer .copyright {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 16rem 0 8rem 0;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    width: 80rem;
    margin: 0 auto 0 0;
    padding: 12rem 0 6rem 0;
  }
}
.footer .copyright_text {
  position: relative;
  width: 100%;
  color: #9fb7b7;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .copyright_text {
    font-size: 1.6rem;
  }
}
.footer .pagetop {
  position: absolute;
  right: 4rem;
  top: -6rem;
  display: block;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .footer .pagetop {
    right: calc(100% - 76rem);
    top: -4.5rem;
  }
}
.footer .pagetop_btn {
  position: relative;
  width: 12rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn {
    width: 9rem;
  }
}
.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%;
}
@media screen and (min-width: 768px) {
  .footer .pagetop_btn > a:hover {
    transform: translateY(-1rem);
    opacity: 1;
  }
}/*# sourceMappingURL=base.css.map */