@charset "UTF-8";

/* set variables */
:root {
  --mainColor: #c97c00;
  --subColor: #bba774;
  --pickupColor: #c67a00;
  --darkColor: #231815;
  --navColor: #166ea6;
  --bgColorlight: #E8E8E6;
  --bgColordark: #231815;
  --lightColor: #fff8ec;
  --txtColor: #231815;
  --linkColor: #0FA3BA;
  --borderColor: #4b4b4b;

  --textNormal: 16px;
  --textMiddle: 18px;
  --textMiddle2: 20px;
  --textBig: 24px;
  --textLarge: 30px;
  --textSmall: 14px;

  --gap: 80px;
  --gaps: 40px;
  --gap_sp: 30px;
  --sectionPadding: 7rem;
  --sectionPadding_sp: 4rem;
  --contentWidth: 1100px;
  --innerWidth: 900px;
}
.p_light {
  color: var(--lightColor);
}
.p_serif {
  font-family: "Shippori Mincho B1", sans-serif;
}
.p_sans {
  font-family: "Noto Sans JP", sans-serif;
}
.p_eng {
  font-family: "EB Garamond", serif;
}
.bg_black {
  background-color: #000;
}
.bg_white {
  background-color: #fff;
}
.bg_light {
  background-color: var(--bgColorlight);
}
.bg_sub {
  background-color: var(--subColor);
}
.bg_dark {
  background-color: var(--bgColordark);
}
html {
  font-size: 10px;
}
body {
  margin: 0;
  padding: 0;
  color: var(--txtColor);
  background-color: white;
  text-align: justify;
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

.font_eng {
  font-family: "Oswald", sans-serif;
}
.fw_900 {
  font-weight: 900;
}
h1, h2, h3, h4, h5, h6, p {
  line-height: 1.5;
  font-size: 1em;
  margin: 0;
  font-weight: inherit;
}
.p_center {
  text-align: center;
}
.p_bold {
  font-weight: 700;
}
.p_bolder {
  font-weight: 1000;
}
.p_underline {
  text-decoration: underline;
}
.p_left {
  text-align: justify;
}
.p_right {
  text-align: right;
}
.p_sub {
  color: var(--subColor);
}
.p_white {
  color: #fff;
}
.p_dark {
  color: var(--darkColor);
}
a {
  color: var(--linkColor);
  transition: 0.3s;
}
a:hover {
  color: #999999;
}
a img {
  transition: 0.2s;
}
a:hover img {
  opacity: 0.6;
}
.cf::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
  width: 0;
}
img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 798px) {
  .sp_none {
    display: none;
  }
  .sp_left {
    text-align: justify !important;
  }
}
@media screen and (min-width: 799px) {
  .pc_none {
    display: none;
  }
}
@media screen and (width <= 1060px) {
  .less_than_1060_none {
    display: none;
  }
}
@media screen and (width <= 1000px) {
  .less_than_1000_none {
    display: none;
  }
}
@media screen and (width <= 768px) {
  .less_than_768_none {
    display: none;
  }
}
@media screen and (width <= 701px) {
  .less_than_701_none {
    display: none;
  }
}
@media screen and (950px <= width) {
  .more_than_950_none {
    display: none;
  }
}
@media screen and (600px <= width) {
  .more_than_600_none {
    display: none;
  }
}
@media screen and (525px <= width) {
  .more_than_525_none {
    display: none;
  }
}
@media screen and (500px <= width) {
  .more_than_500_none {
    display: none;
  }
}
@media screen and (430px <= width) {
  .more_than_430_none {
    display: none;
  }
}
@media screen and (370px <= width) {
  .more_than_370_none {
    display: none;
  }
}
.wrap {
  width: 100%;
  max-width: var(--contentWidth);
  margin-left: auto;
  margin-right: auto;
}
.wrap_inner {
  width: 100%;
  max-width: var(--innerWidth);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (width <= 798px) {
  .wrap {
    width: auto;
    max-width: auto;
    margin: 0 2rem;
  }
  .wrap_inner {
    width: auto;
    max-width: auto;
    margin: 0 2rem;
  }
}
.sec_padding {
  padding-top: var(--sectionPadding);
  padding-bottom: var(--sectionPadding);
}
.sec_padding_s {
  padding-top: calc(var(--sectionPadding) / 2);
  padding-bottom: calc(var(--sectionPadding) / 2);
}
@media screen and (width <= 798px) {
  .sec_padding {
    padding-top: var(--sectionPadding_sp);
    padding-bottom: var(--sectionPadding_sp);
  }
  .sec_padding_s {
    padding-top: calc(var(--sectionPadding_sp) / 2);
    padding-bottom: calc(var(--sectionPadding_sp) / 2);
  }
}
.mt_10 {
  margin-top: 10px;
}
.mt_20 {
  margin-top: 20px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_60 {
  margin-top: 60px;
}
.mt_70 {
  margin-top: 70px;
}
.mt_80 {
  margin-top: 80px;
}
.mt_90 {
  margin-top: 90px;
}
.mt_100 {
  margin-top: 100px;
}
.mb_0 {
  margin-bottom: 0 !important;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.mb_70 {
  margin-bottom: 70px;
}
.mb_80 {
  margin-bottom: 80px;
}
.mb_90 {
  margin-bottom: 90px;
}
.mb_100 {
  margin-bottom: 100px;
}
.p12 {
  font-size: 1.2rem;
  line-height: 200%;
}
.p14 {
  font-size: 1.4rem;
  line-height: 200%;
}
.p15 {
  font-size: 1.5rem;
  line-height: 200%;
}
.p16 {
  font-size: 1.6rem;
  line-height: 200%;
}
.p18 {
  font-size: 1.8rem;
  line-height: 200%;
}
.p20 {
  font-size: 2rem;
  line-height: 200%;
}
.p22 {
  font-size: 2.2rem;
  line-height: 200%;
}
.p24 {
  font-size: 2.4rem;
  line-height: 200%;
}
.p26 {
  font-size: 2.6rem;
  line-height: 200%;
}
.p30 {
  font-size: 3rem;
  line-height: 160%;
}
.p35 {
  font-size: 3.5rem;
  line-height: 160%;
}
.p38 {
  font-size: 3.8rem;
  line-height: 160%;
}
.p40 {
  font-size: 4rem;
  line-height: 150%;
}
.p50 {
  font-size: 5rem;
  line-height: 150%;
}
.p60 {
  font-size: 6rem;
  line-height: 100%;
}

