@charset "UTF-8";
.bold {
  font-weight: bold;
}

/* 「color」 */
html, body {
  color: #000;
  font-family: "Noto Sans JP", "Sawarabi Gothic";
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

html, body, main, div, section, 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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  background: transparent;
  border: 0;
  font-weight: normal;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

img {
  max-width: 100%;
  width: auto;
}

ul li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}
a:hover {
  opacity: 0.5;
}

/* 「br」タグ */
.br900 {
  display: none;
}
@media (max-width: 900px) {
  .br900 {
    display: block;
  }
}

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

.br640 {
  display: none;
}
@media (max-width: 640px) {
  .br640 {
    display: block;
  }
}

.br480 {
  display: none;
}
@media (max-width: 480px) {
  .br480 {
    display: block;
  }
}

.br400 {
  display: none;
}
@media (max-width: 400px) {
  .br400 {
    display: block;
  }
}

.pc-block {
  display: block;
}
@media (max-width: 640px) {
  .pc-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media (max-width: 640px) {
  .sp-block {
    display: block;
  }
}

.scroll-hint {
  display: none;
}

@media (max-width: 640px) {
  .scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    padding: 25px 14px;
    border-radius: 10px;
    background: #e45f05;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    z-index: 10;
  }
  .scroll-hint::before {
    content: "⇆";
    font-size: 16px;
  }
}
/* 点滅アニメーション */
@-webkit-keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* 最初だけチカチカ（3回繰り返す） */
.scroll-hint.blink {
  -webkit-animation: blink 2s ease-in-out 1.5;
          animation: blink 2s ease-in-out 1.5;
}

.scroll-hint.hidden {
  opacity: 0;
}

/*モーダルウィンドウ*/
/* Lightboxの白背景コンテナを画像サイズに合わせる */
.lb-outerContainer {
  width: auto !important;
  height: auto !important;
  max-width: 90vw !important;
  max-height: 85vh !important;
  margin: 0 auto;
  text-align: center;
}

/* 中の画像も最大サイズを制御 */
.lb-image {
  width: 100% !important;
  height: auto !important;
  max-width: 90vw !important;
  max-height: 80vh !important;
  padding: 1em 0;
}

/* 「ヘッダー」*/
header {
  position: relative;
}
header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 2.5%;
  padding: 30px 0;
}
@media (max-width: 768px) {
  header .header-inner {
    padding: 17px 0;
    gap: 0 20px;
  }
}
@media (max-width: 480px) {
  header .header-inner {
    padding: 9px 0;
  }
}
header .header-inner .header-logo {
  max-width: 384px;
  width: 90%;
  aspect-ratio: 384/44;
  height: 100%;
}
@media (max-width: 1500px) {
  header .header-inner .header-logo {
    width: 27%;
    max-width: unset;
    min-width: 300px;
  }
}
@media (max-width: 640px) {
  header .header-inner .header-logo {
    min-width: 250px;
    height: auto;
  }
}
header .header-inner .header-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 5% 0 auto;
}
@media (max-width: 1100px) {
  header .header-inner .header-middle {
    margin: 0 2% 0 auto;
  }
}
@media (max-width: 1000px) {
  header .header-inner .header-middle {
    display: none;
  }
}
header .header-inner .header-middle li a {
  padding: 0 18px;
  border-right: 1px solid #000;
  letter-spacing: 1.5px;
}
@media (max-width: 1500px) {
  header .header-inner .header-middle li a {
    font-size: 15px;
    padding: 0 8px;
  }
}
header .header-inner .header-middle li:nth-child(1) a {
  border-left: 1px solid #000;
}
header .header-inner .header-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
}
@media (max-width: 1500px) {
  header .header-inner .header-sns {
    gap: 0 14px;
  }
}
@media (max-width: 1000px) {
  header .header-inner .header-sns {
    display: none;
  }
}
@media (max-width: 1500px) {
  header .header-inner .header-sns img {
    width: 30px;
  }
}
header #nav-outer {
  display: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 100;
}
@media (max-width: 1000px) {
  header #nav-outer {
    display: block;
  }
}
header #nav-outer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
header #nav-outer nav label {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 20px;
  width: 36px;
  height: 20px;
  cursor: pointer;
  z-index: 2;
}
@media (max-width: 480px) {
  header #nav-outer nav label {
    height: 16px;
    width: 30px;
  }
}
header #nav-outer nav label.is-open span {
  background-color: #c35c77;
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header #nav-outer nav label.is-open span:before {
  background-color: #c35c77;
  top: 0px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
