@charset "UTF-8";
/*******************************************************
 *
 * Common
 *
 *******************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before, *::after {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  background: #fff;
  color: #222;
  font-size: 15px;
  font-family: "Playfair Display", dnp-shuei-gothic-gin-std, sans-serif;
  line-height: 2.17;
  overflow: hidden !important;
}
@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}
body.has-menuOpen {
  overflow: hidden;
}

canvas {
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

img, iframe {
  max-width: 100%;
}

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

p {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6,
b, strong, th, .textBold {
  font-weight: 500;
}

.textHeavy {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.textCenter {
  text-align: center;
}

.textUppercase {
  text-transform: uppercase;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexboxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.flexboxCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 992px) {
  .flexboxCenter {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.flexboxSpaceBetween {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .flexboxSpaceBetween {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flexboxSpaceBetweenTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flexboxSpaceBetweenCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flexboxSpaceBetweenEnd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flexboxColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .flexboxColumn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.flexboxColmunReverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .flexboxColmunReverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.hidden {
  display: none;
}
.hiddenSp {
  display: none;
}
@media (min-width: 992px) {
  .hiddenSp {
    display: block;
  }
}
.hiddenTab {
  display: none;
}
@media (min-width: 768px) {
  .hiddenTab {
    display: block;
  }
}
.hiddenPc {
  display: block;
}
@media (min-width: 992px) {
  .hiddenPc {
    display: none;
  }
}
@media (min-width: 992px) {
  .hiddenPc2 {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hiddenPc3 {
    display: none;
  }
}

[class*=hidden].visible {
  display: initial;
}
[class*=hidden].visible.block {
  display: block;
}
[class*=hidden].visible.inlineBlock {
  display: inline-block;
}
[class*=hidden].visible[class*=flexbox] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
[class*=hidden].visible.inlineFlex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 576px) {
  [class*=hidden].visibleSp {
    display: initial;
  }
  [class*=hidden].visibleSp.block {
    display: block;
  }
  [class*=hidden].visibleSp.inlineBlock {
    display: inline-block;
  }
  [class*=hidden].visibleSp[class*=flexbox] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*=hidden].visibleSp.inlineFlex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  [class*=hidden].visiblePc {
    display: initial;
  }
  [class*=hidden].visiblePc.block {
    display: block;
  }
  [class*=hidden].visiblePc.inlineBlock {
    display: inline-block;
  }
  [class*=hidden].visiblePc[class*=flexbox] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*=hidden].visiblePc.inlineFlex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 992px) {
  [class*=hidden].visiblePc2 {
    display: initial;
  }
  [class*=hidden].visiblePc2.block {
    display: block;
  }
  [class*=hidden].visiblePc2.inlineBlock {
    display: inline-block;
  }
  [class*=hidden].visiblePc2[class*=flexbox] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*=hidden].visiblePc2.inlineFlex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 1200px) {
  [class*=hidden].visiblePc3 {
    display: initial;
  }
  [class*=hidden].visiblePc3.block {
    display: block;
  }
  [class*=hidden].visiblePc3.inlineBlock {
    display: inline-block;
  }
  [class*=hidden].visiblePc3[class*=flexbox] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  [class*=hidden].visiblePc3.inlineFlex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.relative {
  position: relative;
  width: 100%;
  height: 100px;
}

video {
  -webkit-filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ttl01 {
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  margin-top: 35px;
}
@media (min-width: 992px) {
  .ttl01 {
    margin-top: 0px;
    margin-right: 40px;
  }
}
.ttl01__ja {
  font-size: 14px;
  margin-left: -25px;
}
@media (min-width: 992px) {
  .ttl01__ja {
    font-size: 18px;
    margin-left: -35px;
  }
}
.ttl01__en {
  font-size: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
}
@media (min-width: 992px) {
  .ttl01__en {
    font-size: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.ttl01__en02 {
  margin-top: -20px;
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
}
@media (min-width: 992px) {
  .ttl01__en02 {
    margin-top: 30px;
    margin-right: 15px;
    font-size: 26px;
    display: inline-block;
    font-weight: 400;
  }
}
.ttl01__img {
  margin-top: -20%;
  margin-right: -17%;
}
@media (min-width: 992px) {
  .ttl01__img {
    width: 10%;
    margin-right: -15%;
    margin-top: -8%;
  }
}

.ttl02 {
  margin-left: 20px;
}
@media (min-width: 992px) {
  .ttl02 {
    margin-left: 0px;
    margin-right: 40px;
  }
}
.ttl02__ja {
  font-size: 14px;
  margin-bottom: -25px;
}
@media (min-width: 992px) {
  .ttl02__ja {
    font-size: 18px;
    margin-bottom: 0px;
    margin-left: -35px;
  }
}
.ttl02__en {
  font-size: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
}
@media (min-width: 992px) {
  .ttl02__en {
    font-size: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.ttl02__en02 {
  margin-top: -20px;
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
}
@media (min-width: 992px) {
  .ttl02__en02 {
    margin-top: 30px;
    margin-right: 15px;
    font-size: 26px;
    display: inline-block;
    font-weight: 400;
  }
}
.ttl02__img {
  margin-left: -40px;
  margin-top: -7%;
}
@media (min-width: 992px) {
  .ttl02__img {
    margin-left: -10%;
    margin-right: -6%;
    margin-top: -8%;
  }
}

.ttl03 {
  font-size: 30px;
  font-family: yu-mincho-pr6n, serif;
  padding-top: 30px;
  margin-left: 20px;
}
.ttl03__capBox {
  height: 100px;
  overflow: hidden;
  -webkit-transition: 2s;
  transition: 2s;
}
@media (min-width: 992px) {
  .ttl03__capBox {
    height: auto;
    overflow: inherit;
  }
}
.ttl03__cap {
  font-size: 13px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  margin: 20px 0 20px 20px;
  position: relative;
}
@media (min-width: 992px) {
  .ttl03__cap {
    margin-left: 0px;
    font-size: 16px;
  }
}
.ttl03__cap::after {
  content: "";
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(49.75%, rgba(250, 248, 247, 0.8)), color-stop(66.01%, rgba(248, 246, 244, 0.9)), color-stop(90.35%, rgb(247, 244, 242)), to(#fff));
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(250, 248, 247, 0.8) 49.75%, rgba(248, 246, 244, 0.9) 66.01%, rgb(247, 244, 242) 90.35%, #fff 100%);
  position: absolute;
  top: 50px;
  left: 0;
  opacity: 1;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
@media (min-width: 992px) {
  .ttl03__cap::after {
    content: none;
  }
}
.ttl03__cap-link {
  border: 1px solid #454545;
  text-align: center;
  width: 70%;
  margin: 15px auto;
  position: relative;
  z-index: 5;
  padding: 5px;
}

.ttl03__cap.active::after {
  content: none;
}

.ttl03__capBox.open {
  height: auto;
}

.ttl04 {
  margin-left: 20px;
  -webkit-writing-mode: inherit;
      -ms-writing-mode: inherit;
          writing-mode: inherit;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .ttl04 {
    margin-left: 0px;
    margin-right: 40px;
    -webkit-writing-mode: tb-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: tb-rl;
  }
}
.ttl04__ja {
  font-size: 14px;
  margin-bottom: -25px;
}
@media (min-width: 992px) {
  .ttl04__ja {
    font-size: 18px;
    margin-bottom: 0px;
    margin-left: -35px;
  }
}
.ttl04__en {
  font-size: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
}
@media (min-width: 992px) {
  .ttl04__en {
    font-size: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.ttl04__en02 {
  margin-top: -20px;
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
}
@media (min-width: 992px) {
  .ttl04__en02 {
    margin-top: 30px;
    margin-right: 15px;
    font-size: 26px;
    display: inline-block;
    font-weight: 400;
  }
}
.ttl04__img {
  margin-left: -20px;
  margin-top: -7%;
}
@media (min-width: 768px) {
  .ttl04__img {
    margin-top: -2%;
  }
}
@media (min-width: 992px) {
  .ttl04__img {
    margin-left: 0;
    margin-right: -6%;
    margin-top: -8%;
  }
}

.ttl05 {
  -webkit-writing-mode: inherit;
      -ms-writing-mode: inherit;
          writing-mode: inherit;
  text-align: center;
  padding: 50px 0 30px;
}
.ttl05__ja {
  font-size: 14px;
}
.ttl05__en {
  font-size: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 400;
  line-height: 1.2;
}
.ttl05__en02 {
  margin-top: -20px;
  font-size: 13px;
  display: inline-block;
  font-weight: 400;
}
.ttl05__img {
  margin-top: -5%;
}

/*******************************************************
 *
 * Image Wrapper
 *
 *******************************************************/
