@charset "UTF-8";

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  min-width: 0;
  border-width: 0;
  border-style: solid;
}

html {
  line-height: 1.15;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  clear: both;
  height: 0;
  margin: 0;
  border-top-width: 1px;
  color: inherit;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: 700;
  text-align: left;
}

:root {
  --main-color: #8ac56d;
  --sub-color: #f8c337;
  --line-color: #e0e0e0;
  --text-color: #444444;
  --bg-color: #f1f8ed;
  --bg-gray: #f7f7f7;
  --selection-color: rgb(117, 95, 82,10%);
  --base-container: 1200px;
}

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
@media print {
  html {
    print-color-adjust: exact;
  }

  body {
    zoom: 80%;
  }

  .fixed {
    position: inherit !important;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  position: relative;
  background: var(--bg-color);
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  word-break: break-all;
  word-wrap: break-word;
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 14px;
  }
}

a {
  color: var(--main-color);
  transition: background 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
}

a:hover {
  color: var(--sub-color);
}

a[href="tel:準備中"] {
  pointer-events: none;
}

::selection {
  background-color: var(--selection-color);
}

::-moz-selection {
  background-color: var(--selection-color);
}

strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
  vertical-align: top;
}

/* ==================================================================================================================================

  *表示切り替え

================================================================================================================================== */
/* --------------------------------------------------
PC
-------------------------------------------------- */
.u-pc {
  display: block !important;
}

@media screen and (max-width: 1000px) {
  .u-pc {
    display: none !important;
  }
}

/* --------------------------------------------------
1200px以下
-------------------------------------------------- */
.u-sp--1200 {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .u-sp--1200 {
    display: block !important;
  }
}

/* --------------------------------------------------
SP
-------------------------------------------------- */
.u-sp {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  .u-sp {
    display: block !important;
  }
}

/* --------------------------------------------------
解除系
-------------------------------------------------- */
.u-clear {
  clear: both !important;
}

.u-clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* ==================================================================================================================================

  *書式

================================================================================================================================== */
.u-bold {
  font-weight: 700 !important;
}

.u-left {
  text-align: left !important;
}

.u-center {
  text-align: center !important;
}

.u-right {
  text-align: right !important;
}

.u-maincolor {
  color: var(--main-color);
}

.u-subcolor {
  color: var(--sub-color);
}

.u-caution {
  color: #c52b2b;
}

.u-indent {
  position: relative;
  display: flex;
  font-size: 100%;
}

.u-indent__sign {
  flex-shrink: 0;
}

.u-yellowline {
  text-decoration: underline;
  text-decoration-color: rgb(255, 245, 157);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.5em;
  text-underline-offset: -0.175em;
}

/* ==================================================================================================================================

  *Margin

================================================================================================================================== */
.u-u-mtem {
  margin-top: 2em !important;
}

.u-u-mbem {
  margin-bottom: 1em !important;
}

