@charset "UTF-8";



/************************************************************************
* reset
************************************************************************/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-underline-offset: .2em;
  background: #fff;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #000;
  font-family: 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
  margin: 0;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
}

a {
  display: inline-block;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  color: inherit;
  text-decoration: none;
}

a[href='*'] {
  cursor: pointer;
}

a[href='*']:hover, a[href='*']:focus-visible {
  opacity: .7;
}

img,
svg {
  display: inline-block;
  vertical-align: top;
  border: none;
  width: 100%;
  max-width: 100%;
  height: auto;
}

video {
  width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

address {
  font-style: italic;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
}

abbr,
acronym {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

code,
kbd {
  background-color: #F8F8F8;
  padding: .25em .5em;
}

em {
  font-style: italic;
  font-weight: 700;
}

pre {
  display: block;
  background-color: #F8F8F8;
  padding: 1em 2em;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

var {
  background-color: #F8F8F8;
  padding: .25em .5em;
  font-style: italic;
}

/************************************************************************
* end reset
************************************************************************/
.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

[data-target] {
  cursor: pointer;
}

html {
  scrollbar-gutter: stable;
  font-size: 16px;
}

button {
  color: #000;
}

/************************************************************************
* layout
************************************************************************/
body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.fadeIn {
  opacity: 0;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  margin-top: auto;
}

/************************************************************************
* base
************************************************************************/
a[target=_blank]:not([class]) {
  -webkit-transition: color .3s;
  transition: color .3s;
}

a[target=_blank]:not([class])::after {
  display: inline-block;
  -webkit-mask-image: url('../img/common/icon-outerLink.svg');
  mask-image: url('../img/common/icon-outerLink.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-left: .7647058824em;
  background-color: currentColor;
  width: .8529411765em;
  height: .7647058824em;
  font-weight: 900;
  content: '';
}

a:not([class]) {
  color: #03c;
}

a:not([class]):visited {
  color: #639;
}

a:not([class]):hover {
  text-decoration: underline;
}

table {
  margin-right: auto;
  margin-left: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: auto;
  min-width: 100%;
  table-layout: fixed;
}

th,
td {
  border: 1px solid;
}

address {
  font-style: normal;
}

details .icon {
  aspect-ratio: 1;
  display: block;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

details .icon::before, details .icon::after {
  inset: 0;
  position: absolute;
  margin: auto;
  background-color: #000;
  width: 13px;
  width: .8125rem;
  height: 1px;
  content: '';
}

details .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

details[open] > summary .icon::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

details.is-closing[open] > summary .icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

summary {

  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {

  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

/************************************************************************
* end base
************************************************************************/

/************************************************************************
* form
************************************************************************/
form {
  margin: 0;
  padding: 0;
}

form button[type=submit],
form input[type=submit],
form input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: auto;
}

form button[type=submit]:hover, form button[type=submit]:focus-visible,
form input[type=submit]:hover,
form input[type=submit]:focus-visible,
form input[type=button]:hover,
form input[type=button]:focus-visible {
  outline: none;
}

form button[type=submit]:disabled,
form input[type=submit]:disabled,
form input[type=button]:disabled {
  cursor: default;
  border-color: transparent;
  background-color: #b2b2b2;
  pointer-events: none;
  color: #fff;
}

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

label {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  padding: 8px;
  padding: .5rem;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

textarea:hover, textarea:focus-visible {
  outline: none;
}

textarea:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

textarea ::-moz-focus-inner {
  border: none;
  padding: 0;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0 0 0 1.875em;
  line-height: 1.5;
}

input[type=radio] + span::before {
  display: block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=radio] + span::after {
  display: block;
  position: absolute;
  top: .5lh;
  left: .5em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-radius: 50%;
  background: #707070;
  width: .625em;
  height: .625em;
  content: '';
}

input[type=radio]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  position: absolute;
  vertical-align: middle;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: auto;
  line-height: 1.5;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  padding-left: 1.875em;
  line-height: 1.5;
}

input[type=checkbox] + span::before {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #707070;
  width: 1.625em;
  height: 1.625em;
  content: '';
}

input[type=checkbox] + span::after {
  display: inline-block;
  position: absolute;
  top: .5lh;
  left: 0;
  -webkit-transform: translateY(-70%) translateX(.5em) rotate(45deg);
  transform: translateY(-70%) translateX(.5em) rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity .3s ease 0s;
  transition: opacity .3s ease 0s;
  border-right: .25em solid #0C4A6E;
  border-bottom: .25em solid #0C4A6E;
  width: .8125em;
  height: 1.625em;
  content: '';
}

input[type=checkbox]:focus-visible + span::before {
  outline: -webkit-focus-ring-color auto 5px;
}

input[type=checkbox]:checked:focus-visible + span::before {
  outline: none;
}

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

input[type=number], input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #707070;
  border-radius: 0;
  padding: .4em 2.4em .4em .8em;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #707070;
}

select:focus-visible {
  outline: initial;
}

select:invalid {
  color: #b2b2b2;
}

select:not(:disabled) {
  cursor: pointer;
}

:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

/************************************************************************
* 基本形
************************************************************************/
.c-btn {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset -.25rem -.25rem .5rem rgba(0, 0, 0, .3), inset .25rem .25rem .5rem rgba(255, 255, 255, .6);
  box-shadow: inset -.25rem -.25rem .5rem rgba(0, 0, 0, .3), inset .25rem .25rem .5rem rgba(255, 255, 255, .6);
  border-radius: .75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#0fba43), to(#0d8f35));
  background: linear-gradient(to bottom, #0fba43, #0d8f35);
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 42px;
  padding-left: 2.625rem;
  width: 626px;
  width: 39.125rem;
  min-height: 130px;
  min-height: 8.125rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  text-align: center;
  text-decoration: none;
}

.c-btn__label {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
  text-shadow: .125rem .125rem .125rem rgba(0, 0, 0, .25);
}

.c-btn__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: .125rem .125rem .125rem rgba(0, 0, 0, .25);
  box-shadow: .125rem .125rem .125rem rgba(0, 0, 0, .25);
  border-radius: 50%;
  background-color: #fff;
  width: 35px;
  width: 2.1875rem;
  height: 35px;
  height: 2.1875rem;
}

.c-btn__icon::before {
  display: block;
  -webkit-transform: translateX(.125rem);
  transform: translateX(.125rem);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#0d8f35), color-stop(40%, #0fba43), color-stop(60%, #0fba43), to(#0d8f35));
  background: linear-gradient(to bottom, #0d8f35 0%, #0fba43 40%, #0fba43 60%, #0d8f35 100%);
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  content: '';
}

/************************************************************************
* modifier
************************************************************************/
.c-btn.c-btn--shine {
  position: relative;
  overflow: hidden;
}

.c-btn.c-btn--shine::before {

  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .8)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .8) 100%);

  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  content: '';
}

.c-btn.c-btn--shine:hover, .c-btn.c-btn--shine:focus-visible {
  opacity: 1;
  border-color: #0C4A6E;
  background-color: #0C4A6E;
  color: #fff;
}

.c-btn.c-btn--shine:hover::before, .c-btn.c-btn--shine:focus-visible::before {
  -webkit-animation: shine .7s;
  animation: shine .7s;
}

@-webkit-keyframes shine {

  100% {
    left: 125%;
  }
}

@keyframes shine {

  100% {
    left: 125%;
  }
}

.c-btn--arrowRight {
  position: relative;
  padding-right: 2em;
  padding-left: 1.38em;
}

.c-btn--arrowRight::after {
  position: absolute;
  top: 50%;
  right: .83em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font: var(--fa-font-solid);
  font-weight: 900;
  content: '\f061';
}

.c-btn--yellow {
  background-color: yellow;
  color: #222;
}

.c-btn--yellow:hover, .c-btn--yellow:focus {
  border-color: yellow;
  color: #222;
}

/************************************************************************
* バリエーション:角丸ボタン
************************************************************************/
.c-roundedBtn {
  display: inline-block;
  -webkit-transition: .25s;
  transition: .25s;
  border: 2px solid transparent;
  border-radius: 10px;
  border-bottom-color: rgb(6.9836065574, 43.0655737705, 64.0163934426);
  background-color: #0C4A6E;
  padding: 15px 10px;
  width: 236px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

.c-roundedBtn:hover, .c-roundedBtn:focus {
  border-color: currentColor;
  background-color: #fff;
  color: #0C4A6E;
}

/************************************************************************
* バリエーション：アイコン付き小ボタン
************************************************************************/
.c-beforeIconBtn {
  display: inline-block;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid currentColor;
  padding: .2em .3em;
  color: #0C4A6E;
  text-decoration: none;
}

.c-beforeIconBtn:hover, .c-beforeIconBtn:focus {
  background-color: #0C4A6E;
  color: #fff;
}

.c-beforeIconBtn::before {
  display: inline-block;
  margin-right: .5em;
  font: var(--fa-font-solid);
  font-weight: 900;
}

.c-beforeIconBtn--download::before {
  content: '\f019';
}

.c-totop {
  display: block;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 20px;
  bottom: 1.25rem;
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #65a7ce;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:hover, .c-totop.is-active:focus {
  opacity: 1;
}

/************************************************************************
* p-company
************************************************************************/
body.company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 750px;
  max-width: 46.875rem;
  min-height: 100vh;
}

body.company .l-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-main .p-company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
}

.p-company__inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-right: 19px;
  padding-right: 1.1875rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
  width: 100%;
}

.p-company__title {
  color: #5D4523;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-company__title + .p-company__contents {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-company__list {
  margin: 0;
}

.p-company__term {
  display: inline;
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-company__term::after {
  content: '：';
}

.p-company__desc {
  display: inline;
  margin: 0;
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-company__desc::after {
  display: block;
  content: '';
}

.p-company__mail {
  color: #5D4523;
  text-decoration: none;
}

.p-drawer {
  visibility: hidden;
  pointer-events: none;
}

.p-drawer.is-opened,
.p-drawer.is-closing {
  visibility: visible;
  pointer-events: auto;
}

.p-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 40;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  pointer-events: none;
}

.p-drawer.is-opened .p-drawer__overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.p-drawer__panel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 41;
  margin-right: auto;
  margin-left: auto;
  background-color: #7b6c57;
  width: 100%;
  max-width: 750px;
  max-width: 46.875rem;
  min-height: 100dvh;
  overflow: hidden;
}

.p-drawer__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #000;
  background-image: url('../img/header-bg.webp?v=20260726');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 32px;
  padding-left: 2rem;
  width: 100%;
  min-height: 108px;
  min-height: 6.75rem;
}