.imgWrap {
  position: relative;
  margin: 0;
}
.imgWrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.imgWrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/*******************************************************
 *
 * Container
 *
 *******************************************************/
.container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1080px;
}
@media (min-width: 992px) {
  .container {
    padding: 0;
    width: calc(100% - 150px);
  }
}

/*******************************************************
 *
 * Overflow
 *
 *******************************************************/
.overflow {
  overflow: hidden;
}

/*******************************************************
 *
 * Sections
 *
 *******************************************************/
.home main {
  overflow: hidden;
}

/*******************************************************
 *
 * Globals
 *
 *******************************************************/
.siteTtl01--vert {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.siteTtl01--center {
  padding: 0 20px;
  text-align: center;
}
.siteTtl01__en {
  margin: 0 0 8px;
  font-size: 14px;
  font-style: italic;
  line-height: 1;
}
.siteTtl01--vert .siteTtl01__en {
  margin: 0 0 0 15px;
  font-size: 18px;
  line-height: 1.35;
}
@media (min-width: 992px) {
  .siteTtl01--vert .siteTtl01__en {
    font-size: 20px;
  }
}
.siteTtl01__jp {
  padding: 0;
  font: 400 13px yu-mincho-pr6n, serif;
  line-height: 1.4230769231;
}
@media (min-width: 992px) {
  .siteTtl01__jp {
    padding: 0 0 0 20px;
    font-size: 26px;
  }
}
.siteTtl01--vert .siteTtl01__jp {
  margin: 0 0 0 -20px;
  padding: 0;
  font-size: 28px;
  line-height: 1.9444444444;
  letter-spacing: 0.3em;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .siteTtl01--vert .siteTtl01__jp {
    margin: 0;
    font-size: 30px;
    line-height: 1.6666666667;
    letter-spacing: 0.2em;
  }
}
@media (min-width: 1200px) {
  .siteTtl01--vert .siteTtl01__jp {
    font-size: 36px;
    line-height: 1.9444444444;
  }
}
.siteTtl01--center .siteTtl01__jp {
  padding: 0;
}

.siteTtl02 {
  font: 400 22px yu-mincho-pr6n, serif;
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (min-width: 992px) {
  .siteTtl02 {
    font-size: 28px;
    letter-spacing: 0;
    text-align: left;
  }
}

.siteImg {
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 1365px) {
  body:not(.home) .siteImg {
    display: none;
  }
}
.siteImg__wrap {
  border-radius: 30px;
  background-blend-mode: multiply;
  overflow: hidden;
  isolation: isolate;
}
.siteImg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.siteImg .wp-video {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.siteImg .wp-video,
.siteImg .wp-video .mejs-container,
.siteImg .wp-video .wp-video-shortcode {
  width: 100% !important;
  height: 100% !important;
}
.siteImg .wp-video .mejs-container {
  background: transparent;
}
.siteImg .wp-video .mejs-layers,
.siteImg .wp-video .mejs-controls {
  display: none;
}

.siteImgOverflow img {
  max-width: initial;
}

.siteAccent {
  position: absolute;
  border-radius: 30px;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 5;
}

.siteLink01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 16px;
}
.siteLink01__arrow {
  margin: 0 0 0 15px;
  border: 1px solid #454545;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .siteLink01__arrow {
    width: 80px;
    height: 80px;
  }
}
.siteLink01__arrow div {
  width: 30px;
  height: 1px;
}
@media (min-width: 992px) {
  .siteLink01__arrow div {
    width: 40px;
  }
}
.siteLink01__arrow div::before, .siteLink01__arrow div::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background: #454545;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.siteLink01__arrow div::before {
  left: 0;
  width: 100%;
}
.siteLink01__arrow div::after {
  left: 100%;
  width: 20%;
  -webkit-transform: rotate(-145deg);
          transform: rotate(-145deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.siteLink01:hover .siteLink01__arrow {
  background: transparent;
}
.siteLink01:hover .siteLink01__arrow div::before, .siteLink01:hover .siteLink01__arrow div::after {
  background: #454545;
}
.siteLink01:hover .siteLink01__arrow div::before {
  width: 62.5%;
}
.siteLink01:hover .siteLink01__arrow div::after {
  content: "";
  left: 62.5%;
}

.siteArrow {
  width: 60px;
  height: 1px;
}
.siteArrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: inherit;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.siteInsta {
  margin: 100px 0 0;
  padding: 0 0 100px;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 992px) {
  .siteInsta {
    margin: 150px 0 0;
    padding: 0 0 140px;
  }
}
.siteInsta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 115px;
  background: url("../images/common/siteInsta_accent.png") no-repeat bottom center/100% auto;
  z-index: -1;
}
.siteInsta__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.siteInsta__ttl {
  margin: 0 0 65px;
}
.siteInsta__list {
  margin: 0 auto;
  max-width: 100%;
}
@media (min-width: 576px) {
  .siteInsta__list {
    margin: 0;
    max-width: 100%;
  }
}
.siteInsta__list:not(.slick-initialized) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.siteInsta__list:not(.slick-initialized) .siteInsta___item {
  padding: 0 20px;
}
.siteInsta__list .slick-list {
  overflow: visible;
}
.siteInsta__list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (min-width: 576px) {
  .siteInsta__list .slick-slide {
    padding: 0 20px;
  }
}
.siteInsta__item {
  max-width: 100%;
}
.siteInsta__itemImg {
  width: 200px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .siteInsta__itemImg {
    width: 400px;
  }
}
.siteInsta__link {
  position: absolute;
  top: 0px;
  right: 40px;
  margin: 80px 0 0;
  margin: 50px 0 0;
}
@media (min-width: 992px) {
  .siteInsta__link {
    position: absolute;
    top: auto;
    bottom: -40px;
    right: 70px;
    margin: 80px 0 0;
  }
}

.layoutColumn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .layoutColumn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.layoutColumn__ttl {
  margin: 0 0 40px;
}
@media (min-width: 992px) {
  .layoutColumn__ttl {
    margin: 0 190px 0 0;
  }
}
.layoutColumn__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.layoutColumn__list {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 991px) {
  .layoutColumn__item {
    width: 100%;
    max-width: 500px;
  }
}
.layoutColumn__item:not(:last-child) {
  margin: 0 0 60px;
}
@media (min-width: 992px) {
  .layoutColumn__item:nth-child(3n+2) {
    padding-left: 100px;
  }
  .layoutColumn__item:nth-child(3n) {
    padding-left: 60px;
  }
}
.layoutColumn__itemLink {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #D9D9D9;
  padding: 0 0 10px;
}
.layoutColumn__itemDate {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 30px 0 0;
  font: 14px yu-mincho-pr6n, serif;
  line-height: 1.5555555556;
}
@media (min-width: 992px) {
  .layoutColumn__itemDate {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    font-size: 18px;
  }
}
.layoutColumn__itemTtl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  font: 16px yu-mincho-pr6n, serif;
  line-height: 1.5555555556;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .layoutColumn__itemTtl {
    font-size: 18px;
    max-width: 500px;
  }
}
.layoutColumn__itemArrow {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0 0 0 30px;
  max-width: 40px;
  background: #777;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.layoutColumn__itemLink:hover .layoutColumn__itemArrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.layoutColumn__link {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 60px 0 0;
}
@media (min-width: 992px) {
  .layoutColumn__link {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.layoutImgTxt {
  padding: 70px 0 0;
}
@media (min-width: 992px) {
  .layoutImgTxt {
    padding: 150px 0 0;
  }
}
@media (min-width: 1200px) {
  .layoutImgTxt {
    padding: 300px 0 0;
  }
}
.layoutImgTxt__img01 {
  position: absolute;
  top: 300px;
  left: 80px;
}
@media only screen and (max-width: 1200px) {
  .layoutImgTxt__img01 {
    left: -100px;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  .layoutImgTxt__img01 {
    display: none;
  }
}
.layoutImgTxt__img01Accent {
  bottom: -44.0677966102%;
  right: -28.5714285714%;
  width: 66.6666666667%;
  height: 67.7966101695%;
}
.layoutImgTxt__img02 {
  position: absolute;
  top: 790px;
  right: -190px;
}
@media only screen and (max-width: 1200px) {
  .layoutImgTxt__img02 {
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  .layoutImgTxt__img02 {
    display: none;
  }
}
.layoutImgTxt__wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 700px;
}
@media (min-width: 992px) {
  .layoutImgTxt__wrap {
    padding: 100px 0 0;
  }
}
.layoutImgTxt__img {
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .layoutImgTxt__img {
    margin: 0 -50px 115px 0;
  }
}
.layoutImgTxt__ttl {
  margin: 0 0 50px;
}
@media (min-width: 992px) {
  .layoutImgTxt__ttl {
    margin: 0 0 80px;
  }
}
.layoutImgTxt__txt {
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 991px) {
  .layoutImgTxt__txt {
    margin: 0 auto;
    max-width: 500px;
  }
}

.layoutNav {
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .layoutNav {
    margin: 150px 0 0;
  }
}
.layoutNav__list {
  margin: -20px -30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .layoutNav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.layoutNav__item {
  padding: 20px 30px;
}
@media (min-width: 768px) {
  .layoutNav__item {
    width: 50%;
  }
}
.layoutNav__itemLink {
  border-radius: 30px 0 30px 30px;
  padding: 30px;
}
@media (min-width: 768px) {
  .layoutNav__itemLink {
    padding: 60px 50px 90px 30px;
  }
}
.layoutNav__itemLink:hover {
  background: #fff;
}
.layoutNav__itemTtlJp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.layoutNav__itemArrow {
  background: #222;
  margin: 0 0 0 45px;
  max-width: 50px;
  vertical-align: middle;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.layoutNav__itemLink:hover .layoutNav__itemArrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.pagination {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 140px 0 0;
  font-size: 16px;
  line-height: 1;
}
@media (min-width: 992px) {
  .pagination {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.pagination .page-numbers {
  position: relative;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
}
.pagination .page-numbers:not(:last-child) {
  margin: 0 25px 0 0;
}
.pagination .page-numbers::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 15px;
  height: 2px;
  background: #BFB7A9;
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pagination .page-numbers.current {
  font-size: 20px;
  font-weight: 700;
}
.pagination .page-numbers:hover::after, .pagination .page-numbers.current::after {
  opacity: 1;
}
.pagination .page-control {
  text-transform: uppercase;
}
.pagination .page-controlArrow {
  width: 40px;
  background: #222;
}
.pagination .page-control.prev {
  margin: 0 40px 0 0;
}
.pagination .page-control.prev .page-controlArrow {
  margin: 0 10px 0 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.pagination .page-control.next {
  margin: 0 0 0 40px;
}
.pagination .page-control.next .page-controlArrow {
  margin: 0 0 0 10px;
}

/*******************************************************
 *
 * Header
 *
 *******************************************************/
.header {
  width: 100%;
  z-index: 100;
  background: #F7F3F1;
}
@media (min-width: 992px) {
  .header {
    background: #F7F3F1;
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    padding: 10px 20px;
    padding: 13px 0px 0px 33px;
  }
}
.header__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  width: 43%;
  height: 65px;
  padding-top: 3px;
  padding-left: 20px;
  z-index: 100;
}
@media (min-width: 768px) {
  .header__logo {
    width: 30%;
  }
}
@media (min-width: 992px) {
  .header__logo {
    width: 20.3%;
    height: auto;
    padding-top: 0;
  }
}
.header__nav {
  margin-left: auto;
  position: absolute;
  top: 0;
  right: -100%;
  background-color: #8cc2c5;
  width: 100%;
  height: 100vh;
  z-index: 99;
}
@media (min-width: 992px) {
  .header__nav {
    position: inherit;
    z-index: 1;
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background-color: transparent;
  }
}
.header__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 150px auto 0;
}
@media (min-width: 992px) {
  .header__list {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    color: #222;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
  }
}
.header__list-item {
  font-size: 14px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 992px) {
  .header__list-item {
    color: #222;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    margin-bottom: 0px;
    padding: 0 0 0 5px;
    width: 75px;
    text-align: center;
    position: relative;
  }
}
.header__list-item::after {
  position: absolute;
  left: 5px;
  bottom: -15px;
  content: "";
  background-image: url(../img/nav_wave.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  display: inline-block;
  width: 90%;
  margin: 0 auto;
  height: 20px;
  visibility: hidden;
  -webkit-transition: 0.05s;
  transition: 0.05s;
}
.header__list-item:hover::after {
  width: 90%;
  height: 20px;
  left: 5px;
  bottom: -15px;
  visibility: visible;
}
.header__list-item-link {
  border-bottom: 1px solid #fff;
}
@media (min-width: 992px) {
  .header__list-item-link {
    border-bottom: none;
    display: block;
  }
}
.header__list-item-pic {
  color: #fff;
  font-size: 17px;
  width: 170px;
  height: 110px;
  margin-top: -15px;
  margin-left: 50px;
  background-color: #8cc2c5;
  border-radius: 0 0 0 40px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.header__list-item-pic-group {
  color: #fff;
  font-size: 17px;
  width: 170px;
  margin-top: 8px;
  background-color: #8cc2c5;
  border-radius: 40px 0 0 40px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  margin-left: auto;
}
.header__list-item-pic:hover {
  color: #8cc2c5;
  border: 1px solid #8cc2c5;
  background-color: #fff;
}
.header__list-item-pic-group:hover {
  color: #8cc2c5;
  border: 1px solid #8cc2c5;
  background-color: #fff;
}
.header__list-item-pic-link {
  padding: 60px 25px 0px 25px;
  letter-spacing: 0.09em;
  line-height: 8;
  top: -25px;
  position: relative; 
}
.header__list-item-pic-link-jp{
  text-align: center;
  margin-top: -98px;
  font-size: 14px;  
}
.header__list-item-pic-group-link{
  padding: 15px 28px;
  letter-spacing: 0.09em;
  line-height: 2.5;
  font-size: 16px;
}
.header__list-item-picSp {
  width: 200px;
  margin-top: 22px;
  padding: 10px 65px;
  text-align: center;
  border: 1px solid #fff;
}

.header__list-item-picSp-group {
  width: 200px;
  padding: 10px 0px;
  text-align: center;
  border: 1px solid #fff;
  margin: 0 auto;
  margin-top: 25px;
  color: #fff;
}

.header .burgerMenu {
  position: relative;
  color: #fff;
  width: 65px;
  height: 65px;
  margin-top: 0px;
  margin-left: 50px;
  background-color: #8cc2c5;
  border-radius: 0 0 0 40px;
  cursor: pointer;
  border-radius: 0 0 0 20px;
  z-index: 100;
}
@media (min-width: 992px) {
  .header .burgerMenu {
    width: 60px;
    height: 60px;
    margin-top: -20px;
  }
}
.header .burgerMenu span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background: #fff;
}
.header .burgerMenu span:nth-of-type(1) {
  top: 18px;
  width: 50%;
}
.header .burgerMenu span:nth-of-type(2) {
  top: 29px;
  width: 15%;
}
.header .burgerMenu span:nth-of-type(3) {
  top: 40px;
  width: 35%;
}
.header .burgerMenu.is-open span:nth-of-type(1) {
  top: 25px;
  left: 23px;
  -webkit-transform: translateY(6px) rotate(-135deg);
          transform: translateY(6px) rotate(-135deg);
  width: 35%;
}
.header .burgerMenu.is-open span:nth-of-type(2) {
  opacity: 0;
}
.header .burgerMenu.is-open span:nth-of-type(3) {
  top: 38px;
  left: 23px;
  -webkit-transform: translateY(-6px) rotate(135deg);
          transform: translateY(-6px) rotate(135deg);
  width: 35%;
}

.has-menuOpen .header__nav {
  right: 0;
}

.fh {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  background: rgba(255, 255, 255, 0.7);
}
@media (min-width: 992px) {
  .fh {
    background: rgba(255, 255, 255, 0.3);
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*******************************************************
 *
 * Footer
 *
 *******************************************************/
.footer {
  background: #8cc2c5;
  color: #fff;
  padding: 30px 0 15px;
}
@media (min-width: 992px) {
  .footer {
    padding: 100px 0;
  }
}
.footer__bg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__wrap {
  width: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer__wrap {
    width: 900px;
  }
}
@media (min-width: 1200px) {
  .footer__wrap {
    width: 1340px;
  }
}
.footer__logo {
  width: 140px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .footer__logo {
    margin-bottom: 0px;
    width: 250px;
  }
}
.footer__list {
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .footer__list {
    gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0px;
  }
}
.footer__list-item-link {
  font-size: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: -5px;
}

/*******************************************************
 *
 * Lower Page
 *
 *******************************************************/
.lpWrapper {
  padding: 70px 0 0;
}
@media (min-width: 992px) {
  .lpWrapper {
    padding: 100px 0 0;
  }
}

/*==============================
 Lower Page Banner
===============================*/
.lpBnr__img {
  border-radius: 0 0 80px 0;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .lpBnr__img {
    width: 58.66%;
  }
}
@media only screen and (max-width: 991px) {
  .lpBnr__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.16);
    mix-blend-mode: darken;
    z-index: 2;
  }
}
@media only screen and (max-width: 991px) {
  .lpBnr__img canvas {
    height: 567px;
  }
}
.lpBnr__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5.3333333333%;
  max-height: 744px;
}
@media only screen and (max-width: 991px) {
  .lpBnr__wrap {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    color: #fff;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
}
.lpBnr__wrap::before {
  min-height: 30px;
}
@media (min-width: 992px) {
  .lpBnr__wrap::before {
    content: "";
  }
}
@media (min-width: 992px) {
  .lpBnr__wrap::before, .lpBnr__txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media only screen and (max-width: 991px) {
  .lpBnr__ttl {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .lpBnr__ttlWrap {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .js-bnrTtlScroll .lpBnr__ttlWrap {
    left: 0;
    z-index: 10;
  }
}
@media (min-width: 992px) {
  .lpBnr__ttlWrap.is-moving {
    position: fixed;
  }
}
@media (min-width: 992px) {
  .lpBnr__ttlWrap.is-moved {
    position: absolute;
  }
}
.lpBnr__txt {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 30px 0 0;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  line-height: 1.6428571429;
  text-align: center;
}
@media (min-width: 992px) {
  .lpBnr__txt {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 30px 0;
    color: #454545;
    text-align: right;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}
@media (min-width: 992px) {
  .lpBnr__ttl.is-moving + .lpBnr__txt {
    opacity: 0;
  }
}

/*==============================
 Lower Page Content Full
===============================*/
#contentFull {
  min-height: 250px;
}

/*==============================
 Lower Page Breadcrumb
===============================*/
.breadcrumb {
  padding: 50px 30px;
  background: #fff;
  font-style: italic;
}
@media (min-width: 992px) {
  .breadcrumb {
    padding: 60px 80px 70px;
  }
}
.breadcrumb a {
  color: #918777;
}
/*******************************************************
 *
 * Top Page
 *
 *******************************************************/
.scroll__txt {
  visibility: hidden;
  position: fixed;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  font-size: 13px;
  z-index: 100;
}

.fs {
  visibility: visible;
}

.fixBorder-top {
  position: fixed;
  border: 3px solid #8cc2c5;
  width: 100%;
  top: 0;
  z-index: 101;
}
.fixBorder-right {
  position: fixed;
  border: 3px solid #8cc2c5;
  height: 100vh;
  right: 0;
  z-index: 101;
}
.fixBorder-left {
  position: fixed;
  border: 3px solid #8cc2c5;
  height: 100vh;
  left: 0;
  z-index: 101;
}
.fixBorder-bottom {
  position: fixed;
  border: 3px solid #8cc2c5;
  width: 100%;
  bottom: 0;
  z-index: 101;
}

.bg-beige {
  background: #F5F1EE;
}

.bg-green {
  background: #8cc2c5;
}

.layout01 {
  background: #F7F3F1;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .layout01 {
    margin-bottom: 150px;
  }
}
.layout01__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.layout01__ttlBox {
  z-index: 2;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: absolute;
  top: 13%;
  left: 6%;
}
@media (min-width: 768px) {
  .layout01__ttlBox {
    top: 26%;
  }
}
@media (min-width: 992px) {
  .layout01__ttlBox {
    top: 13.5%;
  }
}
@media (min-width: 1200px) {
  .layout01__ttlBox {
    top: 19.5%;
  }
}
.layout01__ttlBox-ttl {
  font-size: 47px;
  line-height: 1.1489361702;
  position: relative;
}
.layout01__ttlBox-ttl::after {
  content: "";
  width: 277px;
  height: 255px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  opacity: 0.7;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
@media (min-width: 992px) {
  .layout01__ttlBox-ttl {
    font-size: 60px;
    line-height: 1.2;
  }
}
@media (min-width: 1200px) {
  .layout01__ttlBox-ttl {
    font-size: 90px;
    line-height: 1.1111111111;
  }
}
.layout01__ttlBox-ttl01 {
  display: inline-block;
  margin-left: 13%;
}
@media (min-width: 992px) {
  .layout01__ttlBox-ttl01 {
    margin-left: 10%;
  }
}
.layout01__ttlBox-ttl02 {
  display: inline-block;
}
@media (min-width: 992px) {
  .layout01__ttlBox-ttl02 {
    margin-left: -8%;
  }
}
.layout01__ttlBox-ttl03 {
  display: inline-block;
  margin-left: 20%;
}
.layout01__ttlBox-ttl04 {
  display: inline-block;
  margin-left: 13%;
}
@media (min-width: 992px) {
  .layout01__ttlBox-ttl04 {
    margin-left: 10%;
  }
}
.layout01__ttlBox-cap {
  margin-top: 5px;
  margin-left: 50px;
  font-style: italic;
}
@media (min-width: 992px) {
  .layout01__ttlBox-cap {
    margin-top: 20px;
    margin-left: 55px;
  }
}
.layout01__imgBox {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 90%;
  height: 510px;
  padding-top: 10px;
}
@media (min-width: 992px) {
  .layout01__imgBox {
    margin-left: 15%;
    width: 55%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.layout01__imgBox img {
  border-radius: 80px 0 0 0;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .layout01__imgBox img {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .layout01__imgBox img {
    width: auto;
    height: auto;
  }
}
.layout01__scroll {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  margin: 60% 15px 0 20px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .layout01__scroll {
    margin: 30% 15px 0 20px;
  }
}
@media (min-width: 992px) {
  .layout01__scroll {
    margin: 17% 0 0 40px;
    font-size: 16px;
    margin-left: 40px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.layout01__scroll-accent {
  position: relative;
  display: inline-block;
}
.layout01__scroll-accent::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 250px;
  background: #eee;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes pathmove {
  0% {
    height: 0px;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 280px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0px;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 100px;
    top: 280px;
    opacity: 0;
  }
}
.layout01 .bg__green {
  background: #8cc2c5;
  width: 75%;
  height: 250px;
  margin-top: -215px;
}
@media (min-width: 768px) {
  .layout01 .bg__green {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .layout01 .bg__green {
    width: 100%;
    height: 200px;
    margin-top: -60px;
  }
}

.bg-wave {
  margin-top: -5px;
  margin-bottom: -15px;
}

.layout02__wrap {
  position: relative;
  margin-left: 20px;
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .layout02__wrap {
    margin-left: 80px;
    margin-bottom: 120px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.layout02 .insta__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.layout02__box {
  width: 400px;
}
.layout02__box-img {
  width: 87%;
}
@media (min-width: 992px) {
  .layout02__box-img {
    width: 85%;
  }
}
@media (max-width: 992px) {
  .layout02__box-img {
    width: 200px;
    max-width: 200px;
  }
}
.layout02__box-txt {
  width: 80%;
}

.layout03 {
  background: #F5F1EE;
  padding: 86px 0 60px;
}
@media (min-width: 992px) {
  .layout03 {
    padding: 86px 0 250px;
  }
}
.layout03__wrap {
  width: auto;
  margin: 0 0 0 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 992px) {
  .layout03__wrap {
    width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .layout03__wrap {
    width: 1080px;
    margin: 0 auto;
  }
}
.layout03__boxImg {
  width: 60%;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .layout03__boxImg {
    width: 45%;
    margin-right: 40px;
  }
}
.layout03__boxImg img {
  border-radius: 40px 0 0 0;
}
.layout03__box {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .layout03__box {
    margin-top: 28%;
  }
}
.layout03__box-ttl {
  font-family: yu-mincho-pr6n, serif;
  font-size: 20px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .layout03__box-ttl {
    font-size: 28px;
    margin-bottom: 60px;
  }
}
.layout03__box-txt {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 13px;
}
@media (min-width: 992px) {
  .layout03__box-txt {
    font-size: 15px;
  }
}

.layout04 {
  background: #F5F1EE;
  padding: 0 0 250px;
}
@media (min-width: 992px) {
  .layout04 {
    padding: 0 0 300px;
  }
}
.layout04__sec01 {
  width: auto;
  margin: 0 0 100% 20px;
  position: relative;
}
@media (min-width: 768px) {
  .layout04__sec01 {
    margin: 0 0 40% 20px;
  }
}
@media (min-width: 992px) {
  .layout04__sec01 {
    position: inherit;
    width: 950px;
    margin: 0 auto;
    padding: 0 50px;
  }
}
@media (min-width: 1200px) {
  .layout04__sec01 {
    position: inherit;
    width: 1080px;
    margin: 0 auto;
    padding: 0 50px;
  }
}
.layout04__sec02, .layout04__sec04, .layout04__sec06 {
  width: auto;
  margin: 0 20px 0 0;
  position: relative;
}
@media (min-width: 992px) {
  .layout04__sec02, .layout04__sec04, .layout04__sec06 {
    width: 950px;
    margin: 0 auto;
    padding: 0 0 0 80px;
  }
}
@media (min-width: 1200px) {
  .layout04__sec02, .layout04__sec04, .layout04__sec06 {
    width: 1080px;
    margin: 0 auto;
    padding: 0 0 0 80px;
  }
}
.layout04__sec03, .layout04__sec05 {
  width: auto;
  margin: 0 20px 0 0;
  position: relative;
}
@media (min-width: 992px) {
  .layout04__sec03, .layout04__sec05 {
    width: 950px;
    margin: 0 auto;
    padding: 0 50px 0 0;
  }
}
@media (min-width: 1200px) {
  .layout04__sec03, .layout04__sec05 {
    width: 1080px;
    margin: 0 auto;
    padding: 0 50px 0 0;
  }
}
.layout04__box {
  margin-top: 72px;
  width: 90%;
}
.layout04__box-ttl {
  font-family: yu-mincho-pr6n, serif;
  font-size: 20px;
  margin-bottom: 30px;
  letter-spacing: 3px;
}
@media (min-width: 992px) {
  .layout04__box-ttl {
    font-size: 28px;
    margin-bottom: 60px;
  }
}
.layout04__box-txt {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-size: 13px;
  line-height: 2.25;
}
@media (min-width: 992px) {
  .layout04__box-txt {
    font-size: 16px;
  }
}
.layout04__txtBox {
  position: absolute;
  top: 35%;
  z-index: 2;
}
@media (min-width: 992px) {
  .layout04__txtBox {
    position: inherit;
  }
}
.layout04__imgBox {
  width: 100%;
  padding-left: 100px;
  position: relative;
}
@media (min-width: 992px) {
  .layout04__imgBox {
    width: 84%;
  }
}
.layout04__imgBox01 {
  height: 220px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (min-width: 992px) {
  .layout04__imgBox01 {
    height: auto;
  }
}
.layout04__imgBox02 {
  width: 47%;
  position: absolute;
  right: -25%;
  top: 60%;
}
.layout04__sec02 {
  margin-top: 110px;
}
.layout04__sec02__imgBox {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .layout04__sec02__imgBox {
    width: 54%;
    margin-right: 70px;
  }
}
.layout04__sec02__imgBox-en {
  font-size: 14px;
  width: 76%;
  margin-top: 50px;
  margin-left: 130px;
}
.layout04__sec02__imgBox03 {
  width: 85%;
}
@media (min-width: 992px) {
  .layout04__sec02__imgBox03 {
    width: 100%;
  }
}
.layout04__sec02__imgBox04 {
  width: 80%;
  margin-left: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
}
@media (min-width: 768px) {
  .layout04__sec02__imgBox04 {
    width: 50%;
    margin-left: 55%;
  }
}
@media (min-width: 992px) {
  .layout04__sec02__imgBox04 {
    position: absolute;
    bottom: auto;
    right: auto;
    top: 53%;
    left: -35%;
    width: 54%;
    margin-left: 0;
    -o-object-fit: contain;
       object-fit: contain;
    height: auto;
  }
}
.layout04__sec02__imgBox05 {
  position: absolute;
  bottom: -5%;
  right: 40%;
  width: 45%;
}
@media (min-width: 768px) {
  .layout04__sec02__imgBox05 {
    bottom: -8%;
    right: 40%;
    width: 30%;
  }
}
@media (min-width: 992px) {
  .layout04__sec02__imgBox05 {
    bottom: -33%;
    right: auto;
    left: -13%;
    width: 41%;
  }
}
.layout04__sec02__imgBox06 {
  position: absolute;
  bottom: -27%;
  right: -10%;
  width: 41%;
}
.layout04__sec03 {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .layout04__sec03 {
    margin-top: 100px;
  }
}
@media (min-width: 992px) {
  .layout04__sec03 {
    margin-top: 280px;
  }
}
.layout04__sec03__imgBox {
  width: 70%;
  height: 30px;
  position: relative;
}
@media (min-width: 992px) {
  .layout04__sec03__imgBox {
    height: auto;
  }
}
.layout04__sec03__imgBox-en {
  font-size: 14px;
  width: 80%;
  margin-top: 50px;
}
.layout04__sec03__imgBox07 {
  width: 80%;
}
@media (min-width: 992px) {
  .layout04__sec03__imgBox07 {
    width: 100%;
  }
}
.layout04__sec03__imgBox08 {
  position: absolute;
  top: 0%;
  right: -50%;
  width: 90%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .layout04__sec03__imgBox08 {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .layout04__sec03__imgBox08 {
    position: absolute;
    top: 33%;
    right: -38%;
    width: 55%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.layout04__sec03__imgBox09 {
  position: absolute;
  bottom: 20%;
  right: -9%;
  width: 41%;
}
.layout04__sec03__txtBox-img01 {
  position: absolute;
  bottom: -30%;
  margin-top: 30px;
  margin-left: 55px;
  width: 45%;
  z-index: 2;
}
@media (min-width: 768px) {
  .layout04__sec03__txtBox-img01 {
    margin-left: 215px;
    width: 35%;
  }
}
@media (min-width: 992px) {
  .layout04__sec03__txtBox-img01 {
    position: inherit;
    margin-top: 130px;
    margin-left: -70px;
    width: 78%;
  }
}
.layout04__sec04 {
  margin-top: 45%;
}
@media (min-width: 992px) {
  .layout04__sec04 {
    margin-top: 40%;
  }
}
@media (min-width: 992px) {
  .layout04__sec04 {
    margin-top: 130px;
  }
}
.layout04__sec04__imgBox {
  width: 100%;
  margin-right: 70px;
  position: relative;
}
.layout04__sec04__imgBox-en {
  font-size: 14px;
  width: 76%;
  margin-top: 50px;
  margin-left: 130px;
}
.layout04__sec04__imgBox10 {
  width: 85%;
}
@media (min-width: 992px) {
  .layout04__sec04__imgBox10 {
    width: 100%;
  }
}
.layout04__sec04__imgBox11 {
  width: 80%;
  margin-left: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 150px;
}
@media (min-width: 768px) {
  .layout04__sec04__imgBox11 {
    width: 50%;
    margin-left: 53%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 150px;
  }
}
@media (min-width: 992px) {
  .layout04__sec04__imgBox11 {
    position: absolute;
    top: 50%;
    left: -75%;
    width: 54%;
  }
}
.layout04__sec04__imgBox12 {
  position: absolute;
  bottom: -5%;
  right: 40%;
  width: 45%;
}
@media (min-width: 768px) {
  .layout04__sec04__imgBox12 {
    bottom: -8%;
    right: auto;
    left: 30%;
    width: 30%;
  }
}
@media (min-width: 992px) {
  .layout04__sec04__imgBox12 {
    bottom: -38%;
    right: auto;
    left: -13%;
    width: 40%;
  }
}
.layout04__sec05 {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .layout04__sec05 {
    margin-top: 250px;
  }
}
.layout04__sec05__imgBox {
  width: 100%;
  height: 100px;
  position: relative;
}
@media (min-width: 992px) {
  .layout04__sec05__imgBox {
    height: auto;
  }
}
.layout04__sec05__imgBox-en {
  font-size: 14px;
  width: 70%;
  margin-top: 50px;
}
.layout04__sec05__imgBox14 {
  width: 80%;
}
@media (min-width: 992px) {
  .layout04__sec05__imgBox14 {
    width: 100%;
  }
}
.layout04__sec05__imgBox15 {
  position: absolute;
  top: 5%;
  right: -8%;
  width: 70%;
}
@media (min-width: 768px) {
  .layout04__sec05__imgBox15 {
    top: 5%;
    right: -2%;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .layout04__sec05__imgBox15 {
    top: 33%;
    right: -38%;
    width: 55%;
  }
}
.layout04__sec05__imgBox16 {
  position: absolute;
  bottom: -80%;
  right: 40%;
  width: 41%;
}
@media (min-width: 768px) {
  .layout04__sec05__imgBox16 {
    bottom: -170%;
    right: 40%;
    width: 30%;
  }
}
@media (min-width: 992px) {
  .layout04__sec05__imgBox16 {
    bottom: 15%;
    right: -9%;
    width: 41%;
  }
}
.layout04__sec05__txtBox {
  width: 100%;
  margin-right: 70px;
}
@media (min-width: 992px) {
  .layout04__sec05__txtBox {
    width: 78%;
  }
}
.layout04__sec05__txtBox-img13 {
  margin-top: 85px;
  margin-left: -70px;
  width: 86%;
}
.layout04__sec06 {
  margin-top: 25%;
}
@media (min-width: 992px) {
  .layout04__sec06 {
    margin-top: 130px;
  }
}
.layout04__sec06__imgBox {
  width: 95%;
  margin-right: 70px;
  position: relative;
}
.layout04__sec06__imgBox-en {
  font-size: 14px;
  width: 76%;
  margin-top: 50px;
  margin-left: 130px;
}
.layout04__sec06__imgBox17 {
  width: 85%;
}
@media (min-width: 992px) {
  .layout04__sec06__imgBox17 {
    width: 100%;
  }
}
.layout04__sec06__imgBox18 {
  position: absolute;
  right: -10%;
  width: 70%;
}
@media (min-width: 768px) {
  .layout04__sec06__imgBox18 {
    right: auto;
    left: -8%;
    width: 40%;
  }
}
@media (min-width: 992px) {
  .layout04__sec06__imgBox18 {
    right: auto;
    left: -37%;
    width: 54%;
  }
}
.layout04__sec06__imgBox19 {
  position: absolute;
  bottom: -45%;
  left: 15%;
  width: 40%;
}
@media (min-width: 768px) {
  .layout04__sec06__imgBox19 {
    position: absolute;
    bottom: -40%;
    left: 45%;
    width: 30%;
  }
}
@media (min-width: 992px) {
  .layout04__sec06__imgBox19 {
    position: absolute;
    bottom: -33%;
    left: -13%;
    width: 40%;
  }
}

.layout05 {
  background: #8cc2c5;
  padding-bottom: 130px;
}
.layout05__wrap {
  width: auto;
}
@media (min-width: 992px) {
  .layout05__wrap {
    width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .layout05__wrap {
    width: 1080px;
    margin: 0 auto;
  }
}
.layout05__imgWrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.layout05__imgWrap-box {
  width: 100%;
}
@media (min-width: 992px) {
  .layout05__imgWrap-box {
    width: 23.7%;
  }
}
.layout05 .ttl02__ja {
  margin-bottom: -33px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .layout05 .ttl02__ja {
    margin-bottom: -55px;
  }
}
.layout05 .ttl02__en {
  font-size: 45px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  .layout05 .ttl02__en {
    font-size: 90px;
  }
}
.layout05 .ttl02__img {
  width: 32%;
  margin-top: -12%;
  margin-left: 0px;
}
@media (min-width: 768px) {
  .layout05 .ttl02__img {
    width: 32%;
    margin-top: -4%;
  }
}
@media (min-width: 992px) {
  .layout05 .ttl02__img {
    width: 16%;
    margin-top: -5%;
  }
}
.layout05__ttl {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .layout05__ttl {
    font-size: 18px;
    text-align: center;
    margin-top: 130px;
    margin-bottom: 70px;
  }
}
.layout05__ttl-en {
  font-size: 37px;
  display: block;
  margin-top: -30px;
  font-weight: 400;
}
@media (min-width: 992px) {
  .layout05__ttl-en {
    font-size: 60px;
    display: block;
    margin-top: -40px;
    font-weight: 400;
  }
}

.slick-slide {
  margin: 10px;
}

.mfp-close {
  border: 1px solid #fff !important;
  width: 50px !important;
  height: 50px !important;
  text-align: center !important;
  line-height: 1;
  top: -20px !important;
  right: 0 !important;
  padding: 11px 16px !important;
  border-radius: 50% !important;
}

.mfp-img {
  max-height: 550px !important;
}

.slide-items {
  width: 100%;
  height: 100%;
}

.slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.next-arrow {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 11% !important;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  z-index: 10;
}
@media (min-width: 768px) {
  .next-arrow {
    width: 6% !important;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media (min-width: 992px) {
  .next-arrow {
    width: 11% !important;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}

.prev-arrow {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 11% !important;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  z-index: 10;
}
@media (min-width: 768px) {
  .prev-arrow {
    width: 6% !important;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
@media (min-width: 992px) {
  .prev-arrow {
    width: 11% !important;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}

.slide-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.slide-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slide-dots li button {
  position: relative;
  text-indent: -9999px;
  background: transparent;
  border: none;
}
.slide-dots li button:before {
  content: "○";
  font-size: 13px;
  text-indent: 0px;
  position: absolute;
  color: #fff;
  top: 0;
  left: 0;
}
.slide-dots li.slick-active button:before {
  content: "●";
  color: #fff;
}

.layout06 {
  background: #F5F1EE;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .layout06 {
    padding-bottom: 150px;
  }
}
.layout06__wrap {
  width: auto;
  margin: 0 20px;
}
@media (min-width: 992px) {
  .layout06__wrap {
    width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .layout06__wrap {
    width: 1080px;
    margin: 0 auto;
  }
}
.layout06__anchorLinkBox {
  width: 100%;
  margin: 0 auto 80px;
  gap: 15px 10px;
}
.layout06__anchorLinkBox-link {
  display: block;
  border: 1px solid #454545;
  padding: 0px 10px;
  width: 48%;
}
.layout06__anchorLinkBox-link-icon {
  margin-right: 10px;
}
.layout06__box {
  position: relative;
}
@media (min-width: 992px) {
  .layout06__box {
    padding-left: 50px;
  }
}
.layout06__box__txtBox {
  width: 100%;
  margin-right: 0px;
  margin-top: 100px;
  z-index: 2;
}
@media (min-width: 992px) {
  .layout06__box__txtBox {
    width: 42%;
    margin-right: 65px;
    margin-top: 70px;
    z-index: 2;
  }
}
.layout06__box__txtBox-txt {
  margin-top: 70px;
  margin-left: 25px;
}
.layout06__box__txtBox-list {
  margin-top: 50px;
  margin-left: 25px;
}
@media (min-width: 992px) {
  .layout06__box__txtBox-list {
    margin-left: 25px;
  }
}
.layout06__box__txtBox .ttl02 {
  margin-right: 0;
  position: relative;
}
.layout06__box__txtBox .ttl02::after {
  content: "";
  width: 155px;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  opacity: 0.7;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
@media (min-width: 992px) {
  .layout06__box__txtBox .ttl02::after {
    content: none;
  }
}
.layout06__box__txtBox .ttl02__ja {
  font-size: 14px;
  margin-bottom: -25px;
  margin-left: 5px;
}
@media (min-width: 992px) {
  .layout06__box__txtBox .ttl02__ja {
    font-size: 18px;
    margin-bottom: -40px;
    margin-left: 5px;
  }
}
.layout06__box__txtBox .ttl02__en::before {
  content: "";
  background: url(../../img/ttl_accent02.png) no-repeat center/70%;
  width: 50%;
  height: 15px;
  position: absolute;
  left: -40px;
  bottom: 0px;
  display: inline;
}
@media (min-width: 992px) {
  .layout06__box__txtBox .ttl02__en::before {
    left: -80px;
    bottom: 5px;
  }
}
.layout06__box__img {
  position: absolute;
  right: -20px;
  height: 220px;
  width: 80%;
  border-radius: 40px 0 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .layout06__box__img {
    position: inherit;
    width: 60%;
    height: 430px;
    margin-right: -10%;
  }
}
.layout06__box__img02 {
  position: absolute;
  bottom: 100%;
  right: -9%;
  width: 29%;
}
.layout06__box__img03 {
  position: absolute;
  bottom: 40%;
  right: 25%;
  width: 22%;
}
.layout06__item {
  margin-bottom: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 992px) {
  .layout06__item {
    margin-bottom: 130px;
    gap: 40px 30px;
    margin-top: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .layout06__item {
    gap: 40px 60px;
  }
}
.layout06__itemBox {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 992px) {
  .layout06__itemBox {
    margin-top: 0px;
    width: 31%;
  }
}
@media (min-width: 1200px) {
  .layout06__itemBox {
    margin-top: 0px;
    width: 29.5%;
  }
}
.layout06__itemBox:nth-child(2), .layout06__itemBox:nth-child(5), .layout06__itemBox:nth-child(8), .layout06__itemBox:nth-child(11) {
  margin-top: 60px;
}
.layout06__itemBox:nth-child(3), .layout06__itemBox:nth-child(6), .layout06__itemBox:nth-child(9) {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .layout06__itemBox:nth-child(3), .layout06__itemBox:nth-child(6), .layout06__itemBox:nth-child(9) {
    margin-top: 120px;
  }
}
.layout06__itemBox-ttl {
  margin: 10px 0 8px 10px;
}
.layout06__itemBox-ttl-en {
  font-size: 30px;
  display: block;
  margin-top: -15px;
  font-weight: 400;
}
.layout06__itemBox-txt {
  margin-left: 8px;
}
.layout06__itemBox-btn {
  width: 100%;
  border: 1px solid #454545;
  text-align: center;
  margin-top: 30px;
}
.layout06__itemBox-btn-link {
  display: block;
  width: 100%;
  padding: 5px;
  font-size: 24px;
}
.layout06__itemBox-btn02 {
  width: auto;
  margin: 0 auto;
  border: 1px solid #454545;
  text-align: center;
  margin-top: -50px;
}
@media (min-width: 992px) {
  .layout06__itemBox-btn02 {
    width: 380px;
  }
}
.layout06__itemBox-btn02-link {
  display: block;
  padding: 5px;
  font-size: 24px;
}

.layout07 {
  background: #8cc2c5;
  padding: 40px 0 10px;
}
@media (min-width: 992px) {
  .layout07 {
    padding: 170px 0 10px;
  }
}
.layout07__wrap {
  width: auto;
  margin: 0 20px 120px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .layout07__wrap {
    gap: 60px;
  }
}
@media (min-width: 992px) {
  .layout07__wrap {
    width: 970px;
    margin: 0 auto 200px;
    position: relative;
    gap: 0px;
  }
}
@media (min-width: 1200px) {
  .layout07__wrap {
    width: 1180px;
    margin: 0 auto 350px;
    position: relative;
  }
}
.layout07 .ttl01 {
  width: 10%;
}
@media (min-width: 992px) {
  .layout07 .ttl01 {
    margin-right: 55px;
    width: 15%;
  }
}
@media (min-width: 1200px) {
  .layout07 .ttl01 {
    margin-right: 75px;
    width: 10%;
  }
}
.layout07 .ttl01__img {
  margin-top: -4%;
  margin-right: -5%;
}
.layout07__slider {
  width: 100%;
}
.layout07__slider__list {
  position: relative;
  padding-bottom: 125%;
}
@media (min-width: 768px) {
  .layout07__slider__list {
    padding-bottom: 75%;
  }
}
@media (min-width: 992px) {
  .layout07__slider__list {
    margin-bottom: 0px;
  }
}
.layout07__slider__list__unit {
  position: absolute;
  top: 0;
  left: 12%;
  width: 100%;
}
@media (min-width: 992px) {
  .layout07__slider__list__unit {
    left: 0;
  }
}
.layout07__slider__list__unit:nth-child(2) {
  top: -20px;
  left: 12%;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
@media (min-width: 992px) {
  .layout07__slider__list__unit:nth-child(2) {
    left: -30px;
  }
}
.layout07__slider__list__unit:nth-child(3) {
  top: 30px;
  left: 12%;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
@media (min-width: 992px) {
  .layout07__slider__list__unit:nth-child(3) {
    left: -40px;
  }
}
.layout07__slider__list__unit:nth-child(4) {
  top: -40px;
  left: 12%;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
@media (min-width: 992px) {
  .layout07__slider__list__unit:nth-child(4) {
    left: 15px;
  }
}
.layout07__slider__list__unit img {
  width: 260px;
  height: 360px;
}
@media (min-width: 768px) {
  .layout07__slider__list__unit img {
    width: 360px;
    height: 480px;
  }
}
@media (min-width: 992px) {
  .layout07__slider__list__unit img {
    width: 330px;
    height: 500px;
  }
}
@media (min-width: 1200px) {
  .layout07__slider__list__unit img {
    width: 470px;
    height: 630px;
  }
}
.layout07__slider .gallery {
  display: -ms-grid;
  display: grid;
  width: auto;
}
.layout07__slider .gallery > li {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.layout07__slider .gallery > li.zindex0.unit01 {
  -webkit-animation: slide01 3s forwards;
          animation: slide01 3s forwards;
}
.layout07__slider .gallery > li.zindex0.unit02 {
  -webkit-animation: slide02 3s forwards;
          animation: slide02 3s forwards;
}
.layout07__slider .gallery > li.zindex0.unit03 {
  -webkit-animation: slide03 3s forwards;
          animation: slide03 3s forwards;
}
.layout07__slider .gallery > li.zindex0.unit04 {
  -webkit-animation: slide04 3s forwards;
          animation: slide04 3s forwards;
}
.layout07__slider .gallery > li.zindex1 {
  z-index: 1;
}
.layout07__slider .gallery > li.zindex2 {
  z-index: 2;
}
.layout07__slider .gallery > li.current {
  z-index: 3;
}
@-webkit-keyframes slide01 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
}
@keyframes slide01 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    z-index: 0;
  }
}
@-webkit-keyframes slide02 {
  0% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%) rotate(2deg);
            transform: translateX(120%) rotate(2deg);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%) rotate(2deg);
            transform: translateX(120%) rotate(2deg);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 0;
  }
}
@keyframes slide02 {
  0% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%) rotate(2deg);
            transform: translateX(120%) rotate(2deg);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%) rotate(2deg);
            transform: translateX(120%) rotate(2deg);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%) rotate(2deg);
            transform: translateX(0%) rotate(2deg);
    z-index: 0;
  }
}
@-webkit-keyframes slide03 {
  0% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%) rotate(-5deg);
            transform: translateX(120%) rotate(-5deg);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%) rotate(-5deg);
            transform: translateX(120%) rotate(-5deg);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 0;
  }
}
@keyframes slide03 {
  0% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%) rotate(-5deg);
            transform: translateX(120%) rotate(-5deg);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%) rotate(-5deg);
            transform: translateX(120%) rotate(-5deg);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%) rotate(-5deg);
            transform: translateX(0%) rotate(-5deg);
    z-index: 0;
  }
}
@-webkit-keyframes slide04 {
  0% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%) rotate(5deg);
            transform: translateX(120%) rotate(5deg);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%) rotate(5deg);
            transform: translateX(120%) rotate(5deg);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 0;
  }
}
@keyframes slide04 {
  0% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 4;
  }
  16.66% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 4;
  }
  16.67% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 4;
  }
  33.34% {
    -webkit-transform: translateX(120%) rotate(5deg);
            transform: translateX(120%) rotate(5deg);
    z-index: 4;
  }
  33.35% {
    -webkit-transform: translateX(120%) rotate(5deg);
            transform: translateX(120%) rotate(5deg);
    z-index: 4;
  }
  66.33% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 0;
  }
  66.34% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 0;
  }
  100% {
    -webkit-transform: translateX(0%) rotate(5deg);
            transform: translateX(0%) rotate(5deg);
    z-index: 0;
  }
}
.layout07__ttlArea {
  text-align: left;
  color: #fff;
  margin-top: 0px;
  margin-left: 20px;
  width: 90%;
}
@media (min-width: 992px) {
  .layout07__ttlArea {
    margin-top: 70px;
    margin-left: 40px;
  }
}
.layout07__ttlArea-ttl {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 30px;
  line-height: 35px;
}
@media (min-width: 992px) {
  .layout07__ttlArea-ttl {
    line-height: 45px;
  }
}
.layout07__ttlArea-ttl-accent-num {
  display: block;
  font-family: "noto-serif", serif;
  font-style: italic;
  font-weight: 200;
  font-size: 45px;
  text-align: left;
  color: #fff;
  margin-bottom: 5px;
}
.layout07__ttlArea-ttl-accent-ja {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 17px;
  text-align: left;
  color: #fff;
  position: relative;
}
@media (min-width: 992px) {
  .layout07__ttlArea-ttl-accent-ja {
    font-size: 28px;
  }
}
.layout07__ttlArea-ttl-accent-ja::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 135px;
  position: absolute;
  top: 300%;
  right: -2em;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
}
@media (min-width: 992px) {
  .layout07__ttlArea-ttl-accent-ja::after {
    content: none;
  }
}
@media (min-width: 1200px) {
  .layout07__ttlArea-ttl-accent-ja::after {
    content: "";
    height: 206px;
    top: 50%;
    right: -1.3em;
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
}
.layout07__ttlArea-ttl-accent-en {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  text-align: left;
  color: #fff;
}
@media (min-width: 992px) {
  .layout07__ttlArea-ttl-accent-en {
    font-size: 28px;
  }
}
.layout07__ttlArea-txt {
  margin-top: 30px;
  font-family: yu-mincho-pr6n, serif;
}
@media (min-width: 992px) {
  .layout07__ttlArea-txt {
    margin-top: 80px;
  }
}
.layout07__ttlArea-pic {
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: #8cc2c5;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .layout07__ttlArea-pic {
    width: 80%;
  }
}

.next-box {
  position: absolute;
  bottom: 40%;
  right: 1%;
  z-index: 10;
}
@media (min-width: 768px) {
  .next-box {
    bottom: 40%;
    right: 25%;
  }
}
@media (min-width: 992px) {
  .next-box {
    bottom: 13%;
    right: -7%;
  }
}
.next-box-btn {
  cursor: pointer;
  width: 55px;
  height: 55px;
  padding: 5px 17px;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .next-box-btn {
    width: 65px;
    height: 65px;
    padding: 10px 20px;
  }
}
.next-box-btn-arrow {
  display: inline-block;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 1.4em;
  height: 0.05em;
  background: currentColor;
}
.next-box-btn-arrow::before {
  content: "";
  width: 0.5em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.next-box02 {
  position: absolute;
  bottom: 49%;
  right: 1%;
  z-index: 10;
}
@media (min-width: 768px) {
  .next-box02 {
    bottom: 45%;
    right: 25%;
  }
}
@media (min-width: 992px) {
  .next-box02 {
    bottom: 13%;
    right: -7%;
  }
}

.next-box03 {
  position: absolute;
  bottom: 45%;
  right: 1%;
  z-index: 10;
}
@media (min-width: 768px) {
  .next-box03 {
    right: 25%;
  }
}
@media (min-width: 992px) {
  .next-box03 {
    bottom: 13%;
    right: -7%;
  }
}

.next-box04 {
  position: absolute;
  bottom: 49%;
  right: 1%;
  z-index: 10;
}
@media (min-width: 768px) {
  .next-box04 {
    right: 25%;
  }
}
@media (min-width: 992px) {
  .next-box04 {
    bottom: 13%;
    right: -7%;
  }
}

.next-box05 {
  position: absolute;
  bottom: 45%;
  right: 1%;
  z-index: 10;
}
@media (min-width: 768px) {
  .next-box05 {
    right: 25%;
  }
}
@media (min-width: 992px) {
  .next-box05 {
    bottom: 13%;
    right: -7%;
  }
}

.next-box06 {
  position: absolute;
  bottom: 58%;
  right: 1%;
  z-index: 10;
}
@media (min-width: 768px) {
  .next-box06 {
    bottom: 53%;
    right: 25%;
  }
}
@media (min-width: 992px) {
  .next-box06 {
    bottom: 13%;
    right: -7%;
  }
}

.pic::after {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 135px;
  position: absolute;
  top: 150%;
  right: -9em;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
}
@media (min-width: 992px) {
  .pic::after {
    height: 206px;
    top: 120%;
    right: -5.3em;
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
    -webkit-transform: translateY(-50%) rotate(40deg);
            transform: translateY(-50%) rotate(40deg);
  }
}

.layout08 {
  background: #F5F1EE;
  padding: 0 0 80px;
}
@media (min-width: 992px) {
  .layout08 {
    padding: 60px 0 150px;
  }
}
.layout08__wrap {
  width: auto;
  margin: 0 20px;
  padding-top: 60px;
}
@media (min-width: 992px) {
  .layout08__wrap {
    width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .layout08__wrap {
    width: 1080px;
    margin: 0 auto;
  }
}
.layout08__wrap__imgSp {
  width: 140%;
  background-color: #fff;
  padding: 60px 0 40px;
  margin-left: -26%;
  margin-top: -16%;
}
.layout08__wrap__txtBox {
  width: 100%;
  padding-left: 0px;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox {
    padding-left: 50px;
  }
}
.layout08__wrap__txtBox .ttl02 {
  text-align: center;
  margin-left: 0px;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox .ttl02 {
    text-align: left;
    margin-left: 20px;
  }
}
.layout08__wrap__txtBox .ttl02__ja {
  margin-bottom: -40px;
  margin-left: 0px;
}
.layout08__wrap__txtBox .ttl02__img {
  margin-left: 0;
  margin-top: -9%;
}
@media (min-width: 768px) {
  .layout08__wrap__txtBox .ttl02__img {
    margin-top: -4%;
  }
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox .ttl02__img {
    margin-top: -7%;
    margin-left: -20px;
  }
}
.layout08__wrap__txtBox-ttl {
  font-size: 18px;
  margin: 30px 0;
  text-align: center;
  font-family: yu-mincho-pr6n, serif;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox-ttl {
    text-align: left;
    font-size: 22px;
    margin: 30px 0;
  }
}
.layout08__wrap__txtBox-txt {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  letter-spacing: 1px;
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox-txt {
    text-align: left;
    font-size: 16px;
  }
}
.layout08__wrap__txtBox .num {
  font-size: 14px;
  font-weight: bold;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox .num {
    font-size: 16px;
  }
}
.layout08__wrap__txtBox-btn {
  width: 200px;
  margin: 0 auto;
  border: 1px solid #454545;
  text-align: center;
  margin-top: 30px;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox-btn {
    width: 380px;
    margin: 30px 0;
  }
}
.layout08__wrap__txtBox-btn-link {
  display: block;
  width: 100%;
  font-size: 13px;
  padding: 5px;
}
@media (min-width: 992px) {
  .layout08__wrap__txtBox-btn-link {
    font-size: 24px;
  }
}
.layout08__wrap__imgWrap {
  margin-right: -80px;
}
.layout08__wrap__imgWrap02 {
  margin-left: -80px;
}
.layout08__wrap02 {
  width: auto;
  margin: 0 20px 0 0;
  padding-top: 70px;
}
@media (min-width: 992px) {
  .layout08__wrap02 {
    width: 1080px;
    margin: 0 auto 0 0;
  }
}
.layout08__wrap02__txtBox {
  width: 98%;
  padding-left: 40px;
  font-family: yu-mincho-pr6n, serif;
}
@media (min-width: 992px) {
  .layout08__wrap02__txtBox {
    width: 80%;
    padding-left: 70px;
  }
}
.layout08__wrap02__txtBox-ttl {
  font-size: 18px;
  margin-left: 15px;
  margin-top: 50px;
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .layout08__wrap02__txtBox-ttl {
    font-size: 20px;
    margin-left: 0px;
  }
}
.layout08__wrap02__txtBox-ttl .fa-plane-up {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: 10px;
  font-size: 24px;
}
.layout08__wrap02__txtBox-ttl .fa-car {
  margin-right: 10px;
  font-size: 24px;
}
.layout08__wrap02__txtBox-ttl-pic {
  padding-left: 12%;
}
@media (min-width: 992px) {
  .layout08__wrap02__txtBox-ttl-pic {
    padding-left: 2%;
  }
}
.layout08__wrap02__txtBox-txt {
  font-size: 14px;
}
@media (min-width: 768px) {
  .layout08__wrap02__txtBox-txt {
    font-size: 15px;
  }
}
.layout08__wrap02__txtBox-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  height: 50px;
  text-align: center;
  padding: 3px 20px 3px;
  border: 1px solid #454545;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .layout08__wrap02__txtBox-btn {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .layout08__wrap02__txtBox-btn {
    width: 70%;
    padding: 3px 80px 3px;
  }
}
.layout08__wrap02__txtBox-btn-img {
  width: 90%;
}
@media (min-width: 768px) {
  .layout08__wrap02__txtBox-btn-img {
    width: 70%;
  }
}
.layout08__wrap02__txtBox-btn-img .fa-arrow-up-right-from-square {
  color: #454545;
}

#concept {
  padding-top: 200px;
  margin-top: -200px;
}

#instagram,
#howtouse {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

#access {
  display: block;
  padding-top: 10px;
  margin-top: -10px;
}