@charset "UTF-8";
/*
Theme Name: INDIG_Base_Theme
Author: INDIG
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

/*----------------------------------------------------------------------
font-family
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
color
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
font-size
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
letter-spacing
----------------------------------------------------------------------*/
/**
* レスポンシブな最小値を計算する
* @param {Number} $px - 目標のピクセル値
* @param {Number} $width - 基準となる画面幅（デフォルト: 375px）
* @return {String} vw単位とpx単位の小さい方の値
*/
/**
* レスポンシブな最大値を計算する
* @param {Number} $px - 目標のピクセル値
* @param {Number} $width - 基準となる画面幅（デフォルト: 375px）
* @return {String} vw単位とpx単位の大きい方の値
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #020202;
  background-color: #f5f2ef;
  max-width: 1440px;
  margin: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
}

h3 {
  letter-spacing: 0.04em;
}

p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

a,
button {
  color: #ac0000;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover,
button:hover {
  color: #980000;
}

button {
  width: 100%;
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

input select {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

body {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}

/* フォント読み込み中 */
body.fonts-loading {
  opacity: 0;
}

/* 全ての読み込みが完了: 表示 */
html.ready:not(.fonts-loading) body {
  opacity: 1;
}

.accent {
  color: #ac0000;
}

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

.container-xs {
  max-width: clamp(20.4375rem, calc(3.8661971831rem + 70.7042253521vw), 67.5rem);
  min-width: clamp(20.4375rem, calc(3.8661971831rem + 70.7042253521vw), 67.5rem);
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .container-xs {
    max-width: 80%;
  }
}

.container {
  max-width: clamp(20.4375rem, calc(-0.5352112676rem + 89.4835680751vw), 80rem);
  min-width: clamp(20.4375rem, calc(-0.5352112676rem + 89.4835680751vw), 80rem);
  margin: 0 auto;
  max-width: 87.2%;
}
@media screen and (min-width: 1025px) {
  .container {
    max-width: 80%;
  }
}

.container-xl {
  max-width: clamp(20.4375rem, calc(-0.5352112676rem + 89.4835680751vw), 80rem);
  min-width: clamp(20.4375rem, calc(-0.5352112676rem + 89.4835680751vw), 80rem);
  margin: 0 auto;
}

.button {
  display: inline-block;
  padding: clamp(0.5rem, calc(0.323943662rem + 0.7511737089vw), 1rem) clamp(1rem, calc(0.6478873239rem + 1.5023474178vw), 2rem);
  background-color: #ac0000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.button:hover {
  background-color: #980000;
}

.flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Flex Direction */
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* Justify Content */
.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

/* Align Items */
.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/* Flex Wrap */
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

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

@media screen and (min-width: 576px) {
  .hidden-sm-up {
    display: none !important;
  }
}

.visible-sm-up {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .visible-sm-up {
    display: block !important;
  }
}

.visible-sm-up-inline {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .visible-sm-up-inline {
    display: inline !important;
  }
}

.visible-sm-up-inline-block {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .visible-sm-up-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 768px) {
  .hidden-tab-up {
    display: none !important;
  }
}

.visible-tab-up {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .visible-tab-up {
    display: block !important;
  }
}

.visible-tab-up-inline {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .visible-tab-up-inline {
    display: inline !important;
  }
}

.visible-tab-up-inline-block {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .visible-tab-up-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1025px) {
  .hidden-pc-up {
    display: none !important;
  }
}

.visible-pc-up {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .visible-pc-up {
    display: block !important;
  }
}

.visible-pc-up-inline {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .visible-pc-up-inline {
    display: inline !important;
  }
}

.visible-pc-up-inline-block {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .visible-pc-up-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1280px) {
  .hidden-lg-up {
    display: none !important;
  }
}

.visible-lg-up {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .visible-lg-up {
    display: block !important;
  }
}

.visible-lg-up-inline {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .visible-lg-up-inline {
    display: inline !important;
  }
}

