@charset "UTF-8";
/* ===========================================
*
*  省略ルール
*  以下記載のものを省略して使用
※ 　
* ======================================== */
/*------------------------------
*
* txt : text
* bg  : background
* cmn : common
* img : image
* bnr : banner
* ttl : title
* num : number
* btn : button
* flx : flex
* col : column
* mg  : margin
* mt  : margin-top
* mb  : margin-bottom
* pd  : padding
* pt  : padding-top
* pb  : padding-bottom
* rg  : regular
* md  : medium
* lg  : large
* nm  : normal
* hov : hover
*
* この定義と別で使用する場合は個別でコメント残すこと

* ----------------------------

*  ---　CSSカスタムプロパティの使用についての注意・共有事項　---
*  ※こちらの命名に関してはわかりやすさを担保するため、省略ルールの限りではありません
*  ※基本的に
*   要素名（クラス名）+ タグ名 + xy方向（topやleftまたは論理値） + CSSプロパティ名 でできるだけ直感的にわかるよう命名しています。
※　
*  ※全体で使用できるものは:rootで定義しています（グローバルスコープ変数）
*  ※親要素で宣言されたものは、その内のみ利用可能なため、その点に注意してください（ローカルスコープ変数）
*  ※CSSカスタムプロパティはurlに使用するとブラウザで異なる挙動を取るため、background-imageの管理にはなるべく使用しないでしてください
*
------------------------------*/
/* ===========================================
*
*  css custom property (common)
*
* ======================================== */
:root {
  /* グローバルスコープ変数。このシート内であればどこでも使用できます */
  /* font font-size */
  --font-size-base: 14px;
  --font-size-18: clamp(0.9984375rem, calc(0.9883703859rem + 0.0005033557 * 100vw), 1.0125rem);
  --font-size-20: clamp(1.109375rem, calc(1.0981893177rem + 0.0005592841 * 100vw), 1.125rem);
  --font-size-22: clamp(1.120625rem, calc(1.0369560962rem + 0.0041834452 * 100vw), 1.2375rem);
  --font-size-24: clamp(1.2225rem, calc(1.1312248322rem + 0.0045637584 * 100vw), 1.35rem);
  --font-size-25: clamp(1.19921875rem, calc(1.1349010766rem + 0.0032158837 * 100vw), 1.2890625rem);
  --font-size-26: clamp(1.2471875rem, calc(1.1802971197rem + 0.003344519 * 100vw), 1.340625rem);
  --font-size-27: clamp(1.29515625rem, calc(1.2256931628rem + 0.0034731544 * 100vw), 1.3921875rem);
  --font-size-28: clamp(1.343125rem, calc(1.2710892058rem + 0.0036017897 * 100vw), 1.44375rem);
  --font-size-30: clamp(1.42734375rem, calc(1.2746591862rem + 0.0076342282 * 100vw), 1.640625rem);
  --font-size-32: clamp(1.5225rem, calc(1.3596364653rem + 0.0081431767 * 100vw), 1.75rem);
  --font-size-34: clamp(1.59375rem, calc(1.4796560403rem + 0.005704698 * 100vw), 1.753125rem);
  --font-size-36: clamp(1.6875rem, calc(1.5666946309rem + 0.0060402685 * 100vw), 1.85625rem);
  --font-size-38: clamp(1.650625rem, calc(1.4295959172rem + 0.0110514541 * 100vw), 1.959375rem);
  --font-size-40: clamp(1.7375rem, calc(1.5048378076rem + 0.0116331096 * 100vw), 2.0625rem);
  --font-size-42: clamp(1.824375rem, calc(1.580079698rem + 0.0122147651 * 100vw), 2.165625rem);
  --font-size-50: clamp(1.875rem, calc(1.3716442953rem + 0.0251677852 * 100vw), 2.578125rem);
  /* 幅設定 */
  --min-contents-width: 350px;
  --wide-inner-width: 100%;
  --inner-width: 100%;
  --full-width: 100%;
  --half-width: 48%;
  --third-width: 48%;
  --quarter-width: 48%;
  /* border-radius */
  --round-5: 3px;
  --round-8: 6px;
  --round-10: 8px;
  --round-20: 16px;
  --round-30: 24px;
  --round-full: 999em;
  /* logoの幅 */
  --logo-width: 180px;
  /* mapの高さ */
  --map-height: 56.25vw;
}

/* ===========================================
*
*  default styles
*
* ======================================== */
body {
  font-size: var(--font-size-base);
  font-family: var(--font-main);
  line-height: var(--line-height-base);
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-medium);
  color: var(--main-text-color);
  min-width: var(--min-contents-width);
  margin: 0 auto;
  position: relative;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

/* ===========================================
*
* common-styles
*
* ======================================== */
/*
margin クラス
-------------------------*/
.mt-min {
  margin-top: 8px;
}

.mt-smr {
  margin-top: clamp(0.875rem, calc(0.6960290828rem + 0.0089485459 * 100vw), 1.125rem);
}

.mt-sm {
  margin-top: clamp(1.3125rem, calc(1.1782718121rem + 0.0067114094 * 100vw), 1.5rem);
}

.mt-nm {
  margin-top: clamp(1.75rem, calc(1.5710290828rem + 0.0089485459 * 100vw), 2rem);
}

.mt-rg {
  margin-top: clamp(2.1875rem, calc(1.9637863535rem + 0.0111856823 * 100vw), 2.5rem);
}

.mt-md {
  margin-top: clamp(2.625rem, calc(2.3565436242rem + 0.0134228188 * 100vw), 3rem);
}

.mt-lg {
  margin-top: clamp(3.0625rem, calc(2.7493008949rem + 0.0156599553 * 100vw), 3.5rem);
}

.mt-lgr {
  margin-top: clamp(3.5rem, calc(3.1420581655rem + 0.0178970917 * 100vw), 4rem);
}

.mb-min {
  margin-bottom: 8px;
}

.mb-smr {
  margin-bottom: clamp(0.875rem, calc(0.6960290828rem + 0.0089485459 * 100vw), 1.125rem);
}

.mb-sm {
  margin-bottom: clamp(1.3125rem, calc(1.1782718121rem + 0.0067114094 * 100vw), 1.5rem);
}

.mb-nm {
  margin-bottom: clamp(1.75rem, calc(1.5710290828rem + 0.0089485459 * 100vw), 2rem);
}

.mb-rg {
  margin-bottom: clamp(2.1875rem, calc(1.9637863535rem + 0.0111856823 * 100vw), 2.5rem);
}

.mb-md {
  margin-bottom: clamp(2.625rem, calc(2.3565436242rem + 0.0134228188 * 100vw), 3rem);
}

.mb-lg {
  margin-bottom: clamp(3.0625rem, calc(2.7493008949rem + 0.0156599553 * 100vw), 3.5rem);
}

.mb-lgr {
  margin-bottom: clamp(3.5rem, calc(3.1420581655rem + 0.0178970917 * 100vw), 4rem);
}

/*
sp時に非表示
-------------------------*/
.sp-none {
  display: none !important;
}

.logo {
  width: var(--logo-width);
  transition: 0.3s;
}
.logo:hover {
  opacity: 0.7;
}

