@charset "UTF-8";
:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  text-decoration: none;
  color: #cc556a;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

.tm {
  display: none;
}
@media screen and (max-width: 900px) {
  .tm {
    display: block;
  }
}

.sm {
  display: none;
}
@media screen and (max-width: 560px) {
  .sm {
    display: block;
  }
}

.pc-t {
  display: block;
}
@media screen and (max-width: 900px) {
  .pc-t {
    display: none;
  }
}

.pc-m {
  display: block;
}
@media screen and (max-width: 560px) {
  .pc-m {
    display: none;
  }
}

html,
body {
  width: 100%;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8em;
  letter-spacing: 0.08em;
  overflow-x: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  html,
  body {
    font-size: 0.9em;
  }
}

img {
  width: 100%;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
space
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.wrap-space {
  padding: 100px 10%;
}

.flex {
  display: flex;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ローディング
 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 80px;
}
@media screen and (max-width: 900px) {
  .loading__logo {
    width: 50px;
  }
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    margin-bottom: -20px;
    transform: rotateY(90deg);
  }
  60% {
    opacity: 1;
    margin: 0;
    transform: rotateY(0);
  }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ヘッダー
 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
header.pcnav {
  width: 100%;
  height: 67px;
  position: fixed;
  top: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85em;
  z-index: 90;
  opacity: 0;
  animation: fadeOutIn 1.5s 0.5s forwards;
}
header.pcnav .logo {
  width: 280px;
  height: 100%;
  color: #000;
  margin: 0 10px 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
@media screen and (max-width: 560px) {
  header.pcnav .logo {
    width: 200px;
  }
}
header.pcnav .logo img {
  width: 100%;
}
header.pcnav .logo:hover {
  opacity: 0.5;
}
header.pcnav .nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 450px);
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  padding: 0 130px 0 0;
}
@media screen and (max-width: 900px) {
  header.pcnav .nav {
    display: none;
  }
}
header.pcnav .nav ul {
  display: flex;
  height: 100%;
}
@media screen and (max-width: 1180px) {
  header.pcnav .nav ul {
    display: none;
  }
}
header.pcnav .nav ul li {
  height: 100%;
  margin: 0 15px;
}
@media screen and (max-width: 1180px) {
  header.pcnav .nav ul li {
    margin: 0 8px;
  }
}
header.pcnav .nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  letter-spacing: 0em;
  transition: 0.4s;
  position: relative;
  white-space: nowrap;
  font-size: 0.85em;
}
@media screen and (max-width: 1180px) {
  header.pcnav .nav ul li a {
    font-size: 0.8em;
  }
}
header.pcnav .nav ul li a::after {
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background-color: #707070;
  position: absolute;
  bottom: 20px;
  left: 0;
  transition: 0.4s;
}
header.pcnav .nav ul li a:hover::after {
  width: 100%;
}

.headbtns {
  width: 280px;
  height: 100%;
  display: flex;
  margin: 0 0 0 5px;
}
.headbtns a {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
  color: #fff;
  transition: 0.4s;
}
.headbtns a img {
  width: 100%;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
アニメーション
 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeOutIn {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.js-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-in-out;
}

.js-scroll.is-active {
  opacity: 1;
  transform: translateY(0px);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
スマホ用メニュー
 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
header.smnav {
  display: block;
  /* 回転アニメーション */
}
header.smnav .sm-globanav__btn {
  position: fixed;
  top: 20px;
  right: 40px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 60px;
  border: 1px solid #ccc;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 560px) {
  header.smnav .sm-globanav__btn {
    right: 15px;
    z-index: 999;
    width: 40px;
    height: 40px;
    top: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
}
header.smnav .sm-globanav__btn__menu {
  position: relative;
  width: 22px;
  height: 26px;
  left: 14px;
  top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  header.smnav .sm-globanav__btn__menu {
    left: 9px;
    top: 7px;
  }
}
header.smnav .sm-globanav__btn__menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #ccc;
  transition: all 0.5s ease;
}
header.smnav .sm-globanav__btn .sm-globanav__btn__menu span:nth-child(1) {
  top: 6px;
}
header.smnav .sm-globanav__btn .sm-globanav__btn__menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header.smnav .sm-globanav__btn .sm-globanav__btn__menu span:nth-child(3) {
  bottom: 6px;
}
header.smnav .sm-globanav__btn.active .sm-globanav__btn__menu span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.smnav .sm-globanav__btn.active .sm-globanav__btn__menu span:nth-child(2) {
  opacity: 0;
}
header.smnav .sm-globanav__btn.active .sm-globanav__btn__menu span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
header.smnav .sm-global-cantent {
  width: 100%;
  height: 100vh;
  padding: 100px 20px;
  box-sizing: border-box;
  background-color: white;
  position: fixed;
  right: -200%;
  z-index: 99;
  transition: top 0.7s ease;
  opacity: 0;
  overflow-y: scroll;
  transition: 0.6s;
}
header.smnav .sm-global-cantent.open {
  top: 0;
  right: 0;
  opacity: 1;
}
header.smnav .sm-globanav__logo a {
  width: 250px;
  margin: 0px auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  transition: 0.4s;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
}
header.smnav .sm-globanav__logo a span {
  font-size: 0.7em;
  padding: 0 5px 0 0;
}
header.smnav .sm-globanav__logo a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../img/logo.png) no-repeat;
  background-position: center;
  background-size: contain;
}
header.smnav .sm-globanav__logo a:hover {
  opacity: 0.8;
}
header.smnav .sm-txt {
  display: block;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  text-align: center;
  color: #0035cd;
  line-height: 1.5em;
  font-weight: 500;
}
header.smnav .sm-txt .small {
  font-size: 0.8em;
  color: #707070;
}
header.smnav .sm-txt div {
  margin: 10px 0;
}
header.smnav .contentlist {
  width: 80%;
  border-top: #000 solid 1px;
  margin: 30px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 0;
}
@media screen and (max-width: 900px) {
  header.smnav .contentlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
header.smnav .contentlist li {
  width: 100%;
  position: relative;
}
header.smnav .contentlist li a {
  display: block;
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  font-size: 15px;
  text-decoration: none;
  font-weight: bold;
  margin: 0;
  transition: all 0.3s ease;
  color: #666;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li a {
    padding: 12px 15px;
    font-size: 14px;
  }
}
header.smnav .contentlist li a:hover {
  background-color: #f5f5f5;
  color: #333;
  border-color: #999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
header.smnav .contentlist li.has-submenu > a {
  position: relative;
  padding-right: 40px;
}
header.smnav .contentlist li.has-submenu > a::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu > a::after {
    font-size: 20px;
    font-weight: bold;
  }
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu.active > a::after {
    content: "−";
    transform: translateY(-50%) rotate(0deg);
  }
}
header.smnav .contentlist li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 100;
  margin-top: 0;
  padding: 10px 0;
  min-width: 200px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu .submenu {
    position: static;
    width: 100%;
    margin-top: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 0;
  }
}
header.smnav .contentlist li.has-submenu .submenu li {
  width: 100%;
  margin: 0;
}
header.smnav .contentlist li.has-submenu .submenu li a {
  padding: 8px 15px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  display: block;
  text-align: left;
  border: none;
  background-color: transparent;
  box-shadow: none;
  color: #000;
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu .submenu li a {
    padding: 10px 20px;
    text-align: left;
    border-radius: 0;
  }
}
header.smnav .contentlist li.has-submenu .submenu li a:hover {
  background-color: #f5f5f5;
  color: #86ad3d;
  box-shadow: none;
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu .submenu li a:hover {
    background-color: #f5f5f5;
    color: #86ad3d;
  }
}
header.smnav .contentlist li.has-submenu:hover > a::after {
  content: "−";
  transform: translateY(-50%);
}
header.smnav .contentlist li.has-submenu:hover .submenu {
  display: block;
  max-height: 500px;
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu:hover .submenu {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu.active > a::after {
    content: "−";
    transform: translateY(-50%) rotate(0deg);
  }
}
@media screen and (max-width: 560px) {
  header.smnav .contentlist li.has-submenu.active .submenu {
    display: block;
    max-height: 500px;
    padding: 10px 0;
  }
}
header.smnav .headbtns {
  width: 40%;
  max-width: 500px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
共通タイトル
 ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.titlebox {
  margin: 30px auto 20px auto;
  text-align: center;
}
.titlebox h2 {
  font-size: 30px;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 900px) {
  .titlebox h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 560px) {
  .titlebox h2 {
    font-size: 20px;
  }
}
.titlebox h4 {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 10px auto;
  color: red;
}
@media screen and (max-width: 900px) {
  .titlebox h4 {
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  .titlebox h4 {
    font-size: 10px;
  }
}

.titlebox2 {
  width: 100%;
  position: relative;
}
.titlebox2 .txt {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 200px 10%;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .titlebox2 .txt {
    padding: 150px 10%;
  }
}
@media screen and (max-width: 560px) {
  .titlebox2 .txt {
    padding: 100px 10%;
  }
}
.titlebox2 .txt h5 {
  font-size: 5em;
  line-height: 1.2em;
  font-weight: bold;
  display: block;
  margin: 0;
}
@media screen and (max-width: 900px) {
  .titlebox2 .txt h5 {
    font-size: 4em;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .titlebox2 .txt h5 {
    font-size: 3em;
    text-align: center;
  }
}
.titlebox2 .txt h3 {
  display: block;
  padding: 10px 0;
  line-height: 1.5em;
}
@media screen and (max-width: 900px) {
  .titlebox2 .txt h3 {
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .titlebox2 .txt h3 {
    text-align: center;
  }
}
.titlebox2 .txt h2 {
  display: block;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.5em;
}
@media screen and (max-width: 900px) {
  .titlebox2 .txt h2 {
    font-size: 1.5em;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  .titlebox2 .txt h2 {
    font-size: 1.2em;
    text-align: center;
  }
}
.titlebox2 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.titlebox2 .bg img {
  width: 100%;
}

.gryl-ttl {
  width: 100%;
  padding: 5px 10px 5px 25px;
  box-sizing: border-box;
  border-left: 5px solid #000;
  background-color: #EAEEF5;
  margin: 0 0 20px 0;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .gryl-ttl {
    font-size: clamp(16px, 2.5vw, 18px);
    padding: 5px 10px 5px 20px;
  }
}
@media screen and (max-width: 560px) {
  .gryl-ttl {
    font-size: clamp(14px, 3.5vw, 16px);
    padding: 8px 10px 8px 15px;
    border-left: 3px solid #000;
    margin: 0 0 15px 0;
  }
}

.comtttl {
  width: 100%;
  padding: 5px 10px 5px 25px;
  background-color: #000;
  color: #fff;
  position: relative;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .comtttl {
    font-size: clamp(16px, 2.5vw, 18px);
    padding: 5px 10px 5px 20px;
  }
}
@media screen and (max-width: 560px) {
  .comtttl {
    font-size: clamp(14px, 3.5vw, 16px);
    padding: 8px 10px 8px 15px;
  }
}
.comtttl::after {
  position: absolute;
  bottom: -17px;
  left: 25px;
  content: "";
  display: block;
  background: #000;
  height: 17.3205080757px;
  width: 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/*＝＝各コンテンツで使用するタイトル＝＝ */
.bigttl {
  width: 100%;
  min-height: 500px;
  position: relative;
  padding: 50px 10%;
  box-sizing: border-box;
}
.bigttl .txt {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

/*＝＝まとめタイトル黄色線つき＝＝ */
/*＝＝各コンテンツで使用するオーバー黒＝＝ */
.dbg {
  position: relative;
}
.dbg .bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
}
.dbg .bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
}
.dbg .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

/*＝＝黄色線ｔｔｌボックス＝＝ */
.contttl {
  text-align: center;
  margin: 8vw auto;
  padding: 0 10%;
  box-sizing: border-box;
}
.contttl h2 {
  font-size: clamp(20px, 2.8vw, 50px);
  line-height: 1.6em;
  margin: 2vw 0;
}
.contttl h2 strong {
  font-size: 2.4em;
  font-weight: bold;
}
.contttl h2 small {
  font-size: 0.8em;
}
.contttl h3 {
  font-size: clamp(16px, 1.5vw, 30px);
  line-height: 1.6em;
  margin: 2vw 0;
}

/*＝＝黄色線＝＝ */
.yl {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: linear-gradient(transparent 70%, #FFC200 0%);
}

.fb {
  display: flex;
}

/*＝＝チェックボックス＝＝ */
.checkbox {
  position: relative;
  width: 70%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 50px 100px;
  background-color: #FFFBD6;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .checkbox {
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  .checkbox {
    /* margin: 20px auto; */
    padding: 40px 20px;
    width: 80%;
  }
}
.checkbox .check {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 100px;
  height: auto;
}
.checkbox .pp {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: auto;
}
@media screen and (max-width: 560px) {
  .checkbox .pp {
    display: none;
  }
}
.checkbox p {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1.6em;
}
@media screen and (max-width: 900px) {
  .checkbox p {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  .checkbox p {
    font-size: 13px;
    line-height: 1.6;
  }
}
.checkbox h3 {
  font-size: 1.5em;
  text-align: center;
  font-weight: bold;
  margin: 0 0 30px 0;
}
.checkbox h5 {
  font-size: 1em;
  text-align: left;
  margin: 0 0 20px 0;
}
.checkbox .yl {
  background: linear-gradient(transparent 80%, #FEF84C 0%);
}

/*＝＝線＝＝ */
.borderline {
  width: 80%;
  height: 1px;
  background-color: #303539;
  margin: 50px auto;
  display: block;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
フッター（共通）
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer {
  width: 100%;
  background-color: #e0e0e0;
}
footer .footerbtnwrap {
  display: flex;
}
@media screen and (max-width: 560px) {
  footer .footerbtnwrap {
    flex-flow: column;
  }
}
footer .footerbtnwrap a {
  width: 33.3333333333%;
  height: 20vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  footer .footerbtnwrap a {
    width: 100%;
    height: 30vw;
  }
}
footer .footerbtnwrap a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #707070;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
footer .footerbtnwrap a .txt {
  position: relative;
  z-index: 3;
}
footer .footerbtnwrap a .txt p {
  font-size: 18px;
  font-weight: bold;
}
footer .footerbtnwrap a .txt p::after {
  content: "";
  display: block;
  margin: 6px auto;
  width: 50px;
  height: 1px;
  background-color: #fff;
}
footer .footerbtnwrap a .txt .eng {
  font-size: 11px;
  font-weight: bold;
  margin: 0;
}
footer .footerbtnwrap a .bgimg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  transition: 0.4s;
}
footer .footerbtnwrap a:hover .bgimg {
  width: 120%;
  height: 120%;
}
footer .footerbtnwrap a:nth-child(1)::after {
  background-color: #CC556A;
}
footer .footerbtnwrap a:nth-child(2)::after {
  background-color: #86AD3D;
}
footer .footerbtnwrap a:nth-child(3)::after {
  background-color: #4B62A9;
}
footer .footercontent {
  padding: 50px 10% 100px 10%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  footer .footercontent {
    flex-flow: column;
    justify-content: center;
  }
}
footer .footercontent .logowrap a.logo {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  transition: 0.4s;
  color: #000;
  font-size: 27px;
  font-weight: bold;
  white-space: nowrap;
}
footer .footercontent .logowrap a.logo span {
  font-size: 0.7em;
  padding: 0 5px 0 0;
}
footer .footercontent .logowrap a.logo::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
  background: url(../img/logo.png) no-repeat;
  background-position: center;
  background-size: contain;
}
footer .footercontent .logowrap a.logo:hover {
  opacity: 0.8;
}
footer .footercontent .footernavlist {
  display: flex;
  gap: 5vw;
}
@media screen and (max-width: 900px) {
  footer .footercontent .footernavlist {
    justify-content: center;
    margin: 20px auto;
  }
}
footer .footercontent .footernavlist ul li {
  margin: 10px 0;
}
footer .footercontent .footernavlist ul li a {
  color: #000;
}
footer .footercontent .footernavlist ul li a:hover {
  opacity: 0.7;
}
footer .footercontent .footernavlist ul ul li {
  display: flex;
  font-size: 0.8em;
  margin: 0;
}
footer .footercontent .footernavlist ul ul li::before {
  display: block;
  content: "〉";
}
footer .copycright {
  text-align: center;
  padding: 20px;
  font-size: 10px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝


共有ボタン


＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.b-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  box-sizing: border-box;
  background: #50A7FF;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: #ccc 5px 5px 10px;
  text-shadow: #0035cd 0 1px 5px;
  margin: 10px auto;
  color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 560px) {
  .b-btn {
    font-size: 16px;
    padding: 10px 20px;
    width: 80%;
    margin: 10px auto;
    text-align: center;
  }
}
.b-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 0 0 10px;
  background: url(../img/common/grarrow.svg) no-repeat;
}
@media screen and (max-width: 560px) {
  .b-btn::after {
    display: none;
  }
}
.b-btn:hover {
  background: #0035cd;
}

.blackbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  font-size: 16px;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  transition: 0.4s;
}
@media screen and (max-width: 560px) {
  .blackbtn {
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
    margin: 10px auto;
    text-align: center;
  }
}
.blackbtn::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 0 0 10px;
  background: url(../img/common/brarrow.svg) no-repeat;
}
.blackbtn:hover {
  background: #877107;
}

.btnwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 20px auto;
  gap: 30px;
}
.btnwrap .wbtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px 15px 30px;
  background: #fff url(../img/common/brarrow.svg) no-repeat;
  background-position: 90%;
  background-size: 25px;
  color: #000;
  font-weight: bold;
  font-size: clamp(16px, 2vw, 25px);
}
.btnwrap .ybtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 50px 15px 30px;
  background: #FFC200 url(../img/common/brarrow.svg) no-repeat;
  background-position: 90%;
  background-size: 25px;
  color: #000;
  font-weight: bold;
  font-size: clamp(16px, 2vw, 25px);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝


ベストプラン


＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.bestplanwrap {
  display: flex;
  flex-direction: column;
}
.bestplanwrap .catlogbtnwrap {
  width: 100%;
  height: 280px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 560px) {
  .bestplanwrap .catlogbtnwrap {
    flex-direction: column;
    height: auto;
  }
}
.bestplanwrap .catlogbtnwrap li {
  width: 50%;
  height: 100%;
  flex-shrink: 0;
}
@media screen and (max-width: 560px) {
  .bestplanwrap .catlogbtnwrap li {
    width: 100%;
    height: 200px;
    min-height: 200px;
  }
}
.bestplanwrap .catlogbtnwrap li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  min-height: 200px;
}
@media screen and (max-width: 900px) {
  .bestplanwrap .catlogbtnwrap li a {
    min-height: 200px;
  }
}
.bestplanwrap .catlogbtnwrap li a:hover::after {
  transform: scale(1.2);
}
.bestplanwrap .catlogbtnwrap li .catalogbtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/common/catalogbanner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  z-index: -1;
}
.bestplanwrap .catlogbtnwrap li .reservebtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/common/reservebanner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.4s;
  z-index: -1;
}
.bestplanwrap .catlogbtnwrap li .txt {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
.bestplanwrap .catlogbtnwrap li .txt p {
  font-size: clamp(12px, 1.2vw, 18px);
  line-height: 1.5em;
  margin: 0 0 8px 0;
  letter-spacing: 0.1em;
}
.bestplanwrap .catlogbtnwrap li .txt h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: bold;
  line-height: 1.3em;
}
.bestplanwrap .catlogbtnwrap li .txt .border {
  width: 120px;
  height: 2px;
  background-color: #fff;
  margin: 15px auto 0 auto;
}

.bestplancontwrap {
  width: 100%;
  background: url(../img/top/s5-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5% 10%;
  box-sizing: border-box;
}
.bestplancontwrap img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap img {
    width: 100%;
  }
}
.bestplancontwrap .plans {
  width: 100%;
  display: flex;
  justify-self: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans {
    gap: 15px;
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans {
    flex-direction: column;
    gap: 15px;
    margin: 30px auto;
  }
}
.bestplancontwrap .plans li {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li {
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li {
    width: 100%;
  }
}
.bestplancontwrap .plans li .htt {
  padding: 20px;
  background-color: #000;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .htt {
    padding: 15px;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .htt {
    padding: 12px;
  }
}
.bestplancontwrap .plans li .htt .tubo {
  font-size: 25px;
  padding: 0 8px 0 0;
  margin: 0 8px 0 0;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  /* width: 100%; */
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .htt .tubo {
    font-size: clamp(20px, 3vw, 25px);
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .htt .tubo {
    font-size: clamp(18px, 4vw, 22px);
    padding: 0 5px 0 0;
    margin: 0 5px 0 0;
  }
}
.bestplancontwrap .plans li .htt .tubo span {
  font-size: 13px;
  color: #fff;
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .htt .tubo span {
    font-size: 12px;
  }
}
.bestplancontwrap .plans li .htt p {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .htt p {
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .htt p {
    font-size: 12px;
  }
}
.bestplancontwrap .plans li .thamnailbox {
  min-height: 15vw;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .thamnailbox {
    min-height: 20vw;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox {
    min-height: 200px;
  }
}
.bestplancontwrap .plans li .thamnailbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.bestplancontwrap .plans li .thamnailbox .txt {
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  color: #fff;
  margin-top: auto;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .thamnailbox .txt {
    padding: 15px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox .txt {
    padding: 12px;
    margin-top: 15px;
  }
}
.bestplancontwrap .plans li .thamnailbox .txt .border {
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  border: 2px solid #fff;
  display: inline-block;
  margin: 0 auto 10px auto;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .thamnailbox .txt .border {
    font-size: clamp(16px, 2.5vw, 18px);
    padding: 4px 12px;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox .txt .border {
    font-size: clamp(14px, 3.5vw, 16px);
    padding: 3px 10px;
    margin: 0 auto 8px auto;
  }
}
.bestplancontwrap .plans li .thamnailbox .txt p {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li .thamnailbox .txt p {
    font-size: 13px;
    margin: 0 0 12px 0;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox .txt p {
    font-size: 12px;
    margin: 0 0 10px 0;
  }
}
.bestplancontwrap .plans li .thamnailbox .txt .btnwrap {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox .txt .btnwrap {
    flex-direction: column;
    gap: 8px;
  }
}
.bestplancontwrap .plans li .thamnailbox .txt .btnwrap .wbtn {
  width: 50%;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  transition: 0.4s;
  display: block;
  box-sizing: border-box;
  font-size: 14px;
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox .txt .btnwrap .wbtn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
}
.bestplancontwrap .plans li .thamnailbox .txt .btnwrap .wbtn:hover {
  background-color: #d9d9d9;
}
.bestplancontwrap .plans li .thamnailbox .txt .btnwrap .ybtn {
  width: 50%;
  padding: 10px;
  text-align: center;
  background-color: #ffc200;
  color: #000;
  border: 1px solid #ffc200;
  transition: 0.4s;
  box-sizing: border-box;
  font-size: 14px;
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li .thamnailbox .txt .btnwrap .ybtn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
}
.bestplancontwrap .plans li .thamnailbox .txt .btnwrap .ybtn:hover {
  background-color: #b38800;
}
.bestplancontwrap .plans li.is-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.bestplancontwrap .plans li.is-empty p {
  color: #fff;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .plans li.is-empty p {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .plans li.is-empty p {
    font-size: 14px;
  }
}
.bestplancontwrap .blackbtn {
  margin: 50px auto 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  padding: 20px 40px;
}
@media screen and (max-width: 900px) {
  .bestplancontwrap .blackbtn {
    margin: 40px auto 0 auto;
    font-size: 18px;
    padding: 18px 35px;
  }
}
@media screen and (max-width: 560px) {
  .bestplancontwrap .blackbtn {
    margin: 30px auto 0 auto;
    font-size: 16px;
    padding: 15px 30px;
  }
}

footer {
  display: flex;
  flex-wrap: wrap;
}
footer .fullbtn {
  display: block;
  width: 100%;
  height: 30vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  footer .fullbtn {
    height: 40vw;
  }
}
@media screen and (max-width: 560px) {
  footer .fullbtn {
    height: 50vw;
  }
}
footer .fullbtn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
}
footer .fullbtn:hover::after {
  transform: scale(1.1);
}
footer .herfbtn {
  display: block;
  width: 50%;
  height: 30vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  footer .herfbtn {
    height: 40vw;
  }
}
@media screen and (max-width: 560px) {
  footer .herfbtn {
    width: 100%;
    height: 50vw;
  }
}
footer .herfbtn::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
}
footer .herfbtn:hover::after {
  transform: scale(1.1);
}
footer .footerbtn1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/common/f-p_555037859.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
}
footer .footerbtn2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/common/f-p_177122593.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
}
footer .footerbtn3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/common/f-p-980140356.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
}
footer .footerbtn4::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/common/f-p-215306564.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s;
}
footer .txt {
  position: absolute;
  width: auto;
  height: auto;
  bottom: 30px;
  left: 50px;
  z-index: 12;
  color: #fff;
}
@media screen and (max-width: 900px) {
  footer .txt {
    bottom: 20px;
    left: 30px;
  }
}
@media screen and (max-width: 560px) {
  footer .txt {
    bottom: 15px;
    left: 20px;
  }
}
@media screen and (max-width: 560px) {
  footer .txt p {
    font-size: 12px;
  }
}
footer .txt h3 {
  font-size: clamp(20px, 2vw, 40px);
  line-height: 1.5em;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  footer .txt h3 {
    font-size: clamp(18px, 2.5vw, 32px);
  }
}
@media screen and (max-width: 560px) {
  footer .txt h3 {
    font-size: clamp(16px, 3vw, 24px);
    line-height: 1.4em;
  }
}
footer .flexfullbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35vw;
  position: relative;
  overflow: hidden;
  transition: 1s;
}
@media screen and (max-width: 900px) {
  footer .flexfullbtn {
    height: 45vw;
  }
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn {
    height: auto;
    min-height: 60vw;
    padding: 30px 0;
  }
}
footer .flexfullbtn:hover::after {
  transform: scale(1.1);
}
footer .flexfullbtn .txt {
  width: 90%;
  position: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: inherit;
  left: inherit;
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt {
    flex-direction: column;
    gap: 20px;
  }
}
footer .flexfullbtn .txt .txt-left {
  width: 50%;
  color: #fff;
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt .txt-left {
    width: 100%;
    text-align: center;
  }
}
footer .flexfullbtn .txt .txt-left p {
  font-size: 0.8em;
  line-height: 1.5em;
  margin: 10px 0;
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt .txt-left p {
    font-size: 12px;
  }
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt .txt-left h3 {
    font-size: clamp(18px, 4vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt .txt-left h4 {
    font-size: 14px;
  }
}
footer .flexfullbtn .txt .txt-left.b {
  color: #000;
}
footer .flexfullbtn .txt .txt-right {
  width: 50%;
  display: flex;
  justify-content: end;
  align-items: center;
  text-align: right;
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt .txt-right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  footer .flexfullbtn .txt .txt-right h3 {
    font-size: clamp(18px, 4vw, 24px);
  }
}
footer .flexfullbtn .txt .txt-right.b {
  color: #000;
}
footer .footerbox {
  background-color: #FFC200;
  padding: 50px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  footer .footerbox {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 560px) {
  footer .footerbox {
    padding: 30px 20px;
  }
}
footer .footerbox ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  footer .footerbox ul {
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  footer .footerbox ul {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}
footer .footerbox ul li a {
  color: #000;
  font-size: 11px;
}
@media screen and (max-width: 560px) {
  footer .footerbox ul li a {
    font-size: 13px;
  }
}
footer .footerbox .logo a {
  display: block;
  width: 200px;
  height: 45px;
  background: url(../img/common/f-logo.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin: 30px auto;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 560px) {
  footer .footerbox .logo a {
    width: 150px;
    height: 34px;
    margin: 20px auto;
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝


共通メインビジュアル


＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.mv {
  width: 100%;
  position: relative;
  height: 15vw;
  margin: 100px 0 0 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .mv {
    height: 30vw;
  }
}
@media screen and (max-width: 560px) {
  .mv {
    height: 50vw;
  }
}
.mv .grade {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, #fff 50%);
  position: absolute;
  z-index: 5;
}
.mv .txt {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  position: inherit;
  margin: 0 0 0 5vw;
  z-index: 10;
}
.mv .txt h3 {
  font-size: clamp(22px, 4vw, 80px);
  white-space: nowrap;
  display: block;
  line-height: 1.5em;
  font-weight: bold;
}
.mv .txt h2 {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.1em;
  font-weight: bold;
}
.mv .bg {
  position: absolute;
  top: 0;
  right: 5vw;
  z-index: 1;
  width: calc(80% - 5vw);
  height: 100%;
}
.mv .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-full {
  width: 100%;
  position: relative;
  height: 25vw;
  margin: 80px 0 0 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .mv-full {
    height: 30vw;
  }
}
@media screen and (max-width: 560px) {
  .mv-full {
    height: 50vw;
  }
}
.mv-full .grade {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, #fff 50%);
  position: absolute;
  z-index: 1;
  left: 0;
}
.mv-full .grade2 {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, #E0D4C8 50%);
  position: absolute;
  z-index: 1;
  left: 0;
}
.mv-full .grade3 {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(to left, rgba(230, 230, 230, 0) 0, #fff 50%);
  position: absolute;
  z-index: 1;
  left: 0;
}
.mv-full .txt {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: inherit;
  z-index: 10;
  position: absolute;
  color: #fff;
  text-align: center;
}
.mv-full h3 {
  font-size: clamp(25px, 4vw, 50px);
  white-space: nowrap;
  display: block;
  line-height: 1.3em;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.mv-full h2 {
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 5px 0 0 0;
  line-height: 1.3em;
}
.mv-full h6 {
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.3em;
}
.mv-full .txt-left {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
  position: inherit;
  z-index: 10;
  position: absolute;
  left: 10%;
  text-align: left;
}
.mv-full .txt-left.b {
  color: #000;
}
.mv-full .bg {
  width: 100%;
  height: 100%;
}
.mv-full .bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝


パンくずリスト


＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.breadlist {
  width: 100%;
  margin: 50px auto;
  padding: 0 10%;
  box-sizing: border-box;
  display: flex;
}
@media screen and (max-width: 900px) {
  .breadlist {
    margin: 40px auto;
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  .breadlist {
    margin: 30px auto;
    padding: 0 3%;
    font-size: 12px;
  }
}
.breadlist .top {
  color: #50A7FF;
  font-weight: bold;
  display: block;
  padding: 0 5px 0 0;
}
.breadlist .top::before {
  display: none !important;
}
.breadlist a {
  display: block;
  color: #50A7FF;
  padding: 0 5px 0 0;
}
.breadlist a::before {
  content: "/";
  display: inline;
  padding: 0 5px 0 0;
}
.breadlist p {
  display: block;
  padding: 0 5px 0 0;
}
.breadlist p::before {
  content: "/";
  display: inline;
  padding: 0 5px 0 0;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝


パンくずリスト（breadcrumb）


＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.breadcrumb {
  width: 100%;
  background-color: #fff;
  padding: 15px 5%;
  box-sizing: border-box;
  font-size: clamp(12px, 1vw, 14px);
  color: #333;
}
@media screen and (max-width: 560px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb a {
  color: #333;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: #666;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

#top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 900px) {
  #top-btn {
    width: 50px;
    height: 50px;
    font-size: 12px;
    bottom: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 560px) {
  #top-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
    bottom: 0px;
    right: 0px;
  }
}
#top-btn:hover {
  background-color: #333;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
#top-btn:active {
  transform: translateY(-1px);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝

ページネーション（共通）

＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.ph-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  margin: 40px auto 0;
  padding: 18px 12px;
  background: #f2f2f2;
  border-radius: 8px;
}
@media screen and (max-width: 900px) {
  .ph-pagination {
    margin-top: 30px;
    padding: 14px 10px;
  }
}
@media screen and (max-width: 560px) {
  .ph-pagination {
    margin-top: 20px;
    padding: 12px 8px;
  }
}
.ph-pagination .navigation.pagination {
  width: auto;
  margin: 0;
}
.ph-pagination .nav-links,
.ph-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.ph-pagination ul.page-numbers {
  padding: 0;
  margin: 0;
}
.ph-pagination ul.page-numbers li {
  margin: 0;
}
.ph-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  background: #fff;
  color: #333;
  font-weight: bold;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.ph-pagination a.page-numbers:hover {
  background: #e9e9e9;
  border-color: #bbb;
}
.ph-pagination .page-numbers.current {
  background: #333;
  color: #fff;
  border-color: #333;
}
.ph-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  min-width: auto;
  padding: 0 6px;
}
.ph-pagination .page-numbers.prev,
.ph-pagination .page-numbers.next {
  min-width: auto;
  padding: 0 14px;
}
@media screen and (max-width: 560px) {
  .ph-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#index {
  width: 100%;
  position: relative;
}
#index .indexmainvisual {
  width: 100%;
  height: 80vh;
  margin: 100px 0 0 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  #index .indexmainvisual {
    height: 60vh;
    margin: 80px 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual {
    height: auto;
    margin: 60px 0 0 0;
    display: flex;
    flex-direction: column;
  }
}
#index .indexmainvisual .txtwrap {
  display: flex;
  width: 45%;
  max-width: 650px;
  height: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  left: 5vw;
  top: 50%;
  z-index: 6;
  justify-content: center;
  flex-flow: column;
}
@media screen and (max-width: 900px) {
  #index .indexmainvisual .txtwrap {
    width: 60%;
    left: 3vw;
  }
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    order: 2;
    padding: 20px 5%;
    margin: 0;
    box-sizing: border-box;
    z-index: 1;
    transform: none;
  }
}
#index .indexmainvisual .txtwrap .bt {
  font-size: clamp(25px, 8vw, 100px);
  white-space: nowrap;
  display: block;
  font-weight: bold;
  margin: -150px 0 clamp(25px, 5vw, 75px) 0;
}
@media screen and (max-width: 900px) {
  #index .indexmainvisual .txtwrap .bt {
    font-size: clamp(20px, 6vw, 60px);
    margin: -100px 0 clamp(20px, 4vw, 50px) 0;
  }
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap .bt {
    font-size: clamp(18px, 8vw, 40px);
    margin: 20px auto;
    white-space: normal;
  }
}
#index .indexmainvisual .txtwrap .bt span {
  margin: 0 -20px 0 0;
  padding: 0;
  opacity: 0;
  display: inline-block;
  animation: appear 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.25s);
  transform: translateY(-12px);
  /* 少しだけ浮かせる */
}
@media screen and (max-width: 900px) {
  #index .indexmainvisual .txtwrap .bt span {
    margin: 0 -10px 0 0;
  }
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap .bt span {
    margin: 0 -6px 0 0;
  }
}
@keyframes appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#index .indexmainvisual .txtwrap .st {
  font-size: clamp(25px, 5vw, 70px);
  white-space: nowrap;
  display: block;
  margin: -20px 0 10px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  #index .indexmainvisual .txtwrap .st {
    font-size: clamp(20px, 4vw, 50px);
  }
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap .st {
    font-size: clamp(16px, 5vw, 32px);
    white-space: normal;
    margin: 0 0 60px 0;
    text-align: center;
  }
}
#index .indexmainvisual .txtwrap .img1 {
  display: inline;
  width: 100%;
  margin: 30px 0 0 0;
  font-size: clamp(14px, 6vw, 25px);
  line-height: 1.6em;
  padding-bottom: 2px;
}
@media screen and (max-width: 900px) {
  #index .indexmainvisual .txtwrap .img1 {
    font-size: clamp(13px, 1.8vw, 18px);
    margin: 20px 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap .img1 {
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: clamp(12px, 5vw, 20px);
  }
}
#index .indexmainvisual .txtwrap .img1 .blue {
  color: #0066cc;
  font-weight: bold;
  font-size: clamp(18px, 8vw, 40px);
}
#index .indexmainvisual .txtwrap .img1 .yl {
  white-space: nowrap;
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap .img1 .yl {
    margin: 0px auto;
    text-align: center;
  }
}
#index .indexmainvisual .txtwrap h6 {
  display: block;
  margin: 1.5vw 0 0 0;
}
@media screen and (max-width: 560px) {
  #index .indexmainvisual .txtwrap h6 {
    margin: 10px 0 0 0;
    text-align: center;
  }
}
#index .swiper-container {
  width: 60%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 5;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #index .swiper-container {
    width: 65%;
  }
}
@media screen and (max-width: 560px) {
  #index .swiper-container {
    width: 100%;
    height: 50vh;
    min-height: 300px;
    position: relative;
    order: 1;
    margin: 0;
  }
}
#index .swiper-container .swiper-slide .slide-img {
  display: block;
  width: 100%;
  height: 100%;
}
#index .swiper-container .grade {
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0, #fff 80%);
  position: absolute;
  z-index: 50;
}
@media screen and (max-width: 560px) {
  #index .swiper-container .grade {
    display: none;
  }
}
#index .scroll {
  position: absolute;
  right: 1vw;
  bottom: 0;
  z-index: 89;
  width: 25px;
  height: 120px;
}
@media screen and (max-width: 560px) {
  #index .scroll {
    display: none;
  }
}
#index .scroll img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#index .s0 {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 0;
  background-color: #F6F6F6;
}
@media screen and (max-width: 900px) {
  #index .s0 {
    padding: 60px 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 {
    padding: 40px 0;
  }
}
#index .s0 .title {
  width: calc(30% - 5vw);
  margin: 0 0 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #index .s0 .title {
    width: 100%;
    height: auto;
    padding: 20px 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .title {
    padding: 15px 5%;
    margin: 0;
  }
}
#index .s0 .title .txtbx {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#index .s0 .title .txtbx h3 {
  font-size: 2.5vw;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #index .s0 .title .txtbx h3 {
    font-size: clamp(24px, 4vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .title .txtbx h3 {
    font-size: clamp(20px, 6vw, 28px);
  }
}
#index .s0 .title .txtbx h2 {
  font-size: 1vw;
  line-height: 1.8em;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 900px) {
  #index .s0 .title .txtbx h2 {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .title .txtbx h2 {
    font-size: 14px;
    margin: 0;
  }
}
#index .s0 .title .blackbtn {
  margin: 0 auto;
  position: relative;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
