@charset "UTF-8";

/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #545454;
  --gray: #999999;
  --gray02: #F2F2F0;
  --green: #A3B164;
  --green-l: #92C350;
  --red: #966B75;
  --green-sub: #A5A35C;
  --blue: #5FACBA;
  --green01: #72745E;
  --green02: #E0E3B3;
  --beige: #ECEAE1;
  --sec-deco01: #F0EEDF;
  --sec-deco02: #F1EFDF;
  --sec-deco03: #63624D;
  --font: "Zen Kaku Gothic New", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
  letter-spacing: 0.06em;
  background: #A5A69E;
  counter-reset: number 0;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

.main {
  position: relative;
}

/***************************

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.6s;
  animation-duration: 1.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.05);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.05);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
  animation-name: textSlideIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
  animation: clipPath 1s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

/***************************

layout/_header.scss

***************************/
.header.-is-fixed {
  z-index: 999;
  background-color: var(--white);
  transition: all 0.5s;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  max-width: 680px;
  padding-left: 20px;
}

@media screen and (min-width: 769px) {
  .header {
    padding-left: 50px;
    max-width: 679px;
  }
}

@media screen and (min-width: 1080px) {
  .header {
    max-width: 100%;
    width: 50%;
  }
}

@media screen and (max-width: 1079px) {
  .header {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
  background: var(--green);
  width: 80px;
  height: 80px;
  border-radius: 0 0 0 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .header__nav_toggle {
    width: 100px;
    height: 100px;
  }
}

.header__nav_toggle_bar {
  position: relative;
  margin: 8px 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-left: auto;
  margin-right: auto;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 36px;
  height: 1px;
  background-color: var(--white);
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  position: absolute;
  content: "";
}

.header__nav_toggle_bar {
  width: 36px;
}

.header__nav_toggle_bar::after {
  width: 36px;
}

.header__nav_toggle_bar::before {
  top: -8px;
}

.header__nav_toggle_bar::after {
  top: 8px;
}

.header__nav_toggle_title {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  padding-top: 10px;
  width: auto;
  white-space: nowrap;
  text-align: center;
}

.header__nav_toggle_title:before {
  content: "MENU";
  color: var(--white);
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.16rem;
  font-size: 11px;
  font-weight: 500;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(8px) rotate(135deg);
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-8px) rotate(-135deg);
  width: 36px;
}

.header.-is-open .header__nav_toggle_title:before {
  content: "CLOSE";
}

.header__title {
  font-size: 13px;
  line-height: 1.3;
}

.header__wrap {
  display: none;
}

.header.-is-open .header__bg {
  background: #fff;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
}

.header.-is-open .header__wrap {
  display: block;
  z-index: 2;
  position: relative;
  padding-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  overflow-y: scroll;
  height: 100vh;
}

@media screen and (min-width: 769px) {
  .header.-is-open .header__wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.header__logo {
  z-index: 10;
}

.header__logo a {
  gap: 10px;
}

.header__logo img {
  width: 100%;
  max-width: 120px;
}

.header__logo .header__title {
  color: var(--green);
  font-weight: 500;
  font-size: 2vw;
}

@media screen and (min-width: 769px) {
  .header__logo img {
    max-width: 178px;
  }

  .header__logo .header__title {
    font-size: 13px;
  }
}

.header__link_box {
  gap: 15px;
  margin-bottom: 50px;
}

.header__link_box .header__link_item a {
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
  padding: 2px 10px;
  display: block;
  line-height: 2;
}

.header__link_box .header__link_item.is_member a {
  border-radius: 19px;
  padding: 2px 15px;
  font-weight: bold;
  font-size: 15px;
}

.header__link_box .header__link_item a:hover {
  color: var(--green);
  background: var(--white);
}

.header__nav_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 40px;
}

@media screen and (min-width: 490px) {
  .header__nav_list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 769px) {
  .header__nav_list {
    gap: 40px 80px;
  }
}

.header__nav_item a {
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--black);
  padding-bottom: 5px;
}

@media screen and (min-width: 490px) {
  .header__nav_item a {
    font-size: 18px;
  }
}