.visible-lg-up-inline-block {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .visible-lg-up-inline-block {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1440px) {
  .hidden-xl-up {
    display: none !important;
  }
}

.visible-xl-up {
  display: none !important;
}
@media screen and (min-width: 1440px) {
  .visible-xl-up {
    display: block !important;
  }
}

.visible-xl-up-inline {
  display: none !important;
}
@media screen and (min-width: 1440px) {
  .visible-xl-up-inline {
    display: inline !important;
  }
}

.visible-xl-up-inline-block {
  display: none !important;
}
@media screen and (min-width: 1440px) {
  .visible-xl-up-inline-block {
    display: inline-block !important;
  }
}

.visible-xs {
  display: block !important;
}
@media screen and (min-width: 576px) {
  .visible-xs {
    display: none !important;
  }
}

.hidden-xs {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .hidden-xs {
    display: block !important;
  }
}

.visible-xs-inline {
  display: inline !important;
}
@media screen and (min-width: 576px) {
  .visible-xs-inline {
    display: none !important;
  }
}

.visible-xs-inline-block {
  display: inline-block !important;
}
@media screen and (min-width: 576px) {
  .visible-xs-inline-block {
    display: none !important;
  }
}

/*
* ================================================================================
* partsディレクトリ配下ファイル用のスタイル
* ================================================================================
*/
/*
* --------------------------------------------------------------------------------
* button_back_to_top.php (「トップページへ」ボタン)
* --------------------------------------------------------------------------------
*/
.button-back_to_top {
  width: min(54.4vw, 204px);
}
.button-back_to_top a.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #980000;
  font-size: 0.9375rem;
  font-weight: 800;
  background-color: white;
  padding: 1rem 0;
  border: 1px solid #980000;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .button-back_to_top a.btn {
    padding: 0.625rem 0;
  }
}
.button-back_to_top a.btn::before {
  content: "";
  background: url(../img/common/decoration-button-red.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 0.5rem;
  aspect-ratio: 8/12;
}
.button-back_to_top a.btn:hover {
  opacity: 0.5;
}

/*
* --------------------------------------------------------------------------------
* button_common.php (汎用ボタン)
* --------------------------------------------------------------------------------
*/
.button-common a.btn,
.button-common button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-color: #980000;
  font-family: "Nico Moji", "Corporate-Logo-Rounded", "Yusei Magic", "M PLUS Rounded 1c", system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid #980000;
  border-radius: 0.3125rem;
  text-decoration: none;
}
.button-common a.btn::before,
.button-common button.btn::before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: "";
  background: url(../img/common/decoration-button-white.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 0.5rem;
  aspect-ratio: 8/12;
  margin-right: 0.5rem;
}
.button-common a.btn:hover,
.button-common button.btn:hover {
  color: #980000;
  background-color: #ffffff;
}
.button-common a.btn:hover::before,
.button-common button.btn:hover::before {
  content: "";
  background: url(../img/common/decoration-button-red.svg) no-repeat;
  background-size: contain;
}

/*
* ----------------------------------------
* 見出しレベル3 
* ----------------------------------------
*/
/*----------------------------------------------------------------------
header
----------------------------------------------------------------------*/
header#header {
  display: inline-block;
}
header#header .header_contents_wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: clamp(3.75rem, calc(3.661971831rem + 0.3755868545vw), 4rem);
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
}
header#header .header_contents {
  height: inherit;
}
header#header .logo {
  width: clamp(4.5625rem, calc(4.0233274648rem + 2.3004694836vw), 6.09375rem);
}
header#header .button-common {
  width: clamp(8.5rem, calc(7.9718309859rem + 2.2535211268vw), 10rem);
}
header#header .button-common a.btn {
  padding: clamp(0.5rem, calc(0.4559859155rem + 0.1877934272vw), 0.625rem) 0;
}
header#header .header_inner {
  z-index: 1;
  height: 100%;
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/
footer {
  border-top: 1px solid #980000;
  padding: 0.75rem 0;
}
footer .img-area {
  width: 4.5625rem;
  aspect-ratio: 73/20;
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  vertical-align: bottom;
}
footer .text-area {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .text-area a {
  font-size: clamp(0.75rem, calc(0.7279929577rem + 0.0938967136vw), 0.8125rem);
}
footer .text-area a:hover {
  opacity: 0.5;
}
footer .text-area small {
  font-size: clamp(0.625rem, calc(0.5809859155rem + 0.1877934272vw), 0.75rem);
  color: #980000;
  letter-spacing: 0.08em;
}
footer .text-area small span.copyright {
  color: #980000;
}
@media screen and (min-width: 768px) {
  footer .text-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: min(3.8888888889vw, 56px);
  }
}

