@charset "UTF-8";
/* ==================================================
 style.scss
 各scssファイルを定義
================================================== */
/* ==================================================
 baseフォルダ
================================================== */
/* ==================================================
 _font.scss
 フォント・文字サイズ 定義
================================================== */
/* ==================================================
 _function.scss
 関数 定義
================================================== */
/* ==================================================
 フォントのvw単位計算
 ※定義方法
 p {
	font-size: responsiveFontSizeClamp(最小フォントサイズ,最大フォントサイズ,最小ウィンドウサイズ,最大ウィンドウサイズ);
 }
================================================== */
/* ==================================================
 英字フォント
================================================== */
.font-roboto {
  font-family: "Roboto", sans-serif;
}

/* ==================================================
 見出しフォントサイズ(spサイズ ~ pcサイズ)
 h1: 24 ~ 28px;
 h2: 20 ~ 24px;
 h3: 18 ~ 20px;
 h4: 16 ~ 18px;
================================================== */
/* ==================================================
 フォントサイズ(spサイズ ~ pcサイズ)
 x-small: 10 ~ 12px
 small: 12 ~ 14px
 medium: 14px ~ 16px
 large: 16px ~ 18px
 x-large: 18 ~ 20px 
================================================== */
/* ==================================================
 見出しフォントサイズ (SPサイズ ~ PCサイズ)
 h1: 32 ~ 72px;
 h2: 28 ~ 60px;
 h3: 24 ~ 48px;
 h4: 20 ~ 36px;
================================================== */
.font-h1 {
  font-size: clamp(2.25rem, 1.5rem + 3.75vw, 4.5rem);
}

.font-h2 {
  font-size: clamp(2rem, 1.417rem + 2.92vw, 3.75rem);
}

.font-h3 {
  font-size: clamp(1.75rem, 1.333rem + 2.08vw, 3rem);
}

.font-h4 {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
}

/* ==================================================
 レギュラーサイズ（通常の本文用）
================================================== */
.font-regular {
  font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
}

.font-small {
  font-size: clamp(0.75rem, 0.708rem + 0.21vw, 0.875rem);
}

.font-medium {
  font-size: clamp(1rem, 0.917rem + 0.42vw, 1.25rem);
}

.font-large {
  font-size: clamp(1.25rem, 1.083rem + 0.83vw, 1.75rem);
}

/* ==================================================
 特大フォントサイズ（英字タイトル・特大見出し用）
================================================== */
.font-title {
  font-size: clamp(4rem, 3.333rem + 3.33vw, 6rem);
}

.font-hero {
  font-size: clamp(6rem, 5.292rem + 3.54vw, 8.125rem);
}

.font-display {
  font-size: clamp(8.125rem, 7.292rem + 4.17vw, 10.625rem);
}

/* ==================================================
 フォントウェイト
================================================== */
.font-w300 {
  font-weight: 300;
}

.font-w400 {
  font-weight: 400;
}

.font-w500 {
  font-weight: 500;
}

.font-w600 {
  font-weight: 600;
}

.font-w700 {
  font-weight: 700;
}

.font-w800 {
  font-weight: 800;
}

.font-w900 {
  font-weight: 900;
}

/* ==================================================
 フォントスタイル
================================================== */
.font-italic {
  font-style: italic;
}

.line-h1 {
  line-height: 1;
}

.line-h11 {
  line-height: 1.1;
}

.line-h12 {
  line-height: 1.2;
}

.line-h15 {
  line-height: 1.5;
}

.letter-0 {
  letter-spacing: 0em;
}

.letter-s005 {
  letter-spacing: 0.05em;
}

.letter-s01 {
  letter-spacing: 0.1em;
}

.letter-s02 {
  letter-spacing: 0.2em;
}

.letter-s05 {
  letter-spacing: 0.5em;
}

