@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

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

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-green: #adb44a;
  --color-lightgreen: #d6da8d;
  --color-yellow: #ecb42d;
  --color-lightyellow: #ffef99;
  --color-blue: #5b96b4;
  --color-lightblue: #a8cbdf;
  --color-purple: #d2a0d3;
  --color-lightpurple: #f7d9f5;
  --color-gray: #afafaf;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bound: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-jp: "Noto Sans JP","游明朝","YuMincho","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ 明朝","ＭＳ Ｐ明朝",serif;
  --font-other: "UoqMunThenKhung","游明朝","YuMincho","ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ 明朝","ＭＳ Ｐ明朝",serif;
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  font-size: 0.625em;
}

body {
  font-weight: 400;
  font-family: var(--font-jp);
  color: var(--color-black);
}

h2,
h3 {
  font-weight: 400;
}

.svg-symbol {
  display: none;
}

a {
  text-decoration: none;
}

.p-wrap {
  position: relative;
  overflow: hidden;
}

.l-header {
  opacity: 0;
  transition: opacity 0.7s var(--ease-main), transform 0.7s var(--ease-main);
}
.is-load .l-header {
  opacity: 1;
}

.l-header-nav {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: #fefdf8;
  border-bottom: 4px solid #8bc9b2;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .l-header-nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    border-bottom: 0;
  }
  .l-header-nav__bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .l-header-nav__bg-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #182aaa;
  }
  .l-header-nav__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    transition: opacity 0.5s linear;
  }
  .l-header-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .l-header-nav.is-open::after {
    transform: translate(0);
    opacity: 1;
    transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 1s;
  }
  .l-header-nav.is-open .l-header-nav__bg {
    transform: translate(-50%, -50%);
    transition: opacity 0.5s linear;
  }
}
.l-header-nav-btn {
  position: fixed;
  width: 40px;
  height: 40px;
  top: 5px;
  right: 5px;
  z-index: 11;
  background-color: #fefdf8;
  border: 2px solid #8ec9b3;
  box-sizing: border-box;
  display: none;
  z-index: 101;
}

.l-header-nav-btn__btn {
  display: block;
  position: absolute;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  min-height: 0;
  transition: 0s 0.5s;
  border: 1px solid #8ec9b3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-header-nav-btn__btn::before,
.l-header-nav-btn__btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 73%;
  height: 1px;
  left: 50%;
  background-color: #281a1a;
  transform-origin: center;
  transform: translateX(-50%);
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1) 0.5s, opacity 0.2s 0.5s;
  box-sizing: border-box;
}

.l-header-nav-btn__btn::before {
  top: 9px;
}

.l-header-nav-btn__btn::after {
  top: 15px;
}

@media only screen and (min-width: 767px) {
  .l-header-nav-btn__btn:hover .l-header-nav-btn__text-item,
  .l-header-nav-btn__btn:active .l-header-nav-btn__text-item {
    letter-spacing: 0.08em;
  }
}
.l-header-nav-btn__content,
.l-header-nav-btn__icon {
  display: block;
  width: 100%;
}

.l-header-nav-btn__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.l-header-nav-btn__icon {
  position: absolute;
  width: 73%;
  height: 1px;
  top: 21px;
  left: 50%;
  background-color: #281a1a;
  transform-origin: center;
  transform: translateX(-50%);
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1) 0.5s, opacity 0.2s 0.5s;
  box-sizing: border-box;
}

.l-header-nav-btn__text {
  display: none;
}

.l-header-nav-btn__text-item {
  transition: letter-spacing 0.3s;
}

.l-header-nav-btn__content::before,
.l-header-nav-btn__content::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #281a1a;
  transform-origin: center;
  opacity: 0;
  transform: translateY(-50%);
}

.l-header-nav-btn__content::before {
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1) 0.2s, opacity 0.2s 0.2s;
}

.l-header-nav-btn__content::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1) 0.2s, opacity 0.2s 0.2s;
}

.l-header-nav-btn.is-open .l-header-nav-btn__btn::before,
.l-header-nav-btn.is-open .l-header-nav-btn__btn::after {
  width: 0;
  opacity: 0;
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s 0.1s;
}