header #nav-outer nav label span {
  background-color: #000;
  bottom: 0;
  display: inline-block;
  height: 3px;
  position: absolute;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  width: 100%;
}
header #nav-outer nav label span:before {
  background-color: #000;
  content: "";
  display: inline-block;
  height: 3px;
  position: absolute;
  top: -20px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  width: 100%;
}
@media (max-width: 480px) {
  header #nav-outer nav label span:before {
    top: -13px;
  }
}
header #nav-outer nav .menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: -600px 0 0 0;
  padding: 0.6em 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
header #nav-outer nav .menu-box.active {
  left: 0;
  margin: 0;
  padding: 0;
  visibility: visible;
}
header #nav-outer nav .menu-box .menu-box-header {
  background: #fff;
  padding: 30px 0;
}
@media (max-width: 768px) {
  header #nav-outer nav .menu-box .menu-box-header {
    padding: 17px 0;
  }
}
@media (max-width: 640px) {
  header #nav-outer nav .menu-box .menu-box-header {
    padding: 27px 0;
  }
}
@media (max-width: 480px) {
  header #nav-outer nav .menu-box .menu-box-header {
    padding: 20px 0;
  }
}
header #nav-outer nav .menu-box .menu-box-header .menu-box-header-img {
  text-align: center;
  height: 44px;
}
@media (max-width: 768px) {
  header #nav-outer nav .menu-box .menu-box-header .menu-box-header-img {
    width: 350px;
    height: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  header #nav-outer nav .menu-box .menu-box-header .menu-box-header-img {
    width: 250px;
    height: 28.64px;
    margin-left: 10px;
    text-align: left;
  }
}
header #nav-outer nav .menu-box ul li {
  border-top: 1px solid #fff;
  padding: 20px 0;
}
@media (max-width: 640px) {
  header #nav-outer nav .menu-box ul li {
    padding: 14px 0;
  }
}
header #nav-outer nav .menu-box ul li a {
  color: #fff;
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 640px) {
  header #nav-outer nav .menu-box ul li a {
    font-size: 15px;
  }
}
header #nav-outer nav .menu-box ul li:last-child {
  border-bottom: 1px solid #fff;
}
header #nav-outer nav .menu-box ul li:hover a {
  color: #f5e4e9;
}