/*
tel style
-------------------------*/
.tel {
  /* tel　style */
  /* ローカルスコープ変数 */
  --tel-font-size: var(--font-size-28);
  --tel-txt-font-size: 0.625em;
  --tel-txt-space: 0.5em;
  --tel-letter-space: var(--letter-spacing-base, 0.05em);
  --tel-color: var(--main-text-color);
  --tel-icon-space: 1.1em;
  --tel-icon-position: 0.5em;
  --tel-icon-width: 0.8333333333em;
  --tel-icon-height: 0.8333333333em;
  font-family: var(--font-sub, sans-serif);
  font-weight: var(--font-weight-semibold, 700);
  letter-spacing: var(--tel-letter-space, 0.05);
  font-size: var(--tel-font-size, 28px);
  line-height: 1;
  position: relative;
}
.tel__txt {
  font-size: var(--tel-txt-font-size, 0.75em);
  margin-right: var(--tel-txt-space, 0.25em);
}
.tel__replace {
  /* tel replace txt　style */
  --tel-replace-size: 12px;
  height: var(--tel-replace-size, 12px);
}
.tel-replace--right {
  display: flex;
  align-items: center;
  gap: var(--tel-replace-space, 10px);
}
.tel-replace--bottom {
  /* tel replace txt　style */
  --tel-replace-size: 12px;
  --tel-replace-space: 20px;
  padding-bottom: var(--tel-replace-space, 20px);
}
.tel-replace--bottom .tel__replace {
  position: absolute;
  left: 0;
  bottom: 0;
}
.tel-icon {
  padding-left: var(--tel-icon-space, 1.5em);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.tel-icon::before {
  content: "";
  width: var(--tel-icon-width, 1em);
  height: var(--tel-icon-height, 1em);
  position: absolute;
  top: var(--tel-icon-position, 0.5em);
  left: 0;
  transform: translateY(-50%);
}
.tel-icon--main::before {
  background: url(../img/icon_tel_main.png) repeat center/contain;
}
.tel-icon--white::before {
  background: url(../img/icon_tel_white.png) repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  --sns-icon-space: 20px;
  /* ローカルスコープ変数 */
  --sns-icon-size: 30px;
  gap: var(--sns-icon-space);
}
.sns__icon {
  width: var(--sns-icon-size);
  transition: 0.3s;
}
.sns__icon:hover {
  opacity: 0.7;
}
.sns__icon img {
  width: 100%;
}

/*
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.ttl-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ttl-img--center img {
  -o-object-position: center center;
     object-position: center center;
}

.ttl-img--left img {
  -o-object-position: center left;
     object-position: center left;
}

.ttl-img--right img {
  -o-object-position: center right;
     object-position: center right;
}

/*
title style
-------------------------*/
.cmn-ttl {
  --ttl-main-size: 1em;
  --ttl-sub-size: 0.5em;
  --ttl-sub-space: 1em;
  --ttl-color: var(--main-text-color);
  --ttl-dot-color: var(--accent-color);
  --ttl-dot-space: 0.75em;
  --ttl-sub-color: var(--main-color);
  --ttl-margin-bottom: 40px;
  font-size: var(--font-size-32);
  margin-bottom: var(--ttl-margin-bottom);
  color: var(--ttl-main-color);
  display: flex;
  flex-direction: column;
}
.cmn-ttl--center {
  align-items: center;
  text-align: center;
}
.cmn-ttl--left {
  align-items: flex-start;
  text-align: left;
}
.cmn-ttl--right {
  align-items: flex-end;
  text-align: right;
}
.cmn-ttl__main {
  font-size: var(--ttl-main-size);
  font-family: var(--font-semi);
  font-weight: var(--font-weight-regular);
  margin-block: -0.25em;
  letter-spacing: var(--letter-spacing-none);
  font-feature-settings: "palt";
}
.cmn-ttl__main .small {
  font-size: 0.7em;
}
.cmn-ttl__sub {
  font-size: var(--ttl-sub-size);
  margin-bottom: var(--ttl-sub-space);
  color: var(--ttl-sub-color);
  line-height: 1;
  text-transform: uppercase;
}
.cmn-ttl__dots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 37px;
  height: 5px;
  margin-top: var(--ttl-dot-space);
}
.cmn-ttl__dots > span {
  width: 5px;
  height: 5px;
  background-color: var(--ttl-dot-color);
  display: block;
  border-radius: 50%;
}

/*
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  /* ローカルスコープ変数 */
  --sentence-line-height: 2;
  --sentence-p-margin: 1.5em;
  letter-spacing: var(--letter-spacing-base);
  font-weight: var(--font-weight-regular);
  line-height: var(--sentence-line-height);
  /* 疑似要素でline-height分をネガティブマージンで調整 */
}
.cmn-sentence p::before, .cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.cmn-sentence p::before {
  margin-top: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p::after {
  margin-bottom: calc((1 - var(--sentence-line-height)) * 0.5em);
}
.cmn-sentence p:not(:last-child) {
  margin-bottom: var(--sentence-p-margin);
}

/*
画像
-------------------------*/
.cmn-img {
  --img-round-size: var(--round-10);
  --img-border-color: var(--main-color);
}
.cmn-img img {
  width: 100%;
}
.cmn-img-round {
  border-radius: var(--img-round-size);
  overflow: hidden;
}
.cmn-img-round--tl-bl {
  --img-round: var(--img-round-size) 0 0 var(--img-round-size);
}
.cmn-img-border {
  border: 3px solid var(--img-border-color);
}

/*
共通padding
-------------------------*/
.cmn-pd {
  padding: 75px 0;
}

/*
inner クラス
-------------------------*/
.inner,
.wide-inner {
  width: 100%;
  padding: 0 4%;
  margin: 0 auto;
}

/*
カラムスタイル
-------------------------*/
.col-container-3-1,
.col-container-2-1 {
  /* PC2列　SP1列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC2列　SP1列 */
  gap: var(--col-item-y-space, 40px) var(--col-item-x-space, 40px);
}
.col-container-3-1 > .col-item,
.col-container-2-1 > .col-item {
  width: 100%;
}

.col-container-2-2 {
  /* PC2列　SP2列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC4列　SP2列 */
  gap: var(--col-item-y-space, 30px) var(--col-item-x-space, 20px);
}
.col-container-2-2 > .col-item {
  width: calc(50% - var(--col-item-x-space) / 2);
}

.col-container-3-2 {
  /* PC3列　SP2列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC3列　SP2列 */
  gap: var(--col-item-y-space, 40px) var(--col-item-x-space, 30px);
}
.col-container-3-2 > .col-item {
  width: calc((100% - var(--col-item-x-space, 30px) * 1) / 2);
}

.col-container-4-2 {
  /* PC4列　SP2列 */
  --col-item-y-space: 36px;
  /* ローカルスコープ変数 */
  --col-item-x-space: 4%;
  /* PC4列　SP2列 */
  gap: var(--col-item-y-space, 30px) var(--col-item-x-space, 20px);
}
.col-container-4-2 > .col-item {
  width: calc((100% - var(--col-item-x-space, 30px) * 1) / 2);
}

table {
  --table-replace-size: 12px;
  /* ローカルスコープ変数 */
  --table-replace-space: .25em;
}
table .replace-txt {
  height: var(--table-replace-size);
  margin-left: var(--table-replace-space);
  display: inline-block;
}

.main-table {
  /* ローカルスコープ変数 */
  --table-main-color: var(--main-color);
  --table-sub-color: var(--white-color);
  --table-letter-spacing: var(--letter-spacing-regular);
  --table-th-font-weight: var(--font-weight-medium);
  --table-th-position: center;
  --table-th-x-padding: 1em;
  --table-th-y-padding: 0.8125em;
  --table-td-x-padding: 1em;
  --table-td-y-padding: 0.8125em;
  --table-cel-y-padding: 0.8125em;
  --table-cel-x-padding: 1em;
  --table-width: 100%;
  --table-th-width: 100%;
  --table-td-width: 100%;
  width: var(--table-width);
  border-block: 1px solid var(--table-main-color, );
  letter-spacing: var(--table-letter-spacing);
}
.main-table tr {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--table-main-color);
}
.main-table tr:not(:last-child) {
  margin-bottom: 15px;
}
.main-table th,
.main-table td {
  padding: var(--table-cel-y-padding) var(--table-cel-x-padding);
  display: block;
}
.main-table th {
  width: var(--table-th-width);
  background-color: var(--table-main-color);
  color: var(--table-sub-color);
  font-weight: var(--table-th-font-weight);
  text-align: var(--table-th-position);
}
.main-table td {
  width: var(--table-td-width);
  background: var(--table-sub-color);
}

