@charset "UTF-8";

.main-container {
  --white-color: #fff;
  --black-color: #000;
  --text-color: #222222;
  --c-white: #fff;
  --c-orange: #ff7800;
  --bg-green: #effbe6;
  --main-orange: #e09001;
  --bg-muchousei-color: #f1f4f5;
  --muchousei-color: #113c83;
  --bg-chousei-color: #f3f8e4;
  --chousei-color: #007d0c;
  --bg-tonyu-color: #fbf7ea;
  --tonyu-color: #9b7b0a;
  --title-color: #007d0c;
  --button-color: #0b6904;
  --strong-color: #0dad05;
  --strong-color-02: #f26738;
  --table-border-color: #a2cb28;
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-zen-maru: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-montserrat-alternates: "Montserrat Alternates", serif;
  --font-yu-gothic: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;

  --font: 16;
  --page-font: 16;
}

@media all and (min-width: 1024px) and (max-width: 1260px) {
  .main-container {
    /* --font: 15.5;
    --page-font: 15.5; */
  }
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .main-container {
    --font: 15;
    --page-font: 15;
  }
  .owned-section .top-slide-btn-controller {
    transform: translateX(calc(501 / var(--page-font) * 1rem)) translateY(calc(80 / var(--page-font) * 1rem)) !important;
  }
}

@media all and (min-width: 768px) and (max-width: 936px) {
  .main-container {
    --font: 24.5;
    --page-font: 24.5;
  }
  .top-header,
  .l-section__inner,
  .mainvisual__inner {
    max-width: 90vw !important;
  }
}

@media all and (max-width: 767px) {
  .main-container {
    --font: 16;
    --page-font: 16;
  }
}

@media all and (max-width: 350px) {
  .main-container {
    --font: 18.5;
    --page-font: 18.5;
  }
}

.main-container {
  overflow: hidden;
  color: var(--text-color);
  font-family: var(--font-yu-gothic);
}
/* ==========================================================================
  ELEMENT RESET
========================================================================== */
.main-container ol,
.main-container ul,
.main-container dl {
  margin-top: 0;
  margin-bottom: 0;
}
.main-container dd {
  margin-left: 0;
}
.main-container ol,
.main-container ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.main-container a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.main-container a {
  outline: 0;
}
.main-container a:focus,
.main-container button:focus {
  outline: 0;
}
.main-container em {
  font-style: normal;
}
.main-container figure {
  margin: 0;
}
.main-container table {
  border-collapse: collapse;
}
.main-container button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.main-container button:focus {
  outline: none;
}
.main-container input,
.main-container button,
.main-container select,
.main-container textarea {
  line-height: inherit;
}
.main-container textarea {
  resize: vertical;
}
.main-container fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.main-container legend {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  line-height: inherit;
}
.main-container hr {
  margin: 0;
}
.main-container img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.main-container sup {
  font-size: 60%;
}

/* --------------------------------------------------------------------------
  非表示
-------------------------------------------------------------------------- */
/* PCで非表示 */
@media all and (min-width: 1025px), print {
  .u-hide-pc {
    display: none;
  }
}
/* PC、タブレットで非表示 */
@media all and (min-width: 768px), print {
  .u-hide-tab-pc {
    display: none;
  }
}
/* タブレットのみ非表示 */
@media all and (min-width: 768px) and (max-width: 1024px) {
  .u-hide-tab {
    display: none;
  }
}
/* SPで非表示 */
@media all and (max-width: 767px) {
  .u-hide-sp {
    display: none;
  }
}
/* --------------------------------------------------------------------------
  行揃え
-------------------------------------------------------------------------- */
.u-center {
  text-align: center;
}
/* TAB,PCのみテキストセンター */
@media all and (min-width: 768px), print {
  .u-center-tab-pc {
    text-align: center;
  }
}
/* SPのみテキストセンター */
@media all and (max-width: 767px) {
  .u-center-sp {
    text-align: center;
  }
}

.u-left {
  text-align: left;
}
/* TAB,PCのみテキストセンター */
@media all and (min-width: 768px), print {
  .u-left-tab-pc {
    text-align: left;
  }
}
/* SPのみテキストセンター */
@media all and (max-width: 767px) {
  .u-left-sp {
    text-align: left;
  }
}

.u-right {
  text-align: right;
}
/* TAB,PCのみテキストセンター */
@media all and (min-width: 768px), print {
  .u-right-tab-pc {
    text-align: right;
  }
}
/* SPのみテキストセンター */
@media all and (max-width: 767px) {
  .u-right-sp {
    text-align: right;
  }
}
.u-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}
.u-combine {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
}
/* --------------------------------------------------------------------------
  強調
-------------------------------------------------------------------------- */
.u-bold {
  font-weight: 700;
}
.u-black {
  font-weight: 900;
}

