@charset "UTF-8";

/*html5doctor.com Reset Stylesheetv1.6.1Last Updated: 2010-09-17Author: Richard Clark - http://richclarkdesign.comTwitter: @rich_clark*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button,
input[type=submit],
input[type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
}

button:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

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

img {
  vertical-align: bottom;
  max-width: 100%;
}

/* カラー */
/* テーマカラー */
/* テキストカラー */
/* ボーダーカラー */
/* フォント */
/* スペーサー */
/* コンテンツ・ページ幅 */
/* ブレークポイント */
/*========================================
  ## レスポンシブサイズ
  指定のブレイクポイントの間だけサイズがレスポンシブ変化します。
  フォントサイズ等で使用する。
  元ネタはここ。
  https://min-max-calculator.9elements.com/

  [ 引数一覧 ]
  $from: 開始フォントサイズ
  $to: 終了フォントサイズ
  $bMax: 開始ブレイクポイント | 省略可 | デフォルトはmd
  $bMin: 終了ブレイクポイント | 省略可 | デフォルトはsm

  [ 使い方 ]
  font-size: rf(18,16) //最大サイズ18px から 最低サイズ16pxまでなめらかに変化する。
========================================*/
*,
::after,
::before {
  box-sizing: border-box;
}

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

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  background-color: #fff;
  font-feature-settings: "palt";
  font-kerning: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:not(.btn),
a:not(.btn):link,
a:not(.btn):visited,
a:not(.btn):active,
a:not(.btn):hover {
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}

p {
  line-height: 1.6;
}

small {
  font-size: 87.5%;
}

/*==================================
  共通スタイル
==================================*/
.wrapper {
  flex-grow: 1;
}

/* ページ幅・コンテンツ幅 */
.page-width,
.content-width {
  margin-inline: auto;
  width: 100%;
}

.page-width:not(.padding-inner) {
  max-width: 1280px;
}

.page-width.padding-inner {
  max-width: calc(1280px + 5rem);
}

.content-width:not(.padding-inner) {
  max-width: 750px;
}

.content-width.padding-inner {
  max-width: calc(750px + 5rem);
}

.padding-inner {
  padding: 0rem 2rem;
}