/*------------------------------
*
* cmn-btn style
*
------------------------------*/
.cmn-btn {
  /* デフォフォルトの糸 */
  --btn-height: 50px;
  --btn-font-size: var(--font-size-base);
  --btn-padding-x: 1em;
  --btn-padding-y: calc((var(--btn-height) - var(--btn-font-size)) / 2);
  --btn-font-size: var(--font-size-base, 16px);
  --btn-font-weight: var(--font-weight-medium, 700);
  --btn-font-letter-space: var(--letter-spacing-regular, 0.05em);
  --btn-weight-regular: 200px;
  --btn-weight-medium: 320px;
  --btn-weight-large: 360px;
  display: block;
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: 1;
  text-align: center;
  width: 100%;
  border-radius: var(--round-8);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.cmn-btn-solid {
  --btn-bgcolor: var(--main-color, #ad88c6);
  --btn-color: var(--white-color, #fff);
  --btn-hov-bgcolor: transparent;
  --btn-hov-color: var(--white-color, #fff);
  background: var(--btn-bgcolor);
  color: var(--btn-color);
  transition: 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cmn-btn-solid::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  transition: 0.3s;
  background: var(--btn-hov-bgcolor);
}
.cmn-btn-solid:hover {
  color: var(--btn-hov-color);
  opacity: 1;
}
.cmn-btn-solid:hover::before {
  opacity: 1;
}
.cmn-btn-solid--primary {
  --btn-bgcolor: var(--gradiation-main-270);
  --btn-hov-bgcolor: linear-gradient(270deg, var(--main-color) 0%, var(--main-color) 100%);
}
.cmn-btn-solid--secondary {
  --btn-bgcolor: var(--gradiation-sub-270);
  --btn-hov-bgcolor: linear-gradient(270deg, var(--accent-color) 0%, var(--accent-color) 100%);
}
.cmn-btn-solid--tertiary {
  --btn-bgcolor: var(--gradiation-sub-90);
  --btn-hov-bgcolor: linear-gradient(270deg, var(--accent-color) 0%, var(--accent-color) 100%);
}
.cmn-btn-solid--line {
  --btn-bgcolor: var(--gradiation-sub-270);
  --btn-hov-bgcolor: linear-gradient(270deg, var(--accent-color) 0%, var(--accent-color) 100%);
}
.cmn-btn-arrow {
  --btn-arrow-width: 16px;
  --btn-arrow-height: 16px;
  --btn-arrow-position: 20px;
  position: relative;
}
.cmn-btn-arrow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: var(--btn-arrow-width);
  height: var(--btn-arrow-height);
  top: 50%;
  right: var(--btn-arrow-position);
  transform: translate(0, -50%);
}
.cmn-btn-arrow--white::after {
  background: url(../img/btn_arrow_white.png) no-repeat center/contain;
}
.cmn-btn-arrow:hover::after {
  transform: translate(50%, -50%);
}
.cmn-btn-icon {
  --icon-space: 1.5em;
  --icon-width: 1em;
  --icon-height: 1em;
}
.cmn-btn-icon > span {
  padding-left: var(--icon-space);
  position: relative;
  z-index: 1;
}
.cmn-btn-icon > span::before {
  content: "";
  width: var(--icon-width);
  height: var(--icon-height);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cmn-btn-icon--line {
  --icon-width: 1.5em;
  --icon-height: 1.5em;
  --icon-space: 2.25em;
}
.cmn-btn-icon--line:hover {
  opacity: 0.7;
}
.cmn-btn-icon--line > span::before {
  background: url(../img/icon_line.png) no-repeat center/contain;
  transform: translateY(-45%);
}
.cmn-btn-icon--mail {
  --icon-width: 1.5625em;
  --icon-height: 1em;
  --icon-space: 2.3125em;
}
.cmn-btn-icon--mail > span::before {
  background: url(../img/icon_mail_white.png) no-repeat center/contain;
}
.cmn-btn-contact {
  max-width: 320px;
  width: 80%;
}
.cmn-btn-line {
  max-width: 320px;
  width: 80%;
}
.cmn-btn--rg {
  max-width: var(--btn-weight-regular);
}
.cmn-btn--md {
  max-width: var(--btn-weight-medium);
}
.cmn-btn--lg {
  max-width: var(--btn-weight-large);
  --btn-arrow-position: 110px;
}
.cmn-btn--center {
  margin: 0 auto;
}
.cmn-btn--left {
  margin-right: auto;
}
.cmn-btn--right {
  margin-left: auto;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  --pagenation-margin-top: 48px;
  --pagenation-item-width: 3em;
  --pagenation-item-height: 3em;
  --pagenation-item-font-size: 1em;
  --pagenation-item-font-weight: var(--font-weight-medium);
  --pagenation-item-space: 6px;
  --pagenation-item-bg: var(--gray-color);
  --pagenation-item-color: var(--main-text-color);
  --pagenation-item-current-bg: var(--main-color);
  --pagenation-item-current-color: var(--white-color);
  margin-top: var(--pagenation-margin-top);
  display: flex;
  justify-content: center;
}
.pagenation li {
  display: block;
  width: var(--pagenation-item-width);
  height: var(--pagenation-item-height);
  font-size: var(--pagenation-item-font-size);
  line-height: var(--pagenation-item-height);
  font-weight: var(--pagenation-item-font-weight);
  margin: 0 var(--pagenation-item-space);
  color: var(--pagenation-item-color);
  background: var(--pagenation-item-bg);
  text-align: center;
  transition: 0.3s;
  border-radius: 3px;
}
.pagenation li:has(a):hover {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}
.pagenation .current {
  background-color: var(--pagenation-item-current-bg);
  color: var(--pagenation-item-current-color);
}

/*------------------------------
*
* breadclumb style
*
------------------------------*/
.wrapper {
  position: relative;
  z-index: 1;
}

.bread-clumb {
  display: none;
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1.2;
  font-size: 13px;
  margin: 48px auto 0;
}
.prev-next__item.prev, .prev-next__item.next {
  width: 7em;
}
.prev-next__item:not(:last-child) {
  margin-right: 1em;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3em;
  color: #b3b3b3;
  background-color: var(--gray-color);
}
.prev-next__link:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  opacity: 1;
}
.prev-next__link.prev, .prev-next__link.next {
  width: 100%;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  text-align: center;
}
.prev-next__link.back {
  text-align: center;
  padding: 0.75em 1.5em;
  border-radius: 3px;
  justify-content: center;
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  transition: all 0.3s;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  align-items: center;
  background-color: var(--white-color);
}
.header-inner {
  padding: 10px 3.5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-width: var(--min-contents-width);
  margin: 0 auto;
  width: 100%;
  height: 80px;
}

/* ===========================================
*
* main style  top page
*
* ======================================== */
/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  height: max(300px, 50vw);
  position: relative;
  z-index: 1;
  background: url(../img/top/mv_img.jpg) no-repeat top center/cover;
}
.main-visual__catch {
  width: 69.765625%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

/*------------------------------
*
* top-special
*
------------------------------*/
.top-special__container {
  flex-direction: column;
  align-items: center;
}
.top-special__box {
  width: 100%;
}
.top-special__flex {
  --col-item-y-space: 24px;
  width: 100%;
}
.top-special__btn {
  margin-top: 40px;
}
.top-special-item {
  border-radius: var(--round-10);
  background: url(../img/top/special_item_bg.jpg) no-repeat top center/cover;
  padding: 15px 3% 12px;
}
.top-special-item__img {
  width: 100%;
  aspect-ratio: 23/14;
  border-radius: var(--round-5);
  margin-bottom: 8px;
  overflow: hidden;
}
.top-special-item__ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
  line-height: 1.6666666667em;
  letter-spacing: var(--letter-spacing-small);
}

/*------------------------------
*
* top-news
*
------------------------------*/
.top-news {
  padding-top: 40px;
}
.top-news__ttl {
  margin-bottom: 30px;
}
.top-news__box {
  position: relative;
  z-index: 1;
  padding-inline: 5%;
}
.top-news__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--theme-color);
  width: 100%;
  height: calc(100% - 40px);
  border-radius: 4px;
}
.top-news__btn {
  margin-top: 32px;
}