/*----------------------------------------------------------- トップページ ----------------------------------------------------------------------*/
main.front_page {
  /*----------------------------------------------------------------------
    共通
    ----------------------------------------------------------------------*/
  /*---------------------------------------
    MV
    -----------------------------------------*/
}
main.front_page p:not(:first-of-type) {
  margin-top: 0.875rem;
}
main.front_page .s_mv {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.front_page .s_mv::before {
  content: "";
  background: url("/assets/img/common/icon-azukiiro-brown.svg") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  max-width: 18.75rem;
  aspect-ratio: 1;
}
main.front_page .s_mv .s_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
main.front_page .s_mv h1 {
  font-size: clamp(3rem, calc(1.9436619718rem + 4.5070422535vw), 6rem);
  font-weight: 500;
  font-family: "Nico Moji", "Corporate-Logo-Rounded", "Yusei Magic", "M PLUS Rounded 1c", system-ui, sans-serif;
}
main.front_page .s_mv h2 {
  font-size: clamp(0.75rem, calc(0.485915493rem + 1.1267605634vw), 1.5rem);
  font-weight: 700;
}
main.front_page .s_about .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(6.4vw, 24px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  main.front_page .s_about .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
main.front_page .s_about .profile-img {
  max-width: 37.5rem;
}
main.front_page .s_about .profile-img img {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0.95;
  -webkit-filter: brightness(98%) contrast(95%);
          filter: brightness(98%) contrast(95%);
}
main.front_page .s_about .text-area .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: clamp(1.5rem, calc(0.9718309859rem + 2.2535211268vw), 3rem);
}
main.front_page .s_about .text-area .name h2,
main.front_page .s_about .text-area .name h3 span.roma {
  font-family: "Nico Moji", "Corporate-Logo-Rounded", "Yusei Magic", "M PLUS Rounded 1c", system-ui, sans-serif;
}
main.front_page .s_about .text-area .name h2,
main.front_page .s_about .text-area .name h3 {
  font-weight: 700;
}
main.front_page .s_about .text-area .name h2 {
  font-size: clamp(2rem, calc(1.2957746479rem + 3.0046948357vw), 4rem);
  margin-bottom: 2.5rem;
}
main.front_page .s_about .text-area .name h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
main.front_page .s_about .text-area .name h3 span.japanese {
  font-size: clamp(1.25rem, calc(0.8098591549rem + 1.8779342723vw), 2.5rem);
}
main.front_page .s_about .text-area .name h3 span.roma {
  font-size: clamp(1.875rem, calc(1.2147887324rem + 2.8169014085vw), 3.75rem);
}
main.front_page .s_about .text-area p {
  font-weight: 700;
  line-height: 1.8;
}
main.front_page .s_about .text-area .position {
  border-left: 1px solid #746a5e;
  color: #746a5e;
  font-weight: 600;
  padding-left: 1.25rem;
  font-size: clamp(1rem, calc(0.6478873239rem + 1.5023474178vw), 2rem);
}

body:has(main.pages) {
  position: relative;
}
body:has(main.pages)::before {
  content: "";
  background: url(../img/pages/decoration_pages_sp.svg) no-repeat;
  background-size: contain;
  display: block;
  width: clamp(16.02625rem, calc(10.719471831rem + 22.6422535211vw), 31.0975rem);
  aspect-ratio: 497.56/326;
  position: absolute;
  top: -1.5rem;
  left: -4.25rem;
}
@media screen and (min-width: 768px) {
  body:has(main.pages)::before {
    background: url(../img/pages/decoration_pages_pc.svg) no-repeat;
    background-size: contain;
    top: -5.5625rem;
    left: -7.5rem;
  }
}

main.pages.regular_pages {
  position: relative;
  overflow: hidden;
}
main.pages.regular_pages:after {
  position: relative;
  content: "";
  background: url(../img/pages/decoration_pages_sp.svg) no-repeat;
  background-size: contain;
  display: block;
  width: clamp(16rem, calc(10.6302816901rem + 22.9107981221vw), 31.25rem);
  aspect-ratio: 500/326;
  position: absolute;
  bottom: clamp(4.875rem, calc(4.3468309859rem + 2.2535211268vw), 6.375rem);
  right: -2.83875rem;
}
@media screen and (min-width: 768px) {
  main.pages.regular_pages:after {
    background: url(../img/pages/decoration_pages_pc.svg) no-repeat;
    background-size: contain;
    right: -4.4725rem;
  }
}
main.pages.regular_pages h1.pages-title {
  font-size: clamp(1.5rem, calc(0.9718309859rem + 2.2535211268vw), 3rem);
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.625rem, calc(0.3169014085rem + 1.3145539906vw), 1.5rem);
}
main.pages.regular_pages h1.pages-title::after {
  content: "";
  background: url(../img/pages/decoration-pages-title.svg) no-repeat;
  background-size: contain;
  display: block;
  width: clamp(1.125rem, calc(0.7068661972rem + 1.7840375587vw), 2.3125rem);
  aspect-ratio: 37/24;
}
main.pages.regular_pages .page-body {
  margin: 4.1875rem 0 9.0625rem;
}
@media screen and (min-width: 1025px) {
  main.pages.regular_pages .page-body {
    margin: 6.375rem 0 8.25rem;
  }
}
main.pages p {
  font-weight: 500;
}
main.pages .page-body p:not(:last-of-type) {
  margin-bottom: 0.875rem;
}

/*
* ================================================================================
* 説明
* ================================================================================
*/
/*
* --------------------------------------------------------------------------------
* セクション1
* --------------------------------------------------------------------------------
*/
/*
* ================================================================================
* お問い合わせページ
* ================================================================================
*/
/*
* --------------------------------------------------------------------------------
* 左側の注意点
* --------------------------------------------------------------------------------
*/
.pages_contact .contact-note a {
  text-decoration: underline;
}