.l-header-nav-btn.is-open .l-header-nav-btn__content::before,
.l-header-nav-btn.is-open .l-header-nav-btn__content::after {
  opacity: 1;
}

.l-header-nav-btn.is-open .l-header-nav-btn__content::before,
.l-header-nav-btn.is-open .l-header-nav-btn__content::after {
  width: 55%;
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1) 0.5s, opacity 0.1s 0.5s;
}

.l-header-nav-btn.is-open .l-header-nav-btn__icon {
  width: 0;
  opacity: 0;
  transition: width 0.2s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.2s 0.1s;
}

@media only screen and (max-width: 767px) {
  .l-header-nav-btn {
    display: block;
  }
}
.l-header-nav-list {
  display: flex;
  align-items: center;
}

.l-header-nav-list::before,
.l-header-nav-list::after {
  content: "";
  display: block;
  position: relative;
  width: 17px;
  height: 17px;
  background-image: url("../img/icon_g.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.l-header-nav-list::before {
  margin-right: 10px;
}

.l-header-nav-list::after {
  margin-left: 10px;
}

.l-header-nav-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-header-nav-list__item:last-of-type .l-header-nav-list__text::before {
  display: none;
}

.l-header-nav-list__item {
  margin-left: 45px;
}
.l-header-nav-list__item:first-of-type {
  margin-left: 0;
}

.l-header-nav-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
}

@media only screen and (min-width: 767px) {
  .l-header-nav-list__link:hover,
  .l-header-nav-list__link:active {
    text-decoration: none;
    opacity: 0.7;
  }
}
.l-header-nav-list__text {
  display: block;
  height: 100%;
  font-size: 2.7rem;
  color: var(--color-black);
  font-family: var(--font-other);
  position: relative;
}
.l-header-nav-list__text::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: -27px;
  transform: translateY(-50%);
  background-image: url(../img/icon_g.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.l-header-nav-list__text > img {
  display: block;
  width: auto;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .l-header-nav-list {
    flex-direction: column;
  }
  .l-header-nav-list::before,
  .l-header-nav-list::after {
    display: none;
  }
  .l-header-nav-list__item:nth-child(2),
  .l-header-nav-list__item:nth-child(3),
  .l-header-nav-list__item:nth-child(4),
  .l-header-nav-list__item:nth-child(5) {
    margin-left: 0;
  }
  .l-header-nav-list__item + .l-header-nav-list__item {
    margin-top: 7.3vh;
  }
  .l-header-nav-list__link {
    display: flex;
  }
  .l-header-nav-list__link::before,
  .l-header-nav-list__link::after {
    content: "";
    display: block;
    position: relative;
    width: 17px;
    height: 17px;
    background-image: url("../img/icon_g.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .l-header-nav-list__link::before {
    margin-right: 10px;
  }
  .l-header-nav-list__link::after {
    margin-left: 10px;
  }
  .l-header-nav-list__text {
    display: block;
    height: 100%;
    height: auto;
  }
  .l-header-nav-list__text > img {
    display: block;
    width: auto;
    height: 27px;
  }
}
.l-main {
  margin-top: 70px;
}
@media screen and (max-width: 899px) {
  .l-main {
    margin-top: 0;
  }
}

.l-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding: 50px 3%;
}
@media screen and (max-width: 899px) {
  .l-footer {
    display: block;
    padding: 40px 3%;
  }
}

.l-footer__banner {
  width: 250px;
  border-radius: 10px;
  border: 1px solid var(--color-gray);
  position: relative;
  overflow: hidden;
  top: 12px;
  transition: transform 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .l-footer__banner:hover {
    transform: scale(0.95);
  }
}
.l-footer__banner a {
  display: block;
}
@media screen and (max-width: 899px) {
  .l-footer__banner {
    top: 0;
    border-radius: 5px;
    width: 53%;
    margin: 0 auto 33px;
  }
}

.l-footer__block {
  margin-right: 1.1%;
}
@media screen and (max-width: 899px) {
  .l-footer__block {
    margin: 0;
  }
}

.l-footer__share {
  margin-bottom: 21px;
}
@media screen and (max-width: 899px) {
  .l-footer__share {
    margin-bottom: 27px;
  }
}
.l-footer__share-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 899px) {
  .l-footer__share-list {
    justify-content: center;
  }
}
.l-footer__share-list-item {
  width: 47px;
  margin-left: 10px;
  transition: transform 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .l-footer__share-list-item:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 899px) {
  .l-footer__share-list-item {
    width: 40px;
    margin-left: 4px;
  }
  .l-footer__share-list-item:first-of-type {
    margin-left: 0;
  }
}