#index .s0 .topics {
  width: 100%;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  order: 2;
  padding: 0 5%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #index .s0 .topics {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .topics {
    padding: 0 5%;
    overflow: visible;
  }
}
#index .s0 .topics ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  #index .s0 .topics ul {
    gap: 15px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .topics ul {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
#index .s0 .topics ul li {
  width: 100%;
  flex-shrink: 0;
  padding: 10px 0;
  border-bottom: 1px solid #000;
  transition: background-color 0.3s ease;
}
#index .s0 .topics ul li:hover {
  background-color: #e8e8e8;
}
#index .s0 .topics ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
#index .s0 .topics ul .thamnail {
  width: 150px;
  height: 100px;
  background-color: #999;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #index .s0 .topics ul .thamnail {
    width: 180px;
    height: 120px;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .topics ul .thamnail {
    width: 120px;
    height: 90px;
  }
}
#index .s0 .topics ul .tb {
  display: flex;
  flex-flow: column;
  padding: 5px 0px 5px 10px;
  flex: 1;
}
#index .s0 .topics ul .tb .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
}
@media screen and (max-width: 560px) {
  #index .s0 .topics ul .tb .category-wrap {
    gap: 3px;
  }
}
#index .s0 .topics ul .tb .category {
  display: block;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  margin: 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
#index .s0 .topics ul .tb .category:hover {
  background-color: #333;
}
@media screen and (max-width: 560px) {
  #index .s0 .topics ul .tb .category {
    font-size: 9px;
    padding: 3px 6px;
  }
}
#index .s0 .topics ul .tb h2 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #index .s0 .topics ul .tb h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .topics ul .tb h2 {
    font-size: 14px;
  }
}
#index .s0 .topics ul .tb p {
  font-size: 0.8rem;
  line-height: 1rem;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 560px) {
  #index .s0 .topics ul .tb p {
    font-size: 12px;
  }
}
#index .s0 .blackbtn {
  margin: 50px auto 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 10;
  order: 3;
}
#index .s0 .blackbtn::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 0 0 0 10px;
  background: url(../img/common/brarrow.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 560px) {
  #index .s0 .blackbtn::after {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  #index .s0 .blackbtn {
    margin: 40px auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #index .s0 .blackbtn {
    margin: 30px auto 0 auto;
    width: 80%;
    text-align: center;
  }
}
#index .s1 {
  width: 100%;
}
#index .s1 .txtbw {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  #index .s1 .txtbw {
    flex-direction: column;
  }
}
#index .s1 .txtbw .tb {
  width: 50%;
  padding: 30px 30px 30px 5vw;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #index .s1 .txtbw .tb {
    width: 100%;
    padding: 30px 5%;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .txtbw .tb {
    padding: 20px 5%;
  }
}
#index .s1 .txtbw .tb p {
  margin-bottom: 15px;
}
.error404 #index .s1 .txtbw .tb {
  width: 80%;
  padding: 30px 5vw;
}
@media screen and (max-width: 900px) {
  .error404 #index .s1 .txtbw .tb {
    width: 100%;
    padding: 30px 5%;
  }
}
@media screen and (max-width: 560px) {
  .error404 #index .s1 .txtbw .tb {
    padding: 20px 5%;
  }
}
.error404 #index .s1 .txtbw .tb p {
  margin: 20px 0;
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  .error404 #index .s1 .txtbw .tb p {
    font-size: 14px;
    margin: 15px 0;
    text-align: center;
  }
}
.error404 #index .s1 .txtbw .tb img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 560px) {
  .error404 #index .s1 .txtbw .tb img {
    width: 80%;
    margin: 0 auto;
  }
}
#index .s1 .txtbw .bgimg {
  display: block;
  width: 50%;
  background: url(../img/top/p-972363089.png);
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 900px) {
  #index .s1 .txtbw .bgimg {
    width: 100%;
    height: 40vw;
    background: url(../img/top/p-972363089.png);
    background-size: cover;
    background-position: top;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .txtbw .bgimg {
    height: 50vw;
  }
}
#index .s1 .plans {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans {
    width: 90%;
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans {
    width: 95%;
    gap: 5px;
    margin: 20px auto;
  }
}
#index .s1 .plans li {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li {
    width: 100%;
  }
}
#index .s1 .plans li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
#index .s1 .plans li .htt {
  padding: 20px;
  background-color: #000;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .htt {
    padding: 15px;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .htt {
    padding: 12px;
  }
}
#index .s1 .plans li .htt .tubo {
  font-size: 25px;
  padding: 0 8px 0 0;
  margin: 0 8px 0 0;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .htt .tubo {
    font-size: clamp(20px, 3vw, 25px);
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .htt .tubo {
    font-size: clamp(18px, 4vw, 22px);
    padding: 0 5px 0 0;
    margin: 0 5px 0 0;
  }
}
#index .s1 .plans li .htt .tubo span {
  font-size: 13px;
  color: #fff;
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .htt .tubo span {
    font-size: 12px;
  }
}
#index .s1 .plans li .htt p {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .htt p {
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .htt p {
    font-size: 12px;
  }
}
#index .s1 .plans li .thamnailbox {
  min-height: 15vw;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .thamnailbox {
    min-height: 20vw;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox {
    min-height: 200px;
  }
}
#index .s1 .plans li .thamnailbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
#index .s1 .plans li .thamnailbox .txt {
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  color: #fff;
  margin-top: auto;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .thamnailbox .txt {
    padding: 15px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox .txt {
    padding: 12px;
    margin-top: 15px;
  }
}
#index .s1 .plans li .thamnailbox .txt .border {
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  border: 2px solid #fff;
  display: inline-block;
  margin: 0 auto 10px auto;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .thamnailbox .txt .border {
    font-size: clamp(16px, 2.5vw, 18px);
    padding: 4px 12px;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox .txt .border {
    font-size: clamp(14px, 3.5vw, 16px);
    padding: 3px 10px;
    margin: 0 auto 8px auto;
  }
}
#index .s1 .plans li .thamnailbox .txt p {
  font-size: 14px;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 900px) {
  #index .s1 .plans li .thamnailbox .txt p {
    font-size: 13px;
    margin: 0 0 12px 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox .txt p {
    font-size: 12px;
    margin: 0 0 10px 0;
  }
}
#index .s1 .plans li .thamnailbox .txt .btnwrap {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox .txt .btnwrap {
    flex-direction: column;
    gap: 8px;
  }
}
#index .s1 .plans li .thamnailbox .txt .btnwrap .wbtn {
  width: 50%;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  transition: 0.4s;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox .txt .btnwrap .wbtn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
}
#index .s1 .plans li .thamnailbox .txt .btnwrap .wbtn:hover {
  background-color: #d9d9d9;
}
#index .s1 .plans li .thamnailbox .txt .btnwrap .ybtn {
  width: 50%;
  padding: 10px;
  text-align: center;
  background-color: #ffc200;
  color: #000;
  border: 1px solid #ffc200;
  transition: 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #index .s1 .plans li .thamnailbox .txt .btnwrap .ybtn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
}
#index .s1 .plans li .thamnailbox .txt .btnwrap .ybtn:hover {
  background-color: #b38800;
}
#index .s2 .ttl {
  display: block;
  margin: 80px auto;
  width: 60%;
}
@media screen and (max-width: 900px) {
  #index .s2 .ttl {
    width: 80%;
    margin: 60px auto;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .ttl {
    width: 90%;
    margin: 30px auto;
  }
}
#index .s2 .slidewrap {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap {
    overflow: visible;
  }
}
#index .s2 .slidewrap .thamnwrap {
  width: 100%;
  margin: 0 auto;
  padding: 50px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  #index .s2 .slidewrap .thamnwrap {
    padding: 40px 5%;
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap {
    padding: 15px 3%;
    gap: 20px 15px;
    flex-wrap: wrap;
    overflow: visible;
    transform: none;
    justify-content: center;
  }
}
#index .s2 .slidewrap .thamnwrap li {
  position: relative;
}
#index .s2 .slidewrap .thamnwrap li.is-empty {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li {
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li.is-empty {
    width: 100%;
  }
}
#index .s2 .slidewrap .thamnwrap li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 10px;
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li a {
    gap: 5px;
  }
}
#index .s2 .slidewrap .thamnwrap li .title-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  white-space: nowrap;
}
#index .s2 .slidewrap .thamnwrap li .title-text .title-subtitle {
  font-size: 12px;
  color: #000;
  font-weight: normal;
  display: block;
}
@media screen and (max-width: 900px) {
  #index .s2 .slidewrap .thamnwrap li .title-text .title-subtitle {
    font-size: 11px;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li .title-text .title-subtitle {
    font-size: 10px;
  }
}
#index .s2 .slidewrap .thamnwrap li .title-text .title-main {
  font-size: 20px;
  color: #000;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 900px) {
  #index .s2 .slidewrap .thamnwrap li .title-text .title-main {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li .title-text .title-main {
    font-size: 16px;
  }
}
#index .s2 .slidewrap .thamnwrap li img {
  max-width: 280px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #index .s2 .slidewrap .thamnwrap li img {
    max-width: 250px;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li img {
    max-width: 100%;
    width: 100%;
  }
}
#index .s2 .slidewrap .thamnwrap li .arrow {
  width: 20px;
  height: 20px;
  display: block;
  background: url(../img/common/arrow-b.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.4s;
  position: absolute;
  bottom: -30px;
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li .arrow {
    width: 15px;
    height: 15px;
    bottom: -20px;
  }
}
#index .s2 .slidewrap .thamnwrap li a:hover .arrow {
  bottom: -40px;
}
@media screen and (max-width: 560px) {
  #index .s2 .slidewrap .thamnwrap li a:hover .arrow {
    bottom: -25px;
  }
}
#index .s2 .contbox {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox {
    margin: 30px 0 0 0;
  }
}
#index .s2 .contbox .yellowbtn {
  width: 130px;
  height: 130px;
  text-align: center;
  background-color: #ffc200;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  align-self: flex-end;
  margin: -20px 50px 0 0;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  transition: 0.4s;
  order: 2;
  z-index: 10;
}
#index .s2 .contbox .yellowbtn:hover {
  background-color: #ff9d00;
}
@media screen and (max-width: 900px) {
  #index .s2 .contbox .yellowbtn {
    width: 100px;
    height: 100px;
    font-size: 15px;
    margin: -20px 30px 0 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .yellowbtn {
    width: 100%;
    height: 80px;
    border-radius: 0;
    margin: 20px 0 0 0;
    order: 3;
  }
}
#index .s2 .contbox li {
  opacity: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  order: 1;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #index .s2 .contbox li {
    height: 400px;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li {
    height: 300px;
  }
}
#index .s2 .contbox li.fade-out {
  opacity: 0;
}
#index .s2 .contbox li.fade-in {
  opacity: 1;
}
#index .s2 .contbox li img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
#index .s2 .contbox li .price {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4vw;
  box-sizing: border-box;
  color: #fff;
  z-index: 22;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li .price {
    padding: 20px;
  }
}
#index .s2 .contbox li .price h3 {
  font-size: clamp(25px, 3vw, 60px);
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li .price h3 {
    font-size: clamp(18px, 4vw, 32px);
  }
}
#index .s2 .contbox li .price .bottomtxt {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
#index .s2 .contbox li .price .bottomtxt p {
  font-size: 20px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li .price .bottomtxt p {
    font-size: 14px;
    margin: 0 0 8px 0;
  }
}
#index .s2 .contbox li .price .bottomtxt .fbox {
  display: flex;
  align-items: baseline;
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li .price .bottomtxt .fbox {
    flex-direction: column;
    align-items: flex-start;
  }
}
#index .s2 .contbox li .price .bottomtxt .fbox .tubo {
  font-size: 2em;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li .price .bottomtxt .fbox .tubo {
    font-size: 1.5em;
    margin: 0 0 5px 0;
  }
}
#index .s2 .contbox li .price .bottomtxt .fbox .tubo span {
  font-size: 0.5em;
}
#index .s2 .contbox li .price .bottomtxt .fbox .nedan {
  font-size: 4vw;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox li .price .bottomtxt .fbox .nedan {
    font-size: clamp(16px, 8vw, 30px);
  }
}
#index .s2 .contbox li .price .bottomtxt .fbox .nedan span {
  font-size: 0.4em;
  font-weight: 400;
}
#index .s2 .contbox .contbox-slider-wrapper {
  position: relative;
  width: 100%;
  order: 1;
  overflow: hidden;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li {
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  opacity: 1;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li {
    height: 400px;
  }
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li {
    height: 300px;
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4vw;
  box-sizing: border-box;
  color: #fff;
  z-index: 22;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price {
    padding: 20px;
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price h3 {
  font-size: clamp(25px, 3vw, 60px);
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price h3 {
    font-size: clamp(18px, 4vw, 32px);
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt p {
  font-size: 20px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt p {
    font-size: 14px;
    margin: 0 0 8px 0;
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox {
  display: flex;
  align-items: baseline;
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox {
    flex-direction: column;
    align-items: flex-start;
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox .tubo {
  font-size: 2em;
  margin: 0 20px 0 0;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox .tubo {
    font-size: 1.5em;
    margin: 0 0 5px 0;
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox .tubo span {
  font-size: 0.5em;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox .nedan {
  font-size: 4vw;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox .nedan {
    font-size: clamp(16px, 8vw, 30px);
  }
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider li .price .bottomtxt .fbox .nedan span {
  font-size: 0.4em;
  font-weight: 400;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-prev,
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 30;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-prev:hover,
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-next:hover {
  background: rgba(255, 255, 255, 1);
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-prev:disabled,
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-prev {
  left: 20px;
}
#index .s2 .contbox .contbox-slider-wrapper .contbox-slider-next {
  right: 20px;
}
@media screen and (max-width: 560px) {
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider-prev,
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider-prev {
    left: 10px;
  }
  #index .s2 .contbox .contbox-slider-wrapper .contbox-slider-next {
    right: 10px;
  }
}
#index .s3 {
  width: calc(100% - 5vw);
  padding: 105px 50px;
  position: relative;
  float: right;
  box-sizing: border-box;
  background-color: #EBEBEB;
  margin: 100px 0 0 5vw;
}
@media screen and (max-width: 900px) {
  #index .s3 {
    width: 100%;
    margin: 60px 0 0 0;
    padding: 80px 5%;
    float: none;
  }
}
@media screen and (max-width: 560px) {
  #index .s3 {
    padding: 40px 3%;
    margin: 0;
  }
}
#index .s3 .title {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  box-sizing: border-box;
  left: 10%;
  top: -15px;
}
@media screen and (max-width: 900px) {
  #index .s3 .title {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 30px 0;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .title {
    padding: 15px 5%;
    width: 100%;
    height: auto;
    position: relative;
    left: 0;
    top: 0;
    margin: 0;
  }
}
#index .s3 .title h3 {
  font-size: clamp(30px, 4vw, 80px);
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #index .s3 .title h3 {
    font-size: clamp(24px, 4vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .title h3 {
    font-size: clamp(20px, 5vw, 28px);
  }
}
#index .s3 .title h2 {
  font-size: 1vw;
  line-height: 1.8em;
  margin: 1vw 0 0 0;
}
@media screen and (max-width: 900px) {
  #index .s3 .title h2 {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .title h2 {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
#index .s3 .list li.is-empty {
  text-align: center;
}
#index .s3 .list li.is-empty p {
  margin: 0;
}
#index .s3 .Container {
  width: 100%;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  padding: 0 5%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #index .s3 .Container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .Container {
    padding: 0 5%;
    overflow: visible;
  }
}
#index .s3 .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  #index .s3 .list {
    gap: 15px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .list {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
#index .s3 .list li {
  width: 100%;
  flex-shrink: 0;
  padding: 10px 0;
  border-bottom: 1px solid #000;
}
#index .s3 .list li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
#index .s3 .list li .tham {
  width: 150px;
  height: 100px;
  background-color: #999;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #index .s3 .list li .tham {
    width: 180px;
    height: 120px;
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .list li .tham {
    width: 120px;
    height: 90px;
  }
}
#index .s3 .list li .tham img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#index .s3 .list li a:hover .tham img {
  transform: scale(1.1);
}
#index .s3 .list li .txtbox {
  display: flex;
  flex-flow: column;
  padding: 5px 0px 5px 10px;
  flex: 1;
  color: #50A7FF;
}
@media screen and (max-width: 560px) {
  #index .s3 .list li .txtbox {
    padding: 5px 0px 5px 10px;
  }
}
#index .s3 .list li .txtbox .cate {
  font-size: 12px;
  line-height: 1em;
  color: #000;
}
@media screen and (max-width: 560px) {
  #index .s3 .list li .txtbox .cate {
    font-size: 8px;
  }
}
#index .s3 .list li .txtbox .eventtitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5em;
  margin: 0 0 5px 0;
  color: #000;
}
@media screen and (max-width: 560px) {
  #index .s3 .list li .txtbox .eventtitle {
    font-size: 12px;
  }
}
#index .s3 .list li .txtbox .date,
#index .s3 .list li .txtbox .time,
#index .s3 .list li .txtbox .caution {
  color: #000;
  font-size: 13px;
  line-height: 1.3em;
}
@media screen and (max-width: 560px) {
  #index .s3 .list li .txtbox .date,
  #index .s3 .list li .txtbox .time,
  #index .s3 .list li .txtbox .caution {
    font-size: 10px;
  }
}
#index .s3 .blackbtn {
  position: absolute;
  bottom: -25px;
  right: 5vw;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  #index .s3 .blackbtn {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 40px auto 0 auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 560px) {
  #index .s3 .blackbtn {
    margin: 30px auto 0 auto;
    width: 80%;
    text-align: center;
  }
}
#index .s4 {
  width: 100%;
  display: flex;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 900px) {
  #index .s4 {
    flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s4 {
    padding: 0;
  }
}
#index .s4::after {
  width: 100%;
  height: 40vw;
  display: block;
  background-color: #ffc200;
  position: absolute;
  top: 50%;
  z-index: -1;
  content: "";
  margin: -20vw 0 0 0;
}
@media screen and (max-width: 900px) {
  #index .s4::after {
    height: 50vw;
    margin: -25vw 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s4::after {
    height: 60vw;
    margin: -30vw 0 0 0;
  }
}
#index .s4 .txtwrap {
  width: 40%;
  padding: 5vw;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #index .s4 .txtwrap {
    width: 100%;
    padding: 40px 5%;
    background-color: #ffc200;
  }
}
@media screen and (max-width: 560px) {
  #index .s4 .txtwrap {
    padding: 30px 5%;
  }
}
#index .s4 .title h3 {
  font-size: clamp(30px, 4vw, 80px);
  line-height: 1.1em;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 560px) {
  #index .s4 .title h3 {
    font-size: clamp(24px, 5vw, 40px);
  }
}
#index .s4 .title h2 {
  font-size: 1vw;
  font-weight: bold;
  line-height: 1.8em;
  margin: 0.5vw 0 0 0;
}
@media screen and (max-width: 900px) {
  #index .s4 .title h2 {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #index .s4 .title h2 {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
#index .s4 .coment {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 560px) {
  #index .s4 .coment {
    font-size: 14px;
    margin: 15px 0 0 0;
  }
}
#index .s4 .Slider {
  display: flex;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #index .s4 .Slider {
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  #index .s4 .Slider {
    width: 95%;
  }
}
#index .s4 .Slider-Container {
  overflow: hidden;
  width: 100%;
}
#index .s4 .Slider-Track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}
#index .s4 .modelhouse {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
}
#index .s4 .modelhouse.is-empty {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#index .s4 .modelhouse.is-empty p {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 560px) {
  #index .s4 .modelhouse {
    padding: 15px;
  }
}
#index .s4 .modelhouse a {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: #ccc 2px 2px 15px;
  background-color: #F6F6F6;
  text-decoration: none;
  color: inherit;
}
#index .s4 .modelhouse .thmn {
  background-color: #000;
}
#index .s4 .modelhouse .thmn img {
  width: 100%;
  height: auto;
  display: block;
}
#index .s4 .modelhouse .txtbox {
  width: 100%;
  padding: 25px;
  margin: -10px 0 0 0;
  box-sizing: border-box;
  color: #000;
  position: relative;
  height: auto;
  min-height: auto;
}
@media screen and (max-width: 560px) {
  #index .s4 .modelhouse .txtbox {
    padding: 20px;
  }
}
#index .s4 .modelhouse .txtbox .ttl {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 560px) {
  #index .s4 .modelhouse .txtbox .ttl {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}
