@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates&family=Zen+Kaku+Gothic+New&display=swap");
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

全ページ共通

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #FDF5F9;
  font-family: "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 2px;
  line-height: 1.8;
}
@media screen and (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }
}

body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: -10%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("../images/bg_plant.png");
  background-position: top left;
  background-repeat: no-repeat;
}

*:hover,
*::before,
*::after {
  transition: 0.2s;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

文字

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
p {
  margin: 40px 0;
  letter-spacing: 1px;
  text-align: justify;
  /* スマホ */
}
@media screen and (max-width: 520px) {
  p {
    margin: 20px 0;
  }
}

a {
  color: inherit;
}

/*－－－－－－－－－－ リンクホバー時の設定 －－－－－－－－－－*/
a {
  transition: 0.2s;
}
@media (hover: hover) {
  a:hover {
    background-color: rgba(255, 254, 241, 0.8);
    opacity: 0.6;
  }
}

/* ホバー装飾の無効化 */
a:is(.globalnav *, .snslist *)::after,
.btn::after,
.pageup::after {
  display: none;
}

/*fuwaimgでの無効化 */
#fuwaimg_prev,
#fuwaimg_next {
  background: none;
}

/*－－－－－－－－－－ 見出し －－－－－－－－－－*/
h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat Alternates", "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  letter-spacing: 6px;
  line-height: 1.2;
  overflow-wrap: break-word;
}
h1 .ja,
h2 .ja,
h3 .ja,
h4 .ja,
h5 .ja {
  font-size: 0.8em;
}

/*－－－－－－－－－－ 大見出し －－－－－－－－－－*/
.headingL {
  font-size: clamp(3rem, 2.8rem + 1vw, 3.8rem);
  margin: clamp(4rem, 1.818rem + 10.91vw, 10rem) 0;
  text-align: center;
}

/*－－－－－－－－－－ 中見出し －－－－－－－－－－*/
.headingM {
  color: #f5becf;
  font-size: clamp(2.4rem, 2.28rem + 0.6vw, 3rem);
  margin: clamp(2rem, 1.8rem + 1vw, 3rem) 0;
}