/*
* ----------------------------------------
* 右側のフォーム部分
* ----------------------------------------
*/
.pages_contact .contact-wrapper {
  gap: clamp(3rem, calc(1.5035211268rem + 6.3849765258vw), 7.25rem);
}
@media screen and (min-width: 1025px) {
  .pages_contact .contact-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.pages_contact .contact-form {
  border: 1px solid #980000;
  border-radius: 1.5rem;
  padding: clamp(2.5rem, calc(2.1478873239rem + 1.5023474178vw), 3.5rem) clamp(1.5rem, calc(0.7957746479rem + 3.0046948357vw), 3.5rem);
  background: #ffffff;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1025px) {
  .pages_contact .contact-form {
    min-width: min(157.8666666667vw, 592px);
  }
}
.pages_contact .form-group__wrapper {
  margin-bottom: 2.5rem;
}
.pages_contact .form-group__wrapper .form-group:not(:last-of-type) {
  margin-bottom: 2rem;
}
.pages_contact .form-group__wrapper .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.pages_contact .form-group__wrapper .form-group label span {
  margin-left: 0.5rem;
  font-size: 0.6875rem;
  color: #ffffff;
  background: #980000;
  padding: 0.125rem 0.625rem;
  border-radius: 0.25rem;
  font-weight: bold;
}
.pages_contact .form-group__wrapper .form-group input,
.pages_contact .form-group__wrapper .form-group textarea {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid #ac0000;
  background: #fafafa;
  font-size: 0.875rem;
  width: 100%;
  border-radius: none;
}
.pages_contact .form-group {
  position: relative;
}
.pages_contact .form-group.privacy-policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pages_contact .form-group.privacy-policy input {
  margin-right: 0.5rem;
}
.pages_contact .form-button {
  margin-top: clamp(2.5rem, calc(2.1478873239rem + 1.5023474178vw), 3.5rem);
}
.pages_contact .form-button .button-common {
  width: min(42.1333333333vw, 158px);
  margin: auto;
}
.pages_contact .form-button .button-common button.btn {
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .pages_contact .form-button .button-common button.btn {
    padding: 0.625rem 0;
  }
}

/*
* ----------------------------------------
* contact-form-7用のスタイルを上書き
* ----------------------------------------
*/
.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  font-weight: 500;
}

.form-group.privacy-policy .wpcf7-not-valid-tip {
  position: absolute;
  white-space: nowrap;
}

/*
* ----------------------------------------
* contact-form-7のデフォルトのスタイルをリセット
* ----------------------------------------
*/
.wpcf7 br {
  display: none;
}

.wpcf7-list-item {
  margin: initial;
}

/*
* ----------------------------------------
* チェックボックスカスタマイズ
* ----------------------------------------
*/
/* チェックボックスの基本スタイル */
.wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
}

/* カスタムチェックボックス */
label.wpcf7-list-item {
  position: relative;
  padding-left: 1.75rem;
  cursor: pointer;
}

label.wpcf7-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 2px;
  border: 2px solid #464646;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wpcf7-list-item-label::before {
  display: none;
}

/* チェック時のスタイル */
label.wpcf7-list-item:has(input[type=checkbox]:checked)::before {
  background: #980000;
  border-color: #980000;
}

/* チェックマーク */
.wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
}

/*
* ================================================================================
* 404やサンクスページ等の共通ページスタイル
* ================================================================================
*/
main.response_pages .container {
  margin-top: clamp(3.75rem, calc(2.4075704225rem + 5.7276995305vw), 7.5625rem);
}
main.response_pages h1.response {
  font-family: "Nico Moji", "Corporate-Logo-Rounded", "Yusei Magic", "M PLUS Rounded 1c", system-ui, sans-serif;
  font-size: clamp(0.875rem, calc(0.6549295775rem + 0.9389671362vw), 1.5rem);
  color: #980000;
  margin-bottom: clamp(0.5rem, calc(0.323943662rem + 0.7511737089vw), 1rem);
}
main.response_pages h2.overview {
  font-size: clamp(2rem, calc(1.6478873239rem + 1.5023474178vw), 3rem);
  font-weight: bold;
}
main.response_pages p {
  margin-top: clamp(2rem, calc(1.823943662rem + 0.7511737089vw), 2.5rem);
}
main.response_pages .link_button {
  margin-top: clamp(2.5rem, calc(1.9718309859rem + 2.2535211268vw), 4rem);
}

/* フェードイン */
.fadeIn {
  opacity: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeUpTrigger,
.blurTrigger {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.delay-show1 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-show2 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}