.u-strong {
  color: var(--strong-color);
  font-weight: 700;
}
.u-strong-02 {
  color: var(--strong-color-02);
  font-weight: 700;
}
.u-question {
  font-size: calc(32 / var(--page-font) * 1rem);
  transform: rotate(10deg);
  display: inline-block;
}

@media all and (max-width: 767px) {
  .u-question {
    font-size: calc(24 / var(--page-font) * 1rem);
  }
}

/* --------------------------------------------------------------------------
  フォント
-------------------------------------------------------------------------- */
.main-container button,
.main-container input,
.main-container optgroup,
.main-container select,
.main-container textarea {
  font-family: var(--font-noto-sans);
}
.main-container h1,
.main-container h2,
.main-container h3,
.main-container h4,
.main-container h5,
.main-container h6 {
  font-family: var(--font-yu-gothic);
}

.u-font-noto-sans {
  font-family: var(--font-noto-sans);
}

.u-font-zen-maru {
  font-family: var(--font-zen-maru);
}

.u-font-montserrat-alternates {
  font-family: var(--font-montserrat-alternates);
}

.u-font-yu-gothic {
  font-family: var(--font-yu-gothic);
}

.u-space {
  letter-spacing: -3px;
}

/* --------------------------------------------------------------------------
  ROOT FONT SIZE
-------------------------------------------------------------------------- */
body {
  font-size: 1rem;
}

.c-bg-green-box {
  position: relative;
}
.c-bg-green-box-bg {
  background-color: var(--bg-green);
  background-image: url(../img/common/bg_leaf_01_pc.png);
  background-size: calc(550 / var(--page-font) * 1rem) auto;
  background-position: right bottom;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: calc(220 / var(--page-font) * 1rem);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  background-blend-mode: multiply;
}
.c-bg-green-box.--type02 {
  padding-top: calc(32 / var(--page-font) * 1rem);
}
.c-bg-green-box.--type02 .c-bg-green-box-bg {
  top: calc(60 / var(--page-font) * 1rem);
}
@media all and (min-width: 768px) and (max-width: 1440px) {
  .c-bg-green-box-bg {
    /* background-size: calc(550 / 1440 * 100vw) auto; */
  }
}
@media all and (max-width: 767px) {
  .c-bg-green-box-bg {
    background-image: url(../img/common/bg_leaf_01_sp.png);
    background-size: calc(600 / 750 * 100vw) auto;
    background-position: top calc(-75 / 750 * 100vw) left calc(-35 / 750 * 100vw);
    height: calc(750 / 750 * 100vw);
  }
  .c-bg-green-box-bg:before {
  }
  .c-bg-green-box.--type02 {
    padding-top: calc(0 / 750 * 100vw);
  }
  .c-bg-green-box.--type02 .c-bg-green-box-bg {
    top: calc(40 / 750 * 100vw);
  }
}

/* --------------------------------------------------------------------------
  見出し
-------------------------------------------------------------------------- */
/* タイトル */
@media all and (min-width: 768px), print {
  .c-section-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .c-section-title__inner {
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 767px) {
  .c-section-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .c-section-title__inner {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --------------------------------------------------------------------------
  フッターのなみなみ
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .gfooter::after {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(192 / var(--font) * 1rem);
    -webkit-mask: url("/assets_v2/img/top/deco_bg.svg") no-repeat center / calc(2560 / var(--font) * 1rem);
    mask: url("/assets_v2/img/top/deco_bg.svg") no-repeat center / calc(2560 / var(--font) * 1rem);
    background: #d8f4ce;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-48%) scale(1.05);
    margin-top: calc(-130 / var(--font) * 1rem);
    z-index: -2;
  }
}

@media all and (max-width: 767px) {
  .gfooter-wrap {
    overflow-x: hidden;
  }
  .gfooter__inner {
    margin-top: calc(36 / 375 * 100vw) !important;
  }
  .gfooter::after {
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(48.5 / 375 * 100vw);
    -webkit-mask: url(/assets_v2/img/top/deco_bg_sp.svg) no-repeat center bottom / 100vw;
    mask: url(/assets_v2/img/top/deco_bg_sp.svg) no-repeat center bottom / 100vw;
    background: #d8f4ce;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-48%) scale(1.05);
    margin-top: calc(-31 / var(--font) * 1rem);
    z-index: -2;
  }
}

/* --------------------------------------------------------------------------
  FADE-IN
-------------------------------------------------------------------------- */
.fadein-contents {
  opacity: 0;
  transform: translateY(calc(40 / var(--page-font) * 1rem));
  transition: all 0.7s ease;
}
.fadein-contents.fadein-active {
  opacity: 1;
  transform: translateY(0);
}