#index .s4 .modelhouse .txtbox p {
  font-size: 14px;
  line-height: 1.5em;
}
@media screen and (max-width: 560px) {
  #index .s4 .modelhouse .txtbox p {
    font-size: 12px;
  }
}
#index .s4 .modelhouse .txtbox .bbox {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #000;
  padding: 5px 20px;
  color: #fff;
  position: absolute;
  right: 0;
  top: -24px;
}
@media screen and (max-width: 560px) {
  #index .s4 .modelhouse .txtbox .bbox {
    padding: 5px 15px;
    font-size: 12px;
  }
}
#index .s4 .Arrow {
  background: #ccc;
  border: none;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 4px;
  margin: 0 10px;
}
#index .s4 .Arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
#index .s4 .Slider {
  position: relative;
  /* ← 矢印の基準 */
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}
#index .s4 .Arrow {
  position: absolute;
  top: 50%;
  margin: -40px 0 0 0;
  background: #fff url(../img/common/arrow.svg) no-repeat;
  background-size: 12px;
  background-position: center;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 900px) {
  #index .s4 .Arrow {
    width: 30px;
    height: 30px;
    padding: 10px;
    background-size: 10px;
    margin: -30px 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s4 .Arrow {
    width: 25px;
    height: 25px;
    padding: 8px;
    background-size: 8px;
    margin: -25px 0 0 0;
  }
}
#index .s4 .Arrow.left {
  left: 10px;
  transform: rotate(180deg);
}
#index .s4 .Arrow.right {
  right: 10px;
}
#index .s4 .Arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
#index .s5 {
  background-color: #F6F6F6;
  padding: 50px 0;
}
@media screen and (max-width: 900px) {
  #index .s5 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 560px) {
  #index .s5 {
    padding: 30px 0;
  }
}
#index .s5 .title {
  text-align: center;
  margin: 0;
}
#index .s5 .title h3 {
  font-size: clamp(30px, 4vw, 80px);
  line-height: 1.1em;
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #index .s5 .title h3 {
    font-size: clamp(24px, 5vw, 40px);
  }
}
#index .s5 .title h2 {
  font-size: 1vw;
  font-weight: bold;
  line-height: 1.8em;
  margin: 0.5vw 0 0 0;
}
@media screen and (max-width: 900px) {
  #index .s5 .title h2 {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #index .s5 .title h2 {
    font-size: 14px;
    margin: 10px 0 0 0;
  }
}
#index .s5 ul,
#index .s5 .mainarchive {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 50px auto;
}
#index .s5 ul li,
#index .s5 .mainarchive li {
  height: 100%;
}
#index .s5 ul li.is-empty,
#index .s5 .mainarchive li.is-empty {
  width: 100%;
  text-align: center;
}
#index .s5 ul li.is-empty p,
#index .s5 .mainarchive li.is-empty p {
  margin: 0;
}
#index .s5 ul li a,
#index .s5 .mainarchive li a {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #000;
}
#index .s5 ul li a:hover .thamnail,
#index .s5 .mainarchive li a:hover .thamnail {
  transform: scale(1.1);
}
#index .s5 ul li a .thamnail,
#index .s5 .mainarchive li a .thamnail {
  width: 100%;
  height: 25vw;
  border-radius: 10px;
  transition: 0.4s;
}
#index .s5 ul li .wtb,
#index .s5 .mainarchive li .wtb {
  margin: 5px 0 0 0;
}
#index .s5 ul li .wtb p,
#index .s5 .mainarchive li .wtb p {
  font-size: 12px;
}
#index .s5 ul li .wtb h3,
#index .s5 .mainarchive li .wtb h3 {
  font-size: 18px;
  font-weight: bold;
}
#index .s5 ul li .wtb .taglist,
#index .s5 .mainarchive li .wtb .taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px auto;
}
#index .s5 ul li .wtb .taglist .tag,
#index .s5 .mainarchive li .wtb .taglist .tag {
  font-size: 12px;
  line-height: 12px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
}
#index .s5 ul {
  width: 80%;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #index .s5 ul {
    width: 90%;
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #index .s5 ul {
    width: 95%;
    gap: 10px;
    margin: 30px auto;
  }
}
#index .s5 ul li {
  width: calc(33.333% - 14px);
}
@media screen and (max-width: 900px) {
  #index .s5 ul li {
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 560px) {
  #index .s5 ul li {
    width: calc(50% - 5px);
  }
}
#index .s5 ul li .thmn {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#index .s5 ul li .thmn img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
#index .s5 ul li .txt {
  font-size: 11px;
  line-height: 1.2em;
  color: #000;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 560px) {
  #index .s5 ul li .txt {
    font-size: 12px;
    padding: 10px 0;
  }
}
#index .s5 .mainarchive {
  justify-content: space-between;
  gap: 50px 20px;
}
#index .s5 .mainarchive li {
  width: calc(33.3333333333% - 20px);
}
#index .s5 .blackbtn {
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  #index .s5 .blackbtn {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#topics {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  #topics .mv {
    height: 50vh;
  }
}
@media screen and (max-width: 560px) {
  #topics .mv {
    height: 20vh;
  }
}
@media screen and (max-width: 900px) {
  #topics .mv .txt {
    padding: 20px 5%;
  }
}
@media screen and (max-width: 560px) {
  #topics .mv .txt {
    padding: 15px 5%;
  }
}
@media screen and (max-width: 900px) {
  #topics .mv .txt h3 {
    font-size: clamp(24px, 5vw, 48px);
  }
}
@media screen and (max-width: 560px) {
  #topics .mv .txt h3 {
    font-size: clamp(20px, 6vw, 36px);
  }
}
@media screen and (max-width: 900px) {
  #topics .mv .txt h2 {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #topics .mv .txt h2 {
    font-size: 14px;
  }
}
#topics .scroll {
  position: absolute;
  right: 1vw;
  bottom: 0;
  z-index: 89;
  width: 25px;
  height: 120px;
}
@media screen and (max-width: 560px) {
  #topics .scroll {
    display: none;
  }
}
#topics .scroll img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#topics .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 100px auto;
}
@media screen and (max-width: 900px) {
  #topics .s1 {
    width: 90%;
    margin: 60px auto;
  }
}
@media screen and (max-width: 560px) {
  #topics .s1 {
    width: 95%;
    margin: 40px auto;
    padding: 0 3%;
  }
}
#topics .s1 .category ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  #topics .s1 .category ul {
    flex-direction: column;
    gap: 10px;
  }
}
#topics .s1 .category ul li {
  width: 33.3333333333%;
}
@media screen and (max-width: 560px) {
  #topics .s1 .category ul li {
    width: 100%;
  }
}
#topics .s1 .category ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  padding: 12px 10px;
  color: #000;
  border: 1px solid #000;
  transition: 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #topics .s1 .category ul li a {
    padding: 10px;
    font-size: 14px;
  }
}
#topics .s1 .category ul li a:hover {
  background: #000;
  color: #fff;
}
#topics .s1 .topicslist {
  margin: 50px auto;
  display: flex;
  flex-flow: column;
  gap: 1px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  #topics .s1 .topicslist {
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist {
    margin: 30px auto;
    gap: 10px;
  }
}
#topics .s1 .topicslist .topic {
  width: 100%;
}
#topics .s1 .topicslist .topic a {
  display: flex;
  transition: background-color 0.3s ease;
}
#topics .s1 .topicslist .topic a:hover {
  background-color: #f5f5f5;
}
#topics .s1 .topicslist .topic a:hover .txt {
  background-position: center right;
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic a {
    flex-direction: column;
  }
}
#topics .s1 .topicslist .topic .thamnail {
  width: 200px;
  height: 150px;
  background-color: #ddd;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #topics .s1 .topicslist .topic .thamnail {
    width: 180px;
    height: 135px;
  }
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic .thamnail {
    width: 100%;
    height: 200px;
  }
}
#topics .s1 .topicslist .topic .txt {
  width: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px 60px;
  border-top: 1px dotted #ddd;
  color: #222;
  background: url(../img/common/barrow.svg) no-repeat;
  background-size: 30px;
  background-position: calc(100% - 20px) center;
  transition: background-position 0.3s ease;
}
@media screen and (max-width: 900px) {
  #topics .s1 .topicslist .topic .txt {
    padding: 10px 50px 10px 30px;
    background-size: 25px;
  }
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic .txt {
    width: 100%;
    padding: 15px 40px 15px 15px;
    background-size: 20px;
    border-top: none;
    border-left: 1px dotted #ddd;
  }
}
#topics .s1 .topicslist .topic .txt .titebox {
  width: 100%;
}
#topics .s1 .topicslist .topic .txt .titebox .category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic .txt .titebox .category-wrap {
    gap: 3px;
    margin: 0 0 6px 0;
  }
}
#topics .s1 .topicslist .topic .txt .titebox .category {
  display: block;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  line-height: 1.8em;
  margin: 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
#topics .s1 .topicslist .topic .txt .titebox .category:hover {
  background-color: #333;
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic .txt .titebox .category {
    font-size: 9px;
    padding: 3px 6px;
  }
}
#topics .s1 .topicslist .topic .txt .titebox h2 {
  font-size: 22px;
  word-break: break-word;
  overflow-wrap: break-word;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #topics .s1 .topicslist .topic .txt .titebox h2 {
    font-size: clamp(18px, 2.5vw, 22px);
  }
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic .txt .titebox h2 {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.4;
  }
}
#topics .s1 .topicslist .topic .txt .titebox .date {
  color: rgb(144, 144, 144);
  margin: 5px 0 0 0;
}
@media screen and (max-width: 560px) {
  #topics .s1 .topicslist .topic .txt .titebox .date {
    font-size: 12px;
  }
}
#topics .s1 .blackbtn {
  margin: 50px auto 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  #topics .s1 .blackbtn {
    margin: 40px auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #topics .s1 .blackbtn {
    margin: 30px auto 0 auto;
    width: 80%;
    text-align: center;
  }
}

#single-topics .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 100px auto;
}
#single-topics .s1 .maincont h1 {
  color: #000;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont h1 {
    font-size: 28px;
  }
}
#single-topics .s1 .maincont h2 {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  margin: 30px 0 15px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont h2 {
    font-size: 24px;
  }
}
#single-topics .s1 .maincont h3 {
  color: #000;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  margin: 25px 0 12px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont h3 {
    font-size: 22px;
  }
}
#single-topics .s1 .maincont h4 {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin: 20px 0 10px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont h4 {
    font-size: 18px;
  }
}
#single-topics .s1 .maincont h5 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 18px 0 8px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont h5 {
    font-size: 17px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont h5 {
    font-size: 16px;
  }
}
#single-topics .s1 .maincont h6 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0 8px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont h6 {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont h6 {
    font-size: 14px;
  }
}
#single-topics .s1 .maincont .date {
  color: #858585;
}
#single-topics .s1 .maincont .cont {
  margin: 20px auto;
}
#single-topics .s1 .maincont .cont h2 {
  color: #000;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  margin: 30px 0 15px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont h2 {
    font-size: 24px;
  }
}
#single-topics .s1 .maincont .cont h3 {
  color: #000;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  margin: 25px 0 12px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont h3 {
    font-size: 22px;
  }
}
#single-topics .s1 .maincont .cont h4 {
  color: #000;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin: 20px 0 10px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont h4 {
    font-size: 18px;
  }
}
#single-topics .s1 .maincont .cont h5 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 18px 0 8px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont h5 {
    font-size: 17px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont h5 {
    font-size: 16px;
  }
}
#single-topics .s1 .maincont .cont h6 {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 15px 0 8px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont h6 {
    font-size: 15px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont h6 {
    font-size: 14px;
  }
}
#single-topics .s1 .maincont .cont p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont p {
    font-size: 14px;
  }
}
#single-topics .s1 .maincont .cont a {
  color: #0066cc;
  text-decoration: underline;
  transition: color 0.3s ease;
}
#single-topics .s1 .maincont .cont a:hover {
  color: #004499;
}
#single-topics .s1 .maincont .cont a:visited {
  color: #6633cc;
}
#single-topics .s1 .maincont .cont ul, #single-topics .s1 .maincont .cont ol {
  margin: 20px 0;
  padding-left: 30px;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont ul, #single-topics .s1 .maincont .cont ol {
    padding-left: 20px;
  }
}
#single-topics .s1 .maincont .cont ul li, #single-topics .s1 .maincont .cont ol li {
  margin: 8px 0;
  line-height: 1.8;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont ul li, #single-topics .s1 .maincont .cont ol li {
    font-size: 14px;
  }
}
#single-topics .s1 .maincont .cont ul li ul, #single-topics .s1 .maincont .cont ul li ol, #single-topics .s1 .maincont .cont ol li ul, #single-topics .s1 .maincont .cont ol li ol {
  margin: 8px 0;
}
#single-topics .s1 .maincont .cont ul {
  list-style-type: disc;
}
#single-topics .s1 .maincont .cont ul ul {
  list-style-type: circle;
}
#single-topics .s1 .maincont .cont ul ul ul {
  list-style-type: square;
}
#single-topics .s1 .maincont .cont ol {
  list-style-type: decimal;
}
#single-topics .s1 .maincont .cont ol ol {
  list-style-type: lower-alpha;
}
#single-topics .s1 .maincont .cont ol ol ol {
  list-style-type: lower-roman;
}
#single-topics .s1 .maincont .cont img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 5px;
}
#single-topics .s1 .maincont .cont img.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
#single-topics .s1 .maincont .cont img.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
#single-topics .s1 .maincont .cont img.aligncenter {
  display: block;
  margin: 20px auto;
}
#single-topics .s1 .maincont .cont img.alignnone {
  display: block;
  margin: 20px auto;
}
#single-topics .s1 .maincont .cont figure {
  margin: 20px 0;
  text-align: center;
}
#single-topics .s1 .maincont .cont figure img {
  margin: 0 auto;
}
#single-topics .s1 .maincont .cont figure figcaption {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
  text-align: center;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont figure figcaption {
    font-size: 12px;
  }
}
#single-topics .s1 .maincont .cont figure.alignleft {
  float: left;
  margin: 0 20px 20px 0;
  max-width: 50%;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont figure.alignleft {
    float: none;
    max-width: 100%;
    margin: 20px auto;
  }
}
#single-topics .s1 .maincont .cont figure.alignright {
  float: right;
  margin: 0 0 20px 20px;
  max-width: 50%;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont figure.alignright {
    float: none;
    max-width: 100%;
    margin: 20px auto;
  }
}
#single-topics .s1 .maincont .cont figure.aligncenter {
  display: block;
  margin: 20px auto;
}
#single-topics .s1 .maincont .cont .gallery,
#single-topics .s1 .maincont .cont .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont .gallery,
  #single-topics .s1 .maincont .cont .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont .gallery,
  #single-topics .s1 .maincont .cont .wp-block-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#single-topics .s1 .maincont .cont .gallery .gallery-item,
#single-topics .s1 .maincont .cont .gallery .wp-block-image,
#single-topics .s1 .maincont .cont .wp-block-gallery .gallery-item,
#single-topics .s1 .maincont .cont .wp-block-gallery .wp-block-image {
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
}
#single-topics .s1 .maincont .cont .gallery .gallery-item img,
#single-topics .s1 .maincont .cont .gallery .wp-block-image img,
#single-topics .s1 .maincont .cont .wp-block-gallery .gallery-item img,
#single-topics .s1 .maincont .cont .wp-block-gallery .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  transition: transform 0.3s ease;
}
#single-topics .s1 .maincont .cont .gallery .gallery-item img:hover,
#single-topics .s1 .maincont .cont .gallery .wp-block-image img:hover,
#single-topics .s1 .maincont .cont .wp-block-gallery .gallery-item img:hover,
#single-topics .s1 .maincont .cont .wp-block-gallery .wp-block-image img:hover {
  transform: scale(1.05);
}
#single-topics .s1 .maincont .cont .gallery .gallery-item .gallery-caption,
#single-topics .s1 .maincont .cont .gallery .wp-block-image .gallery-caption,
#single-topics .s1 .maincont .cont .wp-block-gallery .gallery-item .gallery-caption,
#single-topics .s1 .maincont .cont .wp-block-gallery .wp-block-image .gallery-caption {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  text-align: center;
  font-style: italic;
}
#single-topics .s1 .maincont .cont .gallery.columns-1,
#single-topics .s1 .maincont .cont .wp-block-gallery.columns-1 {
  grid-template-columns: 1fr;
}
#single-topics .s1 .maincont .cont .gallery.columns-2,
#single-topics .s1 .maincont .cont .wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
#single-topics .s1 .maincont .cont .gallery.columns-3,
#single-topics .s1 .maincont .cont .wp-block-gallery.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
#single-topics .s1 .maincont .cont .gallery.columns-4,
#single-topics .s1 .maincont .cont .wp-block-gallery.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont .gallery.columns-4,
  #single-topics .s1 .maincont .cont .wp-block-gallery.columns-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont .gallery.columns-4,
  #single-topics .s1 .maincont .cont .wp-block-gallery.columns-4 {
    grid-template-columns: 1fr;
  }
}
#single-topics .s1 .maincont .cont .gallery.columns-5,
#single-topics .s1 .maincont .cont .wp-block-gallery.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont .gallery.columns-5,
  #single-topics .s1 .maincont .cont .wp-block-gallery.columns-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont .gallery.columns-5,
  #single-topics .s1 .maincont .cont .wp-block-gallery.columns-5 {
    grid-template-columns: 1fr;
  }
}
#single-topics .s1 .maincont .cont .gallery.columns-6,
#single-topics .s1 .maincont .cont .wp-block-gallery.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 900px) {
  #single-topics .s1 .maincont .cont .gallery.columns-6,
  #single-topics .s1 .maincont .cont .wp-block-gallery.columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont .gallery.columns-6,
  #single-topics .s1 .maincont .cont .wp-block-gallery.columns-6 {
    grid-template-columns: 1fr;
  }
}
#single-topics .s1 .maincont .cont table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont table {
    font-size: 14px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
#single-topics .s1 .maincont .cont table thead {
  background-color: #f5f5f5;
}
#single-topics .s1 .maincont .cont table thead th {
  padding: 15px;
  text-align: left;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ddd;
  font-size: 16px;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont table thead th {
    padding: 10px;
    font-size: 14px;
  }
}
#single-topics .s1 .maincont .cont table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}
#single-topics .s1 .maincont .cont table tbody tr:hover {
  background-color: #f9f9f9;
}
#single-topics .s1 .maincont .cont table tbody tr:last-child {
  border-bottom: none;
}
#single-topics .s1 .maincont .cont table tbody td {
  padding: 15px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont table tbody td {
    padding: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont table th, #single-topics .s1 .maincont .cont table td {
    white-space: nowrap;
  }
}
#single-topics .s1 .maincont .cont blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  border-left: 4px solid #0066cc;
  background-color: #f5f5f5;
  font-style: italic;
  color: #555;
  line-height: 1.8;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont blockquote {
    padding: 15px 20px;
    margin: 20px 0;
  }
}
#single-topics .s1 .maincont .cont blockquote p {
  margin: 0 0 10px 0;
}
#single-topics .s1 .maincont .cont blockquote p:last-child {
  margin-bottom: 0;
}
#single-topics .s1 .maincont .cont blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  font-style: normal;
}
#single-topics .s1 .maincont .cont blockquote cite::before {
  content: "— ";
}
#single-topics .s1 .maincont .cont code {
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  color: #d63384;
}
#single-topics .s1 .maincont .cont pre {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 5px;
  overflow-x: auto;
  margin: 20px 0;
  line-height: 1.6;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont pre {
    padding: 15px;
    font-size: 12px;
  }
}
#single-topics .s1 .maincont .cont pre code {
  background-color: transparent;
  padding: 0;
  color: #333;
  font-size: 14px;
}
@media screen and (max-width: 560px) {
  #single-topics .s1 .maincont .cont pre code {
    font-size: 12px;
  }
}
#single-topics .s1 .maincont .cont hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 30px 0;
}
#single-topics .s1 .maincont .cont strong, #single-topics .s1 .maincont .cont b {
  font-weight: bold;
  color: #000;
}
#single-topics .s1 .maincont .cont em, #single-topics .s1 .maincont .cont i {
  font-style: italic;
}
#single-topics .s1 .maincont .cont del, #single-topics .s1 .maincont .cont s {
  text-decoration: line-through;
  color: #999;
}
#single-topics .s1 .maincont .cont u {
  text-decoration: underline;
}
#single-topics .s1 .maincont .cont mark {
  background-color: #ffeb3b;
  padding: 2px 4px;
}
#single-topics .s1 .maincont .cont small {
  font-size: 14px;
  color: #666;
}
#single-topics .s1 .maincont .cont sup {
  font-size: 12px;
  vertical-align: super;
}
#single-topics .s1 .maincont .cont sub {
  font-size: 12px;
  vertical-align: sub;
}
#single-topics .s1 .maincont .thamnail {
  width: 100%;
  height: 500px;
  background-color: #858585;
  margin: 20px auto;
}
#single-topics .blackbtn {
  margin: 50px auto;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#events {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 900px) {
  #events .mv {
    height: 50vh;
  }
}
@media screen and (max-width: 560px) {
  #events .mv {
    height: 20vh;
  }
}
@media screen and (max-width: 900px) {
  #events .mv .txt {
    padding: 20px 5%;
  }
}
@media screen and (max-width: 560px) {
  #events .mv .txt {
    padding: 15px 5%;
  }
}
@media screen and (max-width: 900px) {
  #events .mv .txt h3 {
    font-size: clamp(24px, 5vw, 48px);
  }
}
@media screen and (max-width: 560px) {
  #events .mv .txt h3 {
    font-size: clamp(20px, 6vw, 36px);
  }
}
@media screen and (max-width: 900px) {
  #events .mv .txt h2 {
    font-size: clamp(12px, 1.5vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #events .mv .txt h2 {
    font-size: 14px;
  }
}
#events .scroll {
  position: absolute;
  right: 1vw;
  bottom: 0;
  z-index: 89;
  width: 25px;
  height: 120px;
}
@media screen and (max-width: 560px) {
  #events .scroll {
    display: none;
  }
}
#events .scroll img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#events .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 100px auto;
}
@media screen and (max-width: 900px) {
  #events .s1 {
    width: 90%;
    margin: 60px auto;
  }
}
@media screen and (max-width: 560px) {
  #events .s1 {
    width: 95%;
    margin: 40px auto;
    padding: 0 3%;
  }
}
#events .s1 .category ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  #events .s1 .category ul {
    flex-direction: column;
    gap: 10px;
  }
}
#events .s1 .category ul li {
  width: 25%;
}
@media screen and (max-width: 560px) {
  #events .s1 .category ul li {
    width: 100%;
  }
}
#events .s1 .category ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  padding: 12px 10px;
  color: #000;
  border: 1px solid #000;
  transition: 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #events .s1 .category ul li a {
    padding: 10px;
    font-size: 14px;
  }
}
#events .s1 .category ul li a:hover {
  background: #000;
  color: #fff;
}
#events .s1 .eventslist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  justify-content: flex-start;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #events .s1 .eventslist {
    gap: 15px;
    grid-template-columns: 1fr;
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #events .s1 .eventslist {
    gap: 10px;
    grid-template-columns: 1fr;
    margin: 30px auto;
  }
}
#events .s1 .eventslist .event {
  width: 100%;
  flex-shrink: 0;
  padding: 10px 0;
  border-bottom: 1px solid #000;
  transition: background-color 0.3s ease;
}
#events .s1 .eventslist .event:hover {
  background-color: #f5f5f5;
}
#events .s1 .eventslist .event a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
#events .s1 .eventslist .event .tham {
  width: 150px;
  height: 100px;
  background-color: #999;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #events .s1 .eventslist .event .tham {
    width: 180px;
    height: 120px;
  }
}
@media screen and (max-width: 560px) {
  #events .s1 .eventslist .event .tham {
    width: 120px;
    height: 90px;
  }
}
#events .s1 .eventslist .event .tham img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#events .s1 .eventslist .event .txtbox {
  display: flex;
  flex-flow: column;
  padding: 5px 0px 5px 10px;
  flex: 1;
  color: #50A7FF;
}
@media screen and (max-width: 560px) {
  #events .s1 .eventslist .event .txtbox {
    padding: 5px 0px 5px 10px;
  }
}
#events .s1 .eventslist .event .txtbox .cate {
  font-size: 12px;
  color: #000;
  line-height: 1em;
}
@media screen and (max-width: 560px) {
  #events .s1 .eventslist .event .txtbox .cate {
    font-size: 8px;
  }
}
#events .s1 .eventslist .event .txtbox .eventtitle {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin: 5px 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
@media screen and (max-width: 560px) {
  #events .s1 .eventslist .event .txtbox .eventtitle {
    font-size: 12px;
  }
}
#events .s1 .eventslist .event .txtbox .date,
#events .s1 .eventslist .event .txtbox .time,
#events .s1 .eventslist .event .txtbox .caution {
  color: #000;
  font-size: 13px;
  line-height: 1.3em;
}
@media screen and (max-width: 560px) {
  #events .s1 .eventslist .event .txtbox .date,
  #events .s1 .eventslist .event .txtbox .time,
  #events .s1 .eventslist .event .txtbox .caution {
    font-size: 10px;
  }
}
#events .s1 .blackbtn {
  margin: 50px auto 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  #events .s1 .blackbtn {
    margin: 40px auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #events .s1 .blackbtn {
    margin: 30px auto 0 auto;
    width: 80%;
    text-align: center;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#works {
  width: 100%;
  position: relative;
}
#works .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 100px auto;
}
#works .s1 .indexbtnwrap {
  width: 100%;
  margin: 0 auto;
  background-color: #EBEBEB;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 560px) {
  #works .s1 .indexbtnwrap {
    padding: 10px;
  }
}
#works .s1 .indexbtnwrap .tagtitl {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
#works .s1 .indexbtnwrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
#works .s1 .indexbtnwrap ul li {
  padding: 5px;
  box-sizing: border-box;
}
#works .s1 .indexbtnwrap ul li a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 3px 10px;
  text-decoration: none;
  font-size: 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 560px) {
  #works .s1 .indexbtnwrap ul li a {
    font-size: 10px;
    padding: 2px 8px;
  }
}
#works .s1 .indexbtnwrap ul li a:hover {
  background-color: #333;
}
#works .s1 .indexbtnwrap p {
  text-align: center;
}
#works .s1 .mainarchive {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 50px 20px;
}
@media screen and (max-width: 900px) {
  #works .s1 .mainarchive {
    gap: 30px 15px;
  }
}
@media screen and (max-width: 560px) {
  #works .s1 .mainarchive {
    gap: 20px 0;
  }
}
#works .s1 .mainarchive li {
  width: calc(33.3333333333% - 20px);
  height: 100%;
}
@media screen and (max-width: 900px) {
  #works .s1 .mainarchive li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 560px) {
  #works .s1 .mainarchive li {
    width: 100%;
  }
}
#works .s1 .mainarchive li a {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #000;
}
#works .s1 .mainarchive li a:hover .thamnail {
  transform: scale(1.1);
}
#works .s1 .mainarchive li a .thamnail {
  width: 100%;
  height: 25vw;
  border-radius: 10px;
  transition: 0.4s;
}
@media screen and (max-width: 560px) {
  #works .s1 .mainarchive li a .thamnail {
    height: 40vw;
  }
}
#works .s1 .mainarchive li .wtb {
  margin: 5px 0 0 0;
}
#works .s1 .mainarchive li .wtb p {
  font-size: 12px;
}
#works .s1 .mainarchive li .wtb h3 {
  font-size: 14px;
  font-weight: bold;
}
#works .s1 .mainarchive li .wtb .taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px auto;
}
#works .s1 .mainarchive li .wtb .taglist .tag {
  font-size: 12px;
  line-height: 12px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
}
@media screen and (max-width: 560px) {
  #works .s1 .mainarchive li .wtb .taglist .tag {
    font-size: 10px;
    line-height: 10px;
    padding: 3px 5px;
  }
}
#works .blackbtn {
  margin: 50px auto;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#event {
  width: 100%;
  position: relative;
}
#event .s1 {
  width: 80%;
  margin: 0 auto 100px auto;
}
#event .s1 .Container {
  width: 100%;
}
#event .s1 .list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: translateX(0);
  gap: 50px 20px;
  flex-wrap: wrap;
}
#event .s1 .list li {
  width: 300px;
  flex-shrink: 0;
}
#event .s1 .list li a {
  width: 100%;
  display: block;
}
#event .s1 .list li .tham {
  width: 100%;
  height: 300px;
  background-color: #ccc;
}
#event .s1 .list li .txtbox {
  display: flex;
  flex-flow: column;
  color: #50A7FF;
}
#event .s1 .list li .txtbox .cate {
  font-size: 12px;
  padding: 5px 0 0 0;
  margin: 0 5px 0 0;
}
#event .s1 .list li .txtbox .eventtitle {
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 5px 0;
}
#event .s1 .list li .txtbox .date,
#event .s1 .list li .txtbox .time,
#event .s1 .list li .txtbox .caution {
  color: #000;
  font-size: 13px;
  line-height: 1.5em;
}
#event .s1 .list .blackbtn {
  position: absolute;
  bottom: -25px;
  right: 5vw;
}
#event .blackbtn {
  margin: 50px auto;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#lineup {
  width: 100%;
  position: relative;
}
#lineup .titlebox {
  width: 100%;
  height: 50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/lineup/ttbg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
#lineup .titlebox img {
  width: 50%;
  height: auto;
  display: block;
}
#lineup .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 100px auto;
}
#lineup .s1 .category ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
#lineup .s1 .category ul li {
  width: 33.3333333333%;
}
#lineup .s1 .category ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  padding: 12px 10px;
  color: #000;
  border: 1px solid #000;
  transition: 0.4s;
  box-sizing: border-box;
}
#lineup .s1 .category ul li a:hover {
  background: #000;
  color: #fff;
}
#lineup .s1 .lineupcontwrap {
  width: 100%;
}
#lineup .s1 .lineupcontwrap img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
#lineup .s1 .lineupcontwrap .plans {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
}
#lineup .s1 .lineupcontwrap .plans li {
  color: #fff;
  width: calc(50% - 25px);
}
#lineup .s1 .lineupcontwrap .plans li .htt {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 5px 10px;
  box-sizing: border-box;
}
#lineup .s1 .lineupcontwrap .plans li .htt .tubo {
  font-size: 22px;
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
  border-right: 1px solid #fff;
  white-space: nowrap;
}
#lineup .s1 .lineupcontwrap .plans li .htt .tubo span {
  font-size: 12px;
}
#lineup .s1 .lineupcontwrap .plans li .htt p {
  font-size: 10px;
  line-height: 1.1em;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox {
  width: 100%;
  height: 20vw;
  position: relative;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(70, 70, 70, 0.8);
  mix-blend-mode: multiply;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox .border {
  padding: 3px 10px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  border: 1px solid #fff;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox p {
  font-size: 10px;
  line-height: 1.5em;
  padding: 10px;
  box-sizing: border-box;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox .btnwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto -25px auto;
  gap: 10px;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox .btnwrap .wbtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  background: #fff url(../img/common/brarrow.svg) no-repeat;
  background-position: 90%;
  background-size: 10px;
  color: #000;
  font-weight: bold;
  font-size: 13px;
}
#lineup .s1 .lineupcontwrap .plans li .thamnailbox .btnwrap .ybtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 25px;
  background: #FFC200 url(../img/common/brarrow.svg) no-repeat;
  background-position: 90%;
  background-size: 10px;
  color: #000;
  font-weight: bold;
  font-size: 13px;
}
#lineup .blackbtn {
  margin: 50px auto;
}

#lineup-archive .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 100px auto;
}
#lineup-archive .s1 ul {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 50px 20px;
}
#lineup-archive .s1 ul li {
  width: 100%;
  display: block;
}
#lineup-archive .s1 ul a {
  width: 100%;
}
#lineup-archive .s1 ul a .thamnail {
  width: 100%;
  height: 30vw;
  overflow: hidden;
}
#lineup-archive .s1 ul a .thamnail:hover img {
  transform: scale(1.1);
}
#lineup-archive .s1 ul a .thamnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
#lineup-archive .s1 ul .box {
  width: 100%;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 560px) {
  #lineup-archive .s1 ul .box {
    flex-direction: column;
    gap: 15px;
  }
}
#lineup-archive .s1 ul .box .ttl {
  color: #000;
  width: calc(100% - 250px);
}
@media screen and (max-width: 560px) {
  #lineup-archive .s1 ul .box .ttl {
    width: 100%;
  }
}
#lineup-archive .s1 ul .box .ttl h2 {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #lineup-archive .s1 ul .box .ttl h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  #lineup-archive .s1 ul .box .ttl p {
    font-size: 14px;
  }
}
#lineup-archive .blackbtn {
  font-size: 15px;
  padding: 10px 20px;
}

#lineup-single .maincontant {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 100px auto;
}
#lineup-single .maincontant h1 {
  font-size: 20px;
}
#lineup-single .thambox {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
#lineup-single .zoom-container {
  width: 50%;
  height: 25vw;
  overflow: hidden;
  position: relative;
  border: 2px solid #ccc;
  cursor: grab;
}
#lineup-single .zoom-container .zoom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
}
#lineup-single .zoom-container .zoom img {
  width: 100%;
}
#lineup-single .zoom-container:active {
  cursor: grabbing;
}
#lineup-single #zoom-image {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  transition: transform 0.1s ease;
  user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