.p-drawer__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 270px;
  width: 16.875rem;
}

.p-drawer__logo a {
  display: block;
}

.p-drawer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-drawer__actions {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-drawer__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset -.25rem -.25rem .375rem rgba(0, 0, 0, .4), inset .25rem .25rem .375rem rgba(255, 255, 255, .4);
  box-shadow: inset -.25rem -.25rem .375rem rgba(0, 0, 0, .4), inset .25rem .25rem .375rem rgba(255, 255, 255, .4);
  border-radius: .25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#0fba43), to(#0d8f35));
  background: linear-gradient(to bottom, #0fba43, #0d8f35);
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 300px;
  width: 18.75rem;
  min-height: 68px;
  min-height: 4.25rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
  text-shadow: .125rem .125rem .125rem rgba(0, 0, 0, .25);
}

.p-drawer__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 53px;
  width: 3.3125rem;
  height: 53px;
  height: 3.3125rem;
}

.p-drawer__close-icon {
  display: block;
  position: relative;
  width: 53px;
  width: 3.3125rem;
  height: 53px;
  height: 3.3125rem;
}

.p-drawer__close-icon::before,
.p-drawer__close-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: .15625rem;
  background-color: #fff;
  width: 52.5px;
  width: 3.28125rem;
  height: 5px;
  height: .3125rem;
  content: '';
}