.header__nav_item a span {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

@media screen and (min-width: 490px) {
  .header__nav_item a span {
    font-size: 32px;
  }
}

.header__nav_item a::after {
  content: "";
  width: 18px;
  height: 14px;
  background: url(img/common/arrow_r-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.header__nav_item a:hover {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}

.header__nav_item a:hover::after {
  background: url(img/common/arrow_r-g.png);
  -webkit-animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.header-sub__nav_list {
  margin-top: 50px;
  gap: 20px;
}

.header-sub__nav_list .header-sub__nav_item a {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-sub__nav_list .header-sub__nav_item a::after {
  content: "";
  width: 18px;
  height: 14px;
  background: url(img/common/arrow_r-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.header-sub__nav_list .header-sub__nav_item a:hover {
  color: var(--green);
}

.header-sub__nav_list .header-sub__nav_item a:hover::after {
  background: url(img/common/arrow_r-g.png);
  -webkit-animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(32px);
    opacity: 0;
  }

  50% {
    transform: translateX(-32px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.header__contact {
  margin-top: 60px;
  gap: 20px;
}

@media screen and (min-width: 490px) {
  .header__contact {
    align-items: flex-start;
  }
}

.header__contact_title {
  font-size: 18px;
  line-height: 0.7;
  text-align: center;
  border: 1px solid var(--black);
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media screen and (min-width: 490px) {
  .header__contact_title {
    width: 100%;
  }
}

.header__contact_wrap {
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
}

@media screen and (min-width: 490px) {
  .header__contact_wrap {
    margin-top: 0;
  }
}

.header__contact_tel {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.header__contact_num {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 490px) {
  .header__contact_num {
    font-size: 32px;
  }
}

.header__contact_text {
  font-size: 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

@keyframes slideIn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(32px);
    opacity: 0;
  }

  50% {
    transform: translateX(-32px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.sub_contents {
  display: none;
  padding-right: 50px;
}

@media screen and (min-width: 1080px) {
  .sub_contents {
    width: 50%;
    display: block;
    position: fixed;
    top: 30px;
    left: 50px;
  }

  .sub_contents .sub_contents_scroll {
    width: 80%;
    height: 100vh;
    margin: 0 auto;
    overflow-y: scroll;
    padding-bottom: 100px;
    -ms-overflow-style: none;
    scrollbar-width: none; 
  }
}

.sub_contents .header__logo .header__title {
  font-size: 0.9vw;
}

@media screen and (min-width: 1400px) {
  .sub_contents .header__logo {
    margin-right: 20px;
  }

  .sub_contents .header__logo .header__title {
    font-size: 13px;
  }
}

.sub_contents .header__title {
  color: var(--white);
}

.sub_contents .header__link_box {
  margin-bottom: 0;
}

.sub_contents .header__nav {
  margin-top: 50px;
}

@media screen and (min-width: 1200px) {
  .sub_contents .header__nav {
    margin-top: 100px;
  }
}

.sub_contents .header__link_box {
  gap: 15px;
}

.sub_contents .header__link_box .header__link_item a {
  color: var(--green);
  background: var(--white);
  border: none;
}

.sub_contents .header__link_box .header__link_item a:hover {
  color: var(--white);
  background: var(--black);
}

.sub_contents .header__nav_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 40px;
}

@media screen and (min-width: 1200px) {
  .sub_contents .header__nav_list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media screen and (min-width: 1500px) {
  .sub_contents .header__nav_list {
    gap: 40px 80px;
  }
}

.sub_contents .header__nav_item a {
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

.sub_contents .header__nav_item a::after {
  background: url(img/common/arrow_r-w.png);
}

.sub_contents .header-sub__nav_list {
  margin-top: 50px;
  gap: 20px;
}

.sub_contents .header-sub__nav_list .header-sub__nav_item a {
  color: var(--white);
}

.sub_contents .header-sub__nav_list .header-sub__nav_item a::after {
  background: url(img/common/arrow_r-w.png);
}

.sub_contents .header__contact {
  flex-direction: column;
}

@media screen and (min-width: 1400px) {
  .sub_contents .header__contact {
    margin-top: 50px;
    align-items: stretch;
  }
}

.sub_contents .header__contact_title {
  color: var(--white);
  border: 1px solid var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.sub_contents .header__contact_title br {
  display: none;
}

@media screen and (min-width: 1400px) {
  .sub_contents .header__contact_title {
    font-size: 18px;
  }

  .sub_contents .header__contact_title br {
    display: block;
  }
}

.sub_contents .header__contact_tel {
  color: var(--white);
}

@media screen and (min-width: 1400px) {
  .sub_contents .header__contact_tel {
    font-size: 24px;
  }
}

.sub_contents .header__contact_num {
  color: var(--white);
}

@media screen and (min-width: 1400px) {
  .sub_contents .header__contact_num {
    font-size: 32px;
  }
}

.sub_contents .header__contact_text {
  color: var(--white);
}

@media screen and (min-width: 1400px) {
  .sub_contents .header__contact_text {
    font-size: 15px;
  }
}

.sub_contents_scroll::-webkit-scrollbar {
  display: none;
}

.header__contact_list_wrap {
  gap: 20px 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.header__contact_list_wrap .header__contact_btn {
  max-width: 100%;
}

@media screen and (min-width: 700px) {
  .header__contact_list_wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .header__contact_list_wrap .header__contact_btn {
    max-width: 280px;
  }
}

@media screen and (min-width: 768px) {
  .header__contact_list_wrap {
    gap: 20px 15px;
  }

  .header__contact_list_wrap .header__contact_tel {
    font-size: 15px;
  }

  .header__contact_list_wrap .header__contact_num {
    font-size: 29px;
  }

  .header__contact_list_wrap .header__contact_text br {
    display: none;
  }
}

.sub_contents .btn03 {
  background: var(--white);
  color: #8A8C72;
}

.sub_contents .btn03::after {
  background: url(img/common/arrow_r-g.png);
}

.sub_contents .btn03:hover {
  color: #8A8C72;
}

@media screen and (min-width: 768px) {
  .sub_contents {
    gap: 20px 30px;
  }

  .sub_contents .header__contact_tel {
    font-size: 24px;
  }

  .sub_contents .header__contact_num {
    font-size: 32px;
  }

  .sub_contents .header__contact_text br {
    display: block;
  }
}

/***************************

layout/_footer.scss

***************************/
/*////////////////////////

footer

////////////////////////*/
.footer {
  background: #494A44;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 769px) {
  .footer {
    margin-left: auto;
  }
}

@media screen and (min-width: 1080px) {
  .footer {
    margin-right: 0;
    max-width: 100%;
    width: 50%;
  }
}

.footer .sec-deco.is-footer {
  padding-bottom: 200px;
}

.footer__copyright {
  text-align: center;
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer .title04 {
  margin-bottom: 5px;
}

.sitemap_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 10px;
  padding: 40px 0;
}

@media screen and (min-width: 400px) {
  .sitemap_list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 600px) {
  .sitemap_list {
    gap: 0 50px;
  }
}

.sitemap_item {
  position: relative;
}

.sitemap_item a {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 490px) {
  .sitemap_item a {
    font-size: 18px;
    padding: 20px 0;
  }
}

.sitemap_item a::after {
  content: "";
  width: 18px;
  height: 14px;
  background: url(img/common/arrow_r-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

@media screen and (min-width: 490px) {
  .sitemap_item a::after {
    bottom: 30px;
  }
}

.sitemap_item a:hover::after {
  -webkit-animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.footer {
  position: relative;
}


.fix_contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  z-index: -1;
  transition: all 0.5s;
}

@media screen and (min-width: 1080px) {
  .fix_contact {
    left: auto;
    width: 50%;
    max-width: 100%;
  }
}

.fix_contact.-is-fixed {
  opacity: 1;
  z-index: 60;
}

.fix_contact_title {
  background: var(--white);
  width: 100%;
  max-width: 280px;
  text-align: center;
  margin: 0 auto;
  border-radius: 7px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  margin-bottom: -20px;
  position: relative;
  z-index: 5;
}

@media screen and (min-width: 400px) {
  .fix_contact_title {
    max-width: 350px;
  }
}

@media screen and (min-width: 600px) {
  .fix_contact_title {
    max-width: 580px;
    font-size: 22px;
  }
}

.fix_contact_item {
  display: flex;
  flex-direction: column;
}

.fix_contact_item .fix_contact_text {
  padding: 9px 0;
}

.fix_contact_item.is_mail {
  background: #EAAD64;
}

.fix_contact_item.is_nyukai {
  background: #F3A5A7;
}

.fix_contact_item.is_mail .fix_contact_text {
  background: #E49C52;
}

.fix_contact_item.is_nyukai .fix_contact_text {
  background: #F09395;
}

.fix_contact_text {
  margin-top: auto;
  margin-bottom: auto;
  line-height: 1.1;
  font-size: clamp(8px, 6px + 0.75vw, 18px);
  letter-spacing: 0.04em;
  padding: 5px 1px;
  background-color: #91A153;
  border-radius: 3px;
}

.fix_contact_list {
  display: flex;
  color: var(--white);
}

.fix_contact_item {
  background: #A3B165;
  width: 50%;
  padding: 10px;
  padding-top: 20px;
}

@media screen and (min-width: 1130px) {
  .fix_contact_item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.fix_contact_item i {
  font-size: 18px;
}

@media screen and (min-width: 600px) {
  .fix_contact_item i {
    font-size: 24px;
  }
}

.fix_contact_item a {
  margin-bottom: 5px;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

@media screen and (min-width: 540px) {
  .fix_contact_item a {
    font-size: 15px;
  }
}

@media screen and (min-width: 1560px) {
  .fix_contact_item a {
    font-size: 23px;
  }
}


/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 2.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: var(--green);
  opacity: 1;
  border: 1px solid var(--green);
  border-radius: 3px;
}

@media screen and (min-width: 1101px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 60px;
    height: 60px;
    line-height: 3.5;
    font-size: 18px;
  }
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  line-height: 4.5;
}

.wp-pagenavi span.current {
  color: var(--green);
  cursor: default;
  background: var(--white);
  border: 1px solid var(--green);
}

.wp-pagenavi a:hover {
  opacity: 0.8;
}

.wp-pagenavi .extend {
  background: transparent;
  border: none;
  color: var(--green);
}

@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }

  .wp-pagenavi .extend+.larger {
    display: none;
  }
}

@media screen and (max-width: 450px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
  }
}

.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.pager a {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}

.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}

/***************************

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}

.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}

.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}

.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}

@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}

@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}

@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

/***************************

layout/_page-title.scss

***************************/
.title01 {
  color: var(--green);
  font-weight: bold;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 2;
  margin-bottom: 30px;
}

.title01 span {
  font-size: 44px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .title01 {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .title01 span {
    font-size: 64px;
  }
}

.title02 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 36px;
  color: var(--black);
  font-weight: 500;
  line-height: 2;
  background: linear-gradient(to right, #8a8f74 0%, #8a8f74 1px, rgba(138, 143, 116, 0) 2px, rgba(138, 143, 116, 0) 100%) repeat-x left bottom/5px 2px;
  display: inline;
}

@media screen and (min-width: 769px) {
  .title02 {
    font-size: 46px;
  }
}

.title02 span {
  color: var(--green-l);
  background: top left/1em 0.5em repeat-x radial-gradient(circle, var(--green-l) 3px, rgba(0, 0, 0, 0) 0.3px);
  padding-top: 0.4em;
}

.title03 {
  color: var(--green);
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  font-size: 26px;
  letter-spacing: normal;
  border-bottom: 2px dotted var(--green);
  margin-bottom: 40px;
}

@media screen and (min-width: 769px) {
  .title03 {
    font-size: 48px;
    margin-bottom: 80px;
  }
}

.title04 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .title04 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.title05 {
  color: var(--white);
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
  font-size: 26px;
  letter-spacing: normal;
  border-bottom: 2px dotted var(--white);
  margin-bottom: 30px;
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .title05 {
    font-size: 36px;
    margin-bottom: 50px;
  }
}

.sec_contact .title05 {
  color: var(--green);
  border-bottom: 2px dotted var(--green);
}

/***************************

object/component/_heading.scss

***************************/
.hdg-type01 {
  position: relative;
  display: grid;
  margin-left: 0;
}

@media screen and (max-width: 1100px) {
  .hdg-type01 {
    margin-left: 30px;
  }
}

@media screen and (max-width: 450px) {
  .hdg-type01 {
    margin-left: 10px;
  }
}

.hdg-type01::before {
  content: "";
  background: url(img/common/hgd-type01_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 144px;
  height: 144px;
  position: absolute;
  top: -80px;
  left: -60px;
}

@media screen and (max-width: 1100px) {
  .hdg-type01::before {
    width: 100px;
    height: 100px;
    top: -40px;
    left: -40px;
  }
}

@media screen and (max-width: 450px) {
  .hdg-type01::before {
    width: 80px;
    height: 80px;
    top: -35px;
    left: -35px;
  }
}

.hdg-type01.is_white::before {
  background: url(img/common/hgd-type01_deco_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hdg-type01__en {
  font-size: 18px;
  color: #38ACEF;
  font-family: "Montserrat Alternates", serif;
  position: relative;
  z-index: 1;
}

.hdg-type01__en::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

.hdg-type01__en.is_info::before {
  background: url(img/common/ico_info.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hdg-type01__en.is_specialist::before {
  background: url(img/common/ico_specialist.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hdg-type01__en.is_news::before {
  background: url(img/common/ico_news.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.hdg-type01__jp {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1100px) {
  .hdg-type01__jp {
    font-size: 36px;
  }
}

@media screen and (max-width: 450px) {
  .hdg-type01__jp {
    font-size: 30px;
  }
}

.hdg-type02 {
  display: grid;
}

.hdg-type02__en {
  font-size: 18px;
  color: #38ACEF;
  font-family: "Montserrat Alternates", serif;
  position: relative;
  z-index: 1;
}

.hdg-type02__jp {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .hdg-type02__jp {
    font-size: 36px;
  }
}

@media screen and (min-width: 1101px) {
  .hdg-type02__jp {
    font-size: 44px;
  }
}

/***************************

object/component/_box.scss

***************************/
.container {
  max-width: 640px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 769px) {
  .container {
    max-width: 680px;
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 1080px) {
  .container {
    max-width: 720px;
  }
}

@media screen and (max-width: 1079px) {
  .container {
    margin: 0 auto;
  }
}

.main_contents {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .main_contents {
    margin-left: auto;
  }
}

@media screen and (min-width: 1080px) {
  .main_contents {
    margin-right: 0;
    width: 50%;
    max-width: 100%;
  }
}

.main_contents.is_top::before {
  background: url(img/top/top_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}

.main_contents::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.container_s {
  max-width: 510px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .container_s {
    max-width: 610px;
  }
}

.container_510 {
  max-width: 510px;
  margin: 0 auto;
}

/***************************

object/component/_button.scss

***************************/
.btn01 {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  border-radius: 4px;
  background: var(--green);
  padding: 22px 40px;
  display: block;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.btn01::after {
  content: "";
  background: url(img/common/arrow_r-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
  position: absolute;
  top: 35px;
  right: 20px;
}

.btn01:hover {
  color: #fff;
}

.btn01:hover::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.btn02 {
  font-size: 18px;
  color: var(--green);
  font-weight: 500;
  border-radius: 4px;
  background: var(--white);
  padding: 22px 40px;
  border: 1px solid var(--green);
  display: block;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.btn02::after {
  content: "";
  background: url(img/common/arrow_l-g.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
  position: absolute;
  top: 35px;
  left: 20px;
}

.btn02:hover {
  color: var(--green);
}

.btn02:hover::after {
  -webkit-animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.btn03 {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
  border-radius: 4px;
  background: var(--green);
  padding: 22px 40px;
  display: block;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  max-width: 280px;
  position: relative;
}

.btn03 i {
  margin-right: 5px;
}

.btn03::after {
  content: "";
  background: url(img/common/arrow_r-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
  position: absolute;
  top: 35px;
  right: 20px;
}

.btn03:hover {
  color: var(--white);
}

.btn03:hover::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes slideInBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(-32px);
    opacity: 0;
  }

  50% {
    transform: translateX(32px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(-32px);
    opacity: 0;
  }

  50% {
    transform: translateX(32px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(24px);
    opacity: 0;
  }

  50% {
    transform: translateX(-24px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  49% {
    transform: translateX(24px);
    opacity: 0;
  }

  50% {
    transform: translateX(-24px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.btn_unit {
  position: relative;
}

.link_border {
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid var(--white);
  display: inline-block;
}

/***************************

object/component/_form.scss

***************************/
.contact_form {
  margin-top: 60px;
}

.contact_form p {
  text-align: left;
}

.contact-dd {
  text-align: left;
}

input {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  width: 100%;
  padding: 15px;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3px;
  background: #fff;
  width: 100%;
  padding: 20px;
  height: 100%;
  max-height: 200px;
}

textarea::-webkit-input-placeholder {
  color: var(--gray);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font);
}

textarea:-moz-placeholder {
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font);
}

textarea::-moz-placeholder {
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font);
}

textarea:-ms-input-placeholder {
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  font-family: var(--font);
}

.contact-form {
  padding-bottom: 40px;
}

.contact-unit {
  padding-top: 20px;
}

@media screen and (min-width: 960px) {
  .contact-unit {
    padding-top: 20px;
  }
}

.required {
  color: var(--black);
  font-size: 12px;
  font-weight: bold;
}

.contact-dt {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: left;
}

input[type=checkbox] {
  display: none;
}

.checkbox_dd .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 540px) {
  .checkbox_dd .wpcf7-radio {
    flex-direction: row;
  }
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #929BA4;
  content: "";
  display: block;
  border-radius: 50%;
  left: 5px;
  top: 50%;
  width: 25px;
  height: 25px;
}

.checkbox_dd .wpcf7-radio .wpcf7-list-item-label::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--green);
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6.3333333333px;
}

.checkbox_dd input[type=checkbox]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.checkbox_dd input[type=radio]:checked+.wpcf7-list-item-label::after {
  opacity: 1;
}

.contact-form_wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.contact-form_wrap::after {
  content: "";
  background: url(img/common/arrow_r-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
  position: absolute;
  top: 25px;
  right: 20px;
}

.contact-form_wrap.is_back::after {
  content: "";
  background: url(img/common/arrow_l-w.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
  position: absolute;
  top: 25px;
  left: 25px;
}
.contact-form_wrap.is_back:hover {
  color: #fff;
}
.contact-form_wrap.is_back:hover::after {
  -webkit-animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideInBack 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.contact-form_wrap:hover::after {
  -webkit-animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: slideIn2 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.contact-form_wrap input {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  border-radius: 4px;
  background: var(--green);
  padding: 22px 40px;
  display: block;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

/***************************

object/object/project/_home.scss

***************************/
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background-color: #E6F8FF;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-animation: fadeOut 1.5s 2.5s forwards;
  animation: fadeOut 1.5s 2.5s forwards;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  -webkit-animation: logo_fade 1s 0.5s forwards;
  animation: logo_fade 1s 0.5s forwards;
  padding: 20px;
}

@-webkit-keyframes logo_fade {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes logo_fade {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

body {
  position: relative;
}

body::before {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(178, 214, 120, 0.6);
  z-index: 0;
}

body .visual {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

body .movie {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body .movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.main_contents {
  position: relative;
  z-index: 2;
}

.sec_mv {
  padding-top: 100px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sec_mv {
    padding-top: 180px;
  }
}

.mv {
  position: relative;
}

.mv_title {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 6;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .mv_title {
    width: auto;
  }
}

.mv_img img {
  border-radius: 3px;
  width: 100%;
}

.mv_img .swiper-pagination {
  width: 30px;
  left: auto;
  right: 10px;
  bottom: 20px;
}

.mv_img .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  width: 10px;
  height: 10px;
}

.mv_img .swiper-pagination-bullet-active {
  background: var(--white);
}

.bnr_wrp {
  text-align: center;
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .bnr_wrp {
    padding-top: 90px;
  }
}

.sec {
  padding-top: 80px;
}

@media screen and (min-width: 768px) {
  .sec {
    padding-top: 120px;
  }
}

.list01_item {
  border-top: 1px solid #DAD8D2;
}

.list01_item:last-child {
  border-bottom: 1px solid #DAD8D2;
}

.news_link {
  padding: 30px 0;
  display: inline-block;
}

.list01_date {
  font-size: 14px;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--gray);
}

@media screen and (min-width: 768px) {
  .list01_date {
    font-size: 15px;
  }
}

.list01_title {
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .list01_title {
    font-size: 18px;
  }
}

.btn_wrap {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .btn_wrap {
    margin-top: 60px;
  }
}

.list02_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .list02_list {
    gap: 50px 60px;
  }
}

.list02_list .list01_date {
  margin-top: 10px;
}

.list02_img {
  overflow: hidden;
}

.list02_img img {
  width: 100%;
  border-radius: 3px;
  transition: all 0.5s;
}

.list02_figcaption {
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .list02_figcaption {
    margin-top: 25px;
  }
}

.event_link:hover .list02_img img {
  transform: scale(1.05);
}

.effect_bg_wrap {
  position: relative;
}

.effect_bg_wrap::before {
  content: "";
  background: url(img/top/effect_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  width: 259px;
  height: 407px;
  position: absolute;
  top: 0;
  right: -50px;
}

.sec_effect p {
  color: var(--black);
  font-size: 18px;
  line-height: 2.4;
  font-weight: 400;
  margin-top: 50px;
  margin-bottom: 100px;
}

.sec_effect p br {
  display: none;
}

@media screen and (min-width: 768px) {
  .sec_effect p {
    font-size: 20px;
  }

  .sec_effect p br {
    display: block;
  }
}

/* .sec_effect img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
} */



.sec-deco {
  background: var(--green02);
  position: relative;
  padding-bottom: 120px;
}

.sec-deco::before {
  content: "";
  width: 100%;
  height: 60px;
  background: var(--green02);
  position: absolute;
  top: -60px;
  left: 0;
  display: block;
  border-radius: 19px 19px 0 0;
  z-index: 5;
}

.sec-deco::after {
  content: "";
  background: url(img/top/sec_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  width: 100%;
  height: 140px;
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 6;
}

.sec-deco.is-g {
  background: var(--gray02);
}

.sec-deco.is-g::before {
  background: var(--gray02);
}

.sec-deco.is-g::after {
  background: url(img/top/sec_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
}

.sec-deco.is-deco01 {
  background: var(--sec-deco01);
}

.sec-deco.is-deco01::before {
  background: var(--sec-deco01);
}

.sec-deco.is-deco01::after {
  background: url(img/top/sec_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
}

.sec-deco.is-w {
  background: var(--white);
}

.sec-deco.is-w::before {
  background: var(--white);
}

.sec-deco.is-w::after {
  background: url(img/top/sec_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
}

.sec-deco.is-deco02 {
  background: var(--sec-deco02);
}

.sec-deco.is-deco02::before {
  background: var(--sec-deco02);
}

.sec-deco.is-deco02::after {
  background: url(img/top/sec_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
}

.sec-deco.is_beige {
  position: relative;
  background: var(--beige);
}

.sec-deco.is_beige::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(img/top/voice_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
}

.sec-deco.is_beige::after {
  background: url(img/top/sec_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
}

.sec-deco.is-footer {
  background: var(--sec-deco03);
  padding-bottom: 20px;
}

.sec-deco.is-footer::before {
  background: var(--sec-deco03);
}

.sec-deco.is-footer::after {
  background: transparent;
}

@media screen and (min-width: 768px) {
  .sec-deco {
    padding-bottom: 180px;
  }
}

.sec_effect02 {
  padding-bottom: 160px;
}

@media screen and (min-width: 768px) {
  .sec_effect02 {
    padding-bottom: 260px;
  }
}

.effect_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  .effect_list {
    gap: 70px;
  }
}

.effect_list-type02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.effect_list-type02 .effect_img {
  width: 100%;
  max-width: 510px;
  border-radius: 2px;
}

.effect_list-type02 .effect_img img {
  width: 100%;
}

.effect_img {
  overflow: hidden;
}

.effect_img img {
  border-radius: 10px 0 10px 0;
}

.effect_figcaption {
  margin-top: 10px;
}

.effect_title {
  font-size: 20px;
  font-weight: 400;
  display: inline;
  line-height: 2;
  padding-bottom: 4px;
  background: linear-gradient(to right, white 0%, white 1px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 100%) repeat-x left bottom/5px 2px;
}

@media screen and (min-width: 768px) {
  .effect_title {
    font-size: 24px;
  }
}

.effect_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 5px;
}

@media screen and (min-width: 768px) {
  .effect_text {
    font-size: 20px;
  }
}

.effect_item .charm_title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.effect_item .charm_title::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  width: 18px;
}

.sec_charm {
  padding-bottom: 110px;
}

@media screen and (min-width: 768px) {
  .sec_charm {
    padding-bottom: 170px;
  }
}

.effect_figcaption {
  position: relative;
}

.effect_imgwrap {
  position: relative;
}

.effect_imgwrap img {
  width: 100%;
}

.effect_imgwrap .charm_img {
  position: absolute;
  z-index: 5;
  top: -20px;
  right: -10px;
  width: 100px;
}

@media screen and (min-width: 500px) {
  .effect_imgwrap .charm_img {
    top: auto;
    bottom: -30px;
  }
}

@media screen and (min-width: 600px) {
  .effect_imgwrap .charm_img {
    top: auto;
    bottom: -45px;
    width: 175px;
    right: -15px;
  }
}

.charm_title {
  background: var(--green-l);
  color: var(--white);
  display: inline;
  border-radius: 4px;
  padding: 5px 20px;
  line-height: 2;
  position: absolute;
  top: -25px;
  left: 0;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (min-width: 400px) {
  .charm_title {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .charm_title {
    font-size: 24px;
  }
}

.charm_text {
  padding-top: 60px;
}

.charm_text {
  color: var(--black);
}

.gallery_figure {
  position: relative;
}

.gallery_img img {
  border-radius: 4px;
}

.gallery_text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--white);
  padding: 0 10px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .gallery_text {
    font-size: 18px;
  }
}

.gallery_swiper .swiper-button-prev::after,
.gallery_swiper .swiper-button-next::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 50px;
  width: 50px;
  margin: auto;
  background-image: url(img/common/arrow_r-gallery.png);
}

.gallery_swiper .swiper-button-next::after {
  transform: scale(-1, 1);
}

.gallery_swiper .swiper-button-prev {
  left: 10% !important;
}

.gallery_swiper .swiper-button-next {
  right: 10% !important;
}

@media screen and (min-width: 768px) {
  .gallery_swiper .swiper-button-prev {
    left: 15% !important;
  }

  .gallery_swiper .swiper-button-next {
    right: 15% !important;
  }
}

.gallery_swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.program_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.program_item {
  background: var(--white);
  position: relative;
  padding: 30px;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .program_item {
    padding: 30px 40px;
  }
}

.program_item.is_contents01 .program_lead {
  background: #6AB7D0;
}

.program_item.is_contents01 .program_title::before {
  background: #6AB7D0;
}

.program_item.is_contents01 .program_dt {
  color: #6AB7D0;
  border-top: 1px dotted #6AB7D0;
}

.program_item.is_contents02 .program_lead {
  background: #6BCFC0;
}

.program_item.is_contents02 .program_title::before {
  background: #6BCFC0;
}

.program_item.is_contents02 .program_dt {
  color: #6BCFC0;
  border-top: 1px dotted #6BCFC0;
}

.program_item.is_contents03 .program_lead {
  background: #CD5F69;
}

.program_item.is_contents03 .program_title::before {
  background: #CD5F69;
}

.program_item.is_contents03 .program_dt {
  color: #CD5F69;
  border-top: 1px dotted #CD5F69;
}

.program_lead {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.1;
  position: absolute;
  top: -10px;
  left: -15px;
  width: 110px;
  height: 110px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
}

@media screen and (min-width: 540px) {
  .program_lead {
    font-size: 18px;
    top: -10px;
    left: -15px;
    width: 130px;
    height: 130px;
  }
}

.program_title {
  font-size: 20px;
  padding-left: 86px;
  line-height: 1.6;
  height: 90px;
}

@media screen and (min-width: 540px) {
  .program_title {
    padding-left: 100px;
    font-size: 30px;
    height: 130px;
  }
}

@media screen and (min-width: 768px) {
  .program_title {
    font-size: 36px;
  }
}

.program_title::before {
  content: "";
  width: calc(100% - 50px);
  height: 6px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.program_dl {
  margin-top: 60px;
  counter-reset: number 0;
}

.program_dt {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  position: relative;
  font-size: 18px;
}

.program_dt span {
  font-size: 36px;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.program_dt::before {
  counter-increment: number 1;
  content: "("counter(number, decimal-leading-zero) ")";
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  position: absolute;
  top: -27px;
  left: 0;
}

.program_dd {
  padding-bottom: 50px;
}

.program_contents_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .program_contents_list {
    align-items: center;
    flex-direction: row;
  }
}

.program_time,
.program_level {
  background: #F2F2F0;
  padding: 1px 15px;
  border-radius: 19px;
}

.program_text {
  font-size: 16px;
  margin-top: 20px;
  color: var(--black);
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .program_text {
    font-size: 18px;
  }
}

.program_level {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--black);
}

.program_level span {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: var(--white);
}

.program_level span::after {
  content: "★★★";
}

.program_level span::before {
  content: "★★★";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #C9A883;
  text-align: right;
}

.program_level span[data-rate="4"]:before {
  width: 100%;
}

.program_level span[data-rate="3"]:before {
  width: 65%;
}

.program_level span[data-rate="2"]:before {
  width: 35%;
}

.program_level span[data-rate="1"]:before {
  width: 30%;
}

.program_level span[data-rate="0"]:before {
  width: 0%;
}

.voice_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media screen and (min-width: 400px) {
  .voice_list {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 768px) {
  .voice_list {
    gap: 30px;
  }
}

.voice_item {
  background: var(--white);
  padding: 30px;
  padding-bottom: 40px;
  border-radius: 3px;
  font-size: 16px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .voice_item {
    padding: 20px;
    padding-bottom: 40px;
    font-size: 18px;
  }
}

.voice_img {
  text-align: right;
  position: absolute;
  bottom: -10px;
  right: 10px;
}

.price_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price_wrap {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 5px;
}

.price_title {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--white);
  padding: 10px 0;
}

@media screen and (min-width: 768px) {
  .price_title {
    font-size: 24px;
    padding: 15px 0;
  }
}

.price_contents {
  background: var(--white);
  border-radius: 0 0 5px 5px;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .price_contents {
    padding: 20px 40px 40px 40px;
  }
}

.price_unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.price_unit::before {
  content: "";
  border-top: 2px dotted var(--green);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 95%;
  height: 2px;
  z-index: 1;
}

.price_dt,
.price_dd {
  background: var(--white);
  position: relative;
  z-index: 2;
}

.price_dt {
  padding-right: 5px;
  font-size: 16px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .price_dt {
    font-size: 18px;
  }
}

.price_dd {
  padding-left: 5px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .price_dd {
    font-size: 24px;
  }
}

.price_num {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-right: 5px;
}

@media screen and (min-width: 768px) {
  .price_num {
    font-size: 36px;
  }
}

.price_num.ncp {
  color: #C9A783;
  font-size: 40px;
}

@media screen and (min-width: 768px) {
  .price_num.ncp {
    font-size: 48px;
  }
}

.price_text {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .price_text {
    font-size: 18px;
  }
}

.need_box {
  margin-top: 30px;
  background: #F7F5EC;
  padding: 15px;
  border-radius: 4px;
}

@media screen and (min-width: 540px) {
  .need_box {
    padding: 20px;
  }
}

@media screen and (min-width: 768px) {
  .need_box {
    padding: 30px;
  }
}

.need_title {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .need_title {
    font-size: 20px;
  }
}

.need_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 10px;
}

@media screen and (min-width: 768px) {
  .need_list {
    gap: 20px;
  }
}

.need_item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  letter-spacing: normal;
}

@media screen and (min-width: 768px) {
  .need_item {
    gap: 10px;
    font-size: 18px;
  }
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__list .faq__unit {
  background: var(--white);
  border-radius: 4px;
}

.faq__list .faq__dt {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 5px;
  align-items: center;
  padding: 10px 15px;
  padding-right: 30px;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .faq__list .faq__dt {
    padding: 10px 20px;
    padding-right: 40px;
    font-size: 18px;
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
}

.faq__list .faq__dt span {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--green);
}

@media screen and (min-width: 768px) {
  .faq__list .faq__dt span {
    font-size: 30px;
  }
}

.faq__list .faq__dt:after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
  width: 2px;
  height: 17px;
  background: var(--green);
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .faq__list .faq__dt:after {
    right: 27px;
  }
}

.faq__list .faq__dt::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 17px;
  height: 2px;
  background: var(--green);
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .faq__list .faq__dt::before {
    right: 20px;
  }
}

.faq__list .faq__dt.open {
  background: var(--green);
  color: var(--white);
}

.faq__list .faq__dt.open span {
  color: var(--white);
}

.faq__list .faq__dt.open::before {
  background: var(--white);
}

.faq__list .faq__dt.open:after {
  background: none;
  transition: all 0.3s ease-in-out;
}

.faq__list .faq__dd {
  display: none;
  font-size: 15px;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .faq__list .faq__dd {
    padding: 20px;
  }
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 96.56%;
  /*16:9の比率にしたい場合、9/16=56.25%*/
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list_type01_unit {
  border-top: 1px solid #DDDDDD;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 100px 1fr;
}

.list_type01_unit:last-child {
  border-bottom: 1px solid #DDDDDD;
}

@media screen and (min-width: 768px) {
  .list_type01_unit {
    grid-template-columns: 120px 1fr;
  }
}

.list_type01_title {
  font-size: 15px;
  font-weight: bold;
}

.list_type01_contents {
  font-size: 15px;
}

.disc {
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.disc::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: var(--green-l);
  display: inline-block;
  margin-right: 5px;
}

.sec_contact {
  text-align: center;
}

.sec_contact .header__contact_wrap {
  padding: 30px 0;
}

.sec_contact .header__contact_text {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}

.sec_contact .header__contact_tel,
.sec_contact .header__contact_num {
  color: var(--green);
}

@media screen and (min-width: 510px) {
  .sec_contact .header__contact_tel {
    font-size: 32px;
  }

  .sec_contact .header__contact_num {
    font-size: 54px;
  }
}

.sec_contact .contact_text {
  font-size: 16px;
  /* text-align: left; */
  font-weight: 400;
}

@media screen and (min-width: 510px) {
  .sec_contact .contact_text {
    font-size: 18px;
  }
}

.rule_box {
  background: var(--white);
  border-radius: 4px;
  padding: 20px;
}

.rule_box br {
  display: none;
}

@media screen and (min-width: 510px) {
  .rule_box br {
    display: block;
  }
}

.rule_box .link_border {
  color: var(--green);
  border-bottom: 1px solid var(--green);
}

.br_sp {
  display: block;
}

@media screen and (min-width: 540px) {
  .br_sp {
    display: none;
  }
}

/***************************

object/object/project/_page.scss
下層部分共通

***************************/
.main_contents.is_top.is_page {
  padding-bottom: 120px;
}

.main_contents.is_top.is_page::before {
  background: url(img/common/page_mv.png);
  background-repeat: no-repeat;
  top: 60px;
  background-position: top center;
  background-size: contain;
}

@media screen and (min-width: 769px) {
  .main_contents.is_top.is_page {
    padding-bottom: 180px;
  }
}

.page_mv {
  padding-top: 60px;
  position: relative;
  z-index: 4;
}

.page_date {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  left: 0.01em;
  color: var(--green);
}

.page_title {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 2px dotted var(--green);
  line-height: 1.8;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

@media screen and (min-width: 769px) {
  .page_title {
    font-size: 32px;
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
}

.block_contents h1 {
  font-size: 22px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .block_contents h1 {
    font-size: 28px;
  }
}

.block_contents h2 {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .block_contents h2 {
    font-size: 24px;
  }
}

.block_contents h3 {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .block_contents h3 {
    font-size: 20px;
  }
}

.block_contents h4 {
  font-size: 17px;
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  .block_contents h4 {
    font-size: 18px;
  }
}

.block_contents p {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .block_contents p {
    font-size: 18px;
  }
}

.block_contents a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (min-width: 769px) {
  .block_contents a {
    font-size: 18px;
  }
}

.block_contents a::after {
  content: "";
  width: 18px;
  height: 14px;
  background: url(img/common/arrow_r-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.block_contents a:hover {
  color: var(--green);
}

.block_contents a[target=_blank]::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/common/external-link-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.block_contents a[target=_blank]:hover {
  color: var(--green);
}


.block_contents.rule_contents a::after {
  content: "";
  width: 18px;
  height: 14px;
  background: url(img/common/arrow_r-b.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}

.block_contents.rule_contents a:hover {
  color: var(--white);
}

.block_contents.rule_contents a[target=_blank]::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(img/common/external-link-line-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  top: 32px;
}

.block_contents.rule_contents a[target=_blank]:hover {
  color: var(--white);
}

.block_contents.rule_contents .block_title {
  font-size: 21px;
  background: var(--green);
  border-radius: 4px;
  color: var(--white);
  padding: 5px 15px;
  margin-bottom: 20px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .block_contents .block_title {
    margin-top: 50px;
    font-size: 24px;
  }
}

.block_contents .disc {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .block_contents .disc {
    font-size: 18px;
  }
}

.block_contents .disc span {
  font-size: 14px;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .block_contents .disc span {
    font-size: 15px;
  }
}

.block_contents .block_dl {
  background: var(--gray02);
  border-radius: 4px;
  margin: 20px 0 40px;
  padding: 20px;
}

@media screen and (min-width: 769px) {
  .block_contents .block_dl {
    margin-bottom: 70px;
    padding: 30px;
  }
}

.block_contents .block_dl dt {
  font-size: 15px;
  font-weight: bold;
}

.block_contents .block_dl dd {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: normal;
}

.block__contact_tel,
.block__contact_num {
  color: var(--green);
}

.block__contact_tel {
  font-size: 21px;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

@media screen and (min-width: 500px) {
  .block__contact_tel {
    font-size: 32px;
  }
}

.block__contact_num {
  line-height: 1.1;
}

.block__contact_num a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 500px) {
  .block__contact_num a {
    font-size: 54px;
  }
}

.block__contact_num a::after {
  background: none;
}

.block__contact_text {
  font-size: 14px !important;
  letter-spacing: normal;
  line-height: 1.8;
}

@media screen and (min-width: 769px) {
  .block__contact_text {
    font-size: 15px !important;
  }
}

.t-medium {
  font-weight: 500;
}

.t-regular {
  font-weight: 400;
}

.rule_text.t-medium {
  font-weight: 500;
}

.rule_text.t-regular {
  font-weight: 400;
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

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

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

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

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

  .t-right_pc {
    text-align: right;
  }
}

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: #fff;
}

.fc--black {
  color: #444;
}

.fc--red {
  color: red;
}

.txtdeco-none {
  text-decoration: none;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

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

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

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

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.font-popping {
  font-family: "Poppins", sans-serif;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-barlow {
  font-family: "Barlow", sans-serif;
}

.zen-kaku-gothic-antique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.vertical {
  writing-mode: vertical-rl;
}

.gap-20 {
  gap: 20px;
}

.color-w {
  color: var(--white);
}

/* fontsize */
.fz-0 {
  font-size: 0px;
}

.fz-1 {
  font-size: 1px;
}

.fz-2 {
  font-size: 2px;
}

.fz-3 {
  font-size: 3px;
}

.fz-4 {
  font-size: 4px;
}

.fz-5 {
  font-size: 5px;
}

.fz-6 {
  font-size: 6px;
}

.fz-7 {
  font-size: 7px;
}

.fz-8 {
  font-size: 8px;
}

.fz-9 {
  font-size: 9px;
}

.fz-10 {
  font-size: 10px;
}

.fz-11 {
  font-size: 11px;
}

.fz-12 {
  font-size: 12px;
}

.fz-13 {
  font-size: 13px;
}

.fz-14 {
  font-size: 14px;
}

.fz-15 {
  font-size: 15px;
}

.fz-16 {
  font-size: 16px;
}

.fz-17 {
  font-size: 17px;
}

.fz-18 {
  font-size: 18px;
}

.fz-19 {
  font-size: 19px;
}

.fz-20 {
  font-size: 20px;
}

.fz-21 {
  font-size: 21px;
}

.fz-22 {
  font-size: 22px;
}

.fz-23 {
  font-size: 23px;
}

.fz-24 {
  font-size: 24px;
}

.fz-25 {
  font-size: 25px;
}

.fz-26 {
  font-size: 26px;
}

.fz-27 {
  font-size: 27px;
}

.fz-28 {
  font-size: 28px;
}

.fz-29 {
  font-size: 29px;
}

.fz-30 {
  font-size: 30px;
}

.fz-31 {
  font-size: 31px;
}

.fz-32 {
  font-size: 32px;
}

.fz-33 {
  font-size: 33px;
}

.fz-34 {
  font-size: 34px;
}

.fz-35 {
  font-size: 35px;
}

.fz-36 {
  font-size: 36px;
}

.le-normal {
  letter-spacing: normal;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.effect_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*# sourceMappingURL=style.css.map */

.sec_program .btn_wrap .btn01 {
  max-width: 400px;
}

