@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
@media screen and (max-width: 1024px) {
  :root {
    --content_width: 680px;
    --content-both_space: 15px;
    --header_height:65px;
    --waves_height: 20px;
  }
}
@media screen and (max-width: 667px) {
  :root {
    --content_width: 420px;
  }
}

/* -------------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (min-width: 1400px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 666px) {
  html {
    font-size: 62.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;
}

body {
  line-height: 1;
}

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

/* -------------------------------------------*/
/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
  body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
}
html:has(.is_active) {
  overflow: hidden;
}

body {
  height: 100%;
  font-size: 62.5%;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
  color: #000;
}
body:has(.is_active) {
  overflow: hidden;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

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

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  border: none;
  border: none;
  margin: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

@media not all and (max-width: 667px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

/* その場でフェードイン */
.fadeIntop {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-box.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.fadeinitem {
  opacity: 0;
}

.headline {
  animation: SlideInanime 1.6s;
  right: 0;
  top: 50%;
}

@keyframes SlideInanime {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:target {
  scroll-margin-top: 140px;
}

/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  position: relative;
  border: none;
  border: none;
  width: 100%;
  padding: 17px 18px;
  border: none;
  border-radius: 5px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  input[type=text],
  input[type=date],
  input[type=password],
  input[type=email],
  input[type=time],
  input[type=tel],
  input[type=number] {
    padding: 10px;
  }
}

input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  position: relative;
  border: none;
  border: none;
  width: 100%;
  height: 300px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  textarea {
    height: 170px;
  }
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::-moz-placeholder {
  color: #edf6ff;
  opacity: 1;
}
input[type=text]:disabled::placeholder {
  color: #edf6ff;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
}

input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.5s ease;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  input[type=radio] + .mwform-radio-field-text::before {
    width: 15px;
    height: 15px;
  }
}

input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background-color: #335eb3;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    left: 3px;
    width: 9px;
    height: 9px;
  }
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  display: none;
  vertical-align: middle;
}

input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 35px;
  line-height: 1;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

input[type=checkbox] + label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #fff;
  border: 2px #818181 solid;
  box-sizing: border-box;
  z-index: 2;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #edf6ff;
  border-bottom: 3px solid #edf6ff;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  opacity: 0;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  position: relative;
  width: 100%;
  border: 1px #edf6ff solid;
  border-radius: 5px;
  overflow: hidden;
}
.select-parts::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  margin-top: 2px;
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  pointer-events: none;
  z-index: 5;
}
.select-parts select {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 20px 0 15px;
  background: #fbefe3;
  color: #7f7f7f;
  font-size: 2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .select-parts select {
    font-size: 15rem;
  }
}

/**
 * file
 *
 */
input[type=file] + label {
  width: 160px;
  margin: 0 10px 0 0;
  padding: 15px 0;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.l-cta {
  padding: 160px 0 180px;
}
@media screen and (max-width: 1024px) {
  .l-cta {
    padding: 73px 15px 70px;
    border-radius: 15px;
  }
}
.l-cta::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/cta_back.jpg) no-repeat top center/cover;
}
.l-cta__body {
  margin-top: 38px;
}
@media screen and (max-width: 1024px) {
  .l-cta__body {
    margin-top: 20px;
  }
}
.l-cta__btn {
  margin: 0 auto;
}
.l-cta__waves--top {
  top: 0;
}
.l-cta__waves--bottom {
  bottom: 0;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-footer {
  /*position: relative;*/
  padding: 2% 0px 1% 0px;
}

.l-footer__inner {
  padding: 70px 0 90px;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    padding: 50px 0 50px;
  }
}
.l-footer__logo {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .l-footer__logo {
    max-width: 160px;
  }
}
.l-footer__logo-link {
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer__logo-link img {
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__logo-link {
    transition: 0.5s;
    transition-property: "opacity";
  }
  .l-footer__logo-link:hover {
    opacity: 0.8;
  }
}
.l-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .l-footer__menu {
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
  }
}
@media not all and (max-width: 1024px) {
  .l-footer__menu-item:not(:first-child) {
    margin-left: 25px;
  }
}
.l-footer__menu-link {
  display: inline-block;
  padding: 10px 15px;
  font-size: 16rem;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-footer__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #335eb3;
  bottom: -6px;
  transform: scale(0, 1);
  transition: transform 0.8s;
  transform-origin: right top;
}
.l-footer__menu-link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1024px) {
  .l-footer__menu-link {
    font-size: 13rem;
  }
}
.l-footer__special {
  position: absolute;
  left: 10%;
  bottom: 3%;
}
.l-footer__copyright {
  padding: 1% 0;
  color: #000;
  font-size: 1.2em;
  letter-spacing: 0.3em;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 1024px) {
  .l-footer__copyright {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #FFF;
  display: flex;
  min-height: 140px;
}
@media screen and (max-width: 667px) {
  .l-header {
    max-height: 70px;
    min-height: 70px;
    height: 70px;
  }
}
.l-header__headlink {
  display: flex;
  margin-left: auto;
  width: 70%;
}
.l-header__headlink ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}
.l-header__headlink li {
  margin: 0px 0px 0px 4%;
}
@media screen and (max-width: 1024px) {
  .l-header__headlink li {
    margin: 0px 0px 0px 8%;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__headlink li img {
    width: 20px;
  }
}
.l-header__logo {
  max-width: 200px;
  width: 30%;
  padding: 0;
  width: 30%;
}
@media screen and (max-width: 1380px) {
  .l-header__logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    max-width: 200px;
  }
}
.l-header__logo-link {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.l-header__logo-link img {
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__logo-link {
    transition: 0.5s;
    transition-property: opacity;
  }
  .l-header__logo-link:hover {
    opacity: 0.8;
  }
}

.l-hader__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 2% 0px 2%;
}
@media screen and (max-width: 1024px) {
  .l-hader__inner {
    padding: 0px 4% 0px 4%;
  }
}

.hamburger {
  width: 40px;
  height: 32px;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 667px) {
  .hamburger {
    width: 20px;
    height: 16px;
  }
}

.hamburger_bar {
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  background: #000;
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}
@media screen and (max-width: 667px) {
  .hamburger_bar {
    height: 2px;
  }
}

.hamburger_bar:nth-child(1) {
  top: 0;
}

.hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.hamburger_bar.is_active:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}

.hamburger_bar.is_active:nth-child(2) {
  transform: translate(50%, -50%);
  opacity: 0;
}

.hamburger_bar.is_active:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

.hamburger_txt {
  opacity: 0;
}