/*------------------------------
*
* top-greeting
*
------------------------------*/
.top-greeting {
  position: relative;
  z-index: 1;
  background: url(../img/top/greeting_bg.jpg) no-repeat top center/cover;
}
.top-greeting::after {
  content: "";
  width: 92%;
  height: 85%;
  background: url(../img/top/greeting_deco_bg_l.png) no-repeat top 10% left/32%, url(../img/top/greeting_deco_bg_r.png) no-repeat bottom right/24%;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-52.5%, 0%);
  z-index: -1;
}
.top-greeting::before {
  content: "";
  height: 10px;
  width: 100%;
  background: url(../img/nami_bottom.png) repeat-x bottom center/auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-greeting__ttl {
  margin-bottom: 40px;
}
.top-greeting__sentence {
  font-family: var(--font-semi);
  letter-spacing: var(--letter-spacing-regular);
  --sentence-line-height: 2.2;
  font-size: var(--font-size-18);
}

/*------------------------------
*
* top-introduction
*
------------------------------*/
.top-introduction {
  padding-bottom: 0;
  position: relative;
  z-index: 5;
  background: url(../img/top/intro_bg.png) no-repeat bottom 10% center/max(1920px, 100%) auto;
}
.top-introduction__container {
  position: relative;
  z-index: 1;
  margin-top: 90px;
}
.top-introduction__img {
  border-radius: var(--round-10);
  overflow: hidden;
  max-width: 540px;
  margin: 32px auto 0;
  width: 100%;
  aspect-ratio: 735/540;
}
.top-introduction__box {
  width: 1000%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.top-introduction__sub-ttl {
  font-size: var(--font-size-32);
  letter-spacing: var(--letter-spacing-none);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.top-introduction__sub-ttl .small {
  font-size: var(--font-size-20);
}
.top-introduction__sub-ttl::before {
  content: "";
  width: 14.7105263158em;
  height: 3.6052631579em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-1.6052631579em, -50%);
  z-index: -1;
  background: url(../img/top/intro_ttl_hude01.png) no-repeat top center/contain;
}
.top-introduction__sub-ttl::after {
  content: "";
  width: 3.6315789474em;
  height: 3.3947368421em;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  transform: translate(0%, -82.8125%);
  background: url(../img/ink_deco01.png) no-repeat top center/contain;
}
.top-introduction__movie {
  width: 100%;
  aspect-ratio: 74/45;
  position: relative;
  z-index: 1;
  /* margin-top: 24px; */
  margin-top: 64px;
}
.top-introduction__movie > img,
.top-introduction__movie > video,
.top-introduction__movie > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.top-introduction-first {
  position: relative;
  z-index: 1;
}
.top-introduction-first::after {
  content: "";
  width: 100vw;
  min-width: var(--min-contents-width);
  height: 70%;
  position: absolute;
  z-index: -2;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -8%);
  background: url(../img/top/intro_second_deco_l.png) no-repeat bottom left -5%/28% auto, url(../img/top/intro_second_deco_r.png) no-repeat top right -8%/36% auto;
}
.top-introduction-first__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: var(--font-size-32);
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-none);
  margin-bottom: 40px;
}
.top-introduction-first__ttl .small {
  font-size: var(--font-size-20);
}
.top-introduction-first__ttl__main {
  position: relative;
  z-index: 1;
}
.top-introduction-first__ttl__main::before {
  content: "";
  width: 3.5263157895em;
  height: 3.5789473684em;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-129.8507462687%, -55.1470588235%);
  background: url(../img/ink_deco02.png) no-repeat top center/contain;
  z-index: -1;
}
.top-introduction-first__ttl__main::after {
  content: "";
  width: 6.2368421053em;
  height: 4.3684210526em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: url(../img/top/intro_ttl_hude02.png) no-repeat top center/contain;
}
.top-introduction-first .target-age {
  margin-top: 48px;
}

.target-age {
  padding: 36px 5% 30px;
  border-inline: 1px solid var(--sub-color);
  border-block-end: 1px solid var(--sub-color);
  width: 100%;
  position: relative;
  z-index: 1;
}
.target-age__ttl {
  line-height: 1;
  display: flex;
  letter-spacing: var(--letter-spacing-base);
  font-size: var(--font-size-24);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.target-age__ttl > span {
  display: inline-block;
  flex-shrink: 0;
  padding-inline: 0.5em;
}
.target-age__ttl::after, .target-age__ttl::before {
  content: "";
  width: 50%;
  flex-shrink: 1;
  height: 1px;
  display: block;
  background-color: var(--sub-color);
}
.target-age__sentence {
  --sentence-line-height: 1.882;
}

/*------------------------------
*
* top-feature
*
------------------------------*/
.intro-wrapper {
  overflow: hidden;
}

.top-feature {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
.top-feature::before {
  content: "";
  height: calc(100% + 60px);
  width: 100%;
  background: url(../img/nami_top.png) repeat-x top center/auto 10px, url(../img/top/feature_bg.jpg) no-repeat top center/cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
}
.top-feature__ttl {
  margin-bottom: 40px;
}
.top-feature-item {
  width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.top-feature-item__box {
  width: 100%;
  border-radius: var(--round-10);
  padding: 36px 5%;
  position: relative;
  z-index: 1;
  box-shadow: 0px 0px 24px rgba(var(--main-text-color-rgb), 0.13);
}
.top-feature-item__box::after {
  content: "";
  width: 103.5px;
  height: 96.75px;
  background: url(../img/ink_deco01.png) no-repeat top center/contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transform: translate(13.6690647482%, -12.5%);
}
.top-feature-item__ttl {
  font-size: var(--font-size-28);
  letter-spacing: var(--letter-spacing-regular);
  line-height: 1.4;
  margin-bottom: 24px;
}
.top-feature-item__img {
  width: 100%;
  box-shadow: 0px 0px 24px rgba(var(--main-text-color-rgb), 0.13);
  margin-top: 16px;
}
.top-feature-item:not(:last-child) {
  margin-bottom: 40px;
}

/*------------------------------
*
* page-link
*
------------------------------*/
.page-link {
  background: url(../img/pattern/pattern_border.png) repeat-x top 8px center/auto 3px, url(../img/pattern/pattern_border.png) repeat-x bottom 8px center/auto 3px;
}
.page-link__container {
  --col-item-x-space: 30px;
  --col-item-y-space: 20px;
  justify-content: center;
}
.page-link-item {
  display: grid;
  place-content: center;
  border-radius: var(--round-10);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid var(--sub-color);
  box-sizing: border-box;
  height: 180px;
  max-width: 420px;
}
.page-link-item::after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.75;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-color) 100%);
  transition: opacity 0.3s;
}
.page-link-item__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--round-10);
  border: 4px solid var(--white-color);
  height: 100%;
  width: 100%;
}
.page-link-item__ttl {
  font-family: var(--font-sub);
  line-height: 1;
  letter-spacing: var(--letter-spacing-none);
  color: var(--white-color);
  font-size: var(--font-size-36);
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-link-item__ttl__sub {
  color: rgba(var(--white-color-rgb), 0.5);
}
.page-link-item__ttl__main {
  font-size: 0.6388888889em;
  margin-top: 1em;
}
.page-link-item__arrow {
  width: 16px;
  margin-top: 24px;
}
.page-link-item--art {
  background: url(../img/top/link_img01.jpg) no-repeat top center/cover;
}
.page-link-item--course {
  background: url(../img/top/link_img02.jpg) no-repeat top center/cover;
}
.page-link-item--reserve {
  background: url(../img/top/link_img03.jpg) no-repeat top center/cover;
}
.page-link-item:hover::after {
  opacity: 1;
}

/* ===========================================
*
* under page
*
* ======================================== */
/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: max(180px, 34.375vw);
  box-sizing: border-box;
  overflow: hidden;
}
.sub-visual__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.sub-visual__catch > span {
  background-color: var(--main-color);
  color: var(--white-color);
  font-family: var(--font-semi);
  font-size: var(--font-size-30);
  letter-spacing: var(--letter-spacing-regular);
  padding: 0 0.4em;
  font-weight: var(--font-weight-regular);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sub-visual__catch .small {
  font-size: 0.7em;
  display: inline-block;
  padding-bottom: 0.25em;
}

/*----------- △ sub-visual △ -----------*/
/* ===========================================
*
* main style art-page
*
* ======================================== */
.art-wrapper {
  background: url(../img/course/course_bg.png) no-repeat top center/max(1920px, 100%);
}

/*------------------------------
*
* energico-top
*
------------------------------*/
.energico-top {
  padding-bottom: 15px;
}
.energico-top__ttl {
  margin-bottom: 36px;
}
.energico-top__sentence {
  font-family: var(--font-semi);
  letter-spacing: var(--letter-spacing-medium);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-medium);
  text-align: left;
}
.energico-top__sentence p > span {
  display: inline-block;
  text-align: center;
  width: 100%;
}