@media (max-width: 768px) {
  .padding-inner {
    padding: 0rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .padding-inner {
    padding: 0rem 1rem;
  }
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.cover-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.cover-image img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

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

@media not all and (max-width: 768px) {
  ._sp {
    display: none;
  }
}

/* テキスト系 */
.bold {
  font-weight: bold !important;
}

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

.text-danger {
  color: #e32929;
}

.text-muted {
  color: #cccccc;
}

.link {
  color: #19a0ff !important;
}

/* セクション系 */
.c-section {
  margin-bottom: 120px;
}

@media (max-width: 768px) {
  .c-section {
    margin-bottom: 60px;
  }
}

@media (max-width: 576px) {
  .c-section {
    margin-bottom: 30px;
  }
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  label {
    font-size: 14px;
  }
}

.pico_label {
  color: #fff;
}

.form-group {
  margin-bottom: 1rem;
}

.form-header {
  margin-bottom: 3rem;
}

.form-footer {
  margin-top: 3rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 4px 8px;
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #f5f5f5;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control::placeholder {
  color: #ccc;
  opacity: 1;
}

.form-control.--small {
  max-width: 80px;
}

.form-control_pico {
  display: block;
  width: 100%;
  padding: 4px 8px;
  font-size: 1rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control_pico::-moz-placeholder {
  color: #808080;
  opacity: 1;
}

.form-control_pico::placeholder {
  color: #808080;
  opacity: 1;
}

textarea.form-control {
  height: auto;
  border: 1px solid #ddd;
}

.form-group_flex {
  display: flex;
  align-items: center;
  gap: 5px;
}

.custom-select {
  display: inline-block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ddd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #88c5e6;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.25);
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 5px;
}

.badge-primary {
  color: #fff;
  background-color: #5eb0dd;
}

.badge-secondary {
  color: #fff;
  background-color: #262626;
}

.badge-danger {
  color: #fff;
  background-color: #e32929;
}

.badge-light {
  color: #fff;
  background-color: #cccccc;
}

.badge-green {
  color: #fff;
  background-color: #284E13;
}

/* margin */
.my-0,
.mt-0 {
  margin-top: 0rem !important;
}

.my-1,
.mt-1 {
  margin-top: 0.25rem !important;
}

.my-2,
.mt-2 {
  margin-top: 0.5rem !important;
}

.my-3,
.mt-3 {
  margin-top: 1rem !important;
}

.my-4,
.mt-4 {
  margin-top: 1.5rem !important;
}

.my-5,
.mt-5 {
  margin-top: 3rem !important;
}

.my-auto,
.mt-auto {
  margin-top: auto !important;
}

.my-0,
.mb-0 {
  margin-bottom: 0rem !important;
}

.my-1,
.mb-1 {
  margin-bottom: 0.25rem !important;
}

.my-2,
.mb-2 {
  margin-bottom: 0.5rem !important;
}

.my-3,
.mb-3 {
  margin-bottom: 1rem !important;
}

.my-4,
.mb-4 {
  margin-bottom: 1.5rem !important;
}

.my-5,
.mb-5 {
  margin-bottom: 3rem !important;
}

.my-auto,
.mb-auto {
  margin-bottom: auto !important;
}

.mx-0,
.ml-0 {
  margin-left: 0rem !important;
}

.mx-1,
.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-2,
.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-3,
.ml-3 {
  margin-left: 1rem !important;
}

.mx-4,
.ml-4 {
  margin-left: 1.5rem !important;
}

.mx-5,
.ml-5 {
  margin-left: 3rem !important;
}

.mx-auto,
.ml-auto {
  margin-left: auto !important;
}

.mx-0,
.mr-0 {
  margin-right: 0rem !important;
}

.mx-1,
.mr-1 {
  margin-right: 0.25rem !important;
}

.mx-2,
.mr-2 {
  margin-right: 0.5rem !important;
}

.mx-3,
.mr-3 {
  margin-right: 1rem !important;
}

.mx-4,
.mr-4 {
  margin-right: 1.5rem !important;
}

.mx-5,
.mr-5 {
  margin-right: 3rem !important;
}

.mx-auto,
.mr-auto {
  margin-right: auto !important;
}

.m-0 {
  margin: 0rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

/* padding */
.py-0,
.pt-0 {
  padding-top: 0rem !important;
}

.py-1,
.pt-1 {
  padding-top: 0.25rem !important;
}

.py-2,
.pt-2 {
  padding-top: 0.5rem !important;
}

.py-3,
.pt-3 {
  padding-top: 1rem !important;
}

.py-4,
.pt-4 {
  padding-top: 1.5rem !important;
}

.py-5,
.pt-5 {
  padding-top: 3rem !important;
}

.py-auto,
.pt-auto {
  padding-top: auto !important;
}

.py-0,
.pb-0 {
  padding-bottom: 0rem !important;
}

.py-1,
.pb-1 {
  padding-bottom: 0.25rem !important;
}

.py-2,
.pb-2 {
  padding-bottom: 0.5rem !important;
}

.py-3,
.pb-3 {
  padding-bottom: 1rem !important;
}

.py-4,
.pb-4 {
  padding-bottom: 1.5rem !important;
}

.py-5,
.pb-5 {
  padding-bottom: 3rem !important;
}

.py-auto,
.pb-auto {
  padding-bottom: auto !important;
}

.px-0,
.pl-0 {
  padding-left: 0rem !important;
}

.px-1,
.pl-1 {
  padding-left: 0.25rem !important;
}

.px-2,
.pl-2 {
  padding-left: 0.5rem !important;
}

.px-3,
.pl-3 {
  padding-left: 1rem !important;
}

.px-4,
.pl-4 {
  padding-left: 1.5rem !important;
}

.px-5,
.pl-5 {
  padding-left: 3rem !important;
}

.px-auto,
.pl-auto {
  padding-left: auto !important;
}

.px-0,
.pr-0 {
  padding-right: 0rem !important;
}

.px-1,
.pr-1 {
  padding-right: 0.25rem !important;
}

.px-2,
.pr-2 {
  padding-right: 0.5rem !important;
}

.px-3,
.pr-3 {
  padding-right: 1rem !important;
}

.px-4,
.pr-4 {
  padding-right: 1.5rem !important;
}

.px-5,
.pr-5 {
  padding-right: 3rem !important;
}

.px-auto,
.pr-auto {
  padding-right: auto !important;
}

.p-0 {
  padding: 0rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-auto {
  padding: auto !important;
}

/*==================================
  ボタン
==================================*/
.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:disabled {
  cursor: not-allowed;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-primary {
  color: #fff;
  background-color: #5eb0dd;
  border-color: #5eb0dd;
}

@media (hover: hover) {
  .btn-primary:hover {
    color: #fff;
    background-color: #349bd4;
    border-color: #349bd4;
  }
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.5);
}

.btn-primary:disabled {
  color: #fff;
  background-color: #88c5e6;
  border-color: #88c5e6;
}

.btn-outline-primary {
  color: #5eb0dd;
  background-color: transparent;
  background-color: none;
  border-color: #5eb0dd;
}

@media (hover: hover) {
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #5eb0dd;
    border-color: #5eb0dd;
  }
}

.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 176, 221, 0.5);
}

.btn-outline-primary:disabled {
  color: #88c5e6;
  background-color: transparent;
  background-color: none;
  border-color: #88c5e6;
}

.btn-secondary {
  color: #fff;
  background-color: #262626;
  border-color: #262626;
}

@media (hover: hover) {
  .btn-secondary:hover {
    color: #fff;
    background-color: #0d0d0d;
    border-color: #0d0d0d;
  }
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5);
}

.btn-secondary:disabled {
  color: #fff;
  background-color: #404040;
  border-color: #404040;
}

.btn-outline-secondary {
  color: #262626;
  background-color: transparent;
  background-color: none;
  border-color: #262626;
}

@media (hover: hover) {
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #262626;
    border-color: #262626;
  }
}