#lineup-single .gaikan {
  width: 50%;
  height: 25vw;
  overflow: hidden;
  position: relative;
}
#lineup-single .gaikan img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#lineup-single .point {
  display: flex;
  align-items: stretch;
  font-size: 20px;
}
#lineup-single .point h2 {
  display: block;
}
#lineup-single .point .border {
  height: auto;
  width: 1px;
  background-color: #000;
  margin: 0 10px;
}
#lineup-single .contwrap {
  margin: 20px auto;
}
#lineup-single .table {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 50px auto;
}
#lineup-single .table .box {
  width: 50%;
  display: flex;
  justify-content: s;
}
#lineup-single .table .box .tt {
  width: 50%;
  padding: 10px 30px;
  box-sizing: border-box;
  background: #707070;
  color: #fff;
  border: 1px solid #000;
}
#lineup-single .table .box .td {
  width: 50%;
  padding: 10px 30px;
  box-sizing: border-box;
  color: #000;
  border: 1px solid #000;
}
#lineup-single .blackbtn {
  margin: 50px auto;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#modelhouse-archive .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 100px auto;
}
#modelhouse-archive .s1 ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px 20px;
  width: 100%;
  margin: 0 auto;
}
#modelhouse-archive .s1 ul li {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#modelhouse-archive .s1 ul a {
  width: 100%;
  display: block;
  text-decoration: none;
  color: #000;
}
#modelhouse-archive .s1 ul a .thamnail {
  width: 100%;
  height: 30vw;
  overflow: hidden;
}
#modelhouse-archive .s1 ul a .thamnail:hover img {
  transform: scale(1.1);
}
#modelhouse-archive .s1 ul a .thamnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
}
#modelhouse-archive .s1 ul .box {
  width: 100%;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 560px) {
  #modelhouse-archive .s1 ul .box {
    flex-direction: column;
    gap: 15px;
  }
}
#modelhouse-archive .s1 ul .box .ttl {
  color: #000;
  width: calc(100% - 250px);
}
@media screen and (max-width: 560px) {
  #modelhouse-archive .s1 ul .box .ttl {
    width: 100%;
  }
}
#modelhouse-archive .s1 ul .box .ttl h2 {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #modelhouse-archive .s1 ul .box .ttl h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  #modelhouse-archive .s1 ul .box .ttl p {
    font-size: 14px;
  }
}
#modelhouse-archive .blackbtn {
  font-size: 15px;
  padding: 10px 20px;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#bestplan {
  width: 100%;
  position: relative;
}
#bestplan a {
  color: #fff;
  text-decoration: none;
}
#bestplan .ph-pagination a.page-numbers {
  color: #333;
}
#bestplan .ph-pagination a.page-numbers:hover {
  color: #333;
}
#bestplan .titlebox {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/bestplan/ttbg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 10%;
  box-sizing: border-box;
  margin: 80px auto 50px auto;
}
@media screen and (max-width: 900px) {
  #bestplan .titlebox {
    padding: 40px 5%;
    margin: 60px auto 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .titlebox {
    padding: 30px 3%;
    margin: 50px auto 30px auto;
  }
}
#bestplan .titlebox img {
  width: 80%;
  height: auto;
  display: block;
  margin: auto;
}
@media screen and (max-width: 900px) {
  #bestplan .titlebox img {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .titlebox img {
    width: 95%;
  }
}
#bestplan .s1 {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto 100px auto;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 {
    width: 90%;
    margin: 0 auto 60px auto;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 {
    width: 95%;
    margin: 0 auto 40px auto;
    padding: 0 3%;
  }
}
#bestplan .s1 .category ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .category ul {
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .category ul {
    flex-direction: column;
    gap: 10px;
  }
}
#bestplan .s1 .category ul li {
  width: 33.3333333333%;
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .category ul li {
    width: 100%;
  }
}
#bestplan .s1 .category ul li a {
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  padding: 12px 10px;
  color: #000;
  border: 1px solid #000;
  transition: 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .category ul li a {
    padding: 10px;
    font-size: 14px;
  }
}
#bestplan .s1 .category ul li a:hover {
  background: #000;
  color: #fff;
}
#bestplan .s1 .lineupcontwrap {
  width: 100%;
}
#bestplan .s1 .lineupcontwrap img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
#bestplan .s1 .lineupcontwrap .plans {
  width: 100%;
  display: flex;
  justify-self: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans {
    gap: 15px;
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans {
    flex-direction: column;
    gap: 15px;
    margin: 30px auto;
  }
}
#bestplan .s1 .lineupcontwrap .plans li {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li {
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li {
    width: 100%;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .htt {
  padding: 20px;
  background-color: #000;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt {
    padding: 15px;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt {
    padding: 12px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .htt .tubo {
  font-size: 25px;
  padding: 0 8px 0 0;
  margin: 0 8px 0 0;
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  /* width: 100%; */
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt .tubo {
    font-size: clamp(20px, 3vw, 25px);
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt .tubo {
    font-size: clamp(18px, 4vw, 22px);
    padding: 0 5px 0 0;
    margin: 0 5px 0 0;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .htt .tubo span {
  font-size: 13px;
  color: #fff;
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt .tubo span {
    font-size: 12px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .htt p {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt p {
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .htt p {
    font-size: 12px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox {
  min-height: 15vw;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox {
    min-height: 20vw;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox {
    min-height: 200px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt {
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  color: #fff;
  margin-top: auto;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt {
    padding: 15px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt {
    padding: 12px;
    margin-top: 15px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .border {
  font-size: 18px;
  font-weight: bold;
  padding: 5px 15px;
  border: 2px solid #fff;
  display: inline-block;
  margin: 0 auto 10px auto;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .border {
    font-size: clamp(16px, 2.5vw, 18px);
    padding: 4px 12px;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .border {
    font-size: clamp(14px, 3.5vw, 16px);
    padding: 3px 10px;
    margin: 0 auto 8px auto;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt p {
  font-size: 14px;
  margin: 0 0 15px 0;
}
@media screen and (max-width: 900px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt p {
    font-size: 13px;
    margin: 0 0 12px 0;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt p {
    font-size: 12px;
    margin: 0 0 10px 0;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap {
    flex-direction: column;
    gap: 8px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap .wbtn {
  width: 50%;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  transition: 0.4s;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap .wbtn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap .wbtn:hover {
  background-color: #d9d9d9;
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap .ybtn {
  width: 50%;
  padding: 10px;
  text-align: center;
  background-color: #ffc200;
  color: #000;
  border: 1px solid #ffc200;
  transition: 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap .ybtn {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
}
#bestplan .s1 .lineupcontwrap .plans li .thamnailbox .txt .btnwrap .ybtn:hover {
  background-color: #b38800;
}
#bestplan .blackbtn {
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #bestplan .blackbtn {
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #bestplan .blackbtn {
    margin: 30px auto;
    width: 80%;
    text-align: center;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#company {
  width: 100%;
  position: relative;
}
#company .blackbtn {
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #company .blackbtn {
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #company .blackbtn {
    margin: 30px auto;
    width: 80%;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  #company .contentwrap {
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #company .contentwrap {
    padding: 0 3%;
  }
}
#company section {
  width: 80%;
  max-width: 1100px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #company section {
    width: 90%;
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #company section {
    width: 100%;
    margin: 30px auto;
    padding: 0;
  }
}
#company .gryl-ttl,
#company .comtttl {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: bold;
  margin: 0 0 30px 0;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #company .gryl-ttl,
  #company .comtttl {
    font-size: clamp(18px, 3vw, 22px);
    margin: 0 0 25px 0;
  }
}
@media screen and (max-width: 560px) {
  #company .gryl-ttl,
  #company .comtttl {
    font-size: clamp(16px, 4vw, 20px);
    margin: 0 0 20px 0;
    text-align: center;
  }
}
#company .s1 p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 900px) {
  #company .s1 p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 560px) {
  #company .s1 p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
}
#company .s2 .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  #company .s2 .flex {
    flex-direction: column;
  }
}
#company .s2 .flex .symbol {
  width: 20vw;
  height: 20vw;
  margin: 40px 80px 40px 0;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #company .s2 .flex .symbol {
    width: 25vw;
    height: 25vw;
    margin: 30px 40px 30px 0;
  }
}
@media screen and (max-width: 560px) {
  #company .s2 .flex .symbol {
    width: 60vw;
    height: 60vw;
    max-width: 300px;
    max-height: 300px;
    margin: 0 auto 30px auto;
  }
}
#company .s2 .flex .symbol img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#company .s2 .flex .txt {
  width: calc(100% - 20vw - 80px);
}
@media screen and (max-width: 900px) {
  #company .s2 .flex .txt {
    width: calc(100% - 25vw - 40px);
  }
}
@media screen and (max-width: 560px) {
  #company .s2 .flex .txt {
    width: 100%;
  }
}
#company .s2 .flex .txt p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  #company .s2 .flex .txt p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 560px) {
  #company .s2 .flex .txt p {
    font-size: 14px;
    line-height: 1.6;
  }
}
#company .s3 .flex {
  display: flex;
  flex-flow: column;
}
#company .s3 .flex .box {
  display: flex;
}
@media screen and (max-width: 560px) {
  #company .s3 .flex .box {
    flex-direction: column;
  }
}
#company .s3 .flex .box .tt {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  background-color: #0E1933;
  border: 1px solid #fff;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #company .s3 .flex .box .tt {
    font-size: clamp(14px, 2vw, 16px);
    padding: 12px;
  }
}
@media screen and (max-width: 560px) {
  #company .s3 .flex .box .tt {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    text-align: center;
  }
}
#company .s3 .flex .box .td {
  width: 70%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #EAEEF5;
  border: 1px solid #fff;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #company .s3 .flex .box .td {
    font-size: clamp(14px, 2vw, 16px);
    padding: 12px;
  }
}
@media screen and (max-width: 560px) {
  #company .s3 .flex .box .td {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#reason {
  width: 100%;
  position: relative;
}
#reason .scroll {
  position: absolute;
  right: 1vw;
  bottom: 0;
  z-index: 89;
  width: 25px;
  height: 120px;
}
@media screen and (max-width: 560px) {
  #reason .scroll {
    display: none;
  }
}
#reason .scroll img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason .mv-full {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  #reason .mv-full {
    display: block;
    height: 100%;
  }
}
#reason .mv-full .txt {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  #reason .mv-full .txt {
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason .mv-full .txt {
    display: block;
    text-align: center;
    width: 100%;
    padding: 20px 5%;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
}
#reason .mv-full .txt img {
  width: 50%;
}
@media screen and (max-width: 900px) {
  #reason .mv-full .txt img {
    width: 60%;
  }
}
@media screen and (max-width: 560px) {
  #reason .mv-full .txt img {
    width: 80%;
  }
}
#reason .mv-full .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#reason .s1 {
  width: 100%;
  margin: 100px auto;
}
@media screen and (max-width: 900px) {
  #reason .s1 {
    margin: 60px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s1 {
    width: 80%;
    margin: 40px auto;
    padding: 0 3%;
  }
}
#reason .s1 .cont {
  display: flex;
}
@media screen and (max-width: 560px) {
  #reason .s1 .cont {
    flex-direction: column;
  }
}
#reason .s1 .cont img {
  display: block;
}
#reason .s1 .cont .b1 {
  width: 50%;
  display: block;
}
@media screen and (max-width: 560px) {
  #reason .s1 .cont .b1 {
    display: none;
  }
}
#reason .s1 .cont .b2 {
  width: 50%;
  max-height: 400px;
  padding: 30px 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s1 .cont .b2 {
    padding: 0px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s1 .cont .b2 {
    width: 100%;
    padding: 20px 5%;
    max-height: none;
  }
}
#reason .s1 .cont .b2 img {
  width: 100%;
  height: auto;
}
#reason .s1 .photos {
  width: 100%;
  display: block;
  margin: -30px 0 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  #reason .s1 .photos {
    margin: -20px 0 0;
  }
}
@media screen and (max-width: 560px) {
  #reason .s1 .photos {
    margin: 0;
    padding: 0 3%;
  }
}
#reason .s1 .photos img {
  width: 100%;
  height: auto;
}
#reason .s2 {
  margin: 50px 0;
}
@media screen and (max-width: 900px) {
  #reason .s2 {
    margin: 40px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 {
    margin: 30px 0;
    padding: 0 3%;
  }
}
#reason .s2 .title {
  width: 70%;
  margin: 0px auto 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (max-width: 900px) {
  #reason .s2 .title {
    width: 80%;
    margin: 0px auto 40px auto;
  }
}
#reason .s2 .title .fade-in-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
#reason .s2 .title .fade-in-on-scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 560px) {
  #reason .s2 .title {
    width: 100%;
    margin: 0px auto 30px auto;
  }
}
#reason .s2 .title p {
  font-size: 1.8em;
}
@media screen and (max-width: 900px) {
  #reason .s2 .title p {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 .title p {
    font-size: clamp(18px, 4vw, 24px);
  }
}
#reason .s2 .title img {
  display: block;
  width: 350px;
}
@media screen and (max-width: 900px) {
  #reason .s2 .title img {
    width: 280px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 .title img {
    width: 80%;
    max-width: 250px;
  }
}
#reason .s2 .btns {
  width: 100%;
  display: flex;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reason .s2 .btns {
    gap: 8px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 .btns {
    flex-direction: row;
    gap: 5px;
  }
}
#reason .s2 .btns a {
  display: block;
  width: calc(33.3333333333% - 5px);
  aspect-ratio: 1/0.8;
  position: relative;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 560px) {
  #reason .s2 .btns a {
    width: calc(33.333% - 4px);
    aspect-ratio: 1/0.8;
    margin: 0;
  }
}
#reason .s2 .btns a.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
#reason .s2 .btns a.fade-in-on-scroll.fade-in {
  opacity: 1;
  transform: translateY(0);
}
#reason .s2 .btns a .txt {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  z-index: 3;
  line-height: 1.8em;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #reason .s2 .btns a .txt {
    padding: 10px;
  }
}
#reason .s2 .btns a .txt p {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 900px) {
  #reason .s2 .btns a .txt p {
    font-size: clamp(24px, 5vw, 30px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 .btns a .txt p {
    font-size: clamp(18px, 5vw, 28px);
    margin: 0 0 10px 0;
  }
}
#reason .s2 .btns a .txt h3 {
  font-size: 1.5em;
}
@media screen and (max-width: 900px) {
  #reason .s2 .btns a .txt h3 {
    font-size: clamp(18px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 .btns a .txt h3 {
    display: none;
  }
}
#reason .s2 .btns a .txt h5 {
  font-size: 1em;
  margin: 10px 0;
}
@media screen and (max-width: 900px) {
  #reason .s2 .btns a .txt h5 {
    font-size: clamp(14px, 2vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s2 .btns a .txt h5 {
    display: none;
  }
}
#reason .s2 .btns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  transition: 0.4s;
}
#reason .s2 .btns a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
}
#reason .s2 .btns a:hover img {
  transform: scale(1.1);
}
#reason .s3 {
  width: 100%;
}
@media screen and (max-width: 900px) {
  #reason .s3 .titlebox2 {
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .titlebox2 {
    margin: 30px auto;
  }
}
#reason .s3 .contwrap {
  width: 80%;
  margin: -80px auto 0px auto;
  padding: 20px;
  background-color: #fff;
  position: relative;
  z-index: 5;
  border-radius: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s3 .contwrap {
    width: 90%;
    margin: -60px auto 0px auto;
    padding: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .contwrap {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    border-radius: 0;
  }
}
#reason .s3 .contwrap h3 {
  padding: 20px 30px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
}
@media screen and (max-width: 900px) {
  #reason .s3 .contwrap h3 {
    padding: 15px 20px;
    font-size: clamp(18px, 2.5vw, 22px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .contwrap h3 {
    padding: 12px 15px;
    font-size: clamp(16px, 3vw, 18px);
  }
}
#reason .s3 .contwrap .cont {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 900px) {
  #reason .s3 .contwrap .cont {
    margin: 0 0 40px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .contwrap .cont {
    margin: 0 0 30px 0;
  }
}
#reason .s3 .c1 h3 {
  background-color: #303539;
}
#reason .s3 .c1 img {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 900px) {
  #reason .s3 .c1 img {
    margin: 20px 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c1 img {
    margin: 15px 0 0 0;
    width: 100%;
  }
}
#reason .s3 .c2 {
  background-color: #F3FCFF;
}
#reason .s3 .c2 h3 {
  background-color: #008AD1;
}
#reason .s3 .c2 .fb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 30px 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s3 .c2 .fb {
    gap: 20px;
    padding: 20px 20px 0 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c2 .fb {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 15px 0 15px;
  }
}
#reason .s3 .c2 .fb .b {
  width: calc(25% - 30px);
}
@media screen and (max-width: 900px) {
  #reason .s3 .c2 .fb .b {
    width: calc(25% - 15px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c2 .fb .b {
    width: calc(50% - 30px);
  }
}
#reason .s3 .c2 .fb .b img {
  width: 100%;
  height: auto;
}
#reason .s3 .c2 p {
  text-align: center;
  padding: 10px 20px 30px 20px;
}
@media screen and (max-width: 900px) {
  #reason .s3 .c2 p {
    padding: 10px 15px 20px 15px;
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c2 p {
    padding: 10px 10px 15px 10px;
    font-size: 12px;
  }
}
#reason .s3 .c3 {
  background-color: #F6FFF9;
}
#reason .s3 .c3 h3 {
  background-color: #8CC321;
}
#reason .s3 .c3 .fb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 30px 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s3 .c3 .fb {
    gap: 20px;
    padding: 20px 20px 0 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c3 .fb {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 15px 0 15px;
  }
}
#reason .s3 .c3 .fb .b {
  width: calc(25% - 30px);
}
@media screen and (max-width: 900px) {
  #reason .s3 .c3 .fb .b {
    width: calc(25% - 15px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c3 .fb .b {
    width: calc(50% - 30px);
  }
}
#reason .s3 .c3 .fb .b img {
  width: 100%;
  height: auto;
}
#reason .s3 .c3 p {
  text-align: center;
  padding: 10px 20px 30px 20px;
}
@media screen and (max-width: 900px) {
  #reason .s3 .c3 p {
    padding: 10px 15px 20px 15px;
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .c3 p {
    padding: 10px 10px 15px 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 900px) {
  #reason .s3 .contttl {
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .contttl {
    padding: 0 3%;
  }
}
@media screen and (max-width: 900px) {
  #reason .s3 .contttl h2 {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s3 .contttl h2 {
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.5;
  }
}
#reason .s4 {
  width: 100%;
}
#reason .s4 .fb {
  flex-wrap: wrap;
}
@media screen and (max-width: 560px) {
  #reason .s4 .fb {
    justify-content: center;
  }
}
#reason .s4 .c {
  width: 50%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  #reason .s4 .c {
    width: 100%;
    margin: 0 auto;
  }
}
#reason .s4 .c .txt {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
}
@media screen and (max-width: 560px) {
  #reason .s4 .c .txt {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: inherit;
    width: 100%;
  }
}
#reason .s4 .c .txt img {
  width: 100%;
  height: auto;
}
#reason .s4 .c img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 560px) {
  #reason .s4 .c img {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s4 .c .bg {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 560px) {
  #reason .s4 .c .bg img {
    display: block;
    margin: 0 auto;
  }
}
#reason .s5 {
  width: 80%;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #reason .s5 {
    width: 90%;
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 {
    width: 100%;
    margin: 30px auto;
    padding: 0 3%;
    box-sizing: border-box;
  }
}
#reason .s5 .fb {
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s5 .fb {
    gap: 20px;
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .fb {
    gap: 15px;
    padding: 0;
  }
}
#reason .s5 .c {
  width: calc(50% - 30px);
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c {
    width: 100%;
  }
}
#reason .s5 .c .txt {
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 560px) {
  #reason .s5 .c .txt {
    padding: 8px;
  }
}
@media screen and (max-width: 900px) {
  #reason .s5 .c .txt p {
    font-size: clamp(14px, 2vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c .txt p {
    font-size: clamp(12px, 3vw, 14px);
  }
}
#reason .s5 .c img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#reason .s5 .dot {
  display: block;
  width: 15px;
  margin: 30px auto;
}
@media screen and (max-width: 560px) {
  #reason .s5 .dot {
    width: 6px;
    margin: 20px auto;
  }
}
#reason .s5 .c5tt {
  text-align: center;
  margin: 0 auto;
  font-size: 2em;
  line-height: 1.5em;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5tt {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5tt {
    font-size: clamp(18px, 4vw, 24px);
    padding: 0 3%;
  }
}
#reason .s5 .roundbox {
  padding: 30px;
  box-sizing: border-box;
  border: 2px solid #000;
  margin: 50px auto;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  #reason .s5 .roundbox {
    padding: 20px;
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .roundbox {
    padding: 15px;
    margin: 30px auto;
    border-width: 1px;
  }
}
@media screen and (max-width: 900px) {
  #reason .s5 .roundbox p {
    font-size: clamp(14px, 2vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .roundbox p {
    font-size: clamp(12px, 3vw, 14px);
    line-height: 1.6;
  }
}
#reason .s5 .c5 {
  margin: 30px auto;
  justify-content: center;
  width: 80%;
  flex-wrap: nowrap;
  padding: 0;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 {
    width: 90%;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 {
    width: 100%;
    flex-direction: column;
    margin: 20px auto;
  }
}
#reason .s5 .c5 .b {
  padding: 10px;
  text-align: center;
  padding: 30px;
  border: 2px solid #000;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 .b {
    width: calc(50% - 10px);
    padding: 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b {
    width: 100%;
    padding: 15px;
    border-width: 1px;
  }
}
#reason .s5 .c5 .b img {
  width: 200px;
  margin: 10px auto;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 .b img {
    width: 150px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b img {
    width: 120px;
  }
}
#reason .s5 .c5 .b .tx {
  margin: -15px 0 0 0;
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b .tx {
    margin: -10px 0 0 0;
  }
}
#reason .s5 .c5 .b .tx h3 {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 .b .tx h3 {
    font-size: clamp(16px, 2vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b .tx h3 {
    font-size: clamp(14px, 3vw, 16px);
  }
}
#reason .s5 .c5 .b .tx p {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 .b .tx p {
    font-size: clamp(13px, 1.8vw, 15px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b .tx p {
    font-size: clamp(12px, 2.5vw, 14px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b > div {
    margin: -10px 0 0 0;
  }
}
#reason .s5 .c5 .b > div h3 {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 .b > div h3 {
    font-size: clamp(16px, 2vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b > div h3 {
    font-size: clamp(14px, 3vw, 16px);
  }
}
#reason .s5 .c5 .b > div p {
  font-size: 15px;
}
@media screen and (max-width: 900px) {
  #reason .s5 .c5 .b > div p {
    font-size: clamp(13px, 1.8vw, 15px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s5 .c5 .b > div p {
    font-size: clamp(12px, 2.5vw, 14px);
  }
}
#reason .s6 .ttl {
  position: relative;
  width: 80%;
  margin: 50px auto;
  padding: 20px 10px 50px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason .s6 .ttl {
    width: 90%;
    margin: 40px auto;
  }
}
#reason .s6 .ttl .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
#reason .s6 .ttl .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#reason .s6 .ttl .txt {
  position: relative;
  z-index: 2;
  margin: auto;
  width: 60%;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason .s6 .ttl .txt {
    width: 70%;
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .ttl .txt {
    width: 85%;
  }
}
#reason .s6 .ttl .txt img {
  width: 100%;
}
@media screen and (max-width: 900px) {
  #reason .s6 .c1 .contttl h2 {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .c1 .contttl h2 {
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.5;
  }
}
#reason .s6 .c1 .grf {
  width: 60%;
  margin: 70px auto;
}
@media screen and (max-width: 900px) {
  #reason .s6 .c1 .grf {
    width: 80%;
    margin: 50px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .c1 .grf {
    width: 80%;
    margin: 30px auto;
    padding: 0 3%;
    box-sizing: border-box;
  }
}
#reason .s6 .c1 .grf img {
  width: 100%;
  height: auto;
}
#reason .s6 .c1 .grf2 {
  width: 80%;
  margin: 10px auto;
}
#reason .s6 .c1 .grf2 img {
  width: 250px;
  margin: 20px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason .s6 .c1 .grf2 img {
    width: 200px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .c1 .grf2 img {
    width: 60%;
  }
}
#reason .s6 .c1 .grf2 p {
  width: 80%;
  text-align: center;
  margin: 30px auto;
}
@media screen and (max-width: 900px) {
  #reason .s6 .c1 .grf2 p {
    width: 90%;
    margin: 20px auto;
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .c1 .grf2 p {
    width: 100%;
    margin: 15px auto;
    font-size: 12px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 900px) {
  #reason .s6 .c2 .contttl h2 {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .c2 .contttl h2 {
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.5;
  }
}
#reason .s6 .c2 .grf {
  width: 80%;
  margin: 70px auto;
}
@media screen and (max-width: 900px) {
  #reason .s6 .c2 .grf {
    width: 90%;
    margin: 50px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s6 .c2 .grf {
    width: 90%;
    margin: 30px auto;
    padding: 0 3%;
    box-sizing: border-box;
  }
}
#reason .s6 .c2 .grf img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  #reason .s7 .titlebox2 {
    margin: 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s7 .titlebox2 {
    margin: 30px auto;
  }
}
#reason .s7 .contttl {
  width: 70%;
  background-color: #fff;
  margin: -30px auto 0 auto;
  padding: 30px;
  position: relative;
  z-index: 2;
  border-radius: 10px;
}
@media screen and (max-width: 900px) {
  #reason .s7 .contttl {
    width: 85%;
    margin: -20px auto 0 auto;
    padding: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 560px) {
  #reason .s7 .contttl {
    width: 100%;
    margin: 0 auto;
    padding: 20px 15px;
    border-radius: 0;
  }
}
@media screen and (max-width: 900px) {
  #reason .s7 .contttl h2,
  #reason .s7 .contttl h3 {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reason .s7 .contttl h2,
  #reason .s7 .contttl h3 {
    font-size: clamp(18px, 4vw, 24px);
    line-height: 1.5;
  }
}
#reason .s7 .contttl:last-child {
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
  z-index: 0;
}
#reason .s7 .hirose {
  width: 250px;
  margin: 60px auto 10px auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  #reason .s7 .hirose {
    width: 200px;
    margin: 40px auto 10px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s7 .hirose {
    width: 150px;
    margin: 30px auto 10px auto;
  }
}
#reason .s7 .hirose img {
  width: 100%;
  height: auto;
}
#reason .s7 .s7img {
  width: 80%;
  margin: 0px auto 50px auto;
}
@media screen and (max-width: 900px) {
  #reason .s7 .s7img {
    width: 90%;
    margin: 0px auto 40px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason .s7 .s7img {
    width: 90%;
    margin: 0px auto 30px auto;
  }
}
#reason .s7 .s7img img {
  width: 100%;
  height: auto;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#reason-function {
  width: 100%;
  position: relative;
}
#reason-function .mv-full {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#reason-function .mv-full .txt-left {
  position: absolute;
  left: 10%;
  z-index: 10;
  color: #fff;
}
@media screen and (max-width: 900px) {
  #reason-function .mv-full .txt-left {
    left: 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .mv-full .txt-left {
    left: 5%;
    width: 90%;
  }
}
#reason-function .mv-full .txt-left h6 {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: normal;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 560px) {
  #reason-function .mv-full .txt-left h6 {
    font-size: 12px;
    margin: 0 0 8px 0;
  }
}
#reason-function .mv-full .txt-left h2 {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: bold;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  #reason-function .mv-full .txt-left h2 {
    font-size: clamp(20px, 4vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .mv-full .txt-left h2 {
    font-size: 18px;
    margin: 0 0 8px 0;
  }
}
#reason-function .mv-full .txt-left h3 {
  font-size: clamp(20px, 2.5vw, 40px);
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-function .mv-full .txt-left h3 {
    font-size: clamp(18px, 3.5vw, 32px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .mv-full .txt-left h3 {
    font-size: 16px;
  }
}
#reason-function .mv-full .grade2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
#reason-function .mv-full .bg {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #reason-function .mv-full .bg {
    height: 50vh;
    min-height: 400px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .mv-full .bg {
    height: 40vh;
    min-height: 300px;
  }
}
#reason-function .mv-full .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#reason-function .titlebox2 .txt {
  padding: 100px 10%;
}
@media screen and (max-width: 900px) {
  #reason-function .titlebox2 .txt {
    padding: 60px 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .titlebox2 .txt {
    padding: 40px 5%;
  }
}
#reason-function .graybox {
  width: 80%;
  margin: 50px auto;
  display: block;
  text-align: center;
  background-color: #f5f5f5;
  padding: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-function .graybox {
    width: 90%;
    margin: 30px auto;
    padding: 4%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .graybox {
    width: 95%;
    margin: 20px auto;
    padding: 20px;
  }
}
#reason-function .graybox h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: bold;
  margin: 0 0 40px 0;
  color: #333;
}
@media screen and (max-width: 900px) {
  #reason-function .graybox h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .graybox h3 {
    font-size: 16px;
    margin: 0 0 20px 0;
  }
}
#reason-function .graybox .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #reason-function .graybox .flex {
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .graybox .flex {
    flex-direction: column;
    gap: 20px;
  }
}
#reason-function .graybox .plus {
  font-size: clamp(20px, 5vw, 30px);
  margin: 0 0 40px 0;
  color: #333;
}
@media screen and (max-width: 560px) {
  #reason-function .graybox .plus {
    margin: 0;
  }
}
#reason-function .graybox .fbox {
  width: 50%;
  display: block;
  text-align: left;
}
@media screen and (max-width: 560px) {
  #reason-function .graybox .fbox {
    width: 100%;
    text-align: center;
  }
}
#reason-function .graybox .fbox img {
  width: 100%;
  height: auto;
}
#reason-function .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-function .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .c1 {
    width: 95%;
    margin: 20px auto;
  }
}
#reason-function .s1 {
  width: 100%;
  margin: 80px auto 60px auto;
  padding: 0 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 {
    margin: 50px auto 40px auto;
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s1 {
    margin: 30px auto 20px auto;
    padding: 0;
  }
}
#reason-function .s1 .c1 {
  max-width: 1200px;
  margin: 0 auto;
}
#reason-function .s1 .c1 .fb {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 .c1 .fb {
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s1 .c1 .fb {
    gap: 20px;
  }
}
#reason-function .s1 .c1 .fb .txt {
  flex: 1;
  padding: 0;
  box-sizing: border-box;
}
#reason-function .s1 .c1 .fb .txt h3 {
  font-size: clamp(20px, 2.5vw, 40px);
  font-weight: bold;
  line-height: 1.6em;
  margin: 0 0 20px 0;
  color: #333;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 .c1 .fb .txt h3 {
    font-size: clamp(18px, 3vw, 32px);
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s1 .c1 .fb .txt h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
#reason-function .s1 .c1 .fb .txt p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8em;
  color: #666;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 .c1 .fb .txt p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s1 .c1 .fb .txt p {
    font-size: 13px;
    line-height: 1.6em;
  }
}
#reason-function .s1 .c1 .fb img {
  flex: 1;
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 .c1 .fb img {
    width: 100%;
  }
}
#reason-function .s1 .contttl {
  text-align: center;
  margin: 60px auto 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 .contttl {
    margin: 40px auto 0 auto;
    padding: 0 5%;
  }
}
#reason-function .s1 .contttl h2 {
  font-size: clamp(20px, 2.8vw, 50px);
  line-height: 1.6em;
  margin: 0;
  color: #333;
}
@media screen and (max-width: 900px) {
  #reason-function .s1 .contttl h2 {
    font-size: clamp(18px, 3.5vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s1 .contttl h2 {
    font-size: 20px;
    line-height: 1.5em;
  }
}
#reason-function .s1 .contttl h2 .yl {
  background: linear-gradient(transparent 70%, #FFC200 0%);
}
#reason-function .breadcrumb {
  padding: 20px 10%;
  box-sizing: border-box;
  font-size: 14px;
}
@media screen and (max-width: 900px) {
  #reason-function .breadcrumb {
    padding: 15px 5%;
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .breadcrumb {
    padding: 10px 5%;
    font-size: 12px;
  }
}
#reason-function .anocr {
  text-align: center;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: bold;
  color: #0066cc;
  margin: 100px auto -40px auto;
}
@media screen and (max-width: 900px) {
  #reason-function .anocr {
    font-size: clamp(28px, 6vw, 48px);
    margin: 60px auto -30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .anocr {
    font-size: 32px;
    margin: 40px auto -20px auto;
  }
}
#reason-function .s2 {
  width: 100%;
}
#reason-function .s2 .c1 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #reason-function .s2 .c1 {
    flex-direction: column;
    gap: 15px;
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s2 .c1 {
    gap: 10px;
    padding: 0 2.5%;
  }
}
#reason-function .s2 a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  flex: 1;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 900px) {
  #reason-function .s2 a {
    width: 100%;
    aspect-ratio: 5/3;
  }
}
#reason-function .s2 a:hover .bg {
  transform: scale(1.1);
}
#reason-function .s2 a .txt {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s2 a .txt {
    width: 50%;
  }
}
#reason-function .s2 a .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.5s ease;
}
#reason-function .s3 {
  width: 100%;
}
#reason-function .s3 .c2 {
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-function .s3 .c2 {
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s3 .c2 {
    padding: 0 2.5%;
  }
}
#reason-function .s3 .c2 .txt {
  width: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  z-index: 2;
  display: block;
}
@media screen and (max-width: 560px) {
  #reason-function .s3 .c2 .txt {
    width: 80%;
  }
}
#reason-function .s3 .c2 .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 560px) {
  #reason-function .s3 .c2 .bg {
    width: 150%;
  }
}
#reason-function .s3 .c2 .pics {
  width: 60%;
  height: auto;
  position: relative;
  z-index: 3;
  display: block;
  margin: -5% auto 0 auto;
}
@media screen and (max-width: 900px) {
  #reason-function .s3 .c2 .pics {
    width: 70%;
    margin: -3% auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s3 .c2 .pics {
    width: 90%;
    margin: -2% auto 0 auto;
  }
}
#reason-function .s4 {
  width: 100%;
  margin: 100px auto;
}
@media screen and (max-width: 900px) {
  #reason-function .s4 {
    margin: 60px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s4 {
    margin: 40px auto;
  }
}
#reason-function .s4 .graph {
  width: 80%;
  text-align: center;
  margin: 20px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s4 .graph {
    width: 90%;
    margin: 15px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s4 .graph {
    width: 95%;
    margin: 10px auto;
  }
}
#reason-function .s5 {
  width: 100%;
}
#reason-function .s5 .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #reason-function .s5 .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s5 .c1 {
    width: 95%;
    margin: 20px auto;
  }
}
#reason-function .s5 .c1 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 560px) {
  #reason-function .s5 .c1 .flex {
    flex-direction: column;
  }
}
#reason-function .s6 {
  width: 100%;
}
#reason-function .s6 .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s6 .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s6 .c1 {
    width: 95%;
    margin: 20px auto;
  }
}
#reason-function .s6 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  #reason-function .s6 .flex {
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s6 .flex {
    flex-direction: column;
    gap: 20px;
  }
}
#reason-function .s6 .flex .fbox {
  width: 100%;
}
#reason-function .s6 .flex .fbox:last-child {
  width: 40%;
}
@media screen and (max-width: 560px) {
  #reason-function .s6 .flex .fbox:last-child {
    width: 100%;
  }
}
#reason-function .s6-2 {
  width: 100%;
}
#reason-function .s6-2 .flex {
  gap: 50px;
}
@media screen and (max-width: 900px) {
  #reason-function .s6-2 .flex {
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s6-2 .flex {
    flex-direction: column;
    gap: 20px;
  }
}
#reason-function .s6-2 .flex .fbox {
  width: 100%;
}
#reason-function .s7 {
  width: 100%;
}
#reason-function .s7 .c1 {
  width: 80%;
  max-width: 1200px;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s7 .c1 {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s7 .c1 {
    width: 95%;
  }
}
#reason-function .s7 .c1 img {
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 560px) {
  #reason-function .s7 .c1 img {
    margin: 0 auto 20px auto;
  }
}
#reason-function .s8 {
  width: 100%;
}
#reason-function .s8 .flex {
  width: 80%;
  max-width: 1200px;
  margin: 30px auto;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 900px) {
  #reason-function .s8 .flex {
    width: 90%;
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s8 .flex {
    width: 95%;
    flex-wrap: wrap;
    gap: 15px;
  }
}
#reason-function .s8 .flex img {
  width: 25%;
  display: block;
}
@media screen and (max-width: 560px) {
  #reason-function .s8 .flex img {
    width: calc(50% - 4px);
  }
}
#reason-function .s8 .c1 {
  width: 80%;
  max-width: 1200px;
  margin: -30px auto 0 auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s8 .c1 {
    width: 90%;
    margin: -20px auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s8 .c1 {
    width: 95%;
    margin: -10px auto 0 auto;
  }
}
#reason-function .s8 .c1 .flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#reason-function .s8 .c1 .fbox {
  width: calc(50% - 30px);
}
@media screen and (max-width: 560px) {
  #reason-function .s8 .c1 .fbox {
    width: 100%;
  }
}
#reason-function .s8 .c1 .fbox img {
  width: 100%;
  display: block;
}
#reason-function .s9 {
  width: 100%;
}
#reason-function .s9 .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s9 .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s9 .c1 {
    width: 95%;
    margin: 20px auto;
  }
}
#reason-function .s9 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 900px) {
  #reason-function .s9 .flex {
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s9 .flex {
    flex-direction: column;
    gap: 20px;
  }
}
#reason-function .s9 .fbox {
  width: 50%;
}
@media screen and (max-width: 560px) {
  #reason-function .s9 .fbox {
    width: 100%;
  }
}
#reason-function .s9 .fbox img {
  width: 100%;
  display: block;
}
#reason-function .s9 .fbox h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: bold;
  line-height: 1.6em;
  margin: 0 0 20px 0;
  color: #333;
}
@media screen and (max-width: 900px) {
  #reason-function .s9 .fbox h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s9 .fbox h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
#reason-function .s10 {
  width: 100%;
}
#reason-function .s10 .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s10 .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s10 .c1 {
    width: 95%;
    margin: 20px auto;
    padding: 0 5%;
  }
}
#reason-function .s10 .c1 h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: bold;
  line-height: 1.6em;
  margin: 0 0 20px 0;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .s10 .c1 h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s10 .c1 h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
