@charset "UTF-8";
/* ======================================
   base reset
   ====================================== */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  padding: 0;
  margin: 0;
}

/* ======================================
   form base reset
   ====================================== */
form,
fieldset {
  border: none;
  margin: 0;
  padding: 0;
  min-inline-size: auto;
}

/* label */
label {
  display: block;
}

/* input, select, textarea共通 */
input,
select,
textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  color: inherit;
  background: #edf6f7;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 19.5px 15px;
  appearance: none;
  outline: none;
}

input:hover,
select:hover,
textarea:hover {
  border-color: transparent;
  border: 1px solid transparent;
}

input:focus,
select:focus,
textarea:focus,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: #049ead;
  box-shadow: none;
  outline: none;
}

/* Autofill 時も同じ見た目に（Chrome/Safari） */
input:-webkit-autofill,
select:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #edf6f7 inset; /* 背景を上書き */
  box-shadow: 0 0 0 1000px #edf6f7 inset;
  -webkit-text-fill-color: inherit;
}

input:-webkit-autofill:focus,
select:-webkit-autofill:focus,
textarea:-webkit-autofill:focus {
  border-color: #049ead;
  box-shadow: none;
}

/* Firefox の autofill */
input:-moz-autofill,
select:-moz-autofill,
textarea:-moz-autofill {
  box-shadow: 0 0 0 1000px #edf6f7 inset;
  -moz-text-fill-color: inherit;
}

select {
  padding: 23px 15px;
}

/* placeholder */
::placeholder {
  color: #bbb;
  opacity: 1;
}

/* select（プルダウン） */
select {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23000' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 12px auto;
  appearance: none;
}

select:has(option:checked[value=""]) {
  color: #bbb;
}

/* textarea */
textarea {
  min-height: 8em;
  resize: vertical;
  width: 100%;
}

.test {
  outline: 2px solid red;
}

.test2 {
  outline: 5px solid green;
}

:root {
  --font-size-default: 14px;
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Outfit", sans-serif;
  --line-height: 1.8;
  --lh-ll: 2.5;
  --lh-l: 1.8;
  --lh-m: 1.6;
  --lh-s: 1.2;
  --ls-m: 0.2em;
  --ls-s: 0.1em;
  --ls-ss: 0.05em;
  --ls-xs: 0.03em;
  --wt-default: 400;
  --wt-md: 600;
  --wt-b: 900;
  --fs-ll: 30px;
  --fs-l: 24px;
  --fs-ml: 20px;
  --fs-m: 16px;
  --fs-s: 13px;
  --fs-ss: 12px;
  --fs-xs: 10px;
  --c-bk: #000;
  --c-main: #096a92;
  --c-green: #2e5543;
  --c-red: #992e2c;
  --c-blue: #57c6d5;
  --c-g1: #666666;
  --c-lg1: #959595;
  --c-lg2: #c6c6c6;
  --c-bg: #f5f5f5;
  --c-wt: #fff;
  --radius: 5px;
  --xxl: 150px;
  --xl: 125px;
  --ll: 100px;
  --l: 75px;
  --m: 50px;
  --ms: 38px;
  --s: 25px;
  --ss: 15px;
  --xs: 10px;
  --xxs: 5px;
  --spd: 0.3s;
  --grid-s: 15px;
  --grid-m: 20px;
  --grid-l: 50px;
  --grid-ll: 75px;
  --grid-xl: 100px;
  --transition-duration: 0.3s;
  --transition-ease: ease;
  --scale-hover: 1.05;
  --box-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.3);
  --opacity: 0.7;
}
@media (min-width: 600px) {
  :root {
    --fs-ll: 32px;
    --fs-l: 24px;
    --fs-ml: 22px;
  }
}
@media (min-width: 1024px) {
  :root {
    --fs-ll: 34px;
    --fs-l: 24px;
    --fs-ml: 24px;
  }
}
@media (min-width: 600px) {
  :root {
    --grid-s: 20px;
    --grid-m: 25px;
    --grid-l: 75px;
    --grid-ll: 100px;
    --grid-xl: 125px;
    --ll: 125px;
  }
}
@media (min-width: 1024px) {
  :root {
    --grid-s: 25px;
    --grid-m: 50px;
    --grid-l: 100px;
    --grid-ll: 150px;
    --grid-xl: 175px;
    --ll: 150px;
  }
}

.pb-grid-s {
  padding-bottom: var(--grid-s);
}

.pb-grid-m {
  padding-bottom: var(--grid-m);
}