.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 38, 38, 0.5);
}

.btn-outline-secondary:disabled {
  color: #404040;
  background-color: transparent;
  background-color: none;
  border-color: #404040;
}

.btn-danger {
  color: #fff;
  background-color: #e32929;
  border-color: #e32929;
}

@media (hover: hover) {
  .btn-danger:hover {
    color: #fff;
    background-color: #c01919;
    border-color: #c01919;
  }
}

.btn-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 41, 41, 0.5);
}

.btn-danger:disabled {
  color: #fff;
  background-color: #e95656;
  border-color: #e95656;
}

.btn-outline-danger {
  color: #e32929;
  background-color: transparent;
  background-color: none;
  border-color: #e32929;
}

@media (hover: hover) {
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #e32929;
    border-color: #e32929;
  }
}

.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 41, 41, 0.5);
}

.btn-outline-danger:disabled {
  color: #e95656;
  background-color: transparent;
  background-color: none;
  border-color: #e95656;
}

.btn-light {
  color: #fff;
  background-color: #cccccc;
  border-color: #cccccc;
}

@media (hover: hover) {
  .btn-light:hover {
    color: #fff;
    background-color: #b3b3b3;
    border-color: #b3b3b3;
  }
}

.btn-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}

.btn-light:disabled {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.btn-outline-light {
  color: #cccccc;
  background-color: transparent;
  background-color: none;
  border-color: #cccccc;
}

@media (hover: hover) {
  .btn-outline-light:hover {
    color: #fff;
    background-color: #cccccc;
    border-color: #cccccc;
  }
}

.btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 204, 204, 0.5);
}

.btn-outline-light:disabled {
  color: #e6e6e6;
  background-color: transparent;
  background-color: none;
  border-color: #e6e6e6;
}

.btn-orange {
  color: #fff;
  background-color: #ffb50c;
  border-color: #ffb50c;
}

@media (hover: hover) {
  .btn-orange:hover {
    color: #fff;
    background-color: #d89600;
    border-color: #d89600;
  }
}

.btn-orange:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 12, 0.5);
}

.btn-orange:disabled {
  color: #fff;
  background-color: #ffc53f;
  border-color: #ffc53f;
}

.btn-outline-orange {
  color: #ffb50c;
  background-color: transparent;
  background-color: none;
  border-color: #ffb50c;
}

@media (hover: hover) {
  .btn-outline-orange:hover {
    color: #fff;
    background-color: #ffb50c;
    border-color: #ffb50c;
  }
}

.btn-outline-orange:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 181, 12, 0.5);
}

.btn-outline-orange:disabled {
  color: #ffc53f;
  background-color: transparent;
  background-color: none;
  border-color: #ffc53f;
}