.section01 {
  position: relative;
}
.section01 .main-box .main-img02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section02 {
  position: relative;
  background-color: #e45f05;
  padding: 40px 0;
}
.section02 .sec02-inner {
  position: relative;
  max-width: 1265px;
  width: 85%;
  margin: 0 auto;
}
.section02 .sec02-inner .sec02-box01 {
  max-width: 1010px;
  margin: 0 auto 3.8%;
}
.section02 .sec02-inner .sec02-box02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 915px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .section02 .sec02-inner .sec02-box02 {
    display: block;
  }
}
.section02 .sec02-inner .sec02-box02 .sec02-box02-room {
  max-width: 48%;
}
@media (max-width: 640px) {
  .section02 .sec02-inner .sec02-box02 .sec02-box02-room {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
.section02 .sec02-inner .sec02-box02 .sec02-box02-room .sec02-box02-img img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.section02 .sec02-inner .sec02-box02 .sec02-box02-room .sec02-box02-img img:nth-child(2) {
  margin-top: 10px;
}
@media (max-width: 640px) {
  .section02 .sec02-inner .sec02-box02 .sec02-box02-room01 {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .section02 .sec02-inner .sec02-box02 .sec02-box02-room01 {
    margin-bottom: 70px;
  }
}
.section02 .sec02-inner .sec02-box02 .sec02-box02-room02 {
  text-align: right;
}
@media (max-width: 640px) {
  .section02 .sec02-inner .sec02-box02 .sec02-box02-room02 {
    text-align: center;
  }
}
.section02 .sec02-inner .sec02-box03 {
  max-width: 575px;
  width: 100%;
  margin: 2.4% auto 3%;
}
.section02 .sec02-inner .sec02-box04 {
  max-width: 1265px;
  width: 100%;
  margin: 0 auto;
}

.section03 {
  position: relative;
  background: url("../img/back-img02.webp") no-repeat;
  background-size: cover;
  background-position: top right;
  padding: 53px 0;
}
@media (max-width: 900px) {
  .section03 {
    padding: 50px 0 0;
  }
}
.section03 .sec03-inner {
  position: relative;
  max-width: 495px;
  width: 85%;
  margin: 0 auto;
  padding-left: 38%;
  z-index: 1;
}
@media (max-width: 1500px) {
  .section03 .sec03-inner {
    max-width: 420px;
  }
}
@media (max-width: 900px) {
  .section03 .sec03-inner {
    padding: 0;
  }
}
@media (max-width: 640px) {
  .section03 .sec03-inner {
    max-width: 400px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section03 .sec03-inner .sec03-imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section03 .sec03-inner .sec03-text01 {
  font-size: 21px;
  line-height: 1.7em;
  margin: 10px auto 25px;
  letter-spacing: 4px;
  font-weight: bold;
}
@media (max-width: 1500px) {
  .section03 .sec03-inner .sec03-text01 {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .section03 .sec03-inner .sec03-text01 {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .section03 .sec03-inner .sec03-text01 {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
@media (max-width: 640px) {
  .section03 .sec03-inner .sec03-text01 {
    font-size: 14px;
  }
}
.section03 .sec03-inner .sec03-btn a {
  position: relative;
  max-width: 378px;
  padding: 2.2% 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #4596ff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1500px) {
  .section03 .sec03-inner .sec03-btn a {
    max-width: 350px;
  }
}
@media (max-width: 900px) {
  .section03 .sec03-inner .sec03-btn a {
    margin: 0 auto;
  }
}
.section03 .sec03-inner .sec03-btn a:before {
  position: absolute;
  content: ">";
  top: 50%;
  right: 6%;
  font-size: 1.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section03 .sec03-inner .sec03-btn a img {
  width: 20.2%;
  margin-right: 4%;
}
.section03 .sec03-inner .sec03-btn a p {
  font-size: 19px;
  letter-spacing: 2px;
}
@media (max-width: 1500px) {
  .section03 .sec03-inner .sec03-btn a p {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .section03 .sec03-inner .sec03-btn a p {
    font-size: 15px;
  }
}
.section03 .sec03-back-img {
  position: absolute;
  left: 3%;
  bottom: 0;
  width: 34.13%;
}
@media (max-width: 1100px) {
  .section03 .sec03-back-img {
    max-width: 375px;
    width: 90%;
  }
}
@media (max-width: 900px) {
  .section03 .sec03-back-img {
    display: block;
    position: relative;
    margin: 50px auto 0;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}
@media (max-width: 640px) {
  .section03 .sec03-back-img {
    margin-top: 30px;
  }
}

.section04 {
  background: url("../img/sec04-bg.webp") no-repeat;
  background-size: cover;
  background-position: center;
}
.section04 .sec04-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 993px;
  width: 85%;
  margin: 0 auto;
  padding: 2.6% 0;
}
@media (max-width: 900px) {
  .section04 .sec04-inner {
    padding: 5% 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.section04 .sec04-inner .sec04-textbox {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media (max-width: 1500px) {
  .section04 .sec04-inner .sec04-textbox {
    font-size: 25px;
  }
}
@media (max-width: 900px) {
  .section04 .sec04-inner .sec04-textbox {
    font-size: 23px;
    margin-top: 1em;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .section04 .sec04-inner .sec04-textbox {
    font-size: 17px;
  }
}
.section04 .sec04-inner .sec04-imgbox {
  max-width: 376px;
  width: 100%;
}
@media (max-width: 1500px) {
  .section04 .sec04-inner .sec04-imgbox {
    max-width: 310px;
  }
}
@media (max-width: 640px) {
  .section04 .sec04-inner .sec04-imgbox {
    max-width: 230px;
    width: 60%;
  }
}

.section05 {
  position: relative;
  background: url("../img/sec05-bg.webp") no-repeat;
  background-size: cover;
  background-position: top right;
  padding: 47px 0;
}
@media (max-width: 900px) {
  .section05 {
    padding: 50px 0 0;
    background-position: center;
  }
}
.section05 .sec05-inner {
  position: relative;
  max-width: 457px;
  width: 85%;
  margin: 0 auto;
  padding-right: 38%;
  z-index: 1;
}
@media (max-width: 1500px) {
  .section05 .sec05-inner {
    max-width: 400px;
  }
}
@media (max-width: 900px) {
  .section05 .sec05-inner {
    padding: 0;
  }
}
.section05 .sec05-inner .sec05-imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .section05 .sec05-inner .sec05-imgbox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section05 .sec05-inner .sec05-imgbox img {
  width: 100%;
}
.section05 .sec05-inner .sec05-text01 {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.7em;
  margin: 10px auto 25px;
  letter-spacing: 4px;
}
@media (max-width: 1500px) {
  .section05 .sec05-inner .sec05-text01 {
    font-size: 18px;
  }
}
@media (max-width: 1100px) {
  .section05 .sec05-inner .sec05-text01 {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .section05 .sec05-inner .sec05-text01 {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .section05 .sec05-inner .sec05-text01 {
    font-size: 14px;
  }
}
.section05 .sec05-inner .sec05-btn a {
  position: relative;
  max-width: 378px;
  padding: 3.2% 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #4596ff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 1500px) {
  .section05 .sec05-inner .sec05-btn a {
    max-width: 350px;
  }
}
@media (max-width: 900px) {
  .section05 .sec05-inner .sec05-btn a {
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .section05 .sec05-inner .sec05-btn a {
    padding: 2.2% 3%;
  }
}
.section05 .sec05-inner .sec05-btn a:before {
  position: absolute;
  content: ">";
  top: 50%;
  right: 6%;
  font-size: 1.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section05 .sec05-inner .sec05-btn a img {
  margin-right: 4%;
}
.section05 .sec05-inner .sec05-btn a p {
  font-size: 19px;
  letter-spacing: 2px;
}
@media (max-width: 1500px) {
  .section05 .sec05-inner .sec05-btn a p {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .section05 .sec05-inner .sec05-btn a p {
    font-size: 15px;
  }
}
.section05 .sec05-back-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 102%;
}
@media (max-width: 1100px) {
  .section05 .sec05-back-img {
    height: 87%;
  }
}
@media (max-width: 900px) {
  .section05 .sec05-back-img {
    position: relative;
    display: block;
    margin: 50px auto 0;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    height: auto;
    max-width: 516px;
    width: 90%;
  }
}
@media (max-width: 640px) {
  .section05 .sec05-back-img {
    margin-top: 30px;
  }
}

.detail-sec01 {
  padding: 68px 0 150px;
}
@media (max-width: 768px) {
  .detail-sec01 {
    padding: 50px 0 140px;
  }
}

.detail-sec02 {
  padding: 60px 0 75px;
}
@media (max-width: 768px) {
  .detail-sec02 {
    padding: 50px 0;
  }
}

.detail-sec .detail-sec-inner .detail-sec-text01 {
  position: relative;
  font-size: 23px;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .detail-sec .detail-sec-inner .detail-sec-text01 {
    font-size: 20px;
  }
}
.detail-sec .detail-sec-inner .detail-sec-text01::before {
  position: absolute;
  left: -0.5em;
  bottom: 0;
  content: "";
  border-left: 3px solid #000;
  border-radius: 7px;
  height: 1.3em;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  font-size: 1.2em;
}
.detail-sec .detail-sec-inner .detail-sec-text01::after {
  position: absolute;
  right: -0.5em;
  bottom: 0;
  content: "";
  border-right: 3px solid #000;
  border-radius: 7px;
  height: 1.3em;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  font-size: 1.2em;
}
.detail-sec .detail-sec-inner .detail-sec-btn a {
  display: block;
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#e45f05), to(#e8772b));
  background: linear-gradient(0deg, #e45f05, #e8772b);
  font-size: 25px;
  text-align: center;
  max-width: 380px;
  width: 95%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 60px;
  padding: 1.21%;
  margin: 15px auto 0;
  border: none;
  -webkit-transition: 1s;
  transition: 1s;
}
.detail-sec .detail-sec-inner .detail-sec-btn a:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#e45f05), to(#e45f05));
  background: linear-gradient(0deg, #e45f05, #e45f05);
  opacity: 1;
}
@media (max-width: 640px) {
  .detail-sec .detail-sec-inner .detail-sec-btn a {
    max-width: 300px;
    font-size: 20px;
  }
}
.detail-sec .detail-sec-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.detail-sec .detail-sec-inner ul li {
  list-style-type: "※";
  margin-left: 1em;
  margin-top: 1em;
  letter-spacing: 1px;
}
@media (max-width: 640px) {
  .detail-sec .detail-sec-inner ul li {
    font-size: 14px;
  }
}

.section06 {
  position: relative;
  background-color: #ffedde;
}
.section06 .sec06-inner {
  max-width: 1240px;
  width: 85%;
  margin: 0 auto;
  padding: 236px 0 93px;
}
@media (max-width: 900px) {
  .section06 .sec06-inner {
    padding-top: 195px;
  }
}
@media (max-width: 768px) {
  .section06 .sec06-inner {
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .section06 .sec06-inner {
    padding-top: 170px;
  }
}
@media screen and (max-width: 520px) {
  .section06 .sec06-inner {
    padding-top: 140px;
  }
}
.section06 .sec06-inner .sec06-merit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 4.27%;
}
@media (max-width: 900px) {
  .section06 .sec06-inner .sec06-merit-box {
    gap: 30px 6%;
  }
}
.section06 .sec06-inner .sec06-merit-box div {
  width: 30.48%;
}
@media (max-width: 900px) {
  .section06 .sec06-inner .sec06-merit-box div {
    width: 47%;
  }
}

.section07 {
  position: relative;
  background-color: #ffedde;
  margin-top: 160px;
  margin-bottom: 155px;
}
@media (max-width: 768px) {
  .section07 {
    margin-top: 115px;
    margin-bottom: 130px;
  }
}
.section07 .sec07-inner {
  max-width: 1086px;
  width: 95%;
  margin: 0 auto;
  padding: 210px 0 68px;
}
@media (max-width: 900px) {
  .section07 .sec07-inner {
    padding-top: 180px;
  }
}
@media (max-width: 768px) {
  .section07 .sec07-inner {
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .section07 .sec07-inner {
    padding-top: 140px;
  }
}
@media screen and (max-width: 520px) {
  .section07 .sec07-inner {
    padding-top: 110px;
  }
}
.section07 .sec07-inner .sec07-text01 {
  text-align: center;
  font-size: 17px;
  margin: 22px auto 36px;
}
.section07 .sec07-inner .sec07-hiyo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  gap: 0 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box {
    gap: 0 13px;
  }
}
@media (max-width: 768px) {
  .section07 .sec07-inner .sec07-hiyo-box {
    max-width: 290px;
    width: 95%;
    margin: 0 auto;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 15px;
  }
}
@media (max-width: 768px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box {
    width: 100%;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-komoku {
  max-width: 244px;
  text-align: center;
  font-size: 15px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-komoku {
    max-width: 210px;
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-komoku {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-komoku img {
    max-width: 210px;
    width: 95%;
  }
}
@media (max-width: 768px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-komoku {
    margin-bottom: 20px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu {
  text-align: center;
  margin: 0 32px 0 42px;
  max-width: 325px;
  width: 100%;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu {
    width: 290px;
    margin: 0 20px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu {
    margin: 0;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 3px solid #808080;
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-top {
    padding-bottom: 8px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-top div:nth-child(1) {
  font-size: 15px;
  color: #fff;
  background-color: #808080;
  border-radius: 30px;
  width: 152px;
  padding: 7px 0px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-top div:nth-child(1) {
    width: 130px;
    padding: 3px 0px;
  }
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-top img {
    max-width: 130px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-bottom {
  font-size: 15px;
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-meyasu .sec07-meyasu-bottom {
    font-size: 14px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-arow {
  padding-top: 6px;
}
@media (max-width: 768px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-arow {
    width: 100%;
    text-align: center;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin: 4px auto 8px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp {
  display: none;
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp {
    width: 100%;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0 15px;
  margin-top: 30px;
  margin-bottom: 5px;
  padding-bottom: 8px;
  border-bottom: 3px solid #e45f05;
  text-align: center;
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-top div:nth-child(1) {
  font-size: 15px;
  font-weight: bold;
  color: #e45f05;
  background-color: #ffffff;
  border: 3px solid #e45f05;
  border-radius: 30px;
  width: 152px;
  padding: 7px 0px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-top div:nth-child(1) {
    width: 140px;
    padding: 3px 0px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-top:nth-child(1) {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-top img {
    max-width: 128px;
  }
}
@media (max-width: 640px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-top img {
    max-width: 100px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-bottom {
  font-size: 12px;
  text-align: center;
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box .sec07-left-sp .sec07-left-sp-bottom {
    font-size: 14px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(1) {
  margin-top: 59px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(1) {
    margin-top: 53px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(1) {
    margin-top: 0;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(2) {
  margin-top: 71px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(2) {
    margin-top: 76px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(2) {
    margin-top: 115px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(3) {
  margin-top: 49px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(3) {
    margin-top: 53px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(3) {
    margin-top: 115px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(4) {
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(4) {
    margin-top: 52px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(4) {
    margin-top: 115px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(5) {
  margin-top: 68px;
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(5) {
    margin-top: 115px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(6) {
  margin-top: 67px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(6) {
    margin-top: 74px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-left .sec07-left-box:nth-child(6) {
    margin-top: 115px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-right {
  border: 4px solid #e45f05;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 29px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-right {
    padding: 16px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-right {
    display: none;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-right .sec07-right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 0 15px;
  margin-top: 40px;
  margin-bottom: 5px;
  padding-bottom: 8px;
  border-bottom: 3px solid #e45f05;
  text-align: center;
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-right .sec07-right-top div:nth-child(1) {
  font-size: 15px;
  font-weight: bold;
  color: #e45f05;
  background-color: #ffffff;
  border: 3px solid #e45f05;
  border-radius: 30px;
  width: 152px;
  padding: 7px 0px;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-right .sec07-right-top div:nth-child(1) {
    width: 140px;
    padding: 3px 0px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-right .sec07-right-top:nth-child(1) {
  margin-top: 0;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-hiyo-box .sec07-right .sec07-right-top img {
    max-width: 128px;
  }
}
.section07 .sec07-inner .sec07-hiyo-box .sec07-right .sec07-right-bottom {
  font-size: 12px;
  text-align: center;
}
.section07 .sec07-inner .sec07-otoku-img {
  text-align: center;
  margin: 42px auto 0;
  max-width: 780px;
  width: 95%;
}
@media (max-width: 1200px) {
  .section07 .sec07-inner .sec07-otoku-img {
    max-width: 720px;
  }
}
@media (max-width: 1000px) {
  .section07 .sec07-inner .sec07-otoku-img {
    margin-top: 90px;
  }
}
@media (max-width: 480px) {
  .section07 .sec07-inner .sec07-otoku-img {
    margin-top: 70px;
  }
}

.section08 {
  position: relative;
  background-color: #ffedde;
  padding: 260px 0 90px;
}
@media (max-width: 900px) {
  .section08 {
    padding-top: 220px;
  }
}
@media (max-width: 768px) {
  .section08 {
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .section08 {
    padding-top: 160px;
  }
}
@media screen and (max-width: 520px) {
  .section08 {
    padding-top: 130px;
  }
}
.section08 .sec08-inner .sec08-ul01 {
  max-width: 870px;
  width: 85%;
  margin: 0 auto 120px;
}
@media (max-width: 1000px) {
  .section08 .sec08-inner .sec08-ul01 {
    margin: 0 auto 100px;
  }
}
@media (max-width: 768px) {
  .section08 .sec08-inner .sec08-ul01 {
    margin: 0 auto 50px;
  }
}
.section08 .sec08-inner .sec08-ul01 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
  font-size: 25px;
  margin-left: 1em;
}
@media (max-width: 1200px) {
  .section08 .sec08-inner .sec08-ul01 li {
    font-size: 21px;
  }
}
@media (max-width: 1100px) {
  .section08 .sec08-inner .sec08-ul01 li {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .section08 .sec08-inner .sec08-ul01 li {
    font-size: 17px;
    margin-left: 0;
    margin-bottom: 0.5em;
  }
}
@media (max-width: 480px) {
  .section08 .sec08-inner .sec08-ul01 li {
    font-size: 16px;
    margin-bottom: 1em;
  }
}
@media (max-width: 1200px) {
  .section08 .sec08-inner .sec08-ul01 li img {
    width: 30px;
  }
}
@media (max-width: 768px) {
  .section08 .sec08-inner .sec08-ul01 li img {
    width: 26px;
  }
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-ul01 li div:nth-child(2) {
    width: 93%;
  }
}
.section08 .sec08-inner .sec08-photo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 33px 3.3%;
  max-width: 1200px;
  width: 85%;
  margin: 0 auto 105px;
}
@media (max-width: 1000px) {
  .section08 .sec08-inner .sec08-photo-box {
    gap: 33px 5%;
  }
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-photo-box {
    gap: 33px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 480px) {
  .section08 .sec08-inner .sec08-photo-box {
    gap: 50px 0;
  }
}
.section08 .sec08-inner .sec08-photo-box .sec08-photo-one {
  width: 22.5%;
}
@media (max-width: 1000px) {
  .section08 .sec08-inner .sec08-photo-box .sec08-photo-one {
    width: 30%;
  }
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-photo-box .sec08-photo-one {
    width: 47%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 480px) {
  .section08 .sec08-inner .sec08-photo-box .sec08-photo-one {
    max-width: 368px;
    width: 100%;
    margin: 0 auto;
  }
  .section08 .sec08-inner .sec08-photo-box .sec08-photo-one img {
    width: 100%;
  }
}
.section08 .sec08-inner .sec08-photo-box .sec08-photo-one .sec08-photo-text01 {
  font-size: 17px;
}
@media (max-width: 1100px) {
  .section08 .sec08-inner .sec08-photo-box .sec08-photo-one .sec08-photo-text01 {
    font-size: 15px;
  }
}
.section08 .sec08-inner .sec08-photo-box .sec08-photo-one .sec08-photo-text02 {
  font-size: 15px;
}
@media (max-width: 1100px) {
  .section08 .sec08-inner .sec08-photo-box .sec08-photo-one .sec08-photo-text02 {
    font-size: 13px;
  }
}
.section08 .sec08-inner .sec08-place-textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1023px;
  width: 85%;
  margin: 0 auto 110px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}
@media screen and (max-width: 1030px) {
  .section08 .sec08-inner .sec08-place-textbox {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 480px) {
  .section08 .sec08-inner .sec08-place-textbox {
    margin: 0 auto 45px;
  }
}
.section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one {
  width: 48%;
}
@media screen and (max-width: 1200px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one {
    max-width: 490px;
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one {
    max-width: 400px;
    width: 100%;
  }
}
.section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one .sec08-kikan-title {
  color: #e45f05;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 3px;
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one .sec08-kikan-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  line-height: 1.8em;
  font-family: serif;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li {
    font-size: 16px;
  }
}
@media (max-width: 1100px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li {
    /*	justify-content: center;*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1em;
    text-align: left;
    font-size: 14px;
  }
}
.section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li span {
  margin-left: 0.5em;
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li span {
    display: none;
  }
}
.section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li div {
  font-weight: bold;
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li div {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-place-textbox .sec08-place-textbox-one li div::before {
    content: "➡ ";
  }
}
.section08 .sec08-inner .sec08-access {
  position: relative;
  text-align: center;
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-access {
    white-space: nowrap;
    overflow-x: scroll;
    width: 95%;
    margin: 0 auto;
  }
}
.section08 .sec08-inner .sec08-access img {
  max-width: 1100px;
  width: 85%;
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-access img {
    width: 600px;
  }
}
.section08 .sec08-inner .sec08-access-text {
  text-align: center;
  font-size: 16px;
  margin: 85px auto;
  text-align: center;
  width: 95%;
}
@media (max-width: 480px) {
  .section08 .sec08-inner .sec08-access-text {
    margin: 65px auto;
  }
}
.section08 .sec08-inner .sec08-googlemap {
  max-width: 1200px;
  width: 85%;
  margin: 0 auto;
}
.section08 .sec08-inner .sec08-googlemap iframe {
  width: 100%;
  aspect-ratio: 120/43;
}
@media (max-width: 640px) {
  .section08 .sec08-inner .sec08-googlemap iframe {
    max-width: 100%;
    height: 100%;
    aspect-ratio: 2/1.5;
  }
}

.section09 {
  padding: 80px 0 70px;
  background-color: #e2d5cd;
}
@media (max-width: 768px) {
  .section09 {
    padding: 50px 0;
  }
}
.section09 .sec09-inner .sec09-title01 {
  text-align: center;
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 35px;
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-title01 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .section09 .sec09-inner .sec09-title01 {
    font-size: 25px;
  }
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-title01 {
    font-size: 21px;
  }
}
.section09 .sec09-inner .sec09-table-outer {
  position: relative;
  margin: 0 auto 80px;
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-table-outer {
    white-space: nowrap;
    overflow-x: scroll;
    width: 90%;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table {
  max-width: 860px;
  width: 85%;
  margin: 0 auto;
  font-size: 18px;
  border-top: 1px solid #3e3a39;
  border-bottom: 1px solid #3e3a39;
  border-spacing: 0;
}
@media (max-width: 1100px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table {
    font-size: 17px;
  }
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table {
    font-size: 14px;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr th {
  padding: 18px 0 18px;
  width: 165px;
  font-weight: bold;
  letter-spacing: 2px;
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr th {
    width: 120px;
  }
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr th {
    width: 100px;
    padding: 0 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td {
  padding: 18px 1em 18px;
  font-weight: bold;
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td {
    padding: 10px 1em 10px;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item01 {
  font-size: 20px;
  line-height: 1.55em;
  border: 1px solid #3e3a39;
  width: 200px;
  text-align: center;
}
@media (max-width: 1100px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item01 {
    width: 175px;
  }
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item01 {
    font-size: 15px;
    width: 150px;
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item01 {
    font-size: 14px;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item01 span {
  font-size: 13px;
  margin-left: 12px;
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 {
  font-size: 50px;
  line-height: 1em;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 {
    font-size: 40px;
  }
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 {
    font-size: 25px;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 span {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 span {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .section09 .sec09-inner .sec09-table-outer .sec09-table tr td .sec09-td-item02 span {
    font-size: 18px;
  }
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td ul {
  margin-left: 1em;
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr td ul li {
  list-style-type: "※";
  font-size: 0.75em;
}
.section09 .sec09-inner .sec09-table-outer .sec09-table tr .parking-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section09 .sec09-inner .sec09-madorizu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1150px;
  width: 90%;
  margin: 0 auto 75px;
  gap: 170px 0;
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-madorizu {
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-madorizu div {
    max-width: 500px;
    width: 90% !important;
    margin: 0 auto 25%;
  }
}
.section09 .sec09-inner .sec09-madorizu div:nth-child(1) {
  width: 41.5%;
}
.section09 .sec09-inner .sec09-madorizu div:nth-child(2) {
  width: 50%;
}
.section09 .sec09-inner .sec09-madorizu div:nth-child(3) {
  width: 43.4%;
}
.section09 .sec09-inner .sec09-madorizu div:nth-child(4) {
  width: 39%;
}
@media (max-width: 640px) {
  .section09 .sec09-inner .sec09-madorizu div:nth-child(4) {
    margin-bottom: 0;
  }
}
.section09 .sec09-inner .sec09-madorizu div img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.pink-circle-title {
  position: absolute;
  top: -78px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1500px) {
  .pink-circle-title {
    width: 230px;
  }
}
@media (max-width: 900px) {
  .pink-circle-title {
    width: 200px;
  }
}
@media (max-width: 640px) {
  .pink-circle-title {
    width: 170px;
  }
}

/* 「フッター」*/
footer {
  background: #fff;
  padding: 50px 0;
}
footer .flex-twocol09 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  footer .flex-twocol09 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 470px;
    width: 90%;
    gap: 40px 0;
  }
}
footer .flex-twocol09 .flex-twocol09-left {
  width: 48%;
}
@media (max-width: 768px) {
  footer .flex-twocol09 .flex-twocol09-left {
    width: 100%;
  }
}
footer .flex-twocol09 .flex-twocol09-left img {
  margin-bottom: 20px;
}
footer .flex-twocol09 .flex-twocol09-left .footer-text01 {
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  footer .flex-twocol09 .flex-twocol09-left .footer-text01 {
    font-size: 17px;
  }
}
footer .flex-twocol09 .flex-twocol09-left .footer-text02 {
  font-size: 16px;
}
@media (max-width: 640px) {
  footer .flex-twocol09 .flex-twocol09-left .footer-text02 {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  footer .flex-twocol09 .flex-twocol09-left .footer-text02 .br900 {
    display: none;
  }
}
footer .flex-twocol09 .flex-twocol09-right {
  text-align: right;
  width: 48%;
}
@media (max-width: 768px) {
  footer .flex-twocol09 .flex-twocol09-right {
    width: 100%;
  }
}

.footer-tel-img {
  margin-bottom: 5px;
}

.footer-text03 {
  font-size: 16px;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    cursor: default;
    display: inline-block;
    pointer-events: none;
    text-decoration: none;
  }
}
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 4%;
  z-index: 200;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 1500px) {
  .pagetop {
    width: 100px;
  }
}
@media (max-width: 1100px) {
  .pagetop {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .pagetop {
    width: 70px;
  }
}
@media (max-width: 640px) {
  .pagetop {
    bottom: 10%;
  }
}
@media (max-width: 480px) {
  .pagetop {
    width: 60px;
  }
}
.pagetop:hover {
  opacity: 0.8;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.side-btn {
  position: fixed;
  top: 13.6%;
  left: 0;
  z-index: 100;
  width: 90px;
  aspect-ratio: 90/611;
}
@media (max-width: 1500px) {
  .side-btn {
    width: 70px;
  }
}
@media (max-width: 1100px) {
  .side-btn {
    width: 55px;
  }
}
@media (max-width: 640px) {
  .side-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    aspect-ratio: unset;
    top: unset;
    bottom: 0;
    width: 100%;
  }
}
.side-btn a {
  color: #fff;
  font-size: clamp(16px, 1.31vw, 25px);
  font-weight: bold;
  -webkit-writing-mode: tb;
      -ms-writing-mode: tb;
          writing-mode: tb;
  height: 50%;
  width: 100%;
  border-radius: 0 25px 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1100px) {
  .side-btn a {
    border-radius: 0 10px 10px 0;
  }
}
@media (max-width: 640px) {
  .side-btn a {
    height: unset;
    width: 50%;
    border-radius: 10px 10px 0 0;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    padding: 7px 0px;
    font-size: 14px;
  }
}
.side-btn a img {
  max-width: 49px;
  width: 54.4%;
  margin-bottom: 4%;
}
@media (max-width: 640px) {
  .side-btn a img {
    width: 30px;
    margin: 0 4% 0 0;
  }
}
.side-btn a:nth-child(1) {
  background-color: rgba(230, 46, 139, 0.8);
}
.side-btn a:nth-child(1) span {
  font-size: 0.7em;
}
.side-btn a:nth-child(2) {
  margin-top: 28%;
  letter-spacing: 3px;
  background-color: rgba(229, 137, 0, 0.8);
}
@media (max-width: 640px) {
  .side-btn a:nth-child(2) {
    margin: 0;
  }
}
.side-btn a:nth-child(2) img {
  margin-bottom: 7%;
}
@media (max-width: 640px) {
  .side-btn a:nth-child(2) img {
    margin: 0 4% 0 0;
  }
}