/*------------------------------
*
* energico
*
------------------------------*/
.energico {
  padding-top: 15px;
  padding-bottom: 0;
  overflow: hidden;
}
.energico > .inner {
  position: relative;
  z-index: 5;
}
.energico__lead-txt {
  font-family: var(--font-semi);
  letter-spacing: var(--letter-spacing-medium);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-medium);
}
.energico__container {
  margin-top: 64px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.energico__container::after {
  content: "";
  width: 90%;
  height: 40vw;
  position: absolute;
  background-color: #fff5f8;
  bottom: 5%;
  z-index: -1;
  right: -5vw;
  border-radius: 4px 0 0 4px;
}
.energico__img {
  width: 100%;
  margin-top: 32px;
}
.energico__sub-ttl {
  margin-bottom: 30px;
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-none);
  line-height: 1.6;
  text-align: center;
}
.energico__sub-ttl .small {
  font-size: 0.75em;
  line-height: 1.5 !important;
  display: block;
}
.energico__sentence {
  --sentence-line-height: 1.88;
  --sentence-p-margin: 1em;
}
.energico__movie {
  margin: 90px auto 0;
  width: 100%;
  aspect-ratio: 74/45;
  position: relative;
  z-index: 1;
}
.energico__movie > iframe,
.energico__movie > video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.energico-link__container {
  margin-top: 75px;
  gap: 15px 4%;
  justify-content: center;
}
.energico-link {
  border-radius: var(--round-10);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid var(--sub-color);
  box-sizing: border-box;
  height: 100px;
  max-width: 340px;
  width: 100%;
  display: flex;
  align-items: center;
}
.energico-link::after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--main-color) 0%, #cd95c4 100%);
  transition: opacity 0.3s;
}
.energico-link__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--round-10);
  border: 3px solid var(--white-color);
  height: 100%;
  padding: 0 30px;
  width: 100%;
}
.energico-link__ttl {
  font-size: var(--font-size-20);
  line-height: 1.2857;
  letter-spacing: -0.1em;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-sub);
  position: relative;
  font-weight: var(--font-weight-regular);
  font-feature-settings: "palt";
  z-index: 5;
}
.energico-link__arrow {
  width: 15px;
  position: absolute;
  right: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.energico-contents-wrapper {
  margin-top: 80px;
  background-color: #f8f5ff;
  padding-bottom: 75px;
  position: relative;
  z-index: 1;
}
.energico-contents-wrapper::before {
  content: "";
  height: 240px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  z-index: -1;
  background: url(../img/reserve/nami_white.png) repeat-x top center/auto, #f8f5ff;
}
.energico-contents {
  padding: 56px 6%;
  box-shadow: 0px 0px 24px 0px rgba(173, 136, 198, 0.13);
  position: relative;
  z-index: 1;
}
.energico-contents::before {
  content: "";
  width: 69px;
  height: 64.5px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  translate: 14.4927536232% -23.2558139535%;
  background: url(../img/ink_deco01.png) no-repeat top center/contain;
}
.energico-contents:not(:last-child) {
  margin-bottom: 40px;
}
.energico-contents__ttl {
  letter-spacing: var(--letter-spacing-none);
  font-size: var(--font-size-25);
  line-height: 1.3235294118em;
  margin-bottom: 32px;
}
.energico-contents__ttl .small {
  font-size: 0.72em;
}
.energico-contents__flex {
  gap: 32px;
  align-items: flex-start;
  align-items: stretch;
}
.energico-contents__sentence {
  width: 100%;
}
.energico-contents__data {
  width: 100%;
  background-color: #fff5f8;
  padding: 32px 5%;
  box-sizing: border-box;
}
.energico-contents__data .note {
  font-size: 13px;
  color: #6f6f6f;
}
.energico-contents__link {
  margin-top: 40px;
  align-items: stretch;
  justify-content: center;
  gap: 15px 40px;
}
.energico-contents__link__btn {
  --btn-padding-x: 32px;
  --btn-padding-y: 16px;
  --btn-font-size: var(--font-size-16);
  max-width: 440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}
.energico-contents__img {
  margin-top: 40px;
  justify-content: center;
  --col-item-x-space: 15px;
  --col-item-y-space: 15px;
}
.energico-contents__img01 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.energico-contents__img01 .energico-contents__img__item:nth-child(2) {
  width: 50%;
  margin-top: -5%;
}
.energico-contents__img02 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.energico-contents__img02 .energico-contents__img__item:nth-child(1) {
  width: 56%;
}
.energico-contents__img02 .energico-contents__img__item:nth-child(2) {
  margin-top: -5%;
}
.energico-contents__img03 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.energico-contents__img03 .energico-contents__img__item:nth-child(1) {
  width: 48%;
}
.energico-contents__img03 .energico-contents__img__item:nth-child(2) {
  margin-top: 2%;
}
.energico-contents__img__item {
  width: 100%;
}
.energico-contents__img__item img {
  width: 100%;
}
.energico-work {
  margin-top: 43px;
  width: 100%;
}
.energico-work__ttl {
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-regular);
  padding-bottom: 0.5em;
  background: url(../img/pattern/dot_border_main.png) repeat-x bottom left/auto 3px;
  margin-bottom: 24px;
  font-weight: var(--font-weight-regular);
  width: 100%;
}
.energico-work__container {
  --col-item-x-space: 25px;
  --col-item-y-space: 30px;
  justify-content: center;
}
.energico-work-item {
  max-width: 480px;
}
.energico-work-item__img {
  aspect-ratio: 29/20;
  width: 100%;
  overflow: hidden;
  margin-bottom: 10px;
}
.energico-work-item__ttl, .energico-work-item__name {
  line-height: 1.6875;
  text-align: center;
}