.l-footer__link {
  margin-bottom: 10px;
}
@media screen and (max-width: 899px) {
  .l-footer__link {
    margin-bottom: 7px;
  }
}
.l-footer__link-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 899px) {
  .l-footer__link-list {
    justify-content: center;
  }
}
.l-footer__link-list-item {
  padding-left: 17px;
  font-size: 1.2rem;
  position: relative;
}
.l-footer__link-list-item:first-of-type {
  padding-left: 0;
}
.l-footer__link-list-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  position: absolute;
  left: 8px;
  top: 0;
  background-color: var(--color-black);
}
.l-footer__link-list-item:first-of-type::before {
  display: none;
}
.l-footer__link-list-item a {
  display: block;
  color: var(--color-black);
  transition: opacity 0.6s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .l-footer__link-list-item a:hover {
    opacity: 0.4;
  }
}

.l-footer__caution {
  margin-bottom: 12px;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .l-footer__caution {
    margin-bottom: 11px;
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
  }
}

.l-footer__copy {
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 899px) {
  .l-footer__copy {
    text-align: center;
    font-size: 1rem;
  }
}

.c-title {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-main), transform 0.6s var(--ease-bound);
}
.p-scroll.is-active .c-title {
  opacity: 1;
  transform: translateY(0);
}
.--in.is-load .c-title {
  opacity: 1;
  transform: translateY(0);
}
.c-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  transition: -webkit-clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main), -webkit-clip-path 0.7s var(--ease-main);
}
.p-scroll.is-active .c-title::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.--in.is-load .c-title::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 899px) {
  .c-title::before {
    height: 5px;
  }
}
.c-title h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 2px 40px;
  border-radius: 50rem;
  border: 2px solid;
  position: relative;
}
@media screen and (min-width: 900px) {
  .c-title h2 {
    min-width: 360px;
  }
}
@media screen and (max-width: 899px) {
  .c-title h2 {
    padding: 2px 18px;
    border: 1px solid;
  }
}

.l-wrap {
  position: relative;
  overflow: hidden;
}

.c-title__deco::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: calc(50% + 12px);
  left: 0;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  transition: -webkit-clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main), -webkit-clip-path 0.7s var(--ease-main);
}
.p-scroll.is-active .c-title__deco::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.--in.is-load .c-title__deco::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 899px) {
  .c-title__deco::before {
    height: 1px;
    position: absolute;
    top: calc(50% + 6px);
  }
}
.c-title__deco::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: calc(50% - 12px);
  left: 0;
  transform: translateY(-50%);
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  transition: -webkit-clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main);
  transition: clip-path 0.7s var(--ease-main), -webkit-clip-path 0.7s var(--ease-main);
}
.p-scroll.is-active .c-title__deco::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.--in.is-load .c-title__deco::after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 899px) {
  .c-title__deco::after {
    height: 1px;
    position: absolute;
    top: calc(50% - 6px);
  }
}

.c-title__text {
  display: block;
  padding: 7px 40px;
  background-color: var(--color-white);
  border-radius: 50rem;
  font-family: var(--font-other);
  position: relative;
  text-align: center;
  font-size: 4.5rem;
  letter-spacing: 0.08em;
  z-index: 1;
  border: 2px solid;
}
@media screen and (max-width: 899px) {
  .c-title__text {
    padding: 2px 22px 3px;
    font-size: 2.2rem;
    border: 1px solid;
  }
}