.p-drawer__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-drawer__nav {
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .35s ease;
  transition: -webkit-transform .35s ease;
  transition: transform .35s ease;
  transition: transform .35s ease, -webkit-transform .35s ease;
  background-color: #7b6c57;
  padding-top: 80px;
  padding-top: 5rem;
  padding-right: 160px;
  padding-right: 10rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 160px;
  padding-left: 10rem;
  min-height: calc(100dvh - 6.75rem);
  overflow-y: auto;
}

.p-drawer.is-opened .p-drawer__nav {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.p-drawer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-drawer__nav-link {
  display: block;
  border-bottom: 1px solid #fff;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  width: 430px;
  width: 26.875rem;
  color: #fff;
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.p-drawer__nav-item:first-child .p-drawer__nav-link {
  padding-top: 0;
}

.p-drawer__instagram {
  display: block;
  margin-top: 32px;
  margin-top: 2rem;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  line-height: 0;
}

.p-drawer__instagram img {
  display: block;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
}

.p-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #c8beb4;
  padding-top: 16px;
  padding-top: 1rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-left: 32px;
  padding-left: 2rem;
  width: 100%;
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer__nav-item + .p-footer__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 16px;
  margin-left: 1rem;
}

.p-footer__nav-item + .p-footer__nav-item::before {
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  content: '｜';
}

.p-footer__nav-link {
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  text-decoration: none;
}

.p-footer__nav-item + .p-footer__nav-item .p-footer__nav-link {
  margin-left: 16px;
  margin-left: 1rem;
  letter-spacing: .02em;
}

.p-footer__copyright {
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  text-align: center;
}

/************************************************************************
* p-fv
************************************************************************/
.p-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #000;
  background-image: url('../img/header-bg.webp?v=20260726');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 32px;
  padding-left: 2rem;
  width: 100%;
  min-height: 108px;
  min-height: 6.75rem;
}