.trouble {
  margin-top: 80px;
}
.trouble__ttl {
  font-size: var(--font-size-38);
  letter-spacing: var(--letter-spacing-none);
  text-align: center;
  margin-bottom: 30px;
}
.trouble__ttl > span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-inline: 0.85em;
}
.trouble__ttl > span::after, .trouble__ttl > span::before {
  content: "";
  width: 1px;
  height: 1em;
  background-color: var(--sub-color);
  position: absolute;
  bottom: 0.125em;
  display: block;
}
.trouble__ttl > span::before {
  left: 0;
  rotate: -40deg;
}
.trouble__ttl > span::after {
  right: 0;
  rotate: 40deg;
}
.trouble-list {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
  gap: 24px 0;
  padding-bottom: max(250px, 52.0833333333vw);
}
.trouble-list::after {
  content: "";
  min-width: 390px;
  width: 81.25vw;
  min-height: 260px;
  height: 54.1666666667vw;
  background: url(../img/art/trouble_bg.png) no-repeat top center/contain;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-57.3%, 0%);
}
.trouble-list__item {
  width: 100%;
  font-size: var(--font-size-18);
  font-family: var(--font-semi);
  letter-spacing: var(--letter-spacing-none);
}
.trouble-list__item p {
  display: inline-block;
  padding-inline: 0.25em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--sub-color);
  position: relative;
  text-align: left;
  z-index: 1;
}
.trouble-list__item p::after, .trouble-list__item p::before {
  content: "";
  position: absolute;
  height: 1px;
  display: block;
  z-index: 1;
}
.trouble-list__item p::before {
  width: 10px;
  background-color: var(--white-color);
  bottom: -1px;
  right: 6.25em;
}
.trouble-list__item p::after {
  width: 20px;
  bottom: 0;
  translate: 0 750%;
  rotate: -45deg;
  right: 6.125em;
  background-color: var(--sub-color);
  transform-origin: center;
}
.trouble-list__item:nth-child(even) {
  text-align: right;
}
.trouble-list__item:nth-child(4n+3) {
  padding-left: 20px;
}
.trouble-list__item:nth-child(4n) {
  padding-right: 20px;
}

/*------------------------------
*
* seminar-flow
*
------------------------------*/
.seminar-flow {
  padding-top: 110px;
  background: url(../img/reserve/nami_bottom_theme.png) repeat-x top center/auto;
}
.seminar-flow__container {
  gap: 40px 4%;
  justify-content: center;
}
.seminar-flow-item {
  width: 100%;
  max-width: 520px;
}
.seminar-flow-item__ttl {
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-regular);
  padding-bottom: 0.5em;
  background: url(../img/pattern/dot_border_main.png) repeat-x bottom left/auto 3px;
  font-weight: var(--font-weight-regular);
  width: 100%;
  margin-bottom: 20px;
}
.seminar-flow-list__item {
  background-color: #fff5f8;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-none);
  font-family: var(--font-semi);
  padding: 0.6388888889em 1em;
  font-weight: var(--font-weight-medium);
}
.seminar-flow-list__item:not(:last-child) {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.seminar-flow-list__item:not(:last-child)::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/art/flow_arrow.png) no-repeat center/contain;
  position: absolute;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.seminar-flow__txt {
  margin-top: 45px;
  font-size: var(--font-size-18);
}

/* ===========================================
*
* main style course-page
*
* ======================================== */
.course-wrapper {
  background: url(../img/course/course_bg.png) no-repeat top center/max(1920px, 100%);
}

.course-link {
  padding-top: 75px;
  padding-bottom: 15px;
}
.course-link__flex {
  gap: 15px 4%;
  justify-content: center;
}
.course-link__btn {
  max-width: 520px;
  width: 100%;
  --btn-height: 72px;
  --btn-font-size: var(--font-size-20);
  padding: 0;
  font-family: var(--font-sub);
  letter-spacing: var(--letter-spacing-small);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  border: 1px solid var(--sub-color);
  border-radius: var(--round-10);
}
.course-link__btn__inner {
  display: block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border-radius: var(--round-10);
  border: 3px solid var(--white-color);
  height: 100%;
  width: 100%;
}

/*------------------------------
*
* sessiion
*
------------------------------*/
.session__sentence {
  width: 100%;
  margin: 0 auto;
  background: url(../img/course/session_contents_bg.jpg) no-repeat top center/cover;
  padding: 40px 5%;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-semi);
  letter-spacing: var(--letter-spacing-none);
  position: relative;
  z-index: 1;
  border-radius: 4px;
}
.session__sentence::before {
  content: "";
  width: 96.6px;
  height: 90.3px;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  translate: -14.4927536232% -63.5658914729%;
  background: url(../img/ink_deco01.png) no-repeat top center/contain;
}
.session__sentence .medium {
  font-size: 1.25em;
}
.session__sentence .big {
  font-size: 1.75em;
}
.session__sentence .small {
  font-size: 1em;
}
.session__sentence p:first-child {
  line-height: 1.5;
  margin-bottom: 2.4em;
  text-align: center;
}
.session__sub-ttl {
  margin-bottom: 24px;
  margin-top: 64px;
}
.session__img {
  margin-top: 40px;
  gap: 15px;
  width: 100%;
  justify-content: center;
}
.session__img__item {
  width: calc((100% - 15px) / 2);
  aspect-ratio: 34/22;
}
.session__txt01 p:first-child {
  margin-bottom: 2em;
}
.session__txt01 .big {
  font-size: 1.25em;
  margin-bottom: 1em;
  line-height: 1.6;
  margin-top: 1em;
}
.session__check-list {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  justify-content: center;
}
.check-list__item {
  width: 480px;
  border-bottom: 1px dashed #a0a0a0;
  font-size: var(--font-size-18);
  letter-spacing: var(--letter-spacing-none);
  font-family: var(--font-semi);
  padding-block: 0.3863636364em;
}
.check-list__item p {
  padding-left: 1.363em;
  position: relative;
  z-index: 1;
}
.check-list__item p::before {
  content: "";
  width: 0.7727em;
  height: 0.8636em;
  background: url(../img/check_mark.png) no-repeat top center/contain;
  position: absolute;
  top: 0.75em;
  left: 0;
  transform: translateY(-50%);
}

/*------------------------------
*
* benefit
*
------------------------------*/
.benefit {
  padding-top: 100px;
  background: url(../img/reserve/nami_bottom_theme.png) repeat-x top center/auto;
}
.benefit__ttl {
  margin-bottom: 56px;
}
.benefit__container {
  --col-item-x-space: 40px;
  --col-item-y-space: 48px;
  justify-content: center;
}
.benefit-item {
  background: url(../img/course/benefit_item_bg.jpg) no-repeat top center/cover;
  padding: 50px 6% 30px;
  border-radius: var(--round-10);
  position: relative;
  z-index: 1;
}
.benefit-item__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -20.618556701%);
  z-index: 1;
  width: 15.1333333333em;
  height: 3.2333333333em;
  font-size: var(--font-size-26);
  padding-top: 0.25em;
  text-align: center;
  background: url(../img/course/benefit_ribbon.png) no-repeat top center/contain;
}
.benefit-item__ttl {
  font-size: var(--font-size-22);
  margin-bottom: 25px;
  line-height: 1.3846153846em;
  letter-spacing: var(--letter-spacing-none);
}
.benefit-item__img {
  width: 100%;
  aspect-ratio: 46/28;
}
.benefit-item__img > img {
  width: 100%;
}
.benefit__sub-ttl {
  margin-top: 54px;
  font-size: var(--font-size-24);
  line-height: 1.3846153846em;
  margin-bottom: 32px;
}
.benefit__btns {
  gap: 15px 40px;
  justify-content: center;
}
.benefit__btn {
  max-width: 520px;
  width: 100%;
  --btn-height: 70px;
  --btn-font-size: var(--font-size-20);
  font-family: var(--font-sub);
  border-radius: var(--round-10);
}

