@charset "UTF-8";
.slide-in {
  overflow: hidden;
  display: inline-block;
}

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

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ccab68;
  /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.01% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* fadeIn */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger {
  opacity: 0;
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.relative_box {
  position: relative;
}

.content {
  display: none;
}

.content.show {
  display: block;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

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

h1, h2, h3, h4, h5 {
  margin: 0;
}

figure {
  margin: 0;
}

p {
  margin: 0;
}

dd {
  margin: 0;
}

html {
  font-size: calc(100vw / (1440 / 10));
}

* {
  box-sizing: border-box;
}

body {
  color: #030303;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  width: 100%;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  color: #030303;
}
img {
  vertical-align: center;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
}

a {
  color: #030303;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width:767px) {
  .wrap {
    overflow-x: hidden;
  }
}

.text--bg {
  background-color: #efefef;
  padding: 24px 80px;
  font-size: 2rem;
  width: 95%;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .text--bg {
    padding: 24px 16px;
    width: 100%;
  }
}

.text__bg--white {
  background-color: #fff;
  padding: 80px 40px;
}
@media only screen and (max-width:767px) {
  .text__bg--white {
    padding: 40px 16px;
  }
}

.map {
  height: 0;
  overflow: hidden;
  padding-bottom: 36.25%;
  position: relative;
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.d-flex {
  display: flex;
}

.u-hidden {
  display: none !important;
}

.u-hidden--sp {
  display: none !important;
}
@media only screen and (max-width:767px) {
  .u-hidden--sp {
    display: block !important;
  }
}

.u-hidden--pc {
  display: block !important;
}
@media only screen and (max-width:767px) {
  .u-hidden--pc {
    display: none !important;
  }
}

.u-left {
  text-align: left;
}

@media print, only screen and (min-width:768px) {
  .u-left--pc {
    text-align: left;
  }
}

@media only screen and (max-width:767px) {
  .u-left--sp {
    text-align: left;
  }
}

.u-center {
  text-align: center;
}

@media print, only screen and (min-width:768px) {
  .u-center--pc {
    text-align: center;
  }
}

@media only screen and (max-width:767px) {
  .u-center--sp {
    text-align: center;
  }
}

.u-right {
  text-align: right;
}

@media print, only screen and (min-width:768px) {
  .u-right--pc {
    text-align: right;
  }
}

@media only screen and (max-width:767px) {
  .u-right--sp {
    text-align: right;
  }
}

.u-mb-0 {
  margin-bottom: 0px;
}

.u-mt-0 {
  margin-top: 0px;
}

.u-ml-0 {
  margin-left: 0px;
}

.u-mr-0 {
  margin-right: 0px;
}

@media only screen and (max-width:767px) {
  .u-mb-0--sp {
    margin-bottom: 0px;
  }

  .u-mt-0--sp {
    margin-top: 0px;
  }

  .u-ml-0--sp {
    margin-left: 0px;
  }

  .u-mr-0--sp {
    margin-right: 0px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-0--pc {
    margin-bottom: 0px;
  }

  .u-mt-0--pc {
    margin-top: 0px;
  }

  .u-ml-0--pc {
    margin-left: 0px;
  }

  .u-mr-0--pc {
    margin-right: 0px;
  }
}
.u-mb-1 {
  margin-bottom: 1px;
}

.u-mt-1 {
  margin-top: 1px;
}

.u-ml-1 {
  margin-left: 1px;
}

.u-mr-1 {
  margin-right: 1px;
}

@media only screen and (max-width:767px) {
  .u-mb-1--sp {
    margin-bottom: 1px;
  }

  .u-mt-1--sp {
    margin-top: 1px;
  }

  .u-ml-1--sp {
    margin-left: 1px;
  }

  .u-mr-1--sp {
    margin-right: 1px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-1--pc {
    margin-bottom: 1px;
  }

  .u-mt-1--pc {
    margin-top: 1px;
  }

  .u-ml-1--pc {
    margin-left: 1px;
  }

  .u-mr-1--pc {
    margin-right: 1px;
  }
}
.u-mb-2 {
  margin-bottom: 2px;
}

.u-mt-2 {
  margin-top: 2px;
}

.u-ml-2 {
  margin-left: 2px;
}

.u-mr-2 {
  margin-right: 2px;
}

@media only screen and (max-width:767px) {
  .u-mb-2--sp {
    margin-bottom: 2px;
  }

  .u-mt-2--sp {
    margin-top: 2px;
  }

  .u-ml-2--sp {
    margin-left: 2px;
  }

  .u-mr-2--sp {
    margin-right: 2px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-2--pc {
    margin-bottom: 2px;
  }

  .u-mt-2--pc {
    margin-top: 2px;
  }

  .u-ml-2--pc {
    margin-left: 2px;
  }

  .u-mr-2--pc {
    margin-right: 2px;
  }
}
.u-mb-3 {
  margin-bottom: 3px;
}

.u-mt-3 {
  margin-top: 3px;
}

.u-ml-3 {
  margin-left: 3px;
}

.u-mr-3 {
  margin-right: 3px;
}

@media only screen and (max-width:767px) {
  .u-mb-3--sp {
    margin-bottom: 3px;
  }

  .u-mt-3--sp {
    margin-top: 3px;
  }

  .u-ml-3--sp {
    margin-left: 3px;
  }

  .u-mr-3--sp {
    margin-right: 3px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-3--pc {
    margin-bottom: 3px;
  }

  .u-mt-3--pc {
    margin-top: 3px;
  }

  .u-ml-3--pc {
    margin-left: 3px;
  }

  .u-mr-3--pc {
    margin-right: 3px;
  }
}
.u-mb-4 {
  margin-bottom: 4px;
}

.u-mt-4 {
  margin-top: 4px;
}

.u-ml-4 {
  margin-left: 4px;
}

.u-mr-4 {
  margin-right: 4px;
}

@media only screen and (max-width:767px) {
  .u-mb-4--sp {
    margin-bottom: 4px;
  }

  .u-mt-4--sp {
    margin-top: 4px;
  }

  .u-ml-4--sp {
    margin-left: 4px;
  }

  .u-mr-4--sp {
    margin-right: 4px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-4--pc {
    margin-bottom: 4px;
  }

  .u-mt-4--pc {
    margin-top: 4px;
  }

  .u-ml-4--pc {
    margin-left: 4px;
  }

  .u-mr-4--pc {
    margin-right: 4px;
  }
}
.u-mb-5 {
  margin-bottom: 5px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-ml-5 {
  margin-left: 5px;
}

.u-mr-5 {
  margin-right: 5px;
}

@media only screen and (max-width:767px) {
  .u-mb-5--sp {
    margin-bottom: 5px;
  }

  .u-mt-5--sp {
    margin-top: 5px;
  }

  .u-ml-5--sp {
    margin-left: 5px;
  }

  .u-mr-5--sp {
    margin-right: 5px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-5--pc {
    margin-bottom: 5px;
  }

  .u-mt-5--pc {
    margin-top: 5px;
  }

  .u-ml-5--pc {
    margin-left: 5px;
  }

  .u-mr-5--pc {
    margin-right: 5px;
  }
}
.u-mb-6 {
  margin-bottom: 6px;
}

.u-mt-6 {
  margin-top: 6px;
}

.u-ml-6 {
  margin-left: 6px;
}

.u-mr-6 {
  margin-right: 6px;
}

@media only screen and (max-width:767px) {
  .u-mb-6--sp {
    margin-bottom: 6px;
  }

  .u-mt-6--sp {
    margin-top: 6px;
  }

  .u-ml-6--sp {
    margin-left: 6px;
  }

  .u-mr-6--sp {
    margin-right: 6px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-6--pc {
    margin-bottom: 6px;
  }

  .u-mt-6--pc {
    margin-top: 6px;
  }

  .u-ml-6--pc {
    margin-left: 6px;
  }

  .u-mr-6--pc {
    margin-right: 6px;
  }
}
.u-mb-7 {
  margin-bottom: 7px;
}

.u-mt-7 {
  margin-top: 7px;
}

.u-ml-7 {
  margin-left: 7px;
}

.u-mr-7 {
  margin-right: 7px;
}

@media only screen and (max-width:767px) {
  .u-mb-7--sp {
    margin-bottom: 7px;
  }

  .u-mt-7--sp {
    margin-top: 7px;
  }

  .u-ml-7--sp {
    margin-left: 7px;
  }

  .u-mr-7--sp {
    margin-right: 7px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-7--pc {
    margin-bottom: 7px;
  }

  .u-mt-7--pc {
    margin-top: 7px;
  }

  .u-ml-7--pc {
    margin-left: 7px;
  }

  .u-mr-7--pc {
    margin-right: 7px;
  }
}
.u-mb-8 {
  margin-bottom: 8px;
}

.u-mt-8 {
  margin-top: 8px;
}

.u-ml-8 {
  margin-left: 8px;
}

.u-mr-8 {
  margin-right: 8px;
}

@media only screen and (max-width:767px) {
  .u-mb-8--sp {
    margin-bottom: 8px;
  }

  .u-mt-8--sp {
    margin-top: 8px;
  }

  .u-ml-8--sp {
    margin-left: 8px;
  }

  .u-mr-8--sp {
    margin-right: 8px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-8--pc {
    margin-bottom: 8px;
  }

  .u-mt-8--pc {
    margin-top: 8px;
  }

  .u-ml-8--pc {
    margin-left: 8px;
  }

  .u-mr-8--pc {
    margin-right: 8px;
  }
}
.u-mb-9 {
  margin-bottom: 9px;
}

.u-mt-9 {
  margin-top: 9px;
}

.u-ml-9 {
  margin-left: 9px;
}

.u-mr-9 {
  margin-right: 9px;
}

@media only screen and (max-width:767px) {
  .u-mb-9--sp {
    margin-bottom: 9px;
  }

  .u-mt-9--sp {
    margin-top: 9px;
  }

  .u-ml-9--sp {
    margin-left: 9px;
  }

  .u-mr-9--sp {
    margin-right: 9px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-9--pc {
    margin-bottom: 9px;
  }

  .u-mt-9--pc {
    margin-top: 9px;
  }

  .u-ml-9--pc {
    margin-left: 9px;
  }

  .u-mr-9--pc {
    margin-right: 9px;
  }
}
.u-mb-10 {
  margin-bottom: 10px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-mr-10 {
  margin-right: 10px;
}

@media only screen and (max-width:767px) {
  .u-mb-10--sp {
    margin-bottom: 10px;
  }

  .u-mt-10--sp {
    margin-top: 10px;
  }

  .u-ml-10--sp {
    margin-left: 10px;
  }

  .u-mr-10--sp {
    margin-right: 10px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-10--pc {
    margin-bottom: 10px;
  }

  .u-mt-10--pc {
    margin-top: 10px;
  }

  .u-ml-10--pc {
    margin-left: 10px;
  }

  .u-mr-10--pc {
    margin-right: 10px;
  }
}
.u-mb-11 {
  margin-bottom: 11px;
}

.u-mt-11 {
  margin-top: 11px;
}

.u-ml-11 {
  margin-left: 11px;
}

.u-mr-11 {
  margin-right: 11px;
}

@media only screen and (max-width:767px) {
  .u-mb-11--sp {
    margin-bottom: 11px;
  }

  .u-mt-11--sp {
    margin-top: 11px;
  }

  .u-ml-11--sp {
    margin-left: 11px;
  }

  .u-mr-11--sp {
    margin-right: 11px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-11--pc {
    margin-bottom: 11px;
  }

  .u-mt-11--pc {
    margin-top: 11px;
  }

  .u-ml-11--pc {
    margin-left: 11px;
  }

  .u-mr-11--pc {
    margin-right: 11px;
  }
}
.u-mb-12 {
  margin-bottom: 12px;
}

.u-mt-12 {
  margin-top: 12px;
}

.u-ml-12 {
  margin-left: 12px;
}

.u-mr-12 {
  margin-right: 12px;
}

@media only screen and (max-width:767px) {
  .u-mb-12--sp {
    margin-bottom: 12px;
  }

  .u-mt-12--sp {
    margin-top: 12px;
  }

  .u-ml-12--sp {
    margin-left: 12px;
  }

  .u-mr-12--sp {
    margin-right: 12px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-12--pc {
    margin-bottom: 12px;
  }

  .u-mt-12--pc {
    margin-top: 12px;
  }

  .u-ml-12--pc {
    margin-left: 12px;
  }

  .u-mr-12--pc {
    margin-right: 12px;
  }
}
.u-mb-13 {
  margin-bottom: 13px;
}

.u-mt-13 {
  margin-top: 13px;
}

.u-ml-13 {
  margin-left: 13px;
}

.u-mr-13 {
  margin-right: 13px;
}

@media only screen and (max-width:767px) {
  .u-mb-13--sp {
    margin-bottom: 13px;
  }

  .u-mt-13--sp {
    margin-top: 13px;
  }

  .u-ml-13--sp {
    margin-left: 13px;
  }

  .u-mr-13--sp {
    margin-right: 13px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-13--pc {
    margin-bottom: 13px;
  }

  .u-mt-13--pc {
    margin-top: 13px;
  }

  .u-ml-13--pc {
    margin-left: 13px;
  }

  .u-mr-13--pc {
    margin-right: 13px;
  }
}
.u-mb-14 {
  margin-bottom: 14px;
}

.u-mt-14 {
  margin-top: 14px;
}

.u-ml-14 {
  margin-left: 14px;
}

.u-mr-14 {
  margin-right: 14px;
}

@media only screen and (max-width:767px) {
  .u-mb-14--sp {
    margin-bottom: 14px;
  }

  .u-mt-14--sp {
    margin-top: 14px;
  }

  .u-ml-14--sp {
    margin-left: 14px;
  }

  .u-mr-14--sp {
    margin-right: 14px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-14--pc {
    margin-bottom: 14px;
  }

  .u-mt-14--pc {
    margin-top: 14px;
  }

  .u-ml-14--pc {
    margin-left: 14px;
  }

  .u-mr-14--pc {
    margin-right: 14px;
  }
}
.u-mb-15 {
  margin-bottom: 15px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-ml-15 {
  margin-left: 15px;
}

.u-mr-15 {
  margin-right: 15px;
}

@media only screen and (max-width:767px) {
  .u-mb-15--sp {
    margin-bottom: 15px;
  }

  .u-mt-15--sp {
    margin-top: 15px;
  }

  .u-ml-15--sp {
    margin-left: 15px;
  }

  .u-mr-15--sp {
    margin-right: 15px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-15--pc {
    margin-bottom: 15px;
  }

  .u-mt-15--pc {
    margin-top: 15px;
  }

  .u-ml-15--pc {
    margin-left: 15px;
  }

  .u-mr-15--pc {
    margin-right: 15px;
  }
}
.u-mb-16 {
  margin-bottom: 16px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-ml-16 {
  margin-left: 16px;
}

.u-mr-16 {
  margin-right: 16px;
}

@media only screen and (max-width:767px) {
  .u-mb-16--sp {
    margin-bottom: 16px;
  }

  .u-mt-16--sp {
    margin-top: 16px;
  }

  .u-ml-16--sp {
    margin-left: 16px;
  }

  .u-mr-16--sp {
    margin-right: 16px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-16--pc {
    margin-bottom: 16px;
  }

  .u-mt-16--pc {
    margin-top: 16px;
  }

  .u-ml-16--pc {
    margin-left: 16px;
  }

  .u-mr-16--pc {
    margin-right: 16px;
  }
}
.u-mb-17 {
  margin-bottom: 17px;
}

.u-mt-17 {
  margin-top: 17px;
}

.u-ml-17 {
  margin-left: 17px;
}

.u-mr-17 {
  margin-right: 17px;
}

@media only screen and (max-width:767px) {
  .u-mb-17--sp {
    margin-bottom: 17px;
  }

  .u-mt-17--sp {
    margin-top: 17px;
  }

  .u-ml-17--sp {
    margin-left: 17px;
  }

  .u-mr-17--sp {
    margin-right: 17px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-17--pc {
    margin-bottom: 17px;
  }

  .u-mt-17--pc {
    margin-top: 17px;
  }

  .u-ml-17--pc {
    margin-left: 17px;
  }

  .u-mr-17--pc {
    margin-right: 17px;
  }
}
.u-mb-18 {
  margin-bottom: 18px;
}

.u-mt-18 {
  margin-top: 18px;
}

.u-ml-18 {
  margin-left: 18px;
}

.u-mr-18 {
  margin-right: 18px;
}

@media only screen and (max-width:767px) {
  .u-mb-18--sp {
    margin-bottom: 18px;
  }

  .u-mt-18--sp {
    margin-top: 18px;
  }

  .u-ml-18--sp {
    margin-left: 18px;
  }

  .u-mr-18--sp {
    margin-right: 18px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-18--pc {
    margin-bottom: 18px;
  }

  .u-mt-18--pc {
    margin-top: 18px;
  }

  .u-ml-18--pc {
    margin-left: 18px;
  }

  .u-mr-18--pc {
    margin-right: 18px;
  }
}
.u-mb-19 {
  margin-bottom: 19px;
}

.u-mt-19 {
  margin-top: 19px;
}

.u-ml-19 {
  margin-left: 19px;
}

.u-mr-19 {
  margin-right: 19px;
}

@media only screen and (max-width:767px) {
  .u-mb-19--sp {
    margin-bottom: 19px;
  }

  .u-mt-19--sp {
    margin-top: 19px;
  }

  .u-ml-19--sp {
    margin-left: 19px;
  }

  .u-mr-19--sp {
    margin-right: 19px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-19--pc {
    margin-bottom: 19px;
  }

  .u-mt-19--pc {
    margin-top: 19px;
  }

  .u-ml-19--pc {
    margin-left: 19px;
  }

  .u-mr-19--pc {
    margin-right: 19px;
  }
}
.u-mb-20 {
  margin-bottom: 20px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-mr-20 {
  margin-right: 20px;
}

@media only screen and (max-width:767px) {
  .u-mb-20--sp {
    margin-bottom: 20px;
  }

  .u-mt-20--sp {
    margin-top: 20px;
  }

  .u-ml-20--sp {
    margin-left: 20px;
  }

  .u-mr-20--sp {
    margin-right: 20px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-20--pc {
    margin-bottom: 20px;
  }

  .u-mt-20--pc {
    margin-top: 20px;
  }

  .u-ml-20--pc {
    margin-left: 20px;
  }

  .u-mr-20--pc {
    margin-right: 20px;
  }
}
.u-mb-25 {
  margin-bottom: 25px;
}

.u-mt-25 {
  margin-top: 25px;
}

.u-ml-25 {
  margin-left: 25px;
}

.u-mr-25 {
  margin-right: 25px;
}

@media only screen and (max-width:767px) {
  .u-mb-25--sp {
    margin-bottom: 25px;
  }

  .u-mt-25--sp {
    margin-top: 25px;
  }

  .u-ml-25--sp {
    margin-left: 25px;
  }

  .u-mr-25--sp {
    margin-right: 25px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-25--pc {
    margin-bottom: 25px;
  }

  .u-mt-25--pc {
    margin-top: 25px;
  }

  .u-ml-25--pc {
    margin-left: 25px;
  }

  .u-mr-25--pc {
    margin-right: 25px;
  }
}
.u-mb-28 {
  margin-bottom: 28px;
}

.u-mt-28 {
  margin-top: 28px;
}

.u-ml-28 {
  margin-left: 28px;
}

.u-mr-28 {
  margin-right: 28px;
}

@media only screen and (max-width:767px) {
  .u-mb-28--sp {
    margin-bottom: 28px;
  }

  .u-mt-28--sp {
    margin-top: 28px;
  }

  .u-ml-28--sp {
    margin-left: 28px;
  }

  .u-mr-28--sp {
    margin-right: 28px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-28--pc {
    margin-bottom: 28px;
  }

  .u-mt-28--pc {
    margin-top: 28px;
  }

  .u-ml-28--pc {
    margin-left: 28px;
  }

  .u-mr-28--pc {
    margin-right: 28px;
  }
}
.u-mb-30 {
  margin-bottom: 30px;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-mr-30 {
  margin-right: 30px;
}

@media only screen and (max-width:767px) {
  .u-mb-30--sp {
    margin-bottom: 30px;
  }

  .u-mt-30--sp {
    margin-top: 30px;
  }

  .u-ml-30--sp {
    margin-left: 30px;
  }

  .u-mr-30--sp {
    margin-right: 30px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-30--pc {
    margin-bottom: 30px;
  }

  .u-mt-30--pc {
    margin-top: 30px;
  }

  .u-ml-30--pc {
    margin-left: 30px;
  }

  .u-mr-30--pc {
    margin-right: 30px;
  }
}
.u-mb-35 {
  margin-bottom: 35px;
}

.u-mt-35 {
  margin-top: 35px;
}

.u-ml-35 {
  margin-left: 35px;
}

.u-mr-35 {
  margin-right: 35px;
}

@media only screen and (max-width:767px) {
  .u-mb-35--sp {
    margin-bottom: 35px;
  }

  .u-mt-35--sp {
    margin-top: 35px;
  }

  .u-ml-35--sp {
    margin-left: 35px;
  }

  .u-mr-35--sp {
    margin-right: 35px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-35--pc {
    margin-bottom: 35px;
  }

  .u-mt-35--pc {
    margin-top: 35px;
  }

  .u-ml-35--pc {
    margin-left: 35px;
  }

  .u-mr-35--pc {
    margin-right: 35px;
  }
}
.u-mb-40 {
  margin-bottom: 40px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-mr-40 {
  margin-right: 40px;
}

@media only screen and (max-width:767px) {
  .u-mb-40--sp {
    margin-bottom: 40px;
  }

  .u-mt-40--sp {
    margin-top: 40px;
  }

  .u-ml-40--sp {
    margin-left: 40px;
  }

  .u-mr-40--sp {
    margin-right: 40px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-40--pc {
    margin-bottom: 40px;
  }

  .u-mt-40--pc {
    margin-top: 40px;
  }

  .u-ml-40--pc {
    margin-left: 40px;
  }

  .u-mr-40--pc {
    margin-right: 40px;
  }
}
.u-mb-45 {
  margin-bottom: 45px;
}

.u-mt-45 {
  margin-top: 45px;
}

.u-ml-45 {
  margin-left: 45px;
}

.u-mr-45 {
  margin-right: 45px;
}

@media only screen and (max-width:767px) {
  .u-mb-45--sp {
    margin-bottom: 45px;
  }

  .u-mt-45--sp {
    margin-top: 45px;
  }

  .u-ml-45--sp {
    margin-left: 45px;
  }

  .u-mr-45--sp {
    margin-right: 45px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-45--pc {
    margin-bottom: 45px;
  }

  .u-mt-45--pc {
    margin-top: 45px;
  }

  .u-ml-45--pc {
    margin-left: 45px;
  }

  .u-mr-45--pc {
    margin-right: 45px;
  }
}
.u-mb-50 {
  margin-bottom: 50px;
}

.u-mt-50 {
  margin-top: 50px;
}

.u-ml-50 {
  margin-left: 50px;
}

.u-mr-50 {
  margin-right: 50px;
}

@media only screen and (max-width:767px) {
  .u-mb-50--sp {
    margin-bottom: 50px;
  }

  .u-mt-50--sp {
    margin-top: 50px;
  }

  .u-ml-50--sp {
    margin-left: 50px;
  }

  .u-mr-50--sp {
    margin-right: 50px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-50--pc {
    margin-bottom: 50px;
  }

  .u-mt-50--pc {
    margin-top: 50px;
  }

  .u-ml-50--pc {
    margin-left: 50px;
  }

  .u-mr-50--pc {
    margin-right: 50px;
  }
}
.u-mb-70 {
  margin-bottom: 70px;
}

.u-mt-70 {
  margin-top: 70px;
}

.u-ml-70 {
  margin-left: 70px;
}

.u-mr-70 {
  margin-right: 70px;
}

@media only screen and (max-width:767px) {
  .u-mb-70--sp {
    margin-bottom: 70px;
  }

  .u-mt-70--sp {
    margin-top: 70px;
  }

  .u-ml-70--sp {
    margin-left: 70px;
  }

  .u-mr-70--sp {
    margin-right: 70px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-70--pc {
    margin-bottom: 70px;
  }

  .u-mt-70--pc {
    margin-top: 70px;
  }

  .u-ml-70--pc {
    margin-left: 70px;
  }

  .u-mr-70--pc {
    margin-right: 70px;
  }
}
.u-mb-80 {
  margin-bottom: 80px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-ml-80 {
  margin-left: 80px;
}

.u-mr-80 {
  margin-right: 80px;
}

@media only screen and (max-width:767px) {
  .u-mb-80--sp {
    margin-bottom: 80px;
  }

  .u-mt-80--sp {
    margin-top: 80px;
  }

  .u-ml-80--sp {
    margin-left: 80px;
  }

  .u-mr-80--sp {
    margin-right: 80px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-80--pc {
    margin-bottom: 80px;
  }

  .u-mt-80--pc {
    margin-top: 80px;
  }

  .u-ml-80--pc {
    margin-left: 80px;
  }

  .u-mr-80--pc {
    margin-right: 80px;
  }
}
.u-mb-120 {
  margin-bottom: 120px;
}

.u-mt-120 {
  margin-top: 120px;
}

.u-ml-120 {
  margin-left: 120px;
}

.u-mr-120 {
  margin-right: 120px;
}

@media only screen and (max-width:767px) {
  .u-mb-120--sp {
    margin-bottom: 120px;
  }

  .u-mt-120--sp {
    margin-top: 120px;
  }

  .u-ml-120--sp {
    margin-left: 120px;
  }

  .u-mr-120--sp {
    margin-right: 120px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-120--pc {
    margin-bottom: 120px;
  }

  .u-mt-120--pc {
    margin-top: 120px;
  }

  .u-ml-120--pc {
    margin-left: 120px;
  }

  .u-mr-120--pc {
    margin-right: 120px;
  }
}
.u-mb-140 {
  margin-bottom: 140px;
}

.u-mt-140 {
  margin-top: 140px;
}

.u-ml-140 {
  margin-left: 140px;
}

.u-mr-140 {
  margin-right: 140px;
}

@media only screen and (max-width:767px) {
  .u-mb-140--sp {
    margin-bottom: 140px;
  }

  .u-mt-140--sp {
    margin-top: 140px;
  }

  .u-ml-140--sp {
    margin-left: 140px;
  }

  .u-mr-140--sp {
    margin-right: 140px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-140--pc {
    margin-bottom: 140px;
  }

  .u-mt-140--pc {
    margin-top: 140px;
  }

  .u-ml-140--pc {
    margin-left: 140px;
  }

  .u-mr-140--pc {
    margin-right: 140px;
  }
}
.u-mb-200 {
  margin-bottom: 200px;
}

.u-mt-200 {
  margin-top: 200px;
}

.u-ml-200 {
  margin-left: 200px;
}

.u-mr-200 {
  margin-right: 200px;
}

@media only screen and (max-width:767px) {
  .u-mb-200--sp {
    margin-bottom: 200px;
  }

  .u-mt-200--sp {
    margin-top: 200px;
  }

  .u-ml-200--sp {
    margin-left: 200px;
  }

  .u-mr-200--sp {
    margin-right: 200px;
  }
}
@media print, only screen and (min-width:768px) {
  .u-mb-200--pc {
    margin-bottom: 200px;
  }

  .u-mt-200--pc {
    margin-top: 200px;
  }

  .u-ml-200--pc {
    margin-left: 200px;
  }

  .u-mr-200--pc {
    margin-right: 200px;
  }
}
.u-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.page:not(.home) .l-header {
  background-color: transparent;
}

.l-header {
  padding: 7px 24px 17px;
  width: 100%;
  z-index: 1;
  box-sizing: border-box;
  position: fixed;
  background-color: #d6cfc5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
}
@media only screen and (max-width:767px) {
  .l-header {
    width: 100%;
    padding: 0;
    bottom: 0;
    left: -100%;
    background-color: transparent;
    display: block;
  }
}
.l-header__caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width:767px) {
  .l-header__caption {
    display: none;
  }
}
.l-header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  margin-top: 16px;
}
@media only screen and (max-width:767px) {
  .l-header__bottom {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
}
@media only screen and (max-width:767px) {
  .l-header__bottom .c-btn--gold {
    width: calc(100% - 50px);
    max-width: 100%;
    height: 100%;
    max-height: 50px;
  }
}
.l-header__logo {
  max-width: 88px;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .l-header__logo {
    position: absolute;
    top: 40px;
    left: 16px;
  }
}

.caption__area {
  font-family: vdl-v7gothic, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: right;
  letter-spacing: 0.06em;
  position: absolute;
  right: 2.083vw;
  top: 30px;
}
@media only screen and (max-width:767px) {
  .caption__area {
    font-size: 1.2rem;
    top: 12px;
  }
}
.caption__area::before {
  content: "";
  width: 245px;
  height: 200px;
  display: block;
  background: url(../images/caption_bg.svg) no-repeat bottom center;
  position: absolute;
  top: -70px;
  right: -29px;
  z-index: 1;
}
@media only screen and (max-width:767px) {
  .caption__area::before {
    background: url(../images/caption_bg-sp.svg) no-repeat bottom center;
    width: 117px;
    height: 113px;
  }
}
.caption__area .main__caption {
  position: relative;
  z-index: 2;
}
.caption__area .main__caption-tate {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  margin-left: auto;
  margin-top: 16px;
}

.slider img {
  width: 100%;
}

.logo__area {
  position: absolute;
  bottom: 7.667vw;
  left: 4.167vw;
  width: 76%;
}
@media only screen and (max-width:767px) {
  .logo__area {
    width: 67%;
    bottom: 10px;
    left: 12px;
  }
}
.logo__area .main__lead {
  font-family: vdl-v7gothic, sans-serif;
  font-weight: 700;
  letter-spacing: 0.09em;
  font-size: clamp(1.6rem,2.778vw,4rem);
  color: #fff;
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .logo__area .main__lead {
    font-size: 1.6rem;
    margin-top: 28px;
  }
}

.contact__area {
  width: 100%;
  position: fixed;
  right: 30px;
  bottom: 40px;
  max-width: 300px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #fff;
  padding: 18px 26px 30px;
  z-index: 4;
  text-align: center;
  box-sizing: border-box;
}
@media only screen and (max-width:767px) {
  .contact__area {
    bottom: 0;
    right: 0;
    border-radius: 0;
    width: 100%;
    display: flex;
    max-width: 100%;
    text-align: left;
    justify-content: center;
    padding: 4px 8px;
    align-items: center;
    gap: 30px;
    border: none;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
}
.contact__area-text {
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 2px solid #000;
  padding-bottom: 8px;
}
@media only screen and (max-width:767px) {
  .contact__area-text {
    font-size: 1.4rem;
  }
}
.contact__area .btn {
  padding: 0;
}
@media only screen and (max-width:767px) {
  .contact__area .btn {
    width: 105px;
    margin: 0;
  }
}
.contact__area .btn a {
  color: #fff;
  display: block;
  background-color: #000;
  border: 1px solid #000;
  padding: 6px 37px 6px 24px;
  margin-top: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.8s;
}
@media only screen and (max-width:767px) {
  .contact__area .btn a {
    font-size: 1.4rem;
    width: 105px;
    box-sizing: border-box;
    padding: 4px 8px 4px 27px;
    margin: 0;
  }
}
.contact__area .btn a:hover {
  background-color: #fff;
  color: #000;
}
@media only screen and (max-width:767px) {
  .contact__area .btn a .triangle {
    top: 43%;
    left: 10px;
  }
}

.menu {
  width: 75%;
}
@media only screen and (max-width:767px) {
  .menu {
    width: 100%;
  }
}
.menu .global-nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .menu .global-nav {
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 120px;
    overflow-y: scroll;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: -100%;
    top: 0;
    transition: all 0.4s;
    z-index: 2;
  }
  .menu .global-nav.active {
    left: 0;
  }
}
.menu .global-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2%;
  font-size: clamp(1.4rem,1.347vw,1.8rem);
  max-width: 800px;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .menu .global-nav__list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 8px;
    padding-left: 0;
  }
}
.menu .global-nav__list > li > a {
  display: block;
}
@media only screen and (max-width:767px) {
  .menu .global-nav__list a {
    color: #fff;
  }
}
.menu .global-nav .submenu__list {
  display: flex;
  justify-content: space-between;
  width: 340px;
}
@media only screen and (max-width:767px) {
  .menu .global-nav .submenu__list {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
}
.menu .global-nav .submenu__list li {
  width: 50%;
}
.menu .global-nav .submenu__list li:first-child {
  background-color: #000;
}
.menu .global-nav .submenu__list li:first-child .h-img {
  width: 40%;
}
@media only screen and (max-width:767px) {
  .menu .global-nav .submenu__list li:first-child .h-img {
    width: 20%;
  }
}
.menu .global-nav .submenu__list li:last-child {
  background-color: #000;
}
.menu .global-nav .submenu__list li:last-child a {
  color: #fff;
  display: block;
}
.menu .global-nav .submenu__list span {
  display: block;
  margin: 6px auto 0;
  text-align: center;
}
.menu .global-nav .submenu__list .h-img {
  width: 50%;
}
@media only screen and (max-width:767px) {
  .menu .global-nav .submenu__list .h-img {
    width: 25%;
  }
}

.submenu {
  background-color: #22201f;
  padding: 27px 4px;
  display: none;
  width: 100%;
  position: absolute;
  z-index: 1;
  justify-content: center;
  left: 0;
}
@media only screen and (max-width:767px) {
  .submenu {
    padding: 0;
    background-color: transparent;
    margin-top: 24px;
    position: static;
  }
}
.submenu a {
  color: #fff;
}
.submenu .submenu__item {
  font-size: 1.4rem;
  margin: 0%;
}
@media only screen and (max-width:767px) {
  .submenu .submenu__item {
    text-align: center;
  }
}
.submenu .submenu__item a {
  border-right: 1px solid #fff;
  padding: 0 28px;
}
@media only screen and (max-width:767px) {
  .submenu .submenu__item a {
    border-right: none;
  }
}
.submenu .submenu__item:last-child a {
  border: none;
}

li.has-child > a {
  position: relative;
}

nav ul li.has-child > a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 32px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
}

/*==2階層目以降の画像設定*/
nav ul li.has-child img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s;
  vertical-align: bottom;
}

/*hoverしたら画像拡大*/
nav ul li.has-child img:hover {
  transform: scale(1.2);
}

nav ul li.has-child dt {
  overflow: hidden;
  height: 20vh;
  margin: 0 0 20px 0;
}

@media screen and (max-width: 1200px) {
  nav ul li.has-child dt {
    height: 12vh;
  }
}
/*== 2層目の設定 */
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 76px;
  z-index: 4;
  /*子要素を横並びに*/
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*形状を指定*/
  background: #22201f;
  width: 100%;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}
@media only screen and (max-width:767px) {
  nav li.has-child ul {
    background: transparent;
  }
}

/*hoverしたら表示*/
nav li.has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #fff;
}

/*==768px以下の形状*/
@media screen and (max-width: 768px) {
  nav ul {
    display: block;
  }

  nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible;
    /*JSで制御するため一旦表示*/
    opacity: 1;
    /*JSで制御するため一旦表示*/
    display: none;
    /*JSのslidetoggleで表示させるため非表示に*/
    transition: none;
    /*JSで制御するためCSSのアニメーションを切る*/
  }

  nav li.has-child ul li {
    width: 100%;
    text-align: left;
  }

  nav li.has-child ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav li.has-child ul li dt {
    width: 30%;
    height: auto;
    margin: 0;
  }

  nav li.has-child ul li dd {
    width: 64%;
  }

  nav ul li a {
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
  }

  /*矢印の位置と向き*/
}
@media only screen and (max-width: 768px) and (max-width:767px) {
  nav ul li a {
    border-bottom: transparent;
  }
}
@media screen and (max-width: 768px) {
  nav ul li li a {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  nav ul li.has-child > a::before {
    top: 17px;
    left: 20px;
    transform: rotate(135deg);
  }
}
@media only screen and (max-width: 768px) and (max-width:767px) {
  nav ul li.has-child > a::before {
    bottom: 0;
    left: 50%;
    top: auto;
  }
}
@media screen and (max-width: 768px) {
  nav ul li.has-child.active > a::before {
    transform: rotate(-45deg);
  }
}
.c-ttl__gray {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 12rem;
  color: rgba(0, 0, 0, 0.17);
  text-align: center;
  letter-spacing: 0.1em;
}
@media only screen and (max-width:767px) {
  .c-ttl__gray {
    font-size: 56px;
  }
}
.c-ttl__copy {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.7;
  text-align: center;
  color: #003461;
  margin-top: -5vw;
}
@media only screen and (max-width:767px) {
  .c-ttl__copy {
    font-size: 20px;
    margin-top: -40px;
  }
}

.l-footer {
  margin-top: 134px;
  background-color: #F6F4F2;
  padding: 45px 24px 32px;
}
@media only screen and (max-width:767px) {
  .l-footer {
    margin-top: 74px;
    padding-bottom: 110px;
  }
}
.l-footer__contact {
  margin: 180px auto 0;
  max-width: 1248px;
  width: 100%;
  padding: 0 24px;
}
@media only screen and (max-width:767px) {
  .l-footer__contact {
    margin-top: 56px;
  }
}
.l-footer__contact-list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width:767px) {
  .l-footer__contact-list {
    flex-direction: column;
  }
}
.l-footer__contact-item {
  width: 50%;
  height: 24vw;
}
@media only screen and (max-width:767px) {
  .l-footer__contact-item {
    width: 100%;
    height: 208px;
  }
}
.l-footer__contact-item:first-child {
  background: url(../images/common/footer_membership.jpg) no-repeat center center/cover;
}
.l-footer__contact-item:last-child {
  background: url(../images/common/footer_wig.jpg) no-repeat center center/cover;
  margin-top: 60px;
}
@media only screen and (max-width:767px) {
  .l-footer__contact-item:last-child {
    margin-top: 24px;
  }
}
.l-footer__contact-item a {
  display: block;
  transition: all 0.8s;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.l-footer__contact-item a:hover {
  opacity: 0.6;
}
.l-footer__contact-textarea {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 46px 70px;
}
.l-footer__contact-ttl--en {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: capitalize;
}
@media only screen and (max-width:767px) {
  .l-footer__contact-ttl--en {
    font-size: 30px;
  }
}
.l-footer__contact-ttl--en::after {
  content: "";
  width: 54px;
  height: 1px;
  background-color: #030303;
  display: block;
  text-align: center;
  margin: 10px auto;
}
.l-footer__contact-ttl--jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width:767px) {
  .l-footer__contact-ttl--jp {
    font-size: 18px;
  }
}
.l-footer__wrap {
  max-width: 1230px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .l-footer__wrap {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer__logo {
  max-width: 126px;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .l-footer__logo {
    max-width: 90px;
  }
}
.l-footer__banner {
  max-width: 218px;
  width: 100%;
  margin-top: 24px;
}
@media only screen and (max-width:767px) {
  .l-footer__banner {
    max-width: 110px;
  }
}
.l-footer__rightbox {
  display: flex;
  gap: 6%;
}
@media only screen and (max-width:767px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 22px 90px;
}
.l-footer__nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.l-footer__nav-item::before {
  content: "";
  width: 43px;
  height: 2px;
  background-color: #EBEBEB;
  display: block;
}
.l-footer__nav-item a {
  transition: all 0.8s;
}
.l-footer__nav-item a:hover {
  color: #003461;
}
@media only screen and (max-width:767px) {
  .l-footer__btnarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
}
.l-footer__btnarea .c-btn--gold {
  width: 220px;
  white-space: nowrap;
}
.l-footer__btnarea-line {
  width: 40px;
  margin-top: 24px;
}

small {
  text-align: center;
  margin-top: 40px;
  display: block;
}

.flex {
  display: flex;
}
.flex-r {
  flex-direction: row-reverse;
}
@media only screen and (max-width:767px) {
  .flex {
    flex-direction: column;
  }
}

.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #960021;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.toggle_btn {
  position: relative;
  z-index: 2;
  width: 50px;
}

.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  background: #003461;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 10px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 60%;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
  display: none;
}

.openbtn span:nth-of-type(3) {
  top: 23px;
}

.openbtn span:nth-of-type(3)::after {
  content: "Menu";
  /*3つ目の要素のafterにMenu表示を指定*/
  font-family: "Cormorant Garamond", serif;
  position: absolute;
  top: 7px;
  left: 0px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
@media only screen and (max-width:767px) {
  .openbtn span:nth-of-type(3)::after {
    font-size: 12px;
  }
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(3)::after {
  content: "";
  /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}

.global-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  background-color: #D9D9D9;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 1;
  padding: 0 70px;
  transition: all 0.8s;
}
.global-nav.active {
  right: 0;
}
@media only screen and (max-width:767px) {
  .global-nav {
    flex-direction: column-reverse;
    justify-content: flex-end;
  }
}
.global-nav__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  margin-right: 20%;
  gap: 24px 53px;
  padding-top: 180px;
  max-height: 430px;
}
@media only screen and (max-width:767px) {
  .global-nav__list {
    padding-top: 40px;
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
    max-height: 100%;
  }
}
.global-navLeft {
  margin-top: 4.6rem;
}

.l-nav__logo {
  max-width: 154px;
  width: 100%;
  margin-bottom: 28px;
}
.l-nav__btnarea-line {
  max-width: 92px;
  width: 100%;
  margin-top: 33px;
}

@media only screen and (max-width:767px) {
  .menu__item {
    margin-bottom: 24px;
  }
}
.menu__item__link {
  border-bottom: 2px solid #EBEBEB;
  padding: 0 24px 24px 28px;
  width: 100%;
  display: block;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 400;
}
@media only screen and (max-width:767px) {
  .menu__item__link {
    font-size: 18px;
  }
}

.c-ttl__news {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 6.2rem;
  color: #003461;
  text-transform: capitalize;
}
@media only screen and (max-width:767px) {
  .c-ttl__news {
    font-size: 32px;
    text-align: left;
    margin-bottom: 21px;
  }
}

.c-headline__ttl3--square {
  font-size: 2.4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media only screen and (max-width:767px) {
  .c-headline__ttl3--square {
    font-size: 18px;
    gap: 8px;
    line-height: 1.6;
  }
}
.c-headline__ttl3--square::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: #003461;
}
.c-headline__ttl3--square::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-color: #003461;
}
.c-headline__ttl3--line {
  position: relative;
}
.c-headline__ttl3--line::after {
  content: "";
  width: 3px;
  height: 72px;
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: #B69B76;
  z-index: -1;
}
@media only screen and (max-width:767px) {
  .c-headline__ttl3--line::after {
    height: 50px;
  }
}

.c-btn--gold {
  max-width: 272px;
  width: 100%;
}
.c-btn--gold a {
  width: 100%;
  background-color: #B69B76;
  text-align: center;
  display: block;
  padding: 16px 0;
  font-family: "Zen Old Mincho", serif;
  border: 1px solid #B69B76;
  transition: all 0.8s;
}
@media only screen and (max-width:767px) {
  .c-btn--gold a {
    font-size: 18px;
  }
}
.c-btn--gold a:hover {
  background-color: #fff;
  color: #B69B76;
}
.c-btn--blue {
  max-width: 353px;
  width: 100%;
  text-align: center;
}
.c-btn--blue a {
  font-family: "Cormorant Garamond", serif;
  color: #003461;
  font-size: 1.8rem;
  background-color: #fff;
  border: 1px solid #003461;
  padding: 24px 0;
  display: block;
  transition: all 0.8s;
}
.c-btn--blue a:hover {
  background-color: #003461;
  color: #fff;
}
@media only screen and (max-width:767px) {
  .c-btn--blue a {
    font-size: 14px;
    padding: 16px 0;
  }
}
@media only screen and (max-width:767px) {
  .c-btn--blue a {
    width: 80%;
    margin: 40px auto 0;
  }
}
.c-btn__line {
  margin: 100px auto 0;
}
@media only screen and (max-width:767px) {
  .c-btn__line {
    margin: 40px auto 0;
  }
}

.list__item dt {
  padding: 32px 0;
  text-align: center;
  width: 100%;
  font-size: 2.4rem;
  font-family: "Oswald", sans-serif;
  background: #F7F3BC url(../images/profile/p-list-bg.svg) no-repeat center center;
  background-size: contain;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  .list__item dt {
    font-size: 1.8rem;
  }
}
.list__item dt.active::before {
  transform: rotate(180deg);
}
.list__item dt.active::after {
  display: none;
}
.list__item dt::before {
  content: "";
  width: 50px;
  height: 3px;
  display: block;
  background-color: #CCAB68;
  position: absolute;
  right: 42px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.4s;
}
@media only screen and (max-width:767px) {
  .list__item dt::before {
    width: 24px;
    right: 15px;
  }
}
.list__item dt::after {
  content: "";
  height: 50px;
  width: 3px;
  display: block;
  background-color: #CCAB68;
  position: absolute;
  right: 67px;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width:767px) {
  .list__item dt::after {
    height: 24px;
    right: 25px;
  }
}
.list__item dd {
  display: none;
}

.list__item-second {
  background-color: #F9F8EB;
  padding-top: 16px;
}
.list__item-second li {
  border-bottom: 2px solid #F2C3C3;
  padding: 32px 24px 16px;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
}
@media only screen and (max-width:767px) {
  .list__item-second li {
    flex-direction: column;
  }
}
.list__item-second li .manth {
  width: 28px;
  margin-right: 5%;
}
.list__item-second li .list__ttl {
  width: calc(100% - 28px - 20% );
  margin-right: 2%;
  font-weight: 400;
}
@media only screen and (max-width:767px) {
  .list__item-second li .list__ttl {
    width: 100%;
    margin: 8px 0;
    line-height: 1.4;
    font-size: 1.4rem;
  }
}
.list__item-second li .place {
  width: 20%;
}
@media only screen and (max-width:767px) {
  .list__item-second li .place {
    width: 100%;
  }
}

.button__list {
  gap: 10%;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .button__list {
    gap: 4%;
  }
}

.button__list-item {
  width: calc((100% - 20%) / 3);
  background-color: #BCE9F7;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 20px;
  transition: all 0.8s;
}
@media only screen and (max-width:767px) {
  .button__list-item {
    width: 48%;
    font-size: 1.8rem;
  }
}
.button__list-item:hover {
  background-color: #CCAB68;
}
.button__list-item:hover a {
  opacity: 1;
}
.button__list-item a {
  padding: 42px 0;
  display: block;
}
@media only screen and (max-width:767px) {
  .button__list-item a {
    padding: 24px 0;
  }
}

.activity__list {
  max-width: 330px;
  width: 100%;
}
.activity__list .button__list-item {
  width: 100%;
}

table {
  width: 100%;
}
table tr {
  font-size: 2rem;
}
@media only screen and (max-width:767px) {
  table tr {
    font-size: 1.4rem;
  }
}
table tr th {
  background-color: #000;
  text-align: center;
  border: 1px solid #fff;
}
table tr td {
  font-size: 1.6rem;
  padding: 0 8px;
}
@media only screen and (max-width:767px) {
  table tr td {
    font-size: 1.4rem;
  }
}
table tr td span {
  font-size: 1.4rem;
}
@media only screen and (max-width:767px) {
  table tr td span {
    font-size: 1.2rem;
  }
}

table,
td {
  border: 1px solid #000;
  border-collapse: collapse;
}

td,
th {
  padding: 8px;
  width: 30px;
  height: 25px;
}

th {
  background: #f0e6cc;
}

.even {
  background: #fbf8f0;
}

.odd {
  background: #fefcf9;
}

.p-denture .a-features__box {
  width: 100%;
  overflow: scroll;
}
.p-denture .a-features__box table {
  width: 800px;
}
.p-denture td {
  width: 25%;
}

.arrow__box {
  width: 300px;
  height: 200px;
  margin: 17vh auto 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .arrow__box {
    margin-top: 15vh;
  }
}
.arrow__box p {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2.4px;
}

/* アニメーション設定 */
.arrowWrap {
  margin-top: 5vh;
}

.arrow {
  width: 15px;
  margin: 0 auto;
  animation: arrow 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s infinite alternate;
}

.arrow span {
  position: relative;
  display: block;
  left: 50%;
}

.arrow span:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
}

@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0.5;
    transform: translate3d(-50%, -8px, 0);
  }
}
.arrow-right {
  position: relative;
  display: flex;
  align-items: center;
}

.arrow-right:after {
  content: "";
  background: url(../images/common/arrow-right.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 20px;
  display: block;
  margin-left: 3.87vw;
}

.arrow-bottom {
  position: relative;
}

.arrow-bottom:after {
  content: "";
  border-bottom: solid 1px #000;
  border-right: solid 1px #000;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  display: block;
}

.slick-initialized .slick-slide {
  padding: 0 6px;
}
@media only screen and (max-width:767px) {
  .slick-initialized .slick-slide {
    padding: 0 2px;
  }
}

.slick-next:before {
  content: "";
  background: url(../images/arrow_next.svg) no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
}

.slick-prev:before {
  content: "";
  background: url(../images/arrow_prev.svg) no-repeat center center;
  background-size: contain;
  width: 24px;
  height: 24px;
  display: block;
}

.bg-red {
  background: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fbfbfb 35%, #dc0000 35%, #dc0000 100%);
  position: relative;
}
@media only screen and (max-width:767px) {
  .bg-red {
    background: white;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fbfbfb 20%, #dc0000 20%, #dc0000 100%);
    position: relative;
  }
}
.bg-red::after {
  content: "";
  height: 700px;
  width: clamp(1px, 6.806vw, 98px);
  display: block;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: -1;
}
@media only screen and (max-width:767px) {
  .bg-red::after {
    display: none;
  }
}

.t-contents {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.slider__main {
  background-color: #fff;
}
.slider__main .slaider__item {
  margin-left: 0;
  padding: 0 !important;
}

.content {
  display: none;
}

.content.show {
  display: block;
}

.tab-container {
  max-width: 863px;
  width: 100%;
  display: flex;
  border: 1px solid #003461;
}

.tab {
  width: 50%;
  font-size: 2rem;
  font-weight: 700;
  color: #003461;
  text-align: center;
  padding: 18px 0;
  cursor: pointer;
}
.tab.active {
  background-color: #003461;
  color: #FFF;
}
@media only screen and (max-width:767px) {
  .tab {
    font-size: 16px;
  }
}

.home_main {
  padding-top: 0 !important;
}

.p-home__kv {
  padding-top: 72px;
}
@media only screen and (max-width:767px) {
  .p-home__kv {
    padding-top: 0;
    position: relative;
  }
}
@media only screen and (max-width:767px) {
  .p-home__kv-img img {
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.p-home__news {
  background: #FFF;
  background: linear-gradient(90deg, white 0%, white 20%, #f5f5f3 20%, #f5f5f3 100%);
  display: flex;
  align-items: center;
  padding-left: 14%;
  gap: 0 8%;
  padding-top: 8.8rem;
  padding-bottom: 7.8rem;
}
@media only screen and (max-width:767px) {
  .p-home__news {
    flex-direction: column;
    background: transparent;
    align-items: flex-start;
    padding: 0 24px;
    margin-top: 38px;
  }
}
.p-home__newslist {
  margin-top: 5.4rem;
}
.p-home__news-rightbox {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .p-home__news-rightbox {
    width: 100%;
  }
}
.p-home__about {
  position: relative;
  margin-top: 72px;
}
@media only screen and (max-width:767px) {
  .p-home__about {
    margin-top: 126px;
    padding: 252px 24px 0px;
  }
}
.p-home__about::before {
  content: "";
  width: 31.5rem;
  height: 28.5rem;
  display: block;
  background: url(../images/top/top_about1.jpg) no-repeat center center/contain;
  position: absolute;
  top: 76px;
  left: 0;
}
@media only screen and (max-width:767px) {
  .p-home__about::before {
    top: 0;
    width: 215px;
    height: 195px;
  }
}
.p-home__about::after {
  content: "";
  width: 27.8rem;
  height: 24rem;
  display: block;
  background: url(../images/top/top_about2.png) no-repeat center center/contain;
  position: absolute;
  bottom: 133px;
  right: 38px;
}
@media only screen and (max-width:767px) {
  .p-home__about::after {
    bottom: 80px;
    width: 184px;
    height: 159px;
  }
}
.p-home__about .c-btn {
  margin: 40px auto 0;
}
@media only screen and (max-width:767px) {
  .p-home__about .c-btn {
    margin-top: 240px !important;
  }
}
.p-home__report {
  margin-top: 63.5px;
  background: url(../images/top/top_reportbg.png) no-repeat top right/cover;
  padding: 131px 24px 50px;
}
@media only screen and (max-width:767px) {
  .p-home__report {
    padding: 20px 24px;
    background: url(../images/top/top_reportbg-sp.png) no-repeat top right/cover;
  }
}
.p-home__report-wrap {
  max-width: 1135px;
  width: 100%;
  margin: 0 auto;
}
.p-home__report-ttl {
  font-size: 1.8rem;
  font-weight: 400;
  color: #B69B76;
}
@media only screen and (max-width:767px) {
  .p-home__report-ttl {
    font-size: 16px;
  }
}
.p-home__report-copy {
  margin-top: 0;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .p-home__report-copy {
    margin-top: 32px;
  }
}
.p-home__report-list {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  gap: 6%;
}
@media only screen and (max-width:767px) {
  .p-home__report-list {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 36px;
    gap: 38px 0;
  }
}
.p-home__report-item {
  width: calc((100% - 12%) / 3);
}
@media only screen and (max-width:767px) {
  .p-home__report-item {
    width: 100%;
  }
}
.p-home__report-item figcaption {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 16px;
}
@media only screen and (max-width:767px) {
  .p-home__report-item figcaption {
    font-size: 18px;
  }
}
.p-home__report-name {
  font-size: 1.6rem;
  font-weight: 400;
  color: #003461;
  margin-top: 26px;
}
@media only screen and (max-width:767px) {
  .p-home__report-name {
    font-size: 14px;
  }
}
.p-home__price {
  margin-top: 15.4rem;
}
.p-home__price .c-btn--gold {
  margin: 108px auto 0;
}
@media only screen and (max-width:767px) {
  .p-home__price .c-btn--gold {
    margin-top: 40px;
  }
}
.p-home__member {
  max-width: 1195px;
  width: 100%;
  margin: 90px auto 0;
  padding: 0 24px;
}
@media only screen and (max-width:767px) {
  .p-home__member {
    margin-top: 40px;
  }
}
.p-home__member-ttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (max-width:767px) {
  .p-home__member-ttl {
    font-size: 20px;
  }
}
.p-home__member-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6%;
  margin-top: 46px;
}
@media only screen and (max-width:767px) {
  .p-home__member-list {
    flex-direction: column;
    gap: 16px;
  }
}
.p-home__member-item {
  width: calc((100% - 18%) / 4);
}
@media only screen and (max-width:767px) {
  .p-home__member-item {
    width: 100%;
  }
}
.p-home__member .c-btn--gold {
  margin: 129px auto 0;
}
@media only screen and (max-width:767px) {
  .p-home__member .c-btn--gold {
    margin-top: 40px;
  }
}
.p-home__qa {
  margin-top: 74px;
  background-color: #F6F4F2;
  padding: 40px 24px;
}
.p-home__qa-list {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}
.p-home__qa-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 18px 26px;
  margin-bottom: 24px;
}
.p-home__qa-q {
  width: 100%;
  border-bottom: 1px solid #F6F4F2;
  padding-bottom: 8px;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media only screen and (max-width:767px) {
  .p-home__qa-q {
    font-size: 16px;
  }
}
.p-home__qa-q--en {
  font-family: "Cormorant Garamond", serif;
  color: #B69B76;
  font-size: 2.4rem;
  text-transform: uppercase;
  padding-right: 0.4em;
}
@media only screen and (max-width:767px) {
  .p-home__qa-q--en {
    font-size: 24px;
  }
}
.p-home__qa-a {
  margin-top: 8px;
  padding-left: 1.2em;
  text-indent: -1.4em;
  line-height: 1.4;
}
@media only screen and (max-width:767px) {
  .p-home__qa-a {
    font-size: 16px;
  }
}
.p-home__qa-a--en {
  font-family: "Cormorant Garamond", serif;
  color: #003461;
  font-size: 2.4rem;
  text-transform: uppercase;
  padding-right: 0.4em;
}
@media only screen and (max-width:767px) {
  .p-home__qa-a--en {
    font-size: 24px;
  }
}

.page main {
  padding-top: 140px;
}
@media only screen and (max-width:767px) {
  .page main {
    padding-top: 0;
  }
}

.p-page__kv {
  padding-bottom: 80px;
  position: relative;
}
@media only screen and (max-width:767px) {
  .p-page__kv {
    padding-bottom: 200px;
    padding-top: 120px;
  }
}
.p-page__kv::before {
  content: "";
  width: 31.5rem;
  height: 28.5rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width:767px) {
  .p-page__kv::before {
    top: 0;
    width: 215px;
    height: 195px;
    display: none;
  }
}
.p-page__kv::after {
  content: "";
  width: 27.8rem;
  height: 24rem;
  display: block;
  position: absolute;
  bottom: 0px;
  right: 38px;
}
@media only screen and (max-width:767px) {
  .p-page__kv::after {
    bottom: 0px;
    width: 184px;
    height: 159px;
  }
}
.p-page__copy {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 4.5rem;
  padding: 0 24px;
}
@media only screen and (max-width:767px) {
  .p-page__copy {
    font-size: 16px;
    text-align: left;
  }
}
.p-page__about-kv {
  position: relative;
}
@media only screen and (max-width:767px) {
  .p-page__about-kv {
    padding-top: 120px;
    margin-top: 0;
  }
}
.p-page__about-kv::before {
  background: url(../images/top/top_about1.jpg) no-repeat center center/contain;
}
@media only screen and (max-width:767px) {
  .p-page__about-kv::before {
    display: none;
  }
}
.p-page__about-kv::after {
  content: "";
  background: url(../images/top/top_about2.png) no-repeat center center/contain;
}
.p-page__about-kv .c-btn {
  margin: 62px auto 0;
}
.p-page-about__flex {
  margin-top: 70px;
  display: flex;
  align-items: center;
  gap: 6%;
}
@media only screen and (max-width:767px) {
  .p-page-about__flex {
    flex-direction: column;
  }
}
.p-page-about__flex figure {
  width: 40%;
}
@media only screen and (max-width:767px) {
  .p-page-about__flex figure {
    width: 100%;
  }
}
.p-page-about__text {
  font-size: 2rem;
  line-height: 2.45;
  margin-top: 56px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .p-page-about__text {
    font-size: 16px;
    padding: 0 24px;
    text-align: left;
    margin-top: 24px;
  }
}
.p-page-about__text--w73 {
  max-width: 730px;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  text-align: left;
}
.p-page-about__media {
  margin-top: 200px;
  display: flex;
  align-items: center;
  gap: 8%;
  padding: 0 24px;
}
@media only screen and (max-width:767px) {
  .p-page-about__media {
    flex-direction: column;
    gap: 24px;
    margin-top: 120px;
  }
}
.p-page-about__youtube {
  aspect-ratio: 16/9;
  width: calc((100% - 8%) / 2);
}
@media only screen and (max-width:767px) {
  .p-page-about__youtube {
    width: 100%;
  }
}
.p-page-about__graph {
  width: calc((100% - 8%) / 2);
}
@media only screen and (max-width:767px) {
  .p-page-about__graph {
    width: 100%;
  }
}
.p-page-about__advisor {
  max-width: 1180px;
  width: 100%;
  margin: 200px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor {
    margin-top: 80px;
  }
}
.p-page-about__advisor-ttl {
  font-size: 4rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0 32px;
  margin-bottom: 98px;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-ttl {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.p-page-about__advisor-ttl::before {
  content: "";
  width: 3px;
  height: 74px;
  display: block;
  background-color: #B69B76;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-ttl::before {
    height: 50px;
  }
}
.p-page-about__advisor-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8%;
  margin-bottom: 9.3rem;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-item {
    margin-bottom: 40px;
    flex-direction: column;
  }
}
.p-page-about__advisor-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-item:nth-child(even) {
    flex-direction: column;
  }
}
.p-page-about__advisor-img {
  max-width: 360px;
  width: 100%;
}
.p-page-about__advisor-textbox {
  max-width: 710px;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-textbox {
    margin-top: 24px;
  }
}
.p-page-about__advisor-textbox--underline::after {
  content: "";
  width: 76px;
  height: 1px;
  background-color: #B69B76;
  display: block;
  margin-top: 20px;
  margin-left: 4px;
}
.p-page-about__advisor-post {
  font-size: 1.6rem;
  color: #003461;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-post {
    font-size: 14px;
  }
}
.p-page-about__advisor-name {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 8px;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-name {
    font-size: 18px;
  }
}
.p-page-about__advisor--en {
  font-size: 1.8rem;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor--en {
    font-size: 14px;
  }
}
.p-page-about__advisor-text {
  font-size: 1.8rem;
  margin-top: 45px;
  line-height: 2.2;
}
@media only screen and (max-width:767px) {
  .p-page-about__advisor-text {
    font-size: 16px;
    margin-top: 24px;
  }
}
.p-page__flow-kv::before {
  background: url(../images/flow/flow_kv1.png) no-repeat center center/contain;
}
@media only screen and (max-width:767px) {
  .p-page__flow-kv::before {
    display: none;
  }
}
.p-page__flow-kv::after {
  content: "";
  background: url(../images/flow/flow_kv2.png) no-repeat center center/contain;
}
.p-page-flow__list {
  max-width: 1182px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0 24px;
}
.p-page-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 0 5%;
  border-bottom: 1px solid #030303;
  padding-bottom: 64px;
  margin-bottom: 50px;
}
@media only screen and (max-width:767px) {
  .p-page-flow__item {
    flex-direction: column;
    margin-bottom: 16px;
  }
}
.p-page-flow__box {
  padding-top: 14px;
}
.p-page-flow__box .c-btn {
  margin-top: 48px;
}
.p-page-flow__box-list {
  margin-top: 14px;
}
.p-page-flow__box-item {
  list-style: disc;
  margin-left: 1em;
  margin-bottom: 4px;
  line-height: 1.4;
  font-size: 2rem;
}
@media only screen and (max-width:767px) {
  .p-page-flow__box-item {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.p-page-flow__box-point {
  margin-top: 35px;
  font-size: 2rem;
  line-height: 1.45;
}
@media only screen and (max-width:767px) {
  .p-page-flow__box-point {
    font-size: 18px;
  }
}
.p-page-flow__number {
  font-family: "Zen Old Mincho", serif;
  font-size: 12rem;
  font-weight: 500;
  color: #003461;
  line-height: 1;
}
@media only screen and (max-width:767px) {
  .p-page-flow__number {
    font-size: 80px;
  }
}
.p-page-flow__ttl--blue {
  font-size: 2.4rem;
  font-weight: 700;
  color: #003461;
}
@media only screen and (max-width:767px) {
  .p-page-flow__ttl--blue {
    font-size: 24px;
  }
}
.p-page-flow__price {
  max-width: 1120px;
  width: 100%;
  margin: 146px auto 0;
  padding: 0 24px;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price {
    margin-top: 80px;
  }
}
.p-page-flow__price-list {
  display: flex;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price-list {
    flex-wrap: wrap;
  }
}
.p-page-flow__price-item {
  width: 20%;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price-item {
    width: calc(100% / 2);
  }
}
.p-page-flow__price-ttl {
  background-color: #003461;
  height: 9.6rem;
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #fff;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price-ttl {
    font-size: 16px;
    height: 60px;
  }
}
.p-page-flow__price-ttlsmall {
  font-size: 1.4rem;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price-ttlsmall {
    font-size: 14px;
  }
}
.p-page-flow__price-amount {
  height: 9.6rem;
  width: 100%;
  text-align: center;
  place-content: center;
  font-size: 2rem;
  font-weight: 700;
  border: 1px solid #030303;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price-amount {
    height: 60px;
    font-size: 16px;
  }
}
.p-page-flow__price-yen {
  font-size: 1.6rem;
}
@media only screen and (max-width:767px) {
  .p-page-flow__price-yen {
    font-size: 14px;
  }
}
.p-page-flow__price .c-btn {
  margin: 74px auto 0;
}
.p-page-flow__notion-item {
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width:767px) {
  .p-page-flow__notion-item {
    font-size: 14px;
  }
}
.p-page-flow__notion-item--small {
  font-size: 1.6rem;
}
@media only screen and (max-width:767px) {
  .p-page-flow__notion-item--small {
    font-size: 12px;
  }
}
.p-page__wig-kv::before {
  background: url(../images/wig/wig_kv1.jpg) no-repeat center center/contain;
}
@media only screen and (max-width:767px) {
  .p-page__wig-kv::before {
    display: none;
  }
}
.p-page__wig-kv::after {
  content: "";
  background: url(../images/wig/wig_kv2.png) no-repeat center center/contain;
}
.p-page-wig__youtube {
  max-width: 650px;
  width: calc(100% - 32%);
}
@media only screen and (max-width:767px) {
  .p-page-wig__youtube {
    width: 100%;
  }
}
.p-page-wig__media {
  margin-top: 120px;
}
@media only screen and (max-width:767px) {
  .p-page-wig__media {
    margin-top: 24px;
  }
}
.p-page-wig__media-text {
  width: 30%;
}
@media only screen and (max-width:767px) {
  .p-page-wig__media-text {
    width: 100%;
  }
}
.p-page-wig__flex {
  display: flex;
}
@media only screen and (max-width:767px) {
  .p-page-wig__flex {
    flex-direction: column;
  }
}
.p-page-wig__flex figure {
  width: 42%;
}
@media only screen and (max-width:767px) {
  .p-page-wig__flex figure {
    width: 100%;
  }
}
.p-page-wig__text {
  font-size: 2rem;
  line-height: 2.45;
}
@media only screen and (max-width:767px) {
  .p-page-wig__text {
    font-size: 16px;
    padding: 0 24px;
  }
}
.p-page-wig__text--w73 {
  width: 58%;
  margin-left: -1em;
  margin-top: 2em;
}
@media only screen and (max-width:767px) {
  .p-page-wig__text--w73 {
    width: 100%;
    margin: 16px auto 0;
  }
}
.p-page__contact-kv::before {
  background: url(../images/contact/contact_kv1.jpg) no-repeat center center/contain;
}
@media only screen and (max-width:767px) {
  .p-page__contact-kv::before {
    display: none;
  }
}
.p-page__contact-kv::after {
  content: "";
  background: url(../images/contact/contact_kv2.png) no-repeat center center/contain;
}
.p-page-contact__text {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width:767px) {
  .p-page-contact__text {
    font-size: 16px;
    text-align: left;
    padding: 0 24px;
  }
}
.p-page__news-kv::before {
  background: url(../images/news/news_kv1.jpg) no-repeat center center/contain;
}
@media only screen and (max-width:767px) {
  .p-page__news-kv::before {
    display: none;
  }
}
.p-page__news-kv::after {
  content: "";
  background: url(../images/news/news_kv2.png) no-repeat center center/contain;
}
@media only screen and (max-width:767px) {
  .p-page-news {
    padding: 0 24px;
  }
}
.p-page-news__box {
  max-width: 984px;
  width: 100%;
  margin: 120px auto 0;
  padding: 0 24px;
}
@media only screen and (max-width:767px) {
  .p-page-news__box {
    margin: 80px auto 0;
  }
}
.p-page__single-kv {
  padding-bottom: 40px;
}
.p-page-single {
  padding: 0 24px 40px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.info-list-container {
  width: 100%;
  max-width: 1130px;
  /* 必要に応じて調整 */
  margin: 120px auto 0;
}
@media only screen and (max-width:767px) {
  .info-list-container {
    margin-top: 40px;
    padding: 0 24px;
  }
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  /* dlのデフォルトスタイルをリセット */
  color: #fff;
  /* 全体の文字色を白に */
  font-size: 16px;
}

/* 各行のコンテナ（liタグの役割） */
.list-item {
  display: flex;
  /* dtとddを横並びにする */
  align-items: stretch;
  /* 高さ揃え */
  /* 行の下部に薄い区切り線 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}
@media only screen and (max-width:767px) {
  .list-item {
    flex-direction: column;
  }
}

/* 最後の行の区切り線を削除 */
.info-list .list-item:last-child {
  border-bottom: none;
}

.header-term, .data-description {
  /* dtとddの共通スタイル */
  padding: 15px 20px;
  box-sizing: border-box;
  /* paddingを含めて幅を計算 */
  margin: 0;
  /* デフォルトマージンをリセット */
  font-size: 2rem;
}
@media only screen and (max-width:767px) {
  .header-term, .data-description {
    font-size: 20px;
  }
}

.header-term {
  /* 1列目 (項目名) のスタイル */
  width: 35%;
  background-color: #002147;
  /* 濃い青色 */
  font-weight: bold;
  color: #fff;
  margin-right: 2%;
}
@media only screen and (max-width:767px) {
  .header-term {
    width: 100%;
  }
}

.data-description {
  /* 2列目 (データ) のスタイル */
  width: 63%;
  color: #000;
  /* 文字色を黒に */
}
@media only screen and (max-width:767px) {
  .data-description {
    width: 100%;
  }
}

/* 偶数行（list-item）のスタイルを適用 */
.info-list .list-item:nth-child(even) .data-description {
  background-color: #dcdcdc;
  /* やや濃いグレー */
}

/* 奇数行（list-item）のスタイルを適用 */
.info-list .list-item:nth-child(odd) .data-description {
  background-color: #e8e8e8;
  /* 薄いグレー */
}

.p-news__list-item {
  margin-bottom: 67px;
}
.p-news__list-item:not(:last-child) {
  margin-bottom: 24px;
}
.p-news__list-item a {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media only screen and (max-width:767px) {
  .p-news__list-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.p-news__img {
  width: 8.2rem;
  height: 8.4rem;
  overflow: hidden;
}
@media only screen and (max-width:767px) {
  .p-news__img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width:767px) {
  .p-news__textbox {
    width: 100%;
  }
}
.p-news__textbox-header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.p-news__textbox-header time {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #003461;
}
@media only screen and (max-width:767px) {
  .p-news__textbox-header time {
    font-size: 14px;
  }
}
.p-news__textbox-cat {
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #030303;
  padding: 4px 8px;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width:767px) {
  .p-news__textbox-cat {
    font-size: 14px;
  }
}
.p-news__ttl {
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 4%;
  text-align: left;
}
@media only screen and (max-width:767px) {
  .p-news__ttl {
    font-size: 16px;
    line-height: 1.4;
  }
}

.Pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Pagination-Item-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 2px #003461;
  font-size: 14px;
  color: #003461;
  font-weight: bold;
  transition: all 0.15s linear;
}

.Pagination-Item-Link-Icon {
  width: 20px;
}

.Pagination-Item-Link.isActive {
  background: #003461;
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #003461;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 12px;
}

.p-news__text {
  font-size: 18px;
  margin-top: 64px;
  line-height: 1.8;
}

.pager__list {
  display: flex;
  justify-content: space-around;
  gap: 1em;
  margin-top: 120px;
}
@media only screen and (max-width:767px) {
  .pager__list {
    margin-top: 40px;
  }
}

.pager__item {
  min-width: 80px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .pager__item {
    font-size: 16px;
  }
}

.archive .l-header {
  background-color: transparent;
}
.archive main {
  padding-top: 140px;
}
@media only screen and (max-width:767px) {
  .archive main {
    padding-top: 0;
  }
}

.single .l-header {
  background-color: transparent;
}
.single main {
  padding-top: 140px;
}
@media only screen and (max-width:767px) {
  .single main {
    padding-top: 0;
  }
}
.single .wp-block-heading {
  font-size: 24px;
  margin: 32px 0 16px;
  border-bottom: 2px solid #003461;
  display: inline-block;
  padding: 0 16px;
}
@media only screen and (max-width:767px) {
  .single .wp-block-heading {
    font-size: 20px;
  }
}
.single .wp-block-image {
  margin: 16px 0;
}

.wpcf7-form {
  width: 100%;
  max-width: 780px;
  margin: 80px auto 0;
}
@media only screen and (max-width:767px) {
  .wpcf7-form {
    padding: 0 24px;
    margin: 40px auto 0;
  }
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
@media only screen and (max-width:767px) {
  label {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.required {
  color: #f33;
  font-size: 0.9em;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #F6F4F2;
  color: #003461;
  padding: 10px;
  border-radius: 3px;
  font-size: 2.2rem;
}
@media only screen and (max-width:767px) {
  input[type=text],
input[type=email],
input[type=tel],
input[type=number],
textarea {
    font-size: 18px;
  }
}

textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
@media only screen and (max-width:767px) {
  .radio-group {
    flex-direction: column;
    gap: 8px;
  }
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

input[type=number] {
  width: 20%;
}
@media only screen and (max-width:767px) {
  input[type=number] {
    width: 100%;
  }
}

input[type=radio] {
  accent-color: #fff;
  width: 14px;
  height: 14px;
  border: 1px solid #003461;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.radio-group label:has(input:checked)::after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  background-color: #003461;
  left: 3px;
  border-radius: 50%;
}

.submit-btn {
  display: block;
  width: 100%;
  background: #003461;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 0;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 30px;
  border: 1px solid #003461;
  transition: all 0.8s;
}
@media only screen and (max-width:767px) {
  .submit-btn {
    font-size: 16px;
  }
}

.submit-btn:hover {
  background: #fff;
  color: #003461;
}

.error404 .l-header {
  background-color: transparent;
}
.error404 main {
  padding-top: 92px;
}
.error404 main .content-box {
  max-width: 740px;
  width: 100%;
  margin: 40px auto 0;
  text-align: center;
}
.error404 main .content-box h2 {
  font-size: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width:767px) {
  .error404 main .content-box h2 {
    font-size: 20px;
  }
}
.error404 main .content-box p {
  margin-top: 40px;
}
@media only screen and (max-width:767px) {
  .error404 main .content-box p {
    font-size: 1.4rem;
  }
}
.error404 .inner_text {
  font-size: 20px;
  line-height: 1.8;
}

a {
  text-align: center;
}
/*# sourceMappingURL=app.css.map */