#reason-function .s10 .c1 p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8em;
  color: #666;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .s10 .c1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s10 .c1 p {
    font-size: 13px;
    line-height: 1.6em;
  }
}
#reason-function .s11 {
  width: 100%;
}
#reason-function .s11 .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .s11 .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s11 .c1 {
    width: 95%;
    margin: 20px auto;
    padding: 0 5%;
  }
}
#reason-function .s11 .c1 h3 {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: bold;
  line-height: 1.6em;
  margin: 0 0 20px 0;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .s11 .c1 h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s11 .c1 h3 {
    font-size: 18px;
    margin: 0 0 12px 0;
  }
}
#reason-function .s11 .c1 p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8em;
  color: #666;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .s11 .c1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .s11 .c1 p {
    font-size: 13px;
    line-height: 1.6em;
  }
}
#reason-function .specification-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #reason-function .specification-section {
    padding: 40px 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section {
    padding: 30px 5%;
  }
}
#reason-function .specification-section .specification-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#reason-function .specification-section .specification-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .specification-section .specification-wrapper .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .section-title {
    font-size: 24px;
  }
}
#reason-function .specification-section .specification-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .section-title .section-subtitle {
    font-size: 13px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #reason-function .specification-section .specification-wrapper .specification-table {
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table {
    margin-top: 20px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 900px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row.spec-row-price {
  margin-bottom: 0;
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ddd;
}
@media screen and (max-width: 900px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item {
    padding: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item {
    padding: 12px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-label {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #666;
  margin-bottom: 10px;
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-label {
    font-size: 11px;
    margin-bottom: 8px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 900px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value {
    font-size: clamp(18px, 3vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value {
    font-size: 18px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value span {
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: bold;
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value span {
    font-size: 12px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value small {
  display: block;
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 560px) {
  #reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value small {
    font-size: 11px;
    margin-top: 4px;
  }
}
#reason-function .specification-section .specification-wrapper .specification-table .spec-row .spec-item.spec-item-price {
  width: 100%;
  box-sizing: border-box;
  grid-column: 1/-1;
}
#reason-function .gallery-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #reason-function .gallery-section {
    padding: 40px 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .gallery-section {
    padding: 30px 5%;
  }
}
#reason-function .gallery-section .gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#reason-function .gallery-section .gallery-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .gallery-section .gallery-wrapper .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .gallery-section .gallery-wrapper .section-title {
    font-size: 24px;
  }
}
#reason-function .gallery-section .gallery-wrapper .section-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  text-align: center;
  margin: 0 0 40px 0;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-function .gallery-section .gallery-wrapper .section-subtitle {
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .gallery-section .gallery-wrapper .section-subtitle {
    font-size: 13px;
    margin: 0 0 20px 0;
  }
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-function .gallery-section .gallery-wrapper .gallery-slider {
    max-width: 100%;
  }
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
  color: #FFC200;
  background-color: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
    font-size: 12px;
  }
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination {
  bottom: 20px;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 560px) {
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination {
    margin-top: 15px;
  }
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #999;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s;
}
@media screen and (max-width: 560px) {
  #reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
#reason-function .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFC200;
}
#reason-function .feature-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section {
    padding: 40px 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section {
    padding: 30px 5%;
  }
}
#reason-function .feature-section .feature-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#reason-function .feature-section .feature-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .section-title {
    font-size: 24px;
  }
}
#reason-function .feature-section .feature-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .section-title .section-subtitle {
    font-size: 13px;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .feature-list {
    gap: 40px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list {
    gap: 30px;
    margin-top: 20px;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item {
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item {
    flex-direction: column !important;
    gap: 20px;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-image {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  overflow: hidden;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-image {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-image {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content {
    width: 100%;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-number {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: bold;
  color: #0066cc;
  line-height: 1;
  display: block;
  margin: 0 0 20px 0;
  padding: 10px 0;
  border-bottom: 8px solid #858585;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-number {
    font-size: clamp(28px, 7vw, 60px);
    margin: 0 0 15px 0;
    padding: 8px 0;
    border-bottom: 6px solid #858585;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-number {
    font-size: 40px;
    margin: 0 0 12px 0;
    padding: 6px 0;
    border-bottom: 4px solid #858585;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-title {
    font-size: clamp(16px, 2.5vw, 20px);
    margin: 0 0 12px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-title {
    font-size: 18px;
    margin: 0 0 10px 0;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-text {
    font-size: 13px;
    line-height: 1.6;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item:nth-child(odd) {
  flex-direction: row;
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item:nth-child(odd) {
    flex-direction: column;
  }
}
#reason-function .feature-section .feature-wrapper .feature-list .feature-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 560px) {
  #reason-function .feature-section .feature-wrapper .feature-list .feature-item:nth-child(even) {
    flex-direction: column;
  }
}
#reason-function .plan-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section {
    padding: 40px 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section {
    padding: 30px 5%;
  }
}
#reason-function .plan-section .plan-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#reason-function .plan-section .plan-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section .plan-wrapper .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .section-title {
    font-size: 24px;
  }
}
#reason-function .plan-section .plan-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .section-title .section-subtitle {
    font-size: 13px;
  }
}
#reason-function .plan-section .plan-wrapper .plan-main-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 30px 0 20px 0;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section .plan-wrapper .plan-main-title {
    font-size: clamp(18px, 3vw, 24px);
    margin: 25px 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .plan-main-title {
    font-size: 18px;
    margin: 20px 0 12px 0;
  }
}
#reason-function .plan-section .plan-wrapper .plan-description {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  text-align: center;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section .plan-wrapper .plan-description {
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .plan-description {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
}
#reason-function .plan-section .plan-wrapper .plan-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section .plan-wrapper .plan-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .plan-content {
    gap: 20px;
    margin-top: 20px;
  }
}
#reason-function .plan-section .plan-wrapper .plan-content .floorplan-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#reason-function .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#reason-function .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper .floorplan-image {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper .floorplan-image {
    width: 90%;
    padding: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper .floorplan-image {
    width: 100%;
    padding: 10px;
  }
}
#reason-function .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper .floorplan-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#reason-function .plan-section .plan-wrapper .plan-content .plan-images-section {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #reason-function .plan-section .plan-wrapper .plan-content .plan-images-section {
    flex: 1;
    width: 100%;
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .plan-section .plan-wrapper .plan-content .plan-images-section {
    gap: 10px;
  }
}
#reason-function .plan-section .plan-wrapper .plan-content .plan-images-section .plan-image-item {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#reason-function .plan-section .plan-wrapper .plan-content .plan-images-section .plan-image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#reason-function .reserve-cta-banner {
  width: 100%;
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-function .reserve-cta-banner {
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .reserve-cta-banner {
    padding: 0 2.5%;
  }
}
#reason-function .reserve-cta-banner .reserve-cta-link {
  display: block;
  width: 80%;
  margin: 50px auto;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 900px) {
  #reason-function .reserve-cta-banner .reserve-cta-link {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .reserve-cta-banner .reserve-cta-link {
    width: 95%;
    margin: 20px auto;
    border-radius: 4px;
  }
}
#reason-function .reserve-cta-banner .reserve-cta-link:hover .mv-full .bg img {
  transform: scale(1.1);
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full {
  width: 100%;
  position: relative;
  height: 25vw;
  margin: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full {
    height: 30vw;
    min-height: 200px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full {
    height: 40vw;
    min-height: 180px;
  }
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 10;
  color: #fff;
  text-align: center;
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt h3 {
  font-size: clamp(25px, 4vw, 50px);
  white-space: nowrap;
  display: block;
  line-height: 1.3em;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt h3 {
    font-size: clamp(20px, 5vw, 36px);
    white-space: normal;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt h3 {
    font-size: 18px;
    letter-spacing: 0.08em;
  }
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt h2 {
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 5px 0 0 0;
  line-height: 1.3em;
}
@media screen and (max-width: 900px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt h2 {
    font-size: clamp(12px, 2vw, 16px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt h2 {
    font-size: 12px;
    margin: 4px 0 0 0;
  }
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt p {
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.3em;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 900px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt p {
    font-size: clamp(10px, 1.5vw, 14px);
    margin: 8px 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .reserve-cta-banner .reserve-cta-link .mv-full .txt p {
    font-size: 11px;
    margin: 6px 0 0 0;
  }
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#reason-function .reserve-cta-banner .reserve-cta-link .mv-full .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#reason-function .back-button-section {
  width: 100%;
  padding: 50px 5%;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-function .back-button-section {
    padding: 40px 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .back-button-section {
    padding: 30px 5%;
  }
}
#reason-function .back-button-section .back-button-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#reason-function .back-button-section .back-button-wrapper .back-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  #reason-function .back-button-section .back-button-wrapper .back-button {
    padding: 12px 30px;
    gap: 15px;
    font-size: clamp(14px, 2vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reason-function .back-button-section .back-button-wrapper .back-button {
    padding: 10px 20px;
    gap: 12px;
    font-size: 14px;
    border-radius: 4px;
  }
}
#reason-function .back-button-section .back-button-wrapper .back-button:hover {
  background-color: #333;
}
#reason-function .back-button-section .back-button-wrapper .back-button .back-button-text {
  display: block;
}
#reason-function .back-button-section .back-button-wrapper .back-button .back-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #reason-function .back-button-section .back-button-wrapper .back-button .back-button-icon {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .back-button-section .back-button-wrapper .back-button .back-button-icon {
    width: 24px;
    height: 24px;
  }
}
#reason-function .back-button-section .back-button-wrapper .back-button .back-button-icon svg {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 900px) {
  #reason-function .back-button-section .back-button-wrapper .back-button .back-button-icon svg {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-function .back-button-section .back-button-wrapper .back-button .back-button-icon svg {
    width: 12px;
    height: 12px;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#reason-design {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}
#reason-design .mv-full {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  #reason-design .mv-full {
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .mv-full .txt-left {
    width: 100%;
  }
}
#reason-design .mv-full .txt {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  #reason-design .mv-full .txt {
    width: 90%;
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .mv-full .txt {
    width: 95%;
    flex-direction: column;
    gap: 15px;
  }
}
#reason-design .mv-full .txt img {
  width: 50%;
}
@media screen and (max-width: 560px) {
  #reason-design .mv-full .txt img {
    width: 100%;
  }
}
#reason-design .s1 {
  width: 100%;
  margin: 5vw auto;
  background-image: url(../img/reason-design/s1bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-design .s1 {
    margin: 3vw auto;
    padding: 60px 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s1 {
    margin: 20px auto;
    padding: 40px 5%;
  }
}
#reason-design .s1 .txt {
  width: 80%;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-design .s1 .txt {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s1 .txt {
    width: 100%;
  }
}
#reason-design .s1 .txt h2 {
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s1 .txt h2 {
    font-size: clamp(20px, 3vw, 26px);
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s1 .txt h2 {
    font-size: 20px;
    margin: 0 0 12px 0;
  }
}
#reason-design .s1 .txt p {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #reason-design .s1 .txt p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s1 .txt p {
    font-size: 13px;
    line-height: 1.6;
  }
}
#reason-design .s2 {
  width: 100%;
  margin: 5vw auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  #reason-design .s2 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s2 {
    margin: 20px auto;
  }
}
#reason-design .s2 .c1 {
  width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-design .s2 .c1 {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s2 .c1 {
    width: 95%;
  }
}
#reason-design .s2 .txt {
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-design .s2 .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s2 .txt {
    font-size: 13px;
    padding: 0 5%;
  }
}
#reason-design .s2 .img {
  width: 100%;
  height: 100%;
  margin: 5vw auto 0 auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s2 .img {
    margin: 3vw auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s2 .img {
    margin: 20px auto 0 auto;
  }
}
#reason-design .s2 ul {
  margin: 10px 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s2 ul li {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s2 ul li {
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 10px 0;
  }
}
#reason-design .s3 {
  width: 100%;
  height: 25vw;
  margin: 5vw auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-design .s3 {
    height: 30vw;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s3 {
    height: 40vw;
  }
}
#reason-design .s3 .slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
#reason-design .s3 .slide .slide-wrapper {
  display: flex;
  gap: 5px;
  height: 100%;
  animation: slideLoop 30s linear infinite;
  will-change: transform;
}
@media screen and (max-width: 900px) {
  #reason-design .s3 .slide .slide-wrapper {
    gap: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s3 .slide .slide-wrapper {
    gap: 10px;
  }
}
#reason-design .s3 .slide .slide-item {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 560px) {
  #reason-design .s3 .slide .slide-item {
    height: 80%;
  }
}
#reason-design .s3 .slide .slide-item img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#reason-design .s4 {
  width: 100%;
  margin: 5vw auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 {
    margin: 20px auto;
  }
}
#reason-design .s4 .picttl {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
#reason-design .s4 .picttl .ttbox {
  position: absolute;
  width: 30%;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 .picttl .ttbox {
    width: 40%;
    padding: 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 .picttl .ttbox {
    width: 100%;
    position: relative;
    padding: 20px;
  }
}
#reason-design .s4 .picttl .ttbox h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 .picttl .ttbox h2 {
    font-size: clamp(16px, 2.5vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 .picttl .ttbox h2 {
    font-size: 16px;
  }
}
#reason-design .s4 .picttl .ttlimg {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: -80px auto 20px auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 .picttl .ttlimg {
    width: 150px;
    margin: -60px auto 15px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 .picttl .ttlimg {
    width: 120px;
    margin: -40px auto 10px auto;
  }
}
#reason-design .s4 .c1 {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 .c1 {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 .c1 {
    width: 95%;
    padding: 0 5%;
    box-sizing: border-box;
  }
}
#reason-design .s4 .c1 h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 .c1 h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    margin: 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 .c1 h3 {
    font-size: 18px;
    margin: 12px 0;
  }
}
#reason-design .s4 .c1 p {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #reason-design .s4 .c1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s4 .c1 p {
    font-size: 13px;
    line-height: 1.6;
  }
}
#reason-design .s5 {
  width: 100%;
  margin: 5vw auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 {
    margin: 20px auto;
  }
}
#reason-design .s5 .style {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style {
    flex-direction: column !important;
    margin-bottom: 20px;
  }
}
#reason-design .s5 .style:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style:nth-child(even) {
    flex-direction: column;
  }
}
#reason-design .s5 .style:nth-child(even):after {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  background-color: #f4f4f4;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  z-index: -1;
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style:nth-child(even):after {
    display: none;
  }
}
#reason-design .s5 .style:nth-child(odd) {
  flex-direction: row;
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style:nth-child(odd) {
    flex-direction: column;
  }
}
#reason-design .s5 .style:nth-child(odd):after {
  content: "";
  display: block;
  width: 80%;
  height: 80%;
  background-color: #f4f4f4;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  z-index: -1;
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style:nth-child(odd):after {
    display: none;
  }
}
#reason-design .s5 .style .imgbox {
  width: 45%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .imgbox {
    width: 50%;
    gap: 8px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .imgbox {
    width: 90%;
    gap: 5px;
    order: 2;
  }
}
#reason-design .s5 .style .imgbox .leftbox {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #0066cc;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .imgbox .leftbox {
    font-size: clamp(24px, 4vw, 48px);
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .imgbox .leftbox {
    font-size: clamp(20px, 5vw, 32px);
  }
}
#reason-design .s5 .style .imgbox .leftbox img {
  width: 100%;
  height: auto;
}
#reason-design .s5 .style .imgbox .rigntbox {
  width: 50%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .imgbox .rigntbox {
    gap: 5px;
  }
}
#reason-design .s5 .style .imgbox .rigntbox img {
  width: 100%;
  height: auto;
}
#reason-design .s5 .style .txtbox {
  width: 55%;
  height: 100%;
  padding: 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .txtbox {
    width: 50%;
    padding: 3%;
    padding-top: 6%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .txtbox {
    width: 100%;
    padding: 20px 5% 0 5%;
    order: 1;
  }
}
#reason-design .s5 .style .txtbox .ttlimg {
  color: #0066cc;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  font-family: "Roboto", "DIN", "DIN Next", "Arial", sans-serif;
  text-align: center;
  display: block;
  margin: -50px auto 20px auto;
  line-height: 1.2;
  letter-spacing: 0.1em;
  z-index: 3;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .txtbox .ttlimg {
    margin: -30px auto 15px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .txtbox .ttlimg {
    font-size: clamp(36px, 8vw, 48px);
    margin: 30px auto 12px auto;
    order: 1;
  }
}
#reason-design .s5 .style .txtbox .ttlimg span {
  font-size: 0.5em;
}
#reason-design .s5 .style .txtbox h4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .txtbox h4 {
    font-size: clamp(18px, 2.5vw, 20px);
    margin: 8px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .txtbox h4 {
    font-size: 18px;
    margin: 6px 0;
    order: 2;
  }
}
#reason-design .s5 .style .txtbox p {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .txtbox p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .txtbox p {
    font-size: 13px;
    line-height: 1.6;
    order: 3;
  }
}
#reason-design .s5 .style .txtbox .imgbox {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .txtbox .imgbox {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .txtbox .imgbox {
    width: 100%;
    margin: 20px auto 0 auto;
    order: 3;
  }
}
#reason-design .s5 .style .txtbox .imgbox img {
  width: 100%;
  height: auto;
}
#reason-design .s5 .style .txtbox .blackbtn {
  margin: 30px auto 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 900px) {
  #reason-design .s5 .style .txtbox .blackbtn {
    margin: 25px auto 0 auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s5 .style .txtbox .blackbtn {
    margin: 20px auto 0 auto;
    width: 80%;
    text-align: center;
    order: 4;
  }
}
#reason-design .s6 {
  width: 100%;
  margin: 5vw auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 {
    margin: 20px auto;
  }
}
#reason-design .s6 .picttl {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
#reason-design .s6 .picttl .ttbox {
  position: absolute;
  width: 30%;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  background-color: #fff;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 .picttl .ttbox {
    width: 40%;
    padding: 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 .picttl .ttbox {
    width: 100%;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
  }
}
#reason-design .s6 .picttl .ttbox h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 .picttl .ttbox h2 {
    font-size: clamp(16px, 2.5vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 .picttl .ttbox h2 {
    font-size: 16px;
  }
}
#reason-design .s6 .picttl .ttlimg {
  width: 200px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: -60px auto 20px auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 .picttl .ttlimg {
    width: 150px;
    margin: -50px auto 15px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 .picttl .ttlimg {
    width: 120px;
    margin: -40px auto 10px auto;
  }
}
#reason-design .s6 .c1 {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 .c1 {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 .c1 {
    width: 95%;
    padding: 0 5%;
  }
}
#reason-design .s6 .c1 h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 .c1 h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    margin: 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 .c1 h3 {
    font-size: 18px;
    margin: 12px 0;
  }
}
#reason-design .s6 .c1 p {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #reason-design .s6 .c1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s6 .c1 p {
    font-size: 13px;
    line-height: 1.6;
  }
}
#reason-design .s7 {
  width: 100%;
  margin: 5vw auto;
  padding: 0 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-design .s7 {
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s7 {
    padding: 0 5%;
  }
}
#reason-design .s7 .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
#reason-design .s7 .fbox {
  width: 33.3333333333%;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-design .s7 .fbox {
    width: 50%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s7 .fbox {
    width: 100%;
    aspect-ratio: 5/3;
  }
}
#reason-design .s7 .fbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#reason-design .s7 .fbox .cat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
}
@media screen and (max-width: 560px) {
  #reason-design .s7 .fbox .cat {
    padding: 0 10px;
    width: calc(100% - 20px);
  }
}
#reason-design .s7 .fbox .cat h3 {
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  margin: 0 0 8px 0;
  padding-bottom: 0;
  color: #fff;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
}
#reason-design .s7 .fbox .cat h3:after {
  content: "";
  display: block;
  width: 10%;
  height: 2px;
  background-color: #fff;
  margin: 20px auto 0 auto;
}
#reason-design .s7 .fbox .cat p {
  font-size: clamp(12px, 1vw, 16px);
  margin: 8px 0 0 0;
  color: #fff;
  font-weight: 700;
}
#reason-design .s7 .fbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1);
}
#reason-design .s7 .fbox:hover img {
  transform: scale(1.1);
}
#reason-design .s8 {
  width: 100%;
  margin: 5vw auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 {
    margin: 20px auto;
  }
}
#reason-design .s8 .picttl {
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
#reason-design .s8 .picttl .ttbox {
  position: absolute;
  width: 45%;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  background-color: #fff;
  padding: 30px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 .picttl .ttbox {
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 .picttl .ttbox {
    width: 100%;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
  }
}
#reason-design .s8 .picttl .ttbox h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 .picttl .ttbox h2 {
    font-size: clamp(16px, 2.5vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 .picttl .ttbox h2 {
    font-size: 16px;
  }
}
#reason-design .s8 .picttl .ttlimg {
  width: 140px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: -60px auto 20px auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 .picttl .ttlimg {
    width: 120px;
    margin: -50px auto 15px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 .picttl .ttlimg {
    width: 100px;
    margin: -40px auto 10px auto;
  }
}
#reason-design .s8 .c1 {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 .c1 {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 .c1 {
    width: 95%;
    padding: 0 5%;
    box-sizing: border-box;
  }
}
#reason-design .s8 .c1 h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 .c1 h3 {
    font-size: clamp(18px, 2.5vw, 20px);
    margin: 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 .c1 h3 {
    font-size: 18px;
    margin: 12px 0;
  }
}
#reason-design .s8 .c1 p {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  #reason-design .s8 .c1 p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  #reason-design .s8 .c1 p {
    font-size: 13px;
    line-height: 1.6;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#reason-after {
  width: 100%;
  position: relative;
}
#reason-after .mv-full {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#reason-after .mv-full .bg img {
  -o-object-position: 80%;
     object-position: 80%;
}
#reason-after .mv-full .grade3 {
  display: block;
  width: 90%;
  height: 100%;
  background: linear-gradient(to left, rgba(230, 230, 230, 0) 0, #fff 50%);
}
#reason-after .mv-full .txt {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  #reason-after .mv-full .txt {
    width: 90%;
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .mv-full .txt {
    width: 95%;
    flex-direction: column;
    gap: 15px;
  }
}
#reason-after .mv-full .txt img {
  width: 50%;
}
@media screen and (max-width: 560px) {
  #reason-after .mv-full .txt img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}
#reason-after .gttl {
  background-color: rgba(168, 168, 168, 0.1);
  padding: 50px 10%;
  box-sizing: border-box;
  margin: 50px auto;
  display: block;
}
@media screen and (max-width: 900px) {
  #reason-after .gttl {
    padding: 60px 5%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .gttl {
    padding: 30px 5%;
    margin: 20px auto;
  }
}
#reason-after .gttl h2 {
  font-size: 30px;
  color: #515151;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reason-after .gttl h2 {
    font-size: clamp(20px, 3vw, 26px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .gttl h2 {
    font-size: 20px;
  }
}
#reason-after .c1 {
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-after .c1 {
    width: 90%;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .c1 {
    width: 95%;
    margin: 20px auto;
  }
}
#reason-after .s1 {
  width: 100%;
  margin: 5vw auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s1 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s1 {
    margin: 20px auto;
  }
}
#reason-after .s1 .txt {
  position: relative;
  padding: 100px 10% 0 10%;
  box-sizing: border-box;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  #reason-after .s1 .txt {
    padding: 60px 5% 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s1 .txt {
    padding: 40px 5% 0 5%;
  }
}
#reason-after .s1 .txt img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#reason-after .s1 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  #reason-after .s1 .bg {
    height: 50%;
  }
}
#reason-after .s3 {
  width: 100%;
  margin: 5vw auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s3 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s3 {
    margin: 20px auto;
  }
}
#reason-after .s3 .c1 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-after .s3 .c1 {
    width: 95%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s3 .c1 {
    width: 95%;
  }
}
#reason-after .s3 .c1 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  #reason-after .s3 .c1 .flex {
    gap: 30px 15px;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s3 .c1 .flex {
    gap: 20px 10px;
  }
}
#reason-after .s3 .c1 .flex .imgbox {
  display: block;
  width: calc(25% - 20px);
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s3 .c1 .flex .imgbox {
    width: calc(33.3333333333% - 15px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s3 .c1 .flex .imgbox {
    width: calc(50% - 10px);
  }
}
#reason-after .s3 .c1 .flex .imgbox img {
  width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 560px) {
  #reason-after .s3 .c1 .flex .imgbox img {
    width: 100%;
  }
}
#reason-after .s3 .c1 .flex .imgbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-left: 15px solid rgba(168, 168, 168, 0.9);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 900px) {
  #reason-after .s3 .c1 .flex .imgbox::after {
    right: -8px;
    border-left: 12px solid rgba(168, 168, 168, 0.9);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s3 .c1 .flex .imgbox::after {
    display: none;
  }
}
#reason-after .s3 .c1 .flex .imgbox:last-child::after {
  display: none;
}
#reason-after .s4 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .flex {
    gap: 10px;
    margin: 20px auto;
    flex-flow: row;
    flex-wrap: wrap;
  }
}
#reason-after .s4 .imgbox {
  width: 40%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .imgbox {
    width: 45%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .imgbox {
    width: 100%;
  }
}
#reason-after .s4 .imgbox img {
  width: 100%;
  height: auto;
}
#reason-after .s4 .txtbox {
  width: 60%;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .txtbox {
    width: 55%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .txtbox {
    width: 100%;
    padding: 20px 0;
  }
}
#reason-after .s4 .txtbox .contttl {
  text-align: left;
  margin: 0 auto;
  padding: 0 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .txtbox .contttl {
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .txtbox .contttl {
    padding: 0 5%;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .txtbox .contttl h2 {
    font-size: clamp(18px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .txtbox .contttl h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .c1 .txt {
    font-size: 14px;
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c1 .txt {
    font-size: 13px;
    padding: 0 5%;
    line-height: 1.6;
  }
}
#reason-after .s4 .c1 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px auto;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .c1 .flex {
    gap: 15px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c1 .flex {
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;
  }
}
#reason-after .s4 .c1 .fbox {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .c1 .fbox {
    width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c1 .fbox {
    width: calc(50% - 5px);
  }
}
#reason-after .s4 .c1 .fbox img {
  width: 100%;
  height: auto;
}
#reason-after .s4 .c2 {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .c2 {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c2 {
    width: 95%;
  }
}
#reason-after .s4 .c2 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c2 img {
    margin-bottom: 20px;
  }
}
#reason-after .s4 .c2 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px auto;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .c2 .flex {
    gap: 15px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c2 .flex {
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
#reason-after .s4 .c2 .fbox {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s4 .c2 .fbox {
    width: calc(33.333% - 10px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s4 .c2 .fbox {
    width: calc(90% - 5px);
  }
}
#reason-after .s4 .c2 .fbox img {
  width: 100%;
  height: auto;
}
#reason-after .s5 {
  width: 100%;
  margin: 5vw auto;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s5 {
    margin: 3vw auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 {
    margin: 20px auto;
  }
}
#reason-after .s5 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 50px auto;
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .flex {
    gap: 30px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .flex {
    flex-direction: column;
    gap: 20px 10px;
    margin: 20px auto;
  }
}
#reason-after .s5 .flex .fbox {
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .flex .fbox {
    width: calc(50% - 10px);
  }
}
#reason-after .s5 .flex .fbox img {
  width: 100%;
  height: auto;
}
#reason-after .s5 .flex .fbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-left: 10px solid rgba(168, 168, 168, 0.9);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  z-index: 10;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .flex .fbox::after {
    right: -20px;
    border-left: 8px solid rgba(168, 168, 168, 0.9);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .flex .fbox::after {
    display: none;
  }
}
#reason-after .s5 .flex .fbox:last-child::after {
  display: none;
}
#reason-after .s5 .txtbox {
  width: 60%;
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .txtbox {
    width: 55%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .txtbox {
    width: 100%;
    padding: 20px 0;
  }
}
#reason-after .s5 .txtbox .contttl {
  margin: 0 auto;
  padding: 0 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .txtbox .contttl {
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .txtbox .contttl {
    padding: 0 5%;
    text-align: center;
  }
}
#reason-after .s5 .txtbox .contttl h2 {
  text-align: left;
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .txtbox .contttl h2 {
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .txtbox .contttl h2 {
    font-size: clamp(18px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .txtbox .contttl h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .c1 .txt {
    font-size: 14px;
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .c1 .txt {
    font-size: 13px;
    padding: 0 5%;
    line-height: 1.6;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s5 .c1 .flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #reason-after .s5 .c1 .flow .fbox {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s5 .c1 .flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #reason-after .s5 .c1 .flow .fbox {
    width: 100%;
  }
}
#reason-after .s6 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .flex {
    flex-direction: column;
  }
}
#reason-after .s6 .imgbox {
  width: 40%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .imgbox {
    width: 45%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .imgbox {
    width: 100%;
  }
}
#reason-after .s6 .imgbox img {
  width: 100%;
  height: auto;
}
#reason-after .s6 .txtbox {
  width: 60%;
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .txtbox {
    width: 55%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .txtbox {
    width: 100%;
    padding: 20px 0;
  }
}
#reason-after .s6 .txtbox .contttl {
  text-align: left;
  margin: 0 auto;
  padding: 0 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .txtbox .contttl {
    padding: 0 5%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .txtbox .contttl {
    padding: 0 5%;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .txtbox .contttl h2 {
    font-size: clamp(18px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .txtbox .contttl h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .c1 .txt {
    font-size: 14px;
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .c1 .txt {
    font-size: 13px;
    padding: 0 5%;
    line-height: 1.6;
  }
}
#reason-after .s6 .c1 .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px auto;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .c1 .flex {
    gap: 15px;
    margin: 30px auto;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .c1 .flex {
    flex-flow: row;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
  }
}
#reason-after .s6 .c1 .fbox {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .c1 .fbox {
    width: calc(33.333% - 10px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .c1 .fbox {
    width: calc(45% - 25px);
  }
}
#reason-after .s6 .c1 .fbox img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .contttl {
    padding: 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .contttl {
    padding: 0 5%;
    text-align: center;
  }
}
@media screen and (max-width: 900px) {
  #reason-after .s6 .contttl h2 {
    font-size: clamp(18px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reason-after .s6 .contttl h2 {
    font-size: 18px;
  }
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#request {
  width: 100%;
  position: relative;
}
#request .mv-full {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 560px) {
  #request .mv-full {
    height: 100%;
    display: block;
  }
}
#request .mv-full .txt-left {
  width: 40%;
  position: absolute;
  left: 10%;
}
@media screen and (max-width: 900px) {
  #request .mv-full .txt-left {
    width: 50%;
    left: 5%;
  }
}
@media screen and (max-width: 560px) {
  #request .mv-full .txt-left {
    width: 100%;
    position: relative;
    left: 0;
    text-align: center;
    padding: 20px 5%;
    box-sizing: border-box;
  }
}
#request .mv-full .txt-left img {
  width: 60%;
}
@media screen and (max-width: 900px) {
  #request .mv-full .txt-left img {
    width: 70%;
  }
}
@media screen and (max-width: 560px) {
  #request .mv-full .txt-left img {
    width: 80%;
    margin: 0 auto;
  }
}
#request .mv-full .catalogimage {
  width: 50%;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 900px) {
  #request .mv-full .catalogimage {
    width: 45%;
  }
}
@media screen and (max-width: 560px) {
  #request .mv-full .catalogimage {
    display: none;
  }
}
#request .mv-full .catalogimage img {
  width: 60%;
}
@media screen and (max-width: 900px) {
  #request .mv-full .catalogimage img {
    width: 70%;
  }
}
#request .mv-full .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#request .ttlbox {
  width: 100%;
  position: relative;
  margin: 5vw 0;
}
@media screen and (max-width: 900px) {
  #request .ttlbox {
    margin: 4vw 0;
  }
}
@media screen and (max-width: 560px) {
  #request .ttlbox {
    margin: 3vw 0;
  }
}
#request .ttlbox .ttx {
  width: 48%;
  position: relative;
  z-index: 2;
  padding: 10px 0 0 5%;
}
@media screen and (max-width: 900px) {
  #request .ttlbox .ttx {
    width: 60%;
    padding: 10px 0 0 3%;
  }
}
@media screen and (max-width: 560px) {
  #request .ttlbox .ttx {
    width: 90%;
    padding: 10px 5% 0 5%;
    margin: 0 auto;
  }
}
#request .ttlbox .ttx img {
  width: 80%;
}
@media screen and (max-width: 900px) {
  #request .ttlbox .ttx img {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #request .ttlbox .ttx img {
    width: 100%;
  }
}
#request .ttlbox .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 560px) {
  #request .ttlbox .bg {
    display: none;
  }
}
#request .ttlbox .bg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#request .s0 {
  width: 100%;
  padding: 5vw 5% 3vw;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #request .s0 {
    padding: 4vw 5% 2vw;
  }
}
@media screen and (max-width: 560px) {
  #request .s0 {
    padding: 30px 3% 20px;
  }
}
#request .s0.catalog-lineup-section .catalog-lineup-wrapper {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #request .s0.catalog-lineup-section .catalog-lineup-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #request .s0.catalog-lineup-section .catalog-lineup-wrapper {
    width: 100%;
  }
}
#request .s0.catalog-lineup-section .catalog-lineup-wrapper .catalog-lineup-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  #request .s0.catalog-lineup-section .catalog-lineup-wrapper .catalog-lineup-title {
    font-size: clamp(24px, 4vw, 32px);
  }
}
@media screen and (max-width: 560px) {
  #request .s0.catalog-lineup-section .catalog-lineup-wrapper .catalog-lineup-title {
    font-size: clamp(20px, 5vw, 28px);
    margin: 0 0 10px 0;
  }
}
#request .s0.catalog-lineup-section .catalog-lineup-wrapper .catalog-lineup-subtitle {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #request .s0.catalog-lineup-section .catalog-lineup-wrapper .catalog-lineup-subtitle {
    font-size: clamp(13px, 2vw, 15px);
  }
}
@media screen and (max-width: 560px) {
  #request .s0.catalog-lineup-section .catalog-lineup-wrapper .catalog-lineup-subtitle {
    font-size: clamp(12px, 3vw, 14px);
  }
}
#request .s1 {
  width: 100%;
  margin: 0 auto;
  padding: 0 5% 5vw;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #request .s1 {
    padding: 0 5% 4vw;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 {
    padding: 0 3% 30px;
  }
}
#request .s1 .contact-form-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper {
    width: 100%;
  }
}
#request .s1 .contact-form-wrapper .form-intro {
  text-align: center;
  margin-bottom: 40px;
}
#request .s1 .contact-form-wrapper .form-intro p {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.8;
}
#request .s1 .contact-form-wrapper .wpcf7-form,
#request .s1 .contact-form-wrapper .contact-form {
  width: 100%;
  background-color: #fff;
  border-radius: 0;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list,