/*------------------------------
*
* voice
*
------------------------------*/
.voice--course {
  padding-top: 0px;
  background-color: #f8f5ff;
  padding: 75px 0;
}
.voice__container {
  justify-content: center;
  --col-item-x-space: 30px;
  --col-item-y-space: 36px;
}
.voice__box {
  padding: 0;
}
.voice-item {
  max-width: 480px;
  width: 100%;
}
.voice-item__img {
  aspect-ratio: 34/28;
  width: 100%;
  border-radius: var(--round-10);
  overflow: hidden;
  margin-bottom: 15px;
}
.voice-item__head {
  padding-bottom: 11px;
  border-bottom: 1px dashed #a0a0a0;
  margin-bottom: 12px;
  justify-content: space-between;
  align-items: center;
  gap: 8px 10px;
}
.voice-item__ttl {
  flex-shrink: 1;
}
.voice-item__info {
  flex-shrink: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 4px 8px;
}
.voice-item__job {
  font-size: 13px;
}
.voice-item__age {
  min-width: 54px;
  line-height: 21px;
  text-align: center;
  display: inline-block;
  padding-inline: 0.5em;
  border-radius: 4px;
}
.voice-item__content {
  --sentence-line-height: 1.6875;
}

/*------------------------------
*
* special
*
------------------------------*/
.special__container {
  --col-item-x-space: 30px;
  --col-item-y-space: 36px;
  justify-content: center;
}
.special-item {
  max-width: 480px;
}
.special-item__img {
  aspect-ratio: 34/28;
  width: 100%;
  border-radius: var(--round-10);
  overflow: hidden;
  margin-bottom: 11px;
}
.special-item__ttl {
  --sentence-line-height: 1.6875;
  font-weight: var(--font-weight-regular);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.special-item__content {
  margin-top: 16px;
  font-size: 14px;
}

/*------------------------------
*
* tokisora
*
------------------------------*/
.tokisora {
  padding-top: 15px;
}
.tokisora__container {
  flex-direction: column-reverse;
  align-items: center;
}
.tokisora__img {
  max-width: 683px;
  width: 90%;
  margin: 0 auto 32px;
}
.tokisora-item {
  width: 100%;
  margin-left: auto;
}
.tokisora-item__ttl {
  font-size: var(--font-size-20);
  letter-spacing: 0.06em;
  margin-bottom: 26px;
  text-align: center;
}
.tokisora-item__price {
  font-size: var(--font-size-16);
  --sentence-line-height: 1.5;
  margin-bottom: 24px;
}
.tokisora-item__content {
  font-size: var(--font-size-base);
  --sentence-line-height: 1.675;
}

/* ===========================================
*
* main style reserve
*
* ======================================== */
/*------------------------------
*
* schedule 日程について
*
------------------------------*/
.schedule__table {
  width: 100%;
  min-width: 560px;
  letter-spacing: var(--letter-spacing-regular);
  line-height: 2.778;
}
.schedule__table-over {
  width: 100%;
  overflow: auto;
}
.schedule__table th,
.schedule__table td {
  width: 25%;
  padding-block: -0.0001111111em;
  padding-inline: 0.5em;
  text-align: center;
}
.schedule__table thead th {
  background-color: var(--main-color);
  color: var(--white-color);
}
.schedule__table thead th:not(:last-child) {
  border-right: solid 1px #cecece;
}
.schedule__table tbody tr {
  border-bottom: dashed 1px #cecece;
}
.schedule__table tbody td:not(:last-child) {
  border-right: solid 1px #cecece;
}

/*------------------------------
*
* course-info
*
------------------------------*/
.course-info {
  padding-top: 100px;
  position: relative;
  z-index: 1;
  background-color: #f8f5ff;
}
.course-info::before {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/reserve/nami_white.png) repeat-x top center/contain;
}
.course-info-data__item {
  font-size: var(--font-size-16);
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.6;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: dashed 1px #cecece;
}
.course-info-data__item:not(:last-child) {
  margin-bottom: 22px;
}
.course-info-data__item dt {
  width: 100px;
  margin-bottom: 0.5em;
  line-height: 2em;
}
.course-info-data__item dt > span {
  display: inline-block;
  width: 100%;
}
.course-info-data__item dd {
  width: 100%;
  padding-top: 0.3em;
}
.course-info-data__item dd .cmn-sentence {
  --sentence-p-margin: 1em;
  --sentence-line-height: 1.6;
}
.course-info-data__item .underline {
  text-decoration-thickness: 1px !important;
}

/*------------------------------
*
* contact
*
------------------------------*/
.contact {
  background: url(../img/reserve/contact_bg.jpg) no-repeat top center/cover;
}
.contact--reserve {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}
.contact--reserve::before {
  content: "";
  width: 100%;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/reserve/nami_bottom_theme.png) repeat-x top center/contain;
}
.contact__box {
  padding: 64px 6%;
}
.contact__btns {
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__btn {
  max-width: 340px;
  width: 100%;
  --btn-height: 70px;
  --btn-font-size: var(--font-size-18);
  --icon-width: 1.667em;
  --icon-height: 1.667em;
  --icon-space: 2.88em;
}
.contact__link-sns {
  --sns-icon-size: 36px;
  margin-top: 8px;
}
.contact-link {
  display: grid;
  place-content: center;
  border-radius: var(--round-10);
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid var(--sub-color);
  box-sizing: border-box;
  height: 120px;
  width: 100%;
  max-width: 340px;
}
.contact-link__container {
  gap: 15px 25px;
  margin-top: 40px;
  justify-content: center;
}
.contact-link::after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 1;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--main-color) 0%, #cd95c4 100%);
  transition: opacity 0.3s;
}
.contact-link__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--round-10);
  border: 3px solid var(--white-color);
  height: 100%;
  width: 100%;
}
.contact-link__ttl {
  line-height: 1.6875;
  letter-spacing: var(--letter-spacing-none);
  color: var(--white-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5em;
  width: 100%;
}
.contact-link__arrow {
  width: 16px;
  margin-top: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0% -50%;
}
.contact-link--course {
  width: 100%;
  background: url(../img/reserve/couse_banner_img.jpg) no-repeat top center/cover;
}
.contact-link--course .contact-link__ttl {
  font-size: var(--font-size-18);
}
.contact-link--course::after {
  opacity: 0.75;
}
.contact-link:hover::after {
  opacity: 1;
}
.contact-transfer {
  padding: 30px 6%;
  margin-top: 40px;
}
.contact-transfer__ttl {
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-medium);
  padding-bottom: 0.65em;
  background: url(../img/pattern/dot_border_main.png) repeat-x left bottom/auto 3px;
  margin-bottom: 20px;
}
/* ===========================================
*
* main style instructor page
*
* ======================================== */
/*------------------------------
*
* about
*
------------------------------*/
.about {
  background: url(../img/instructor/instructor_bg.png) no-repeat bottom 21px center/max(960px, 100%);
}