.p-header__logo {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 270px;
  width: 16.875rem;
}

.p-header__logo a {
  display: block;
}

.p-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__actions {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-header__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset -.25rem -.25rem .375rem rgba(0, 0, 0, .4), inset .25rem .25rem .375rem rgba(255, 255, 255, .4);
  box-shadow: inset -.25rem -.25rem .375rem rgba(0, 0, 0, .4), inset .25rem .25rem .375rem rgba(255, 255, 255, .4);
  border-radius: .25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#0fba43), to(#0d8f35));
  background: linear-gradient(to bottom, #0fba43, #0d8f35);
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 300px;
  width: 18.75rem;
  min-height: 68px;
  min-height: 4.25rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, .25);
  text-shadow: .125rem .125rem .125rem rgba(0, 0, 0, .25);
}

.p-header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  width: 53px;
  width: 3.3125rem;
  height: 45px;
  height: 2.8125rem;
}

.p-header__menu-bar {
  display: block;
  border-radius: .15625rem;
  background-color: #fff;
  width: 100%;
  height: 5px;
  height: .3125rem;
}

/************************************************************************
* p-home
************************************************************************/
.p-home {
  margin: 0 auto;
  max-width: 750px;
  max-width: 46.875rem;
}

/************************************************************************
* p-cta
************************************************************************/
.p-cta__content {
  position: relative;
}

.p-cta__btn {
  position: absolute;
  top: 614px;
  top: 38.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/************************************************************************
* p-flow
************************************************************************/
.p-flow__content {
  position: relative;
}

.p-flow__btn {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 868px;
  top: 54.25rem;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: inset -.25rem -.25rem .5rem rgba(0, 0, 0, .3), inset .25rem .25rem .5rem rgba(255, 255, 255, .6);
  box-shadow: inset -.25rem -.25rem .5rem rgba(0, 0, 0, .3), inset .25rem .25rem .5rem rgba(255, 255, 255, .6);
  border-radius: 12.5rem;
  background-color: #d76c02;
  padding-top: 32px;
  padding-top: 2rem;
  padding-right: 30px;
  padding-right: 1.875rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-left: 54px;
  padding-left: 3.375rem;
  width: 456px;
  width: 28.5rem;
  min-height: 96px;
  min-height: 6rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  text-decoration: none;
}

.p-flow__btn-label {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-flow__btn-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5627 10.5627L2.11223 19.0131L0 16.9009L7.39431 9.50654L0 2.11223L2.11223 0L10.5627 8.45043C10.8427 8.73056 11 9.11044 11 9.50654C11 9.90265 10.8427 10.2825 10.5627 10.5627Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5627 10.5627L2.11223 19.0131L0 16.9009L7.39431 9.50654L0 2.11223L2.11223 0L10.5627 8.45043C10.8427 8.73056 11 9.11044 11 9.50654C11 9.90265 10.8427 10.2825 10.5627 10.5627Z' fill='white'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #fff;
  width: 11px;
  width: .6875rem;
  height: 19px;
  height: 1.1875rem;
}

/************************************************************************
* p-faq
************************************************************************/
.p-faq {
  background-color: #fff;
}

.p-faq__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 43px;
  padding-top: 2.6875rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 32px;
  padding-left: 2rem;
  width: 100%;
}