#request .s1 .contact-form-wrapper .contact-form .item-list {
  margin: 0 0 0 0;
  padding: 20px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 20px;
  box-sizing: border-box;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list:last-child,
#request .s1 .contact-form-wrapper .contact-form .item-list:last-child {
  margin-bottom: 0;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list > label,
#request .s1 .contact-form-wrapper .contact-form .item-list > label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list > label .required,
#request .s1 .contact-form-wrapper .contact-form .item-list > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid {
    gap: 15px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item {
  position: relative;
  cursor: pointer;
  margin: 0;
  display: block;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-checkbox,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-checkbox:checked + .catalog-box,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-checkbox:checked + .catalog-box {
  background-color: #FFC200;
  border-color: #FFC200;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box {
  width: 100%;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box:hover,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box:hover {
  border-color: #999;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-image,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #e0e0e0;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-image img,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content {
    padding: 12px;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content {
    padding: 10px;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content h3,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #333;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content h3,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content h3 {
    font-size: clamp(16px, 2vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content h3,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content h3 {
    font-size: clamp(14px, 3vw, 16px);
    margin: 0 0 8px 0;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content p,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
  flex: 1;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content p,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content p {
    font-size: clamp(12px, 1.5vw, 14px);
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content p,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content p {
    font-size: clamp(11px, 2.5vw, 13px);
    margin: 0 0 12px 0;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn,
  #request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn {
    padding: 8px 15px;
    font-size: 12px;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn:hover,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn:hover {
  background-color: #f5f5f5;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn:active,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-box .catalog-content .catalog-btn:active {
  transform: scale(0.98);
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-checkbox:checked + .catalog-box .catalog-content .catalog-btn,
#request .s1 .contact-form-wrapper .contact-form .item-list.catalog-selection .catalog-grid .catalog-item .catalog-checkbox:checked + .catalog-box .catalog-content .catalog-btn {
  background-color: #333;
  color: #fff;
  border-color: #333;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list .wpcf7-form-control-wrap,
#request .s1 .contact-form-wrapper .contact-form .item-list .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
  #request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text,
  #request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel,
  #request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email:focus {
  outline: none !important;
  border-color: #333 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder {
  color: #999 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder {
  color: #999 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select,
#request .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select,
  #request .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select {
    padding: 8px 10px !important;
    padding-right: 35px !important;
    font-size: 14px !important;
    background-position: right 10px center !important;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select:focus,
#request .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select:focus {
  outline: none !important;
  border-color: #333 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
#request .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  resize: vertical !important;
  min-height: 150px !important;
  background-color: #fff !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
  #request .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 8px 10px !important;
    font-size: 14px !important;
    min-height: 300px !important;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus,
#request .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none !important;
  border-color: #333 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #request .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #999 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#request .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #999 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#request .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list .wpcf7-not-valid-tip,
#request .s1 .contact-form-wrapper .contact-form .item-list .wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  display: block !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list .form-note,
#request .s1 .contact-form-wrapper .contact-form .item-list .form-note {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .item-list .form-note,
  #request .s1 .contact-form-wrapper .contact-form .item-list .form-note {
    font-size: 11px !important;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row {
  margin-bottom: 15px;
  width: 100%;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row:last-child,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row:last-child {
  margin-bottom: 0;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row label,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row label {
  font-size: 14px !important;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row .postal-mark,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row .postal-mark {
  font-size: 16px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  display: inline-block !important;
  color: #333 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap {
  flex: 1 !important;
  width: auto !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control {
  width: 100% !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap, #request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap, #request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap, #request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap {
  width: 100% !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.building .form-note,
#request .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.building .form-note {
  margin-bottom: 8px !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .wpcf7-response-output,
#request .s1 .contact-form-wrapper .contact-form .wpcf7-response-output {
  margin: 10px 0 !important;
  padding: 10px !important;
  border-radius: 4px !important;
  text-align: center !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok,
#request .s1 .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda !important;
  color: #155724 !important;
  border: 1px solid #c3e6cb !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
#request .s1 .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da !important;
  color: #721c24 !important;
  border: 1px solid #f5c6cb !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .email-notice,
#request .s1 .contact-form-wrapper .contact-form .email-notice {
  margin: 30px 0 !important;
  padding: 20px !important;
  background-color: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-title,
#request .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-title {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  font-weight: bold !important;
  color: #000 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.6 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p,
#request .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content p {
  font-size: clamp(12px, 1vw, 14px) !important;
  color: #000 !important;
  line-height: 1.8 !important;
  margin: 0 0 12px 0 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p:last-child,
#request .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content p:last-child {
  margin-bottom: 0 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important,
#request .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important {
  color: #000 !important;
  font-weight: normal !important;
  margin-top: 15px !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important .important-mark,
#request .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important .important-mark {
  color: #e60012 !important;
  font-weight: bold !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit,
#request .s1 .contact-form-wrapper .contact-form .form-submit {
  text-align: center !important;
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid #ddd !important;
  position: relative !important;
  width: 100% !important;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit,
  #request .s1 .contact-form-wrapper .contact-form .form-submit {
    margin-top: 25px !important;
    padding-top: 15px !important;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit,
  #request .s1 .contact-form-wrapper .contact-form .form-submit {
    margin-top: 20px !important;
    padding-top: 15px !important;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn,
#request .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit {
  background-color: #333 !important;
  color: #fff !important;
  padding: 15px 60px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 200px !important;
}
@media screen and (max-width: 900px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn,
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
  #request .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit,
  #request .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn,
  #request .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit {
    padding: 12px 50px !important;
    font-size: 16px !important;
    min-width: 180px !important;
  }
}
@media screen and (max-width: 560px) {
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn,
  #request .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
  #request .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit,
  #request .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn,
  #request .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit {
    padding: 12px 40px !important;
    font-size: 14px !important;
    min-width: 160px !important;
    width: 80% !important;
  }
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:hover,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn:hover,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:hover,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit:hover,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn:hover,
#request .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit:hover {
  background-color: #555 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:active,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn:active,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:active,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit:active,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn:active,
#request .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit:active {
  background-color: #222 !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:disabled,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn:disabled,
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:disabled,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit:disabled,
#request .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn:disabled,
#request .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit .ajax-loader,
#request .s1 .contact-form-wrapper .contact-form .form-submit .ajax-loader {
  display: none !important;
  margin-left: 10px !important;
  vertical-align: middle !important;
}
#request .s1 .contact-form-wrapper .wpcf7-form .form-submit.wpcf7-submitting .ajax-loader,
#request .s1 .contact-form-wrapper .contact-form .form-submit.wpcf7-submitting .ajax-loader {
  display: inline-block !important;
}
#request .s2 {
  width: 100%;
  padding: 5vw 5%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #request .s2 {
    padding: 4vw 5%;
  }
}
@media screen and (max-width: 560px) {
  #request .s2 {
    padding: 30px 3%;
  }
}
#request .s2.contact-notice-section .contact-notice-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #request .s2.contact-notice-section .contact-notice-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #request .s2.contact-notice-section .contact-notice-wrapper {
    width: 100%;
  }
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content span {
  font-size: 12px;
}
@media screen and (max-width: 560px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content span {
    font-size: 11px;
  }
}
@media screen and (max-width: 900px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content {
    gap: 25px;
  }
}
@media screen and (max-width: 560px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content {
    flex-direction: column;
    gap: 20px;
  }
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0;
  flex-shrink: 0;
  min-width: 120px;
}
@media screen and (max-width: 900px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
    min-width: auto;
    font-size: clamp(18px, 4vw, 24px);
    text-align: center;
  }
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
  width: 1px;
  background-color: #333;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100px;
}
@media screen and (max-width: 900px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
    min-height: 80px;
  }
}
@media screen and (max-width: 560px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 0;
}
@media screen and (max-width: 900px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
    font-size: clamp(13px, 1.5vw, 15px);
  }
}
@media screen and (max-width: 560px) {
  #request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.6;
    margin-bottom: 8px;
  }
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item:last-child {
  margin-bottom: 0;
}
#request .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item.required {
  color: #e60012;
  font-weight: normal;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#reserve {
  width: 100%;
  position: relative;
}
#reserve .mv-full {
  width: 100%;
  position: relative;
  height: 25vw;
  margin: 80px 0 0 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  #reserve .mv-full {
    height: 30vw;
    margin: 80px 0 0 0;
  }
}
@media screen and (max-width: 560px) {
  #reserve .mv-full {
    height: 40vh;
    margin: 60px 0 0 0;
  }
}
#reserve .mv-full .txt {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 10;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 560px) {
  #reserve .mv-full .txt {
    padding: 0 5%;
    box-sizing: border-box;
  }
}
#reserve .mv-full .txt h3 {
  font-size: clamp(25px, 4vw, 50px);
  white-space: nowrap;
  display: block;
  line-height: 1.3em;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 900px) {
  #reserve .mv-full .txt h3 {
    font-size: clamp(22px, 5vw, 40px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .mv-full .txt h3 {
    font-size: clamp(20px, 6vw, 32px);
    white-space: normal;
  }
}
#reserve .mv-full .txt h2 {
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 5px 0 0 0;
  line-height: 1.3em;
}
@media screen and (max-width: 900px) {
  #reserve .mv-full .txt h2 {
    font-size: clamp(12px, 2vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .mv-full .txt h2 {
    font-size: clamp(11px, 3vw, 16px);
  }
}
#reserve .mv-full .txt p {
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.3em;
  margin: 10px 0 0 0;
}
@media screen and (max-width: 900px) {
  #reserve .mv-full .txt p {
    font-size: clamp(10px, 1.5vw, 14px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .mv-full .txt p {
    font-size: clamp(10px, 2.5vw, 13px);
    margin: 8px 0 0 0;
  }
}
#reserve .mv-full .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#reserve .mv-full .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#reserve .campaign-banner {
  width: 100%;
  background-color: #FFC200;
  padding: 20px 5%;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #reserve .campaign-banner {
    padding: 15px 5%;
  }
}
@media screen and (max-width: 560px) {
  #reserve .campaign-banner {
    padding: 15px 3%;
  }
}
#reserve .campaign-banner .campaign-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 900px) {
  #reserve .campaign-banner .campaign-wrapper {
    gap: 12px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .campaign-banner .campaign-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
#reserve .campaign-banner .campaign-wrapper .campaign-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 900px) {
  #reserve .campaign-banner .campaign-wrapper .campaign-icon {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .campaign-banner .campaign-wrapper .campaign-icon {
    width: 30px;
    height: 30px;
  }
}
#reserve .campaign-banner .campaign-wrapper .campaign-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#reserve .campaign-banner .campaign-wrapper .campaign-title {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: bold;
  color: #333;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  #reserve .campaign-banner .campaign-wrapper .campaign-title {
    font-size: clamp(16px, 2.5vw, 24px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .campaign-banner .campaign-wrapper .campaign-title {
    font-size: clamp(14px, 3vw, 20px);
  }
}
#reserve .s0 {
  width: 100%;
  padding: 5vw 5% 3vw;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #reserve .s0 {
    padding: 4vw 5% 2vw;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0 {
    padding: 30px 3% 20px;
  }
}
#reserve .s0.merits-section {
  padding: 0;
  background-color: transparent;
}
#reserve .s0.merits-section .merits-wrapper {
  width: 100%;
  margin: 0px auto;
  padding: 5vw 5%;
  box-sizing: border-box;
  background-image: url("../img/reserve/merit-bg.png");
  background-size: 160%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper {
    padding: 4vw 5%;
    background: #ffffff;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0.merits-section .merits-wrapper {
    padding: 30px 3%;
    background-size: 200% 50%;
  }
}
#reserve .s0.merits-section .merits-wrapper .merits-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: bold;
  color: #333;
  margin: 0 0 40px 0;
  text-align: center;
  letter-spacing: 0.05em;
  padding: 3vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper .merits-title {
    font-size: clamp(24px, 4vw, 32px);
    margin: 0 0 30px 0;
    padding: 2vw 0;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0.merits-section .merits-wrapper .merits-title {
    font-size: clamp(20px, 5vw, 28px);
    margin: 0 0 25px 0;
    padding: 20px 0;
  }
}
#reserve .s0.merits-section .merits-wrapper .merits-title span {
  color: #0066cc !important;
}
#reserve .s0.merits-section .merits-wrapper .merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid {
    gap: 25px;
  }
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item {
  text-align: center;
  background-color: #f1f1f1;
  padding: 80px 20px 20px 20px;
  box-sizing: border-box;
  -webkit-clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 20%);
          clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0% 100%, 0% 20%);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item {
    padding: 60px 20px 20px 20px;
    min-height: 350px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item {
    padding: 50px 15px 15px 15px;
    min-height: 300px;
  }
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-image {
  width: 50%;
  overflow: hidden;
  margin: 20px auto 0;
  border-radius: 8px;
  display: block;
  text-align: center;
  margin-top: auto;
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-image {
    margin: 20px auto 0 auto;
  }
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content {
  flex: 1;
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-title {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3em;
  font-weight: bold;
  color: #0066cc;
  margin: 0 0 15px 0;
  text-shadow: 0 0 5px rgb(255, 255, 255), 0 0 10px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-title {
    font-size: clamp(16px, 5vw, 30px);
    margin: 0 0 12px 0;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-title {
    font-size: clamp(14px, 5vw, 18px);
    margin: 0 0 10px 0;
  }
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-title .merit-title-jp {
  color: #000;
}
#reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-text {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #666;
  line-height: 1.8;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 900px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-text {
    font-size: clamp(13px, 3vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0.merits-section .merits-wrapper .merits-grid .merit-item .merit-content .merit-item-text {
    font-size: clamp(12px, 5vw, 18px);
    line-height: 1.6;
  }
}
#reserve .s0-5 {
  width: 100%;
  padding: 5vw 5%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5 {
    padding: 4vw 5%;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5 {
    padding: 30px 3%;
  }
}
#reserve .s0-5.presents-section .presents-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5.presents-section .presents-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper {
    width: 100%;
    padding: 0 3%;
    box-sizing: border-box;
  }
}
#reserve .s0-5.presents-section .presents-wrapper .presents-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0 0 40px 0;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-title {
    font-size: clamp(20px, 3vw, 28px);
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-title {
    font-size: clamp(18px, 4vw, 24px);
    margin: 0 0 25px 0;
  }
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item {
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item {
    padding: 25px 15px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item {
    padding: 20px 15px;
  }
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item.present-item-yellow {
  background-color: #FFC200;
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item.present-item-dark {
  background-color: #333;
  color: #fff;
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-item-title {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-item-title {
    font-size: clamp(13px, 1.5vw, 15px);
    margin: 0 0 15px 0;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-item-title {
    font-size: clamp(12px, 2.5vw, 14px);
    margin: 0 0 12px 0;
  }
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-icon {
  width: 180px;
  height: 130px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-icon {
    width: 150px;
    height: 110px;
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-icon {
    width: 120px;
    height: 90px;
    margin: 0 auto 12px;
  }
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-icon img {
  width: 100%;
  height: auto;
}
#reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-text {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 900px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-text {
    font-size: clamp(14px, 2vw, 18px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .s0-5.presents-section .presents-wrapper .presents-grid .present-item .present-text {
    font-size: clamp(13px, 3vw, 16px);
  }
}
#reserve .s1 {
  width: 100%;
  margin: 0 auto;
  padding: 0 5% 5vw;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  #reserve .s1 {
    padding: 0 5% 4vw;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s1 {
    padding: 0 3% 30px;
  }
}
#reserve .s1 .contact-form-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reserve .s1 .contact-form-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper {
    width: 100%;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form,
#reserve .s1 .contact-form-wrapper .contact-form {
  width: 100%;
  background-color: #fff;
  border-radius: 0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list,
#reserve .s1 .contact-form-wrapper .contact-form .item-list {
  margin: 0 0 0 0;
  padding: 20px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 20px;
  box-sizing: border-box;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list:last-child,
#reserve .s1 .contact-form-wrapper .contact-form .item-list:last-child {
  margin-bottom: 0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list > label,
#reserve .s1 .contact-form-wrapper .contact-form .item-list > label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list > label .required,
#reserve .s1 .contact-form-wrapper .contact-form .item-list > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid {
    gap: 15px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item {
  position: relative;
  cursor: pointer;
  margin: 0;
  display: block;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-radio,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-radio:checked + .showroom-box,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-radio:checked + .showroom-box {
  border-color: #333;
  background-color: #FFC200;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box {
  width: 100%;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box:hover,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box:hover {
  border-color: #999;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-image,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #e0e0e0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-image img,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-content,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-content {
  padding: 15px;
  text-align: center;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-content p,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.showroom-selection .showroom-grid .showroom-item .showroom-box .showroom-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row {
    gap: 12px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row {
    flex-direction: column;
    gap: 10px;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row .date-field,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row .time-field,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row .date-field,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row .time-field {
  flex: 1;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row .date-field .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.datetime-selection .datetime-row .time-field .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row .date-field .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.datetime-selection .datetime-row .time-field .wpcf7-form-control-wrap {
  width: 100%;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-label,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.privacy-section .privacy-label {
  margin-bottom: 15px;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.privacy-section .privacy-checkbox-wrapper {
  margin-bottom: 10px;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label input[type=checkbox],
#reserve .s1 .contact-form-wrapper .contact-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label span,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label span {
  line-height: 1.5;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date {
    padding: 8px 10px !important;
    font-size: 14px !important;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date:focus,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date:focus {
  outline: none !important;
  border-color: #333 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date::-moz-placeholder {
  color: #999 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date::placeholder,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date::placeholder {
  color: #999 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select,
#reserve .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select {
    padding: 8px 10px !important;
    padding-right: 35px !important;
    font-size: 14px !important;
    background-position: right 10px center !important;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select:focus,
#reserve .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select:focus {
  outline: none !important;
  border-color: #333 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
#reserve .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  resize: vertical !important;
  min-height: 150px !important;
  background-color: #fff !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 8px 10px !important;
    font-size: 14px !important;
    min-height: 120px !important;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus,
#reserve .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none !important;
  border-color: #333 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #reserve .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #999 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#reserve .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #999 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#reserve .s1 .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list .wpcf7-not-valid-tip,
#reserve .s1 .contact-form-wrapper .contact-form .item-list .wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  display: block !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list .form-note,
#reserve .s1 .contact-form-wrapper .contact-form .item-list .form-note {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list .form-note,
  #reserve .s1 .contact-form-wrapper .contact-form .item-list .form-note {
    font-size: 11px !important;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row {
  margin-bottom: 15px;
  width: 100%;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row:last-child,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row:last-child {
  margin-bottom: 0;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row label,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row label {
  font-size: 14px !important;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row .postal-mark,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row .postal-mark {
  font-size: 16px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  display: inline-block !important;
  color: #333 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap {
  flex: 1 !important;
  width: auto !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control {
  width: 100% !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap, #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap, #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap, #reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap {
  width: 100% !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.building .form-note,
#reserve .s1 .contact-form-wrapper .contact-form .item-list.address-group .address-row.building .form-note {
  margin-bottom: 8px !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .wpcf7-response-output,
#reserve .s1 .contact-form-wrapper .contact-form .wpcf7-response-output {
  margin: 20px 0 !important;
  padding: 10px !important;
  border-radius: 4px !important;
  text-align: center !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok,
#reserve .s1 .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda !important;
  color: #155724 !important;
  border: 1px solid #c3e6cb !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
#reserve .s1 .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da !important;
  color: #721c24 !important;
  border: 1px solid #f5c6cb !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .email-notice,
#reserve .s1 .contact-form-wrapper .contact-form .email-notice {
  margin: 30px 0 !important;
  padding: 20px !important;
  background-color: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-title,
#reserve .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-title {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  font-weight: bold !important;
  color: #000 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.6 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p,
#reserve .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content p {
  font-size: clamp(12px, 1vw, 14px) !important;
  color: #000 !important;
  line-height: 1.8 !important;
  margin: 0 0 12px 0 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p:last-child,
#reserve .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content p:last-child {
  margin-bottom: 0 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important,
#reserve .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important {
  color: #000 !important;
  font-weight: normal !important;
  margin-top: 15px !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important .important-mark,
#reserve .s1 .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important .important-mark {
  color: #e60012 !important;
  font-weight: bold !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit {
  text-align: center !important;
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid #ddd !important;
  position: relative !important;
  width: 100% !important;
}
@media screen and (max-width: 900px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit {
    margin-top: 25px !important;
    padding-top: 15px !important;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit {
    margin-top: 20px !important;
    padding-top: 15px !important;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit {
  background-color: #333 !important;
  color: #fff !important;
  padding: 15px 60px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 200px !important;
}
@media screen and (max-width: 900px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit {
    padding: 12px 50px !important;
    font-size: 16px !important;
    min-width: 180px !important;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn,
  #reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn,
  #reserve .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit {
    padding: 12px 40px !important;
    font-size: 14px !important;
    min-width: 160px !important;
    width: 80% !important;
  }
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:hover,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn:hover,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:hover,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit:hover,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn:hover,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit:hover {
  background-color: #555 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:active,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn:active,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:active,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit:active,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn:active,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit:active {
  background-color: #222 !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:disabled,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit input.submit-btn:disabled,
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:disabled,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.wpcf7-submit:disabled,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit input.submit-btn:disabled,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit button.wpcf7-submit:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit .ajax-loader,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit .ajax-loader {
  display: none !important;
  margin-left: 10px !important;
  vertical-align: middle !important;
}
#reserve .s1 .contact-form-wrapper .wpcf7-form .form-submit.wpcf7-submitting .ajax-loader,
#reserve .s1 .contact-form-wrapper .contact-form .form-submit.wpcf7-submitting .ajax-loader {
  display: inline-block !important;
}
#reserve .s2 {
  width: 100%;
  padding: 5vw 5%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #reserve .s2 {
    padding: 4vw 5%;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s2 {
    padding: 30px 3%;
  }
}
#reserve .s2.contact-notice-section .contact-notice-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper {
    width: 100%;
  }
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content span {
  font-size: 12px;
}
@media screen and (max-width: 560px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content span {
    font-size: 11px;
  }
}
@media screen and (max-width: 900px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content {
    gap: 25px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content {
    flex-direction: column;
    gap: 20px;
  }
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0;
  flex-shrink: 0;
  min-width: 120px;
}
@media screen and (max-width: 900px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
    font-size: clamp(20px, 3vw, 28px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
    min-width: auto;
    font-size: clamp(18px, 4vw, 24px);
    text-align: center;
  }
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
  width: 1px;
  background-color: #333;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100px;
}
@media screen and (max-width: 900px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
    min-height: 80px;
  }
}
@media screen and (max-width: 560px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 0;
}
@media screen and (max-width: 900px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
    font-size: clamp(13px, 1.5vw, 15px);
  }
}
@media screen and (max-width: 560px) {
  #reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.6;
    margin-bottom: 8px;
  }
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item:last-child {
  margin-bottom: 0;
}
#reserve .s2.contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item.required {
  color: #e60012;
  font-weight: normal;
}

#member {
  width: 100%;
  position: relative;
}
#member .hero-section {
  width: 100%;
  background-color: #FFC200;
  padding: 40px 5% 60px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}
#member .hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background-color: #fff;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}
#member .hero-section .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  #member .hero-section .hero-content {
    flex-direction: column;
    gap: 30px;
  }
}
#member .hero-section .hero-content .hero-text {
  flex: 1;
  z-index: 2;
}
#member .hero-section .hero-content .hero-text .hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: bold;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
#member .hero-section .hero-content .hero-text .hero-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #333;
  margin: 0 0 30px 0;
  line-height: 1.8;
}
#member .hero-section .hero-content .hero-text .hero-btn {
  display: inline-block;
  background-color: #FFC200;
  border: 2px solid #333;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 22px);
  transition: all 0.3s ease;
  position: relative;
  padding-right: 50px;
}
#member .hero-section .hero-content .hero-text .hero-btn:hover {
  background-color: #333;
  color: #FFC200;
}
#member .hero-section .hero-content .hero-text .hero-btn .hero-btn-text {
  display: block;
  line-height: 1.6;
}
#member .hero-section .hero-content .hero-text .hero-btn .hero-btn-text .hero-btn-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
}
#member .hero-section .hero-content .hero-text .hero-btn .hero-btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(20px, 2.5vw, 28px);
}
#member .hero-section .hero-content .hero-image {
  flex: 1.25;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  #member .hero-section .hero-content .hero-image {
    width: 100%;
  }
}
#member .hero-section .hero-content .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
#member .service-section {
  width: 100%;
  padding: 80px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#member .service-section .service-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#member .service-section .service-wrapper .service-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
  letter-spacing: 0.05em;
}
#member .service-section .service-wrapper .service-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #666;
  margin: 0 0 50px 0;
  text-align: center;
}
#member .service-section .service-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  #member .service-section .service-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#member .service-section .service-wrapper .benefits-grid .benefit-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #e60012;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: bold;
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-content .benefit-image {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-content .benefit-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-content .benefit-text {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-content .benefit-text .benefit-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: bold;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.6;
}
#member .service-section .service-wrapper .benefits-grid .benefit-item .benefit-content .benefit-text .benefit-description {
  font-size: clamp(12px, 1.1vw, 14px);
  color: #666;
  line-height: 1.8;
  margin: 0;
}
#member .promise-section {
  width: 100%;
  padding: 0px 5%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}
#member .promise-section .promise-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 900px) {
  #member .promise-section .promise-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
#member .promise-section .promise-wrapper .promise-content {
  flex: 1;
}
@media (max-width: 900px) {
  #member .promise-section .promise-wrapper .promise-content {
    text-align: center;
    padding: 50px 0 0 0;
  }
}
#member .promise-section .promise-wrapper .promise-content .promise-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: bold;
  color: #0066cc;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
#member .promise-section .promise-wrapper .promise-content .promise-text {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #333;
  line-height: 1.8;
  margin: 0;
}
#member .promise-section .promise-wrapper .promise-image {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}
@media (max-width: 900px) {
  #member .promise-section .promise-wrapper .promise-image {
    width: 50%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}
#member .promise-section .promise-wrapper .promise-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
#member .member-form-section {
  width: 100%;
  padding: 80px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#member .member-form-section .member-form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
#member .member-form-section .member-form-wrapper .contact-notice-content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
#member .member-form-section .member-form-wrapper .contact-notice-content span {
  font-size: 12px;
}
@media (max-width: 767px) {
  #member .member-form-section .member-form-wrapper .contact-notice-content {
    flex-direction: column;
    gap: 20px;
  }
}
#member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0;
  flex-shrink: 0;
  min-width: 120px;
}
@media (max-width: 767px) {
  #member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-title {
    min-width: auto;
  }
}
#member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-divider {
  width: 1px;
  background-color: #333;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100px;
}
@media (max-width: 767px) {
  #member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
}
#member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
#member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 0;
}
#member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-list .contact-notice-item:last-child {
  margin-bottom: 0;
}
#member .member-form-section .member-form-wrapper .contact-notice-content .contact-notice-list .contact-notice-item.required {
  color: #e60012;
  font-weight: normal;
}
#member .member-form-section .member-form-wrapper .wpcf7-form,
#member .member-form-section .member-form-wrapper .member-form {
  width: 100%;
  background-color: #fff;
  border-radius: 0;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list,