/*－－－－－－－－－－ 小見出し －－－－－－－－－－*/
.headingS {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  margin: 20px 0;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.headingS::before {
  position: absolute;
  left: -2.4em;
  top: calc(50% - 0.3em);
  content: "";
  display: block;
  width: 40px;
  height: 10px;
  border-bottom: 8px dotted #f5becf;
}

/*－－－－－－－－－－ 最小見出し －－－－－－－－－－*/
.headingSS {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  margin: 20px 0;
  color: #f5becf;
}

/*－－－－－－－－－－ 文字装飾 －－－－－－－－－－*/
.right {
  text-align: right;
}

.center {
  text-align: center;
}

.marker {
  background: linear-gradient(transparent 60%, #B7DCF0 60%);
}

.label {
  display: block;
  margin: 20px 0;
  padding: 2px 12px;
  background-color: #f3f9fd;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

アイコン等

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.la,
.las {
  font-size: 1.2em;
  color: #B7DCF0;
  position: relative;
  top: 2px;
}

/* 矢印 */
.arrow {
  width: 20px;
  height: 20px;
  border: 2px solid #B7DCF0;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

入力フォーム、ボタン

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/* 入力フォーム */
input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 20px 8px 20px;
  border: 1px solid #B7DCF0;
  margin: 10px 0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

/* ボタン */
.btn {
  display: block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #B7DCF0;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 3px 10px;
  border: 1px solid #B7DCF0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  border-radius: 999px;
}
.btn:hover {
  cursor: pointer;
  background-color: #f3f9fd;
  color: #B7DCF0;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

リスト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.list,
.list-number {
  margin: 20px 0;
}

.list li {
  position: relative;
  margin-left: 16px;
}
.list li::before {
  position: absolute;
  top: calc(50% - 4px);
  left: -16px;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #B7DCF0;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/*－－－－－－－－－－ 数字付きリスト －－－－－－－－－－*/
.list-number {
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
}
.list-number li {
  text-indent: -3.4rem;
  padding-left: 3.6rem;
}
.list-number li > :not(:first-child) {
  text-indent: 0;
}

/*－－－－－－－－－－ 表リスト －－－－－－－－－－*/
.gridlist {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 0px;
}
.gridlist .gridlist__label,
.gridlist .gridlist__text {
  padding: 6px 12px 4px;
  border-bottom: dotted 8px #f3f9fd;
}
.gridlist .gridlist__label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7DCF0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}

/* スマホ */
@media screen and (max-width: 520px) {
  .gridlist {
    grid-template-columns: 1fr;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

枠組み

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.box {
  padding: 40px;
  border-top: 8px dotted #f3f9fd;
  border-bottom: 8px dotted #f3f9fd;
  /* スマホ */
}
.box > :first-child {
  margin-top: 0;
}
.box > :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .box {
    padding: 10px;
  }
}

.shape {
  position: relative;
  padding: 40px;
  margin: 60px 0;
  background-color: rgba(255, 254, 241, 0.8);
  border-radius: 80px 40px 80px 50px/45px 60px 30px 100px;
  -webkit-border-radius: 80px 40px 80px 50px/45px 60px 30px 100px;
  -moz-border-radius: 80px 40px 80px 50px/45px 60px 30px 100px;
  -ms-border-radius: 80px 40px 80px 50px/45px 60px 30px 100px;
  -o-border-radius: 80px 40px 80px 50px/45px 60px 30px 100px;
}
.shape > .headingM {
  position: absolute;
  top: -20px;
  margin-top: 0;
  max-width: calc(100vw - 60px);
}
.shape > .headingM + p {
  margin-top: 0;
}

.shape:has(.headingM) {
  margin-top: 60px;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

SNSアイコンリスト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.snslist .snslist__item a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #f3f9fd;
  border-radius: 50%;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.snslist .snslist__item a:hover {
  color: #fff;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}
.snslist .snslist__item.x:hover a {
  background-color: #000;
}
.snslist .snslist__item.instagram:hover a {
  background-color: #CF2E92;
}
.snslist .snslist__item.facebook:hover a {
  background-color: #4267b2;
}
.snslist .snslist__item.youtube:hover a {
  background-color: #DA1725;
}
.snslist .snslist__item .lab {
  margin: 6px 1px 3px 3px;
  font-size: 2rem;
}
@media screen and (max-width: 520px) {
  .snslist {
    justify-content: center;
  }
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

レイアウト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ 横並び －－－－－－－－－－*/
.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* 表示サイズを変えたい場合は200pxの部分を変更 */
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/*－－－－－－－－－－ 2カラム表示 －－－－－－－－－－*/
.--2column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

/* タブレット、スマホでは１カラム */
@media screen and (max-width: 768px) {
  .--2column {
    grid-template-columns: 1fr;
  }
}
/*－－－－－－－－－－ 左右反対 －－－－－－－－－－*/
.reverse {
  flex-direction: row-reverse;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

全体のレイアウト

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
/*－－－－－－－－－－ ヘッダー －－－－－－－－－－*/
/*－－－－－－－－－－ コンテンツ全体の横幅、余白 －－－－－－－－－－*/
.mainwrapper {
  padding: 60px 10px;
}
.mainwrapper > :first-child {
  margin-top: 0;
}

/* タブレット */
@media screen and (min-width: 521px) and (max-width: 1180px) {
  .mainwrapper {
    padding: 100px 40px;
  }
}
/* PC */
@media screen and (min-width: 1181px) {
  .mainwrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 240px 60px 100px;
  }
}
@media screen and (min-width: 1501px), print {
  .mainwrapper {
    max-width: 1160px;
  }
}
/*－－－－－－－－－－ セクション －－－－－－－－－－*/
section:not(.shape):first-of-type {
  padding-top: 0;
}

section {
  padding: 30px 0;
}
section > :first-child {
  margin-top: 0;
}
section > :last-child {
  margin-bottom: 0;
}
section section:not(.shape):first-of-type {
  padding-top: 0;
}
section section:not(.shape):last-of-type {
  padding-bottom: 0;
}

/* PC */
@media screen and (min-width: 1025px), print {
  section {
    padding: 60px 0;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メニューボタン

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.hamburger {
  position: fixed;
  top: 4px;
  right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
}
.hamburger .hamburger__line {
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #B7DCF0;
}
.hamburger .hamburger__line::before, .hamburger .hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: #B7DCF0;
}
.hamburger .hamburger__line::before {
  top: -8px;
}
.hamburger .hamburger__line::after {
  bottom: -8px;
}

/*閉じる*/
.hamburger._active .hamburger__line {
  background: transparent;
}
.hamburger._active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger._active .hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* PCで非表示 */
@media screen and (min-width: 1181px), print {
  .hamburger {
    display: none;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

メニュー

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.globalnav {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 0px 20px;
  margin: 0;
  z-index: 998;
}

.globalnav__main .globalnav__item {
  position: relative;
  font-family: "Montserrat Alternates", "Zen Kaku Gothic New", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.globalnav__main .globalnav__item a {
  display: block;
  text-decoration: none;
  padding: 8px 10px 8px;
  overflow-wrap: break-word;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.globalnav__main .globalnav__item a:hover, .globalnav__main .globalnav__item a:has(+ .globalnav__child:hover) {
  background-color: rgba(255, 254, 241, 0.8);
}
.globalnav__main .globalnav__item._has-child:hover .globalnav__child {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.2s;
  -o-transition: 0.4s;
}
.globalnav__main .globalnav__child {
  position: absolute;
  top: 100%;
  left: 0%;
  background-color: rgba(255, 254, 241, 0.8);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}

/*  タブレット、スマホでの表示 */
@media screen and (max-width: 1180px) {
  .globalnav {
    position: fixed;
    top: 0;
    left: 0;
    height: calc(100dvh - 80px);
    margin: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 254, 241, 0.8);
    opacity: 0;
    transform: translateX(100%);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.2s;
  }
  .globalnav._active {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.2s;
    -o-transition: 0.4s;
  }
  .globalnav__main {
    flex-direction: column;
  }
  .globalnav__main .globalnav__item .globalnav__child {
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    margin: 10px;
    background-color: #fff;
    padding: 10px;
    z-index: 1;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのtoggleで表示させるため非表示に*/
  }
  .globalnav__main .globalnav__item .globalnav__child.active {
    display: block;
  }
  .globalnav__main .globalnav__item .globalnav__child li a {
    color: #B7DCF0;
    padding: 10px;
  }
  .globalnav__main .globalnav__item .globalnav__child li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 254, 241, 0.8);
  }
}
/* タブレット,スマホでメニューを開いた時に白くする */
@media screen and (max-width: 1180px) {
  .mainwrapper::after {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100vw;
    height: 100dvh;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
  }
  .mainwrapper._darker::after {
    visibility: visible;
    opacity: 0.8;
    z-index: 1;
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

サブメニュー

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.submenu {
  position: fixed;
  top: 65px;
  right: 10px;
  z-index: 9;
}

.submenu__main {
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0;
}

/* 親項目のスタイル */
.submenu__item {
  position: relative;
  padding: 0;
  background-color: #FDF5F9;
}
.submenu__item a {
  display: block;
  padding: 8px 20px 8px 30px;
  text-decoration: none;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
}
.submenu__item a:hover {
  background: none;
}
.submenu__item:has(.submenu__child.active) > a {
  background: none;
}

/* 親項目の矢印 */
.submenu__item._has-child::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #B7DCF0;
  border-right: 1px solid #B7DCF0;
  z-index: 1;
  transform: rotate(135deg);
}

/* 子項目のスタイル */
.submenu__item._has-child .submenu__child {
  background-color: #FDF5F9;
  min-width: 100%;
  z-index: 9;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
}
.submenu__item._has-child .submenu__child li a {
  display: block;
  color: #000;
  padding: 8px 20px 8px 40px;
}
/* 子項目の矢印 */
.submenu__child ._has-child {
  position: relative;
}
.submenu__child ._has-child::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #B7DCF0;
  border-right: 1px solid #B7DCF0;
  z-index: 1;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

/* 孫項目のスタイル */
.submenu__item._has-child .submenu__child li._has-child .submenu__grandchild {
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
}

/* クリックで表示 */
.submenu__item._has-child .submenu__child,
.submenu__item._has-child .submenu__child li._has-child .submenu__grandchild {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
}
.submenu__item._has-child .submenu__child.active,
.submenu__item._has-child .submenu__child li._has-child .submenu__grandchild.active {
  height: auto;
  overflow: auto;
  opacity: 1;
}

/* タブレット */
@media screen and (min-width: 769px) and (max-width: 1180px) {
  .submenu {
    position: sticky;
    top: 0;
    margin-bottom: 60px;
  }
}
/* スマホ */
@media screen and (max-width: 768px) {
  .submenu {
    position: static;
    margin-bottom: 60px;
  }
  /* 親項目のスタイル */
  .submenu__main {
    justify-content: flex-start;
  }
  .submenu__main .submenu__item a {
    padding: 2px 20px 2px 30px;
  }
  .submenu__item._has-child::before {
    top: 12px;
  }
  /* 子項目のスタイル */
  .submenu__item._has-child .submenu__child li a {
    padding: 2px 20px 2px 40px;
  }
  .submenu__item._has-child .submenu__child ._has-child::before {
    top: 12px;
  }
}
/* 親メニューのみの場合の設定 */
.submenu__main:not(:has(.submenu__child)) .submenu__item > a {
  padding: 2px 20px 2px 20px;
}

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

ページUP

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
.pageup {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #f3f9fd;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  opacity: 0;
  visibility: hidden;
}
.pageup .arrow {
  border-color: #B7DCF0;
  margin-top: 10px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.pageup._active {
  opacity: 1;
  visibility: visible;
}

@media (hover: hover) {
  .pageup:hover {
    background-color: rgba(255, 254, 241, 0.8);
  }
}
/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－

フッター

－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/
footer {
  text-align: center;
  font-size: 1rem;
  padding: 20px;
}

/* PC */
@media screen and (min-width: 1181px), print {
  footer {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 4vw;
    padding: 0;
    writing-mode: vertical-rl;
  }
  footer a {
    text-decoration: overline;
  }
}