.hamburger_txt.is_active {
  color: #BF9056;
  font-size: 1.2rem;
  opacity: 1;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: auto;
  height: auto;
  width: 100%;
  margin: 0 auto;
  z-index: 99;
  background-color: rgba(237, 225, 210, 0.9);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s linear;
  pointer-events: none;
  font-family: "Montserrat", sans-serif;
  padding: 0 0 40px;
}
@media screen and (max-width: 667px) {
  .nav {
    padding: 0 0 22px;
  }
}
@media screen and (max-width: 480px) {
  .nav {
    background-color: rgb(237, 225, 210);
  }
}
.nav .nav_top {
  font-size: 3.3rem;
  font-weight: bold;
  margin: 0px 0px 12px 0px;
}
@media screen and (max-width: 667px) {
  .nav .nav_top {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .nav .nav_top {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: rgb(237, 225, 210);
    margin-bottom: 0;
    padding-bottom: 12px;
    padding-top: 20px;
  }
}
.nav .nav_title {
  font-size: 1.9rem;
  color: #BF9056;
  font-weight: bold;
  margin: 0px 0px 2% 0px;
}
@media screen and (max-width: 480px) {
  .nav .nav_title {
    position: sticky;
    top: 62px;
    z-index: 2;
    background-color: rgb(237, 225, 210);
  }
}
.nav .nav-list {
  display: flex;
  margin: 0px 0px 2% 0px;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .nav .nav-list {
    margin-bottom: 0;
  }
}
.nav .nav-list.list01 li a {
  display: inline-block;
  width: 140px;
}
@media screen and (max-width: 1024px) {
  .nav .nav-list.list01 li a {
    width: 115px;
  }
}
@media screen and (max-width: 480px) {
  .nav .nav-list.list01 li a {
    width: 100%;
    display: inline-block;
  }
}
.nav .nav-list li {
  font-size: 3.3rem;
  margin: 0px 70px 0px 0px;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .nav .nav-list li {
    font-size: 2.7rem;
    margin: 0px 7% 0px 0px;
  }
}
@media screen and (max-width: 480px) {
  .nav .nav-list li {
    width: 100%;
    margin: 0;
    margin-bottom: 2vh;
  }
}
.nav .nav-list li::after {
  content: "";
  position: absolute;
  left: 175px;
  top: 20%;
  background: #000000;
  width: 2px;
  height: 60%;
}
@media screen and (max-width: 1024px) {
  .nav .nav-list li::after {
    left: 120%;
  }
}
@media screen and (max-width: 480px) {
  .nav .nav-list li::after {
    display: none;
  }
}
.nav .nav-list.list02 li::after {
  left: 160px;
}
@media screen and (max-width: 1024px) {
  .nav .nav-list.list02 li::after {
    left: 110%;
  }
}
.nav .nav-list li:last-child::after {
  display: none;
}
.nav .nav-list li span {
  font-size: 3.9rem;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  padding: 0px 0px 0px 2%;
}
@media screen and (max-width: 1024px) {
  .nav .nav-list li span {
    font-size: 2.7rem;
  }
}
.nav .nav-list li a:hover {
  opacity: 0.4;
}
.nav .nav-list.list02 li {
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .nav .nav-list.list02 li {
    font-size: 1.8rem;
  }
}
.nav .nav-list.list03 {
  align-items: center;
}
.nav .nav-list.list03 li {
  font-size: 2rem;
  font-weight: 400;
}
.nav .nav-list.list03 li::after {
  display: none;
}

.nav_itemarea {
  width: auto;
  max-width: 726px;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .nav_itemarea {
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  .nav_itemarea {
    padding: 20px 4%;
    max-height: 100dvh;
    overflow: auto;
  }
}
@media screen and (max-width: 480px) {
  .nav_itemarea {
    padding-top: 0;
  }
}

.nav.is_active {
  opacity: 1;
  pointer-events: auto;
  padding: 0;
}

.nav-list {
  display: flex;
}

.change-language-links {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
  width: auto !important;
}

.change-language-links::before {
  content: "/";
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .change-language-links::before {
    font-size: 2rem;
  }
}

.change-language-links__jp-link,
.change-language-links__en-link {
  font-size: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .change-language-links__jp-link,
  .change-language-links__en-link {
    font-size: 2rem;
  }
}

.change-language-links__jp-link {
  text-decoration: underline;
}

.en-page .change-language-links__jp-link {
  text-decoration: none;
}

.en-page .change-language-links__en-link {
  text-decoration: underline;
}

@media (hover: hover) {
  .change-language-links a:hover {
    text-decoration: underline;
  }
}
.nav .change-language-links__jp-link,
.nav .change-language-links__en-link {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .nav .change-language-links__jp-link,
  .nav .change-language-links__en-link {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  body {
    width: 100%;
    min-width: 100%;
    overflow-x: hidden;
  }
  body.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    z-index: -1;
    background-color: #335eb3;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transition-property: "opacity visibility";
    z-index: 50;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  text-align: left;
}
@media not all and (max-width: 1024px) {
  .l-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0 auto;
    text-align: left;
  }
}

.l-main {
  position: relative;
  width: 100%;
}
.l-main__inner {
  position: relative;
  width: 100%;
  padding: 0 var(--content-both_space);
  z-index: 1;
}
.l-main--404 .l-main__inner, .l-main--error .l-main__inner {
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  .l-main--404 .l-main__inner, .l-main--error .l-main__inner {
    padding: 80px 15px;
  }
}
.l-main--404 .c-button, .l-main--error .c-button {
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  .l-main--404 .c-button, .l-main--error .c-button {
    margin-top: 30px;
  }
}

.no-link {
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.no-link--ba {
  pointer-events: none !important;
}
.no-link--ba::before, .no-link--ba::after {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.l-navi {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-navi {
    display: none;
  }
}
.l-navi__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .l-navi__menu {
    flex-direction: column;
  }
}
.l-navi__menu-item:not(:first-child) {
  margin-left: 24px;
}
@media screen and (max-width: 1380px) {
  .l-navi__menu-item:not(:first-child) {
    margin-left: 10px;
  }
}
.l-navi__menu-link {
  display: block;
  padding: 10px 15px;
  color: #fff;
  font-size: 18rem;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.l-navi__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff474;
  bottom: -6px;
  transform: scale(0, 1);
  transition: transform 0.8s;
  transform-origin: right top;
}
.l-navi__menu-link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1380px) {
  .l-navi__menu-link {
    font-size: 15rem;
  }
}
.l-navi__btn {
  width: 260px;
  height: 65px;
  margin-left: 30px;
}
@media screen and (max-width: 1380px) {
  .l-navi__btn {
    width: 180px;
    height: 60px;
  }
}
.l-navi__btn .c-btn__link {
  padding-left: 25px;
  border-radius: 32px;
  font-size: 18rem;
}
@media screen and (max-width: 1380px) {
  .l-navi__btn .c-btn__link {
    font-size: 15rem;
  }
}
.l-navi__btn .c-btn__link::before {
  left: 30px;
  width: 25px;
  height: 17px;
}
@media screen and (max-width: 1380px) {
  .l-navi__btn .c-btn__link::before {
    left: 15px;
    width: 22px;
    height: 15px;
  }
}

.l-navi-drawer {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-navi-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
}
.l-navi-drawer__inner {
  padding: 76px 15px;
}
.l-navi-drawer .l-footer__menu {
  margin-top: 40px;
}
.l-navi-drawer .l-footer__menu-link {
  color: #fff;
}
.l-navi-drawer__btn {
  margin: 45px auto 0;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
.home {
  background-image: url(../img/index/bg.webp);
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.p-top-mv {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.p-top-mv div {
  max-width: 510px;
}

.p-top-mv__heading {
  position: absolute;
  top: 50%;
  left: 7.5vw;
  transform: translate(0, -50%);
  z-index: 1;
  background-color: #c4d8ff;
}
@media screen and (max-width: 1024px) {
  .p-top-mv__heading {
    top: 53%;
    left: 15px;
  }
}
@media screen and (max-width: 667px) {
  .p-top-mv h1 {
    padding: 0px 6% 0px 6%;
  }
}
.p-top-mv .p-top-menu {
  display: flex;
  margin: 5% auto 0px auto;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 667px) {
  .p-top-mv .p-top-menu {
    width: 88%;
    padding: 0px 6% 0px 6%;
  }
}
.p-top-mv .p-top-menu li {
  margin: 0px 8% 0px 8%;
  font-family: "Cormorant Garamond", serif;
}
.p-top-mv .p-top-menu li h2 {
  font-size: 2.7rem;
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .p-top-mv .p-top-menu li h2 {
    font-size: 2.2rem;
  }
}
.p-top-mv .p-top-menu li p {
  font-size: 1.6rem;
  margin: 0.5rem 0px 0px 0px;
  text-align: center;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
.p-jp-mv {
  width: 100%;
  position: relative;
  margin: 140px 0px 2% 0px;
}
@media screen and (max-width: 667px) {
  .p-jp-mv {
    margin: 70px 0px 2% 0px;
  }
}

.inview-blur {
  opacity: 0.6;
  transition: transform 0.5s linear;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  -moz-filter: blur(15px);
  -ms-filter: blur(15px);
  -o-filter: blur(15px);
  filter: blur(15px);
}

.blur {
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
.p-jp-mv__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
.p-jp-code {
  margin: 0px 0px -10% 20%;
}
@media screen and (max-width: 667px) {
  .p-jp-code {
    margin: 0px 0px -10% 0%;
  }
}

.p-jp-code ul li {
  margin: 0px 0px 1rem 0px;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 667px) {
  .p-jp-code ul li {
    margin: 0px 0px 0.5rem 0px;
  }
}

.p-jp-code {
  /* 右から */
  /* 下から */
}
.p-jp-code__wrap {
  position: absolute;
  right: 20%;
  top: 10%;
  height: 100%;
  width: 23%;
}
@media screen and (max-width: 667px) {
  .p-jp-code__wrap {
    top: 5%;
  }
}
.p-jp-code__txt {
  font-size: 5.4rem;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .p-jp-code__txt {
    font-size: 2.5rem;
  }
}
.p-jp-code__num {
  font-size: 10rem;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #FFF;
  margin: 5% 0px 0px 30%;
  display: block;
}
@media screen and (max-width: 667px) {
  .p-jp-code__num {
    font-size: 4.5rem;
  }
}
.p-jp-code__line {
  opacity: 0.9;
  width: 400%;
  height: 4px;
  display: block;
  margin: 0px 0px 0px 35%;
}
@media screen and (max-width: 667px) {
  .p-jp-code__line {
    width: auto;
  }
}
.p-jp-code__item01 .p-jp-code__line {
  border-bottom: solid 4px #6EBED0;
}
.p-jp-code__item02 .p-jp-code__line {
  border-bottom: solid 4px #DDA186;
}
.p-jp-code__item03 .p-jp-code__line {
  border-bottom: solid 4px #C2CF00;
}
.p-jp-code__item04 .p-jp-code__line {
  border-bottom: solid 4px #7E9AD6;
}
.p-jp-code__item05 .p-jp-code__line {
  border-bottom: solid 4px #599F7F;
}
.p-jp-code__item06 .p-jp-code__line {
  border-bottom: solid 4px #D18D1F;
}
.p-jp-code__item07 .p-jp-code__line {
  border-bottom: solid 4px #BA2A3A;
}
.p-jp-code__item08 .p-jp-code__line {
  border-bottom: solid 4px #0E75AC;
}
.p-jp-code__item09 .p-jp-code__line {
  border-bottom: solid 4px #96538F;
}
.p-jp-code__item10 .p-jp-code__line {
  border-bottom: solid 4px #96538F;
}
.p-jp-code__item11 .p-jp-code__line {
  border-bottom: solid 4px #E24581;
}
.p-jp-code__item12 .p-jp-code__line {
  border-bottom: solid 4px #3C988D;
}
.p-jp-code__item13 .p-jp-code__line {
  border-bottom: solid 4px #D9B22E;
}
.p-jp-code__item14 .p-jp-code__line {
  border-bottom: solid 4px #D95C2E;
}
.p-jp-code__item15 .p-jp-code__line {
  border-bottom: solid 4px #85B742;
}
.p-jp-code__item16 .p-jp-code__line {
  border-bottom: solid 4px #D65998;
}
.p-jp-code__item17 .p-jp-code__line {
  border-bottom: solid 4px #596CD6;
}
.p-jp-code__item18 .p-jp-code__line {
  border-bottom: solid 4px #F07D33;
}
.p-jp-code__item19 .p-jp-code__line {
  border-bottom: solid 4px #F25743;
}
.p-jp-code__item20 .p-jp-code__line {
  border-bottom: solid 4px #9D42D6;
}
.p-jp-code__item21 .p-jp-code__line {
  border-bottom: solid 4px #42A8D6;
}
.p-jp-code__item22 .p-jp-code__line {
  border-bottom: solid 4px #E23333;
}
.p-jp-code__item23 .p-jp-code__line {
  border-bottom: solid 4px #FFA700;
}
.p-jp-code .fadeLeft {
  animation: fadeLeftAnime 1s linear forwards;
}
@keyframes fadeLeftAnime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.p-jp-code .fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  0% {
    transform: translateX(250px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.p-jp-code .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(250px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-jp-code.noanime .p-jp-code__line {
  width: 100%;
}

.p-jp-inst {
  background-image: url(../img/jp/top_bg.webp);
  position: static;
  z-index: -1;
}

.p-jp-inst .p-jp-institem {
  margin: 0 auto;
  padding: 13% 0px 5% 0px;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .p-jp-inst .p-jp-institem {
    padding: 13% 4% 5% 4%;
  }
}
.p-jp-inst .p-jp-institem #sb_instagram.sbi_palette_custom_1 #sbi_load .sbi_follow_btn a:hover {
  background-color: #D9A769 !important;
}

@media screen and (max-width: 667px) {
  #sb_instagram.sbi_mob_col_1 #sbi_images .sbi_item {
    width: 50% !important;
  }
}

#sb_instagram .sbi_follow_btn a:hover,
#sb_instagram .sbi_follow_btn a:focus {
  outline: none;
  box-shadow: inset 0 0 10px 20px #D9A769 !important;
}

/* -------------------------------------------*/
/* code01～code05*/
.p-code-mv {
  width: 100%;
  margin-top: 140px;
  padding: 3% 0px 0px 0px;
}
@media screen and (max-width: 667px) {
  .p-code-mv {
    margin-top: 70px;
  }
}
@media screen and (max-width: 667px) {
  .p-code-mv .sm_none {
    display: none;
  }
}
.p-code-mv .pc_none {
  display: none;
}
@media screen and (max-width: 667px) {
  .p-code-mv .pc_none {
    display: block;
  }
}
.p-code-mv__imgarea {
  display: flex;
}
.p-code-mv__txtarea {
  margin-left: auto;
  text-align: right;
  width: 15%;
  padding: 8% 0px 0px 0px;
  position: relative;
}
@media screen and (max-width: 667px) {
  .p-code-mv__txtarea {
    padding: 14% 0px 0px 0px;
    width: 10%;
  }
}
.p-code-mv__img {
  padding: 0px 0px 0px 0px;
  width: 85%;
}
@media screen and (max-width: 667px) {
  .p-code-mv__img {
    width: 90%;
  }
}
.p-code-mv__txt {
  font-size: 9.7rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #FFF;
  transform: rotate(-90deg);
  position: absolute;
  z-index: 10;
  right: -85%;
}
@media screen and (max-width: 667px) {
  .p-code-mv__txt {
    right: -230%;
    font-size: 4.5rem;
  }
}
.p-code-mv__txt span {
  font-family: "Oswald", sans-serif;
  color: #73B1BF;
  font-size: 13rem;
  font-weight: normal;
}
@media screen and (max-width: 667px) {
  .p-code-mv__txt span {
    font-size: 5rem;
  }
}
.p-code-mv__link {
  position: fixed;
  right: 0;
  top: 75%;
  width: 165px;
  z-index: 9999;
}
@media screen and (max-width: 667px) {
  .p-code-mv__link {
    right: 0;
    top: 85%;
    display: flex;
    width: 100%;
  }
}
.p-code-mv__link li {
  margin: 10% 0px 0px 0px;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-code-mv__link li {
    width: 50%;
  }
}
.p-code-mv__link li:nth-of-type(1) {
  background-color: rgba(46, 46, 46, 0.8);
}
.p-code-mv__link li:nth-of-type(2) {
  background-color: rgba(207, 0, 111, 0.8);
}
.p-code-mv__link li a {
  display: block;
  color: #FFF;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  padding: 7px 0px 7px 0px;
}
.p-code-mv__content {
  max-width: 1200px;
  margin: 3% auto 0px auto;
  padding: 0px 0px 3% 0px;
}
.p-code-mv__content h1 {
  font-size: 4.8rem;
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin: 0px 0px 2% 0px;
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .p-code-mv__content h1 {
    font-size: 3.1rem;
    padding: 0px 4% 0px 4%;
  }
}
.p-code-mv__content h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0px 0px 3em 0px;
  position: relative;
}
@media screen and (max-width: 667px) {
  .p-code-mv__content h2 {
    font-size: 1.8rem;
    padding: 0px 4% 0px 4%;
  }
}
.p-code-mv__content h2::after {
  content: "";
  width: 110px;
  height: 4px;
  display: inline-block;
  background-color: #FFF;
  position: absolute;
  bottom: -25px;
  left: calc(50% - 55px);
}
.p-code-mv__ex {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 667px) {
  .p-code-mv__ex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .p-code-mv__ex {
    padding: 0px 4% 0px 4%;
  }
}
.p-code-mv__ex-img {
  max-width: 426px;
  width: 40%;
}
@media screen and (max-width: 667px) {
  .p-code-mv__ex-img {
    padding: 2% 0px 0px 2%;
    width: 96%;
  }
}
.p-code-mv__ex-txt {
  margin-left: auto;
  width: 60%;
}
@media screen and (max-width: 667px) {
  .p-code-mv__ex-txt {
    margin: 5% 5% 0px 5%;
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .p-code-mv__ex-txt {
    padding: 0px 0px 0px 5%;
  }
}
@media screen and (max-width: 667px) {
  .p-code-mv__ex-txt .sm_none {
    display: none;
  }
}
.p-code-mv__ex-txt p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .p-code-mv__ex-txt p {
    font-size: 1.4rem;
  }
}

.p-code-space {
  height: 100vh;
}

.p-code-imgarea {
  overflow: hidden;
  height: 20vw;
}

.p-code-item01 {
  margin: 5% auto;
  max-width: 1200px;
}
.p-code-item01__imgarea {
  display: flex;
  flex-wrap: wrap;
}
.p-code-item01 .main-img {
  max-width: 850px;
}
@media screen and (max-width: 1024px) {
  .p-code-item01 .main-img {
    width: 90%;
    margin: 0px 5% 1% 5%;
  }
}
.p-code-item01 .sub-img {
  max-width: 305px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .p-code-item01 .sub-img {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.p-code-item01 .sub-img li {
  margin: 0px 0px 6.4% 0px;
}
@media screen and (max-width: 1024px) {
  .p-code-item01 .sub-img li {
    margin: 0px 1% 0px 0px;
    width: 29.3333333333%;
  }
}
.p-code-item01 .sub-img li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 305px;
  height: 176px;
}
@media screen and (max-width: 1024px) {
  .p-code-item01 .sub-img li img {
    width: auto;
    height: auto;
  }
}
.p-code-item01 .sub-img img:hover {
  opacity: 0.7;
}

.p-code-item02 {
  max-width: 1200px;
  margin: 3% auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-code-item02 {
    padding: 0px 4% 0px 4%;
  }
}
@media screen and (max-width: 667px) {
  .p-code-item02 {
    flex-direction: column;
  }
}
.p-code-item02__title {
  width: 20%;
}
@media screen and (max-width: 667px) {
  .p-code-item02__title {
    width: 100%;
    margin: 0px 0px 3% 0px;
  }
}
.p-code-item02__txt01 {
  font-size: 5.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  margin: 0px 0px 0px 0px;
}
@media screen and (max-width: 667px) {
  .p-code-item02__txt01 {
    font-size: 2.8rem;
    text-align: center;
  }
}
.p-code-item02__num {
  font-size: 11rem;
  font-family: "Oswald", sans-serif;
  margin: -10px 0px 0px 0px;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 667px) {
  .p-code-item02__num {
    font-size: 5.7rem;
    text-align: center;
  }
}
.p-code-item02__txt02 {
  font-size: 2.8rem;
  font-family: "Oswald", sans-serif;
  text-align: right;
}
@media screen and (max-width: 667px) {
  .p-code-item02__txt02 {
    font-size: 1.4rem;
    text-align: center;
  }
}
.p-code-item02__txtarea {
  width: 75%;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-code-item02__txtarea {
    width: 90%;
    margin: 0px 5% 0px 5%;
  }
}
@media screen and (max-width: 667px) {
  .p-code-item02__txtarea .sm_none {
    display: none;
  }
}
.p-code-item02__txtarea h3 {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0px 0px 2% 0px;
}
@media screen and (max-width: 667px) {
  .p-code-item02__txtarea h3 {
    font-size: 1.8rem;
  }
}
.p-code-item02__txtarea p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: bold;
}

.p-code-slidearea {
  /* ページネーションの余白 */
  /* ページネーションのサイズと色 */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.p-code-slidearea .swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
}
.p-code-slidearea .swiper-container.slider-main {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.p-code-slidearea .swiper-wrapper.thumb {
  max-width: 1200px;
  flex-wrap: wrap;
}
@media screen and (max-width: 667px) {
  .p-code-slidearea .swiper-wrapper.thumb {
    justify-content: center;
  }
}
.p-code-slidearea .swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
}
.p-code-slidearea .slider-thumbnail {
  display: flex;
  flex-wrap: wrap;
  padding: 5% 0px 5% 0px;
}
@media screen and (max-width: 1024px) {
  .p-code-slidearea .slider-thumbnail {
    padding: 5% 4% 5% 4%;
  }
}
.p-code-slidearea .slider-thumbnail .swiper-slide {
  margin: 0px 2% 2% 0px;
  width: 12.5714285714% !important;
}
@media screen and (max-width: 667px) {
  .p-code-slidearea .slider-thumbnail .swiper-slide {
    width: 29.3333333333% !important;
  }
}
.p-code-slidearea .slider-thumbnail .swiper-slide img {
  width: 147px;
  height: 147px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-code-slidearea .slider-thumbnail .swiper-slide img {
    width: auto;
    height: auto;
  }
}
.p-code-slidearea .slider-thumbnail .swiper-slide:nth-of-type(7n) {
  margin: 0px 0px 2% 0px;
}
@media screen and (max-width: 667px) {
  .p-code-slidearea .slider-thumbnail .swiper-slide:nth-of-type(7n) {
    margin: 0px 2% 2% 0px;
  }
}
.p-code-slidearea .slider-thumbnail .swiper-slide img:hover {
  opacity: 0.7;
}
.p-code-slidearea .swiper-pagination {
  bottom: calc(15px + 1%);
  position: absolute;
  display: flex;
  gap: min(1%, 30px);
  width: 80%;
  max-width: 860px;
  justify-content: space-around;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 667px) {
  .p-code-slidearea .swiper-pagination {
    gap: min(1%, 10px);
    width: 90%;
    bottom: 3%;
  }
}
.p-code-slidearea .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-code-slidearea .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.p-code-slidearea .swiper-pagination-bullet {
  flex: 0 1 20px;
  height: auto;
  aspect-ratio: 1/1;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.6);
}
@media screen and (max-width: 667px) {
  .p-code-slidearea .swiper-pagination-bullet {
    flex: 0 1 10px;
  }
}
.p-code-slidearea .swiper-pagination-bullet-active {
  background-color: #FFF;
}
.p-code-slidearea .swiper-button-prev::after {
  color: #FFF;
}
.p-code-slidearea .swiper-button-next::after {
  color: #FFF;
}

.p-code-info {
  max-width: 1200px;
  margin: 5% auto;
}
@media screen and (max-width: 1024px) {
  .p-code-info {
    padding: 0px 4% 0px 4%;
  }
}
.p-code-info :target::before {
  content: "";
  display: block;
  height: 60px;
  margin: -60px 0 0;
}
.p-code-info__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 667px) {
  .p-code-info__list {
    flex-direction: column;
  }
}
.p-code-info__list li {
  border: solid 2px #73B1BF;
  position: relative;
  margin: 0px 3% 3% 0px;
  width: 22.75%;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (max-width: 667px) {
  .p-code-info__list li {
    width: 86%;
    margin: 0px 7% 3% 7%;
  }
}
.p-code-info__list li:hover {
  color: #FFF;
}
.p-code-info__list li::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.p-code-info__list li:nth-of-type(4n) {
  margin: 0px 0px 3% 0px;
}
@media screen and (max-width: 667px) {
  .p-code-info__list li:nth-of-type(4n) {
    margin: 0px 7% 3% 7%;
  }
}
.p-code-info__list li:hover::after {
  transform: scale(1, 1);
}
.p-code-info__list li a {
  display: block;
  padding: 3%;
}
.p-code-info__txt {
  font-size: 1.6rem;
}
.p-code-info__txt span {
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .p-code-info__txt {
    font-size: 1.5rem;
  }
}
.p-code-info__price {
  font-size: 1.4rem;
  margin: 0px 0px 15% 0px;
}
@media screen and (max-width: 667px) {
  .p-code-info__price {
    margin: 0px 0px 1% 0px;
  }
}
.p-code-info__price span {
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 667px) {
  .p-code-info__price span {
    font-size: 2.4rem;
  }
}
.p-code-info__ico {
  background-color: #73B1BF;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45px;
  padding: 10px 7px 10px 7px;
}

.p-code-mv.p-code-01,
.p-code-slidearea.p-code-01 {
  background-color: #D2E2E5;
}

.p-code-mv.p-code-01 .p-code-mv__txt span,
.p-code-item02.p-code-01 .p-code-item02__num,
.p-code-item02.p-code-01 .p-code-item02__txt02 {
  color: #73B1BF;
}

.p-code-info.p-code-01 .p-code-info__list li {
  border: solid 2px #73B1BF;
}

.p-code-info.p-code-01 .p-code-info__list li::after {
  background-color: #73B1BF;
}

.p-code-info.p-code-01 .p-code-info__ico {
  background-color: #73B1BF;
}

.p-code-mv.p-code-02,
.p-code-slidearea.p-code-02 {
  background-color: #D9C8C0;
}

.p-code-mv.p-code-02 .p-code-mv__txt span,
.p-code-item02.p-code-02 .p-code-item02__num,
.p-code-item02.p-code-02 .p-code-item02__txt02 {
  color: #D17B54;
}

.p-code-info.p-code-02 .p-code-info__list li {
  border: solid 2px #D17B54;
}

.p-code-info.p-code-02 .p-code-info__list li::after {
  background-color: #D17B54;
}

.p-code-info.p-code-02 .p-code-info__ico {
  background-color: #D17B54;
}

.p-code-mv.p-code-03,
.p-code-slidearea.p-code-03 {
  background-color: #D7D8CE;
}

.p-code-mv.p-code-03 .p-code-mv__txt span,
.p-code-item02.p-code-03 .p-code-item02__num,
.p-code-item02.p-code-03 .p-code-item02__txt02 {
  color: #C2CF00;
}

.p-code-info.p-code-03 .p-code-info__list li {
  border: solid 2px #C2CF00;
}

.p-code-info.p-code-03 .p-code-info__list li::after {
  background-color: #C2CF00;
}

.p-code-info.p-code-03 .p-code-info__ico {
  background-color: #C2CF00;
}

.p-code-mv.p-code-04,
.p-code-slidearea.p-code-04 {
  background-color: #D7D8DE;
}

.p-code-mv.p-code-04 .p-code-mv__txt span,
.p-code-item02.p-code-04 .p-code-item02__num,
.p-code-item02.p-code-04 .p-code-item02__txt02 {
  color: #667EB1;
}

.p-code-info.p-code-04 .p-code-info__list li {
  border: solid 2px #667EB1;
}

.p-code-info.p-code-04 .p-code-info__list li::after {
  background-color: #667EB1;
}

.p-code-info.p-code-04 .p-code-info__ico {
  background-color: #667EB1;
}

.p-code-mv.p-code-05,
.p-code-slidearea.p-code-05 {
  background-color: #D6E2D9;
}

.p-code-mv.p-code-05 .p-code-mv__txt span,
.p-code-item02.p-code-05 .p-code-item02__num,
.p-code-item02.p-code-05 .p-code-item02__txt02 {
  color: #569176;
}

.p-code-info.p-code-05 .p-code-info__list li {
  border: solid 2px #569176;
}

.p-code-info.p-code-05 .p-code-info__list li::after {
  background-color: #569176;
}

.p-code-info.p-code-05 .p-code-info__ico {
  background-color: #569176;
}

.p-code-mv.p-code-06,
.p-code-slidearea.p-code-06 {
  background-color: #DDD8D0;
}

.p-code-mv.p-code-06 .p-code-mv__txt span,
.p-code-item02.p-code-06 .p-code-item02__num,
.p-code-item02.p-code-06 .p-code-item02__txt02 {
  color: #D18D1F;
}

.p-code-info.p-code-06 .p-code-info__list li {
  border: solid 2px #D18D1F;
}

.p-code-info.p-code-06 .p-code-info__list li::after {
  background-color: #D18D1F;
}

.p-code-info.p-code-06 .p-code-info__ico {
  background-color: #D18D1F;
}

.p-code-mv.p-code-07,
.p-code-slidearea.p-code-07 {
  background-color: #D8D2D3;
}

.p-code-mv.p-code-07 .p-code-mv__txt span,
.p-code-item02.p-code-07 .p-code-item02__num,
.p-code-item02.p-code-07 .p-code-item02__txt02 {
  color: #BA2A3A;
}

.p-code-info.p-code-07 .p-code-info__list li {
  border: solid 2px #BA2A3A;
}

.p-code-info.p-code-07 .p-code-info__list li::after {
  background-color: #BA2A3A;
}

.p-code-info.p-code-07 .p-code-info__ico {
  background-color: #BA2A3A;
}

.p-code-mv.p-code-08,
.p-code-slidearea.p-code-08 {
  background-color: #D6DFE6;
}

.p-code-mv.p-code-08 .p-code-mv__txt span,
.p-code-item02.p-code-08 .p-code-item02__num,
.p-code-item02.p-code-08 .p-code-item02__txt02 {
  color: #0E75AC;
}

.p-code-info.p-code-08 .p-code-info__list li {
  border: solid 2px #0E75AC;
}

.p-code-info.p-code-08 .p-code-info__list li::after {
  background-color: #0E75AC;
}

.p-code-info.p-code-08 .p-code-info__ico {
  background-color: #0E75AC;
}

.p-code-mv.p-code-09,
.p-code-slidearea.p-code-09 {
  background-color: #E2DEE5;
}

.p-code-mv.p-code-09 .p-code-mv__txt span,
.p-code-item02.p-code-09 .p-code-item02__num,
.p-code-item02.p-code-09 .p-code-item02__txt02 {
  color: #96538F;
}

.p-code-info.p-code-09 .p-code-info__list li {
  border: solid 2px #96538F;
}

.p-code-info.p-code-09 .p-code-info__list li::after {
  background-color: #96538F;
}

.p-code-info.p-code-09 .p-code-info__ico {
  background-color: #96538F;
}

.p-code-mv.p-code-10,
.p-code-slidearea.p-code-10 {
  background-color: #E9EDE1;
}

.p-code-mv.p-code-10 .p-code-mv__txt span,
.p-code-item02.p-code-10 .p-code-item02__num,
.p-code-item02.p-code-10 .p-code-item02__txt02 {
  color: #39A94D;
}

.p-code-info.p-code-10 .p-code-info__list li {
  border: solid 2px #39A94D;
}

.p-code-info.p-code-10 .p-code-info__list li::after {
  background-color: #39A94D;
}

.p-code-info.p-code-10 .p-code-info__ico {
  background-color: #39A94D;
}

.p-code-mv.p-code-11,
.p-code-slidearea.p-code-11 {
  background-color: #E5D9E0;
}

.p-code-mv.p-code-11 .p-code-mv__txt span,
.p-code-item02.p-code-11 .p-code-item02__num,
.p-code-item02.p-code-11 .p-code-item02__txt02 {
  color: #E24581;
}

.p-code-info.p-code-11 .p-code-info__list li {
  border: solid 2px #E24581;
}

.p-code-info.p-code-11 .p-code-info__list li::after {
  background-color: #E24581;
}

.p-code-info.p-code-11 .p-code-info__ico {
  background-color: #E24581;
}

.p-code-mv.p-code-12,
.p-code-slidearea.p-code-12 {
  background-color: #CFDFE0;
}

.p-code-mv.p-code-12 .p-code-mv__txt span,
.p-code-item02.p-code-12 .p-code-item02__num,
.p-code-item02.p-code-12 .p-code-item02__txt02 {
  color: #3C988D;
}

.p-code-info.p-code-12 .p-code-info__list li {
  border: solid 2px #3C988D;
}

.p-code-info.p-code-12 .p-code-info__list li::after {
  background-color: #3C988D;
}

.p-code-info.p-code-12 .p-code-info__ico {
  background-color: #3C988D;
}

.p-code-mv.p-code-13,
.p-code-slidearea.p-code-13 {
  background-color: #EAE7D6;
}

.p-code-mv.p-code-13 .p-code-mv__txt span,
.p-code-item02.p-code-13 .p-code-item02__num,
.p-code-item02.p-code-13 .p-code-item02__txt02 {
  color: #D9B22E;
}

.p-code-info.p-code-13 .p-code-info__list li {
  border: solid 2px #D9B22E;
}

.p-code-info.p-code-13 .p-code-info__list li::after {
  background-color: #D9B22E;
}

.p-code-info.p-code-13 .p-code-info__ico {
  background-color: #D9B22E;
}

.p-code-mv.p-code-14,
.p-code-slidearea.p-code-14 {
  background-color: #E5DBD6;
}

.p-code-mv.p-code-14 .p-code-mv__txt span,
.p-code-item02.p-code-14 .p-code-item02__num,
.p-code-item02.p-code-14 .p-code-item02__txt02 {
  color: #D95C2E;
}

.p-code-info.p-code-14 .p-code-info__list li {
  border: solid 2px #D95C2E;
}

.p-code-info.p-code-14 .p-code-info__list li::after {
  background-color: #D95C2E;
}

.p-code-info.p-code-14 .p-code-info__ico {
  background-color: #D95C2E;
}

.p-code-mv.p-code-15,
.p-code-slidearea.p-code-15 {
  background-color: #DDE0D4;
}

.p-code-mv.p-code-15 .p-code-mv__txt span,
.p-code-item02.p-code-15 .p-code-item02__num,
.p-code-item02.p-code-15 .p-code-item02__txt02 {
  color: #85B742;
}

.p-code-info.p-code-15 .p-code-info__list li {
  border: solid 2px #85B742;
}

.p-code-info.p-code-15 .p-code-info__list li::after {
  background-color: #85B742;
}

.p-code-info.p-code-15 .p-code-info__ico {
  background-color: #85B742;
}

.p-code-mv.p-code-16,
.p-code-slidearea.p-code-16 {
  background-color: #E6DFDF;
}

.p-code-mv.p-code-16 .p-code-mv__txt span,
.p-code-item02.p-code-16 .p-code-item02__num,
.p-code-item02.p-code-16 .p-code-item02__txt02 {
  color: #D65998;
}

.p-code-info.p-code-16 .p-code-info__list li {
  border: solid 2px #D65998;
}

.p-code-info.p-code-16 .p-code-info__list li::after {
  background-color: #D65998;
}

.p-code-info.p-code-16 .p-code-info__ico {
  background-color: #D65998;
}

.p-code-mv.p-code-17,
.p-code-slidearea.p-code-17 {
  background-color: #DBDEE5;
}

.p-code-mv.p-code-17 .p-code-mv__txt span,
.p-code-item02.p-code-17 .p-code-item02__num,
.p-code-item02.p-code-17 .p-code-item02__txt02 {
  color: #596CD6;
}

.p-code-info.p-code-17 .p-code-info__list li {
  border: solid 2px #596CD6;
}

.p-code-info.p-code-17 .p-code-info__list li::after {
  background-color: #596CD6;
}

.p-code-info.p-code-17 .p-code-info__ico {
  background-color: #596CD6;
}

.p-code-mv.p-code-18,
.p-code-slidearea.p-code-18 {
  background-color: #E2DCCF;
}

.p-code-mv.p-code-18 .p-code-mv__txt span,
.p-code-item02.p-code-18 .p-code-item02__num,
.p-code-item02.p-code-18 .p-code-item02__txt02 {
  color: #F07D33;
}

.p-code-info.p-code-18 .p-code-info__list li {
  border: solid 2px #F07D33;
}

.p-code-info.p-code-18 .p-code-info__list li::after {
  background-color: #F07D33;
}

.p-code-info.p-code-18 .p-code-info__ico {
  background-color: #F07D33;
}

.p-code-mv.p-code-19,
.p-code-slidearea.p-code-19 {
  background-color: #D9D0D0;
}

.p-code-mv.p-code-19 .p-code-mv__txt span,
.p-code-item02.p-code-19 .p-code-item02__num,
.p-code-item02.p-code-19 .p-code-item02__txt02 {
  color: #F25743;
}

.p-code-info.p-code-19 .p-code-info__list li {
  border: solid 2px #F25743;
}

.p-code-info.p-code-19 .p-code-info__list li::after {
  background-color: #F25743;
}

.p-code-info.p-code-19 .p-code-info__ico {
  background-color: #F25743;
}

.p-code-mv.p-code-20,
.p-code-slidearea.p-code-20 {
  background-color: #D3D4E0;
}

.p-code-mv.p-code-20 .p-code-mv__txt span,
.p-code-item02.p-code-20 .p-code-item02__num,
.p-code-item02.p-code-20 .p-code-item02__txt02 {
  color: #9D42D6;
}

.p-code-info.p-code-20 .p-code-info__list li {
  border: solid 2px #9D42D6;
}

.p-code-info.p-code-20 .p-code-info__list li::after {
  background-color: #9D42D6;
}

.p-code-info.p-code-20 .p-code-info__ico {
  background-color: #9D42D6;
}

.p-code-mv.p-code-21,
.p-code-slidearea.p-code-21 {
  background-color: #D2D8E3;
}

.p-code-mv.p-code-21 .p-code-mv__txt span,
.p-code-item02.p-code-21 .p-code-item02__num,
.p-code-item02.p-code-21 .p-code-item02__txt02 {
  color: #42A8D6;
}

.p-code-info.p-code-21 .p-code-info__list li {
  border: solid 2px #42A8D6;
}

.p-code-info.p-code-21 .p-code-info__list li::after {
  background-color: #42A8D6;
}

.p-code-info.p-code-21 .p-code-info__ico {
  background-color: #42A8D6;
}

.p-code-mv.p-code-22,
.p-code-slidearea.p-code-22 {
  background-color: #DED4CD;
}

.p-code-mv.p-code-22 .p-code-mv__txt span,
.p-code-item02.p-code-22 .p-code-item02__num,
.p-code-item02.p-code-22 .p-code-item02__txt02 {
  color: #E23333;
}

.p-code-info.p-code-22 .p-code-info__list li {
  border: solid 2px #E23333;
}

.p-code-info.p-code-22 .p-code-info__list li::after {
  background-color: #E23333;
}

.p-code-info.p-code-22 .p-code-info__ico {
  background-color: #E23333;
}

.p-code-mv.p-code-23,
.p-code-slidearea.p-code-23 {
  background-color: #D6D6D6;
}

.p-code-mv.p-code-23 .p-code-mv__txt span,
.p-code-item02.p-code-23 .p-code-item02__num,
.p-code-item02.p-code-23 .p-code-item02__txt02 {
  color: #FFA700;
}

.p-code-info.p-code-23 .p-code-info__list li {
  border: solid 2px #FFA700;
}

.p-code-info.p-code-23 .p-code-info__list li::after {
  background-color: #FFA700;
}

.p-code-info.p-code-23 .p-code-info__ico {
  background-color: #FFA700;
}

/*フッターまでスクロールしたら消す*/
@media screen and (max-width: 667px) {
  .p-code-mv__linkbox {
    transition: 0.5s;
  }
}

@media screen and (max-width: 667px) {
  .is-hidden {
    visibility: hidden;
    opacity: 0;
  }
}

/* -------------------------------------------*/
/*contact*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

.p-contact-mv {
  width: 100%;
  margin: 170px 0px 2% 0px;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-contact-mv {
    margin: 120px 0px 5% 0px;
  }
}
.p-contact-mv_ico {
  margin: 5% 0px 5% 0px;
}
.p-contact-mv h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 5.1rem;
}
@media screen and (max-width: 667px) {
  .p-contact-mv h1 {
    font-size: 3rem;
  }
}
.p-contact-mv h2 {
  font-size: 2.2rem;
  margin: 0px 0px 1% 0px;
}
.p-contact-mv__txt {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0px 0px 3% 0px;
}
@media screen and (max-width: 667px) {
  .p-contact-mv__txt {
    margin: 0px 3% 3% 3%;
  }
}

.p-contact-wrap {
  max-width: 1000px;
  margin: 0 auto 3% auto;
}
@media screen and (max-width: 667px) {
  .p-contact-wrap {
    margin: 0px 6% 3% 6%;
  }
}
.p-contact-wrap h3 {
  font-size: 2rem;
  color: #BF9056;
  border-bottom: solid 2px #BF9056;
  padding: 0px 0px 1% 5%;
  margin: 0px 0px 5% 0px;
}

.p-contact-item {
  display: flex;
  align-items: center;
  margin: 0px 0px 2% 5%;
  font-size: 1.5rem;
}
@media screen and (max-width: 667px) {
  .p-contact-item {
    flex-wrap: wrap;
  }
}
.p-contact-item input::-moz-placeholder, .p-contact-item textarea::-moz-placeholder {
  color: #e0e0e0;
}
.p-contact-item input::placeholder,
.p-contact-item textarea::placeholder {
  color: #e0e0e0;
}
.p-contact-item__name {
  font-size: 1.5rem;
  width: 30%;
  font-weight: bold;
}
@media screen and (max-width: 667px) {
  .p-contact-item__name {
    width: auto;
    margin: 0px 2% 1% 0px;
  }
}
.p-contact-item__ex {
  font-size: 1.4rem;
  margin: 1% 0px 0px 3%;
}
.p-contact-item__required {
  font-size: 1.3rem;
  padding: 2%;
  color: #FFF;
  background-color: #D85F6D;
  text-align: center;
}
.p-contact-item__re {
  width: 4%;
}
@media screen and (max-width: 667px) {
  .p-contact-item__re {
    width: 10%;
    margin: 0px 0px 1% 0px;
  }
}
.p-contact-item__input {
  width: 60%;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-contact-item__input {
    width: 100%;
    margin: 0px 0px 3% 0px;
  }
}
.p-contact-item__input textarea {
  border: solid 1px #A8A8A8;
  font-size: 1.5rem;
  border-radius: 0;
}
.p-contact-item__input input[type=text],
.p-contact-item__input input[type=email] {
  border: solid 1px #A8A8A8;
  font-size: 1.5rem;
  padding: 1%;
  border-radius: 0;
}
.p-contact-item__input select {
  border: solid 1px #A8A8A8;
  font-size: 1.5rem;
  padding: 1%;
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}
.p-contact-item__input__name {
  display: flex;
  align-items: center;
  margin: 0px 0px 0px 0px;
}
.p-contact-item__input__name p {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-contact-item__input__name input[type=text] {
  width: 20%;
  margin: 0px 2% 0px 2%;
}
@media screen and (max-width: 667px) {
  .p-contact-item__input__name input[type=text] {
    width: 30%;
  }
}
.p-contact-item__input__address input:nth-of-type(1) {
  margin: 3% 0px 3% 0px;
}

.p-contact-foot {
  background-color: #EDE1D2;
  padding: 0px 0px 5% 0px;
}
@media screen and (max-width: 667px) {
  .p-contact-foot {
    padding: 0px 6% 5% 5%;
  }
}
.p-contact-foot__item {
  max-width: 900px;
  margin: 0 auto;
}
.p-contact-foot__item h4 {
  font-size: 2rem;
  text-align: center;
  padding: 5% 0px 3% 0px;
}
.p-contact-foot__privacy {
  background-color: #FFF;
  overflow-y: auto;
  height: 200px;
  padding: 2%;
}
.p-contact-foot__privacy p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0px 0px 2% 0px;
}
.p-contact-foot__privacy p:last-child {
  margin: 0;
}
.p-contact-foot__privacy ol {
  line-height: 1.8;
  font-size: 1.4rem;
  margin: 0px 0px 2% 0px;
}
.p-contact-foot__privacy h5 {
  font-size: 1.8rem;
  color: #BF9056;
  margin: 0px 0px 1% 0px;
}
.p-contact-foot__btn {
  display: flex;
  justify-content: center;
  padding: 5% 0px 0px 0px;
}
.p-contact-foot__btn input[type=submit] {
  background-color: #BF9056;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
  width: 30%;
  padding: 2% 0px 2% 0px;
  margin: 0px 1% 0px 1%;
  cursor: pointer;
}
@media screen and (max-width: 667px) {
  .p-contact-foot__btn input[type=submit] {
    width: 40%;
  }
}
.p-contact-foot__btn input[type=submit].back {
  background-color: #A8A8A8;
}

.mw_wp_form_preview .p-contact-foot__prarea,
.mw_wp_form_preview .p-contact-item .name,
.mw_wp_form_preview .p-contact-item__ex {
  display: none;
}

.p-contact-complete {
  max-width: 900px;
  margin: 3% auto 20% auto;
}
.p-contact-complete p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-contact-complete p {
    padding: 0px 6% 0px 6%;
    font-size: 1.4rem;
  }
}

.en-page .p-contact-item__re {
  width: 7%;
  min-width: 6rem;
}
@media screen and (max-width: 667px) {
  .en-page .p-contact-item__re {
    width: 13%;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
html {
  font-size: 62.5%;
}

.p-privacy-mv {
  width: 100%;
  margin: 170px auto 2% auto;
  max-width: 1000px;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-privacy-mv {
    margin: 120px auto 2% auto;
  }
}
.p-privacy-mv h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 5.1rem;
}
@media screen and (max-width: 667px) {
  .p-privacy-mv h1 {
    font-size: 3rem;
  }
}
.p-privacy-mv h2 {
  font-size: 2.2rem;
  margin: 0px 0px 1% 0px;
}
.p-privacy-mv__txt {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0px 0px 5% 0px;
  text-align: left;
}
@media screen and (max-width: 667px) {
  .p-privacy-mv__txt {
    margin: 0px 6% 5% 6%;
  }
}

.p-privacy-content {
  max-width: 1000px;
  margin: 0 auto 5% auto;
}
@media screen and (max-width: 667px) {
  .p-privacy-content {
    margin: 0 6% 10% 6%;
  }
}
.p-privacy-content h3 {
  font-size: 2rem;
  color: #BF9056;
  border-bottom: solid 2px #BF9056;
  padding: 0px 0px 1% 5%;
  margin: 0px 0px 2% 0px;
}
.p-privacy-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0px 0px 3% 0px;
}
.p-privacy-content a {
  text-decoration: underline;
}
.p-privacy-content__item {
  margin: 0px 0px 3% 0px;
}
.p-privacy-content ol {
  line-height: 1.8;
  list-style-type: decimal;
  padding: 0px 0px 3% 4%;
}
.p-privacy-content ol li {
  font-size: 1.4rem;
}

.en-page .p-privacy-content h2 {
  font-size: 2rem;
  color: #BF9056;
  border-bottom: solid 2px #BF9056;
  padding: 0px 0px 1% 5%;
  margin: 0px 0px 2% 0px;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
html {
  font-size: 62.5%;
}

.p-404-mv {
  width: 100%;
  margin: 230px auto 7% auto;
  max-width: 1000px;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-404-mv {
    margin: 120px auto 2% auto;
  }
}
.p-404-mv h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 13.7rem;
  color: #BF9056;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin: 0pc 0px 1% 0px;
}
@media screen and (max-width: 667px) {
  .p-404-mv h1 {
    font-size: 8rem;
  }
}
.p-404-mv h2 {
  font-size: 4rem;
  margin: 0px 0px 3% 0px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.p-404-mv__txt {
  font-size: 1.8rem;
  line-height: 2;
  margin: 0px 0px 3% 0px;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-404-mv__txt {
    margin: 0px 6% 5% 6%;
  }
}
.p-404-mv__btn a {
  background-color: #D9A769;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-block;
  padding: 1% 7% 1% 7%;
  color: #FFF;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* component/_sale-bar.scss */
.sale-bar {
	position: fixed;
	top: 115px;
	left:0;
  width: 100%;
  height: 100px;
  background-color: #770000;
  display: flex;
  justify-content: center;
  align-items: center;
	z-index: 99999;
}
.sale-bar a {
  display: block;
  width: 100%;
  height: 100%;
}
.sale-bar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-jp-code__wrap {
	position: absolute;
	top: auto !important;
    right: 20px;
    bottom: 0 !important;
    width: auto;
    height: auto;
    text-align: right;
	
/*     position: absolute;
    right: 10%;
    top: 10%;
    height: 100%;
    width: auto;
    text-align: right; */
}

.p-jp-code__line {
    opacity: 0.9;
    width: 400%;
    height: 2px;
    display: block;
    margin: 0;
}

.p-jp-code .p-jp-code__line {
  border-bottom: 2px solid #fff !important;
}

.p-jp-code__text {
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0.2rem;
}
.p-jp-code .p-jp-code__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: 10px 0;
}

.p-jp-code .p-jp-code__wrap * {
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.p-jp-code__num {
    font-size: 4rem;
    font-family: "Oswald", sans-serif;
    line-height: 1;
    color: #FFF;
    margin: 10px 0;;
    display: block;
}

.p-jp-code__txt,
.p-jp-code__num,
.p-jp-code__text {
	text-shadow: 0 2px 7px rgba(0, 0, 0, 1.5);	
}

.p-jp-code__txt {
    font-size: 2.4rem;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    display: flex;
	align-items: flex-end;
    white-space: nowrap;  /* ← これが重要！ 改行を禁止する */
    gap: 0.25em;
}

@media screen and (min-width: 768px) {
.p-jp-code__num {
    font-size: 7rem;
}

.p-jp-code__txt {
    font-size: 4.4rem;
	}
	
.p-jp-code__text {
	font-size: 1.6rem;
}
	
}


/*# sourceMappingURL=style_all.css.map */