.p-faq__title {
  line-height: 0;
}

.p-faq__title img {
  display: block;
  width: 421px;
  width: 26.3125rem;
  height: auto;
}

.p-faq__group {
  margin-top: 60px;
  margin-top: 3.75rem;
  width: 686px;
  width: 42.875rem;
}

.p-faq__group-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #5d4523;
  padding-top: 16px;
  padding-top: 1rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  width: 100%;
  min-height: 64px;
  min-height: 4rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.p-faq__list {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-faq__item + .p-faq__item {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-faq__question {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background-color: #f5dcc3;
  padding: 16px;
  padding: 1rem;
  width: 100%;
  list-style: none;
}

.p-faq__question::-webkit-details-marker {
  display: none;
}

.p-faq__q-mark,
.p-faq__a-mark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-faq__q-mark {
  background-color: #d76c02;
}

.p-faq__a-mark {
  background-color: #c8beb4;
}

.p-faq__q-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  line-height: 0;
  text-align: left;
}

.p-faq__q-text img {
  display: block;
  width: 100%;
  height: auto;
}

.p-faq__toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32px;
  width: 2rem;
  height: 42px;
  height: 2.625rem;
  color: #5d4523;
  font-family: 'Noto Sans JP', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
}

.p-faq__toggle::before {
  content: '＋';
}

.p-faq__details.is-opened .p-faq__toggle::before {
  content: '－';
}

.p-faq__answer {
  gap: 16px;
  gap: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-right: 1px solid #f5dcc3;
  border-bottom: 1px solid #f5dcc3;
  border-left: 1px solid #f5dcc3;
  background-color: #fff;
  padding-top: 16px;
  padding-top: 1rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-left: 16px;
  padding-left: 1rem;
  width: 100%;
  overflow: hidden;
}

.p-faq__a-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  line-height: 0;
  text-align: left;
}

.p-faq__a-text img {
  display: block;
  width: 100%;
  height: auto;
}

/************************************************************************
* p-access
************************************************************************/
.p-access__content {
  position: relative;
}

.p-access__map {
  position: absolute;
  top: 684px;
  top: 42.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 640px;
  width: 40rem;
  height: 480px;
  height: 30rem;
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
}

/************************************************************************
* p-contact
************************************************************************/
.p-contact {
  background-color: #fff;
}

.p-contact__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 90px;
  padding-top: 5.625rem;
  padding-right: 32px;
  padding-right: 2rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 32px;
  padding-left: 2rem;
  width: 100%;
}

.p-contact__title {
  line-height: 0;
}

.p-contact__title img {
  display: block;
  width: 557px;
  width: 34.8125rem;
  height: auto;
}

.p-contact__form {
  margin-top: 64px;
  margin-top: 4rem;
  width: 100%;
  max-width: 686px;
  max-width: 42.875rem;
}

.p-contact__item + .p-contact__item {
  margin-top: 32px;
  margin-top: 2rem;
}

fieldset.p-contact__item {
  border: none;
  padding: 0;
}

