@charset "UTF-8";
/* メディアクエリ */
/* //メディアクエリ */
/* position 中央寄せ */
/* //position 中央寄せ */
/* 基本フォントサイズ設定 */
html {
  font-size: 62.5%;
}

/* //基本フォントサイズ設定 */
/* 全体設定 */
body {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: max(1.1713030747vw, 14px);
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
  color: #B78A51;
  -webkit-font-smoothing: antialiased; /* macで文字が太くなる現象を解消 */
  background-color: #F7F2EF;
}
@media screen and (max-width: 991px) {
  body {
    font-size: max(3.2558139535vw, 14px);
  }
}

main {
  overflow-x: hidden;
  margin-top: 4.831625183vw;
}
@media screen and (max-width: 991px) {
  main {
    margin-top: 6rem;
  }
}

p {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

ul {
  list-style: none;
  padding-left: 0;
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.container {
  max-width: 83.4553440703vw;
  padding: 0 1.4641288433vw;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .container {
    max-width: none;
    padding: 0 4.6511627907vw;
    margin: 0;
  }
}

.container-fixed {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-pt {
  padding-top: 10vw;
}

.section-pb {
  padding-bottom: 10vw;
}

.container-lg {
  max-width: 83.4553440703vw;
  padding: 0 1.4641288433vw;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .container-lg {
    max-width: none;
    padding: 0;
    margin: 0;
  }
}

/* //全体設定 */
/* 単体クラス */
.flex-row-reverse {
  flex-direction: row-reverse;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

@media screen and (max-width: 991px) {
  .d-md-block {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .d-md-none {
    display: none;
  }
}

.d-inline-block {
  display: inline-block;
}

.text-center {
  text-align: center;
}

.vertical-middle {
  vertical-align: middle;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-5 {
  padding-top: 5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-1_5 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-1_5 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

/* //単体クラス */
/* フォントファミリー */
.mina {
  font-family: "mina", serif;
  font-weight: 400;
  font-style: normal;
}

.notosans {
  font-family: noto-sans-cjk-jp, sans-serif;
}

.tsukimi-rounded {
  font-family: "Tsukimi Rounded", system-ui;
}

.sawarabi {
  font-family: "Sawarabi Gothic", sans-serif;
}

/* //フォントファミリー */
/* フォントウェイト */
.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* //フォントウェイト */
/* フォントカラー */
.text-red {
  color: #B94137;
}

.text-white {
  color: #FFFFFF;
}

/* //フォントカラー */
/* リスト */
.list-has-num {
  list-style: decimal;
  padding-left: 2rem;
}
.list-has-num li {
  padding-left: 0.5rem;
  line-height: 1.6;
}

.list-has-num-kakko {
  list-style-type: none;
  counter-reset: cnt;
}
.list-has-num-kakko li {
  counter-increment: cnt;
}
.list-has-num-kakko li::before {
  content: "(" counter(cnt) ")";
}

.list-has-disc {
  list-style: disc;
  padding-left: 2rem;
}
.list-has-disc li {
  padding-left: 0.5rem;
  line-height: 1.6;
}

/* //リスト */
/* テーブル */
.table-default tr {
  border: 1px solid #B78A51;
}
.table-default tr th, .table-default tr td {
  padding: 0.5rem 1rem;
}
.table-default thead th:first-of-type {
  border-right: 1px solid #B78A51;
}
.table-default tbody th {
  width: 40%;
  border-right: 1px solid #B78A51;
}
.table-default tbody td {
  width: 60%;
}

/* //テーブル */
/* リンク下線 */
.link-has-underline-red {
  position: relative;
}
.link-has-underline-red::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B94137;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
}

/* //リンク下線 */
/* タイトル */
.ttl-pattern1 {
  font-family: "mina", serif;
  font-weight: 400;
  color: #B94137;
  font-size: 10.2489019034vw;
}

.ttl-pattern2 {
  font-family: "Tsukimi Rounded", system-ui;
  letter-spacing: 0.2em;
  line-height: 1.4;
  font-size: 3.074670571vw;
}
@media screen and (max-width: 991px) {
  .ttl-pattern2 {
    font-size: 8.1395348837vw;
    line-height: 1.6571428571;
  }
}

.ttl-pattern3 {
  font-family: "mina", serif;
  font-weight: 400;
  font-size: 8.78477306vw;
  color: rgba(185, 65, 55, 0.12);
  line-height: 4;
}
@media screen and (max-width: 991px) {
  .ttl-pattern3 {
    font-size: 9.3023255814vw;
    line-height: 1.3333333333;
    color: rgba(185, 65, 55, 0.4);
  }
}

.ttl-pattern4 {
  font-size: 2.635431918vw;
  line-height: 1.6666666667;
}
@media screen and (max-width: 991px) {
  .ttl-pattern4 {
    font-size: 5.5813953488vw;
    line-height: 1.6666666667;
  }
}

.ttl-pattern5 {
  font-family: "mina", serif;
  font-weight: 400;
  font-size: 12.4450951684vw;
  color: #B94137;
}
@media screen and (max-width: 991px) {
  .ttl-pattern5 {
    font-size: 10.4651162791vw;
  }
}

.ttl-pattern6 {
  font-family: "Tsukimi Rounded", system-ui;
  font-size: 2.635431918vw;
  line-height: 1.8888888889;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 991px) {
  .ttl-pattern6 {
    font-size: 6.976744186vw;
  }
}

.ttl-pattern7 {
  font-size: 2rem;
}

.sub-ttl-pattern1-ja {
  font-family: "Tsukimi Rounded", system-ui;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.2em;
  line-height: 1.25;
  font-size: 1.756954612vw;
}
@media screen and (max-width: 991px) {
  .sub-ttl-pattern1-ja {
    font-size: 4.6511627907vw;
    line-height: 1.5;
  }
}

.has-kakko {
  position: relative;
  padding-left: 1.4641288433vw;
  width: fit-content;
}
@media screen and (max-width: 991px) {
  .has-kakko {
    padding-left: 2vw;
  }
}
.has-kakko::before {
  content: "";
  width: 0.9516837482vw;
  height: 1.3909224012vw;
  background: url(../img/common/kakko-red-start.svg) no-repeat center center/contain;
  position: absolute;
  top: 0.5124450952vw;
  left: 0;
}
@media screen and (max-width: 991px) {
  .has-kakko::before {
    width: 3vw;
    height: 3.5vw;
    left: -0.5vw;
  }
}
.has-kakko::after {
  content: "";
  width: 1.0248901903vw;
  height: 1.1713030747vw;
  background: url(../img/common/kakko-red-end.svg) no-repeat center center/contain;
  position: absolute;
  bottom: 0.5124450952vw;
}
@media screen and (max-width: 991px) {
  .has-kakko::after {
    width: 3vw;
    height: 3vw;
    bottom: 1vw;
  }
}

.has-kakko--pattern1::after {
  right: 10.3953147877vw;
}
@media screen and (max-width: 991px) {
  .has-kakko--pattern1::after {
    right: 21.5vw;
    bottom: 1.5vw;
  }
}

.has-kakko--pattern2::after {
  right: 0;
}
@media screen and (max-width: 991px) {
  .has-kakko--pattern2::after {
    right: -1vw;
  }
}

/* //タイトル */
.btn-pattern1 {
  color: #B78A51;
  border: 2px solid #B78A51;
  border-radius: 100vw;
  font-size: 1.6rem;
  display: block;
  width: 30rem;
  max-width: 100%;
  padding: 1rem 0;
}
.btn-pattern1:hover {
  background-color: #B78A51;
  color: #FFFFFF;
  opacity: 1;
}

.has-double-underline {
  position: relative;
  width: fit-content;
}
.has-double-underline::before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.has-insist {
  position: relative;
}
.has-insist::before {
  content: "";
  position: absolute;
  left: 54%;
  transform: translateX(-50%);
  top: -0.7320644217vw;
}
@media screen and (max-width: 991px) {
  .has-insist::before {
    top: -4vw;
  }
}

/* 左からフェードイン用 */
.fade-in {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 2s;
}
.fade-in.fade-in-right {
  transform: translate(30px, 0);
}
.fade-in.fade-in-left {
  transform: translate(-30px, 0);
}
.fade-in.fade-in-bottom {
  transform: translate(0, 30px);
}
.fade-in.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.fade-in-from-left {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 2s;
}

.postlist-line {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
  row-gap: 4rem;
}

.postlist-line-items {
  width: 25%;
  padding: 0 2rem;
}
@media screen and (max-width: 991px) {
  .postlist-line-items {
    width: 33.3333333%;
  }
}
@media screen and (max-width: 767px) {
  .postlist-line-items {
    width: 50%;
  }
}

.postlist-line-thumbwrap img {
  border-radius: 2rem;
  width: 100%;
}

.postlist-line-date {
  margin: 1rem 0;
}

.single-content {
  margin-bottom: 10rem;
}

.child-fv {
  padding: 10vw 0;
}

.child-fv-ttl {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .child-fv-ttl {
    font-size: max(5.2083333333vw, 26px);
  }
}

.child-fv-ttl--en {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .child-fv-ttl--en {
    font-size: max(5.2083333333vw, 50px);
  }
}

@media screen and (max-width: 991px) {
  .child-fv-sub-ttl {
    font-size: 5vw;
  }
}

.child-sec-pb {
  padding-bottom: 11.7130307467vw;
}
@media screen and (max-width: 991px) {
  .child-sec-pb {
    padding-bottom: 14vw;
  }
}/*# sourceMappingURL=style-common.css.map */