body {
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

section {
  position: relative;
}

img,
video {
  width: 100%;
  vertical-align: bottom;
}

.lp-wrapper {
  max-width: 600px;
  margin: auto;
}

.fz-s {
  font-size: 12px;
}


/* =====================
cta
========================*/

.cta {
  position: relative;
}

.cta_btn {
  position: absolute;
  z-index: 10;
  display: block;
}

.mv-cta .cta_btn {
  width: 15.5%;
  height: 16.2%;
  bottom: 9%;
}


/* =====================
mvcta
========================*/

.mv-cta .cta_btn.--line {
  left: 25.6%;
}

.mv-cta .cta_btn.--tel {
  left: 42.2%;
}

.mv-cta .cta_btn.--form {
  left: 58.6%;
}

@media (max-width: 768px) {
  .mv-cta .cta_btn {
    width: 64%;

    transform: translate(-50%);
    height: 15.5%;
  }

  .mv-cta .cta_btn.--line {
    bottom: 50%;
    left: 51%;
  }

  .mv-cta .cta_btn.--tel {
    bottom: 32%;
    left: 51%;
  }

  .mv-cta .cta_btn.--form {
    bottom: 14%;
    left: 51%;
  }
}


/* =====================
cta01
========================*/

.cta01 .cta_btn {
  width: 15%;
  height: 8%;
  bottom: 10.5%;
}

.cta01 .cta_btn.--line {
  left: 26.6%;
}

.cta01 .cta_btn.--tel {
  left: 42.7%;
}

.cta01 .cta_btn.--form {
  left: 58.6%;
}

@media (max-width: 768px) {
  .cta01 .cta_btn {
    width: 64%;
    transform: translate(-50%);
    height: 8.5%;
  }

  .cta01 .cta_btn.--line {
    bottom: 28%;
    left: 50%;
  }

  .cta01 .cta_btn.--tel {
    bottom: 18%;
    left: 50%;
  }

  .cta01 .cta_btn.--form {
    bottom: 7%;
    left: 50%;
  }
}

/* =====================
cta02
========================*/

.cta02 .cta_btn {
  width: 15%;
  height: 8%;
  bottom: 10.5%;
}

.cta02 .cta_btn.--line {
  left: 26.6%;
}

.cta02 .cta_btn.--tel {
  left: 42.7%;
}

.cta02 .cta_btn.--form {
  left: 58.6%;
}

@media (max-width: 768px) {
  .cta02 .cta_btn {
    width: 64%;
    transform: translate(-50%);
    height: 8.5%;
  }

  .cta02 .cta_btn.--line {
    bottom: 25%;
    left: 50%;
  }

  .cta02 .cta_btn.--tel {
    bottom: 15%;
    left: 50%;
  }

  .cta02 .cta_btn.--form {
    bottom: 5%;
    left: 50%;
  }
}


/* =====================
cta03
========================*/

.cta03 .cta_btn {
  width: 15%;
  height: 8%;
  bottom: 10.5%;
}

.cta03 .cta_btn.--line {
  left: 26.6%;
}

.cta03 .cta_btn.--tel {
  left: 42.7%;
}

.cta03 .cta_btn.--form {
  left: 58.6%;
}

@media (max-width: 768px) {
  .cta03 .cta_btn {
    width: 64%;
    transform: translate(-50%);
    height: 8.5%;
  }

  .cta03 .cta_btn.--line {
    bottom: 28%;
    left: 50%;
  }

  .cta03 .cta_btn.--tel {
    bottom: 18%;
    left: 50%;
  }

  .cta03 .cta_btn.--form {
    bottom: 7%;
    left: 50%;
  }
}



/* =====================
c-map
========================*/

.c-map {
  position: relative;
}

.c-map iframe {
  position: absolute;
  top: 62%;
  left: 51%;
  transform: translateX(-50%);
  width: 34%;
  height: 29%;
  z-index: 1;
}

@media (max-width: 768px) {
  .c-map iframe {
    top: 67.5%;
    left: 50%;
    width: 85.5%;
    height: 30%;
  }
}

/* =====================
c-form
========================*/

.c-form {
  background-color: #FFDEDC;
  padding: 60px 0;
}

.c-form-subtitle {
  color: #fff;
  text-align: center;
  margin-bottom: -8%;
}
.c-form-subtitle img {
  width: 80%;
}

.form-inner {
  background-color: #fff;
  padding: 32px 16px 20px;
}

.form-inner_pico {
  padding: 32px 16px 20px;
}

.c-form_title {
  color: #da5b80;
  font-size: 42px;
  margin-bottom: 28px;
}

@media (max-width: 576px) {
  .c-form_title {
    font-size: 6vw;
  }
}

.btn-submit {
  width: 85%;
  max-width: 500px;
  background: rgb(199, 69, 115);
  background: linear-gradient(90deg, rgba(199, 69, 115, 1) 0%, rgba(194, 128, 128, 1) 100%);
  color: #fff;
  font-weight: bold;
  padding: 14px;
}


/* =====================
thanks
========================*/

.thanks-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100vh;
  padding: 80px 0;
}

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

.thanks-page__title {
  font-size: 24px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .thanks-page__title {
    font-size: 5vw;
  }
}

.thanks-page__message {
  font-size: 16px;
  margin-bottom: 30px;
}

.thanks-page .logo {
  width: 70%;
  max-width: 350px;
  margin-bottom: 32px;
}

header {
  display: block;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background: #fff;
  box-sizing: border-box;
}

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


header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  position: relative;
  margin: 0;
  padding: 0;
  width: 220px;
  font-weight: bold;
}

header .navi {
  margin: 0 0 0 auto;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  list-style: none;
  gap: 20px;
}