#member .member-form-section .member-form-wrapper .member-form .item-list {
  margin: 0 0 20px 0;
  padding: 20px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list:last-child,
#member .member-form-section .member-form-wrapper .member-form .item-list:last-child {
  margin-bottom: 0;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list > label,
#member .member-form-section .member-form-wrapper .member-form .item-list > label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list > label .required,
#member .member-form-section .member-form-wrapper .member-form .item-list > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-label,
#member .member-form-section .member-form-wrapper .member-form .item-list.privacy-section .privacy-label {
  margin-bottom: 15px;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper,
#member .member-form-section .member-form-wrapper .member-form .item-list.privacy-section .privacy-checkbox-wrapper {
  margin-bottom: 10px;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label,
#member .member-form-section .member-form-wrapper .member-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label input[type=checkbox],
#member .member-form-section .member-form-wrapper .member-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label span,
#member .member-form-section .member-form-wrapper .member-form .item-list.privacy-section .privacy-checkbox-wrapper .privacy-checkbox-label span {
  line-height: 1.5;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list .wpcf7-form-control-wrap,
#member .member-form-section .member-form-wrapper .member-form .item-list .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-text,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-tel,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-email {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-email:focus {
  outline: none !important;
  border-color: #333 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder {
  color: #999 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder {
  color: #999 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#member .member-form-section .member-form-wrapper .member-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list .wpcf7-not-valid-tip,
#member .member-form-section .member-form-wrapper .member-form .item-list .wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  display: block !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .item-list .form-note,
#member .member-form-section .member-form-wrapper .member-form .item-list .form-note {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .wpcf7-response-output,
#member .member-form-section .member-form-wrapper .member-form .wpcf7-response-output {
  margin: 20px 0 !important;
  padding: 10px !important;
  border-radius: 4px !important;
  text-align: center !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok,
#member .member-form-section .member-form-wrapper .member-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda !important;
  color: #155724 !important;
  border: 1px solid #c3e6cb !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
#member .member-form-section .member-form-wrapper .member-form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da !important;
  color: #721c24 !important;
  border: 1px solid #f5c6cb !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .email-notice,
#member .member-form-section .member-form-wrapper .member-form .email-notice {
  margin: 30px 0 !important;
  padding: 20px !important;
  background-color: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .email-notice .email-notice-title,
#member .member-form-section .member-form-wrapper .member-form .email-notice .email-notice-title {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  font-weight: bold !important;
  color: #000 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.6 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .email-notice .email-notice-content p,
#member .member-form-section .member-form-wrapper .member-form .email-notice .email-notice-content p {
  font-size: clamp(12px, 1vw, 14px) !important;
  color: #000 !important;
  line-height: 1.8 !important;
  margin: 0 0 12px 0 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .email-notice .email-notice-content p:last-child,
#member .member-form-section .member-form-wrapper .member-form .email-notice .email-notice-content p:last-child {
  margin-bottom: 0 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important,
#member .member-form-section .member-form-wrapper .member-form .email-notice .email-notice-content .email-notice-important {
  color: #000 !important;
  font-weight: normal !important;
  margin-top: 15px !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important .important-mark,
#member .member-form-section .member-form-wrapper .member-form .email-notice .email-notice-content .email-notice-important .important-mark {
  color: #e60012 !important;
  font-weight: bold !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit,
#member .member-form-section .member-form-wrapper .member-form .form-submit {
  text-align: center !important;
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid #ddd !important;
  position: relative !important;
  width: 100% !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.submit-btn,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.wpcf7-submit,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.submit-btn,
#member .member-form-section .member-form-wrapper .member-form .form-submit button.wpcf7-submit {
  background-color: #333 !important;
  color: #fff !important;
  padding: 15px 60px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 18px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 200px !important;
  position: relative;
  padding-right: 50px !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit::after,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.submit-btn::after,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit::after,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.wpcf7-submit::after,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.submit-btn::after,
#member .member-form-section .member-form-wrapper .member-form .form-submit button.wpcf7-submit::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:hover,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.submit-btn:hover,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:hover,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.wpcf7-submit:hover,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.submit-btn:hover,
#member .member-form-section .member-form-wrapper .member-form .form-submit button.wpcf7-submit:hover {
  background-color: #555 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:active,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.submit-btn:active,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:active,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.wpcf7-submit:active,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.submit-btn:active,
#member .member-form-section .member-form-wrapper .member-form .form-submit button.wpcf7-submit:active {
  background-color: #222 !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.wpcf7-submit:disabled,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit input.submit-btn:disabled,
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit button.wpcf7-submit:disabled,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.wpcf7-submit:disabled,
#member .member-form-section .member-form-wrapper .member-form .form-submit input.submit-btn:disabled,
#member .member-form-section .member-form-wrapper .member-form .form-submit button.wpcf7-submit:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit .ajax-loader,
#member .member-form-section .member-form-wrapper .member-form .form-submit .ajax-loader {
  display: none !important;
  margin-left: 10px !important;
  vertical-align: middle !important;
}
#member .member-form-section .member-form-wrapper .wpcf7-form .form-submit.wpcf7-submitting .ajax-loader,
#member .member-form-section .member-form-wrapper .member-form .form-submit.wpcf7-submitting .ajax-loader {
  display: inline-block !important;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#login {
  width: 100%;
  position: relative;
}
#login .login-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 900px) {
  #login .login-section {
    padding: 40px 5%;
  }
}
@media screen and (max-width: 560px) {
  #login .login-section {
    padding: 30px 3%;
  }
}
#login .login-section .login-wrapper {
  max-width: 600px;
  margin: 0 auto;
}
#login .login-section .login-wrapper .login-content {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  #login .login-section .login-wrapper .login-content {
    padding: 30px 20px;
  }
}
#login .login-section .login-wrapper .login-content .login-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#login .login-section .login-wrapper .login-content .login-subtitle {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #666;
  margin: 0 0 30px 0;
  text-align: center;
  line-height: 1.6;
}
#login .login-section .login-wrapper .login-content .login-form {
  width: 100%;
}
#login .login-section .login-wrapper .login-content .login-form .form-item {
  margin-bottom: 25px;
}
#login .login-section .login-wrapper .login-content .login-form .form-item:last-of-type {
  margin-bottom: 20px;
}
#login .login-section .login-wrapper .login-content .login-form .form-item label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}
#login .login-section .login-wrapper .login-content .login-form .form-item label .required {
  color: #e60012;
  font-size: 12px;
  font-weight: normal;
  margin-left: 4px;
}
#login .login-section .login-wrapper .login-content .login-form .form-item .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.5;
}
#login .login-section .login-wrapper .login-content .login-form .form-item .form-control:focus {
  outline: none;
  border-color: #333;
}
#login .login-section .login-wrapper .login-content .login-form .form-item .form-control::-moz-placeholder {
  color: #999;
}
#login .login-section .login-wrapper .login-content .login-form .form-item .form-control::placeholder {
  color: #999;
}
#login .login-section .login-wrapper .login-content .login-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 560px) {
  #login .login-section .login-wrapper .login-content .login-form .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
}
#login .login-section .login-wrapper .login-content .login-form .form-options .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
#login .login-section .login-wrapper .login-content .login-form .form-options .remember-me input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
#login .login-section .login-wrapper .login-content .login-form .form-options .remember-me span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#login .login-section .login-wrapper .login-content .login-form .form-options .forgot-password {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
#login .login-section .login-wrapper .login-content .login-form .form-options .forgot-password:hover {
  color: #FFC200;
  text-decoration: underline;
}
#login .login-section .login-wrapper .login-content .login-form .form-submit {
  text-align: center;
  margin-bottom: 30px;
}
#login .login-section .login-wrapper .login-content .login-form .form-submit .submit-btn {
  width: 100%;
  max-width: 400px;
  padding: 15px 40px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
#login .login-section .login-wrapper .login-content .login-form .form-submit .submit-btn:hover {
  background-color: #555;
}
@media screen and (max-width: 560px) {
  #login .login-section .login-wrapper .login-content .login-form .form-submit .submit-btn {
    padding: 12px 30px;
  }
}
#login .login-section .login-wrapper .login-content .login-links {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
#login .login-section .login-wrapper .login-content .login-links .register-link-text {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px 0;
}
#login .login-section .login-wrapper .login-content .login-links .register-link-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FFC200;
  color: #333;
  border: 2px solid #FFC200;
  border-radius: 4px;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: bold;
  transition: all 0.3s;
}
#login .login-section .login-wrapper .login-content .login-links .register-link-btn:hover {
  background-color: #fff;
  color: #333;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#modelhouse-single {
  width: 100%;
  position: relative;
}
#modelhouse-single .hero-section {
  width: 100%;
  padding: 0px 0%;
  box-sizing: border-box;
  background-color: #fff;
}
#modelhouse-single .hero-section .hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
}
@media (max-width: 900px) {
  #modelhouse-single .hero-section .hero-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}
#modelhouse-single .hero-section .hero-wrapper .hero-content {
  position: relative;
  z-index: 2;
  width: 45%;
  padding-right: 40px;
  right: -6%;
}
@media (max-width: 900px) {
  #modelhouse-single .hero-section .hero-wrapper .hero-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: -60px;
    right: 0;
  }
}
#modelhouse-single .hero-section .hero-wrapper .hero-content .hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: bold;
  color: #000;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
}
#modelhouse-single .hero-section .hero-wrapper .hero-content .hero-subtitle {
  font-size: clamp(16px, 1.8vw, 24px);
  color: #333;
  margin: 0 0 30px 0;
}
#modelhouse-single .hero-section .hero-wrapper .hero-content .hero-description {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-left: -40px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  #modelhouse-single .hero-section .hero-wrapper .hero-content .hero-description {
    margin-left: 0;
    margin-top: 0;
    border-radius: 0;
  }
}
#modelhouse-single .hero-section .hero-wrapper .hero-content .hero-description h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}
#modelhouse-single .hero-section .hero-wrapper .hero-content .hero-description p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
#modelhouse-single .hero-section .hero-wrapper .hero-image {
  width: 55%;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  #modelhouse-single .hero-section .hero-wrapper .hero-image {
    width: 100%;
  }
}
#modelhouse-single .hero-section .hero-wrapper .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
#modelhouse-single .information-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}
#modelhouse-single .information-section .information-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 900px) {
  #modelhouse-single .information-section .information-wrapper {
    gap: 30px;
  }
}
#modelhouse-single .information-section .information-wrapper .information-row {
  display: flex;
  gap: 60px;
}
@media (max-width: 900px) {
  #modelhouse-single .information-section .information-wrapper .information-row {
    flex-direction: column;
    gap: 40px;
  }
}
#modelhouse-single .information-section .information-wrapper .information-left {
  flex: 1;
}
#modelhouse-single .information-section .information-wrapper .information-left .info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#modelhouse-single .information-section .information-wrapper .information-left .info-table tr {
  border-bottom: 1px solid #e0e0e0;
}
#modelhouse-single .information-section .information-wrapper .information-left .info-table tr:last-child {
  border-bottom: none;
}
#modelhouse-single .information-section .information-wrapper .information-left .info-table tr th {
  padding: 20px;
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333;
  text-align: left;
  width: 30%;
  font-size: clamp(14px, 1.2vw, 16px);
}
#modelhouse-single .information-section .information-wrapper .information-left .info-table tr td {
  padding: 20px;
  color: #666;
  font-size: clamp(14px, 1.2vw, 16px);
}
#modelhouse-single .information-section .information-wrapper .information-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#modelhouse-single .information-section .information-wrapper .information-right .reserve-btn {
  display: block;
  background-color: #FFC200;
  color: #000;
  text-align: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(16px, 1.5vw, 20px);
  transition: background-color 0.3s;
}
#modelhouse-single .information-section .information-wrapper .information-right .reserve-btn:hover {
  background-color: #e6ae00;
}
#modelhouse-single .information-section .information-wrapper .information-right .phone-box {
  background-color: #0066cc;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}
#modelhouse-single .information-section .information-wrapper .information-right .phone-box .phone-number {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: bold;
  margin: 0 0 10px 0;
}
#modelhouse-single .information-section .information-wrapper .information-right .phone-box .phone-text {
  font-size: clamp(14px, 1.2vw, 16px);
  margin: 0;
}
#modelhouse-single .information-section .map-container {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
}
#modelhouse-single .information-section .map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  #modelhouse-single .information-section .map-container iframe {
    height: 250px;
  }
}
#modelhouse-single .gallery-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#modelhouse-single .gallery-section .gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#modelhouse-single .gallery-section .gallery-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#modelhouse-single .gallery-section .gallery-wrapper .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
  text-align: center;
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider {
  margin-top: 40px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
  color: #FFC200;
  background-color: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
  font-size: 20px;
}
@media (max-width: 900px) {
  #modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
  #modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
  #modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
    font-size: 12px;
  }
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination {
  bottom: 20px;
  position: relative;
  margin-top: 20px;
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #999;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s;
}
#modelhouse-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFC200;
}
#modelhouse-single .point-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}
#modelhouse-single .point-section .point-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#modelhouse-single .point-section .point-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  text-align: center;
  display: block;
}
#modelhouse-single .point-section .point-wrapper .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
  text-align: center;
}
#modelhouse-single .point-section .point-wrapper .point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  #modelhouse-single .point-section .point-wrapper .point-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#modelhouse-single .point-section .point-wrapper .point-grid .point-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#modelhouse-single .point-section .point-wrapper .point-grid .point-item .point-image {
  width: 100%;
  aspect-ratio: 6/3;
  overflow: hidden;
}
#modelhouse-single .point-section .point-wrapper .point-grid .point-item .point-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#modelhouse-single .point-section .point-wrapper .point-grid .point-item .point-content {
  padding: 30px;
}
#modelhouse-single .point-section .point-wrapper .point-grid .point-item .point-content .point-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}
#modelhouse-single .point-section .point-wrapper .point-grid .point-item .point-content .point-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
#modelhouse-single .floorplan-features-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#modelhouse-single .floorplan-features-section .floorplan-features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  #modelhouse-single .floorplan-features-section .floorplan-features-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
#modelhouse-single .floorplan-section {
  flex: 1;
  width: 100%;
}
#modelhouse-single .floorplan-section .floorplan-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modelhouse-single .floorplan-section .floorplan-wrapper .floorplan-image {
  width: 85%;
  max-width: 900px;
}
@media (max-width: 900px) {
  #modelhouse-single .floorplan-section .floorplan-wrapper .floorplan-image {
    width: 90%;
  }
}
#modelhouse-single .floorplan-section .floorplan-wrapper .floorplan-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#modelhouse-single .features-section {
  flex: 1;
  width: 100%;
}
#modelhouse-single .features-section .features-wrapper {
  width: 100%;
}
#modelhouse-single .features-section .features-wrapper .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
#modelhouse-single .features-section .features-wrapper .features-list .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
  padding: 0 0 30px 0;
  border-radius: 8px;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}
#modelhouse-single .features-section .features-wrapper .features-list .feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#modelhouse-single .features-section .features-wrapper .features-list .feature-item .feature-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
#modelhouse-single .features-section .features-wrapper .features-list .feature-item .feature-number {
  width: 50px;
  height: 50px;
  background-color: #FFC200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: bold;
  color: #333;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  #modelhouse-single .features-section .features-wrapper .features-list .feature-item .feature-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}
#modelhouse-single .features-section .features-wrapper .features-list .feature-item .feature-title {
  flex: 1;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: bold;
  color: #333;
  margin: 0;
}
#modelhouse-single .features-section .features-wrapper .features-list .feature-item .feature-text {
  width: 100%;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