.pb-grid-l {
  padding-bottom: var(--grid-l);
}

.pb-grid-ll {
  padding-bottom: var(--grid-ll);
}

.pb-grid-xl {
  padding-bottom: var(--grid-xl);
}

.pt-grid-s {
  padding-top: var(--grid-s);
}

.pt-grid-m {
  padding-top: var(--grid-m);
}

.pt-grid-l {
  padding-top: var(--grid-l);
}

.pt-grid-ll {
  padding-top: var(--grid-ll);
}

.pt-grid-xl {
  padding-top: var(--grid-xl);
}

.mt-grid-s {
  margin-top: var(--grid-s);
}

.mt-grid-m {
  margin-top: var(--grid-m);
}

.mt-grid-l {
  margin-top: var(--grid-l);
}

.mt-grid-ll {
  margin-top: var(--grid-ll);
}

.mt-grid-xl {
  margin-top: var(--grid-xl);
}

.mb-grid-s {
  margin-bottom: var(--grid-s);
}

.mb-grid-m {
  margin-bottom: var(--grid-m);
}

.mb-grid-l {
  margin-bottom: var(--grid-l);
}

.mb-grid-ll {
  margin-bottom: var(--grid-ll);
}

.mb-grid-xl {
  margin-bottom: var(--grid-xl);
}

.pt-xxl {
  padding-top: var(--xxl);
}

.pt-xl {
  padding-top: var(--xl);
}

.pt-ll {
  padding-top: var(--ll);
}

.pt-l {
  padding-top: var(--l);
}

.pt-m {
  padding-top: var(--m);
}

.pt-ss {
  padding-top: var(--ss);
}

.pt-s {
  padding-top: var(--s);
}

.pt-xs {
  padding-top: var(--xs);
}

.pt-xxs {
  padding-top: var(--xxs);
}

.pb-xxl {
  padding-bottom: var(--xxl);
}

.pb-xl {
  padding-bottom: var(--xl);
}

.pb-ll {
  padding-bottom: var(--ll);
}

.pb-l {
  padding-bottom: var(--l);
}

.pb-m {
  padding-bottom: var(--m);
}

.pb-ss {
  padding-bottom: var(--ss);
}

.pb-s {
  padding-bottom: var(--s);
}

.pb-xs {
  padding-bottom: var(--xs);
}

.pb-xxs {
  padding-bottom: var(--xxs);
}

.mt-xxl {
  margin-top: var(--xxl);
}

.mt-xl {
  margin-top: var(--xl);
}

.mt-ll {
  margin-top: var(--ll);
}

.mt-l {
  margin-top: var(--l);
}

.mt-m {
  margin-top: var(--m);
}

.mt-ss {
  margin-top: var(--ss);
}

.mt-s {
  margin-top: var(--s);
}

.mt-xs {
  margin-top: var(--xs);
}

.mt-xxs {
  margin-top: var(--xxs);
}

.mb-xxl {
  margin-bottom: var(--xxl);
}

.mb-xl {
  margin-bottom: var(--xl);
}

.mb-ll {
  margin-bottom: var(--ll);
}

.mb-l {
  margin-bottom: var(--l);
}

.mb-m {
  margin-bottom: var(--m);
}

.mb-ss {
  margin-bottom: var(--ss);
}

.mb-s {
  margin-bottom: var(--s);
}

.mb-xs {
  margin-bottom: var(--xs);
}

.mb-xxs {
  margin-bottom: var(--xxs);
}

.pc-pt-g2 {
  padding-top: 0;
}

.pc-pt-g1 {
  padding-top: 0;
}

@media (min-width: 600px) {
  .pc-pt-g2 {
    padding-top: 50px;
  }
  .pc-pt-g1 {
    padding-top: 25px;
  }
  .pc-pt-g05 {
    padding-top: 12.5px;
  }
  .pc-mt-g2 {
    margin-top: 50px;
  }
  .pc-mt-g1 {
    margin-top: 25px;
  }
  .pc-mt-g05 {
    margin-top: 12.5px;
  }
}
@media (min-width: 1024px) {
  .pc-pt-g2 {
    padding-top: 100px;
  }
  .pc-pt-g1 {
    padding-top: 50px;
  }
  .pc-pt-g05 {
    padding-top: 25px;
  }
  .pc-mt-g2 {
    margin-top: 100px;
  }
  .pc-mt-g1 {
    margin-top: 50px;
  }
  .pc-mt-g05 {
    margin-top: 25px;
  }
}
::selection {
  background: #049ead;
}

.container {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 30px;
}