.p-contact__label {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5d4523;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-contact__required {
  display: inline-block;
  background-color: #e60012;
  padding-top: 2px;
  padding-top: .125rem;
  padding-right: 8px;
  padding-right: .5rem;
  padding-bottom: 2px;
  padding-bottom: .125rem;
  padding-left: 8px;
  padding-left: .5rem;
  color: #fff;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-contact__item .p-contact__label + .p-contact__input,
.p-contact__item .p-contact__label + .p-contact__textarea {
  margin-top: 12px;
  margin-top: .75rem;
}

.p-contact__input,
.p-contact__textarea {
  display: block;
  border: 1px solid #c8beb4;
  border-radius: .25rem;
  background-color: #fff;
  padding-top: 16px;
  padding-top: 1rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  width: 100%;
  color: #5d4523;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-contact__input::-webkit-input-placeholder,
.p-contact__textarea::-webkit-input-placeholder {
  color: #c8beb4;
}

.p-contact__input::-moz-placeholder,
.p-contact__textarea::-moz-placeholder {
  color: #c8beb4;
}

.p-contact__input::-ms-input-placeholder,
.p-contact__textarea::-ms-input-placeholder {
  color: #c8beb4;
}

.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: #c8beb4;
}

.p-contact__textarea {
  min-height: 160px;
  min-height: 10rem;
  resize: vertical;
}

.p-contact__options {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-top: .75rem;
}

.p-contact__option {
  gap: 8px;
  gap: .5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.p-contact__radio {
  accent-color: #d76c02;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}

.p-contact__option-text {
  color: #5d4523;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-contact__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
  margin-top: 3rem;
}

.p-contact__submit {
  cursor: pointer;
  border: none;
  padding-right: 100px;
  padding-right: 6.25rem;
  padding-left: 100px;
  padding-left: 6.25rem;
}

/************************************************************************
* p-pagination
************************************************************************/
.p-pagination__inner {
  letter-spacing: 0;
  text-align: center;
}

.page-numbers {
  display: inline-block;
  border: 1px solid #0C4A6E;
  width: 2em;
  height: 2em;
  color: #0C4A6E;
  font-size: 14px;
  font-size: .875rem;
  letter-spacing: 0;
  line-height: 2;
}

.page-numbers + .page-numbers {
  margin-left: 10px;
  margin-left: .625rem;
}

.page-numbers.current {
  background-color: #0C4A6E;
  color: #fff;
}

.page-numbers.dots {
  border: none;
}

/************************************************************************
* p-privacy-policy
************************************************************************/
body.privacy-policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 750px;
  max-width: 46.875rem;
  min-height: 100vh;
}

body.privacy-policy .l-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-main .p-privacy-policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
}

.p-privacy-policy__inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-right: 19px;
  padding-right: 1.1875rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-left: 19px;
  padding-left: 1.1875rem;
  width: 100%;
}

.p-privacy-policy__title {
  color: #5D4523;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-privacy-policy__title + .p-privacy-policy__lead {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-privacy-policy__lead {
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-privacy-policy__lead + .p-privacy-policy__contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-privacy-policy__section + .p-privacy-policy__section {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-privacy-policy__section-title {
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-privacy-policy__section-title + .p-privacy-policy__section-text,
.p-privacy-policy__section-title + .p-privacy-policy__list,
.p-privacy-policy__section-title + .p-privacy-policy__contact {
  margin-top: 0;
}

.p-privacy-policy__section-text {
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-privacy-policy__section-text + .p-privacy-policy__list,
.p-privacy-policy__list + .p-privacy-policy__list {
  margin-top: 0;
}

.p-privacy-policy__list + .p-privacy-policy__section-text {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-privacy-policy__list + .p-privacy-policy__section-text + .p-privacy-policy__section-text {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-privacy-policy__section-text + .p-privacy-policy__contact {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-privacy-policy__list {
  padding-left: 0;
  list-style: none;
}

.p-privacy-policy__section-text + .p-privacy-policy__list,
.p-privacy-policy__list + .p-privacy-policy__list {
  margin-top: 0;
}

.p-privacy-policy__list-item {
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-privacy-policy__list-item + .p-privacy-policy__list-item {
  margin-top: 0;
}

.p-privacy-policy__contact {
  font-style: normal;
}

.p-privacy-policy__contact-name,
.p-privacy-policy__contact-text {
  color: #5D4523;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.p-privacy-policy__contact-name + .p-privacy-policy__contact-text,
.p-privacy-policy__contact-text + .p-privacy-policy__contact-text {
  margin-top: 0;
}

/************************************************************************
* p-thanks
************************************************************************/
body.thanks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 auto;
  max-width: 750px;
  max-width: 46.875rem;
  min-height: 100vh;
}

body.thanks .l-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-main .p-thanks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #7b6c57;
  width: 100%;
}

.p-thanks__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 70px;
  padding-top: 4.375rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  width: 100%;
}

.p-thanks__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-thanks__lead {
  line-height: 0;
  text-align: center;
}

.p-thanks__lead img {
  display: block;
  width: 411px;
  width: 25.6875rem;
  height: auto;
}

.p-thanks__lead + .p-thanks__title {
  margin-top: 10px;
  margin-top: .625rem;
}

.p-thanks__title {
  color: #fff;
  font-family: 'Shippori Mincho B1', 'Shippori Mincho', 'Shippori Mincho', serif;
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.p-thanks__header + .p-thanks__contents {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-thanks__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.p-thanks__text {
  color: #e3ded9;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-thanks__text + .p-thanks__text {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-thanks__contents + .p-thanks__footer {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-thanks__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.p-thanks__btn {
  gap: 24px;
  gap: 1.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: inset -.25rem -.25rem .5rem rgba(0, 0, 0, .3), inset .25rem .25rem .5rem rgba(255, 255, 255, .6);
  box-shadow: inset -.25rem -.25rem .5rem rgba(0, 0, 0, .3), inset .25rem .25rem .5rem rgba(255, 255, 255, .6);
  border-radius: 12.5rem;
  background-color: #d76c02;
  padding-top: 32px;
  padding-top: 2rem;
  padding-right: 64px;
  padding-right: 4rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
  padding-left: 64px;
  padding-left: 4rem;
  width: 353px;
  width: 22.0625rem;
  min-height: 96px;
  min-height: 6rem;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic New', sans-serif, sans-serif;
  text-decoration: none;
}

.p-thanks__btn-label {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.p-thanks__btn-icon {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5627 10.5627L2.11223 19.0131L0 16.9009L7.39431 9.50654L0 2.11223L2.11223 0L10.5627 8.45043C10.8427 8.73056 11 9.11044 11 9.50654C11 9.90265 10.8427 10.2825 10.5627 10.5627Z' fill='white'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  display: block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='20' viewBox='0 0 11 20' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5627 10.5627L2.11223 19.0131L0 16.9009L7.39431 9.50654L0 2.11223L2.11223 0L10.5627 8.45043C10.8427 8.73056 11 9.11044 11 9.50654C11 9.90265 10.8427 10.2825 10.5627 10.5627Z' fill='white'/%3E%3C/svg%3E");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background-color: #fff;
  width: 11px;
  width: .6875rem;
  height: 19px;
  height: 1.1875rem;
}

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

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

.u-kerning--0 {
  letter-spacing: 0;
}

.u-kerning--01 {
  letter-spacing: .01em;
}

.u-kerning--02 {
  letter-spacing: .02em;
}

.u-kerning--03 {
  letter-spacing: .03em;
}

.u-kerning--04 {
  letter-spacing: .04em;
}

.u-kerning--05 {
  letter-spacing: .05em;
}

.u-kerning--06 {
  letter-spacing: .06em;
}

.u-kerning--07 {
  letter-spacing: .07em;
}

.u-kerning--08 {
  letter-spacing: .08em;
}

.u-kerning--09 {
  letter-spacing: .09em;
}

.u-kerning--10 {
  letter-spacing: .1em;
}

.u-kerning--01 {
  letter-spacing: -.01em;
}

.u-kerning---02 {
  letter-spacing: -.02em;
}

.u-kerning---03 {
  letter-spacing: -.03em;
}

.u-kerning---04 {
  letter-spacing: -.04em;
}

.u-kerning---05 {
  letter-spacing: -.05em;
}

.u-kerning---06 {
  letter-spacing: -.06em;
}

.u-kerning---07 {
  letter-spacing: -.07em;
}

.u-kerning---08 {
  letter-spacing: -.08em;
}

.u-kerning---09 {
  letter-spacing: -.09em;
}

.u-kerning---10 {
  letter-spacing: -.1em;
}

.u-kerning---11 {
  letter-spacing: -.11em;
}

.u-kerning---12 {
  letter-spacing: -.12em;
}

.u-kerning---13 {
  letter-spacing: -.13em;
}

.u-kerning--14 {
  letter-spacing: -.14em;
}

.u-kerning---15 {
  letter-spacing: -.15em;
}

.u-kerning---18 {
  letter-spacing: -.18em;
}

.u-overflowHidden {
  overflow: hidden !important;
}

@media screen and (min-width: 750px) {

  :root {
    --header-height: 80px;
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1120px;
  }

  .l-container.l-container--narrow {
    max-width: 908px;
  }

  .l-container.l-container--wide {
    max-width: 1332px;
  }
}

@media screen and (min-width: 750px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 751px) and (max-width: 1023px) {

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

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

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

@media screen and (max-width: 749px) {

  html {
    font-size: 2.1333333333vw;
  }

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}
/*# sourceMappingURL=map/style.css.map */