.about-instructor {
  flex-direction: column-reverse;
  align-items: center;
}
.about-instructor__box {
  width: 100%;
  position: relative;
  z-index: 5;
}
.about-instructor__name {
  font-size: var(--font-size-20);
  padding-bottom: 1em;
  background: url(../img/pattern/dot_border_main.png) repeat-x bottom left/auto;
  width: 100%;
  margin-bottom: 24px;
}
.about-instructor__name__post {
  margin-bottom: 8px;
  width: 100%;
  display: block;
}
.about-instructor__name__main {
  height: 1.4em;
  display: block;
}
.about-instructor__img {
  max-width: 250px;
  width: 60%;
  position: relative;
  z-index: 1;
  margin: 0 auto 24px;
}
.about-instructor__img::after {
  content: "";
  width: 55.2%;
  height: 51.6%;
  background: url(../img/ink_deco01.png) no-repeat top center/contain;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  translate: 65.2173913043% -77.519379845%;
}
.about-instructor__sentence {
  --sentence-line-height: 2;
  --sentence-p-margin: 2em;
}

.about-career {
  margin-top: 70px;
}
.about-career__ttl {
  font-size: var(--font-size-24);
  letter-spacing: var(--letter-spacing-regular);
  padding-bottom: 0.5em;
  background: url(../img/pattern/dot_border_main.png) repeat-x bottom left/auto 3px;
  margin-bottom: 20px;
  font-weight: var(--font-weight-regular);
}
.about-career__list {
  line-height: 2;
}
.about-career__list__item:not(:last-child) {
  margin-bottom: 1em;
}
.about-career__list__item > span {
  width: 100%;
  display: block;
}

/*------------------------------
*
* greeting
*
------------------------------*/
.greeting {
  padding-top: 0;
}
.greeting__sentence02 {
  margin-top: 72px;
  font-size: var(--font-size-18);
  --sentence-line-height: 1.68;
}

/*------------------------------
*
* works
*
------------------------------*/
.works {
  margin-bottom: 75px;
}
.works__box {
  background-color: #f8f5ff;
  padding-inline: 6%;
}
.works__container {
  --col-item-x-space: 40px;
  --col-item-y-space: 36px;
  justify-content: center;
}
.works-item {
  max-width: 480px;
}
.works-item__img {
  border-radius: var(--round-10);
  overflow: hidden;
  margin-bottom: 12px;
  width: 100%;
  aspect-ratio: 52/34;
  position: relative;
  z-index: 5;
}
.works-item__ttl {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.6875;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.works .pagenation {
  --pagenation-item-bg: var(--white-color);
}

/*------------------------------
*
* news,blog
*
------------------------------*/
.cmn-post {
  width: 100%;
  --post-width: 100%;
  --post-item-flex-marign-space: 10px;
  --post-link-padding:16px 0;
  --tag-wrapper-width: calc(100% - 100px);
  --post-title-line: 1;
  --post-title-font-size: 14px;
  --post-date-font-size: 13px;
  width: var(--post-width);
}
.cmn-post-item {
  width: 100%;
  border-bottom: 1px dashed #a0a0a0;
}
.cmn-post-item:first-child {
  padding-top: 0;
}
.cmn-post__flex {
  margin-bottom: 10px;
}
.cmn-post__box {
  width: 64%;
}
.cmn-post__box.w-100 {
  width: 100%;
}
.cmn-post__thumb {
  width: 32%;
  aspect-ratio: 18/11;
  border-radius: var(--round-5);
  overflow: hidden;
}
.cmn-post__tag-wrapper {
  width: calc(100% - 100px);
}
.cmn-post__link {
  padding: var(--post-link-padding, 20px 30px);
}
.cmn-post__date {
  line-height: 1;
  font-size: var(--post-date-font-size, 16px);
  border-radius: 3px;
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  padding: 0 8px;
  color: var(--white-color);
  background-color: var(--main-color);
}
.cmn-post__ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  width: 100%;
  font-size: var(--post-title-font-size, 16px);
}

/*---------- detail ここから ----------*/
.tag {
  --tag-font-size: 12px;
  --tag-letter-space: var(--letter-spacing-regular);
  --tag-color: var(--main-text-color);
  --tag-btn-round: 3px;
  display: inline-block;
  font-size: var(--tag-font-size);
  letter-spacing: var(--tag-letter-space);
  color: var(--tag-color);
  border-radius: var(--tag-round);
  font-weight: var(--font-weight-regular);
}
.tag-btn-wrapper {
  margin-bottom: 30px;
  gap: 10px;
}
.tag__btn {
  padding: 0.5em 1em;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  color: #b3b3b3;
  border-radius: 3em;
  display: inline-block;
  transition: all 0.3s;
}
.tag__btn:hover {
  color: #fff;
  background-color: #ad88c6;
  opacity: 1;
  border: 1px solid #ad88c6;
}
.tag__btn.current {
  color: #fff;
  background-color: #ad88c6;
  border: 1px solid #ad88c6;
}
.tag-wrapper {
  justify-content: flex-start;
  gap: 8px 10px;
}

.post-detail {
  position: relative;
  z-index: 5;
}
.post-detail__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.post-detail__date {
  order: 1;
  margin-bottom: 12px;
  line-height: 1;
  font-size: 14px;
  border-radius: 4px;
  font-weight: var(--font-weight-regular);
  line-height: 24px;
  padding: 0 10px;
  color: var(--white-color);
  background-color: var(--main-color);
}
.post-detail__tag-wrapper {
  order: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  gap: 10px;
}
.post-detail__ttl {
  order: 3;
  width: 100%;
  font-size: var(--font-size-24);
  border-left: 5px solid var(--main-color);
  font-weight: var(--font-weight-bold);
  padding-left: 0.75em;
  margin-bottom: 24px;
}
.post-detail__img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 24px;
}

/*------------------------------
*
* sitemap
*
------------------------------*/
.sitemap-list {
  max-width: 560px;
  margin: 0 auto;
}
.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}
.sitemap-list__link {
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--main-color);
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  position: absolute;
  top: 50%;
  right: 1.5em;
  transition: all 0.3s;
  transform: translateY(-50%) rotate(45deg);
}
.sitemap-list__link:hover {
  color: var(--main-color);
}
.sitemap-list__link:hover::after {
  right: 1em;
}

/*------------------------------
*
* privacy
*
------------------------------*/
.privacy-ttl {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-medium);
  line-height: 1.5em;
  margin-bottom: 20px;
  border-left: 5px solid var(--main-color);
  padding-left: 0.75em;
}

.privacy-box {
  margin-bottom: 40px;
}

.privacy-box:last-child {
  margin-bottom: 0;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url(../img/footer_bg.jpg) no-repeat top center/cover;
  padding: 56px 0 48px;
}
.footer-inner {
  justify-content: space-between;
}
.footer__flex {
  flex-direction: column;
  align-items: center;
}
.footer__logo {
  margin: 0 auto 36px;
}
.footer-nav {
  width: 100%;
  margin-top: 40px;
}
.footer-nav__list {
  gap: 1em 2%;
  margin: 0 auto;
  max-width: 360px;
}
.footer-nav__item {
  width: 48%;
}
.footer-nav__link {
  line-height: 1;
  font-size: 12px;
  padding-bottom: 0.75em;
  --hov-color-to: var(--sub-color, #ad88c6);
  border-bottom: 1px solid rgba(var(--white-color-rgb), 1);
}
.footer-nav__link:hover {
  border-color: var(--sub-color);
}
.footer-nav__link.current {
  color: var(--sub-color);
  border-color: var(--sub-color);
}
.footer-info {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.footer__copy {
  font-size: 11px;
  letter-spacing: var(--letter-spacing-base);
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
  color: var(--sub-color);
  margin-top: 48px;
}/*# sourceMappingURL=style_sp.css.map */

.art-work_txt_edit{
 text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
 color: #fff;
}
.benefits_cover{
 margin-bottom: 60px;
}