/* 既定ではキャレットを表示しない */
html,
body,
* {
  caret-color: transparent;
}

/* 入力欄などは通常通りキャレットを出す */
input,
textarea,
[contenteditable=true] {
  caret-color: auto; /* もしくは具体色 */
}

.pcbr {
  display: none;
}

.spbr {
  display: block;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

.heading {
  font-family: var(--font-jp);
  font-size: clamp(22px, 1.333vw, 30px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
}

.body {
  font-family: var(--font-jp);
  font-size: clamp(14px, 2vw + 1rem, 16px);
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 400;
}

.en-heading {
  font-family: var(--font-en);
  font-size: clamp(30px, 1.667vw, 40px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 400;
}

.cs-body {
  font-family: var(--font-jp);
  font-size: clamp(12px, 0.5vw, 15px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
}

.en-sub-heading {
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #006a96;
  font-weight: bold;
}

.sub-heading {
  font-family: var(--font-jp);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 500;
}

.sub-body {
  font-family: var(--font-jp);
  font-size: clamp(14px, 0.333vw, 16px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
}

.en-copy {
  font-family: var(--font-en);
  font-size: clamp(11px, 0.167vw, 12px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 400;
}

.footer-label {
  font-family: var(--font-jp);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
}

.footer-navi-txt {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
}

.footer-navi-txt-sub {
  font-family: var(--font-jp);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
}

.pagetitle-en {
  font-family: var(--font-en);
  font-size: clamp(16px, 0.667vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--c-main);
  font-weight: bold;
}

.pagetitle-jp {
  font-family: var(--font-jp);
  font-size: clamp(24px, 1vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 500;
  padding-top: 0.3em;
}

.lead {
  font-family: var(--font-jp);
  font-size: clamp(14px, 0.333vw, 16px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
  text-align: center;
}

.attention {
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: clamp(18px, 3vw + 1rem, 18px);
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 400;
}
.attention span {
  font-family: var(--font-jp);
  font-size: 18px;
  color: var(--c-main);
}

@media (min-width: 600px) {
  .container {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 25px;
  }
  .pcbr {
    display: block;
  }
  .spbr {
    display: none;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media (min-width: 1024px) {
  .container {
    margin: 0 auto;
    max-width: 930px;
    padding: 0 50px;
  }
}
.teaser-main {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.teaser-main h1.logo {
  height: 20vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #fff;
}
.teaser-main h1.logo img {
  width: 300px;
  padding-bottom: 35px;
}
.teaser-main div.wave {
  height: 60vh;
  background-color: var(--c-main);
  background-color: #fff;
}
.teaser-main div.wave img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  height: 60vh;
}

.teaser-about {
  background-color: var(--c-main);
}
.teaser-about .container {
  padding-top: 100px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.teaser-about .lead-box {
  width: 100%;
}
.teaser-about .logo-box {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  padding: 30px 0 40px;
}
.teaser-about .logo-box .logo {
  padding-top: 15px;
  width: 100%;
}
.teaser-about .logo-box .txt {
  width: 100%;
}
.teaser-about .logo-box .txt h3.body {
  padding: 0px 0 30px 0;
}

.comingsoon {
  background-color: var(--c-main);
  padding: 100px 0;
}
.comingsoon .container .comingsoon-inner {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.comingsoon .container .comingsoon-inner .cs-body {
  padding-top: 10px;
}

.contact-box {
  background-color: var(--c-main);
  padding-bottom: 50px;
}
.contact-box .contact-box-inner {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 50px 40px 25px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #000;
}
.contact-box .contact-box-inner .title {
  width: 100%;
  white-space: nowrap;
}
.contact-box .contact-box-inner .title .sub-heading {
  padding-top: 5px;
}
.contact-box .contact-box-inner .txt {
  width: 100%;
  color: #000;
}
.contact-box .contact-box-inner .arrow {
  width: 100%;
  text-align: right;
}
.contact-box .contact-box-inner .arrow img {
  width: 20px;
}

footer {
  background-color: var(--c-main);
  padding: 50px 30px 50px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  gap: 0;
}
footer .copy {
  width: 100%;
}
footer .footer-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .footer-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
footer .footer-nav ul li {
  text-align: left;
  display: flex;
  align-items: center;
  color: #fff;
}
footer .footer-nav ul li a {
  line-height: 1;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer-nav ul li.footer-label {
  width: 100%;
}
footer .footer-nav ul li.footer-navi-txt {
  white-space: nowrap;
}
footer .footer-nav ul li.footer-navi-txt:nth-of-type(2) {
  padding-right: 10px;
}
footer .footer-nav ul li.footer-navi-txt-sub {
  padding: 35px 0;
  width: 100%;
}
footer .footer-nav .external img {
  width: 15px;
}

.sub-navi {
  padding: 30px 30px 15px;
  line-height: 0;
}
.sub-navi h1 img {
  width: 180px;
}
.sub-navi a {
  transition: all 0.3s;
}
.sub-navi a:hover {
  opacity: 0.7;
}

section.title-area {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
section.title-area picture,
section.title-area .title-area__img {
  display: block;
  width: 100%;
  height: auto;
}
section.title-area .title-area__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.form-container {
  margin-bottom: 100px;
  /* 同意行のレイアウト */
  /* 行を横並び＆余白調整 */
  /* ===== 同意エリア レイアウト調整 ===== */
  /* MWの空白テキスト＆改行を消す */
  /* ラベル（右側テキスト） */
  /* ===== チェックボックスの見た目（ここが肝） ===== */
  /* ✓ マーク（くっきり） */
  /* フォーカスリング（キーボード操作用） */
  /* 共通ボタン（例：aタグなど） */
  /* フォーム専用ボタン */
  /* チェック未同意時 */
  /* ========= ここからボタン活性/非活性 制御 ========= */
  /* 入力画面のデフォルト：非活性（同意チェック前） */
  /* 入力画面：同意チェックが入ったら活性化 */
  /* 確認画面・完了画面：常に活性（checkboxが出ないため） */
  /* ========= ここまで ========= */
}
.form-container fieldset {
  border: unset;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.form-container fieldset + fieldset {
  margin-top: var(--s);
}
.form-container label {
  font-family: var(--font-jp);
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.2;
  padding-bottom: 5px;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: left;
  font-weight: 500;
}
.form-container label span.label-required {
  font-size: clamp(18px, 2.5vw, 18px);
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--c-main);
}
.form-container .radio {
  font-size: var(--fs-s);
  padding: 8px 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  color: var(--c-main);
}
.form-container .radio div {
  font-size: var(--fs-s);
  letter-spacing: var(--ls-s);
  line-height: var(--lh-s);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-container .checkbox {
  padding: 8px 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 16px;
  color: var(--c-main);
}
.form-container .checkbox div {
  font-size: var(--fs-s);
  letter-spacing: var(--ls-s);
  line-height: var(--lh-s);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-container .pulldown-wrap {
  width: 100%;
  font-family: var(--font-jp);
}
.form-container .pulldown {
  font-family: var(--font-jp);
  width: 100%;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}
.form-container .pulldown::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
  z-index: -1;
}
.form-container .pulldown select {
  width: 100%;
  font-family: var(--font-jp);
}
.form-container .consent {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 10px 0 30px;
}
.form-container .consent .mwform-checkbox-field-text {
  display: none;
}
.form-container .consent br {
  display: none;
}
.form-container .consent__label {
  font-size: clamp(14px, 2.6vw, 14px);
  line-height: 0;
  width: auto;
  font-weight: 400;
}
.form-container .consent__link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 500;
}
.form-container .consent .mwform-checkbox-field label {
  /* ラベルクリックでON/OFFできるよう、箱とテキストを横並びにもできるが
   今回は右テキストが別ラベルなので最低限に */
  display: inline-flex;
  align-items: center;
}
.form-container .consent .mwform-checkbox-field input[type=checkbox] {
  all: unset;
  appearance: none;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  top: 2px;
}
.form-container .consent .mwform-checkbox-field input[type=checkbox]::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  opacity: 0;
}
.form-container .consent .mwform-checkbox-field input[type=checkbox]:checked::after {
  opacity: 1; /* チェック時に表示 */
}
.form-container .consent .mwform-checkbox-field input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
.form-container .btn, .form-container .mw_wp_form_complete .thanks-btn, .mw_wp_form_complete .form-container .thanks-btn, .form-container .btn-submit {
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.form-container .btn-submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-weight: 500;
  font-size: clamp(16px, 2.8vw, 16px);
  text-align: center;
  padding: 18px 24px;
  transition: all 0.3s;
  margin: 30px auto 120px;
}
.form-container .btn-submit:hover {
  opacity: 0.7;
}
.form-container .btn-submit {
  font-family: var(--font-jp);
  opacity: 1;
  pointer-events: auto;
}
.form-container form:has(input[name="agreement[]"]:checked) .btn-submit {
  opacity: 1;
  pointer-events: auto;
}
.form-container .mw_wp_form_input .btn-submit {
  opacity: 0.2;
  pointer-events: none;
}
.form-container .mw_wp_form_input:has(input[name="agreement[data][]"]:checked) .btn-submit {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.3s;
}
.form-container .mw_wp_form_input:has(input[name="agreement[data][]"]:checked) .btn-submit:hover {
  opacity: 0.7;
}
.form-container .mw_wp_form_confirm .btn-submit,
.form-container .mw_wp_form_complete .btn-submit {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.form-container .mw_wp_form_confirm .consent {
  display: none;
}
.form-container .mw_wp_form_confirm {
  font-family: var(--font-jp);
  font-size: clamp(14px, 2.6vw, 16px);
}

.mw_wp_form .error {
  font-family: var(--font-jp);
  font-size: 13px !important;
  color: #ff0014 !important;
  display: block !important;
  padding-top: 5px !important;
}

.mw_wp_form_complete {
  text-align: center;
  padding: 80px 20px;
}

.mw_wp_form_complete .thanks-heading {
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 22px);
  color: var(--c-main);
  margin-bottom: 20px;
}

.mw_wp_form_complete .thanks-body {
  font-family: var(--font-jp);
  letter-spacing: 0.1em;
  font-size: clamp(12px, 0.5vw, 15px);
  line-height: 1.8;
  color: #000;
}

.mw_wp_form_complete .thanks-btn {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  text-align: left;
  margin-top: 50px;
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  border-radius: 9999px;
  background: #bee0e7;
  font-weight: 500;
  text-align: center;
  padding: 18px 24px;
}
.mw_wp_form_complete .thanks-btn a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}
.mw_wp_form_complete .thanks-btn a:hover {
  opacity: 0.7;
}

@media (min-width: 600px) {
  .teaser-main {
    margin: 0;
    padding: 80px 0 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: unset;
    overflow: hidden;
    line-height: 0;
  }
  .teaser-main h1.logo {
    height: unset;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #fff;
  }
  .teaser-main h1.logo img {
    width: 300px;
    padding-bottom: 35px;
  }
  .teaser-main div.wave {
    height: unset;
    background-color: var(--c-main);
    background-color: #fff;
  }
  .teaser-main div.wave img {
    width: 100%;
    object-fit: unset;
    object-position: unset;
    height: unset;
  }
  .teaser-about .logo-box {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .teaser-about .logo-box .logo {
    width: 40%;
  }
  .teaser-about .logo-box .txt {
    width: 60%;
    display: flex;
    justify-content: flex-end;
  }
  .contact-box {
    padding-bottom: 60px;
  }
  .contact-box a {
    transition: opacity 0.3s;
  }
  .contact-box a:hover {
    opacity: 0.7;
  }
  .contact-box .contact-box-inner {
    padding: 40px;
    flex-direction: row;
    gap: 50px;
  }
  .contact-box .contact-box-inner .title {
    width: 25%;
  }
  .contact-box .contact-box-inner .txt {
    width: 65%;
  }
  .contact-box .contact-box-inner .arrow {
    width: 10%;
  }
  .contact-box .contact-box-inner .arrow img {
    width: 30px;
  }
  footer {
    background-color: var(--c-main);
    padding: 40px 45px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .copy {
    width: 40%;
  }
  footer .footer-nav {
    width: 60%;
    display: flex;
    justify-content: flex-end;
  }
  footer .footer-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-end;
    display: flex;
    list-style: none;
  }
  footer .footer-nav ul li {
    text-align: right;
    display: flex;
    align-items: center;
    color: #fff;
  }
  footer .footer-nav ul li a {
    line-height: 1;
    transition: all 0.3s;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  footer .footer-nav ul li a:hover {
    opacity: 0.7;
  }
  footer .footer-nav ul li.footer-label {
    width: auto;
  }
  footer .footer-nav ul li.footer-navi-txt {
    white-space: nowrap;
    padding-right: 15px;
  }
  footer .footer-nav ul li.footer-navi-txt-sub {
    padding: 0 0;
    width: auto;
  }
  footer .footer-nav .external img {
    width: 15px;
  }
  .form-container {
    padding: 0 50px;
  }
  .form-container fieldset + fieldset {
    margin-top: var(--ms);
  }
}
@media (min-width: 1024px) {
  .teaser-main h1.logo img {
    width: 444px;
    padding-bottom: 35px;
  }
  .form-container {
    padding: 0 100px;
  }
}/*# sourceMappingURL=main.css.map */