@charset "UTF-8";
@font-face {
  font-family: "MyYuMinchoC";
  src: local("YuMincho-Demibold"), local("YuMincho Demibold");
  /* for Mac */
}
.mb0 {
  margin-bottom: 0;
}

/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

del {
  text-decoration: line-through;
}

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

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

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

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  font-size: 62.5%;
  height: auto;
  overflow: visible;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #141414;
  height: auto;
  overflow: visible;
  font-weight: 500;
}
body.is__fix {
  overflow: hidden;
  height: 100%;
  position: static;
}
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
body.fade:after {
  opacity: 1;
}

img {
  vertical-align: bottom;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.fadein.jsActive {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer {
  position: relative;
  padding-bottom: 35px;
  margin-top: -2.73vw;
}
.footer_type_index {
  background-color: #fafaf7;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 45px;
  }
}
.footer:before {
  content: "";
  width: 100%;
  height: auto;
  background: url(../images/bg_page_foot.svg) no-repeat center center/cover;
  aspect-ratio: 1460/186;
  position: absolute;
  top: 0;
  left: 0;
}
.footer:after {
  content: "";
  width: 100%;
  height: calc(100% - 12.73vw);
  display: block;
  position: absolute;
  left: 0;
  top: 12.73vw;
  background-color: #fafaf7;
}
.footer__inner {
  position: relative;
  z-index: 1;
  padding-top: 12.74vw;
  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;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1350px) {
  .footer__inner {
    padding-top: 255px;
  }
}
@media screen and (max-width: 1060px) {
  .footer__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 850px) {
  .footer__inner {
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: 24vw;
  }
}
.footer__info {
  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;
}
@media screen and (max-width: 1060px) {
  .footer__info {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.footer__copy {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 25px;
  }
}
.footer__copyText {
  font-size: 1.4rem;
  color: #2b2b2b;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__copyText {
    font-size: 1.2rem;
    font-weight: 500;
  }
}

.returnTop {
  width: 195px;
  position: absolute;
  top: 11vw;
  right: 55px;
  z-index: 2;
}
@media screen and (max-width: 850px) {
  .returnTop {
    display: none;
  }
}
.returnTop__link:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1060px) {
  .fInfo {
    margin-bottom: 30px;
  }
}
.fInfo__logo {
  width: 172px;
  margin-right: 70px;
}
@media screen and (max-width: 1060px) {
  .fInfo__logo {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 850px) {
  .fInfo__logo {
    width: 100px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fInfo__logo {
    width: 75px;
  }
}
.fInfo__logoLink:hover {
  opacity: 0.75;
}
.fInfo__dl {
  line-height: 1.866;
  margin-bottom: 15px;
}
@media screen and (max-width: 1060px) {
  .fInfo__dl {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .fInfo__dl {
    font-size: 1.4rem;
    line-height: 2.08;
  }
}
.fInfo__dt {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.866;
}
@media screen and (max-width: 850px) {
  .fInfo__dt {
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .fInfo__dt {
    font-size: 1.4rem;
    line-height: 2.08;
    font-weight: 500;
  }
}
.fInfo__dd {
  font-size: 1.5rem;
  line-height: 1.866;
}
@media screen and (max-width: 768px) {
  .fInfo__dd {
    font-size: 1.4rem;
    line-height: 2.08;
    font-weight: 500;
  }
}
.fInfo__ddTel {
  text-decoration: none;
  color: inherit;
}
.fInfo__links {
  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;
}
.fInfo__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.fInfo__snsLink:hover {
  opacity: 0.75;
}
.fInfo__snsImg_type_insta {
  width: 25px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fInfo__snsImg_type_insta {
    width: 30px;
  }
}
.fInfo__reservation {
  width: 190px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #46814f;
  border: 1px solid #46814f;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .fInfo__reservation {
    width: 176px;
    height: 30px;
    margin-left: 10px;
    font-size: 1.2rem;
  }
}
.fInfo__reservation:before {
  content: "";
  display: block;
  width: 16.9px;
  height: 16.05px;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .fInfo__reservation:before {
    width: 13px;
    height: 11px;
    position: relative;
    top: 1px;
  }
}
.fInfo__reservation:hover {
  color: #46814f;
  background-color: #fff;
}
.fInfo__reservation:hover:before {
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%2346814f%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.fNav {
  width: 500px;
  -webkit-flex-basis: 500px;
      -ms-flex-preferred-size: 500px;
          flex-basis: 500px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 100px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .fNav {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 850px) {
  .fNav {
    padding-left: 0;
  }
}
.fNav:before {
  content: "";
  display: block;
  width: 1px;
  height: 204px;
  background-color: #dcdddd;
  position: absolute;
  left: 0;
  top: calc(50% - 102px);
}
@media screen and (max-width: 1060px) {
  .fNav:before {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .fNav__list:first-of-type {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .fNav__list {
    width: 100%;
  }
}
.fNav__list:last-of-type {
  padding-left: 80px;
}
@media screen and (max-width: 1060px) {
  .fNav__list:last-of-type {
    padding-left: 0;
    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;
  }
}
@media screen and (max-width: 768px) {
  .fNav__list:last-of-type {
    padding-left: 0;
  }
}
.fNav__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;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 2.4;
}
@media screen and (max-width: 1060px) {
  .fNav__item:after {
    content: "";
    display: block;
    width: 1px;
    background-color: #141414;
    height: 14px;
    margin: 0 1em;
  }
}
@media screen and (max-width: 1060px) and (max-width: 1060px) {
  .fNav__item:last-of-type:after {
    display: none;
  }
}
@media screen and (max-width: 1060px) {
  .fNav__item_type_pc {
    display: none;
  }
}
.fNav__item:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #c9caca;
  margin-right: 8px;
}
@media screen and (max-width: 1060px) {
  .fNav__item:before {
    display: none;
  }
}
.fNav__underItem {
  line-height: 2.4;
  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;
}
@media screen and (max-width: 768px) {
  .fNav__underItem {
    line-height: 1.666;
  }
}
.fNav__underItem:before {
  content: "-";
  padding-right: 0.25em;
  text-indent: 1em;
}
.fNav__underLink {
  color: #242424;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .fNav__underLink {
    font-size: 1.2rem;
    line-height: 1.666;
  }
}
.fNav__underLink:hover {
  text-decoration: underline;
}
.fNav__link {
  color: #242424;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.4;
}
@media screen and (max-width: 1060px) {
  .fNav__link {
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .fNav__link {
    font-size: 1.2rem;
    line-height: 1.666;
  }
}
.fNav__link:hover {
  text-decoration: underline;
}

.gnav {
  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;
}
.gnav__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;
}
@media screen and (max-width: 1000px) {
  .gnav__list {
    display: none;
  }
}
.gnav__item {
  margin-right: 2em;
  position: relative;
}
@media screen and (max-width: 1130px) {
  .gnav__item {
    margin-right: 1.5em;
  }
}
.gnav__item:last-of-type {
  margin-right: 0;
}
.gnav__item_type_ham {
  display: none;
}
.gnav__item_type_pullDown.jsActive .gnav__pullDown {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.gnav__link {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}
.gnav__link:hover {
  text-decoration: underline;
}
.gnav__pullDown {
  visibility: hidden;
  position: absolute;
  bottom: calc(-100% - 60px);
  padding-top: 30px;
  left: -20px;
  z-index: -1;
  opacity: 0;
}
.gnav__pullDownLink {
  width: 200px;
  border: 1px solid #141414;
  color: inherit;
  padding: 15px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 6px;
  background-color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hamContents {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: black;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1160px) {
  .hamContents {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.hamContents__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1060px;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .hamContents__inner {
    min-width: 100vw;
  }
}
@media screen and (max-width: 1160px) {
  .hamContents__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-height: 100vh;
    overflow: scroll;
  }
}
@media screen and (max-width: 768px) {
  .hamContents__inner {
    padding: 0 30px 90px 30px;
  }
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo {
    width: 100%;
  }
}
.hamContentsInfo__logo {
  margin-bottom: 90px;
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo__logo {
    margin-bottom: 0px;
    position: relative;
  }
}
.hamContentsInfo__link {
  max-width: 210px;
  width: 13.7vw;
  display: block;
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo__link {
    width: 124px;
    padding: 15px 20px 0 20px;
    margin-bottom: 0px;
    position: relative;
  }
}
@media screen and (max-width: 850px) {
  .hamContentsInfo__link {
    width: 90px;
    padding: 15px 13px 0 21px;
  }
}
@media screen and (max-width: 768px) {
  .hamContentsInfo__link {
    left: -30px;
  }
}
@media screen and (max-width: 850px) {
  .hamContentsInfo__img {
    width: 65px;
    min-width: 65px;
    height: auto;
  }
}
.hamContentsInfo__dl {
  margin-top: 90px;
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo__dl {
    display: none;
  }
}
.hamContentsInfo__dt {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.866;
}
.hamContentsInfo__dd {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.866;
}
.hamContentsInfo__ddTel {
  color: #fff;
  text-decoration: none;
}
.hamContentsInfo__ddTel:hover {
  text-decoration: underline;
}
.hamContentsInfo__btn {
  width: 235px;
  height: 52px;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #141414;
  text-decoration: none;
  border-radius: 6px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo__btn {
    height: 56px;
    font-size: 1.6rem;
    width: calc(100% - 30px);
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .hamContentsInfo__btn {
    width: calc(100% - 20px);
    margin-left: 10px;
  }
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo__btn_type_pc {
    display: none;
  }
}
.hamContentsInfo__btn_type_sp {
  display: none;
}
@media screen and (max-width: 1160px) {
  .hamContentsInfo__btn_type_sp {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-top: 20px;
  }
}
.hamContentsInfo__btn:before {
  content: "";
  display: block;
  width: 16.9px;
  height: 16.05px;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23141414%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  margin-right: 8px;
}
.hamContentsInfo__btn:hover {
  color: #ffffff;
  background-color: transparent;
}
.hamContentsInfo__btn:hover:before {
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.hamContentsNav {
  padding-left: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 23px;
}
@media screen and (max-width: 1260px) {
  .hamContentsNav {
    padding-left: 90px;
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media screen and (max-width: 1160px) {
  .hamContentsNav {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-left: 0;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .hamContentsNav {
    padding: 0;
  }
}
.hamContentsNav__list {
  padding: 0 48px;
}
@media screen and (max-width: 1260px) {
  .hamContentsNav__list {
    padding: 0 25px;
  }
}
@media screen and (max-width: 1160px) {
  .hamContentsNav__list {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
  }
}
.hamContentsNav__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;
  border-bottom: 1px solid #515151;
  width: 246px;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .hamContentsNav__item {
    width: 100%;
  }
  .hamContentsNav__item:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #515151;
    border-right: 1px solid #515151;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
  }
}
.hamContentsNav__item:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #707070;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .hamContentsNav__item:before {
    width: 8px;
    height: 8px;
    position: relative;
    top: 1px;
  }
}
.hamContentsNav__link {
  font-size: 2.2rem;
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  padding: 30px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hamContentsNav__link {
    font-size: 1.6rem;
    padding: 20px 0;
  }
}
.hamContentsNav__link:hover {
  text-decoration: underline;
}
.hamContentsNav__item_type_under {
  padding-left: 1.5em;
}
.hamContentsNav__item_type_under:before {
  content: "-";
  border-radius: 0;
  background-color: transparent;
  font-size: 2.4rem;
  margin-right: 0.5em;
  width: auto;
  height: auto;
  color: #fff;
  position: relative;
  top: -3px;
}
.hamContentsNav__sns {
  margin-left: 55px;
  position: relative;
  top: 30px;
}
@media screen and (max-width: 1160px) {
  .hamContentsNav__sns {
    top: 0;
    width: 100%;
    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-left: 0;
    margin-top: 30px;
  }
}
.hamContentsNav__snsLink:hover {
  opacity: 0.75;
}
.hamContentsNav__snsIcon {
  width: 25px;
  height: 25px;
}

.header {
  position: fixed;
  z-index: 3;
  width: 100vw;
  background-color: white;
}
@media screen and (max-width: 850px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
}
.header_type_top .header__logo {
  left: 5.5vw;
  top: 3.42vw;
}
@media screen and (max-width: 1160px) {
  .header_type_top .header__logo {
    left: 0;
    width: 23vw;
    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;
  }
}
@media screen and (max-width: 1000px) {
  .header_type_top .header__logo {
    top: 2vw;
  }
}
@media screen and (max-width: 850px) {
  .header_type_top .header__logo {
    left: 0;
    top: 0;
    width: 23vw;
    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;
  }
}
@media screen and (max-width: 768px) {
  .header_type_top .header__logo {
    width: 27.8vw;
  }
}
@media screen and (max-width: 430px) {
  .header_type_top .header__logo {
    width: calc(100% - 270px);
  }
}
.header__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 100vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px;
  min-height: 123px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1160px) {
  .header__inner {
    min-height: auto;
    padding: 30px 30px;
  }
}
@media screen and (max-width: 1060px) {
  .header__inner {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 850px) {
  .header__inner {
    position: static;
    padding: 0;
    min-height: auto;
  }
}
.header__logo {
  position: absolute;
  left: 40px;
  top: 25px;
  z-index: 4;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1160px) {
  .header__logo {
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 850px) {
  .header__logo {
    top: 0;
    left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 1000px) {
  .header__logo {
    top: 0;
    left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 850px) {
  .header__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__logoLink {
  display: block;
  max-width: 200px;
  width: 13.7vw;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 1160px) {
  .header__logoLink {
    width: 124px;
    padding: 15px 20px;
    border-radius: 0 0 10px 0;
  }
}
@media screen and (max-width: 850px) {
  .header__logoLink {
    width: 23vw;
    padding: 15px 13px;
    border-radius: 0 0 10px 0;
    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;
  }
}
@media screen and (max-width: 768px) {
  .header__logoLink {
    width: calc(100vw - 270px);
  }
}
.header__logoLink:hover {
  opacity: 0.75;
}
@media screen and (max-width: 850px) {
  .header__logoImg {
    width: 65px;
    height: auto;
  }
}
.header__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  top: 0;
  right: 0;
  width: 100%;
}
.header__reservation {
  position: fixed;
  right: 0;
  top: 320px;
  height: 230px;
  width: 57px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  text-decoration: none;
  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: #46814f;
  border: 1px solid #46814f;
  font-weight: 500;
  border-radius: 6px 0 0 6px;
  letter-spacing: 0.1em;
  z-index: 2;
}
@media screen and (max-width: 850px) {
  .header__reservation {
    position: static;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    width: 210px;
    height: 60px;
    border-radius: 0 0 0 0px;
  }
}
.header__reservation:before {
  content: "";
  display: block;
  width: 16.9px;
  height: 16.05px;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/cover;
  margin-bottom: 10px;
}
@media screen and (max-width: 850px) {
  .header__reservation:before {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
.header__reservation:hover {
  color: #46814f;
  background-color: #fff;
}
.header__reservation:hover:before {
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%2346814f%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/cover;
}
.header__hum {
  margin-left: 40px;
  cursor: pointer;
  z-index: 3;
}
@media screen and (max-width: 850px) {
  .header__hum {
    margin-left: 0;
    width: 60px;
    height: 60px;
    background-color: #2b2b2b;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header.jsActive .header__logo {
  opacity: 0;
  visibility: hidden;
}
.header.jsActive .header__reservation {
  z-index: -1;
}
.header.jsActive .hamContents {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.header.jsActive .ham__bars {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.header.jsActive .ham__bar {
  background-color: #fff;
}
.header.jsActive .ham__bar:nth-of-type(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 0.5px);
}
.header.jsActive .ham__bar:nth-of-type(2) {
  opacity: 0;
}
.header.jsActive .ham__bar:nth-of-type(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 0.5px);
}
.header.isScrolled .header__logo {
  top: 0;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .header.isScrolled .header__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .header.isScrolled .header__logo {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.header.isScrolled .header__logoLink {
  width: 124px;
  height: 162px;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 850px) {
  .header.isScrolled .header__logoLink {
    width: 23vw;
    padding: 15px 13px;
    border-radius: 0 0 10px 0;
    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;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header.isScrolled .header__logoLink {
    width: calc(100vw - 270px);
  }
}
.header.isScrolled .header__inner {
  padding-top: 16px;
  padding-bottom: 16px;
  min-height: auto;
}
@media screen and (max-width: 850px) {
  .header.isScrolled .header__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@-webkit-keyframes bgFade {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes bgFade {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  99% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@-webkit-keyframes listFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes listFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ham {
  position: relative;
  z-index: 3;
}
.ham__bars {
  width: 30px;
  height: 14px;
  position: relative;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
@media screen and (max-width: 850px) {
  .ham__bars {
    width: 30px;
    height: 15px;
  }
}
.ham__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2b2b2b;
  border-radius: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 850px) {
  .ham__bar {
    background-color: #fff;
  }
}
.ham__bar:nth-of-type(1) {
  top: 0;
}
.ham__bar:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
.ham__bar:nth-of-type(3) {
  top: 100%;
}

.main {
  display: block;
}

@media screen and (max-width: 1060px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.breadcrumb__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;
}
.breadcrumb__item:after {
  content: "-";
  padding: 0 0.5em;
  color: #9f9f9f;
  display: block;
  position: relative;
  top: -2px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item:after {
    padding: 0 0.5em;
  }
}
.breadcrumb__item:last-of-type:after {
  display: none;
}
.breadcrumb a {
  text-decoration: underline;
}
.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb__link {
  color: #9f9f9f;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .breadcrumb__link {
    font-size: 1rem;
  }
}

.roundBtn {
  width: 255px;
  height: 54px;
  background-color: #3e3a39;
  color: #fff;
  text-decoration: none;
  border: 1px solid #3e3a39;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 54px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .roundBtn {
    height: 40px;
    width: 100%;
  }
}
.roundBtn:hover {
  background-color: #fff;
  color: #3e3a39;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

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

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

.recipeList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -20px;
}
@media screen and (max-width: 1060px) {
  .recipeList {
    margin: -20px -10px;
  }
}
@media screen and (max-width: 768px) {
  .recipeList {
    margin: 0;
  }
}
.recipeList_type_border {
  margin: -25px -20px;
}
@media screen and (max-width: 768px) {
  .recipeList_type_border {
    margin: 0;
  }
}
.recipeList_type_border .recipeList__item {
  padding: 25px 20px;
}
@media screen and (max-width: 768px) {
  .recipeList_type_border .recipeList__item {
    padding: 0;
    margin-bottom: 30px;
  }
  .recipeList_type_border .recipeList__item:last-of-type {
    margin-bottom: 0;
  }
}
.recipeList_type_border .recipeList__itemInner {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #bcbcbc;
}
.recipeList__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 1060px) {
  .recipeList__item {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .recipeList__item {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .recipeList__item:last-of-type {
    margin-bottom: 0;
  }
}
.recipeList__itemInner {
  color: inherit;
  text-decoration: none;
  display: block;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #fff;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .recipeList__itemInner {
    height: auto;
  }
}
.recipeList__itemInner:hover .recipeList__fig {
  opacity: 0.7;
}
.recipeList__img {
  width: 100%;
  border-radius: 4px 4px 0 0;
}
.recipeList__name {
  padding: 15px 40px 15px 20px;
}
.recipeList__nameCat {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .recipeList__nameCat {
    margin-bottom: 5px;
  }
}
.recipeList__nameText {
  font-size: 1.6rem;
  line-height: 1.75;
  position: relative;
}
.recipeList__nameText:after {
  content: "";
  width: 4.4px;
  height: 8.7px;
  background: url(../images/arrow_right_bold.svg) no-repeat center center/cover;
  display: block;
  position: absolute;
  right: -20px;
  top: 9px;
}

.reccomendRecipe {
  background-color: #faf9f6;
  padding: 110px 0 120px;
}
@media screen and (max-width: 768px) {
  .reccomendRecipe {
    padding: 60px 0;
  }
}
.reccomendRecipe__ttl {
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .reccomendRecipe__ttl {
    margin-bottom: 25px;
  }
}
.reccomendRecipe__intro {
  line-height: 1.875;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .reccomendRecipe__intro {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
.reccomendRecipe__bt {
  margin: 55px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .reccomendRecipe__bt {
    margin-top: 30px;
  }
}

.lowPage {
  margin-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 1060px) {
  .lowPage {
    padding-top: 75px;
  }
}
@media screen and (max-width: 850px) {
  .lowPage {
    padding-top: 135px;
  }
}
@media screen and (max-width: 1060px) {
  .lowPage {
    padding-top: 135px;
    margin-bottom: 75px;
  }
}
.lowPage__header {
  min-height: 480px;
  height: 20vw;
  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;
  position: relative;
}
@media screen and (max-width: 850px) {
  .lowPage__header {
    height: auto;
    min-height: auto;
  }
}
.lowPage__header:after {
  content: "";
  width: 100%;
  height: auto;
  background: url(../images/bg_page_head.svg) no-repeat center center/cover;
  aspect-ratio: 1460/186;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .lowPage__header:after {
    background: url(../images/bg_page_head_sp.svg) no-repeat center center/cover;
    aspect-ratio: 750/113;
  }
}
.lowPage__ttl {
  width: 100%;
  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-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
  margin-bottom: 3.64vw;
}
@media screen and (max-width: 850px) {
  .lowPage__ttl {
    top: 0;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 12.5vw;
  }
}
.lowPage__ttlJp {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lowPage__ttlJp {
    font-size: 2.9rem;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .lowPage__ttlJp {
    font-size: 2.9rem;
  }
}
.lowPage__ttlEn {
  font-size: 1.6rem;
  line-height: 1;
  margin-top: 30px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .lowPage__ttlEn {
    font-size: 1.6rem;
    margin-top: 6px;
    text-align: center;
    font-weight: 400;
  }
}
.lowPage__body {
  position: relative;
}
.lowPage__body:before {
  content: "";
  width: 100%;
  height: 293px;
  position: absolute;
  left: 0;
  top: -25px;
  background-color: #fafaf7;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .lowPage__body:before {
    height: 120px;
  }
}
.lowPage__body:after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  top: 188px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgb(250, 250, 247)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(250, 250, 247) 100%);
}
@media screen and (max-width: 768px) {
  .lowPage__body:after {
    height: 24px;
    top: 71px;
  }
}
@media screen and (max-width: 1060px) {
  .lowPage__body {
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .lowPage__body {
    padding-top: 55px;
  }
}
.lowPage__container {
  position: relative;
  z-index: 1;
}

.bbTtl {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  position: relative;
}
.bbTtl:after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #efefe5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bbTtl:after {
    height: 15px;
    bottom: -3px;
  }
}
@media screen and (max-width: 768px) {
  .bbTtl {
    font-size: 2.3rem;
    width: 100%;
    text-align: center;
    padding-bottom: 6px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(20%, #efefe5));
    background: linear-gradient(transparent 40%, #efefe5 20%);
  }
}

.about {
  padding-top: 100px;
  background-color: #fafaf7;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 40px;
  }
}
.about:after {
  display: none;
}
.aboutIntro {
  position: relative;
  min-height: 32.12vw;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .aboutIntro {
    margin-bottom: 75px;
  }
}
.aboutIntro__inner {
  width: 430px;
  padding-left: 70px;
}
@media screen and (max-width: 1160px) {
  .aboutIntro__inner {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 1160px) {
  .aboutIntro__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .aboutIntro__head {
    margin-bottom: 30px;
  }
}
.aboutIntro__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 1160px) {
  .aboutIntro__ttl {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    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-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 30px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .aboutIntro__ttl {
    font-size: 2.5rem;
    padding-left: 25px;
    line-height: 1;
  }
}
.aboutIntro__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
}
@media screen and (max-width: 1160px) {
  .aboutIntro__ttl:after {
    display: none;
  }
}
.aboutIntro__fig {
  position: absolute;
  width: 49.5vw;
  right: calc(-50vw + 550px);
  bottom: 0;
}
@media screen and (max-width: 1160px) {
  .aboutIntro__fig {
    position: static;
    width: 100vw;
    margin-left: -30px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.aboutIntro__img {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 1160px) {
  .aboutIntro__img {
    border-radius: 0 16px 16px 0;
  }
}
.aboutIntro__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1160px) {
  .aboutIntro__para {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .aboutIntro__para {
    text-align: left;
    line-height: 1.875;
  }
}
.aboutIntro__para:last-of-type {
  margin-bottom: 0;
}

.aboutCharm {
  min-height: 523px;
  position: relative;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .aboutCharm {
    margin-bottom: 45px;
  }
}
.aboutCharm__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .aboutCharm__head {
    margin-bottom: 30px;
  }
}
.aboutCharm__text {
  margin-left: 750px;
  width: 300px;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__text {
    width: 100%;
    margin-left: 0;
  }
}
.aboutCharm__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__ttl {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-right: 30px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .aboutCharm__ttl {
    font-size: 2.5rem;
    line-height: 1;
    padding-right: 25px;
  }
}
.aboutCharm__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__ttl:after {
    display: none;
  }
}
.aboutCharm__fig {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 604px;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__fig {
    position: static;
    width: 100vw;
    margin-right: -30px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.aboutCharm__img {
  border-radius: 16px;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__img {
    border-radius: 16px 0 0 16px;
  }
}
.aboutCharm__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1160px) {
  .aboutCharm__para {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .aboutCharm__para {
    line-height: 1.875;
    text-align: left;
  }
}
.aboutCharm__para:last-of-type {
  margin-bottom: 0;
}

.aboutPics {
  margin-left: calc(-50vw + 550px);
  margin-right: calc(-50vw + 550px);
  margin-bottom: 220px;
}
@media screen and (max-width: 1160px) {
  .aboutPics {
    margin-left: -30px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPics {
    margin-bottom: 70px;
  }
}
.aboutPics__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .aboutPics__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.aboutPics__item {
  padding: 0 15px;
  position: relative;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .aboutPics__item {
    padding: 0;
    display: none !important;
  }
}
.aboutPics__item:nth-of-type(1) .aboutPics__img {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 768px) {
  .aboutPics__item:nth-of-type(2) {
    width: 100vw;
    margin-top: 0;
    display: block !important;
  }
}
.aboutPics__item:nth-of-type(4) .aboutPics__img {
  border-radius: 16px 0px 0px 16px;
}
@media screen and (max-width: 768px) {
  .aboutPics__item:nth-of-type(4) .aboutPics__img {
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .aboutPics__item:nth-of-type(4) {
    width: 100%;
    margin-top: 30px;
    display: block !important;
  }
}
.aboutPics__item:nth-of-type(even) {
  margin-top: 37px;
}
.aboutPics__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .aboutPics__img {
    border-radius: 5px;
    aspect-ratio: 630/260;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

.aboutSpend {
  position: relative;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .aboutSpend {
    margin-bottom: 40px;
  }
}
.aboutSpend__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aboutSpend__ttl {
    font-size: 2rem;
    margin-bottom: 17px;
  }
}
.aboutSpend__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .aboutSpend__ttl:after {
    width: 12px;
    margin-top: 16px;
  }
}
.aboutSpend__para {
  line-height: 2;
  margin-bottom: 1.5em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aboutSpend__para {
    line-height: 1.875;
  }
}
.aboutSpend__para:last-of-type {
  margin-bottom: 0;
}
.aboutSpend__btnInner {
  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: 33px;
}
@media screen and (max-width: 768px) {
  .aboutSpend__btnInner {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .aboutSpend__pics {
    margin-top: 40px;
    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;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.aboutSpend__picsItem {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .aboutSpend__picsItem {
    position: static;
    margin-bottom: 35px;
  }
}
.aboutSpend__picsItem:nth-of-type(1) {
  left: -75px;
  top: -70px;
  width: 364px;
}
@media screen and (max-width: 1160px) {
  .aboutSpend__picsItem:nth-of-type(1) {
    width: 24.9vw;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .aboutSpend__picsItem:nth-of-type(1) {
    position: static;
    width: 208px;
    position: relative;
    top: 0;
    left: auto;
    right: -25px;
  }
}
.aboutSpend__picsItem:nth-of-type(2) {
  right: -30px;
  top: -25px;
  width: 308px;
}
@media screen and (max-width: 1160px) {
  .aboutSpend__picsItem:nth-of-type(2) {
    width: 21.1vw;
    right: -15px;
  }
}
@media screen and (max-width: 768px) {
  .aboutSpend__picsItem:nth-of-type(2) {
    position: static;
    width: 155px;
    position: relative;
    top: 35px;
    right: auto;
    left: -25px;
  }
}
.aboutSpend__picsItem:nth-of-type(3) {
  width: 308px;
  left: -35px;
  bottom: 13px;
}
@media screen and (max-width: 1160px) {
  .aboutSpend__picsItem:nth-of-type(3) {
    width: 21.1vw;
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .aboutSpend__picsItem:nth-of-type(3) {
    display: none;
  }
}
.aboutSpend__picsItem:nth-of-type(4) {
  width: 373px;
  right: -60px;
  bottom: -30px;
}
@media screen and (max-width: 1160px) {
  .aboutSpend__picsItem:nth-of-type(4) {
    width: 25.5vw;
    right: -10px;
  }
}
@media screen and (max-width: 768px) {
  .aboutSpend__picsItem:nth-of-type(4) {
    display: none;
  }
}
.aboutFacility {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}
.aboutFacility:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 250px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .aboutFacility:after {
    top: 120px;
  }
}
.aboutFacility__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 307px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .aboutFacility__bg {
    height: 150px;
  }
}
.aboutFacility__bg:before {
  display: block;
  content: "";
  width: 100%;
  height: auto;
  background: url(../images/about/bg_facility_pc.svg) no-repeat center center/cover;
  aspect-ratio: 1460/186;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .aboutFacility__bg:before {
    background: url(../images/about/bg_facility_sp.svg) no-repeat center center/cover;
    aspect-ratio: 750/113;
  }
}
.aboutFacility__container {
  position: relative;
  z-index: 1;
}
.aboutFacility__ttl {
  width: 100%;
  min-height: 307px;
  background: url(../images/about/bg_about_pc.jpg) no-repeat center center/cover;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .aboutFacility__ttl {
    min-height: 150px;
    border-radius: 8px;
    margin-bottom: 25px;
  }
}
.aboutFacility__ttlJp {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .aboutFacility__ttlJp {
    font-size: 2rem;
  }
}
.aboutFacility__ttlEn {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .aboutFacility__ttlEn {
    margin-top: 7px;
  }
}
.aboutFacility__intro {
  line-height: 2.25;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .aboutFacility__intro {
    line-height: 1.875;
    margin-bottom: 45px;
  }
}

.facilityItem {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .facilityItem {
    margin-bottom: 70px;
  }
}
.facilityItem:last-of-type {
  margin-bottom: 0;
}
.facilityItem__inner {
  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;
}
@media screen and (max-width: 1160px) {
  .facilityItem__inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.facilityItem__ttl {
  width: 145px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .facilityItem__ttl {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.facilityItem__ttl:before {
  content: "";
  display: block;
  border-top: 1px solid #141414;
  border-right: 1px solid #141414;
  width: 100%;
  height: 68.5px;
  border-radius: 0 10px 0 0;
  top: 0;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 1160px) {
  .facilityItem__ttl:before {
    width: 50%;
    border-right: 0;
    border-left: 1px solid #141414;
    height: 100%;
    border-radius: 10px 0 0 0;
  }
}
.facilityItem__ttlJp {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-size: 6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1160px) {
  .facilityItem__ttlJp {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    padding-left: 30px;
    padding-bottom: 15px;
    letter-spacing: 0;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .facilityItem__ttlJp {
    font-size: 4rem;
    padding-left: 20px;
    padding-bottom: 10px;
  }
}
.facilityItem__ttlEn {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.4rem;
  margin-top: 20px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1160px) {
  .facilityItem__ttlEn {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-top: 0;
    margin-left: 30px;
    position: relative;
    top: 0px;
  }
}
@media screen and (max-width: 768px) {
  .facilityItem__ttlEn {
    margin-left: 15px;
    top: -2px;
  }
}
.facilityItem__details {
  width: 475px;
  padding-left: 10px;
  margin-top: 110px;
}
@media screen and (max-width: 1160px) {
  .facilityItem__details {
    width: 100%;
    padding-left: 0;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .facilityItem__details {
    margin-top: 20px;
  }
}
.facilityItem__pics {
  position: absolute;
  right: 0;
  bottom: -5px;
}
@media screen and (max-width: 1160px) {
  .facilityItem__pics {
    position: static;
  }
}
.facilityItem__fig {
  width: 404px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1160px) {
  .facilityItem__fig {
    width: 100%;
  }
  .facilityItem__fig:nth-of-type(n + 2) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .facilityItem__fig {
    margin-bottom: 35px;
  }
}
.facilityItem__fig:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .facilityItem__fig:last-of-type {
    margin-bottom: 35px;
  }
}
.facilityItem__img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .facilityItem__img {
    border-radius: 8px;
  }
}
.facilityItem__subTtl {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .facilityItem__subTtl {
    font-size: 2.3rem;
    margin-bottom: 25px;
  }
}
.facilityItem__subTtl:after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #efefe5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .facilityItem__subTtl:after {
    height: 15px;
    bottom: -3px;
  }
}
.facilityItem__dl {
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .facilityItem__dl {
    margin-bottom: 25px;
  }
}
.facilityItem__dl:last-of-type {
  margin-bottom: 0;
}
.facilityItem__dt {
  font-size: 1.8rem;
  font-weight: bold;
  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-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .facilityItem__dt {
    margin-bottom: 10px;
  }
}
.facilityItem__dt:before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 5px;
  background-color: #c9caca;
  margin-right: 7px;
  display: block;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  .facilityItem__dt:before {
    width: 9px;
    height: 9px;
    border-radius: 9px;
    margin-right: 10px;
  }
}
.facilityItem__dd {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .facilityItem__dd {
    line-height: 1.875;
  }
}

.access {
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 40px;
  }
}
.accessIntro {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .accessIntro {
    margin-bottom: 50px;
  }
}
.accessIntro__ttl {
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .accessIntro__ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.accessIntro__add {
  line-height: 1.875;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .accessIntro__add {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .accessIntro__fig {
    overflow: hidden;
  }
}
.accessIntro__img {
  border-radius: 20px;
}
@media screen and (max-width: 1060px) {
  .accessIntro__img_type_pc {
    display: none;
  }
}
.accessIntro__img_type_sp {
  display: none;
}
@media screen and (max-width: 1060px) {
  .accessIntro__img_type_sp {
    display: block;
  }
}
.accessIntro__btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .accessIntro__btn {
    margin-top: 30px;
  }
}

.accessList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 100px;
}
@media screen and (max-width: 850px) {
  .accessList {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .accessList {
    margin-bottom: 50px;
  }
}

.accessItem {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 850px) {
  .accessItem {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .accessItem:first-of-type {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .accessItem:first-of-type {
    margin-bottom: 50px;
  }
}
.accessItem__ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .accessItem__ttl {
    margin-bottom: 30px;
  }
}
.accessItem__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .accessItem__dl:first-of-type:before {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.accessItem__dl:first-of-type .accessItem__dt:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .accessItem__dl:first-of-type .accessItem__dt:before {
    display: none;
  }
}
.accessItem__dl:first-of-type .accessItem__dd:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .accessItem__dl:first-of-type .accessItem__dd:before {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background: url(../images/border_03.png) no-repeat center center/cover;
    aspect-ratio: 4/618;
    display: block;
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .accessItem__dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    position: relative;
  }
  .accessItem__dl:after {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.accessItem__dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 161px;
  -webkit-flex-basis: 161px;
      -ms-flex-preferred-size: 161px;
          flex-basis: 161px;
  position: relative;
  padding: 25px 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .accessItem__dt {
    padding: 0;
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
.accessItem__dt:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .accessItem__dt:after {
    display: none;
  }
}
.accessItem__dd {
  padding: 25px 0;
  position: relative;
  width: calc(100% - 171px);
  -webkit-flex-basis: calc(100% - 171px);
      -ms-flex-preferred-size: calc(100% - 171px);
          flex-basis: calc(100% - 171px);
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .accessItem__dd {
    padding: 0;
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    margin-left: 0;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 10px;
    position: relative;
  }
  .accessItem__dd br {
    display: none;
  }
  .accessItem__dd:before {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background: url(../images/border_03.png) no-repeat center center/cover;
    aspect-ratio: 4/618;
    display: block;
    position: absolute;
  }
}
.accessItem__dd:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .accessItem__dd:after {
    display: none;
  }
}

.accessSub {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .accessSub {
    margin-bottom: 45px;
  }
}
.accessSub__ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .accessSub__ttl {
    margin-bottom: 30px;
  }
}
.accessSub__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 850px) {
  .accessSub__list {
    margin-left: 0;
    margin-right: 0;
  }
}
.accessSub__item {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 850px) {
  .accessSub__item {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .accessSub__item:first-of-type {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .accessSub__item:first-of-type {
    margin-bottom: 33px;
  }
}
.accessSub__contents {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .accessSub__contents {
    margin-bottom: 33px;
  }
}
.accessSub__contents:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .accessSub__contents .accessSub__contentsDl:first-of-type:before {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.accessSub__contents .accessSub__contentsDl:first-of-type .accessSub__contentsDt:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .accessSub__contents .accessSub__contentsDl:first-of-type .accessSub__contentsDt:before {
    display: none;
  }
}
.accessSub__contents .accessSub__contentsDl:first-of-type .accessSub__contentsDd:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .accessSub__contents .accessSub__contentsDl:first-of-type .accessSub__contentsDd:before {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background: url(../images/border_03.png) no-repeat center center/cover;
    aspect-ratio: 4/618;
    display: block;
    position: absolute;
  }
}
.accessSub__contentsTtl {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .accessSub__contentsTtl {
    font-size: 1.7rem;
    margin-bottom: 25px;
    text-align: center;
  }
}
.accessSub__contentsDl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .accessSub__contentsDl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    position: relative;
  }
  .accessSub__contentsDl:after {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.accessSub__contentsDt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 161px;
  position: relative;
  padding: 25px 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .accessSub__contentsDt {
    padding: 0;
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
.accessSub__contentsDt:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .accessSub__contentsDt:after {
    display: none;
  }
}
.accessSub__contentsDd {
  padding: 25px 0;
  position: relative;
  width: calc(100% - 171px);
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .accessSub__contentsDd {
    padding: 0;
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    margin-left: 0;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 10px;
    position: relative;
  }
  .accessSub__contentsDd br {
    display: none;
  }
  .accessSub__contentsDd:before {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background: url(../images/border_03.png) no-repeat center center/cover;
    aspect-ratio: 4/618;
    display: block;
    position: absolute;
  }
}
.accessSub__contentsDd:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .accessSub__contentsDd:after {
    display: none;
  }
}
.accessSub__contentsDd a {
  color: inherit;
  text-decoration: underline;
}
.accessSub__contentsDd a:hover {
  text-decoration: none;
}

.accessCaution__ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .accessCaution__ttl {
    margin-bottom: 22px;
  }
}
.accessCaution__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .accessCaution__item {
    margin-bottom: 20px;
  }
  .accessCaution__item:last-of-type {
    margin-bottom: 0;
  }
}
.accessCaution__item:before {
  content: "・";
}

.contact {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 40px;
  }
}
.contact__container {
  max-width: 1060px;
}
@media screen and (max-width: 768px) {
  .contact__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.contactTel {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .contactTel {
    margin-bottom: 35px;
  }
}
.contactTel__ttl {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contactTel__ttl {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
  }
}
.contactTel__main {
  border-radius: 6px;
  padding: 40px;
  background-color: #f2f2e9;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contactTel__main {
    padding: 20px;
    border-radius: 5px;
  }
}
.contactTel__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1130px) {
  .contactTel__dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.contactTel__dt {
  width: 470px;
  -webkit-flex-basis: 470px;
      -ms-flex-preferred-size: 470px;
          flex-basis: 470px;
  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;
}
.contactTel__dt:before {
  content: "";
  display: block;
  width: 80px;
  min-width: 80px;
  height: 80px;
  background: url(../images/contact/icon_tel.svg) no-repeat center center/cover;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .contactTel__dt:before {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 1130px) {
  .contactTel__dt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
}
.contactTel__dtLink {
  display: block;
  width: 350px;
  font-size: 4.8rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}
.contactTel__dtLink:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .contactTel__dtLink {
    width: auto;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .contactTel__dtLinkImg {
    height: 40px;
    width: auto;
  }
}
.contactTel__dd {
  width: calc(100% - 470px);
  -webkit-flex-basis: calc(100% - 470px);
      -ms-flex-preferred-size: calc(100% - 470px);
          flex-basis: calc(100% - 470px);
  padding-left: 60px;
  line-height: 1.66;
  font-size: 1.8rem;
}
@media screen and (max-width: 1130px) {
  .contactTel__dd {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .contactTel__dd {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.875;
  }
}
.contactTel__ddLink {
  color: inherit;
  text-decoration: underline;
}
.contactTel__ddLink:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contactMail_type_confirm .contactMail__ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .contactMail_type_confirm .contactForm__dl {
    padding: 15px 0;
  }
  .contactMail_type_confirm .contactForm__dt {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}
.contactMail__ttl {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contactMail__ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.contactMail__intro {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contactMail__intro {
    line-height: 1.6;
    margin-bottom: 25px;
  }
}

.contactForm {
  position: relative;
}
.contactForm:after {
  content: "";
  display: block;
  background: url(../images/border_06.png) no-repeat center center/cover;
  width: 100%;
  height: 1.5px;
  aspect-ratio: 4002/8;
  position: absolute;
  left: 0;
  top: 0;
}
.contactForm_type_conf .contactForm__dt {
  width: 250px;
  -webkit-flex-basis: 250px;
      -ms-flex-preferred-size: 250px;
          flex-basis: 250px;
}
@media screen and (max-width: 768px) {
  .contactForm_type_conf .contactForm__dt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.contactForm_type_conf .contactForm__dd {
  width: calc(100% - 250px);
  -webkit-flex-basis: calc(100% - 250px);
      -ms-flex-preferred-size: calc(100% - 250px);
          flex-basis: calc(100% - 250px);
}
@media screen and (max-width: 768px) {
  .contactForm_type_conf .contactForm__dd {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.contactForm_type_conf .contactForm__bts {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .contactForm_type_conf .contactForm__bts {
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.contactForm__dl {
  padding: 20px 0;
  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;
  position: relative;
}
.contactForm__dl:after {
  content: "";
  display: block;
  background: url(../images/border_06.png) no-repeat center center/cover;
  width: 100%;
  height: 1.5px;
  aspect-ratio: 4002/8;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .contactForm__dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 22px 0;
  }
}
.contactForm__dl_type_oem {
  display: none;
}
.contactForm__dl_type_oem.jsActive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contactForm__dl_type_recruit {
  display: none;
}
.contactForm__dl_type_recruit.jsActive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contactForm__dt {
  width: 320px;
  -webkit-flex-basis: 320px;
      -ms-flex-preferred-size: 320px;
          flex-basis: 320px;
  padding-right: 20px;
  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;
  font-weight: 500;
}
@media screen and (max-width: 1130px) {
  .contactForm__dt {
    width: 270px;
    -webkit-flex-basis: 270px;
        -ms-flex-preferred-size: 270px;
            flex-basis: 270px;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__dt {
    font-size: 1.6rem;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-right: 0;
    margin-bottom: 10px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
.contactForm__dt_type_req:after {
  content: "必須";
  width: 40px;
  height: 24px;
  background-color: #46814f;
  color: #fff;
  font-size: 1.2rem;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contactForm__dt_type_req:after {
    margin-left: 8px;
    font-size: 1.2rem;
    width: 30px;
    height: 18px;
    border-radius: 2px;
    position: relative;
    padding-bottom: 1px;
  }
}
.contactForm__dd {
  width: calc(100% - 320px);
  -webkit-flex-basis: calc(100% - 320px);
      -ms-flex-preferred-size: calc(100% - 320px);
          flex-basis: calc(100% - 320px);
  line-height: 1.875;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 1130px) {
  .contactForm__dd {
    width: calc(100% - 270px);
    -webkit-flex-basis: calc(100% - 270px);
        -ms-flex-preferred-size: calc(100% - 270px);
            flex-basis: calc(100% - 270px);
  }
}
@media screen and (max-width: 768px) {
  .contactForm__dd {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    line-height: 1.6;
    font-size: 1.6rem;
  }
}
.contactForm__select {
  width: 300px;
  padding: 7.5px 20px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #c9caca;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../images/contact/icon_select.svg) right 20px center no-repeat;
  background-size: 7.66px 8.22px;
  color: #1d1d1d;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contactForm__select {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 9px 10px;
    background: url(../images/contact/icon_select.svg) right 10px center no-repeat;
    background-size: 8.8px 8px;
    font-size: 1.6rem;
    border-radius: 2px;
    border-radius: 5px;
  }
}
.contactForm__text {
  width: 100%;
  padding: 7.5px 10px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #c9caca;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.contactForm__text::-webkit-input-placeholder {
  color: #c9caca;
}
.contactForm__text::-moz-placeholder {
  color: #c9caca;
}
.contactForm__text:-ms-input-placeholder {
  color: #c9caca;
}
.contactForm__text::-ms-input-placeholder {
  color: #c9caca;
}
.contactForm__text::placeholder {
  color: #c9caca;
}
@media screen and (max-width: 768px) {
  .contactForm__text {
    width: 100%;
    min-width: auto;
    padding: 10px 10px;
    font-size: 1.6rem;
    border-radius: 5px;
  }
}
.contactForm__checks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contactForm__checksItems:first-of-type {
  margin-right: 22px;
}
@media screen and (max-width: 768px) {
  .contactForm__checksItems:first-of-type {
    margin-right: 15px;
  }
}
.contactForm__checksLab {
  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;
}
.contactForm__checksText {
  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;
  position: relative;
  font-weight: 500;
}
.contactForm__checksText:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #1d1d1d;
  border-radius: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .contactForm__checksText:before {
    margin-right: 10px;
  }
}
.contactForm__checksInput {
  display: none;
}
.contactForm__checksInput:checked + .contactForm__checksText:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 4px;
}
@media screen and (max-width: 768px) {
  .contactForm__checksInput:checked + .contactForm__checksText:after {
    top: 7.5px;
  }
}
.contactForm__selects {
  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;
}
@media screen and (max-width: 768px) {
  .contactForm__selects {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.contactForm__lab {
  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-right: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contactForm__lab {
    margin-right: 10px;
  }
  .contactForm__lab:first-of-type {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  .contactForm__lab:first-of-type .contactForm__select {
    width: 100%;
  }
  .contactForm__lab:nth-of-type(2) {
    width: 50%;
    margin-right: 0;
    padding-right: 10px;
  }
  .contactForm__lab:nth-of-type(2) .contactForm__select {
    width: 100%;
  }
  .contactForm__lab:nth-of-type(3) {
    padding-left: 10px;
    width: 50%;
    margin-right: 0;
  }
  .contactForm__lab:nth-of-type(3) .contactForm__select {
    width: 100%;
  }
}
.contactForm__lab:last-of-type {
  margin-right: 0;
}
.contactForm__select_type_md {
  width: 120px;
}
@media screen and (max-width: 768px) {
  .contactForm__select_type_md {
    width: 90px;
  }
}
.contactForm__select_type_sm {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .contactForm__select_type_sm {
    width: 60px;
  }
}
.contactForm__labText {
  display: block;
  margin-left: 10px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contactForm__labText {
    margin-left: 10px;
  }
}
.contactForm__text_w_sm {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .contactForm__text_w_sm {
    width: 100%;
    max-width: 100%;
  }
}
.contactForm__body {
  padding: 7.5px 10px;
  border-radius: 4px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #c9caca;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 200px;
  color: #404040;
}
@media screen and (max-width: 768px) {
  .contactForm__body {
    height: 200px;
    padding: 8px 10px;
    border-radius: 5px;
  }
}
.contactForm__dd .form-err {
  margin-top: 10px;
  color: #f00;
}
.contactForm__recaptcha {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contactForm__recaptcha {
    margin-top: 25px;
  }
}
.contactForm__recaptcha .g-recaptcha {
  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;
}
.contactForm__recaptcha .form-err-recaptcha {
  margin-top: 10px;
  color: #f00;
  text-align: center;
}
.contactForm__privacy {
  margin-top: 50px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .contactForm__privacy {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 25px;
    text-align: left;
  }
}
.contactForm__privacyLink {
  color: inherit;
  text-decoration: underline;
}
.contactForm__privacyLink:hover {
  text-decoration: none;
}
.contactForm__bts {
  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: 35px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contactForm__bts {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 25px;
  }
}
.contactForm__btsItem {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .contactForm__btsItem {
    width: 100%;
    padding: 0;
  }
  .contactForm__btsItem:first-of-type {
    margin-bottom: 15px;
  }
}
.contactForm__btsItem_type_conf {
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .contactForm__btsItem_type_conf {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__btsItem_type_back {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__btsItem_type_submit {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton {
    font-size: 1.4rem;
  }
}
.contactForm__btsButton_type_back {
  width: 300px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  background-color: #efefe5;
  border: 1px solid #efefe5;
  border-radius: 53px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #141414;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_back {
    width: 100%;
    height: 45px;
    font-size: 1.6rem;
  }
}
.contactForm__btsButton_type_back:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #3e3a39;
  border-right: 2px solid #3e3a39;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  position: absolute;
  left: 30px;
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_back:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    left: 25px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
.contactForm__btsButton_type_back:hover {
  color: #3e3a39;
  background-color: transparent;
}
.contactForm__btsButton_type_back:hover:after {
  border-top-color: #3e3a39;
  border-right-color: #3e3a39;
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_back {
    width: 100%;
  }
}
.contactForm__btsButton_type_back:hover:before {
  background: url(data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2014.08%204.67%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23fff%3Bstroke-width%3A0px%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%82%AA%E3%83%96%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M9.68%2C4.67v-1.86H0v-.96h9.68V0l4.4%2C2.34-4.4%2C2.34Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E) no-repeat center center/cover;
}
.contactForm__btsButton_type_submit {
  width: 300px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  background-color: #46814f;
  border: 1px solid #46814f;
  border-radius: 53px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_submit {
    width: 100%;
    height: 45px;
    font-size: 1.6rem;
  }
}
.contactForm__btsButton_type_submit:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_submit:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 25px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
.contactForm__btsButton_type_submit:hover {
  color: #46814f;
  background-color: transparent;
}
.contactForm__btsButton_type_submit:hover:after {
  border-top-color: #46814f;
  border-right-color: #46814f;
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_submit {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton {
    font-size: 1.6rem;
    height: 45px;
  }
}
.contactForm__btsButton_type_conf {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 350px;
  height: 53px;
  background-color: #46814f;
  border: 1px solid #46814f;
  border-radius: 53px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_conf {
    width: 100%;
    height: 47px;
    font-size: 1.7rem;
  }
}
.contactForm__btsButton_type_conf:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .contactForm__btsButton_type_conf:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 20px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
.contactForm__btsButton_type_conf:hover {
  color: #46814f;
  background-color: transparent;
}
.contactForm__btsButton_type_conf:hover:after {
  border-top-color: #46814f;
  border-right-color: #46814f;
}

.contactThanks__ttl {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contactThanks__ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.contactThanks__desc {
  line-height: 1.875;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contactThanks__desc {
    margin-bottom: 45px;
  }
}
.contactThanks__bt {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 53px;
  background-color: #46814f;
  border: 1px solid #46814f;
  border-radius: 53px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contactThanks__bt {
    width: 100%;
    height: 47px;
    font-size: 1.7rem;
  }
}
.contactThanks__bt:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .contactThanks__bt:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 25px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
.contactThanks__bt:hover {
  color: #46814f;
  background-color: transparent;
}
.contactThanks__bt:hover:after {
  border-top-color: #46814f;
  border-right-color: #46814f;
}

.errorPage {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .errorPage {
    padding-top: 40px;
  }
}
.errorPage__container {
  max-width: 1060px;
}
@media screen and (max-width: 768px) {
  .errorPage__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.errorPage__ttl {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .errorPage__ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.errorPage__desc {
  line-height: 1.875;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .errorPage__desc {
    margin-bottom: 45px;
  }
}
.errorPage__bt {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 53px;
  background-color: #46814f;
  border: 1px solid #46814f;
  border-radius: 53px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .errorPage__bt {
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
  }
}
.errorPage__bt:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: calc(50% - 3px);
}
@media screen and (max-width: 768px) {
  .errorPage__bt:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    right: 25px;
    border-top-width: 1px;
    border-right-width: 1px;
  }
}
.errorPage__bt:hover {
  color: #46814f;
  background-color: transparent;
}
.errorPage__bt:hover:after {
  border-top-color: #46814f;
  border-right-color: #46814f;
}

.ex {
  padding-top: 110px;
}
@media screen and (max-width: 768px) {
  .ex {
    padding-top: 40px;
  }
}
.exIntro {
  position: relative;
  margin-bottom: 210px;
}
@media screen and (max-width: 768px) {
  .exIntro {
    margin-bottom: 75px;
  }
}
.exIntro__inner {
  max-width: 450px;
  min-height: 650px;
}
@media screen and (max-width: 1160px) {
  .exIntro__inner {
    max-width: 100%;
    min-height: auto;
  }
}
@media screen and (max-width: 1160px) {
  .exIntro__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .exIntro__head {
    margin-bottom: 35px;
  }
}
.exIntro__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 27px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1160px) {
  .exIntro__ttl {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    padding-left: 25px;
    margin-bottom: 0;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .exIntro__ttl {
    font-size: 2.5rem;
  }
}
.exIntro__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
}
@media screen and (max-width: 1160px) {
  .exIntro__ttl:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .exIntro__ttl:after {
    width: 12px;
    margin-top: 16px;
  }
}
.exIntro__pics {
  position: absolute;
  right: 0;
  top: 0;
  width: 550px;
  height: 650px;
}
@media screen and (max-width: 1160px) {
  .exIntro__pics {
    position: static;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    height: auto;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.exIntro__picsItem:nth-of-type(1) {
  top: 0;
  right: 0;
  width: 550px;
  position: absolute;
}
@media screen and (max-width: 1160px) {
  .exIntro__picsItem:nth-of-type(1) {
    width: calc(100% + 30px);
    -webkit-flex-basis: calc(100% + 30px);
        -ms-flex-preferred-size: calc(100% + 30px);
            flex-basis: calc(100% + 30px);
    position: static;
    margin-left: -30px;
  }
}
.exIntro__picsItem:nth-of-type(1) .exIntro__picsImg {
  border-radius: 16px;
}
@media screen and (max-width: 1160px) {
  .exIntro__picsItem:nth-of-type(1) .exIntro__picsImg {
    border-radius: 0 16px 16px 0;
  }
}
.exIntro__picsItem:nth-of-type(2) {
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 308px;
  z-index: 1;
}
@media screen and (max-width: 1160px) {
  .exIntro__picsItem:nth-of-type(2) {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .exIntro__picsImg_type_pc {
    display: none;
  }
}
.exIntro__picsImg_type_sp {
  display: none;
}
@media screen and (max-width: 1160px) {
  .exIntro__picsImg_type_sp {
    display: block;
  }
}
.exIntro__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1160px) {
  .exIntro__para {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .exIntro__para {
    text-align: left;
  }
}
.exIntro__para:last-of-type {
  margin-bottom: 0;
}
.exIntro__spPics {
  display: none;
}
@media screen and (max-width: 1160px) {
  .exIntro__spPics {
    display: block;
    text-align: center;
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .exIntro__spPics {
    margin-top: 35px;
  }
}
.exIntro__spPicsImg {
  width: 290px;
}

.exManual__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .exManual__ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.exManual__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .exManual__ttl:after {
    width: 12px;
    margin-top: 16px;
  }
}
.exManual__intro {
  line-height: 2;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 1160px) {
  .exManual__intro .pcnon {
    display: inline;
  }
  .exManual__intro .spnon {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .exManual__intro {
    text-align: center;
    margin-bottom: 25px;
  }
}
.exManual__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -25px -16px;
}
@media screen and (max-width: 768px) {
  .exManual__list {
    margin: -7.5px -5px;
  }
}
.exManual__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 25px 16px;
}
@media screen and (max-width: 768px) {
  .exManual__item {
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    padding: 10px 5px;
  }
}
.exManual__itemInner {
  cursor: pointer;
}
.exManual__itemInner:hover .exManual__img {
  opacity: 0.75;
}
.exManual__itemMain {
  position: relative;
}
.exManual__num {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .exManual__num {
    font-size: 1.6rem;
    top: 8px;
    left: 10px;
  }
}
.exManual__num:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .exManual__num:after {
    margin-top: 5px;
  }
}
.exManual__img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .exManual__img {
    border-radius: 5px;
  }
}
.exManual__name {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 2.4rem;
  background-color: #ffffff;
  font-weight: 500;
  padding: 18px 25px 0 2px;
  border-radius: 0 10px 0 0;
  margin-bottom: -2px;
  z-index: 1;
  max-width: calc(100% - 20px);
}
@media screen and (max-width: 768px) {
  .exManual__name {
    font-size: 1.6rem;
    padding-top: 5px;
    padding-right: 10px;
    max-width: calc(100% - 20px);
  }
}
.exManual__name:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .exManual__name:before {
    width: 5px;
    left: 0px;
    top: -5px;
    height: 5px;
  }
}
.exManual__name:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 2px;
  right: -10px;
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .exManual__name:after {
    width: 5px;
    height: 5px;
    right: -5px;
  }
}
.exManual__desc {
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .exManual__desc {
    line-height: 1.875;
    margin-top: 15px;
  }
}
.exManual__nameSm {
  font-size: 1.6rem;
}

.exHowto {
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .exHowto {
    margin-bottom: 75px;
  }
}
.exHowto__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .exHowto__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.exHowto__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .exHowto__ttl:after {
    width: 12px;
    margin-top: 16px;
  }
}
.exHowto__intro {
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1160px) {
  .exHowto__intro {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .exHowto__intro {
    margin-bottom: 25px;
  }
}
.exHowto__nav {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .exHowto__nav {
    margin-bottom: 30px;
  }
}
.exHowto__navList {
  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: -15px;
}
@media screen and (max-width: 768px) {
  .exHowto__navList {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: -5px;
  }
}
.exHowto__navItem {
  padding: 15px;
}
@media screen and (max-width: 1160px) {
  .exHowto__navItem {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .exHowto__navItem {
    width: 50%;
    padding: 5px;
  }
}
.exHowto__navItemText {
  width: 194px;
  height: 48px;
  background-color: #141414;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 48px;
  border: 1px solid #141414;
}
@media screen and (max-width: 1160px) {
  .exHowto__navItemText {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .exHowto__navItemText {
    height: 30px;
    font-size: 1.6rem;
  }
}
.exHowto__navItemText:hover {
  background-color: transparent;
  color: #141414;
}

.exHowtoItem {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .exHowtoItem {
    margin-bottom: 50px;
  }
}
.exHowtoItem:last-of-type {
  margin-bottom: 0;
}
.exHowtoItem__head {
  padding: 47px 0 0 47px;
  border-top: 1px solid #141414;
  border-left: 1px solid #141414;
  border-radius: 10px 0 0 0;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__head {
    padding: 20px 0 0 20px;
    border: none;
    margin-bottom: 25px;
  }
  .exHowtoItem__head:before {
    content: "";
    width: 100%;
    height: 75px;
    position: absolute;
    left: 0;
    top: 0;
    border-top: 1px solid #141414;
    border-left: 1px solid #141414;
    border-radius: 5px 0 0 0;
  }
}
.exHowtoItem__ttl {
  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-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__ttl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.exHowtoItem__ttlIcon {
  width: 107px;
  height: 30px;
  background-color: #141414;
  border-radius: 30px;
  color: #fff;
  font-size: 1.4rem;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 107px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__ttlIcon {
    height: 30px;
    top: 0;
    max-width: 153px;
    width: 100%;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.exHowtoItem__ttlMain {
  font-size: 2.6rem;
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__ttlMain {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    font-size: 1.6rem;
    line-height: 1.875;
    margin-left: 0;
  }
}
.exHowtoItem__intro {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__intro {
    line-height: 1.875;
  }
}
.exHowtoItem__scrollbar {
  position: static;
  width: calc(100% - 14px) !important;
  height: 28px !important;
  padding: 6px 7px !important;
  position: relative;
  margin-top: 30px !important;
  position: relative !important;
  left: -7px !important;
  border-radius: 27px !important;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__scrollbar {
    width: calc(100% - 5px) !important;
    margin-top: 35px !important;
    height: 15px !important;
    padding: 2.5px 2.5px 2.5px 2.5px !important;
    left: -2.5px !important;
  }
}
.exHowtoItem__scrollbar:before {
  content: "";
  display: block;
  width: calc(100% + 14px);
  height: 100%;
  background-color: #dbdbc7 !important;
  border-radius: 27px !important;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__scrollbar:before {
    width: calc(100% + 5px) !important;
  }
}
.exHowtoItem__scrollbar .swiper-scrollbar-drag {
  height: 16px !important;
  background-color: #fff;
  border-radius: 16px;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .exHowtoItem__scrollbar .swiper-scrollbar-drag {
    height: 10px !important;
  }
}

.howtoSlide {
  margin-right: calc(-50vw + 550px);
  padding-right: 70px;
}
@media screen and (max-width: 1160px) {
  .howtoSlide {
    margin-right: -30px;
  }
}
.howtoSlide__item {
  width: 342px;
}
@media screen and (max-width: 768px) {
  .howtoSlide__item {
    width: 231px;
  }
}
.howtoSlide__itemInner {
  position: relative;
}
.howtoSlide__date {
  width: 92px;
  height: 92px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .howtoSlide__date {
    width: 61.5px;
    height: 61.5px;
  }
}
.howtoSlide__date:after {
  content: "";
  width: 100%;
  height: 100%;
  aspect-ratio: 92/92;
  background: url(../images/experience/bg_ex_01.svg);
  position: absolute;
  left: 0;
  top: 0;
}
.howtoSlide__dateInner {
  position: absolute;
  right: 24px;
  top: 10px;
  font-family: "Zen Old Mincho", serif;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .howtoSlide__dateInner {
    top: 5px;
    right: 13px;
  }
}
.howtoSlide__dateInner:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: -34px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: -10px;
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .howtoSlide__dateInner:before {
    width: 5px;
    right: -18px;
    top: -5px;
    height: 5px;
  }
}
.howtoSlide__dateInner:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -45px;
  left: -13px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .howtoSlide__dateInner:after {
    width: 5px;
    height: 5px;
    left: -7px;
    bottom: -28px;
  }
}
.howtoSlide__dateDay {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .howtoSlide__dateDay {
    font-size: 1.2rem;
  }
}
.howtoSlide__dateTime {
  display: block;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .howtoSlide__dateTime {
    font-size: 1.6rem;
    margin-top: 5px;
  }
}
.howtoSlide__img {
  border-radius: 10px;
}
.howtoSlide__ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .howtoSlide__ttl {
    font-size: 2rem;
    margin-top: 17px;
    margin-bottom: 10px;
  }
}
.howtoSlide__desc {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .howtoSlide__desc {
    line-height: 1.875;
  }
}

.elModal {
  position: relative;
  z-index: 5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: none;
}
.elModal_is_active {
  display: block;
}
.elModal__list {
  height: 100%;
  padding: 100px 0;
  max-width: 600px;
}
@media screen and (max-width: 1160px) {
  .elModal__list {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .elModal__list {
    padding: 30px 30px 30px 30px;
  }
}
.elModal__bg {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.elModalItem {
  background-color: #fff;
  border-radius: 20px;
  opacity: 0;
  display: none;
  position: relative;
  z-index: 5;
  height: 100%;
}
.elModalItem__close {
  position: absolute;
  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;
  top: -35px;
  right: -35px;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 1160px) {
  .elModalItem__close {
    right: -10px;
    top: -10px;
  }
}
.elModalItem__close:hover {
  opacity: 0.75;
}
.elModalItem__closeText {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  display: block;
  margin-right: 20px;
  display: none;
}
@media screen and (max-width: 1160px) {
  .elModalItem__closeText {
    display: none;
  }
}
.elModalItem__closeIcon {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: url(../images/close_icon.svg) no-repeat center center/cover;
}
@media screen and (max-width: 1160px) {
  .elModalItem__closeIcon {
    width: 30px;
    height: 30px;
  }
}
.elModalItem__inner {
  padding: 50px;
  position: relative;
  height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 1160px) {
  .elModalItem__inner {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .elModalItem__inner {
    padding: 25px;
  }
}
.elModalItem__fig {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .elModalItem__fig {
    margin-bottom: 25px;
  }
}
.elModalItem__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 92px;
}
@media screen and (max-width: 768px) {
  .elModalItem__num {
    width: 38px;
    height: 38px;
  }
}
.elModalItem__num:after {
  content: "";
  width: 100%;
  height: 100%;
  aspect-ratio: 92/92;
  background: url(../images/experience/bg_ex_01.svg);
  position: absolute;
  left: 0;
  top: 0;
}
.elModalItem__numText {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 6rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .elModalItem__numText {
    font-size: 2.5rem;
    width: 100%;
    height: 100%;
  }
}
.elModalItem__numText:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: -24px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0px;
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .elModalItem__numText:before {
    width: 5px;
    top: 0px;
    right: -4px;
    height: 5px;
  }
}
.elModalItem__numText:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -42px;
  left: 0px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .elModalItem__numText:after {
    width: 5px;
    height: 5px;
    bottom: -5px;
  }
}
.elModalItem__img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .elModalItem__img {
    border-radius: 5px;
  }
}
.elModalItem__btnList {
  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-bottom: 55px;
  margin: -10px -10px 45px -10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1180px) {
  .elModalItem__btnList {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.elModalItem__btnList_type_left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .elModalItem__btnList_type_left {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .elModalItem__btnList {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
.elModalItem__btnItem {
  padding: 10px;
}
@media screen and (max-width: 1180px) {
  .elModalItem__btnItem {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 768px) {
  .elModalItem__btnItem {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    margin-bottom: 10px;
    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;
  }
  .elModalItem__btnItem:last-of-type {
    margin-bottom: 0;
  }
}
.elModalItem__btn {
  width: 240px;
  height: 48px;
  background-color: #46814f;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 48px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: 1px solid #46814f;
}
@media screen and (max-width: 1180px) {
  .elModalItem__btn {
    width: 235px;
  }
}
@media screen and (max-width: 768px) {
  .elModalItem__btn {
    width: 200px;
    height: 32px;
    font-size: 1.2rem;
  }
}
.elModalItem__btn:hover {
  background-color: transparent;
  color: #46814f;
}
.elModalItem__btn:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016.28%2013.84%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%2346814f%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22koko%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M3.26%2C1.63c0-.45.16-.83.48-1.15C4.05.16%2C4.44%2C0%2C4.88%2C0h9.77c.45%2C0%2C.83.16%2C1.15.48s.48.7.48%2C1.15v7.33c0%2C.45-.16.83-.48%2C1.15s-.7.48-1.15.48H4.88c-.45%2C0-.83-.16-1.15-.48-.32-.32-.48-.7-.48-1.15V1.63ZM14.65%2C8.95V1.63H4.88v7.33h9.77ZM0%2C3.26h1.63s0%2C8.95%2C0%2C8.95h11.4s0%2C1.63%2C0%2C1.63H1.63c-.45%2C0-.83-.16-1.15-.48C.16%2C13.04%2C0%2C12.66%2C0%2C12.21V3.26ZM14.65%2C8.95H4.88s9.77%2C0%2C9.77%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.elModalItem__btn:after {
  content: "";
  display: block;
  width: 16.2px;
  height: 13.8px;
  background: url(../images/icon_window.svg) no-repeat center center/cover;
  aspect-ratio: 16.2/13.8;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .elModalItem__btn:after {
    width: 12px;
    height: auto;
  }
}
.elModalItem__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .elModalItem__ttl {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}
.elModalItem__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .elModalItem__ttl:after {
    width: 12px;
    margin-top: 16px;
  }
}
.elModalItem__intro {
  line-height: 2;
  text-align: left;
  margin-bottom: 55px;
}
.elModalItem__intro br {
  display: none;
}
@media screen and (max-width: 768px) {
  .elModalItem__intro {
    text-align: left;
    line-height: 1.5625;
    margin-bottom: 45px;
    margin-bottom: 25px;
  }
}
.elModalItem__points {
  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-bottom: 35px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .elModalItem__points {
    margin-bottom: 25px;
  }
}
.elModalItem__pointsDl {
  width: 100%;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  margin-bottom: 35px;
}
.elModalItem__pointsDl:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .elModalItem__pointsDl {
    margin-bottom: 25px;
  }
}
.elModalItem__pointsDt {
  font-size: 2.4rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .elModalItem__pointsDt {
    font-size: 1.8rem;
    margin-bottom: 13px;
  }
}
.elModalItem__pointsDt:after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #efefe5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .elModalItem__pointsDt:after {
    height: 15px;
    bottom: -3px;
  }
}
@media screen and (max-width: 768px) {
  .elModalItem__pointsDd {
    line-height: 1.5625;
  }
}

.elModalItem_is_active {
  opacity: 1;
  display: block;
}

.elModalHowto__ttl {
  font-size: 2.4rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .elModalHowto__ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}
.elModalHowto__ttl:after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #efefe5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .elModalHowto__ttl:after {
    height: 15px;
    bottom: -3px;
  }
}
.elModalHowto__list {
  counter-reset: number 0;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .elModalHowto__list {
    margin-bottom: 25px;
  }
}
.elModalHowto__section {
  counter-increment: number 1;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .elModalHowto__section {
    margin-bottom: 25px;
  }
}
.elModalHowto__section:last-of-type {
  margin-bottom: 0;
}
.elModalHowto__subTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .elModalHowto__subTtl {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
.elModalHowto__subTtl:before {
  content: counter(number) ".";
}
@media screen and (max-width: 768px) {
  .elModalHowto__desc {
    line-height: 1.5625;
  }
}
.elModalHowto__cautionDt {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .elModalHowto__cautionDt {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.elModalHowto__cautionItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.elModalHowto__cautionItem:before {
  content: "・";
}
.elModalHowto__cautionItemUl {
  text-decoration: underline;
}
.elModalHowto__itemUl {
  text-decoration: underline;
}
.elModalHowto__ol {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .elModalHowto__item {
    line-height: 1.5625;
  }
}
.elModalHowto__descUl {
  text-decoration: underline;
}

_::-webkit-full-page-media, _:future, :root .elModalItem__numText:before {
  right: -22px;
}

.faq {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-top: 40px;
  }
}
.faq__secion {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .faq__secion {
    margin-bottom: 50px;
  }
}
.faq__secion:last-of-type {
  margin-bottom: 0;
}
.faq__ttlInner {
  padding-bottom: 40px;
  position: relative;
}
.faq__ttlInner:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../images/boder_04.png) no-repeat center center/contain;
  aspect-ratio: 4402/8;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .faq__ttlInner {
    padding-bottom: 30px;
  }
  .faq__ttlInner:after {
    background: url(../images/border_05.png) no-repeat left center/100% 100%;
    aspect-ratio: 2523/14;
    height: 1.75px;
  }
}
.faqLocalnav {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .faqLocalnav {
    margin-bottom: 50px;
  }
}
.faqLocalnav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -10px;
}
@media screen and (max-width: 768px) {
  .faqLocalnav__list {
    margin: -5px -7.5px;
  }
}
.faqLocalnav__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 10px;
}
@media screen and (max-width: 1060px) {
  .faqLocalnav__item {
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
@media screen and (max-width: 768px) {
  .faqLocalnav__item {
    padding: 5px 7.5px;
  }
}
.faqLocalnav__link {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #efefe5;
  height: 58px;
  color: inherit;
  text-decoration: none;
  border-radius: 58px;
  font-size: 2rem;
  font-weight: 500;
  border: 1px solid #efefe5;
}
@media screen and (max-width: 768px) {
  .faqLocalnav__link {
    height: 30px;
    font-size: 1.6rem;
  }
}
.faqLocalnav__link:hover {
  opacity: 0.75;
}

.faqList {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .faqList {
    padding-left: 0;
  }
}
.faqList__dl {
  position: relative;
  padding-bottom: 1px;
}
.faqList__dl.jsActive .faqList__dt:after {
  display: none;
}
.faqList__dl.jsActive .faqList__dtIcon:after {
  display: none;
}
.faqList__dl:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../images/boder_04.png) no-repeat center center/contain;
  aspect-ratio: 4402/8;
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .faqList__dl:after {
    background: url(../images/border_05.png) no-repeat left center/100% 100%;
    aspect-ratio: 2523/14;
    height: 1.75px;
  }
}
.faqList__dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  padding: 30px 50px 29px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faqList__dt {
    padding-left: 10px;
    font-weight: 400;
    line-height: 1.875;
    padding: 20px 45px 19px 0px;
  }
}
.faqList__dt:hover {
  opacity: 0.75;
}
.faqList__dt:before {
  content: "Q";
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .faqList__dt:before {
    font-weight: 400;
    padding-right: 7px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .faqList__dt:before {
    position: relative;
    top: -1px;
  }
}
.faqList__dtIcon:before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #727171;
  position: absolute;
  right: 20px;
  top: 41px;
}
@media screen and (max-width: 768px) {
  .faqList__dtIcon:before {
    width: 15px;
    top: calc(50% - 0.5px);
    right: 0px;
  }
}
.faqList__dtIcon:after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #727171;
  position: absolute;
  right: 29.5px;
  top: 32px;
}
@media screen and (max-width: 768px) {
  .faqList__dtIcon:after {
    height: 15px;
    top: calc(50% - 7.5px);
    right: 7px;
  }
}
.faqList__dd {
  display: none;
  background-color: #fafaf7;
  border-radius: 10px;
  padding: 25px 30px;
  margin-top: -10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .faqList__dd {
    padding: 30px;
    font-weight: 400;
    border-radius: 12.5px;
    line-height: 1.875;
    padding: 15px 20px;
  }
}
.faqList__dd a,
.faqList__ddLink {
  color: inherit;
  text-decoration: underline;
}
.faqList__dd a:hover,
.faqList__ddLink:hover {
  text-decoration: none;
}

.fee {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .fee {
    padding-top: 40px;
  }
}
.feeList {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .feeList {
    margin-bottom: 50px;
  }
}

.feeSection {
  margin-bottom: 100px;
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .feeSection:first-of-type .feeCol__fig {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1130px) and (max-width: 768px) {
  .feeSection:first-of-type .feeCol__fig {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__ttl {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__list {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 15px 0;
    position: relative;
  }
  .feeSection:first-of-type .feeCol__dl:after {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .feeSection:first-of-type .feeCol__dl:first-of-type:before {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__dt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    font-size: 1.7rem;
    margin-bottom: 10px;
    text-align: left;
    display: block;
  }
  .feeSection:first-of-type .feeCol__dt br {
    display: none;
  }
  .feeSection:first-of-type .feeCol__dt:before {
    display: none;
  }
  .feeSection:first-of-type .feeCol__dt:after {
    display: none;
  }
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__dd {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-left: 0;
    line-height: 1.5625;
    padding: 0;
  }
  .feeSection:first-of-type .feeCol__dd:before {
    display: none !important;
  }
  .feeSection:first-of-type .feeCol__dd:after {
    display: none;
  }
}
@media screen and (max-width: 1130px) {
  .feeSection:first-of-type .feeCol__ddSm br {
    display: inline;
  }
}
.feeSection:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1130px) {
  .feeSection:last-of-type .feeCol__text:first-of-type {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .feeSection:last-of-type .feeCol__text:first-of-type {
    margin-bottom: 50px;
  }
}
.feeSection:nth-of-type(2) .feeCol__fig {
  right: auto;
  left: 0;
}
.feeSection:nth-of-type(2) .feeCol__text {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .feeSection {
    margin-bottom: 50px;
  }
}

.feeCol {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1130px) {
  .feeCol {
    display: block;
    gap: 0;
  }
}
.feeCol__text {
  width: 520px;
}
@media screen and (max-width: 1130px) {
  .feeCol__text {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media screen and (max-width: 1130px) {
  .feeCol__text_type_pet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .feeCol__text_type_pet .feeCol__list {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .feeCol__text_type_pet .feeCol__dl {
    width: 100%;
  }
  .feeCol__text_type_pet .feeCol__desc {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 25px;
  }
  .feeCol__text_type_pet .feeCol__colFig {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.feeCol__ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .feeCol__ttl {
    margin-bottom: 30px;
  }
}
.feeCol__fig {
  position: absolute;
  right: 0;
  top: 0;
  width: 520px;
}
@media screen and (max-width: 1130px) {
  .feeCol__fig {
    position: static;
    width: 100%;
    margin-bottom: 45px;
  }
}
.feeCol__img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .feeCol__img {
    border-radius: 25px;
  }
}
.feeCol__colFig {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .feeCol__colFig {
    margin-top: 20px;
  }
}
.feeCol__colFigImg {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .feeCol__colFigImg {
    border-radius: 25px;
  }
}
.feeCol__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .feeCol__dl:first-of-type:before {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.feeCol__dl:first-of-type .feeCol__dt:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .feeCol__dl:first-of-type .feeCol__dt:before {
    display: none;
  }
}
.feeCol__dl:first-of-type .feeCol__dd:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .feeCol__dl:first-of-type .feeCol__dd:before {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background: url(../images/border_03.png) no-repeat center center/cover;
    aspect-ratio: 4/618;
    display: block;
    position: absolute;
  }
}
@media screen and (max-width: 768px) {
  .feeCol__dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    position: relative;
  }
  .feeCol__dl:after {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .feeCol__dl_type_row {
    display: block;
    text-align: center;
    padding: 0 0 0 0;
  }
  .feeCol__dl_type_row:before, .feeCol__dl_type_row:after {
    display: none !important;
  }
  .feeCol__dl_type_row .feeCol__dt {
    width: 100%;
    padding: 0 0 0 0;
    margin-bottom: 10px;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .feeCol__dl_type_row .feeCol__dd {
    width: 100%;
    padding: 0 0 0 0;
  }
  .feeCol__dl_type_row .feeCol__dd:before {
    display: none !important;
  }
  .feeCol__dl_type_row .feeCol__dd:after {
    display: none !important;
  }
}
.feeCol__dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 161px;
  -webkit-flex-basis: 161px;
      -ms-flex-preferred-size: 161px;
          flex-basis: 161px;
  position: relative;
  padding: 25px 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .feeCol__dt {
    padding: 0;
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 30px 0;
  }
}
.feeCol__dt:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .feeCol__dt:after {
    display: none;
  }
}
@media screen and (max-width: 1180px) {
  .feeCol__dt_sp_center {
    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;
  }
}
.feeCol__dd {
  padding: 25px 0;
  position: relative;
  width: calc(100% - 171px);
  -webkit-flex-basis: calc(100% - 171px);
      -ms-flex-preferred-size: calc(100% - 171px);
          flex-basis: calc(100% - 171px);
  margin-left: 10px;
  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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .feeCol__dd {
    padding: 0;
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    margin-left: 0;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 10px;
    position: relative;
    padding: 30px 0 30px 10px;
  }
  .feeCol__dd br {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .feeCol__dd br.pcnon {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .feeCol__dd:before {
    content: "";
    width: 1px;
    height: calc(100% + 20px);
    top: -10px;
    left: 0;
    background: url(../images/border_03.png) no-repeat center center/cover;
    aspect-ratio: 4/618;
    display: block;
    position: absolute;
  }
}
.feeCol__dd:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .feeCol__dd:after {
    display: none;
  }
}
.feeCol__ddSm {
  font-size: 1.4rem;
  display: block;
  line-height: 1.5;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .feeCol__ddSm {
    font-size: 1.5rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 768px) {
  .feeCol__dd_type_center {
    text-align: center;
  }
}
.feeCol__dd_type_inline {
  display: inline-block;
}
.feeCol__ddLink {
  color: inherit;
  text-decoration: underline;
}
.feeCol__ddLink:hover {
  text-decoration: none;
}
.feeCol__desc {
  line-height: 1.875;
  margin-top: 25px;
}
.feeCol__desc a {
  color: inherit;
  text-decoration: underline;
}
.feeCol__desc a:hover {
  text-decoration: none;
}
.feeCol__ddSmLink {
  color: #141414;
  text-decoration: underline;
  display: inline;
}
.feeCol__ddSmLink:after {
  content: "";
  display: inline-block;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2016.28%2013.84%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3A%23141414%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22koko%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M3.26%2C1.63c0-.45.16-.83.48-1.15C4.05.16%2C4.44%2C0%2C4.88%2C0h9.77c.45%2C0%2C.83.16%2C1.15.48s.48.7.48%2C1.15v7.33c0%2C.45-.16.83-.48%2C1.15s-.7.48-1.15.48H4.88c-.45%2C0-.83-.16-1.15-.48-.32-.32-.48-.7-.48-1.15V1.63ZM14.65%2C8.95V1.63H4.88v7.33h9.77ZM0%2C3.26h1.63s0%2C8.95%2C0%2C8.95h11.4s0%2C1.63%2C0%2C1.63H1.63c-.45%2C0-.83-.16-1.15-.48C.16%2C13.04%2C0%2C12.66%2C0%2C12.21V3.26ZM14.65%2C8.95H4.88s9.77%2C0%2C9.77%2C0Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/cover;
  width: 16.2px;
  height: 13.8px;
  aspect-ratio: 16.2/13.8;
  margin-left: 8px;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  .feeCol__ddSmLink:after {
    width: 12px;
    height: auto;
  }
}
.feeCol__ddSmLink:hover {
  text-decoration: none;
}

.feeOption {
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .feeOption {
    margin-bottom: 50px;
  }
}
.feeOption__col {
  position: relative;
}
.feeOption__col:nth-of-type(1) {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .feeOption__col:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
.feeOption__col:nth-of-type(1) .feeOption__text {
  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-left: auto;
}
.feeOption__col:nth-of-type(1) .feeOption__fig {
  left: 0;
}
@media screen and (max-width: 768px) {
  .feeOption__col:nth-of-type(1) .feeOption__fig {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .feeOption__col:nth-of-type(1) .feeOption__subTtl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .feeOption__col:nth-of-type(1) .feeOption__desc {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.feeOption__col:nth-of-type(2) .feeOption__fig {
  right: 0;
}
@media screen and (max-width: 768px) {
  .feeOption__col:nth-of-type(2) .feeOption__img {
    aspect-ratio: 630/440;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.feeOption__col:nth-of-type(2) .feeOption__text {
  margin-right: auto;
}
@media screen and (max-width: 1130px) {
  .feeOption__col:nth-of-type(2) .feeOption__text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 1130px) {
  .feeOption__col:nth-of-type(2) .feeOption__subTtl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 1130px) {
  .feeOption__col:nth-of-type(2) .feeOption__fig {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 1130px) {
  .feeOption__col:nth-of-type(2) .feeOption__list {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.feeOption__text {
  width: 520px;
}
@media screen and (max-width: 1130px) {
  .feeOption__text {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.feeOption__ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 1130px) {
  .feeOption__ttl {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.feeOption__fig {
  position: absolute;
  top: 0;
  width: 520px;
  height: 100%;
}
@media screen and (max-width: 1130px) {
  .feeOption__fig {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 630 / 440;
    margin-bottom: 30px;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
.feeOption__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 1130px) {
  .feeOption__img {
    object-position: bottom center;
  }
}
@media screen and (max-width: 768px) {
  .feeOption__img {
    border-radius: 25px;
  }
}
.feeOption__subTtl {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 1130px) {
  .feeOption__subTtl {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .feeOption__subTtl {
    font-size: 1.7rem;
    text-align: center;
  }
}
.feeOption__desc {
  line-height: 1.875;
}
@media screen and (max-width: 1130px) {
  .feeOption__desc {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 0;
  }
}

.feeOption__block {
  margin-top: 30px;
}
.feeOption__blockTtl {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.feeOption__blockTtl:before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 5px;
  background-color: #c9caca;
  margin-right: 7px;
  display: block;
  position: relative;
  top: 1px;
}
.feeOption__blockItm + .feeOption__blockItm {
  margin-top: 30px;
}
.feeOption__blockItmTtl {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}
.feeOption__blockItmLink {
  margin-top: 20px;
  width: 360px;
  height: 50px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #141414;
  text-decoration: none;
  background: #efefe5;
  border: 1px solid #efefe5;
  border-radius: 99px;
}
.feeOption__blockItmLink::after {
  content: "";
  width: 13px;
  height: 13px;
  display: block;
  margin-left: 6px;
  background: url(../images/icon_linkother.svg) no-repeat center/contain;
}
.feeOption__blockItmLink:hover {
  background: #fff;
  color: #3e3a39;
}
@media screen and (max-width: 1130px) {
  .feeOption__block {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 768px) {
  .feeOption__blockItmLink {
    width: 100%;
  }
}

.feeOption__list:first-of-type {
  margin-bottom: 50px;
}
@media screen and (max-width: 1130px) {
  .feeOption__list:first-of-type {
    margin-bottom: 0;
  }
}
.feeOption__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1130px) {
  .feeOption__dl {
    position: relative;
  }
  .feeOption__dl:after {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1130px) {
  .feeOption__dl:first-of-type:before {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.feeOption__dl:first-of-type .feeOption__dt:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 1130px) {
  .feeOption__dl:first-of-type .feeOption__dt:before {
    display: none;
  }
}
.feeOption__dl:first-of-type .feeOption__dd:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 1130px) {
  .feeOption__dl:first-of-type .feeOption__dd:before {
    display: none;
  }
}
@media screen and (max-width: 1130px) {
  .feeOption__dl {
    padding: 15px 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.feeOption__dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 161px;
  -webkit-flex-basis: 161px;
      -ms-flex-preferred-size: 161px;
          flex-basis: 161px;
  position: relative;
  padding: 25px 0;
  font-weight: 500;
}
@media screen and (max-width: 1130px) {
  .feeOption__dt {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding: 0;
    font-size: 1.7rem;
    margin-bottom: 10px;
    display: block;
    text-align: left;
  }
}
.feeOption__dt:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 1130px) {
  .feeOption__dt:after {
    display: none;
  }
}
.feeOption__dd {
  padding: 25px 0;
  position: relative;
  width: calc(100% - 171px);
  -webkit-flex-basis: calc(100% - 171px);
      -ms-flex-preferred-size: calc(100% - 171px);
          flex-basis: calc(100% - 171px);
  margin-left: 10px;
  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;
}
@media screen and (max-width: 1130px) {
  .feeOption__dd {
    padding: 0;
    line-height: 1.5625;
    margin-left: 0;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.feeOption__dd:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 1130px) {
  .feeOption__dd:after {
    display: none;
  }
}
.feeOption__ddSm {
  font-size: 1.4rem;
  display: block;
  line-height: 1.5;
  margin-top: 5px;
}
.feeOption__desc {
  line-height: 1.875;
}
@media screen and (max-width: 1130px) {
  .feeOption__desc {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .feeOption__desc {
    margin-top: 0;
  }
}

.feeReservation__col {
  position: relative;
}
.feeReservation__item {
  width: 520px;
  margin-left: auto;
}
@media screen and (max-width: 1130px) {
  .feeReservation__item {
    width: 100%;
  }
}
.feeReservation__item:first-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .feeReservation__item:first-of-type {
    margin-bottom: 50px;
  }
}
.feeReservation__ttl {
  margin-bottom: 30px;
}
.feeReservation__fig {
  position: absolute;
  left: 0;
  top: 0;
  width: 520px;
  height: 100%;
}
@media screen and (max-width: 1130px) {
  .feeReservation__fig {
    position: static;
    width: 100%;
    margin-bottom: 45px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .feeReservation__fig {
    margin-bottom: 20px;
  }
}
.feeReservation__img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .feeReservation__img {
    border-radius: 25px;
    width: 100%;
    height: auto;
    aspect-ratio: 630/440;
  }
}
.feeReservation__desc {
  line-height: 1.875;
}
.feeReservation__bt {
  width: 230px;
  height: 56px;
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #46814f;
  border: 1px solid #46814f;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .feeReservation__bt {
    width: 100%;
    height: 50px;
    margin-left: 0;
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
.feeReservation__bt:before {
  content: "";
  display: block;
  width: 16.9px;
  height: 16.05px;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .feeReservation__bt:before {
    width: 18px;
    height: 17px;
    position: relative;
    top: 1px;
    margin-right: 10px;
  }
}
.feeReservation__bt:hover {
  color: #46814f;
  background-color: #fff;
}
.feeReservation__bt:hover:before {
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%2346814f%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.top {
  padding-top: 123px;
  overflow: hidden;
}
@media screen and (max-width: 1160px) {
  .top {
    padding-top: 83px;
  }
}
@media screen and (max-width: 768px) {
  .top {
    padding-top: 76px;
  }
}

.topMv {
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .topMv {
    margin-bottom: 60px;
  }
}
.topMv__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1160px) {
  .topMv__container {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.topMv__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 90px;
  padding-left: 7.53vw;
  padding-right: 7.53vw;
  position: relative;
  left: -20px;
  width: 26.03vw;
  -webkit-flex-basis: 26.03vw;
      -ms-flex-preferred-size: 26.03vw;
          flex-basis: 26.03vw;
}
@media screen and (max-width: 1260px) {
  .topMv__text {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 1160px) {
  .topMv__text {
    width: auto;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    left: 0;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 120px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .topMv__text {
    padding-top: 60px;
  }
}
.topMv__ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
  font-size: 3.1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.675;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 850px) {
  .topMv__ttl {
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.25em;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
  }
  .topMv__ttl br {
    display: none;
  }
}
.topMv__desc {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  font-size: 1.5rem;
  font-weight: 500;
  padding-top: 35px;
  padding-right: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1160px) {
  .topMv__desc {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1160px) {
  .topMv__desc {
    padding-top: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}
@media screen and (max-width: 850px) {
  .topMv__desc {
    font-size: 1.2rem;
    padding-right: 10px;
    line-height: 1.66;
  }
}
.topMv__fig {
  width: 73.97vw;
  -webkit-flex-basis: 73.97vw;
      -ms-flex-preferred-size: 73.97vw;
          flex-basis: 73.97vw;
  position: relative;
}
@media screen and (max-width: 1160px) {
  .topMv__fig {
    width: 77vw;
    -webkit-flex-basis: 77vw;
        -ms-flex-preferred-size: 77vw;
            flex-basis: 77vw;
  }
}
@media screen and (max-width: 768px) {
  .topMv__fig {
    width: 72.2vw;
    -webkit-flex-basis: 72.2vw;
        -ms-flex-preferred-size: 72.2vw;
            flex-basis: 72.2vw;
  }
}
@media screen and (max-width: 430px) {
  .topMv__fig {
    width: 270px;
    -webkit-flex-basis: 270px;
        -ms-flex-preferred-size: 270px;
            flex-basis: 270px;
  }
}
.topMv__fig::before {
  content: "";
  display: block;
  background: url(../images/img_illust_01.svg) no-repeat center center/cover;
  width: 210px;
  height: 165px;
  aspect-ratio: 210.78/165.56;
  position: absolute;
  left: -105px;
  bottom: -25px;
  z-index: 2;
}
@media screen and (max-width: 1160px) {
  .topMv__fig::before {
    width: 14vw;
    height: auto;
    left: -7.19vw;
    bottom: -1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .topMv__fig::before {
    width: 91px;
    height: auto;
    left: -47px;
    bottom: -12px;
  }
}
.topMv__img {
  border-radius: 14px 0 0 14px;
  width: 100%;
  height: calc(100vh - 165px);
  -o-object-fit: cover;
     object-fit: cover;
  height: 690px;
}
@media screen and (max-width: 1160px) {
  .topMv__img {
    width: 77vw;
    height: calc(100vh - 95px);
    height: calc(100dvh - 95px);
    max-height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  .topMv__img {
    width: 72.2vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topHeadNews {
  position: relative;
}
.topHeadNews:after {
  content: "";
  width: 100%;
  height: auto;
  background: url(../images/bg_page_foot.svg) no-repeat center center/cover;
  aspect-ratio: 1460/186;
  display: block;
  margin-top: -2.73vw;
  margin-bottom: -1.73vw;
}
.topHeadNews__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 95px;
}
@media screen and (max-width: 1160px) {
  .topHeadNews__container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -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;
  }
}
@media screen and (max-width: 768px) {
  .topHeadNews__container {
    padding-bottom: 25px;
  }
}
.topHeadNews__ttl {
  font-weight: 500;
  padding: 0 50px;
  border-left: 1px solid #141414;
  border-right: 1px solid #141414;
  margin-right: 50px;
}
@media screen and (max-width: 1160px) {
  .topHeadNews__ttl {
    margin-bottom: 20px;
    margin-right: 0;
    padding: 0 15px;
    margin-bottom: 12px;
  }
}
.topHeadNews__link {
  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: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .topHeadNews__link {
    display: block;
  }
}
.topHeadNews__link:hover .topHeadNews__head {
  text-decoration: underline;
}
.topHeadNews__date {
  display: block;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .topHeadNews__date {
    display: inline;
    line-height: 1.875;
  }
}
.topHeadNews__head {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 1160px) {
  .topHeadNews__head {
    -webkit-line-clamp: 3;
  }
}
@media screen and (max-width: 768px) {
  .topHeadNews__head {
    display: inline;
    line-height: 1.875;
    font-weight: 400;
  }
}

.topMain {
  background-color: #fafaf7;
  padding-top: 120px;
  padding-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .topMain {
    padding-top: 75px;
  }
}

.topIntro {
  position: relative;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .topIntro {
    margin-bottom: 100px;
  }
}
.topIntro__container {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(32.73vw + 40px);
}
@media screen and (max-width: 1160px) {
  .topIntro__container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 1160px) {
  .topIntro__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topIntro__head {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1160px) {
  .topIntro__ttl {
    margin-right: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topIntro__ttl {
    margin-right: 35px;
    margin-left: -5px;
  }
}
.topIntro__fig {
  position: absolute;
  right: 0;
  top: 40px;
  width: 43.28vw;
}
@media screen and (max-width: 1160px) {
  .topIntro__fig {
    position: static;
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: -30px;
  }
}
.topIntro__img {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 768px) {
  .topIntro__img {
    aspect-ratio: 520/450;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
  }
}
.topIntro__body {
  padding-left: 80px;
  padding-top: 40px;
}
@media screen and (max-width: 1160px) {
  .topIntro__body {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 1160px) {
  .topIntro__desc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .topIntro__desc {
    text-align: left;
  }
}
.topIntro__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
.topIntro__para:last-of-type {
  margin-bottom: 0;
}
.topIntro__picsContainer {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .topIntro__picsContainer {
    margin-top: 40px;
  }
}
.topIntro__pics {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .topIntro__pics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.topIntro__picsItem:nth-of-type(1) {
  position: relative;
  left: -75px;
  width: 624px;
}
@media screen and (max-width: 1260px) {
  .topIntro__picsItem:nth-of-type(1) {
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .topIntro__picsItem:nth-of-type(1) {
    position: static;
    width: 100%;
  }
}
.topIntro__picsItem:nth-of-type(2) {
  position: relative;
  margin-top: 120px;
  right: -50px;
  width: 377px;
}
@media screen and (max-width: 1260px) {
  .topIntro__picsItem:nth-of-type(2) {
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .topIntro__picsItem:nth-of-type(2) {
    position: static;
    width: 100%;
    margin-top: 30px;
  }
}
.topIntro__picsImg {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .topIntro__picsImg {
    border-radius: 5px;
    width: 100%;
    height: auto;
    aspect-ratio: 630/260;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.colTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.colTtl:before {
  content: "";
  display: block;
  width: 157.5px;
  height: 201.8px;
  background: url(../images/bg_colttl.svg) no-repeat center center/cover;
  aspect-ratio: 157.5/201.8;
  left: -50px;
  top: -70px;
  position: absolute;
}
@media screen and (max-width: 1160px) {
  .colTtl:before {
    left: -15px;
    top: -50px;
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .colTtl:before {
    width: 75px;
    top: -25px;
    left: -10px;
    background: url(../images/bg_colttl_sp.svg) no-repeat center center/cover;
    aspect-ratio: 150/166.7;
  }
}
.colTtl__en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: 18px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .colTtl__en {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-size: 1.2rem;
    margin-right: 0;
  }
}
.colTtl__jp {
  font-size: 3.2rem;
  font-weight: 400;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .colTtl__jp {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    font-size: 2.5rem;
    margin-right: 5px;
    font-weight: 400;
    white-space: nowrap;
  }
}
.topAbout {
  position: relative;
  margin-bottom: 175px;
}
@media screen and (max-width: 768px) {
  .topAbout {
    margin-bottom: 100px;
  }
}
.topAbout__cotainer {
  position: static;
  min-height: 35.479vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 6.5vw;
}
@media screen and (max-width: 1160px) {
  .topAbout__cotainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 1160px) {
  .topAbout__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .topAbout__ttl {
    margin-left: 45px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__ttl {
    margin-left: 35px;
    margin-right: -5px;
  }
}
.topAbout__ttl .colTtl__jp {
  text-indent: -0.65em;
}
.topAbout__fig {
  width: 44vw;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1160px) {
  .topAbout__fig {
    width: auto;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    position: static;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: -30px;
  }
}
.topAbout__img {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 768px) {
  .topAbout__img {
    aspect-ratio: 520/450;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topAbout__body {
  padding-left: 80px;
  position: relative;
  top: 65px;
}
@media screen and (max-width: 1160px) {
  .topAbout__body {
    width: 100%;
    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-left: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__body {
    display: block;
  }
}
@media screen and (max-width: 1160px) {
  .topAbout__desc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .topAbout__desc {
    text-align: left;
  }
}
.topAbout__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
.topAbout__para:last-of-type {
  margin-bottom: 0;
}
.topAbout__btn {
  margin-top: 30px;
}

.moreBtn {
  color: inherit;
  text-decoration: none;
  height: 48px;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: 32px;
}
@media screen and (max-width: 1160px) {
  .moreBtn {
    margin-left: -32px;
  }
}
@media screen and (max-width: 768px) {
  .moreBtn {
    font-size: 1.4rem;
    height: 32px;
    margin-left: 0;
  }
}
.moreBtn:hover .moreBtn__textInner {
  left: -3px;
}
@media screen and (max-width: 1160px) {
  .moreBtn:hover .moreBtn__textInner {
    left: 21px;
}
}
.moreBtn:after {
  content: "";
  display: block;
  height: 100%;
  width: 31px;
  border: 1px solid #141414;
  border-left: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1160px) {
  .moreBtn:after {
    right: -24px;
  }
}
@media screen and (max-width: 768px) {
  .moreBtn:after {
    width: 21px;
    right: -20px;
  }
}
.moreBtn__text:before {
  content: "";
  display: block;
  width: 1px;
  height: 9px;
  background-color: #141414;
  position: absolute;
  right: 31px;
  top: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1160px) {
  .moreBtn__text:before {
    right: 7px;
  }
}
@media screen and (max-width: 768px) {
  .moreBtn__text:before {
    height: 6px;
    right: 1px;
  }
}
.moreBtn__text:after {
  content: "";
  display: block;
  width: 1px;
  height: 9px;
  background-color: #141414;
  position: absolute;
  right: 31px;
  bottom: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1160px) {
  .moreBtn__text:after {
    right: 7px;
  }
}
@media screen and (max-width: 768px) {
  .moreBtn__text:after {
    height: 6px;
    right: 1px;
  }
}
.moreBtn__textInner {
  font-size: 1.5rem;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  position: relative;
  left: -32px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-bottom: 1px;
}
@media screen and (max-width: 1160px) {
  .moreBtn__textInner {
    left: 0;
  }
}
.topEx {
  position: relative;
}
.topEx__cotainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: static;
  min-height: 36.23vw;
}
@media screen and (max-width: 1160px) {
  .topEx__cotainer {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    min-height: auto;
  }
}
.topEx__head .colTtl__jp {
  text-indent: -0.65em;
}
@media screen and (max-width: 1160px) {
  .topEx__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topEx__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .topEx__ttl {
    margin-right: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topEx__ttl {
    margin-right: 35px;
    margin-left: -5px;
  }
}
.topEx__fig {
  position: absolute;
  right: 0;
  top: 0;
  width: 49.5vw;
}
@media screen and (max-width: 1160px) {
  .topEx__fig {
    position: static;
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: -30px;
  }
}
.topEx__img {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 768px) {
  .topEx__img {
    aspect-ratio: 520/450;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topEx__body {
  padding-left: 80px;
  padding-top: 50px;
}
@media screen and (max-width: 1160px) {
  .topEx__body {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    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-left: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .topEx__body {
    display: block;
  }
}
@media screen and (max-width: 1160px) {
  .topEx__desc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .topEx__desc {
    text-align: left;
  }
}
.topEx__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
.topEx__para:last-of-type {
  margin-bottom: 0;
}
.topEx__btn {
  margin-top: 30px;
}

.topExListSwiper {
  margin-top: 210px;
}
@media screen and (max-width: 768px) {
  .topExListSwiper {
    margin-top: 50px;
    padding-left: 30px;
  }
}

.topExList {
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .topExList {
    margin-bottom: 90px;
  }
}
.topExList__item {
  width: 342px;
}
@media screen and (max-width: 768px) {
  .topExList__item {
    width: 220px;
  }
}
.topExList__itemInner {
  text-decoration: none;
  color: inherit;
}
.topExList__main {
  position: relative;
}
.topExList__num {
  position: absolute;
  top: 18px;
  left: 24px;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .topExList__num {
    font-size: 1.6rem;
    top: 15px;
    left: 15px;
  }
}
.topExList__num:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .topExList__num:after {
    margin-top: 10px;
  }
}
.topExList__img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .topExList__img {
    border-radius: 5px;
  }
}
.topExList__name {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 2.4rem;
  background-color: #fafaf7;
  font-weight: 500;
  padding: 15px 30px 0 2px;
  border-radius: 0 10px 0 0;
}
@media screen and (max-width: 768px) {
  .topExList__name {
    font-size: 1.7rem;
    padding: 8px 30px 5px 0;
  }
}
.topExList__name:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  background: url(../images/bg_ex_01.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .topExList__name:before {
    width: 5px;
    left: 0px;
    top: -5px;
    height: 5px;
  }
}
.topExList__name:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0;
  right: -10px;
  display: block;
  background: url(../images/bg_ex_01.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .topExList__name:after {
    width: 5px;
    height: 5px;
    right: -5px;
  }
}
.topExList__desc {
  line-height: 2;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .topExList__desc {
    line-height: 1.875;
    margin-top: 22px;
  }
}
.topAccess {
  position: relative;
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .topAccess {
    margin-bottom: 100px;
  }
}
.topAccess__container {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(32.5vw + 40px);
}
@media screen and (max-width: 1160px) {
  .topAccess__container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    min-height: auto;
  }
}
@media screen and (max-width: 1160px) {
  .topAccess__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .topAccess__ttl {
    margin-right: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__ttl {
    margin-right: 20px;
    margin-left: -5px;
  }
}
.topAccess__map {
  width: 51vw;
  height: 32.5vw;
  border-radius: 16px 0 0 16px;
  position: absolute;
  right: 0;
  top: 40px;
}
@media screen and (max-width: 1160px) {
  .topAccess__map {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: static;
    margin-right: -30px;
    height: 59.44vw;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__map {
    aspect-ratio: 543/440;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topAccess__body {
  padding-left: 85px;
  position: relative;
  top: 40px;
}
@media screen and (max-width: 1160px) {
  .topAccess__body {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    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-left: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__body {
    display: block;
  }
}
.topAccess__desc {
  width: 280px;
  margin-bottom: 30px;
  border-bottom: 1px solid #9a9a9a;
  padding-bottom: 30px;
}
@media screen and (max-width: 1160px) {
  .topAccess__desc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__desc {
    text-align: left;
    width: 100%;
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
.topAccess__para {
  line-height: 2;
  margin-bottom: 1.5em;
}
.topAccess__para:last-of-type {
  margin-bottom: 0;
}
.topAccess__add {
  line-height: 2;
}
.topAccess__addTel {
  text-decoration: none;
  color: inherit;
}
.topAccess__addTel:hover {
  text-decoration: underline;
}
.topAccess__btn {
  margin-top: 30px;
}
.topAccess__pics {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .topAccess__pics {
    display: block;
    margin-top: 50px;
  }
}
.topAccess__picsItem:nth-of-type(1) {
  width: 624px;
  position: relative;
  left: -50px;
  margin-top: 120px;
}
@media screen and (max-width: 1260px) {
  .topAccess__picsItem:nth-of-type(1) {
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__picsItem:nth-of-type(1) {
    position: static;
    width: 100%;
    margin-top: 0;
  }
}
.topAccess__picsItem:nth-of-type(2) {
  width: 377px;
  position: relative;
  right: -50px;
}
@media screen and (max-width: 1260px) {
  .topAccess__picsItem:nth-of-type(2) {
    right: -30px;
  }
}
@media screen and (max-width: 768px) {
  .topAccess__picsItem:nth-of-type(2) {
    position: static;
    width: 100%;
    margin-top: 30px;
  }
}
.topAccess__picsImg {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .topAccess__picsImg {
    border-radius: 5px;
    width: 100%;
    height: auto;
    aspect-ratio: 630/260;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.topFaq {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .topFaq {
    margin-bottom: 0;
  }
}
.topFaq__container {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 45.89vw;
}
@media screen and (max-width: 1160px) {
  .topFaq__container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    min-height: auto;
  }
}
@media screen and (max-width: 1160px) {
  .topFaq__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topFaq__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .topFaq__ttl {
    margin-right: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topFaq__ttl {
    margin-right: 25px;
    margin-left: -5px;
  }
}
.topFaq__fig {
  width: 30.7vw;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1160px) {
  .topFaq__fig {
    position: static;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    margin-right: -30px;
  }
}
.topFaq__img {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 1160px) {
  .topFaq__img {
    height: 59.44vw;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .topFaq__img {
    aspect-ratio: 543/440;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.topFaq__body {
  padding-left: 85px;
  position: relative;
  top: 40px;
}
@media screen and (max-width: 1160px) {
  .topFaq__body {
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    padding-left: 0;
    top: 0;
  }
}
.topFaq__list {
  width: 550px;
}
@media screen and (max-width: 1260px) {
  .topFaq__list {
    width: 40vw;
  }
}
@media screen and (max-width: 1160px) {
  .topFaq__list {
    width: 100%;
  }
}
.topFaq__dl {
  border-bottom: 1px solid #9a9a9a;
}
.topFaq__dl.jsActive .topFaq__dtIcon:after {
  display: none;
}
.topFaq__dt {
  line-height: 2;
  padding: 20px 0;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .topFaq__dt {
    padding: 18px 0;
    padding-right: 50px;
  }
}
.topFaq__dt:hover {
  opacity: 0.75;
}
.topFaq__dtIcon:before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #141414;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
}
@media screen and (max-width: 768px) {
  .topFaq__dtIcon:before {
    width: 15px;
    top: calc(50% - 0.5px);
    right: 0px;
  }
}
.topFaq__dtIcon:after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #141414;
  position: absolute;
  right: 7.5px;
  top: calc(50% - 7.5px);
}
@media screen and (max-width: 768px) {
  .topFaq__dtIcon:after {
    height: 15px;
    top: calc(50% - 7.5px);
    right: 7px;
  }
}
.topFaq__dd {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  margin-top: -10px;
  margin-bottom: 30px;
  display: none;
  line-height: 2;
}
.topFaq__dd a,
.topFaq__ddLink {
  color: inherit;
  text-decoration: underline;
}
.topFaq__dd a:hover,
.topFaq__ddLink:hover {
  text-decoration: none;
}
.topFaq__btnArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 35px;
}
@media screen and (max-width: 1160px) {
  .topFaq__btnArea {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .topFaq__btnArea {
    margin-top: 30px;
    margin-left: 0;
  }
}
.topNews {
  margin-bottom: 175px;
}
@media screen and (max-width: 768px) {
  .topNews {
    margin-bottom: 100px;
  }
}
.topNews__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin-left: calc(50vw - 580px);
  padding-right: 0;
}
@media screen and (max-width: 1160px) {
  .topNews__container {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .topNews__container {
    display: block;
  }
}
.topNews__head {
  padding-right: 85px;
}
@media screen and (max-width: 768px) {
  .topNews__head {
    padding-right: 30px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topNews__ttl {
    text-align: center;
    width: 100%;
    display: block;
  }
  .topNews__ttl:before {
    left: calc(50% - 37.5px);
    top: -20px;
  }
  .topNews__ttl .colTtl__en {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: block;
    position: relative;
    z-index: 1;
  }
  .topNews__ttl .colTtl__jp {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: block;
    position: relative;
    z-index: 1;
  }
}
.topNews__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.topNews__footer {
  margin-right: calc(50vw - 550px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .topNews__footer {
    margin-top: 25px;
  }
}
.topNews__pager {
  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;
}
@media screen and (max-width: 1160px) {
  .topNews__pager {
    display: none;
  }
}
.topNews__swiperBtns {
  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;
}
.topNews__swiperPrev {
  width: 40px;
  height: 40px;
  background-color: #141414;
  position: static;
  margin: 0 0 0 0;
  border-radius: 4px;
  border: 1px solid #141414;
}
.topNews__swiperPrev:hover {
  background-color: #fff;
}
.topNews__swiperPrev:hover:after {
  color: #141414;
}
.topNews__swiperPrev:after {
  color: #fff;
  font-size: 1.2rem;
}
.topNews__swiperNext {
  width: 40px;
  height: 40px;
  background-color: #141414;
  position: static;
  margin: 0 0 0 0;
  border-radius: 4px;
  margin-left: 8px;
  border: 1px solid #141414;
}
.topNews__swiperNext:hover {
  background-color: #fff;
}
.topNews__swiperNext:hover:after {
  color: #141414;
}
.topNews__swiperNext:after {
  color: #fff;
  font-size: 1.2rem;
}
.topNews__pagerText {
  margin-left: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.topNewsList__item {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .topNewsList__item {
    width: 235px;
  }
}
.topNewsList__link {
  color: inherit;
  text-decoration: none;
}
.topNewsList__fig {
  width: 100%;
  aspect-ratio: 29 / 20;
  overflow: hidden;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .topNewsList__fig {
    border-radius: 5px;
  }
}
.topNewsList__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topNewsList__ttl {
  line-height: 2;
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .topNewsList__ttl {
    -webkit-line-clamp: 3;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
.topNewsList__info {
  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;
}
.topNewsList__date {
  font-size: 1.4rem;
  color: #9c9c9c;
  display: block;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .topNewsList__date {
    font-size: 1.2rem;
  }
}
.topNewsList__cat {
  font-size: 1.4rem;
  padding: 0px 10px 1px;
  background-color: #efefef;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .topNewsList__cat {
    font-size: 1.2rem;
    padding: 0px 5px 1px;
  }
}

.topInstagram__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  margin-left: calc(50vw - 580px);
  padding-right: 0;
}
@media screen and (max-width: 1160px) {
  .topInstagram__container {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .topInstagram__container {
    display: block;
  }
}
.topInstagram__head {
  padding-right: 85px;
}
@media screen and (max-width: 768px) {
  .topInstagram__head {
    padding-right: 30px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .topInstagram__ttl {
    text-align: center;
    width: 100%;
    display: block;
  }
  .topInstagram__ttl:before {
    left: calc(50% - 37.5px);
    top: -20px;
  }
  .topInstagram__ttl .colTtl__en {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: block;
    position: relative;
    z-index: 1;
  }
  .topInstagram__ttl .colTtl__jp {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: block;
    position: relative;
    z-index: 1;
  }
}
.topInstagram__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.topInstagram__item {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .topInstagram__item {
    width: 235px;
  }
}
.topInstagram__img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .topInstagram__img {
    border-radius: 5px;
  }
}
.topInstagram__footer {
  margin-right: calc(50vw - 550px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .topInstagram__footer {
    margin-top: 25px;
  }
}
.topInstagram__pager {
  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;
}
@media screen and (max-width: 1160px) {
  .topInstagram__pager {
    display: none;
  }
}
.topInstagram__swiperBtns {
  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;
}
.topInstagram__swiperPrev {
  width: 40px;
  height: 40px;
  background-color: #141414;
  position: static;
  margin: 0 0 0 0;
  border-radius: 4px;
  border: 1px solid #141414;
}
.topInstagram__swiperPrev:hover {
  background-color: #fff;
}
.topInstagram__swiperPrev:hover:after {
  color: #141414;
}
.topInstagram__swiperPrev:after {
  color: #fff;
  font-size: 1.2rem;
}
.topInstagram__swiperNext {
  width: 40px;
  height: 40px;
  background-color: #141414;
  position: static;
  margin: 0 0 0 0;
  border-radius: 4px;
  margin-left: 8px;
  border: 1px solid #141414;
}
.topInstagram__swiperNext:hover {
  background-color: #fff;
}
.topInstagram__swiperNext:hover:after {
  color: #141414;
}
.topInstagram__swiperNext:after {
  color: #fff;
  font-size: 1.2rem;
}
.topInstagram__pagerText {
  margin-left: 20px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.news {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 40px;
  }
}
.newsCats {
  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-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsCats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.newsCats__dt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .newsCats__dt {
    margin-right: 0;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .newsCats__dd {
    width: 100%;
  }
}
.newsCats__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -10px;
}
@media screen and (max-width: 768px) {
  .newsCats__list {
    margin: -5px;
  }
}
.newsCats__item {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .newsCats__item {
    min-width: 33.333%;
    padding: 5px;
  }
}
.newsCats__link {
  color: inherit;
  text-decoration: none;
  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;
  padding: 3px 20px;
  border-radius: 30px;
  color: #898989;
}
@media screen and (max-width: 768px) {
  .newsCats__link {
    font-size: 1.3rem;
    padding: 1px 10px 2px 10px;
  }
}
.newsCats__link:hover {
  color: inherit;
  font-weight: 500;
  background-color: #eaeadc;
}
.newsCats__link_is_current {
  color: inherit;
  font-weight: 500;
  background-color: #eaeadc;
}

.newsList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -25px -20px;
}
@media screen and (max-width: 768px) {
  .newsList {
    margin: -15px -14px;
  }
}
.newsList__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 25px 20px;
}
@media screen and (max-width: 1060px) {
  .newsList__item {
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
  }
}
@media screen and (max-width: 768px) {
  .newsList__item {
    padding: 15px 14px;
  }
}
.newsList__link {
  text-decoration: none;
  color: inherit;
}
.newsList__link:hover .newsList__fig {
  opacity: 0.75;
}
.newsList__link:hover .newsList__ttl {
  text-decoration: underline;
}
.newsList__fig {
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 34 / 24;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .newsList__fig {
    margin-bottom: 7px;
  }
}
.newsList__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.newsList__ttl {
  line-height: 1.875;
  font-weight: 500;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .newsList__ttl {
    font-size: 1.8rem;
    font-weight: 500;
    -webkit-line-clamp: 5;
    line-height: 1.66;
    margin-bottom: 7px;
  }
}
.newsList__status {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.newsList__date {
  font-size: 1.4rem;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .newsList__date {
    width: 100%;
    margin-right: 0;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
.newsList__new {
  font-weight: bold;
  color: #fff;
  padding: 3px 15px;
  border-radius: 30px;
  background-color: #46814f;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .newsList__new {
    font-size: 1.2rem;
    padding: 1px 10px 2px 10px;
    margin-right: 8px;
  }
}
.newsList__cat {
  font-weight: 500;
  padding: 3px 20px;
  background-color: #eaeadc;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .newsList__cat {
    font-size: 1.2rem;
    padding: 1px 15px 2px 15px;
  }
}

.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination__nav {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .pagination__nav {
    padding: 0 5px;
  }
}
.pagination__prev {
  width: 8.2px;
  height: 8.2px;
  display: block;
  border-left: 1px solid #727171;
  border-top: 1px solid #727171;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: 25px;
}
@media screen and (max-width: 768px) {
  .pagination__prev {
    margin-right: auto;
    width: 13px;
    height: 13px;
  }
}
.pagination__list {
  list-style: none;
  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;
}
.pagination__item {
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .pagination__item {
    padding: 0 12px;
  }
}
.pagination__link {
  width: 32px;
  height: 32px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #727171;
  font-weight: 500;
  border: 1px solid #46814f;
  border-radius: 32px;
  text-decoration: none;
  padding-bottom: 2.5px;
}
.pagination__link_is_current {
  width: 45px;
  height: 45px;
  background-color: #46814f;
  color: #fff;
  font-size: 2.4rem;
  padding-bottom: 3px;
}
.pagination__next {
  width: 8.2px;
  height: 8.2px;
  display: block;
  border-right: 1px solid #727171;
  border-top: 1px solid #727171;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  .pagination__next {
    margin-left: auto;
    width: 13px;
    height: 13px;
  }
}
.pagination__status {
  text-align: center;
  line-height: 1;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .pagination__status {
    font-size: 1.4rem;
  }
}

.newsSingle {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .newsSingle {
    padding-top: 40px;
  }
}
.newsSingle__caontainer {
  max-width: 1060px;
}
@media screen and (max-width: 768px) {
  .newsSingle__caontainer {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.newsSingle__top {
  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;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .newsSingle__top {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 25px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.newsSingle__info {
  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;
}
@media screen and (max-width: 768px) {
  .newsSingle__info {
    width: 100%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.newsSingle__date {
  font-size: 1.4rem;
  display: block;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .newsSingle__date {
    margin-right: 0;
    font-size: 1.2rem;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.newsSingle__new {
  font-weight: bold;
  color: #fff;
  padding: 3px 15px;
  border-radius: 30px;
  background-color: #46814f;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .newsSingle__new {
    font-size: 1.2rem;
    padding: 1px 10px;
    margin-right: 8px;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-left: 15px;
  }
}
.newsSingle__cat {
  font-weight: 500;
  padding: 3px 20px;
  background-color: #eaeadc;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .newsSingle__cat {
    font-size: 1.2rem;
    padding: 1px 15px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 15px;
  }
}
.newsSingle__sns {
  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;
}
@media screen and (max-width: 768px) {
  .newsSingle__sns {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.newsSingle__snsDt {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .newsSingle__snsDt {
    font-size: 1.6rem;
    margin-right: 12px;
  }
}
.newsSingle__snsList {
  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: -5px;
  margin-right: -5px;
}
@media screen and (max-width: 768px) {
  .newsSingle__snsList {
    margin-left: -4px;
    margin-right: -4px;
  }
}
.newsSingle__snsItem {
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .newsSingle__snsItem {
    padding: 0 4px;
  }
}
.newsSingle__snsLink:hover {
  opacity: 0.75;
}
.newsSingle__snsIcon {
  width: 30px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .newsSingle__snsIcon {
    width: 21px;
  }
}
.newsSingle__ttl {
  font-size: 3.2rem;
  line-height: 1.875;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .newsSingle__ttl {
    font-size: 1.8rem;
    line-height: 1.66;
    margin-bottom: 17px;
  }
}
.newsSingle__ec {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsSingle__ec {
    margin-bottom: 40px;
  }
}
.newsSingle__ecImg {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .newsSingle__ecImg {
    border-radius: 5px;
  }
}
.newsSingle__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;
}
@media screen and (max-width: 768px) {
  .newsSingle__footer {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.newsSingle__footer .newsSingle__sns {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .newsSingle__footer .newsSingle__sns {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingle__footer .reservationSection {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
}

.toc {
  background-color: #fafaf7;
  padding: 25px 40px;
  border-radius: 10px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .toc {
    padding: 22px 25px;
    margin-bottom: 25px;
  }
}
.toc__head {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .toc__head {
    font-size: 1.8rem;
    text-align: center;
  }
}
.toc__list {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .toc__list {
    padding-left: 0;
  }
}
.toc__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .toc__item:last-of-type {
    margin-bottom: 0;
  }
}
.toc__item:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #46814f;
  margin-right: 10px;
  min-width: 5px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .toc__item:before {
    margin-top: 14px;
  }
}
.toc__link {
  color: inherit;
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 2.22;
}
@media screen and (max-width: 768px) {
  .toc__link {
    font-size: 1.7rem;
    line-height: 1.76;
  }
}
.toc__link:hover {
  text-decoration: underline;
}

.newsSingleBody {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .newsSingleBody {
    padding-bottom: 50px;
  }
}
.newsSingleBody *:first-child {
  margin-top: 0;
}
.newsSingleBody *:last-child {
  margin-bottom: 0;
}
.newsSingleBody h2 {
  font-size: 2.8rem;
  line-height: 1.78;
  font-weight: 500;
  margin-top: 2.5em;
  margin-bottom: 1.25em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .newsSingleBody h2 {
    font-size: 1.8rem;
    line-height: 1.66;
    margin-top: 1.6em;
    margin-bottom: 1.2em;
  }
}
.newsSingleBody h2:after {
  content: "";
  display: block;
  background: url(../images/bg_headline_02.svg) no-repeat center center/contain;
  width: 73.7px;
  height: 82px;
  aspect-ratio: 73.7/82;
  position: absolute;
  z-index: -1;
  left: -50px;
  top: -15px;
}
@media screen and (max-width: 1180px) {
  .newsSingleBody h2:after {
    width: 60px;
    height: auto;
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .newsSingleBody h2:after {
    width: 42px;
    left: -25px;
    top: -10px;
  }
}
.newsSingleBody h3 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.875;
  margin-top: 2.5em;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 768px) {
  .newsSingleBody h3 {
    font-size: 1.7rem;
    line-height: 1.76;
    margin-top: 1.8em;
  }
}
.newsSingleBody p {
  line-height: 1.875;
  margin: 1.5em 0;
}
.newsSingleBody ul {
  margin: 1.3em 0;
}
.newsSingleBody li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.875;
}
.newsSingleBody li:before {
  content: "・";
}
.newsSingleBody img {
  border-radius: 10px;
}

.wp-block-image {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .wp-block-image {
    margin: 25px 0 30px;
  }
}

.wp-block-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 40px -20px;
}
@media screen and (max-width: 768px) {
  .wp-block-columns {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin: 25px 0;
  }
}
.wp-block-columns .wp-block-image {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .wp-block-columns .wp-block-image {
    margin-bottom: 20px;
  }
  .wp-block-columns .wp-block-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 630/210;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .wp-block-columns .wp-block-image img {
    aspect-ratio: inherit;
  }
}

.wp-block-column {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .wp-block-column {
    padding: 0;
  }
  .wp-block-column:last-of-type .wp-block-image {
    margin-bottom: 0;
  }
}

.reservationSection {
  height: 300px;
  position: relative;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .reservationSection {
    height: 175px;
  }
}
.reservationSection:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  display: block;
  background-color: rgba(35, 24, 21, 0.3);
  z-index: 1;
}
.reservationSection:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  display: block;
  background: url(../images/news/single/bg_reservation.jpg) no-repeat center center/cover;
}
.reservationSection__inner {
  position: relative;
  z-index: 3;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .reservationSection__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reservationSection__ttl {
  font-size: 4.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .reservationSection__ttl {
    font-size: 2.9rem;
    text-align: center;
    margin-bottom: 10px;
  }
}
.reservationSection__desc {
  font-weight: 500;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .reservationSection__desc {
    font-size: 1.4rem;
  }
}
.reservationSection__bt {
  width: 190px;
  height: 40px;
  font-size: 1.5rem;
  font-weight: 500;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 120px;
}
@media screen and (max-width: 768px) {
  .reservationSection__bt {
    width: 176px;
    height: 30px;
    margin-left: 0;
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
.reservationSection__bt:before {
  content: "";
  display: block;
  width: 16.9px;
  height: 16.05px;
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%23fff%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .reservationSection__bt:before {
    width: 13px;
    height: 11px;
    position: relative;
    top: 1px;
  }
}
.reservationSection__bt:hover {
  color: #141414;
  background-color: #fff;
}
.reservationSection__bt:hover:before {
  background: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2017.94%2017.05%22%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill%3Anone%3Bstroke%3A%2346814f%3Bstroke-linecap%3Around%3Bstroke-linejoin%3Around%3B%7D%3C%2Fstyle%3E%3C%2Fdefs%3E%3Cg%20id%3D%22_%E3%83%95%E3%83%83%E3%82%BF%E3%83%BC%22%3E%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_2-2%22%3E%3Cg%20id%3D%22icon_data%22%3E%3Cpath%20class%3D%22cls-1%22%20d%3D%22M5.4%2C2.28H1.39c-.49%2C0-.89.4-.89.89v12.48c0%2C.49.4.89.89.89h15.16c.49%2C0%2C.89-.4.89-.89V3.18c0-.49-.4-.89-.89-.89h-1.34%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%225.4%22%20y1%3D%22.5%22%20x2%3D%225.4%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2212.54%22%20y1%3D%22.5%22%20x2%3D%2212.54%22%20y2%3D%224.07%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%228.08%22%20y1%3D%222.28%22%20x2%3D%2212.54%22%20y2%3D%222.28%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%226.74%22%20x2%3D%2214.77%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%226.74%22%20x2%3D%224.07%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%226.74%22%20x2%3D%227.63%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%226.74%22%20x2%3D%2211.2%22%20y2%3D%226.74%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2213.88%22%20y1%3D%229.42%22%20x2%3D%2214.77%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%229.42%22%20x2%3D%224.07%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%229.42%22%20x2%3D%227.63%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%229.42%22%20x2%3D%2211.2%22%20y2%3D%229.42%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%223.18%22%20y1%3D%2212.09%22%20x2%3D%224.07%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%226.74%22%20y1%3D%2212.09%22%20x2%3D%227.63%22%20y2%3D%2212.09%22%2F%3E%3Cline%20class%3D%22cls-1%22%20x1%3D%2210.31%22%20y1%3D%2212.09%22%20x2%3D%2211.2%22%20y2%3D%2212.09%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.privacy {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding-top: 40px;
  }
}
.privacy__container {
  max-width: 1060px;
}
@media screen and (max-width: 768px) {
  .privacy__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.privacySection {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .privacySection {
    margin-bottom: 45px;
  }
}
.privacySection:last-of-type {
  margin-bottom: 0;
}
.privacySection__ttl {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .privacySection__ttl {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
.privacySection__para {
  line-height: 1.875;
  margin-bottom: 1.5em;
}
.privacySection__para:last-of-type {
  margin-bottom: 0;
}
.privacySection__paraLink {
  color: inherit;
  text-decoration: underline;
}
.privacySection__paraLink:hover {
  text-decoration: none;
}

.room {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .room {
    padding-top: 40px;
  }
}
.roomTab {
  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;
  gap: 110px;
  padding: 0 80px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1060px) {
  .roomTab {
    padding: 0 40px;
    gap: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .roomTab {
    padding: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
    margin-bottom: 26px;
    margin-left: -10px;
    margin-right: -10px;
  }
}
.roomTab__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  text-align: center;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  color: #999999;
}
@media screen and (max-width: 1060px) {
  .roomTab__item {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .roomTab__item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    padding: 0 13.5px;
    font-size: 1.6rem;
  }
}
.roomTab__item:hover {
  opacity: 0.75;
}
.roomTab__item_is_active {
  color: #141414;
}
.roomTab__item_is_active:after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background: url(../images/room/bg_tab.png) no-repeat center center/100% 100%;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.roomTabContents__item {
  display: none;
}
.roomTabContents__item_is_active {
  display: block;
}
.roomTabContents__ec {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .roomTabContents__ec {
    margin-bottom: 35px;
  }
}
.roomEquipment__ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 27px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .roomEquipment__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.roomEquipment__ttl:after {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background-color: #141414;
  margin-top: 22px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .roomEquipment__ttl:after {
    width: 12px;
    margin-top: 16px;
  }
}
.roomEquipment__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -25px -20px;
}
@media screen and (max-width: 768px) {
  .roomEquipment__list {
    margin: -7.5px -5px;
  }
}
.roomEquipment__item {
  width: 33.333%;
  -webkit-flex-basis: 33.333%;
      -ms-flex-preferred-size: 33.333%;
          flex-basis: 33.333%;
  padding: 25px 20px;
}
@media screen and (max-width: 768px) {
  .roomEquipment__item {
    width: 50%;
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    padding: 10px 5px;
  }
}
.roomEquipment__itemInner {
  position: relative;
}
.roomEquipment__img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .roomEquipment__img {
    border-radius: 5px;
  }
}
.roomEquipment__name {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 2.4rem;
  background-color: #ffffff;
  font-weight: 500;
  padding: 20px 15px 0 0px;
  border-radius: 0 10px 0 0;
  z-index: 1;
  margin-bottom: -2px;
}
@media screen and (max-width: 1060px) {
  .roomEquipment__name {
    font-size: 1.9rem;
    padding-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .roomEquipment__name {
    font-size: 1.6rem;
    padding-top: 5px;
    padding-right: 8px;
    max-width: calc(100% - 20px);
  }
}
.roomEquipment__name:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: -10px;
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .roomEquipment__name:before {
    width: 5px;
    left: 0px;
    top: -5px;
    height: 5px;
  }
}
.roomEquipment__name:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0px;
  right: -10px;
  display: block;
  background: url(../images/bg_ex_02.svg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .roomEquipment__name:after {
    width: 5px;
    height: 5px;
    right: -5px;
  }
}
.roomEquipment__name_type_sm {
  padding-right: 3px;
}
@media screen and (max-width: 768px) {
  .roomEquipment__name_type_sm {
    padding-right: 0;
  }
}
.roomEquipment__intro {
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .roomEquipment__intro {
    line-height: 1.875;
    text-align: left;
    margin-bottom: 20px;
  }
}

.roomDetail {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .roomDetail {
    margin-top: 45px;
  }
}
.roomDetail__ttl {
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .roomDetail__ttl {
    font-size: 2.3rem;
    margin-bottom: 30px;
    display: block;
    text-align: center;
  }
}
.roomDetail__ttl:after {
  content: "";
  width: 100%;
  height: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #efefe5;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .roomDetail__ttl:after {
    height: 15px;
    bottom: -3px;
  }
}
.roomDetail__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 768px) {
  .roomDetail__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
}
.roomDetail__item {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .roomDetail__item {
    padding: 0;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media screen and (max-width: 768px) {
  .roomDetail__item:first-of-type .roomDetail__dl:last-of-type:after {
    display: none;
  }
}
.roomDetail__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .roomDetail__dl {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0;
    position: relative;
  }
  .roomDetail__dl:after {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .roomDetail__dl:first-of-type:before {
    content: "";
    display: block;
    background: url(../images/border_04.png) no-repeat center center/cover;
    width: 100%;
    height: 1px;
    aspect-ratio: 2522/6;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.roomDetail__dl:first-of-type .roomDetail__dt:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .roomDetail__dl:first-of-type .roomDetail__dt:before {
    display: none;
  }
}
.roomDetail__dl:first-of-type .roomDetail__dd:before {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .roomDetail__dl:first-of-type .roomDetail__dd:before {
    display: none;
  }
}
.roomDetail__dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 161px;
  -webkit-flex-basis: 161px;
      -ms-flex-preferred-size: 161px;
          flex-basis: 161px;
  position: relative;
  padding: 25px 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .roomDetail__dt {
    padding: 0;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
.roomDetail__dt:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_01.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 1612/8;
}
@media screen and (max-width: 768px) {
  .roomDetail__dt:after {
    display: none;
  }
}
.roomDetail__dd {
  padding: 25px 0;
  position: relative;
  width: calc(100% - 171px);
  -webkit-flex-basis: calc(100% - 171px);
      -ms-flex-preferred-size: calc(100% - 171px);
          flex-basis: calc(100% - 171px);
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .roomDetail__dd {
    padding: 0;
    width: 100%;
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    margin-left: 0;
    line-height: 1.5;
    font-weight: 400;
    padding-left: 10px;
    position: relative;
    line-height: 1.5625;
    padding-left: 0;
  }
  .roomDetail__dd br {
    display: none;
  }
}
.roomDetail__dd:after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../images/boder_02.png) no-repeat center center/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 3492/10;
}
@media screen and (max-width: 768px) {
  .roomDetail__dd:after {
    display: none;
  }
}
.roomDetail__caution {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .roomDetail__caution {
    margin-top: 45px;
  }
}
.roomDetail__cautionTtl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .roomDetail__cautionTtl {
    font-size: 1.7rem;
  }
}
.roomDetail__cautionItem {
  margin-bottom: 15px;
}
.roomDetail__cautionItem:last-of-type {
  margin-bottom: 0;
}
.roomDetail__cautionDt {
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .roomDetail__cautionDt {
    margin-bottom: 12px;
  }
}
.roomDetail__cautionDt:before {
  content: "・";
}
.roomDetail__cautionDd {
  padding-left: 1em;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .roomDetail__cautionDd {
    line-height: 1.5625;
  }
}

.term {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .term {
    padding-top: 40px;
  }
}
.term__container {
  max-width: 1060px;
}
@media screen and (max-width: 768px) {
  .term__container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.termSection {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .termSection {
    margin-bottom: 45px;
  }
}
.termSection:last-of-type {
  margin-bottom: 0;
}
.termSection__ttl {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .termSection__ttl {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
.termSection__body {
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .termSection__body {
    padding-left: 0;
    padding-right: 0;
  }
}
.termSection__para {
  line-height: 1.875;
  margin-bottom: 1.5em;
}
.termSection__para:last-of-type {
  margin-bottom: 0;
}
.termSection__list_type_01 {
  counter-reset: number 0;
}
.termSection__list_type_01 .termSection__item:before {
  counter-increment: number 1;
  content: counter(number) ".";
}
@media screen and (max-width: 768px) {
  .termSection__list_type_01 {
    padding-left: 0;
    padding-right: 0;
  }
}
.termSection__list_type_02 {
  counter-reset: number 0;
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .termSection__list_type_02 {
    padding-left: 0;
    padding-right: 0;
  }
}
.termSection__list_type_02 .termSection__item:before {
  counter-increment: number 1;
  content: "(" counter(number) ")";
}
.termSection__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.875;
}
.termSection__item a {
  color: #141414;
  text-decoration: underline;
}
.termSection__item a:hover {
  text-decoration: none;
}
.termSection__underList {
  counter-reset: number 0;
}
.termSection__underListItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.termSection__underListItem::before {
  counter-increment: number 1;
  content: "(" counter(number, katakana) ")";
}
.termSection__subTtl {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 45px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .termSection__subTtl {
    font-size: 1.7rem;
    margin-bottom: 4px;
  }
}
.termSection__list_type_03 .termSection__item:before {
  content: "5.";
}
.termSection__table {
  border: 1px solid #141414;
  border-bottom: none;
}
.termSection__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.termSection__dl_type_head .termSection__dt, .termSection__dl_type_head .termSection__dd {
  font-weight: 500;
}
.termSection__dt {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  border-right: 1px solid #141414;
  border-bottom: 1px solid #141414;
  padding: 3px 20px;
}
@media screen and (max-width: 768px) {
  .termSection__dt {
    padding: 5px 10px;
  }
}
.termSection__dd {
  width: 50%;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  border-bottom: 1px solid #141414;
  padding: 3px 20px;
}
@media screen and (max-width: 768px) {
  .termSection__dd {
    padding: 5px 10px;
  }
}

.termCancel__ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
  text-indent: -0.5em;
}
@media screen and (max-width: 768px) {
  .termCancel__ttl {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
  }
}
.termCancel__sub {
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (max-width: 768px) {
  .termCancel__sub {
    padding-left: 0;
    padding-right: 0;
  }
}
.termCancel__subTtl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .termCancel__subTtl {
    font-size: 1.7rem;
  }
}
.termCancel__subDesc {
  line-height: 1.875;
}
.termCancel__tableTtl {
  margin-top: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .termCancel__tableTtl {
    margin-top: 25px;
    margin-bottom: 5px;
  }
}
.termCancel__tableCaution {
  margin-top: 8px;
}
.termCancel__caution {
  margin-top: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.875;
}
.termCancel__caution:before {
  content: "※";
}