#modelhouse-single .reservation-cta-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-title span {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: bold;
  color: #FFC200;
  display: inline-block;
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items {
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 900px) {
  #modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items .cta-item {
  flex: 1;
  max-width: 300px;
}
@media (max-width: 900px) {
  #modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items .cta-item {
    width: 100%;
    max-width: 300px;
  }
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items .cta-item .cta-image {
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items .cta-item .cta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#modelhouse-single .reservation-cta-section .reservation-cta-wrapper .cta-items .cta-item .cta-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
#modelhouse-single .web-reserve-banner,
#modelhouse-single .catalog-banner,
#modelhouse-single .campaign-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#modelhouse-single .web-reserve-banner .banner-wrapper,
#modelhouse-single .catalog-banner .banner-wrapper,
#modelhouse-single .campaign-banner .banner-wrapper {
  display: flex;
  align-items: center;
  min-height: 400px;
}
@media (max-width: 900px) {
  #modelhouse-single .web-reserve-banner .banner-wrapper,
  #modelhouse-single .catalog-banner .banner-wrapper,
  #modelhouse-single .campaign-banner .banner-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content {
  flex: 1;
  padding: 60px 5%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content .banner-label,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content .banner-label,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content .banner-label {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: bold;
  color: #fff;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content .banner-title,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content .banner-title,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content .banner-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: bold;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content .banner-text,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content .banner-text,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content .banner-text {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #fff;
  line-height: 1.8;
  margin: 0 0 30px 0;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content .banner-highlight,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content .banner-highlight,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content .banner-highlight {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: bold;
  color: #FFC200;
  margin: 0 0 30px 0;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content .banner-btn,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content .banner-btn,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content .banner-btn {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: all 0.3s;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-content .banner-btn:hover,
#modelhouse-single .catalog-banner .banner-wrapper .banner-content .banner-btn:hover,
#modelhouse-single .campaign-banner .banner-wrapper .banner-content .banner-btn:hover {
  background-color: #f0f0f0;
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-image,
#modelhouse-single .catalog-banner .banner-wrapper .banner-image,
#modelhouse-single .campaign-banner .banner-wrapper .banner-image {
  flex: 1;
  position: relative;
  min-height: 400px;
}
@media (max-width: 900px) {
  #modelhouse-single .web-reserve-banner .banner-wrapper .banner-image,
  #modelhouse-single .catalog-banner .banner-wrapper .banner-image,
  #modelhouse-single .campaign-banner .banner-wrapper .banner-image {
    min-height: 300px;
  }
}
#modelhouse-single .web-reserve-banner .banner-wrapper .banner-image img,
#modelhouse-single .catalog-banner .banner-wrapper .banner-image img,
#modelhouse-single .campaign-banner .banner-wrapper .banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#modelhouse-single .web-reserve-banner {
  background-color: #333;
}
#modelhouse-single .web-reserve-banner .banner-content {
  background-color: rgba(0, 0, 0, 0.7);
}
#modelhouse-single .catalog-banner {
  background-color: #f5f5f5;
}
#modelhouse-single .catalog-banner .banner-content {
  background-color: rgba(255, 255, 255, 0.95);
}
#modelhouse-single .catalog-banner .banner-content .banner-label,
#modelhouse-single .catalog-banner .banner-content .banner-title {
  color: #333;
}
#modelhouse-single .catalog-banner .banner-content .banner-btn {
  background-color: #333;
  color: #fff;
}
#modelhouse-single .catalog-banner .banner-content .banner-btn:hover {
  background-color: #555;
}
#modelhouse-single .campaign-banner {
  background-color: #0066cc;
}
#modelhouse-single .campaign-banner .banner-content {
  background-color: rgba(0, 102, 204, 0.9);
}
#modelhouse-single .reserve-cta-banner {
  width: 100%;
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link {
  display: block;
  width: 80%;
  margin: 50px auto;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link:hover .mv-full .bg img {
  transform: scale(1.1);
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full {
  width: 100%;
  position: relative;
  height: 25vw;
  margin: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full .txt {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 10;
  color: #fff;
  text-align: center;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full .txt h3 {
  font-size: clamp(25px, 4vw, 50px);
  white-space: nowrap;
  display: block;
  line-height: 1.3em;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full .txt h2 {
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 5px 0 0 0;
  line-height: 1.3em;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full .txt p {
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.3em;
  margin: 10px 0 0 0;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#modelhouse-single .reserve-cta-banner .reserve-cta-link .mv-full .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#modelhouse-single .back-button-section {
  width: 100%;
  padding: 50px 5%;
  box-sizing: border-box;
  text-align: center;
}
#modelhouse-single .back-button-section .back-button-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#modelhouse-single .back-button-section .back-button-wrapper .back-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: background-color 0.3s ease;
}
#modelhouse-single .back-button-section .back-button-wrapper .back-button:hover {
  background-color: #333;
}
#modelhouse-single .back-button-section .back-button-wrapper .back-button .back-button-text {
  display: block;
}
#modelhouse-single .back-button-section .back-button-wrapper .back-button .back-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  flex-shrink: 0;
}
#modelhouse-single .back-button-section .back-button-wrapper .back-button .back-button-icon svg {
  width: 16px;
  height: 16px;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#bestplan-single,
#events-single {
  width: 100%;
  position: relative;
}
#bestplan-single .events-section,
#events-single .events-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#bestplan-single .events-section .events-wrapper,
#events-single .events-section .events-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#bestplan-single .events-section .events-wrapper .section-title,
#events-single .events-section .events-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#bestplan-single .events-section .events-wrapper .section-title .section-subtitle,
#events-single .events-section .events-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#bestplan-single .events-section .events-wrapper .event-filters,
#events-single .events-section .events-wrapper .event-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}
#bestplan-single .events-section .events-wrapper .event-filters .filter-btn,
#events-single .events-section .events-wrapper .event-filters .filter-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  border-radius: 4px;
  font-size: clamp(14px, 1.2vw, 16px);
  text-decoration: none;
  transition: all 0.3s;
}
#bestplan-single .events-section .events-wrapper .event-filters .filter-btn.active,
#events-single .events-section .events-wrapper .event-filters .filter-btn.active {
  background-color: #FFC200;
  border-color: #FFC200;
  color: #333;
}
#bestplan-single .events-section .events-wrapper .event-filters .filter-btn:hover,
#events-single .events-section .events-wrapper .event-filters .filter-btn:hover {
  background-color: #f5f5f5;
}
#bestplan-single .events-section .events-wrapper .event-main-title,
#events-single .events-section .events-wrapper .event-main-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0 0 30px 0;
  text-align: center;
  line-height: 1.6;
}
#bestplan-single .events-section .events-wrapper .event-main-image,
#events-single .events-section .events-wrapper .event-main-image {
  width: 100%;
  margin: 40px 0 0 0;
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider {
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-slide img,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next,
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev {
  color: #FFC200;
  background-color: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next::after,
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev::after,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next::after,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev::after {
  font-size: 20px;
}
@media (max-width: 900px) {
  #bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next,
  #bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev,
  #events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next,
  #events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next::after,
  #bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev::after,
  #events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-next::after,
  #events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-button-prev::after {
    font-size: 12px;
  }
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-pagination,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-pagination {
  bottom: 20px;
  position: relative;
  margin-top: 20px;
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-pagination .swiper-pagination-bullet,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #999;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s;
}
#bestplan-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
#events-single .events-section .events-wrapper .event-main-image .event-image-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFC200;
}
#bestplan-single .events-section .events-wrapper .event-interior-images,
#events-single .events-section .events-wrapper .event-interior-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}
@media (max-width: 900px) {
  #bestplan-single .events-section .events-wrapper .event-interior-images,
  #events-single .events-section .events-wrapper .event-interior-images {
    grid-template-columns: 1fr;
  }
}
#bestplan-single .events-section .events-wrapper .event-interior-images .interior-image,
#events-single .events-section .events-wrapper .event-interior-images .interior-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}
#bestplan-single .events-section .events-wrapper .event-interior-images .interior-image img,
#events-single .events-section .events-wrapper .event-interior-images .interior-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#bestplan-single .events-section .events-wrapper .event-description,
#events-single .events-section .events-wrapper .event-description {
  margin: 30px 0;
}
#bestplan-single .events-section .events-wrapper .event-description p,
#events-single .events-section .events-wrapper .event-description p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
#bestplan-single .about-section,
#events-single .about-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}
#bestplan-single .about-section .about-wrapper,
#events-single .about-section .about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#bestplan-single .about-section .about-wrapper .section-title,
#events-single .about-section .about-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#bestplan-single .about-section .about-wrapper .section-title .section-subtitle,
#events-single .about-section .about-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#bestplan-single .about-section .about-wrapper .about-content,
#events-single .about-section .about-wrapper .about-content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#bestplan-single .about-section .about-wrapper .about-content .event-info-table,
#events-single .about-section .about-wrapper .about-content .event-info-table {
  width: 100%;
}
#bestplan-single .about-section .about-wrapper .about-content .event-info-table .info-table,
#events-single .about-section .about-wrapper .about-content .event-info-table .info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#bestplan-single .about-section .about-wrapper .about-content .event-info-table .info-table tr,
#events-single .about-section .about-wrapper .about-content .event-info-table .info-table tr {
  border-bottom: 1px solid #e0e0e0;
}
#bestplan-single .about-section .about-wrapper .about-content .event-info-table .info-table tr:last-child,
#events-single .about-section .about-wrapper .about-content .event-info-table .info-table tr:last-child {
  border-bottom: none;
}
#bestplan-single .about-section .about-wrapper .about-content .event-info-table .info-table tr th,
#events-single .about-section .about-wrapper .about-content .event-info-table .info-table tr th {
  padding: 20px;
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333;
  text-align: left;
  width: 30%;
  font-size: clamp(14px, 1.2vw, 16px);
}
#bestplan-single .about-section .about-wrapper .about-content .event-info-table .info-table tr td,
#events-single .about-section .about-wrapper .about-content .event-info-table .info-table tr td {
  padding: 20px;
  color: #666;
  font-size: clamp(14px, 1.2vw, 16px);
}
#bestplan-single .about-section .about-wrapper .about-content .event-map,
#events-single .about-section .about-wrapper .about-content .event-map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
#bestplan-single .about-section .about-wrapper .about-content .event-map iframe,
#events-single .about-section .about-wrapper .about-content .event-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  #bestplan-single .about-section .about-wrapper .about-content .event-map iframe,
  #events-single .about-section .about-wrapper .about-content .event-map iframe {
    height: 300px;
  }
}
#bestplan-single .consultation-section,
#events-single .consultation-section {
  width: 100%;
}
#bestplan-single .consultation-section .imgwrap,
#events-single .consultation-section .imgwrap {
  width: 100%;
  position: relative;
  padding: 30px 0;
  box-sizing: border-box;
  margin: 80px 0 0 0;
}
#bestplan-single .consultation-section .imgwrap .txt,
#events-single .consultation-section .imgwrap .txt {
  width: 80%;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 10;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  gap: 5%;
}
#bestplan-single .consultation-section .imgwrap .txt img,
#events-single .consultation-section .imgwrap .txt img {
  width: 45%;
  -o-object-fit: contain;
     object-fit: contain;
}
#bestplan-single .consultation-section .imgwrap .bg,
#events-single .consultation-section .imgwrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#bestplan-single .consultation-section .imgwrap .bg img,
#events-single .consultation-section .imgwrap .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#bestplan-single .contact-section,
#events-single .contact-section {
  width: 100%;
  margin: 0 auto;
  padding: 0 5% 5vw;
  box-sizing: border-box;
}
#bestplan-single .contact-section .contact-wrapper,
#events-single .contact-section .contact-wrapper {
  width: 100%;
  margin: 0 auto;
}
#bestplan-single .contact-section .contact-wrapper .section-title,
#events-single .contact-section .contact-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#bestplan-single .contact-section .contact-wrapper .section-title .section-subtitle,
#events-single .contact-section .contact-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper {
  width: 80%;
  margin: 80px auto;
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content span,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content span {
  font-size: 12px;
}
@media (max-width: 767px) {
  #bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content,
  #events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content {
    flex-direction: column;
    gap: 20px;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  margin: 0;
  flex-shrink: 0;
  min-width: 120px;
}
@media (max-width: 767px) {
  #bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title,
  #events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-title {
    min-width: auto;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
  width: 1px;
  background-color: #333;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100px;
}
@media (max-width: 767px) {
  #bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider,
  #events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #333;
  line-height: 1.8;
  margin: 0 0 10px 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item:last-child,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item:last-child {
  margin-bottom: 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item.required,
#events-single .contact-section .contact-wrapper .contact-notice-section .contact-notice-wrapper .contact-notice-content .contact-notice-list .contact-notice-item.required {
  color: #e60012;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper,
#events-single .contact-section .contact-wrapper .contact-form-wrapper {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper {
    width: 100%;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form {
  width: 100%;
  background-color: #fff;
  border-radius: 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin: 0 0 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .required,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-top: 8px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  resize: vertical !important;
  min-height: 150px !important;
  background-color: #fff !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > label .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  display: block !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p {
  margin: 0 0 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:last-child,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:last-child {
  margin-bottom: 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p > label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p > label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p > label .required,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-top: 8px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::-moz-placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date::placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  resize: vertical !important;
  min-height: 150px !important;
  background-color: #fff !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  display: block !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .form-note,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .form-note,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .form-note,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .form-note {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p.form-note,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p.form-note,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p.form-note,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p.form-note {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 12px !important;
  color: #666 !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group {
  display: flex;
  gap: 20px;
  margin: 0 0 20px 0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
}
@media (max-width: 767px) {
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group,
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group {
    flex-direction: column;
    gap: 15px;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .required,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-top: 8px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .datetime-group > label .wpcf7-form-control-wrap select.wpcf7-form-control.wpcf7-select {
  cursor: pointer !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group,
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group {
    flex-direction: column;
    gap: 15px;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group > label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group > label {
  flex: 1;
  font-size: 14px !important;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group > label .wpcf7-form-control,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group > label .wpcf7-form-control,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p .datetime-group > label .wpcf7-form-control,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p .datetime-group > label .wpcf7-form-control {
  margin-top: 8px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list {
  margin: 0 0 0 0;
  padding: 20px;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 20px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list:last-child,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list:last-child {
  margin-bottom: 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list > label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list > label {
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list > label .required,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list > label .required,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list > label .required {
  color: #e60012;
  font-size: 14px;
  margin-left: 4px;
  font-weight: normal;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-bottom: 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::-moz-placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email::placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-text.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-tel.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-email.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  background-color: #fff !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 40px !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list select.wpcf7-form-control.wpcf7-select.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  resize: vertical !important;
  min-height: 150px !important;
  background-color: #fff !important;
  font-family: inherit !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder, #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::-moz-placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea::placeholder {
  color: #999 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .wpcf7-not-valid-tip,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .wpcf7-not-valid-tip,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .wpcf7-not-valid-tip,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 12px !important;
  margin-top: 5px !important;
  display: block !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .form-note,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .form-note,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .form-note,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .form-note {
  font-size: 12px !important;
  color: #666 !important;
  margin-top: 5px !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group,
  #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group,
  #events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group {
    flex-direction: column;
    gap: 15px;
  }
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group > label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group > label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group > label {
  flex: 1;
  font-size: 14px !important;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group > label .wpcf7-form-control,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group > label .wpcf7-form-control,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group > label .wpcf7-form-control,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group > label .wpcf7-form-control {
  margin-top: 8px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper {
  flex: 1;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper .date-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper .time-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper .date-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper .time-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper .date-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper .time-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper .date-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper .time-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper .date-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper .time-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper .date-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper .time-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper .date-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper .time-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper .date-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper .time-label {
  font-size: 14px !important;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .date-input-wrapper .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .datetime-group .time-select-wrapper .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .date-input-wrapper .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .datetime-group .time-select-wrapper .wpcf7-form-control-wrap {
  width: 100% !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s !important;
  background-color: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  line-height: 1.5 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date:focus,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date:focus,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date:focus {
  outline: none !important;
  border-color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list input.wpcf7-form-control.wpcf7-date.wpcf7-not-valid {
  border-color: #e60012 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row {
  margin-bottom: 15px;
  width: 100%;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row:last-child,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row:last-child {
  margin-bottom: 0;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row label {
  font-size: 14px !important;
  font-weight: normal !important;
  display: block !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row .postal-mark,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row .postal-mark,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row .postal-mark,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row .postal-mark {
  font-size: 16px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  display: inline-block !important;
  color: #333 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code .wpcf7-form-control-wrap {
  flex: 1 !important;
  width: auto !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.postal-code input.wpcf7-form-control {
  width: 100% !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.prefecture .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.city .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.street .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list.address-group .address-row.building .wpcf7-form-control-wrap {
  width: 100% !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .radio-group,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .radio-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .radio-group,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .radio-group {
  display: flex;
  gap: 20px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .radio-group .radio-label,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .radio-group .radio-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .radio-group .radio-label,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .radio-group .radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: clamp(14px, 1.2vw, 16px);
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .radio-group .radio-label input[type=radio],
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .radio-group .radio-label input[type=radio],
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .item-list .radio-group .radio-label input[type=radio],
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .item-list .radio-group .radio-label input[type=radio] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-response-output,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-response-output,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-response-output,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-response-output {
  margin: 20px 0 !important;
  padding: 10px !important;
  border-radius: 4px !important;
  text-align: center !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-mail-sent-ok,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #d4edda !important;
  color: #155724 !important;
  border: 1px solid #c3e6cb !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-validation-errors,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-response-output.wpcf7-validation-errors {
  background-color: #f8d7da !important;
  color: #721c24 !important;
  border: 1px solid #f5c6cb !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice {
  margin: 30px 0 !important;
  padding: 20px !important;
  background-color: #f5f5f5 !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-title,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-title,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-title,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-title {
  font-size: clamp(14px, 1.2vw, 16px) !important;
  font-weight: bold !important;
  color: #000 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.6 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content p,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content p {
  font-size: clamp(12px, 1vw, 14px) !important;
  color: #000 !important;
  line-height: 1.8 !important;
  margin: 0 0 12px 0 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p:last-child,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content p:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content p:last-child,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content p:last-child {
  margin-bottom: 0 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important {
  color: #000 !important;
  font-weight: normal !important;
  margin-top: 15px !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important .important-mark,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important .important-mark,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .email-notice .email-notice-content .email-notice-important .important-mark,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .email-notice .email-notice-content .email-notice-important .important-mark {
  color: #e60012 !important;
  font-weight: bold !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .form-submit,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .form-submit,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .form-submit,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .form-submit {
  text-align: center !important;
  margin-top: 30px !important;
  padding-top: 20px !important;
  border-top: 1px solid #ddd !important;
  position: relative !important;
  width: 100% !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .form-submit .submit-btn,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .form-submit .submit-btn,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .form-submit .submit-btn,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .form-submit .submit-btn {
  background-color: #333 !important;
  color: #fff !important;
  padding: 15px 60px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .form-submit .submit-btn:hover,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .form-submit .submit-btn:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .form-submit .submit-btn:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .form-submit .submit-btn:hover {
  background-color: #555 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > input[type=submit],
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .wpcf7-submit,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form input[type=submit].wpcf7-submit,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > input[type=submit],
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .wpcf7-submit,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form input[type=submit].wpcf7-submit,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > input[type=submit],
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .wpcf7-submit,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form input[type=submit].wpcf7-submit,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > input[type=submit],
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .wpcf7-submit,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form input[type=submit].wpcf7-submit {
  background-color: #333 !important;
  color: #fff !important;
  padding: 15px 60px !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: background-color 0.3s !important;
  display: block !important;
  margin: 30px auto 0 !important;
  width: auto !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > input[type=submit]:hover,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .wpcf7-submit:hover,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form input[type=submit].wpcf7-submit:hover,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > input[type=submit]:hover,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .wpcf7-submit:hover,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form input[type=submit].wpcf7-submit:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > input[type=submit]:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .wpcf7-submit:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form input[type=submit].wpcf7-submit:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > input[type=submit]:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .wpcf7-submit:hover,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form input[type=submit].wpcf7-submit:hover {
  background-color: #555 !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .wpcf7-spinner,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .wpcf7-spinner,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > .wpcf7-spinner,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > .wpcf7-spinner {
  display: inline-block !important;
  margin-left: 10px !important;
  vertical-align: middle !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  margin-right: 5px;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap input, #bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap input,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap input,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap input,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap input,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap input,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal1]) .wpcf7-form-control-wrap input,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form > p:has(.wpcf7-form-control-wrap[data-name=postal2]) .wpcf7-form-control-wrap input {
  width: 100px !important;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-form-control-wrap,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .wpcf7-form-control-wrap,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .ajax-loader,
#bestplan-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .ajax-loader,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .wpcf7-form .ajax-loader,
#events-single .contact-section .contact-wrapper .contact-form-wrapper .contact-form .ajax-loader {
  display: inline-block !important;
  margin-left: 10px !important;
  vertical-align: middle !important;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#lineup-single {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}
#lineup-single .hero-section {
  width: 100%;
  padding: 0px 0%;
  box-sizing: border-box;
  background-color: #fff;
}
#lineup-single .hero-section .hero-wrapper {
  max-width: 1200px;
  margin: 0 auto 5% auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  #lineup-single .hero-section .hero-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}
#lineup-single .hero-section .hero-wrapper .hero-title {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 50px 0 0 0;
  width: 100%;
  z-index: 3;
  position: relative;
  padding: 0 5%;
}
#lineup-single .hero-section .hero-wrapper .hero-content {
  position: absolute;
  z-index: 2;
  bottom: 0%;
  right: 5%;
  width: 50%;
}
@media (max-width: 900px) {
  #lineup-single .hero-section .hero-wrapper .hero-content {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}
#lineup-single .hero-section .hero-wrapper .hero-content .hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: bold;
  color: #000;
  margin: 0 0 10px 0;
  letter-spacing: 0.1em;
}
#lineup-single .hero-section .hero-wrapper .hero-content .hero-subtitle {
  font-size: clamp(16px, 1.8vw, 24px);
  color: #333;
  margin: 0 0 30px 0;
}
#lineup-single .hero-section .hero-wrapper .hero-content .hero-description {
  background-color: #FFC200;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  #lineup-single .hero-section .hero-wrapper .hero-content .hero-description {
    border-radius: 0;
  }
}
#lineup-single .hero-section .hero-wrapper .hero-content .hero-description h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}
#lineup-single .hero-section .hero-wrapper .hero-content .hero-description p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #333;
  margin: 0;
}
#lineup-single .hero-section .hero-wrapper .hero-image {
  width: 80%;
  /* height: 40vw; */
  position: relative;
  z-index: 1;
  margin: 50px auto;
  overflow: hidden;
}
@media (max-width: 900px) {
  #lineup-single .hero-section .hero-wrapper .hero-image {
    width: 100%;
    margin: 0px auto;
  }
}
#lineup-single .hero-section .hero-wrapper .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  display: block;
}
#lineup-single .specification-section {
  width: 100%;
  margin-top: 80px;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
@media (max-width: 900px) {
  #lineup-single .specification-section {
    margin-top: 30px;
  }
}
#lineup-single .specification-section .specification-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#lineup-single .specification-section .specification-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#lineup-single .specification-section .specification-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#lineup-single .specification-section .specification-wrapper .specification-table {
  margin-top: 40px;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 20px auto;
}
@media (max-width: 900px) {
  #lineup-single .specification-section .specification-wrapper .specification-table .spec-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 600px) {
  #lineup-single .specification-section .specification-wrapper .specification-table .spec-row {
    grid-template-columns: 1fr;
  }
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row.spec-row-price {
  margin-bottom: 0;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row .spec-item {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ddd;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-label {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #666;
  margin-bottom: 10px;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value span {
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: bold;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row .spec-item .spec-value small {
  display: block;
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: bold;
  margin-top: 5px;
}
#lineup-single .specification-section .specification-wrapper .specification-table .spec-row .spec-item.spec-item-price {
  width: 100%;
  box-sizing: border-box;
  grid-column: 1/-1;
}
#lineup-single .gallery-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#lineup-single .gallery-section .gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#lineup-single .gallery-section .gallery-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#lineup-single .gallery-section .gallery-wrapper .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
  text-align: center;
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider {
  margin-top: 40px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
  color: #FFC200;
  background-color: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
  font-size: 20px;
}
@media (max-width: 900px) {
  #lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
  #lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
  #lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
    font-size: 12px;
  }
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination {
  bottom: 20px;
  position: relative;
  margin-top: 20px;
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #999;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s;
}
#lineup-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFC200;
}
#lineup-single .feature-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
}
#lineup-single .feature-section .feature-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#lineup-single .feature-section .feature-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#lineup-single .feature-section .feature-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#lineup-single .feature-section .feature-wrapper .feature-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  #lineup-single .feature-section .feature-wrapper .feature-list {
    gap: 40px;
  }
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-image {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  overflow: hidden;
  aspect-ratio: 4/3;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-content {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-number {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: bold;
  color: #0066cc;
  line-height: 1;
  display: block;
  margin: 0 0 20px 0;
  padding: 10px 0;
  border-bottom: 8px solid #858585;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-content .feature-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item:nth-child(odd) {
  flex-direction: row;
}
#lineup-single .feature-section .feature-wrapper .feature-list .feature-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  #lineup-single .feature-section .feature-wrapper .feature-list .feature-item {
    flex-direction: column !important;
    gap: 20px;
  }
  #lineup-single .feature-section .feature-wrapper .feature-list .feature-item .feature-image {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}
#lineup-single .plan-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}
#lineup-single .plan-section .plan-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#lineup-single .plan-section .plan-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#lineup-single .plan-section .plan-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#lineup-single .plan-section .plan-wrapper .plan-main-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 30px 0 20px 0;
  line-height: 1.6;
}
#lineup-single .plan-section .plan-wrapper .plan-description {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  text-align: center;
  margin: 0 0 40px 0;
}
#lineup-single .plan-section .plan-wrapper .plan-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
/* 内装画像なし時：間取り図のみ表示（1枚=中央、複数=左右2列） */
#lineup-single .plan-section .plan-wrapper .plan-content.plan-content--floorplan-only .floorplan-section {
  width: 100%;
  align-self: stretch;
}
#lineup-single .plan-section .plan-wrapper .plan-content.plan-content--floorplan-only .floorplan-section--single .floorplan-wrapper {
  justify-content: center;
  width: 100%;
}
#lineup-single .plan-section .plan-wrapper .plan-content.plan-content--floorplan-only .floorplan-section--grid .floorplan-wrapper {
  width: 100%;
}
@media (max-width: 900px) {
  #lineup-single .plan-section .plan-wrapper .plan-content {
    gap: 30px;
  }
}
/* 間取り図: 1枚は中央配置 */
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section {
  width: 100%;
}
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section--single .floorplan-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section--single .floorplan-wrapper .floorplan-image {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
}
/* 間取り図: 複数は2列 */
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid {
  width: 100%;
}
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid .floorplan-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 100%;
}
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid .floorplan-wrapper .floorplan-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  background-color: #fff;
}
#lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper .floorplan-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  #lineup-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid .floorplan-wrapper {
    grid-template-columns: 1fr;
  }
}
/* 内装写真: 間取り図の下で2列 */
#lineup-single .plan-section .plan-wrapper .plan-content .plan-images-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  #lineup-single .plan-section .plan-wrapper .plan-content .plan-images-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#lineup-single .plan-section .plan-wrapper .plan-content .plan-images-section .plan-image-item {
  width: 100%;
  overflow: hidden;
}
#lineup-single .plan-section .plan-wrapper .plan-content .plan-images-section .plan-image-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#lineup-single .reserve-cta-banner {
  width: 100%;
  position: relative;
  padding: 0 5%;
  box-sizing: border-box;
}
#lineup-single .reserve-cta-banner .reserve-cta-link {
  display: block;
  width: 80%;
  margin: 50px auto;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
#lineup-single .reserve-cta-banner .reserve-cta-link:hover .mv-full .bg img {
  transform: scale(1.1);
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full {
  width: 100%;
  position: relative;
  height: 25vw;
  margin: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full .txt {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  z-index: 10;
  color: #fff;
  text-align: center;
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full .txt h3 {
  font-size: clamp(25px, 4vw, 50px);
  white-space: nowrap;
  display: block;
  line-height: 1.3em;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full .txt h2 {
  font-size: clamp(14px, 1.8vw, 20px);
  margin: 5px 0 0 0;
  line-height: 1.3em;
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full .txt p {
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.3em;
  margin: 10px 0 0 0;
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#lineup-single .reserve-cta-banner .reserve-cta-link .mv-full .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
#lineup-single .back-button-section {
  width: 100%;
  padding: 50px 5%;
  box-sizing: border-box;
  text-align: center;
}
#lineup-single .back-button-section .back-button-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#lineup-single .back-button-section .back-button-wrapper .back-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: background-color 0.3s ease;
}
#lineup-single .back-button-section .back-button-wrapper .back-button:hover {
  background-color: #333;
}
#lineup-single .back-button-section .back-button-wrapper .back-button .back-button-text {
  display: block;
}
#lineup-single .back-button-section .back-button-wrapper .back-button .back-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  flex-shrink: 0;
}
#lineup-single .back-button-section .back-button-wrapper .back-button .back-button-icon svg {
  width: 16px;
  height: 16px;
}

:root {
  --primary-color: #CC556A;
  --secondary-color: #86AD3D;
  --tertiary-color: #4B62A9;
}

.wrap-space {
  padding: 100px 10%;
  box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .wrap-space {
    padding: 50px 10%;
  }
}
@media screen and (max-width: 560px) {
  .wrap-space {
    padding: 30px 5%;
  }
}

#works-single {
  width: 100%;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}
#works-single .hero-section {
  width: 100%;
  padding: 0px 0%;
  box-sizing: border-box;
  background-color: #fff;
}
#works-single .hero-section .hero-wrapper {
  max-width: 1200px;
  margin: 0 auto 5% auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  #works-single .hero-section .hero-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}
#works-single .hero-section .hero-wrapper .hero-title {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 50px 0 0 0;
  width: 100%;
  z-index: 3;
  position: relative;
  padding: 0 5%;
}
#works-single .hero-section .hero-wrapper .hero-content {
  /* position: absolute; */
  /* z-index: 2; */
  bottom: -20%;
  right: 5%;
  width: 80%;
}
@media (max-width: 900px) {
  #works-single .hero-section .hero-wrapper .hero-content {
    position: relative;
    width: 100%;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}
#works-single .hero-section .hero-wrapper .hero-content .hero-description {
  /* background-color: #FFC200; */
  padding: 30px;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}
@media (max-width: 900px) {
  #works-single .hero-section .hero-wrapper .hero-content .hero-description {
    /* border-radius: 0; */
  }
}
#works-single .hero-section .hero-wrapper .hero-content .hero-description h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}
#works-single .hero-section .hero-wrapper .hero-content .hero-description h2 img {
  margin: 20px 0;
  display: block;
}
#works-single .hero-section .hero-wrapper .hero-content .hero-description p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #333;
  margin: 0;
}
#works-single .hero-section .hero-wrapper .hero-content .hero-description p img {
  margin: 20px 0;
  display: block;
}
#works-single .hero-section .hero-wrapper .hero-content .hero-description img {
  margin: 20px 0;
  display: block;
}
#works-single .hero-section .hero-wrapper .hero-image {
  width: 80%;
  position: relative;
  z-index: 1;
  margin: 50px auto;
  overflow: hidden;
}
@media (max-width: 900px) {
  #works-single .hero-section .hero-wrapper .hero-image {
    width: 100%;
    margin: 0px auto;
  }
}
#works-single .hero-section .hero-wrapper .hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  display: block;
}
#works-single .pentagon-section {
  width: 100%;
  padding: 40px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#works-single .pentagon-section .pentagon-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 30px;
}
#works-single .pentagon-section .pentagon-content .pentagon-text {
  width: 100%;
  font-size: clamp(16px, 2vw, 25px);
  line-height: 1.8;
  color: #333;
  margin: 0;
  font-weight: bold;
  text-align: center;
}
#works-single .pentagon-section .pentagon-content .pentagon-objects {
  width: 100%;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  #works-single .pentagon-section .pentagon-content .pentagon-objects {
    gap: 10px;
  }
}
#works-single .pentagon-section .pentagon-content .pentagon-objects .pentagon-object {
  display: inline-block;
  padding: 5px 10px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 14px);
  border-radius: 4px;
  transition: background-color 0.3s;
}
#works-single .pentagon-section .pentagon-content .pentagon-objects .pentagon-object:hover {
  background-color: #333;
}
#works-single .gallery-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#works-single .gallery-section .gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#works-single .gallery-section .gallery-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#works-single .gallery-section .gallery-wrapper .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
  text-align: center;
}
#works-single .gallery-section .gallery-wrapper .gallery-slider {
  margin-top: 40px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
  color: #FFC200;
  background-color: rgba(255, 255, 255, 0.9);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
  font-size: 20px;
}
@media (max-width: 900px) {
  #works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next,
  #works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  #works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-next::after,
  #works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-button-prev::after {
    font-size: 12px;
  }
}
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination {
  bottom: 20px;
  position: relative;
  margin-top: 20px;
}
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #999;
  opacity: 1;
  margin: 0 6px;
  transition: background-color 0.3s;
}
#works-single .gallery-section .gallery-wrapper .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFC200;
}
#works-single .point-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f9f9f9;
}
#works-single .point-section .point-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#works-single .point-section .point-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  text-align: center;
  display: block;
}
#works-single .point-section .point-wrapper .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
  text-align: center;
}
#works-single .point-section .point-wrapper .point-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  #works-single .point-section .point-wrapper .point-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
#works-single .point-section .point-wrapper .point-grid .point-item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#works-single .point-section .point-wrapper .point-grid .point-item .point-image {
  width: 100%;
  aspect-ratio: 6/3;
  overflow: hidden;
}
#works-single .point-section .point-wrapper .point-grid .point-item .point-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#works-single .point-section .point-wrapper .point-grid .point-item .point-content {
  padding: 30px;
}
#works-single .point-section .point-wrapper .point-grid .point-item .point-content .point-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}
#works-single .point-section .point-wrapper .point-grid .point-item .point-content .point-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  margin: 0;
}

#works-single .floorplan-features-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #fff;
}
#works-single .floorplan-features-section .floorplan-features-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  #works-single .floorplan-features-section .floorplan-features-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

#works-single .floorplan-section {
  flex: 1;
  width: 100%;
}
#works-single .floorplan-section .floorplan-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#works-single .floorplan-section .floorplan-wrapper .floorplan-image {
  width: 85%;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #works-single .floorplan-section .floorplan-wrapper .floorplan-image {
    width: 90%;
  }
}
#works-single .floorplan-section .floorplan-wrapper .floorplan-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

#works-single .plan-section {
  width: 100%;
  padding: 60px 5%;
  box-sizing: border-box;
  background-color: #f5f5f5;
}
#works-single .plan-section .plan-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#works-single .plan-section .plan-wrapper .section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  text-align: center;
}
#works-single .plan-section .plan-wrapper .section-title .section-subtitle {
  display: block;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: normal;
  color: #666;
  margin-top: 16px !important;
}
#works-single .plan-section .plan-wrapper .plan-main-title {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 30px 0 20px 0;
  line-height: 1.6;
}
#works-single .plan-section .plan-wrapper .plan-description {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: #666;
  text-align: center;
  margin: 0 0 40px 0;
}
#works-single .plan-section .plan-wrapper .plan-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 900px) {
  #works-single .plan-section .plan-wrapper .plan-content {
    gap: 30px;
  }
}
#works-single .plan-section .plan-wrapper .plan-content--floorplan-only .floorplan-section {
  width: 100%;
  align-self: stretch;
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section {
  width: 100%;
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section--single .floorplan-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section--single .floorplan-wrapper .floorplan-image {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid {
  width: 100%;
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid .floorplan-wrapper {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 100%;
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid .floorplan-wrapper .floorplan-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  #works-single .plan-section .plan-wrapper .plan-content .floorplan-section--grid .floorplan-wrapper {
    grid-template-columns: 1fr;
  }
}
#works-single .plan-section .plan-wrapper .plan-content .floorplan-section .floorplan-wrapper .floorplan-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
#works-single .plan-section .plan-wrapper .plan-content .plan-images-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  #works-single .plan-section .plan-wrapper .plan-content .plan-images-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#works-single .plan-section .plan-wrapper .plan-content .plan-images-section .plan-image-item {
  width: 100%;
  overflow: hidden;
}
#works-single .plan-section .plan-wrapper .plan-content .plan-images-section .plan-image-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#works-single .back-button-section {
  width: 100%;
  padding: 50px 5%;
  box-sizing: border-box;
  text-align: center;
}
#works-single .back-button-section .back-button-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
#works-single .back-button-section .back-button-wrapper .back-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: background-color 0.3s ease;
}
#works-single .back-button-section .back-button-wrapper .back-button:hover {
  background-color: #333;
}
#works-single .back-button-section .back-button-wrapper .back-button .back-button-text {
  display: block;
}
#works-single .back-button-section .back-button-wrapper .back-button .back-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  color: #000;
  flex-shrink: 0;
}
#works-single .back-button-section .back-button-wrapper .back-button .back-button-icon svg {
  width: 16px;
  height: 16px;
}/*# sourceMappingURL=style.css.map */