/* ==================================================
 フォントカラー
================================================== */
/* ==================================================
 テキストシャドウ
================================================== */
/* ベーシックな黒シャドウ（汎用） */
.text-shadow-base {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* くっきり目のシャドウ（強調したいとき） */
.text-shadow-strong {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* 柔らかく広がるシャドウ（上品） */
.text-shadow-soft {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* フチどり風（白文字に最適、強力） */
.text-shadow-outline {
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* 明るいシャドウ（暗背景用に白い影） */
.text-shadow-light {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

/* ==================================================
 _mixin.scss
 mixinスタイル 定義
================================================== */
/* ==================================================
 _animation.scss
 アニメーションスタイル 定義
================================================== */
/* ==================================================
 animation基本設定
================================================== */
/* ==================================================
 ※以下は他scssファイルでの定義方法
 @mixinで定義した引数のプロパティを書き換えるだけで個別にアニメーションを指定することができる
 @include bounce(
    $name: sk-bouncedelay;
		$duration: 3s;
		$timing-function: ease-in-out,
  );
================================================== */
/* ==================================================
 画面最大幅（PC画面をレスポンシブ対応させないための横幅）
================================================== */
/* ==================================================
 コンテンツ最大幅
================================================== */
/* ==================================================
 内部コンテンツ幅
================================================== */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  min-height: 0vw;
  line-height: 1.6;
  font-weight: 300;
}

.font-xs {
  font-size: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  min-height: 0vw;
}

.font-sm, .sub-title {
  font-size: 1.4rem;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  min-height: 0vw;
}

.font-rg {
  font-size: 2rem;
  font-size: clamp(2rem, 3vw, 2.4rem);
  min-height: 0vw;
}

.font-md {
  font-weight: 400;
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  min-height: 0vw;
  line-height: 1.3;
}

.font-lg, .main-title {
  font-weight: 500;
  font-size: 3.2rem;
  font-size: clamp(3.2rem, 5.625vw, 4.5rem);
  min-height: 0vw;
  line-height: 1.3;
}

.font-xl {
  font-weight: 500;
  font-size: 3.6rem;
  font-size: clamp(3.6rem, 6.5vw, 6rem);
  min-height: 0vw;
  line-height: 1.3;
}

.font-xxl {
  font-weight: 500;
  font-size: 4.2rem;
  font-size: clamp(4.2rem, 7.5vw, 8rem);
  min-height: 0vw;
  line-height: 1.3;
}

.font-w5 {
  font-weight: 500;
}

.font-w7 {
  font-weight: 700;
}

.font-w8 {
  font-weight: 800;
}

.lineh-18 {
  line-height: 1.8;
}

.font-white {
  color: white;
}

.font-black {
  color: #3f4041;
}

.font-line {
  color: #3aae36;
}

.font-blue {
  color: #26abe3;
}

.font-pink {
  color: #d11b58;
}

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

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

.align-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.main-title {
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

.h2-title {
  width: 10%;
}

.bg-black {
  background-color: #3f4041;
}

.bg-gray {
  background-color: #f7f8f8;
}

.bg-dgray {
  background-color: #e9e9e9;
}

.bg-white {
  background-color: white;
}

.bg-yellow {
  background-color: #fdd22b;
}

.bg-pink {
  background-color: #d11b58;
}

.bg-premiam {
  background-color: #fffd16;
}

.bg-regular {
  background-color: #ed7d35;
}

.bg-ladies {
  background-color: #f3b086;
}

.bg-oyako {
  background-color: #93d04f;
}

.bg-day {
  background-color: #00af50;
}

.bg-night {
  background-color: #2f74b5;
}

.bg-pair {
  background-color: #ff7bc8;
}

.bg-20 {
  background-color: #af0098;
}

.bg-senior {
  background-color: #2ae4cb;
}

.bg-school {
  background-color: #5cd1ff;
}

.content-width {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
}

.w-100 {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}

.w-90 {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
}

.w-80 {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
}
@media (max-width: 768px) {
  .w-80 {
    width: 90%;
  }
}

.w-70 {
  width: 70%;
  margin: 0 auto;
  max-width: 800px;
}

.w-60 {
  width: 60%;
  margin: 0 auto;
  max-width: 800px;
}

.w-50 {
  width: 50%;
  margin: 0 auto;
  max-width: 800px;
}

.w-40 {
  width: 40%;
  margin: 0 auto;
  max-width: 800px;
}

.w-30 {
  width: 30%;
  margin: 0 auto;
  max-width: 800px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .flex {
    display: block;
  }
}

.flex-w5 {
  width: 50%;
}
@media (max-width: 768px) {
  .flex-w5 {
    width: 100%;
  }
}

.m-auto {
  margin: 0 auto;
}

.mt-sm {
  margin-top: 16px !important;
}

.mt-md {
  margin-top: 8%;
}

.mt-lg {
  margin-top: 10%;
}

.mb-sm {
  margin-bottom: 1% !important;
}

.mb-rg {
  margin-bottom: 3% !important;
}

.mb-md {
  margin-bottom: 8% !important;
}

.mb-lg {
  margin-bottom: 20% !important;
}

.mb-xl {
  margin-bottom: 50% !important;
}
@media (max-width: 768px) {
  .mb-xl {
    margin-bottom: 20% !important;
  }
}

.ml-sm {
  margin-left: 1% !important;
}

.ml-rg {
  margin-left: 3% !important;
}

.p-sm {
  padding: 8px 12px !important;
}

.pt-rg {
  padding-top: 3%;
}

.pt-md {
  padding-top: 8%;
}

.pt-lg {
  padding-top: 10%;
}

.pt-xl {
  padding-top: 20%;
}

.pt-40 {
  padding-top: 40%;
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-rg {
  padding-bottom: 3%;
}

.pb-lg {
  padding-bottom: 10%;
}

.pb-xl {
  padding-bottom: 50%;
}

.pl-md {
  padding-left: 32px !important;
}

.accordion-003 {
  border-bottom: 2px solid #d6dde3;
}
.accordion-003__top {
  border-top: 2px solid #d6dde3;
}

.accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 0;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
  display: none;
}

.accordion-003 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-bottom: 3px solid #8fc31f;
  border-right: 3px solid #8fc31f;
  content: "";
  transition: transform 0.3s;
}

.accordion-003[open] summary::after {
  transform: rotate(225deg);
}

.accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-003[open] p {
  transform: none;
  opacity: 1;
}

.accordion-004 {
  border-bottom: 2px solid #d6dde3;
}
.accordion-004__top {
  border-top: 2px solid #d6dde3;
}

.accordion-004 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 0;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
  display: none;
}

.accordion-004 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-bottom: 3px solid #8fc31f;
  border-right: 3px solid #8fc31f;
  content: "";
  transition: transform 0.3s;
}

.accordion-004[open] summary::after {
  transform: rotate(225deg);
}

.accordion-004 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-004[open] p {
  transform: none;
  opacity: 1;
}

.link-hover {
  overflow: hidden;
  position: relative;
}
.link-hover:hover::after {
  transform: none;
}
.link-hover::after {
  content: "";
  position: absolute;
  padding: 0 0 1% 0;
  top: 90%;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  border-bottom: 2px solid #3f4041;
  -o-border-image: linear-gradient(to bottom, #26abe3 0%, #8dc21f 100%) 1;
     border-image: linear-gradient(to bottom, #26abe3 0%, #8dc21f 100%) 1;
  transform: translateX(-1000px);
}

.link-hover-2:hover {
  opacity: 0.6;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .link-hover-2:hover {
    opacity: 1;
  }
}

.link-bottom-bar {
  border-bottom: solid 2px #3aae36;
}

.breadcrumb-001 {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 0;
  font-size: 0.9em;
  justify-content: center;
}

.breadcrumb-001 li {
  display: flex;
  align-items: center;
}

.breadcrumb-001 li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin-left: 10px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  content: "";
}

.breadcrumb-001 a {
  color: #333333;
  text-decoration: none;
}

.toc-001 {
  width: 80%;
  margin: 0 auto;
  padding: 1em;
}
@media (max-width: 768px) {
  .toc-001 {
    width: 90%;
  }
}
.toc-001 ol {
  list-style-type: disc;
  margin: 0;
  padding: 0 0 0 1.2em;
  overflow: hidden;
}
.toc-001 a {
  padding: 5% 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #3f4041;
}
.toc-001 a::after {
  transform: translateY(-25%) rotate(45deg);
  width: 2rem;
  height: 3rem;
  display: inline-block;
  border-bottom: 3px solid #8fc31f;
  border-right: 3px solid #8fc31f;
  content: "";
}
@media (max-width: 768px) {
  .toc-001 a::after {
    width: 1.5rem;
    height: 2rem;
    border-bottom: 2px solid #8fc31f;
    border-right: 2px solid #8fc31f;
  }
}

.tag {
  padding: 0 1rem;
  border-radius: 10px;
}

/* ==================================================
 _reset.scss
 リセットcss
================================================== */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

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

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

b, strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

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

caption {
  text-align: left;
}

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

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

* {
  padding: 0;
  margin: 0;
  text-align: justify;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, "游ゴシック", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

:root {
  --side-nav_wid: 0;
  --header_wid: 65px;
}

.display-none {
  display: none;
}

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

.mobile-on {
  display: none;
}
@media (max-width: 768px) {
  .mobile-on {
    display: block;
  }
}

.pace-running .root {
  opacity: 0;
  visibility: hidden;
}

body {
  background-color: white;
}

.root {
  transition: opacity 1.5s;
  opacity: 1;
}

.wrapper {
  background-image: url(../../images/ogp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100vh;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
}
.wrapper__nav {
  display: flex;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: flex-start;
  margin: 0 0 0 0;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: auto;
  z-index: 5;
  max-width: 100%;
}
@media (max-width: 768px) {
  .wrapper__nav {
    display: none;
  }
}
.wrapper__contents {
  width: 40%;
  min-width: 500px;
  background: rgba(0, 0, 0, 0);
  flex: none;
  height: 100vh;
  max-width: 800px;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  .wrapper__contents {
    min-width: auto;
    width: 100%;
  }
}
.wrapper__action {
  display: flex;
  align-items: flex-end;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 87%;
  justify-content: flex-end;
  margin: 0 0 0 0;
  padding: 0px 0px 0px 0px;
  position: relative;
  width: auto;
  max-width: 100%;
}
@media (max-width: 960px) {
  .wrapper__action {
    display: none;
  }
}

.wrapper__header {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: auto;
  z-index: 0;
}
@media (max-width: 768px) {
  .wrapper__header {
    z-index: 2;
    height: auto;
  }
}

.menu-open.mobile-menu {
  visibility: visible;
}
.menu-open.wrapper__header {
  z-index: 200;
}
.menu-open .mobile-menu__left {
  opacity: 1;
  transform: none;
}
.menu-open .mobile-menu__right {
  opacity: 1;
  transform: none;
}
.menu-open .mobile-menu__nav__item {
  transform: none;
  opacity: 1;
}
.menu-open .mobile-menu__nav__item:nth-child(1) {
  transition-delay: 0.33s;
}
.menu-open .mobile-menu__nav__item:nth-child(2) {
  transition-delay: 0.36s;
}
.menu-open .mobile-menu__nav__item:nth-child(3) {
  transition-delay: 0.39s;
}
.menu-open .mobile-menu__nav__item:nth-child(4) {
  transition-delay: 0.42s;
}
.menu-open .mobile-menu__nav__item:nth-child(5) {
  transition-delay: 0.45s;
}
.menu-open .mobile-menu__nav__item:nth-child(6) {
  transition-delay: 0.48s;
}
.menu-open .mobile-menu__nav__item:nth-child(7) {
  transition-delay: 0.51s;
}
.menu-open .mobile-menu__nav__item:nth-child(8) {
  transition-delay: 0.54s;
}
.menu-open.header__btn {
  z-index: 1000;
}
.menu-open.header__btn__menu span {
  background-color: white;
  z-index: 9000;
}
@media (max-width: 768px) {
  .menu-open.header__btn__menu span {
    background-color: #3f4041;
  }
}
.menu-open.header__btn__menu span:before {
  background-color: #3f4041;
  transition-delay: 70ms;
  transform: translateY(0px) rotate(135deg);
}
@media (max-width: 768px) {
  .menu-open.header__btn__menu span:before {
    background-color: white;
  }
}
.menu-open.header__btn__menu span:after {
  background-color: #3f4041;
  transition-delay: 140ms;
  transform: translateY(0px) rotate(-135deg);
}
@media (max-width: 768px) {
  .menu-open.header__btn__menu span:after {
    background-color: white;
  }
}

@keyframes opacity_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
}
.mobile-menu__container {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.mobile-menu__left {
  width: calc(100% - var(--content_wid));
  background-color: white;
  position: relative;
  transform: translateY(-3000px);
  transition: transform 0.5s ease;
  opacity: 0;
}
@media (max-width: 768px) {
  .mobile-menu__left {
    display: none;
  }
}
.mobile-menu__right {
  width: var(--content_wid);
  background-color: #3f4041;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transform: translateX(3000px);
  transition: transform 0.5s ease;
  opacity: 0;
}
@media (max-width: 768px) {
  .mobile-menu__right {
    width: 100%;
  }
}
.mobile-menu__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
}
.mobile-menu__nav {
  width: 80%;
  margin: 0 auto;
}
.mobile-menu__nav__items {
  margin-bottom: 10%;
}
.mobile-menu__nav__item {
  list-style: none;
  display: flex;
  padding: 3% 0;
  transform: translate3d(0, 0, -1000px);
  transition: transform 0.3s, opacity 0.2s;
  opacity: 0;
  border-bottom: solid 0.6px white;
}
.mobile-menu__nav__item__top {
  border-top: solid 0.6px white;
}
.mobile-menu__nav__item li {
  padding: 2% 0;
}

.wrapper__mv {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -100;
}

.mv {
  height: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .mv {
    height: calc(var(--vh) * 100);
    overflow: hidden;
    position: relative;
    width: 100%;
  }
}
.mv__inner {
  height: 100%;
  position: relative;
  width: 100%;
  background-image: url(img/backimage.jpg);
}
@media (max-width: 768px) {
  .mv__inner {
    background-image: none;
  }
}
.mv__inner__pictures {
  width: 100%;
  height: 100%;
  position: relative;
}
.mv__opnning {
  height: 100%;
  position: relative;
  width: 100%;
}

.default-layer img {
  width: 100%;
}

.img__layer {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.img__layer img {
  width: 100%;
  height: 100vh;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-visible {
  opacity: 1;
  z-index: 200;
}

main {
  display: block;
  background-color: white;
  position: relative;
  z-index: 2;
}

.contents {
  height: auto;
  width: 100%;
}
.contents__box img {
  width: 100%;
}

.cmn__inner__title {
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .cmn__inner__title {
    margin-top: 20%;
  }
}
.cmn__inner__title h2 {
  position: relative;
  top: 1%;
  right: -66%;
  width: 35%;
}

.mobile-hero {
  width: 100%;
}
.mobile-hero img {
  width: 100%;
  height: 100%;
}

.bunner {
  margin: 10% auto 0;
}
.bunner img {
  width: 100%;
}

.button-005 {
  text-align: center;
}
.button-005 button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 5px;
  background-color: #3aae36;
  color: #fff;
  font-weight: 700;
  font-size: 1.3em;
}
@media (max-width: 480px) {
  .button-005 button {
    width: 90%;
  }
}
.button-005 button::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.button-005 button:hover {
  background-color: #6aac68;
}
.button-005 span {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  padding: 0 25px;
  color: #3aae36;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1em;
}
.button-005 span::before {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #3aae36;
  content: "";
  left: 0;
  transform: rotate(50deg);
}
.button-005 span::after {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background-color: #3aae36;
  content: "";
  right: 0;
  transform: rotate(-50deg);
}

.about {
  width: 100%;
  padding-top: 10%;
}
@media (max-width: 768px) {
  .about {
    height: auto;
    margin-top: -8%;
  }
}
.about__inner {
  width: 100%;
  height: 100%;
}
.about__inner__contents {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__inner__contents__wrap {
  width: 100%;
}
.about__inner__contents__logo {
  margin-bottom: 8rem;
}
.about__inner__contents__logo img {
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px) {
  .about__inner__contents__logo img {
    width: 40%;
  }
}
.about__lead {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  min-height: 0vw;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about__lead {
    font-size: 2rem;
    font-size: clamp(2rem, 3vw, 2.4rem);
  }
}

.service__inner__contents {
  padding-top: 20%;
}
.service__inner__contents img {
  width: 100%;
}

.price__inner__contents {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.price__td {
  text-align: right;
}
.price__table {
  width: 100%;
}
.price__table__plan {
  margin-bottom: 20%;
}
.price__table__plan__name {
  width: 100%;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.price__table__plan__system {
  width: 100%;
}
.price__table__plan__system table {
  width: 100%;
}
.price__table__plan__system th,
.price__table__plan__system td {
  padding: 3% 5%;
}
.price__table__plan__system th {
  width: 32%;
}
.price__table__plan__system td {
  width: 68%;
}
.price__list {
  overflow: visible;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.price__card {
  position: relative;
  overflow: visible;
  background-color: #26abe3;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  padding: 3rem 0.5rem;
  border-radius: 1rem;
}
.price__card-wrap {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.price__card-tag {
  background-color: #8dc21f;
  padding: 0.2rem 1rem;
  border-radius: 1rem;
  line-height: 1;
}
.price__card-tag p {
  overflow: hidden;
}
.price__card-border {
  border-bottom: 2px solid #fff;
}
.price__card-batch::before {
  content: "人気";
  position: absolute;
  top: -15px;
  left: 5px;
  width: 80px;
  height: 80px;
  background: #fdd22b;
  color: #3f4041;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 480px) {
  .price__card-batch::before {
    width: 60px;
    height: 60px;
  }
}

.entry-fee {
  width: 100%;
  border-top: 1px solid #3f4041;
  border-bottom: 1px solid #3f4041;
}
.entry-fee th,
.entry-fee td {
  padding-top: 3%;
}

.yen {
  font-size: 60%;
}

.faq__inner__contents {
  padding-top: 20%;
}

.question {
  color: #8fc31f;
}

.title-block {
  padding: 0.25em 0.5em; /*上下 左右の余白*/
  background: transparent; /*背景透明に*/
  border-left: solid 10px #3f4041; /*左線*/
}

.bl-color-g1 {
  -o-border-image: linear-gradient(to bottom, #fdd22b 0%, #8dc21f 100%) 1;
     border-image: linear-gradient(to bottom, #fdd22b 0%, #8dc21f 100%) 1;
}

.bl-color-g2 {
  -o-border-image: linear-gradient(to bottom, #8dc21f 0%, #fdd22b 100%) 1;
     border-image: linear-gradient(to bottom, #8dc21f 0%, #fdd22b 100%) 1;
}

.bl-color-g3 {
  -o-border-image: linear-gradient(to bottom, #26abe3 0%, #8dc21f 100%) 1;
     border-image: linear-gradient(to bottom, #26abe3 0%, #8dc21f 100%) 1;
}

.bl-color-pr {
  border-left-color: #fffd16;
}

.bl-color-rg {
  border-left-color: #ed7d35;
}

.bl-color-ld {
  border-left-color: #f3b086;
}

.bl-color-oya {
  border-left-color: #93d04f;
}

.bl-color-dy {
  border-left-color: #00af50;
}

.bl-color-ni {
  border-left-color: #2f74b5;
}

.bl-color-pair {
  border-left-color: #ff7bc8;
}

.bl-color-20 {
  border-left-color: #af0098;
}

.bl-color-senior {
  border-left-color: #2ae4cb;
}

.bl-color-school {
  border-left-color: #5cd1ff;
}

.bl-color-yellow {
  border-left-color: #fdd22b;
}

.bl-color-green {
  border-left-color: #8fc31f;
}

.bl-color-blue {
  border-left-color: #26abe3;
}

.bl-color-pink {
  border-left-color: #d11b58;
}

.footer {
  height: auto;
  padding-top: 3rem;
  width: 100%;
  background-color: #3f4041;
  padding-bottom: 3rem;
}
.footer__go-to-top {
  bottom: 40px;
  right: 32px;
  position: fixed;
  z-index: 300;
}
.footer__go-to-top__icon {
  align-items: center;
  background-image: linear-gradient(90deg, rgb(38, 171, 227), rgb(141, 194, 31));
  border-radius: 50%;
  display: flex;
  height: min(var(--vw) * 4.6, 57.6px);
  justify-content: center;
  width: min(var(--vw) * 4.6, 57.6px);
}
@media (max-width: 768px) {
  .footer__go-to-top__icon {
    height: 14.4vw;
    width: 14.4vw;
  }
}
.footer__go-to-top__icon img {
  width: 30%;
}
.footer__top {
  background-color: #3f4041;
}
.footer__bottom {
  background-color: #3f4041;
  color: white;
  padding: min(var(--vw) * 3.74815, 46.9333333333px) 0 min(var(--vw) * 6.81481, 85.3333333333px);
  padding-bottom: min(var(--vw) * 10.22222, 128px);
}
.footer__bottom__inner__logo {
  width: 50%;
}
.footer__bottom__inner__menu {
  display: flex;
  padding: 3% 0;
  border-bottom: solid 1px white;
}
.footer__bottom__inner__menu__top {
  border-top: solid 1px white;
}
.footer__bottom__inner__menu li {
  margin-bottom: 3%;
}
.footer__menu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
.footer__menu ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 1rem;
}
.footer__menu ul a {
  font-weight: 700;
}

.fb-container {
  text-align: center;
}

.fb-page {
  display: inline-block;
  text-align: center;
}
.fb-page span {
  width: 500px;
}

.terms {
  background-color: #3f4041;
  color: white;
}
.terms nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.copyright {
  background-color: #3f4041;
  color: white;
}

.cmn-link__center {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
.cmn-link__right {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 0 auto;
  width: -moz-max-content;
  width: max-content;
}

.glyphs-icon_arrow {
  font-style: normal;
}
.glyphs-icon_arrow:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.linemodal {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.linemodal-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 20px;
  overflow: auto;
}

.linemodal-wrap::-webkit-scrollbar {
  display: none;
}

.linemodal-wrap:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
}

.linemodal-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.8);
  width: 100%;
  height: 100%;
}

.linemodal-box {
  width: 100%;
  max-width: 500px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: auto;
}

.linemodal-box .inner {
  width: 100%;
  background: #fff;
  padding: 50px 0 0;
  border: solid 8px;
  -o-border-image: linear-gradient(to bottom, #26abe3 0%, #8dc21f 100%) 1;
     border-image: linear-gradient(to bottom, #26abe3 0%, #8dc21f 100%) 1;
  overflow: auto;
}
.linemodal-box .inner img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.linemodal-box .inner h2 {
  font-weight: 600;
  color: #3aae36;
}

.inner__btn {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.mordal__btn {
  padding: 3% 2%;
  font-weight: 600;
}
.mordal__btn__close {
  background-color: #e9e9e9;
  color: #3aae36;
}
.mordal__btn__add {
  background-color: #3aae36;
  color: white;
}

.howto__inner {
  padding: 20% 0;
}
.howto__inner__contents {
  padding-bottom: 4rem;
}

.flow__box {
  width: 100%;
}
.flow__box__title {
  width: 100%;
  background-color: #fdd22b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5% 5%;
}
.flow__box__contents {
  background-color: #fff6d5;
  padding: 5% 5%;
}
.flow__box .triangle {
  content: "";
  display: block;
  width: 0;
  border: solid 2em transparent;
  border-top-color: #fff6d5;
  margin: 0 auto;
}

.facility__inner {
  padding: 20% 0;
}
.facility__inner__contents {
  padding-top: 4rem;
}

.machine__inner {
  padding: 20% 0;
}
.machine__name img {
  width: 50%;
}
.machine__table th,
.machine__table td {
  padding: 3%;
  border-bottom: 2px solid white;
}
.machine__table th {
  width: 40%;
  background-color: #26abe3;
  color: white;
}
.machine__table td {
  width: 60%;
  background-color: #d4eef9;
}

.lesson__inner {
  padding: 20% 0;
}
.lesson__table th,
.lesson__table td {
  padding: 3%;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
}
.lesson__table th {
  width: 20%;
  background-color: #26abe3;
  color: white;
  vertical-align: middle;
}
.lesson__table th.th-white {
  background-color: white;
}
.lesson__table td {
  width: 20%;
  background-color: #d4eef9;
  vertical-align: middle;
}
.lesson__table td.td-blue {
  background-color: #26abe3;
  color: white;
}

.td.lesson__table__blue {
  background-color: #26abe3;
}

.common__inner {
  padding: 20% 0;
}
.common__inner__table th,
.common__inner__table td {
  padding: 3% 0;
}
.common__inner__table th {
  width: 40%;
}
.common__inner__table td {
  width: 60%;
  padding-left: 2%;
}
.common__inner h3,
.common__inner p,
.common__inner ol,
.common__inner li {
  margin-bottom: 1%;
}

.entry {
  background-color: #fff6d5;
  padding: 4% 0;
}
.entry__wrap {
  width: 90%;
  display: flex;
  margin: 2% auto;
}
.entry__wrap__items {
  background-color: #fdd22b;
  width: 50%;
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2%;
  margin: 0 1%;
  border-radius: 5%;
}

.reserve__btn {
  background-image: linear-gradient(90deg, rgb(38, 171, 227), rgb(141, 194, 31));
  width: 100%;
  padding: 5%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.reserve__btn::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  content: "";
}
.reserve__btn:hover {
  opacity: 0.8;
}

.tel__btn {
  background-image: linear-gradient(90deg, rgb(141, 194, 31), rgb(253, 210, 43));
  width: 100%;
  padding: 5%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.tel__btn::before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: 900;
}
.tel__btn:hover {
  opacity: 0.8;
}

/* ==================================================
 mixinフォルダ
================================================== */
/* ==================================================
 configフォルダ
================================================== */
/*
@use "config/setting";
*/
/* ==================================================
 moduleフォルダ
================================================== */
/* ==================================================
 _header.scss
 ヘッダーのスタイル定義
================================================== */
/* ==================================================
 ヘッダー
================================================== */
.header {
  width: 100%;
  height: 76px;
  padding: 0 2rem;
  background-color: white;
  z-index: 999;
}
@media (max-width: 768px) {
  .header {
    position: fixed;
  }
}
.header__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  height: 60px;
}
.header__menu {
  width: 76px;
  height: 76px;
  display: none;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .header__menu {
    display: flex;
  }
}
.header__menu-btn {
  z-index: 999;
}
.header__menu-btn > span {
  display: block;
  background-color: #3f4041;
  width: 30px;
  height: 2px;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.header__menu-btn > span:last-child {
  margin-bottom: 0;
}

/* ==================================================
 _navigation.scss
 アバウトエリアのスタイル定義
================================================== */
.navigation {
  width: 100%;
}
.navigation__img {
  margin-top: 3rem;
  margin-left: 3rem;
  width: calc(70% - 50px);
  max-width: calc(70% - 50px);
}
.navigation__img img {
  width: 100%;
}
.navigation__list ul {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-top: 3rem;
  margin-left: 3rem;
}
.navigation__list li {
  font-size: 2rem;
  font-weight: bold;
}
.navigation__list a {
  font-weight: bold;
}

/* ==================================================
 _action.scss
 アバウトエリアのスタイル定義
================================================== */
.action {
  display: flex;
  align-content: flex-end;
  align-items: flex-end;
  background: rgba(0, 0, 0, 0);
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 32%;
  justify-content: flex-end;
  margin: 0px 40px 0px 0px;
  width: 387px;
  max-width: calc(100% - 40px);
}
.action a {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 40px;
  height: 49.25px;
  justify-content: center;
  margin: 0px 0px 15px 0px;
  width: 232.19px;
  max-width: 100%;
}
.action a:hover {
  opacity: 0.8;
}
.action__line {
  border: 2px solid #3aae36;
  color: #3aae36;
}
.action__line::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #3aae36;
  border-right: 2px solid #3aae36;
  content: "";
}
.action__blue {
  border: 2px solid #26abe3;
  color: #26abe3;
}
.action__blue::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #26abe3;
  border-right: 2px solid #26abe3;
  content: "";
}

/* ==================================================
 _hero.scss
 アバウトエリアのスタイル定義
================================================== */
.hero {
  width: 100%;
  height: 563px;
  background-image: url(../../images/hero_wide.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    background-image: url(../../images/hero.jpg);
  }
}
.hero::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 300px;
  background-image: url(../../images/copy.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .hero::before {
    width: 90%;
    height: 300px;
    transform: translate(-50%, calc(-50% + 72px));
  }
}
.hero__button {
  width: 100%;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 0;
}
.hero__button-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3f4041;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
  width: 60%;
  height: 70px;
  max-width: 465px;
  background: #fdd22b;
  margin: auto;
  cursor: pointer;
  border-radius: 100px;
  animation: dokundokun 2000ms ease infinite;
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
  transition: opacity 0.4s;
}
.hero__button-btn::after {
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #3f4041;
  border-right: 2px solid #3f4041;
  content: "";
}
.hero__button-btn:hover {
  opacity: 0.8;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
/* ==================================================
 _news-list.scss
 ニュースエリアのスタイル定義
================================================== */
.newslist {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.newslist__container {
  padding-top: 20%;
  position: relative;
}
.newslist__headding {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  letter-spacing: 0.1rem;
}
.newslist__item {
  border-bottom: 0.5px solid #3f4041;
  position: relative;
}
.newslist__item:first-child {
  border-top: 0.5px solid #3f4041;
}
.newslist__item::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #3f4041;
  border-right: solid 2px #3f4041;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 6px;
}
.newslist__item-wrap {
  padding: 1rem 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  transition: 0.8s;
  flex-direction: column;
  row-gap: 0.5rem;
  padding: 1rem 0;
}
.newslist__item-wrap:hover {
  background-color: #d4eef9;
}
.newslist__item-group {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: baseline;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.newslist__item-group span {
  background-color: #26abe3;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
}
.newslist__button {
  width: 100%;
  margin: 0 auto;
}

/* ==================================================
 _news-list.scss
 ニュースエリアのスタイル定義
================================================== */
.newsblock {
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.newsblock__headding {
  text-align: center;
}
.newsblock__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  row-gap: 2rem;
}
.newsblock__item-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  transition: all 0.3s;
}
.newsblock__item-wrap img {
  width: 100%;
  height: auto;
}
.newsblock__item-wrap:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}
.newsblock__item span {
  background-color: #3f4041;
  padding: 0.2rem 0.6rem;
  border-radius: 0.5rem;
}
.newsblock__button {
  width: 100%;
  margin: 0 auto;
}

/* ==================================================
 _mobileMenu.scss
 モバイルメニューのスタイル定義
================================================== */
.mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #3f4041;
  visibility: hidden;
  z-index: 98;
  overflow-y: scroll;
}
.mobileMenu__container {
  padding: 5rem;
}
.mobileMenu__logo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.mobileMenu__nav {
  height: 100%;
  color: white;
}
.mobileMenu__nav ul.menu {
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 1.5rem;
}
.mobileMenu__nav ul.menu > li {
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid white;
}
.mobileMenu__nav ul.menu > li > a {
  position: relative;
  letter-spacing: 0.48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobileMenu__nav .sub-menu {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
}
.mobileMenu__nav .sub-menu li {
  margin-bottom: 0.6rem;
}
.mobileMenu__nav .sub-menu a {
  font-weight: 400;
  font-size: 1rem;
}
.mobileMenu__button {
  padding-top: 3rem;
  width: 100%;
  margin: 0 auto;
}
.mobileMenu__mypage {
  padding-top: 3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: white;
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid white;
  position: relative;
  letter-spacing: 0.48px;
}
.mobileMenu__mypage div {
  display: flex;
  align-items: center;
}

.menu-open.mobileMenu {
  visibility: visible;
}
.menu-open.header__menu-btn > span {
  background-color: white;
}
.menu-open.header__menu-btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(11px) rotate(135deg);
}
.menu-open.header__menu-btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(-18px) scaleX(0);
}
.menu-open.header__menu-btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-11px) rotate(-135deg);
}
.menu-open.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}

/* ==================================================
 _subHero.scss
スタジオページひろーのスタイル定義
================================================== */
.subHero {
  width: 100%;
  background-color: #26abe3;
}
@media (max-width: 768px) {
  .subHero {
    padding-top: 76px;
  }
}
.subHero__wrap {
  padding: 3rem 0;
}

/* ==================================================
 pageフォルダ
================================================== */
/* ==================================================
 singleフォルダ
================================================== */
/* ==================================================
 _single.scss
 投稿のスタイル定義
================================================== */
.single {
  padding-top: 4rem;
}
.single__breadcrumb {
  margin-top: 70px;
}
.single__hero {
  width: 100%;
}
.single__hero-inner {
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.25rem;
}
.single__meta {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
}
.single__meta-tag {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
}
.single__article {
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.single__article-thumbnail img {
  width: 100% !important;
  max-height: 700px;
}
.single p,
.single ul,
.single ol,
.single table,
.single dl,
.single blockquote,
.single pre,
.single code,
.single img,
.single picture img,
.single figure,
.single iframe,
.single object,
.single hr,
.single video,
.single audio {
  margin-bottom: 1.2rem;
}
.single p code,
.single p img,
.single p iframe,
.single p object {
  margin-bottom: 0;
}
.single figure {
  max-width: 100%;
}
.single figure img,
.single figure iframe,
.single figure video,
.single figure audio {
  margin-bottom: 0;
}
.single table {
  width: 100%;
}
.single table thead {
  border: none;
}
.single table th,
.single table td {
  box-sizing: border-box;
  padding: 0.625em;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #3f4041;
}
.single img,
.single iframe,
.single object,
.single video,
.single audio {
  line-height: 1;
}
.single img {
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single blockquote {
  line-height: 1.5;
  position: relative;
  padding: 3.125em 1.875em 0.625em;
}
.single blockquote::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.875em;
  font-weight: 900;
  position: absolute;
  top: 0.3125em;
  left: 0.9375em;
  content: "\e244";
}
.single blockquote p,
.single blockquote cite {
  margin-bottom: 1.1rem;
}
.single blockquote p cite {
  margin-bottom: 0;
}
.single blockquote cite {
  font-size: 0.6125em;
  display: block;
  text-align: right;
}
.single h2,
.single h3,
.single h4,
.single h5 {
  margin-top: 1rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.single h2 {
  font-size: 1.2em;
  line-height: 1.5;
  font-weight: 700;
}
.single h3 {
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: 700;
}
.single h1.has-background,
.single h2.has-background,
.single h3.has-background,
.single h4.has-background,
.single h5.has-background,
.single h6.has-background {
  padding: 0.6em 1em;
}
.single b,
.single strong {
  font-weight: bold;
}
.single a {
  text-decoration: underline;
}
.single ul:not([class]) {
  padding-left: 1.25em;
  list-style: disc;
}
.single ol:not([class]) {
  padding-left: 1.875em;
  list-style: decimal;
}
.single .wp-block-media-text__media img {
  width: 100%;
}

/* ==================================================
 componentフォルダ
================================================== */
/* ==================================================
 _c-button.scss
 ボタンのスタイル定義
================================================== */
.button {
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
  height: 88px;
  padding-left: 3rem;
  padding-right: 3rem;
  max-width: 465px;
  width: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8fc31f;
  border: 3px solid #8fc31f;
  background-color: white;
  transition: color 0.4s, background-color 0.4s, border 0.4s;
}
@media (max-width: 480px) {
  .button {
    height: 70px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.button::after {
  transform: rotate(45deg);
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #8fc31f;
  border-right: 2px solid #8fc31f;
  content: "";
}
.button:hover {
  background-color: #8fc31f;
  color: white;
}
.button:hover::after {
  border-color: #fff;
}
.button__line {
  background-color: #3aae36 !important;
}
.button__accent {
  background-color: #fdd22b !important;
}

.buttonBlack {
  color: #3f4041;
}
.buttonBlack::after {
  background-color: #3f4041;
}
.buttonBlack:hover {
  background-color: #3f4041;
}

.buttonLine {
  color: #3aae36;
  border: 2px solid #3aae36;
}
.buttonLine:hover {
  background-color: #3aae36;
}

.icon-before-line::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../../images/line_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .icon-before-line::before {
    margin-right: 0.2em;
  }
}

/* ==================================================
 _c-fixButton.scss
 ボタンのスタイル定義
================================================== */
.fixButton {
  display: none;
}
@media (max-width: 768px) {
  .fixButton {
    display: block;
    width: 90%;
    margin: 0 auto;
    left: 0;
    margin-right: 1rem;
    position: fixed;
    z-index: 10;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ==================================================
 _breadcrumb.scss
 パンくずリストのスタイル定義
================================================== */
.breadcrumb {
  padding: 1rem 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.5em;
  padding: 0;
}
.breadcrumb__item {
  position: relative;
}
.breadcrumb__item::after {
  content: ">";
  margin: 0 0.5em;
  color: #aaa;
}
.breadcrumb__item:last-child::after {
  content: "";
  margin: 0;
}
.breadcrumb__item a {
  color: #26abe3;
  text-decoration: none;
}
.breadcrumb__item a:hover {
  text-decoration: underline;
}

/* ==================================================
 _c-contactStudio.scss
 カードのスタイル定義
================================================== */
.contactStudio {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #3f4041;
}
.contactStudio__wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 1rem;
}

/* ==================================================
 _c-nextpostButton.scss
 カードのスタイル定義
================================================== */
.nextpostButton {
  width: 80%;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 2rem auto;
}
@media (max-width: 768px) {
  .nextpostButton {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .nextpostButton {
    width: 90%;
  }
}
.nextpostButton li {
  width: 100%;
  text-align: center;
}
.nextpostButton a {
  text-align: center;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3f4041;
  background-color: white;
  border: 1px solid #3f4041;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.nextpostButton a:hover {
  background-color: #3f4041;
  color: white;
}
.nextpostButton__next::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #3f4041;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 90%;
  bottom: 0;
  margin: auto;
}
.nextpostButton__next:hover::after {
  border-color: white;
}
.nextpostButton__prev::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #3f4041;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 90%;
  bottom: 0;
  margin: auto;
}
.nextpostButton__prev:hover::after {
  border-color: white;
}

/* ==================================================
 _c-studioCard.scss
 カードのスタイル定義
================================================== */
.pagination {
  text-align: center;
  margin: 2em 0;
}
.pagination ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  list-style: none;
}
.pagination li a,
.pagination li span {
  display: inline-block;
  padding: 0.5em 0.9em;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.pagination li a:hover,
.pagination li span:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
.pagination li .current {
  background-color: #000;
  color: #fff;
  pointer-events: none;
}

/*
@use "component/table";
@use "component/link";
@use "component/description";
@use "component/card";
@use "component/blog-card";
*//*# sourceMappingURL=style.css.map */