.u-mt00 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 5pc !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr00 {
  margin-right: 0 !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr80 {
  margin-right: 5pc !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb00 {
  margin-bottom: 0 !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 5pc !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml00 {
  margin-left: 0 !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml80 {
  margin-left: 5pc !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

/* ==================================================================================================================================

  *Padding

================================================================================================================================== */
.u-pt00 {
  padding-top: 0 !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt80 {
  padding-top: 5pc !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pr80 {
  padding-right: 5pc !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb00 {
  padding-bottom: 0 !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pb80 {
  padding-bottom: 5pc !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl00 {
  padding-left: 0 !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-pl80 {
  padding-left: 5px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

/* ==================================================================================================================================

  *header

================================================================================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 400px;
  padding: 50px 30px 50px 35px;
}

@media screen and (max-width: 1400px) {
  .l-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
  }
}

.l-header__logo {
  margin-top: 10px;
  padding: 0 20px;
}

.l-header__logo a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 100%;
}

@media screen and (max-width: 1400px) {
  .l-header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 60px;
    margin: 0;
    padding: 10px 15px;
    text-align: center;
  }

  .l-header__logo a {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
  }

  .l-header__logo img {
    width: fit-content;
    height: 100%;
  }
}

.l-header__logo-text {
  display: block;
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.65;
}

.l-header__logo-text--big {
  font-size: 32px;
}

@media screen and (max-width: 1400px) {
  .l-header__logo-text {
    font-size: 18px;
    line-height: 1.4;
  }

  .l-header__logo-text--big {
    font-size: 24px;
  }
}

/* ==================================================================================================================================

  *nav

================================================================================================================================== */
body.is-active {
  overflow: hidden;
}

.l-nav {
  display: block;
  margin: 30px auto 0;
  padding: 35px 35px 40px;
  background: #ffffff;
  border-radius: 40px;
}

@media screen and (max-width: 1400px) {
  .l-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 100px 35px 40px;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    padding: 70px 25px 40px;
  }
}

.l-nav__list {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.l-nav__title-en {
  display: block;
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  font-optical-sizing: auto;
}

.l-nav__title-jp {
  position: relative;
  z-index: 1;
  padding: 0 0 0 18px;
  color: var(--text-color);
  font-size: 17px;
}

.l-nav__title-jp::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

@media screen and (max-width: 768px) {
  .l-nav__title-jp {
    font-size: 16px;
  }

  .l-nav__title-jp::before {
    width: 5px;
    height: 5px;
  }
}

.l-nav__link:hover .l-nav__title-jp:before {
  background: var(--sub-color);
}

.l-nav-button {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-top: 40px;
}

.l-nav-button__link {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  border-radius: 300px;
  color: #ffffff;
  font-size: 16px;
  transition: background 0.3s, color 0.3s;
}

.l-nav-button__link--first {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

.l-nav-button__link--first:hover {
  background: #ffffff;
  color: var(--main-color);
}

.l-nav-button__link--first::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 30px;
  background: #ffffff;
  -webkit-mask: url(../images/icon_button_first.svg) no-repeat center/20px 20px;
  mask: url(../images/icon_button_first.svg) no-repeat center/20px 20px;
  transition: background 0.3s;
}

.l-nav-button__link--first:hover::before {
  background: var(--main-color);
}

.l-nav-button__link--reserve {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
}

.l-nav-button__link--reserve:hover {
  background: #ffffff;
  color: var(--sub-color);
}

.l-nav-button__link--reserve::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 30px;
  background: #ffffff;
  -webkit-mask: url(../images/icon_button_reserve.svg) no-repeat center/20px 20px;
  mask: url(../images/icon_button_reserve.svg) no-repeat center/20px 20px;
  transition: background 0.3s;
}

.l-nav-button__link--reserve:hover::before {
  background: var(--sub-color);
}

.l-nav-button__link--contact {
  background: #74c9ff;
  border: 1px solid #74c9ff;
}

.l-nav-button__link--contact:hover {
  background: #ffffff;
  color: #74c9ff;
}

.l-nav-button__link--contact::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  margin-right: 30px;
  background: #ffffff;
  -webkit-mask: url(../images/icon_button_contact.svg) no-repeat center/20px 18px;
  mask: url(../images/icon_button_contact.svg) no-repeat center/20px 18px;
  transition: background 0.3s;
}

.l-nav-button__link--contact:hover::before {
  background: #74c9ff;
}

/* ==================================================================================================================================

  *hamburger

================================================================================================================================== */
/* --------------------------------------------------
ハンバーガーボタン
-------------------------------------------------- */
.js-hamburger {
  display: none;
}

@media screen and (max-width: 1400px) {
  .js-hamburger {
    position: relative;
    z-index: 100;
    display: block;
    width: 80px;
    min-width: 80px;
    height: 80px;
    background: var(--main-color);
    border-radius: 0 0 0 20px;
    color: #ffffff;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
}
@media screen and (max-width: 768px) {
  .js-hamburger {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 0 0 0 15px;
  }
}

/* --------------------------------------------------
ボランのライン
-------------------------------------------------- */
.js-hamburger__line {
  position: absolute;
  right: 0;
  left: 0;
  width: 35px;
  height: 2px;
  margin: auto;
  background: #ffffff;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.3s;
}

.js-hamburger__line:nth-of-type(1) {
  top: 25px;
}

.js-hamburger__line:nth-of-type(2) {
  top: 33px;
}

@media screen and (max-width: 768px) {
  .js-hamburger__line {
    width: 30px;
    height: 2px;
  }

  .js-hamburger__line:nth-of-type(1) {
    top: 15px;
  }

  .js-hamburger__line:nth-of-type(2) {
    top: 23px;
  }
}

/* ----- 展開時 ----- */
.is-active .js-hamburger__line:nth-of-type(1) {
  top: 27px;
  transform: rotate(205deg);
}

.is-active .js-hamburger__line:nth-of-type(2) {
  top: 27px;
  transform: rotate(-205deg);
}

@media screen and (max-width: 768px) {
  /* ----- 展開時 ----- */
  .is-active .js-hamburger__line:nth-of-type(1) {
    top: 19px;
    transform: rotate(205deg);
  }

  .is-active .js-hamburger__line:nth-of-type(2) {
    top: 19px;
    transform: rotate(-205deg);
  }
}

/* --------------------------------------------------
ボタンラベル
-------------------------------------------------- */
.js-hamburger__text {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto;
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
  font-optical-sizing: auto;
}

.js-hamburger__text--open {
  opacity: 1;
}

.js-hamburger__text--close {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .js-hamburger__text {
    bottom: 15px;
    font-size: 11px;
  }
}

/* ----- 展開時 ----- */
.is-active .js-hamburger__text--open {
  opacity: 0;
}

.is-active .js-hamburger__text--close {
  opacity: 1;
}

/* ==================================================================================================================================

  *レイアウト

================================================================================================================================== */
/* --------------------------------------------------
ボディ
-------------------------------------------------- */
.l-body {
  padding: 40px 30px;
}

@media screen and (max-width: 1000px) {
  .l-body {
    padding: 15px 10px;
  }
}

.l-body__container {
  margin-left: 370px;
}

.l-container {
  background: #ffffff;
  border-radius: 60px;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  .l-container {
    border-radius: 30px;
  }
}

.l-coming {
  padding: 100px 0;
  font-size: 110%;
  line-height: 2.5;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .l-body__container {
    margin: 0;
  }
}

/* --------------------------------------------------
セクション
-------------------------------------------------- */
.l-section:not(:last-child) {
  margin-bottom: 100px;
}

/* --------------------------------------------------
インナー
-------------------------------------------------- */
.l-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.l-inner--1400 {
  max-width: 1500px;
}

.l-inner--1500 {
  max-width: 1600px;
}

@media screen and (max-width: 900px) {
  .l-inner {
    padding: 0 20px;
  }
}

/* --------------------------------------------------
テキストマージン
-------------------------------------------------- */
.l-text > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

.l-text > *:not(h1, h2, h3, h4, h5):last-child {
  margin: 0;
}

/* ==================================================================================================================================

  *ページトップ

================================================================================================================================== */
.js-pagetop {
  position: fixed;
  right: 150px;
  bottom: 40px;
  z-index: 50;
  display: none;
}

@media screen and (max-width: 900px) {
  .js-pagetop {
    right: 15px;
    bottom: 70px;
  }
}

/* --------------------------------------------------
インナー
-------------------------------------------------- */
.js-pagetop_inner {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 0 0 5px;
  background: rgb(77, 148, 166);
  color: #ffffff;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.js-pagetop_inner:hover {
  background: rgb(53, 111, 126);
}

@media screen and (max-width: 900px) {
  .js-pagetop_inner {
    width: 50px;
    height: 50px;
    margin: auto;
    padding: 0 0 1px;
  }
}

/* --------------------------------------------------
テキスト
-------------------------------------------------- */
.js-pagetop__text {
  font-size: 16px;
}

.js-pagetop__text::before {
  content: "\f106";
  display: block;
  margin-bottom: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .js-pagetop__text {
    font-size: 12px;
  }

  .js-pagetop__text::before {
    margin-bottom: 2px;
    font-size: 11px;
  }
}

/* ==================================================================================================================================

  *footer

================================================================================================================================== */
.l-footer {
  position: relative;
  width: 100%;
  margin-top: 50px;
  padding: 100px 0;
  background: #ffffff;
  border-radius: 60px;
}

@media screen and (max-width: 1000px) {
  .l-footer {
    margin-top: 50px;
    padding: 50px 0;
    border-radius: 30px;
  }
}

.l-footer-news__inner {
  position: relative;
  z-index: 1;
}

.l-footer-news__inner::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 100px;
  z-index: -1;
  display: block;
  width: 388px;
  height: 74px;
  background: url(../images/news_bird.png) no-repeat center/cover;
}

@media screen and (max-width: 1000px) {
  .l-footer-news__inner {
    padding: 0 50px;
  }

  .l-footer-news__inner::before {
    content: "";
    position: absolute;
    top: 50px;
    right: 30px;
    z-index: -1;
    display: block;
    width: 250px;
    height: 47px;
    background: url(../images/news_bird.png) no-repeat center/cover;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-news__inner {
    padding: 0 20px;
  }
}

.l-news__title {
  margin-bottom: 35px;
}

.l-footer-news__box {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 90px;
}

@media screen and (max-width: 1400px) {
  .l-footer-news__box {
    gap: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer-news__box {
    flex-flow: column;
    gap: 5px;
  }
}

.l-footer-news__left {
  flex-shrink: 0;
}

.l-footer-news-category__item {
  position: relative;
  z-index: 1;
  min-width: 280px;
  padding: 20px 30px 20px 50px;
  border-bottom: 1px solid var(--line-color);
  color: #d7d7d7;
  font-size: 20px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.3s;
}

.l-footer-news-category__item:hover {
  color: #9e9e9e;
}

.l-footer-news-category__item.is-active {
  color: var(--text-color);
}

@media screen and (max-width: 1000px) {
  .l-footer-news-category__item {
    position: relative;
    z-index: 1;
    min-width: 280px;
    padding: 15px 20px 15px 35px;
    border-bottom: 1px solid var(--line-color);
    color: #d7d7d7;
    font-size: 16px;
    letter-spacing: 0.15em;
  }
}

.l-footer-news-category__dot {
  position: absolute;
  top: 39px;
  left: 10px;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

@media screen and (max-width: 1000px) {
  .l-footer-news-category__dot {
    top: 29px;
    left: 10px;
    width: 6px;
    height: 6px;
  }
}

.l-news__button {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .l-news__button {
    margin-top: 40px;
  }
}

.l-footer-news__right {
  width: 100%;
  padding-top: 25px;
}

.l-footer-news-item:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (max-width: 1000px) {
  .l-footer-news-item:not(:last-child) {
    margin-bottom: 15px;
  }
}

.l-footer-news-item__link {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 50px;
  padding: 23px 80px 27px 60px;
  background: #fbfbfb;
  border-radius: 1000px;
  color: var(--text-color);
}

.l-footer-news-item__link:hover {
  background: #f6f6f6;
  color: var(--text-color);
}

.l-footer-news-item__link i {
  position: absolute;
  top: calc(50% - 1px);
  right: 40px;
  font-size: 17px;
  line-height: 1;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.l-footer-news-item__link:hover i {
  right: 37px;
}

@media screen and (max-width: 1000px) {
  .l-footer-news-item__link {
    flex-flow: column;
    gap: 5px;
    padding: 15px 80px 15px 30px;
    background: #fbfbfb;
    border-radius: 15px;
    color: var(--text-color);
  }

  .l-footer-news-item__link::after {
    right: 20px;
    font-size: 14px;
  }

  .l-footer-news-item__link:hover::after {
    right: 15px;
  }
}

.footer-news-item__date {
  flex-shrink: 0;
}

.l-footer-news-item__title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.l-footer-news__list {
  display: none;
}

.l-footer-news__list.is-active {
  display: block;
}

.l-footer-news__list--new .l-footer-news-item__link:hover {
  color: var(--main-color);
}

.l-footer-news__list--new .l-footer-news-item__link::after {
  color: var(--main-color);
}

.l-footer-contact {
  margin-top: 80px;
}

@media screen and (max-width: 1000px) {
  .l-footer-contact {
    margin-top: 50px;
  }
}

.l-footer-contact__container {
  padding: 70px 90px 60px;
  background: linear-gradient(to right, #9ed085, var(--sub-color));
  border-radius: 50px;
}

@media screen and (max-width: 1000px) {
  .l-footer-contact__container {
    padding: 50px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-contact__container {
    padding: 50px 20px;
    border-radius: 30px;
  }
}

.l-footer-contact__title {
  margin: 0 auto 20px;
  color: #ffffff;
  line-height: 1.65;
}

.l-footer-contact__title h2 {
  font-size: 32px;
}

.l-footer-contact__title span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 5px;
  padding: 0 0 0 30px;
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  font-optical-sizing: auto;
}

.l-footer-contact__title span::before {
  content: "-";
  position: absolute;
  top: 7px;
  left: 5px;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .l-footer-contact__title {
    margin: 0 auto 35px;
  }

  .l-footer-contact__title h2 {
    font-size: 24px;
  }

  .l-footer-contact__title span {
    padding: 0 0 0 25px;
    font-size: 16px;
  }

  .l-footer-contact__title span::before {
    top: 5px;
    left: 5px;
  }
}

.l-footer-contact__text {
  color: #ffffff;
  font-size: 18px;
}

.l-footer-contact__text--tel {
  margin-top: 10px;
  padding: 0 0 0 50px;
  font-size: 22px;
}

@media screen and (max-width: 1000px) {
  .l-footer-contact__text {
    color: #ffffff;
    font-size: 15px;
  }

  .l-footer-contact__text--tel {
    padding: 0 0 0 15px;
    font-size: 17px;
  }
}

.l-footer-contact__inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

@media screen and (max-width: 1530px) {
  .l-footer-contact__inner {
    flex-flow: wrap;
    gap: 30px;
    gap: 20px;
  }
}

.l-footer-contact__box {
  width: 100%;
}

.l-footer-contact__button-link {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  height: 100%;
  padding: 20px 30px 20px 50px;
  background: #ffffff;
  border-radius: 1000px;
  color: var(--text-color);
  line-height: 1.65;
}

.l-footer-contact__button-link::before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
}

.l-footer-contact__button-link--tel {
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  font-optical-sizing: auto;
}

.l-footer-contact__button-link--tel::before {
  background: url(../images/footer_button_tel.svg) no-repeat center/25px 25px, var(--main-color);
}

.l-footer-contact__button-link--tel:hover {
  color: var(--main-color);
}

.l-footer-contact__button-link--mail {
  font-size: 24px;
}

.l-footer-contact__button-link--mail::before {
  background: url(../images/footer_button_mail.svg) no-repeat center/25px 25px, var(--sub-color);
}

@media screen and (max-width: 1000px) {
  .l-footer-contact__button-link {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
    padding: 15px 15px;
    background: #ffffff;
    border-radius: 1000px;
    color: var(--text-color);
    line-height: 1.65;
  }

  .l-footer-contact__button-link::before {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }

  .l-footer-contact__button-link--tel {
    font-family: "Montserrat", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    font-optical-sizing: auto;
  }

  .l-footer-contact__button-link--tel::before {
    background: url(../images/footer_button_tel.svg) no-repeat center/15px 15px, var(--main-color);
  }

  .l-footer-contact__button-link--tel:hover {
    color: var(--main-color);
  }

  .l-footer-contact__button-link--mail {
    font-size: 15px;
  }

  .l-footer-contact__button-link--mail::before {
    background: url(../images/footer_button_mail.svg) no-repeat center/15px 15px, var(--sub-color);
  }
}

.l-footer-nav__inner {
  display: flex;
  flex-flow: wrap;
  gap: 100px;
  margin-top: 100px;
}

@media screen and (max-width: 1000px) {
  .l-footer-nav__inner {
    display: flex;
    flex-flow: wrap;
    gap: 30px;
    margin-top: 70px;
    padding: 0 55px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-nav__inner {
    padding: 0 22px;
  }
}

.l-footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: fit-content;
}

.l-footer-nav__title-en {
  display: block;
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  font-optical-sizing: auto;
}

.l-footer-nav__title-jp {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0 0 18px;
  color: var(--text-color);
  font-size: 17px;
}

.l-footer-nav__title-jp::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--main-color);
  border-radius: 50%;
  transition: background 0.2s;
}

@media screen and (max-width: 1000px) {
  .l-footer-nav__title-jp {
    padding: 0 0 0 16px;
    font-size: 15px;
  }

  .l-footer-nav__title-jp::before {
    top: 14px;
    width: 5px;
    height: 5px;
  }
}

.l-footer-nav__link:hover .l-footer-nav__title-jp:before {
  background: var(--sub-color);
}

.l-footer-nav__box {
  width: fit-content;
}

.l-footer-nav-under__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 30px;
  margin-top: 20px;
  padding: 0 0 0 20px;
}

.l-footer-nav-under__list--two {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1000px) {
  .l-footer-nav-under__list {
    gap: 15px 25px;
    margin-top: 15px;
    padding: 0 0 0 10px;
  }

  .l-footer-nav-under__list--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer-nav-under__link {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0 0 15px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.65;
}

.l-footer-nav-under__link::before {
  content: "-";
  position: absolute;
  top: 4px;
  left: 0;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .l-footer-nav-under__link {
    padding: 0 0 0 13px;
    font-size: 13px;
  }
}

.l-footer-copylight {
  max-width: 1400px;
  margin-top: 100px;
  padding: 0 50px;
  font-size: 17px;
  text-align: right;
}

@media screen and (max-width: 1000px) {
  .l-footer-copylight {
    margin-top: 40px;
    padding: 0 50px;
    font-size: 12px;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-copylight {
    padding: 0 30px;
  }
}

/* ==================================================================================================================================

  *テーブル

================================================================================================================================== */
/* --------------------------------------------------
基本設定
-------------------------------------------------- */
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

table th, table td {
  width: auto;
  padding: 10px;
  border: 1px solid var(--line-color);
  text-align: center;
  vertical-align: middle;
}

table th {
  background: var(--bg-color);
}

table th p, table td p {
  margin: 0 !important;
}

/* --------------------------------------------------
Scrollhint
-------------------------------------------------- */
.scrolltable {
  overflow: visible !important;
}

@media screen and (max-width: 900px) {
  .scrolltable {
    overflow: auto !important;
  }

  .scrolltable > table {
    min-width: 800px;
    min-height: 170px;
    background: none !important;
  }

  .scroll-hint-icon {
    top: 50% !important;
    left: 50% !important;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 135px !important;
    height: 100px !important;
    transform: translate(-50%, -50%) !important;
  }
}

/* ==================================================================================================================================

  *メインボタン

================================================================================================================================== */
/* --------------------------------------------------
ボタンラッパー
-------------------------------------------------- */
.c-buttun__wrapper {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.c-buttun__wrapper--center {
  justify-content: center;
}

/* --------------------------------------------------
メインボタン
-------------------------------------------------- */
.c-button > * {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 40px 14px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 300px;
  color: #ffffff;
  font-size: 16px;
  transition: background 0.3s, border 0.3s, color 0.3s;
}

.c-button > *:hover {
  background: #ffffff;
  color: var(--main-color);
}

.c-button > *::after {
  content: "\f101";
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.c-button > *:hover::after {
  right: 12px;
}

.c-button--white > * {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: var(--main-color);
}

.c-button--white > *:hover {
  color: var(--sub-color);
}

.c-button--yellow > * {
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #ffffff;
}

.c-button--yellow > *:hover {
  background: #ffffff;
  color: var(--sub-color);
}

@media screen and (max-width: 1000px) {
  .c-button > * {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 40px 14px;
    background: var(--main-color);
    border-radius: 300px;
    color: #ffffff;
    font-size: 14px;
    transition: background 0.3s, border 0.3s, color 0.3s;
  }

  .c-button > *:hover {
    background: #ffffff;
    color: var(--main-color);
  }

  .c-button > *::after {
    content: "\f101";
    font-size: 10px;
  }

  .c-button--white > * {
    background: #ffffff;
    color: var(--main-color);
  }

  .c-button--white > *:hover {
    color: var(--sub-color);
  }

  .c-button--yellow > * {
    background: var(--sub-color);
    border: 1px solid var(--sub-color);
    color: #ffffff;
  }

  .c-button--yellow > *:hover {
    background: #ffffff;
    color: var(--sub-color);
  }
}

/* ==================================================================================================================================

  *検索フォーム

================================================================================================================================== */
.c-search__form {
  z-index: 2;
  display: block;
}

.c-search__form label {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  background: #f2f2f2;
  border-radius: 300px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.c-search__form--header label {
  background: rgba(255, 255, 255, 0.2);
}

.c-search__form--nav label {
  background: rgb(255, 255, 255);
}

.c-search__text {
  width: 100%;
  padding: 14px 20px 15px 45px;
  border-radius: 300px;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.c-search__text--header {
  padding: 9px 20px 10px 45px;
  color: #ffffff;
}

.c-search__text--header::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.c-search__btn {
  position: absolute;
  top: 49%;
  left: 20px;
  font-size: 13px;
  transform: translateY(-50%);
}

.c-search__btn--header {
  color: rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------
ベース設定
-------------------------------------------------- */
.l-inner > *:not(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 2.5em;
}

.l-inner > *:not(h1, h2, h3, h4, h5, h6):last-child {
  margin-bottom: 0;
}

.c-title-h2 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: 180px;
  padding: 0 0 0 20px;
}

.c-title-h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 274px;
  height: 180px;
  background: url(../images/title_circle.png) no-repeat center/cover;
}

.c-title-h2 .-jp {
  font-size: 32px;
  letter-spacing: 0.2em;
}

.c-title-h2 .-jp .-num {
  display: inline-block;
  padding: 0 10px;
  color: var(--main-color);
  font-size: 150%;
  line-height: 1;
}

.c-title-h2 .-en {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0 0 25px;
  font-family: "Montserrat", serif;
  font-style: normal;
  font-weight: 500;
  color: var(--main-color);
  font-size: 20px;
  font-optical-sizing: auto;
}

.c-title-h2 .-en::before {
  content: "-";
  position: absolute;
  top: 10px;
  left: 0;
  line-height: 1;
}

@media screen and (max-width: 1000px) {
  .c-title-h2 {
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 120px;
    padding: 0 0 0 10px;
  }

  .c-title-h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 182px;
    height: 120px;
    background: url(../images/title_circle.png) no-repeat center/cover;
  }

  .c-title-h2 .-jp {
    font-size: 24px;
    letter-spacing: 0.2em;
  }

  .c-title-h2 .-jp .-num {
    display: inline-block;
    padding: 0 10px;
    color: var(--main-color);
    font-size: 130%;
  }

  .c-title-h2 .-en {
    padding: 0 0 0 20px;
    font-size: 16px;
  }

  .c-title-h2 .-en::before {
    content: "-";
    position: absolute;
    top: 8px;
    left: 0;
    line-height: 1;
  }
}

.c-title-h2--white::before {
  background: url(../images/title_circle_white.png) no-repeat center/cover;
}

.c-title-h2--white .-jp {
  color: #ffffff;
}

.c-title-h2--white .-en {
  color: #ffffff;
}
