@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  position: relative;
  background: #F2D6C1;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
ol,
li,
blockquote,
pre,
table,
caption,
th,
td,
address,
form,
fieldset,
legend,
object {
  margin: 0;
  padding: 0;
}

header,
section,
nav,
footer {
  display: block;
}

a,
ins {
  text-decoration: none;
}

address,
em,
cite,
dfn,
var {
  font-style: normal;
}

input,
textarea,
select {
  font-weight: normal;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

img {
  vertical-align: baseline;
  max-width: 100%;
  height: auto;
}

a img {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
ol,
li,
blockquote,
pre,
table,
caption,
th,
td,
address {
  line-height: 2;
  letter-spacing: 0;
  color: #3B3B3B;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
  letter-spacing: 0;
}

a {
  color: #3B3B3B;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
li {
  list-style: none;
}

a[href^="tel:"] {
  cursor: default;
  opacity: 1 !important;
}

br.pcn {
  display: none;
}
@media screen and (max-width: 480px) {
  br.pcn {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  br.spn {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .onlyPC {
    display: none;
  }
}

.onlySP {
  display: none;
}
@media screen and (max-width: 480px) {
  .onlySP {
    display: initial;
  }
}

.anime-b {
  opacity: 0;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: 1s;
  transition: 1s;
}

.move-b {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.delay1 {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
@media screen and (max-width: 480px) {
  .delay1 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay2 {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
@media screen and (max-width: 480px) {
  .delay2 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay3 {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
@media screen and (max-width: 480px) {
  .delay3 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay4 {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
@media screen and (max-width: 480px) {
  .delay4 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

.delay5 {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}
@media screen and (max-width: 480px) {
  .delay5 {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

/* ------ navibtn -----------------------------------*/
.hnavi_btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999999;
  display: none;
}
@media screen and (max-width: 1080px) {
  .hnavi_btn {
    display: block;
  }
}

.menu-button {
  width: 48px;
  height: 48px;
  background: #D6500A;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100000;
}
.menu-button i {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 3px;
  background: transparent;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  position: absolute;
  right: 14px;
  top: 24px;
}
.menu-button i:before, .menu-button i:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #FFF;
  position: absolute;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}
.menu-button i:before {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.menu-button i:after {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.hnavi_btn.active .menu-button i {
  background: none;
}
.hnavi_btn.active .menu-button i:after {
  -webkit-transform: translateY(0px) rotate(-45deg);
          transform: translateY(0px) rotate(-45deg);
}
.hnavi_btn.active .menu-button i:before {
  -webkit-transform: translateY(0px) rotate(45deg);
          transform: translateY(0px) rotate(45deg);
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@-webkit-keyframes loop_r {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loop_r {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes loop_r2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes loop_r2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.line_copy p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  color: #D6500A;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .line_copy p {
    font-size: 17px;
  }
}
.line_copy p span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FFF));
  background: -webkit-linear-gradient(transparent 0%, #FFF 0%);
  background: linear-gradient(transparent 0%, #FFF 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
  line-height: 1.8;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn.external a::after {
  background: url("../img/common/external_w.svg");
  width: 14px;
  height: 14px;
}
.btn a {
  padding: 8px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 25px;
  background: #D6500A;
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 16px;
    padding: 8px 32px;
    height: 48px;
    border-radius: 24px;
  }
}
.btn a::after {
  content: "";
  display: block;
  background: url("../img/common/btn_arrow.svg") no-repeat;
  width: 10px;
  height: 12px;
  margin-left: 16px;
}
.btn a:hover {
  background: #000;
}

.header_bg {
  position: fixed;
  background: url("../img/common/mv_bg.png") no-repeat top center;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.hicon1 {
  position: absolute;
  top: -20px;
  left: calc(50vw - 423px);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .hicon1 {
    width: 56px;
    top: -17px;
    left: 11.5%;
  }
}

.hicon2 {
  position: absolute;
  top: 86px;
  left: calc(50vw - 303px);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .hicon2 {
    width: 35px;
    top: 8px;
    left: 57.3%;
  }
}

.hicon3 {
  position: absolute;
  top: 83px;
  right: calc(50vw - 675px);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .hicon3 {
    width: 70px;
    top: 168px;
    right: -5px;
  }
}

.hicon4 {
  position: absolute;
  top: 363px;
  right: calc(50vw - 482px);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .hicon4 {
    width: 26px;
    top: 453px;
    right: 8%;
  }
}

.hicon5 {
  position: absolute;
  top: 450px;
  left: calc(50vw - 675px);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .hicon5 {
    width: 112px;
    left: 3%;
    top: 376px;
  }
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@-webkit-keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.kumo {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.kumo .hkumo1 {
  position: fixed;
  top: 30px;
  left: calc(50vw - 670px);
  z-index: 0;
  -webkit-animation: fuwafuwa 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
          animation: fuwafuwa 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}
@media screen and (max-width: 767px) {
  .kumo .hkumo1 {
    position: absolute;
    width: 50%;
    left: 15px;
    top: 43px;
  }
}
@media screen and (min-width: 768px) {
  .kumo .hkumo1.fixed {
    position: absolute;
    top: 656px;
    z-index: 0;
  }
}
.kumo .hkumo2 {
  position: fixed;
  top: 132px;
  right: calc(50vw - 750px);
  z-index: 0;
  -webkit-animation: fuwafuwa2 2.3s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
          animation: fuwafuwa2 2.3s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}
@media screen and (max-width: 767px) {
  .kumo .hkumo2 {
    position: absolute;
    width: 43.2%;
    top: 71px;
    right: -8%;
  }
}
@media screen and (min-width: 768px) {
  .kumo .hkumo2.fixed {
    position: absolute;
    top: 760px;
  }
}

.wrap_top_header {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.wrap_top_header .wrap_top_header_bg {
  position: relative;
  background: url("../img/top/mv_bg2.png") no-repeat top 348px left calc(50vw - 675px);
  background-size: 1622px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .wrap_top_header .wrap_top_header_bg {
    background: url("../img/top/sp_top_head_bg.png") no-repeat;
    background-size: 593px;
    background-position: left 21px top 217px;
  }
}
.wrap_top_header .wrap_top_header_bg .hicon6 {
  position: absolute;
  top: 357px;
  left: calc(50% - 478px);
}
@media screen and (max-width: 767px) {
  .wrap_top_header .wrap_top_header_bg .hicon6 {
    width: 25px;
    top: 217px;
    left: 21px;
  }
}
.wrap_top_header .wrap_top_header_bg .hicon7 {
  position: absolute;
  top: 386px;
  left: calc(50% - 609px);
}
@media screen and (max-width: 767px) {
  .wrap_top_header .wrap_top_header_bg .hicon7 {
    width: 65px;
    top: 313px;
    left: 33px;
  }
}

.wrap_header {
  background: url("../img/common/header_kumo.png") no-repeat center top 30px;
  background-size: 1490px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap_header {
    background-size: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wrap_header .hicon1 {
    left: 23%;
  }
}
@media screen and (max-width: 767px) {
  .wrap_header .header .hlogo {
    position: absolute;
    left: 12px;
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .wrap_header .header .hlogo img {
    width: 48px;
  }
}

.header {
  padding-top: 108px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2000;
}
@media screen and (max-width: 767px) {
  .header {
    padding-top: 57px;
  }
}
.header .hlogo {
  font-size: 0;
  z-index: 500;
  position: absolute;
  top: 80px;
  left: 27px;
}
@media screen and (max-width: 767px) {
  .header .hlogo {
    position: static;
    text-align: center;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .header .hlogo img {
    width: 110px;
  }
}
.header .hlogo a:hover {
  opacity: 0.6;
}
.header .hcopy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  z-index: 500;
  position: absolute;
  right: 0;
  top: 164px;
}
@media screen and (max-width: 1240px) {
  .header .hcopy {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header .hcopy {
    top: 215px;
    left: calc(50% + 78px);
    right: auto;
  }
}
.header .hcopy p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  margin-left: 28px;
  padding: 8px 2px 2px;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 980px) {
  .header .hcopy p {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header .hcopy p {
    font-size: 16px;
    margin-left: 8px;
    padding: 5px 1px;
  }
}
.header .hcopy p:nth-of-type(2) {
  margin-top: 42px;
}
@media screen and (max-width: 767px) {
  .header .hcopy p:nth-of-type(2) {
    margin-top: 30px;
  }
}

.hnavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 8px;
  right: 16px;
  z-index: 10000;
  padding: 12px 24px;
}
@media screen and (min-width: 1380px) {
  .hnavi {
    right: calc(50vw - 680px);
  }
}
@media screen and (min-width: 1081px) {
  .hnavi.fixed {
    border-radius: 30px;
    background: transparent;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@media screen and (max-width: 1080px) {
  .hnavi {
    position: fixed;
    top: 0;
    right: -200px;
    opacity: 0;
    width: 173px;
    height: 100dvh;
    overflow: auto;
    padding: 92px 20px;
    background: #D6500A;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 10000;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.hnavi.active {
  opacity: 1;
  right: 0;
}
.hnavi .sp_navi_logo {
  display: none;
}
@media screen and (max-width: 1080px) {
  .hnavi .sp_navi_logo {
    display: block;
    font-size: 0;
    margin-bottom: 32px;
  }
}
.hnavi .gnavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1080px) {
  .hnavi .gnavi {
    text-align: center;
    display: block;
  }
}
.hnavi .gnavi li {
  font-size: 14px;
  font-weight: bold;
  margin-left: 20px;
}
@media screen and (max-width: 1080px) {
  .hnavi .gnavi li {
    margin: 0 0 32px;
  }
}
.hnavi .gnavi li:first-of-type {
  margin-left: 0;
}
.hnavi .gnavi li a {
  color: #D6500A;
}
@media screen and (max-width: 1080px) {
  .hnavi .gnavi li a {
    color: #FFF;
  }
}
.hnavi .gnavi li a:hover {
  color: #3B3B3B;
}
.hnavi .hsns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 32px;
}
.hnavi .hsns li {
  margin-left: 8px;
}
@media screen and (max-width: 1080px) {
  .hnavi .hsns li {
    margin-left: 20px;
  }
}
.hnavi .hsns li:first-of-type {
  margin-left: 0;
}
.hnavi .hsns li a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0;
  background: #D6500A;
}
@media screen and (max-width: 1080px) {
  .hnavi .hsns li a {
    border: 1px solid #E69E79;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.hnavi .hsns li a:hover {
  background: #3B3B3B;
}

.page_mv {
  text-align: center;
  position: relative;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .page_mv {
    padding-bottom: 12vw;
    margin-bottom: 16px;
  }
}
.page_mv::before {
  content: "";
  display: block;
  background: url("../img/common/header_bg.png") no-repeat;
  background-size: 100%;
  width: 1320px;
  height: 303px;
  position: absolute;
  left: calc(50% - 660px);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .page_mv::before {
    width: 140%;
    height: 32vw;
    left: -20%;
  }
}
.page_mv.pp {
  width: 750px;
  padding: 156px 0 164px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_mv.pp {
    padding: 64px 0 80px;
  }
}
.page_mv.pp::before {
  display: none;
}
.page_mv.pp .page_ttl {
  top: 60px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .page_mv .page_ttl_img {
    width: 80%;
    margin: 0 auto;
  }
}
.page_mv .page_ttl {
  position: absolute;
  top: 180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 44px;
  font-weight: 600;
  color: #D6500A;
  line-height: 1;
  padding: 1px 6px 5px;
}
@media screen and (max-width: 767px) {
  .page_mv .page_ttl {
    top: 22vw;
    font-size: 24px;
  }
}
.page_mv .page_ttl.not404 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .page_mv .page_ttl.not404 {
    font-size: 20px;
  }
}
.page_mv .page_ttl span {
  font-family: "Caveat", cursive;
  font-size: 30px;
  font-weight: 400;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(-12deg) translateX(-10%) translateY(-140%);
          transform: rotate(-12deg) translateX(-10%) translateY(-140%);
}
@media screen and (max-width: 767px) {
  .page_mv .page_ttl span {
    font-size: 20px;
  }
}

.pan {
  max-width: 1240px;
  margin: 0 auto 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .pan {
    margin-bottom: 40px;
  }
}
.pan li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #D6500A;
}
.pan li::after {
  content: "";
  display: block;
  background: url("../img/common/pan_arrow.svg") no-repeat;
  width: 5px;
  height: 8px;
  margin: 0 12px;
}
.pan li:last-of-type::after {
  display: none;
}
.pan li a {
  color: #D6500A;
}

/*/ アニメーション //////////////////////////////////*/
body.lower .wrap_header {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.lower .header {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.lower .header.fixed {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
body.lower .hnavi {
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
@media screen and (max-width: 1080px) {
  body.lower .hnavi {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
body.lower .hlogo {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
body.lower .pan {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}

body.lower.start .wrap_header {
  opacity: 1;
}
body.lower.start .header {
  opacity: 1;
}
body.lower.start .hnavi {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body.lower.start .hlogo {
  opacity: 1;
}
body.lower.start .pan {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.top .kumo {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.top .hnavi {
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 4.9s;
          transition-delay: 4.9s;
}
body.top .hnavi.fixed {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1080px) {
  body.top .hnavi.fixed {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1080px) {
  body.top .hnavi {
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
body.top .hlogo {
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 0.5s;
  transition: opacity 1s, -webkit-transform 0.5s;
  transition: opacity 1s, transform 0.5s;
  transition: opacity 1s, transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
@media screen and (max-width: 767px) {
  body.top .hlogo {
    -webkit-transition: opacity 1.6s, -webkit-transform 0.5s;
    transition: opacity 1.6s, -webkit-transform 0.5s;
    transition: opacity 1.6s, transform 0.5s;
    transition: opacity 1.6s, transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
}
body.top .hcopy p {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
body.top .hcopy p:nth-of-type(1) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
@media screen and (max-width: 767px) {
  body.top .hcopy p:nth-of-type(1) {
    -webkit-transition-delay: 2.2s;
            transition-delay: 2.2s;
  }
}
body.top .hcopy p:nth-of-type(2) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
@media screen and (max-width: 767px) {
  body.top .hcopy p:nth-of-type(2) {
    -webkit-transition-delay: 2.6s;
            transition-delay: 2.6s;
  }
}
body.top .hcopy p:nth-of-type(3) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
@media screen and (max-width: 767px) {
  body.top .hcopy p:nth-of-type(3) {
    -webkit-transition-delay: 3s;
            transition-delay: 3s;
  }
}
body.top .wrap_top_header_bg {
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  transition: opacity 1.2s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
@media screen and (max-width: 767px) {
  body.top .wrap_top_header_bg {
    -webkit-transition-delay: 1.7s;
            transition-delay: 1.7s;
  }
}
body.top .wrap_top_mv {
  opacity: 0;
  -webkit-transition: opacity 1.2s;
  transition: opacity 1.2s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
@media screen and (max-width: 767px) {
  body.top .wrap_top_mv {
    -webkit-transition: opacity 1.6s;
    transition: opacity 1.6s;
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
  }
}
body.top .hicon1 {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 4.9s;
          transition-delay: 4.9s;
}
@media screen and (max-width: 767px) {
  body.top .hicon1 {
    -webkit-transition-delay: 4.6s;
            transition-delay: 4.6s;
  }
}
body.top .hicon2 {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
@media screen and (max-width: 767px) {
  body.top .hicon2 {
    -webkit-transition-delay: 4.6s;
            transition-delay: 4.6s;
  }
}
body.top .hicon3 {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 5.1s;
          transition-delay: 5.1s;
}
@media screen and (max-width: 767px) {
  body.top .hicon3 {
    -webkit-transition-delay: 4.6s;
            transition-delay: 4.6s;
  }
}
body.top .hicon4 {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 4.9s;
          transition-delay: 4.9s;
}
@media screen and (max-width: 767px) {
  body.top .hicon4 {
    -webkit-transition-delay: 4.6s;
            transition-delay: 4.6s;
  }
}
body.top .hicon5 {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}
@media screen and (max-width: 767px) {
  body.top .hicon5 {
    -webkit-transition-delay: 4.6s;
            transition-delay: 4.6s;
  }
}
body.top .lead_kumo1,
body.top .lead_kumo2 {
  opacity: 0;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}
body.top .lead_kumo1 {
  -webkit-animation: fuwafuwa 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
          animation: fuwafuwa 2.1s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}
body.top .lead_kumo2 {
  -webkit-animation: fuwafuwa2 2.3s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
          animation: fuwafuwa2 2.3s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}
body.top .wrap_top_header_bg {
  opacity: 0;
  height: 0;
  -webkit-transition: all 4.5s;
  transition: all 4.5s;
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}
body.top .wrap_top_header_bg .hicon6 {
  opacity: 0;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-delay: 4.5s;
          transition-delay: 4.5s;
}
@media screen and (max-width: 767px) {
  body.top .wrap_top_header_bg .hicon6 {
    -webkit-transition-delay: 3.8s;
            transition-delay: 3.8s;
  }
}
body.top .wrap_top_header_bg .hicon7 {
  opacity: 0;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-delay: 4.6s;
          transition-delay: 4.6s;
}
@media screen and (max-width: 767px) {
  body.top .wrap_top_header_bg .hicon7 {
    -webkit-transition-delay: 4s;
            transition-delay: 4s;
  }
}

body.top.start .kumo {
  opacity: 1;
}
body.top.start .hnavi {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body.top.start .hlogo {
  opacity: 1;
}
body.top.start .hcopy p {
  opacity: 1;
}
body.top.start .wrap_top_header_bg {
  opacity: 1;
}
body.top.start .wrap_top_mv {
  opacity: 1;
}
body.top.start .hicon1 {
  opacity: 1;
}
body.top.start .hicon2 {
  opacity: 1;
}
body.top.start .hicon3 {
  opacity: 1;
}
body.top.start .hicon4 {
  opacity: 1;
}
body.top.start .hicon5 {
  opacity: 1;
}
body.top.start .lead_kumo1,
body.top.start .lead_kumo2 {
  opacity: 1;
}
body.top.start .wrap_top_header_bg {
  opacity: 1;
  height: 100dvh;
}
body.top.start .wrap_top_header_bg .hicon6 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body.top.start .wrap_top_header_bg .hicon7 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.meguru .wrap_top_lead .line_copy {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .line_copy {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
}
.meguru .wrap_top_lead .lead {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .lead {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
}
.meguru .wrap_top_lead .top_bg {
  opacity: 0.8;
  height: 0;
  -webkit-transition: all 4.2s;
  transition: all 4.2s;
}
.meguru .wrap_top_lead .icon1 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.meguru .wrap_top_lead .icon2 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.meguru .wrap_top_lead .icon3 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.meguru .wrap_top_lead .icon4 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.meguru .wrap_top_lead .icon5 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.meguru .wrap_top_lead .icon6 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.meguru .wrap_top_lead .icon7 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.meguru .wrap_top_lead .icon8 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.meguru .wrap_top_lead .icon9 {
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.meguru .wrap_top_lead:has(.move) .line_copy {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .lead {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .top_bg {
  opacity: 1;
  height: 1051px;
}
.meguru .wrap_top_lead:has(.move) .icon1 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon2 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon3 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon4 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon5 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon6 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon7 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon8 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.meguru .wrap_top_lead:has(.move) .icon9 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*/ top //////////////////////////////////////*/
.wrap_top_mv {
  padding-top: 8px;
  position: relative;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}
.wrap_top_mv .mv_slide {
  width: 143px;
  margin-bottom: 163px;
  margin-left: 40px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wrap_top_mv .mv_slide {
    width: 21.3%;
    margin-bottom: 0;
  }
}
.wrap_top_mv .mv_slide:first-of-type {
  margin-left: 0;
}
.wrap_top_mv .mv_slide1 {
  width: 800px;
  height: 800px;
  margin: 0 30px;
  padding: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .wrap_top_mv .mv_slide1 {
    width: 75vw;
    height: 75vw;
  }
}
@media screen and (max-width: 767px) {
  .wrap_top_mv .mv_slide1 {
    width: 59vw;
    height: 59vw;
    margin: 0 16px 36px;
  }
}
.wrap_top_mv .mv_slide1 .sakura {
  position: absolute;
  bottom: 120px;
  right: -42px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .wrap_top_mv .mv_slide1 .sakura {
    width: 82px;
    right: -3px;
    bottom: -10px;
  }
}
.wrap_top_mv .mv_slide1 + .mv_slide {
  margin-left: 0;
}
.wrap_top_mv .mv_slide1 ul li {
  position: relative;
}
.wrap_top_mv .mv_slide1 ul li .img {
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
}
.wrap_top_mv .mv_slide1 ul li .img::before {
  content: "";
  display: block;
  background: url("../img/top/mv_flame.svg") no-repeat;
  background-size: cover;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 100;
}
.wrap_top_mv .mv_slide1 ul li .name {
  position: absolute;
  top: 333px;
  right: calc(50% + 285px);
  z-index: 2000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1080px) {
  .wrap_top_mv .mv_slide1 ul li .name {
    right: 85%;
    top: 41%;
  }
}
@media screen and (max-width: 767px) {
  .wrap_top_mv .mv_slide1 ul li .name {
    top: auto;
    bottom: -6px;
    left: 4px;
    right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap_top_mv .mv_slide1 ul li .name span {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  margin-left: 10px;
  padding: 5px 1px 0;
  line-height: 1;
  letter-spacing: 0.1em;
  font-size: 29px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .wrap_top_mv .mv_slide1 ul li .name span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 16px;
    margin: 0;
    padding: 2px 5px;
  }
}
.wrap_top_mv .mv_slide1 ul li .name span:nth-of-type(2) {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .wrap_top_mv .mv_slide1 ul li .name span:nth-of-type(2) {
    margin-top: 0;
  }
}

.meguru {
  overflow-x: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 214, 193, 0)), to(#fff));
  background: -webkit-linear-gradient(rgba(242, 214, 193, 0) 0%, #fff calc(100% - 20vw));
  background: linear-gradient(rgba(242, 214, 193, 0) 0%, #fff calc(100% - 20vw));
  padding-bottom: 20vw;
  margin-top: -72px;
}
@media screen and (max-width: 1360px) {
  .meguru {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 1080px) {
  .meguru {
    margin-top: 0;
  }
}
.meguru .wrap_top_lead {
  position: relative;
  width: 100%;
  padding-top: 213px;
}
@media screen and (max-width: 1080px) {
  .meguru .wrap_top_lead {
    padding-top: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead {
    padding: 32px 0 360px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: url("../img/top/sp_way_bg.png") no-repeat bottom center;
    background-size: 584px;
    margin-bottom: -40px;
  }
}
.meguru .wrap_top_lead .top_bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../img/top/way.svg") no-repeat right top;
  width: 1563px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .top_bg {
    display: none;
  }
}
.meguru .wrap_top_lead .icon1 {
  position: absolute;
  left: calc(50% + 230px);
  top: 142px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon1 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon2 {
  position: absolute;
  left: calc(50% + 100px);
  top: 197px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon2 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon3 {
  position: absolute;
  left: calc(50% + 294px);
  top: 282px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon3 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon4 {
  position: absolute;
  left: calc(50% + 528px);
  top: 380px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon4 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon5 {
  position: absolute;
  left: calc(50% + 255px);
  top: 512px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon5 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon6 {
  position: absolute;
  left: calc(50% - 114px);
  top: 545px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon6 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon7 {
  position: absolute;
  left: calc(50% - 500px);
  top: 568px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon7 {
    display: none;
  }
}
.meguru .wrap_top_lead .icon8 {
  max-width: 169px;
  position: absolute;
  left: calc(50% + 65px);
  top: 395px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon8 {
    max-width: 130px;
    left: calc(50% - 166px);
    top: auto;
    bottom: 185px;
  }
}
.meguru .wrap_top_lead .icon9 {
  max-width: 159px;
  position: absolute;
  left: calc(50% + 339px);
  top: 533px;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .icon9 {
    max-width: 122px;
    left: calc(50% + 32px);
    top: auto;
    bottom: 89px;
  }
}
.meguru .wrap_top_lead .top_lead {
  max-width: 1240px;
  margin: 0 auto 264px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .top_lead {
    margin-bottom: 0;
  }
}
.meguru .wrap_top_lead .top_lead .line_copy {
  margin-bottom: 40px;
}
.meguru .wrap_top_lead .top_lead .lead {
  max-width: 588px;
  font-weight: 500;
  line-height: 2.125;
}
@media screen and (max-width: 1080px) {
  .meguru .wrap_top_lead .top_lead .lead {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .meguru .wrap_top_lead .top_lead .lead {
    max-width: none;
  }
}
.meguru .area_txt {
  padding-top: 40px;
  max-width: 1160px;
  margin: 0 auto 88px;
  background: url("../img/top/kusa.png") no-repeat left top;
  background-size: 192px;
}
@media screen and (max-width: 767px) {
  .meguru .area_txt {
    background: none;
    padding: 0 20px;
  }
}
.meguru .area_txt .txt {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .meguru .area_txt .txt {
    text-align: left;
  }
}

.area {
  text-align: center;
  margin: 0 -40px;
}
@media screen and (max-width: 767px) {
  .area {
    margin: 0 -20px;
  }
}
@media screen and (max-width: 767px) {
  .area .pc {
    display: none;
  }
}
.area .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .area .sp {
    display: inline-block;
    max-width: 100%;
    width: 540px;
  }
}

.wrap_sansaku {
  background: #FFF;
}

.lead_kumo1 {
  position: absolute;
  top: 656px;
  left: calc(50vw - 670px);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .lead_kumo1 {
    display: none;
  }
}

.lead_kumo2 {
  position: absolute;
  top: 760px;
  right: calc(50vw - 750px);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .lead_kumo2 {
    display: none;
  }
}

.sansaku {
  background: #F2D6C1;
  background-size: 1490px;
  -webkit-mask-image: url("../img/top/top_mask.svg");
          mask-image: url("../img/top/top_mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: top center;
          mask-position: top center;
  position: relative;
  padding-top: 310px;
  padding-bottom: 20vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  margin-top: -20vw;
  padding-bottom: 20vw;
}
@media screen and (max-width: 1360px) {
  .sansaku {
    padding-bottom: 150px;
    -webkit-mask-size: 1360px;
            mask-size: 1360px;
    margin-top: -150px;
    padding-bottom: 216px;
  }
}
@media screen and (max-width: 767px) {
  .sansaku {
    padding: 160px 0 160px;
    position: relative;
  }
}
.sansaku::before {
  content: "";
  display: block;
  background: url("../img/top/sansaku_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 12px;
  left: calc(50% - 53px);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .sansaku::before {
    background-size: 100%;
    width: 64px;
    height: 18px;
    left: calc(50% - 32px);
  }
}
.sansaku .sansaku_kumo {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: absolute;
  top: -18px;
  left: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.5;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.sansaku .sansaku_kumo.move {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.sansaku .sansaku_kumo .hkumo1 {
  position: fixed;
  top: 30px;
  left: calc(50vw - 670px);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .sansaku .sansaku_kumo .hkumo1 {
    width: 50%;
    left: 15px;
    top: 43px;
  }
}
.sansaku .sansaku_kumo .hkumo1.fixed {
  position: absolute;
  top: 16px;
}
.sansaku .sansaku_kumo .hkumo2 {
  position: fixed;
  top: 132px;
  right: calc(50vw - 750px);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .sansaku .sansaku_kumo .hkumo2 {
    width: 43.2%;
    top: 71px;
    right: -8%;
  }
}
.sansaku .sansaku_kumo .hkumo2.fixed {
  position: absolute;
  top: 55px;
}
.sansaku .ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 32px;
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sansaku .ttl {
    font-size: 24px;
  }
}
.sansaku .ttl::before {
  content: "";
  display: block;
  background: url("../img/top/dokokara.svg") no-repeat top center;
  width: 160px;
  height: 42px;
  position: absolute;
  top: -42px;
  left: -110px;
}
@media screen and (max-width: 767px) {
  .sansaku .ttl::before {
    background-size: 100%;
    width: 120px;
    left: -48px;
    top: -32px;
  }
}
.sansaku .txt {
  text-align: center;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .sansaku .txt {
    text-align: left;
    padding: 0 20px;
  }
}
.sansaku .btn {
  margin-bottom: 56px;
}
.sansaku .sansaku_slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}
.sansaku .sansaku_slide ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-animation: loop 100s -50s linear infinite;
          animation: loop 100s -50s linear infinite;
  will-change: transform;
  margin-bottom: 16px;
}
.sansaku .sansaku_slide ul:nth-of-type(even) {
  -webkit-animation: loop2 100s linear infinite;
          animation: loop2 100s linear infinite;
}
.sansaku .sansaku_slide ul:nth-of-type(even) li {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .sansaku .sansaku_slide ul:nth-of-type(even) li {
    margin-top: 60px;
  }
}
.sansaku .sansaku_slide ul:nth-of-type(even) li:nth-of-type(even) {
  margin-top: 0;
}
.sansaku .sansaku_slide li {
  font-size: 0;
  width: 180px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .sansaku .sansaku_slide li {
    width: 120px;
    margin-right: 16px;
  }
}
.sansaku .sansaku_slide li:nth-of-type(even) {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .sansaku .sansaku_slide li:nth-of-type(even) {
    margin-top: 60px;
  }
}
.sansaku .sansaku_inner {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.sansaku .icon1 {
  position: absolute;
  top: 380px;
  left: calc(50% - 660px);
}
.sansaku .icon2 {
  position: absolute;
  top: 550px;
  left: calc(50% - 600px);
}
.sansaku .icon3 {
  position: absolute;
  top: 825px;
  right: calc(50% - 484px);
}

.top_monogatari {
  background: url("../img/top/monogatari_bg.jpg") no-repeat bottom center;
  background-size: 100%;
  -webkit-mask-image: url("../img/top/top_mask.svg");
          mask-image: url("../img/top/top_mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: top center;
          mask-position: top center;
  position: relative;
  margin-top: -20vw;
  padding-bottom: 24vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (max-width: 2000px) {
  .top_monogatari {
    background-size: 2000px;
  }
}
@media screen and (max-width: 1360px) {
  .top_monogatari {
    -webkit-mask-size: 1360px;
            mask-size: 1360px;
    margin-top: -150px;
    padding-bottom: 216px;
  }
}
@media screen and (max-width: 767px) {
  .top_monogatari {
    position: relative;
    margin-top: -140px;
    padding: 0 20px 160px;
    background-size: cover;
  }
}
.top_monogatari::before {
  content: "";
  display: block;
  background: url("../img/top/monogatari_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 12px;
  left: calc(50% - 53px);
}
.top_monogatari .monogatari_cnt {
  padding-top: 230px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top_monogatari .monogatari_cnt {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 120px;
  }
}
.top_monogatari .monogatari_cnt .ttl {
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .top_monogatari .monogatari_cnt .ttl {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .top_monogatari .monogatari_cnt .ttl img {
    width: 64px;
  }
}
.top_monogatari .monogatari_cnt .txt {
  margin-left: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .top_monogatari .monogatari_cnt .txt {
    display: block;
    padding-top: 60px;
    margin: 0 0 24px;
    width: calc(100% - 90px);
  }
}
.top_monogatari .monogatari_cnt .txt p {
  margin-left: 64px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFF;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top_monogatari .monogatari_cnt .txt p {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.04em;
    line-height: 2.4;
  }
}
.top_monogatari .monogatari_cnt .txt p:last-of-type {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .top_monogatari .monogatari_cnt .rekishi {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
  }
}
.top_monogatari .btn {
  margin-top: -33px;
  margin-bottom: 110px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .top_monogatari .btn {
    margin-top: 0;
    margin-bottom: 64px;
  }
}
.top_monogatari .monogtari_inner {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.top_monogatari .icon1 {
  position: absolute;
  top: 392px;
  right: calc(50% - 650px);
}

.top_spot {
  background: #F2D6C1 url("../img/top/spot_bg.png") no-repeat top center;
  background-size: 100%;
  -webkit-mask-image: url("../img/top/top_mask.svg");
          mask-image: url("../img/top/top_mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: top center;
          mask-position: top center;
  position: relative;
  margin-top: -20vw;
  padding-bottom: 140px;
}
@media screen and (max-width: 1360px) {
  .top_spot {
    -webkit-mask-size: 1360px;
            mask-size: 1360px;
    margin-top: -150px;
  }
}
@media screen and (max-width: 1339px) {
  .top_spot {
    background-size: 1339px;
  }
}
@media screen and (max-width: 767px) {
  .top_spot {
    margin-top: -140px;
  }
}
.top_spot::before {
  content: "";
  display: block;
  background: url("../img/top/monogatari_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 12px;
  left: calc(50% - 53px);
}
.top_spot .icon {
  position: absolute;
  top: 256px;
  left: calc(50% - 680px + 45px);
}
.top_spot .spot_cnt {
  padding-top: 272px;
}
@media screen and (max-width: 767px) {
  .top_spot .spot_cnt {
    padding-top: 160px;
  }
}
.top_spot .spot_cnt .spot_ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 32px;
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_spot .spot_cnt .spot_ttl {
    font-size: 24px;
  }
}
.top_spot .spot_cnt .spot_ttl::before {
  content: "";
  display: block;
  background: url("../img/top/spot_ttl_icon.svg") no-repeat top center;
  width: 226px;
  height: 54px;
  position: absolute;
  top: -52px;
  left: -103px;
}
@media screen and (max-width: 767px) {
  .top_spot .spot_cnt .spot_ttl::before {
    width: 160px;
    background-size: 100%;
    top: -36px;
    left: -80px;
  }
}
.top_spot .spot_cnt .spot_txt {
  text-align: center;
  font-weight: 500;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .top_spot .spot_cnt .spot_txt {
    padding: 0 20px;
    text-align: left;
    margin-bottom: 48px;
  }
}
.top_spot .spot_list {
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.top_spot .spot_list ul li {
  width: 312px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 16px 6px 0;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_spot .spot_list ul li::before {
  content: "";
  display: block;
  background: url("../img/common/spot_item_icon.svg") no-repeat;
  width: 312px;
  height: 51px;
  position: absolute;
  top: 0;
  left: calc(50% - 156px);
}
.top_spot .spot_list ul li .img {
  font-size: 0;
  -webkit-mask-image: url("../img/common/spot_item_mask.svg");
          mask-image: url("../img/common/spot_item_mask.svg");
  margin-bottom: 24px;
}
.top_spot .spot_list ul li .ttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1.5;
}
.top_spot .spot_list ul li .txt {
  font-size: 14px;
}
.top_spot .spot_list .slide_prev,
.top_spot .spot_list .slide_next {
  width: 32px;
  height: 32px;
  background: #D6500A;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  position: absolute;
  top: 122px;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}
.top_spot .spot_list .slide_prev:hover,
.top_spot .spot_list .slide_next:hover {
  background-color: #3B3B3B;
}
.top_spot .spot_list .slide_prev {
  left: calc(50% - 544px);
}
@media screen and (max-width: 1080px) {
  .top_spot .spot_list .slide_prev {
    left: calc(50% - 194px);
  }
}
@media screen and (max-width: 767px) {
  .top_spot .spot_list .slide_prev {
    left: calc(50% - 184px);
  }
}
.top_spot .spot_list .slide_next {
  right: calc(50% - 544px);
}
@media screen and (max-width: 1080px) {
  .top_spot .spot_list .slide_next {
    right: calc(50% - 194px);
  }
}
@media screen and (max-width: 767px) {
  .top_spot .spot_list .slide_next {
    right: calc(50% - 184px);
  }
}

.wrap_top_news {
  background: #FFF;
  position: relative;
  padding-top: 144px;
  padding-bottom: 78px;
  -webkit-mask-image: url("../img/common/fcntbg.svg");
          mask-image: url("../img/common/fcntbg.svg");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: top left;
          mask-position: top left;
  margin-top: -42px;
}
@media screen and (max-width: 900px) {
  .wrap_top_news {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wrap_top_news {
    -webkit-mask-size: 30px auto;
            mask-size: 30px auto;
    padding-top: 80px;
    padding-bottom: 48px;
  }
}
.wrap_top_news::after {
  content: "";
  display: block;
  background: url("../img/top/top_news_icon.png") no-repeat center;
  background-size: 100%;
  width: 65px;
  height: 50px;
  position: absolute;
  top: 150px;
  right: calc(50% - 580px);
}
@media screen and (max-width: 1180px) {
  .wrap_top_news::after {
    right: 20px;
    top: 72px;
  }
}
@media screen and (max-width: 767px) {
  .wrap_top_news::after {
    top: 50px;
    right: 20px;
    left: auto;
  }
}
.wrap_top_news .news_cnt {
  max-width: 792px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap_top_news .news_cnt {
    display: block;
  }
}
.wrap_top_news .news_cnt .top_news_ttl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .wrap_top_news .news_cnt .top_news_ttl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 20px;
    letter-spacing: 0.1em;
  }
}
.wrap_top_news .news_cnt .cnt {
  max-width: calc(100% - 180px);
}
@media screen and (max-width: 767px) {
  .wrap_top_news .news_cnt .cnt {
    width: 100%;
    max-width: 100%;
  }
}
.wrap_top_news .news_cnt .top_news_list {
  margin-bottom: 48px;
}
.wrap_top_news .news_cnt .top_news_list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .wrap_top_news .news_cnt .top_news_list li {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.wrap_top_news .news_cnt .top_news_list li .date {
  margin-right: 6px;
  font-weight: 500;
}
.wrap_top_news .news_cnt .top_news_list li .cat {
  min-width: 120px;
  height: 22px;
  border-radius: 11px;
  background: #F2F2F2;
  margin-right: 8px;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.wrap_top_news .news_cnt .top_news_list li .ttl {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .wrap_top_news .news_cnt .top_news_list li .ttl {
    width: 100%;
  }
}
.wrap_top_news .news_cnt .top_news_list li .ttl a:hover {
  color: #D6500A;
}
.wrap_top_news .news_cnt .link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.wrap_top_news .news_cnt .link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
}
.wrap_top_news .news_cnt .link a:hover::after {
  background-color: #3B3B3B;
}
.wrap_top_news .news_cnt .link a::after {
  content: "";
  background: #D6500A url("../img/common/btn_arrow.svg") no-repeat center;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer {
  background: #3B3B3B url("../img/common/fbg.png") repeat-x center bottom;
  background-size: 53px;
  padding-top: 112px;
  padding-bottom: 68px;
  position: relative;
  z-index: 100;
}
.footer .fcnt {
  max-width: 1044px;
  margin: 0 auto 48px;
}
.footer .fcnt .flogo {
  text-align: center;
  font-size: 0;
  margin-bottom: 24px;
}
.footer .fcnt .fnavi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fnavi {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 0 20px;
  }
}
.footer .fcnt .fnavi li {
  margin: 0 16px;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fnavi li {
    width: 48%;
    margin: 0;
  }
}
.footer .fcnt .fnavi li a {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  height: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fnavi li a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
.footer .fcnt .fnavi li a:hover {
  color: #D6500A;
}
.footer .fcnt .fnavi li.ig, .footer .fcnt .fnavi li.fb {
  position: absolute;
  top: 0;
  margin: 0;
}
@media screen and (max-width: 840px) {
  .footer .fcnt .fnavi li.ig, .footer .fcnt .fnavi li.fb {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fnavi li.ig, .footer .fcnt .fnavi li.fb {
    width: auto;
    margin-top: 24px;
  }
}
.footer .fcnt .fnavi li.ig a, .footer .fcnt .fnavi li.fb a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.footer .fcnt .fnavi li.ig a:hover, .footer .fcnt .fnavi li.fb a:hover {
  background: #D6500A;
}
.footer .fcnt .fnavi li.ig {
  margin-right: 8px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fnavi li.ig {
    margin-left: auto;
    margin-right: 8px;
  }
}
.footer .fcnt .fnavi li.fb {
  right: 0;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fnavi li.fb {
    margin-right: auto;
    margin-left: 8px;
  }
}
.footer .fcnt .fbnr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fbnr {
    padding: 0 40px;
    display: block;
  }
}
.footer .fcnt .fbnr li {
  font-size: 0;
}
@media screen and (max-width: 767px) {
  .footer .fcnt .fbnr li {
    margin: 0 0 8px;
    text-align: center;
  }
}
.footer .fcnt .fbnr li a:hover {
  opacity: 0.6;
}
.footer .flink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .footer .flink {
    display: block;
  }
}
.footer .flink li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .footer .flink li {
    width: 100%;
  }
}
.footer .flink li.tenant a {
  background: url("../img/common/tenant_bg.jpg") no-repeat;
  background-size: cover;
}
.footer .flink li.ptjob a {
  background: url("../img/common/ptjob_bg.jpg") no-repeat;
  background-size: cover;
}
.footer .flink li a {
  height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer .flink li a {
    height: 120px;
  }
}
.footer .flink li a:hover::before {
  height: 60px;
}
.footer .flink li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(34, 20, 14, 0.8);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer .flink li a span {
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  font-weight: 600;
  color: #FFF;
  position: relative;
  z-index: 100;
}
.footer .fcnt2 {
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer .fcnt2 {
    display: block;
    padding: 0 20px;
  }
}
.footer .fcnt2 p, .footer .fcnt2 a {
  color: #CBCBCB;
  font-size: 12px;
}
.footer .fcnt2 .cntl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer .fcnt2 .cntl {
    display: block;
    margin-bottom: 32px;
  }
}
.footer .fcnt2 .cntl p {
  margin-right: 12px;
}
.footer .fcnt2 .cntl p a:hover {
  opacity: 0.6;
}
.footer .fcnt2 .cntr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer .fcnt2 .cntr {
    display: block;
  }
}
.footer .fcnt2 .cntr ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .footer .fcnt2 .cntr ul {
    margin: 0 0 24px;
    display: block;
  }
}
.footer .fcnt2 .cntr ul li {
  font-size: 12px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .footer .fcnt2 .cntr ul li {
    margin: 0;
  }
}
.footer .fcnt2 .cntr ul li:first-of-type {
  margin-left: 0;
}
.footer .fcnt2 .cntr ul li a:hover {
  opacity: 0.6;
}

.pagetop {
  position: fixed;
  right: 8px;
  bottom: 100px;
  z-index: 1000;
}

/*/ common //////////////////////////////////////*/
.page_copy {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 600;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .page_copy {
    font-size: 17px;
  }
}

.page_lead {
  text-align: center;
  font-weight: 500;
  margin-bottom: 48px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page_lead {
    text-align: left;
  }
}

/*/ spot //////////////////////////////////////*/
.page_spot {
  margin-bottom: 160px;
  overflow-x: hidden;
}
.page_spot .spot_cat_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page_spot .spot_cat_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .page_spot .spot_cat_list li {
    width: 48%;
  }
}
.page_spot .spot_cat_list li.current a::before {
  opacity: 1;
}
.page_spot .spot_cat_list li.current a img {
  opacity: 0;
}
.page_spot .spot_cat_list li a {
  font-size: 0;
  display: block;
  position: relative;
}
.page_spot .spot_cat_list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_spot .spot_cat_list li a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .page_spot .spot_cat_list li a:hover::before {
    opacity: 1;
  }
  .page_spot .spot_cat_list li a:hover img {
    opacity: 0;
  }
}
.page_spot .spot_cat_list li:first-of-type a::before {
  background: url("../img/spot/all_on.png") no-repeat;
  background-size: 100%;
}
.page_spot .spot_cat_list li:nth-of-type(2) a::before {
  background: url("../img/spot/kau_on.png") no-repeat;
  background-size: 100%;
}
.page_spot .spot_cat_list li:nth-of-type(3) a::before {
  background: url("../img/spot/taberu_on.png") no-repeat;
  background-size: 100%;
}
.page_spot .spot_cat_list li:nth-of-type(4) a::before {
  background: url("../img/spot/miru_on.png") no-repeat;
  background-size: 100%;
}
.page_spot .spot_cat_list li:nth-of-type(5) a::before {
  background: url("../img/spot/taiken_on.png") no-repeat;
  background-size: 100%;
}
.page_spot .spot_search_box {
  max-width: 996px;
  padding: 16px 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #CBBA82;
  border-radius: 8px;
  margin: 0 auto 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 1036px) {
  .page_spot .spot_search_box {
    margin: 0 20px 120px;
  }
}
@media screen and (max-width: 767px) {
  .page_spot .spot_search_box {
    display: block;
    padding: 16px 24px;
    margin-bottom: 64px;
  }
}
.page_spot .spot_search_box::before {
  content: "";
  display: block;
  background: url("../img/spot/select_icon1.png") no-repeat;
  background-size: 100%;
  width: 156px;
  height: 56px;
  position: absolute;
  bottom: -23px;
  left: -102px;
}
.page_spot .spot_search_box::after {
  content: "";
  display: block;
  background: url("../img/spot/select_icon2.png") no-repeat;
  background-size: 100%;
  width: 33px;
  height: 43px;
  position: absolute;
  bottom: -28px;
  right: -53px;
}
@media screen and (max-width: 767px) {
  .page_spot .spot_search_box::after {
    right: -30px;
  }
}
.page_spot .spot_search_box .spot_select {
  margin-right: 12px;
  max-width: 454px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_spot .spot_search_box .spot_select {
    max-width: none;
    margin: 0 0 12px;
  }
}
.page_spot .spot_search_box .spot_select select {
  width: 100%;
  height: 56px;
  background: #FFF url("../img/common/select_arrow.svg") no-repeat center right 40px;
  border-radius: 50px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_spot .spot_search_box .spot_select select {
    background-position: center right 20px;
    height: 48px;
    padding: 0 30px 0 20px;
    border-radius: 24px;
  }
}
.page_spot .spot_search_box .spot_search {
  max-width: 454px;
  width: 100%;
  height: 56px;
  background: #FFF;
  border-radius: 50px;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_spot .spot_search_box .spot_search {
    max-width: none;
    height: 48px;
    padding: 0 20px;
    border-radius: 24px;
  }
}
.page_spot .spot_search_box .spot_search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.page_spot .spot_search_box .spot_search input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  width: calc(100% - 40px);
}
.page_spot .spot_search_box .spot_search input::-webkit-input-placeholder {
  color: #3B3B3B;
}
.page_spot .spot_search_box .spot_search input::-moz-placeholder {
  color: #3B3B3B;
}
.page_spot .spot_search_box .spot_search input:-ms-input-placeholder {
  color: #3B3B3B;
}
.page_spot .spot_search_box .spot_search input::-ms-input-placeholder {
  color: #3B3B3B;
}
.page_spot .spot_search_box .spot_search input::placeholder {
  color: #3B3B3B;
}
.page_spot .spot_search_box .spot_search button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
}
.page_spot .cat_ttl {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .page_spot .cat_ttl {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.page_spot .spot_list {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .page_spot .spot_list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 640px) {
  .page_spot .spot_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.page_spot .spot_list .spot_item {
  width: 368px;
  margin-right: 48px;
  margin-bottom: 80px;
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list .spot_item {
    width: 48%;
    margin-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .page_spot .spot_list .spot_item {
    max-width: 368px;
    width: 100%;
  }
}
.page_spot .spot_list .spot_item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1254px) {
  .page_spot .spot_list .spot_item:nth-of-type(3n) {
    margin-right: 48px;
  }
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list .spot_item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1254px) {
  .page_spot .spot_list .spot_item:nth-of-type(even) {
    margin-right: 0;
  }
}
.page_spot .spot_list .spot_item .spot_cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.page_spot .spot_list .spot_item .spot_cat li {
  margin-right: 6px;
}
.page_spot .spot_list .spot_item .spot_cat li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FFF;
  border-radius: 4px;
  height: 25px;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  color: #D6500A;
  font-weight: 500;
}
.page_spot .spot_list .spot_item .spot_cat li a:hover {
  background: #D6500A;
  color: #FFF;
}
.page_spot .spot_list .spot_item .ttl {
  font-size: 22px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 6px;
  line-height: 1.6;
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list .spot_item .ttl {
    font-size: 18px;
  }
}
.page_spot .spot_list .spot_item .txt {
  margin-bottom: 16px;
}
.page_spot .spot_list .spot_item .img {
  font-size: 0;
  position: relative;
  margin-bottom: 16px;
}
.page_spot .spot_list .spot_item .img span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 16px;
  right: 0;
  border-radius: 100px 0 0 100px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  height: 28px;
  padding: 0 8px 1px 16px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #3B3B3B;
}
.page_spot .spot_list .spot_item .img img {
  border-radius: 8px;
}
.page_spot .spot_list .spot_item .spot_info {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  background: -webkit-gradient(linear, right top, left top, from(#f8f7e7), to(#ffefe6));
  background: -webkit-linear-gradient(right, #f8f7e7 0%, #ffefe6 100%);
  background: linear-gradient(to left, #f8f7e7 0%, #ffefe6 100%);
}
.page_spot .spot_list .spot_item .spot_info li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list .spot_item .spot_info li {
    display: block;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list .spot_item .spot_info li:last-of-type {
    margin-bottom: 0;
  }
}
.page_spot .spot_list .spot_item .spot_info li .info_ttl {
  width: 90px;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 840px) {
  .page_spot .spot_list .spot_item .spot_info li .info_ttl {
    width: 100%;
    margin: 0;
  }
}
.page_spot .spot_list .spot_item .spot_info li .info_txt {
  font-size: 14px;
}
.page_spot .spot_list .spot_item .spot_links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_spot .spot_list .spot_item .spot_links li {
  margin: 0 6px;
}
.page_spot .spot_list .spot_item .spot_links li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  background: #FFF;
  border-radius: 50%;
}
.page_spot .spot_list .spot_item .spot_links li a:hover {
  background: #D6500A;
}

/*/ tenant //////////////////////////////////////*/
.page_tenant {
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .page_tenant {
    margin-bottom: 80px;
  }
}
.page_tenant .line_copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .page_tenant .line_copy {
    margin-bottom: 24px;
  }
}
.page_tenant .tenant_cat_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_cat_list {
    margin-bottom: 32px;
  }
}
.page_tenant .tenant_cat_list li {
  margin: 0 10px;
}
.page_tenant .tenant_cat_list li a {
  font-size: 0;
  display: block;
  position: relative;
}
.page_tenant .tenant_cat_list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_tenant .tenant_cat_list li a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}
.page_tenant .tenant_cat_list li a:hover::before {
  opacity: 1;
}
.page_tenant .tenant_cat_list li a:hover img {
  opacity: 0;
}
.page_tenant .tenant_cat_list li:first-of-type a::before {
  background: url("../img/tenant/yumekoji_on.png") no-repeat;
  background-size: 100%;
}
.page_tenant .tenant_cat_list li:nth-of-type(2) a::before {
  background: url("../img/tenant/hanakoji_on.png") no-repeat;
  background-size: 100%;
}
.page_tenant .cat_ttl {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_tenant .cat_ttl {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.page_tenant .tenant_list {
  margin-bottom: 80px;
  padding: 0 20px;
}
.page_tenant .tenant_list .tenant_item {
  max-width: 1200px;
  margin: 0 auto 40px;
  background: -webkit-gradient(linear, right top, left top, from(#f8f7e7), to(#ffefe6));
  background: -webkit-linear-gradient(right, #f8f7e7 0%, #ffefe6 100%);
  background: linear-gradient(to left, #f8f7e7 0%, #ffefe6 100%);
  border-radius: 8px;
  padding: 48px 64px 120px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item {
    padding: 32px 24px;
  }
}
.page_tenant .tenant_list .tenant_item::before {
  content: "";
  display: block;
  background: #EFA88E;
  height: 54px;
  width: 3px;
  position: absolute;
  top: 40px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item::before {
    top: 24px;
    height: 40px;
  }
}
.page_tenant .tenant_list .tenant_item .tenant_ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: bold;
  color: #D6500A;
  line-height: 1.2;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item .tenant_ttl {
    font-size: 20px;
  }
}
.page_tenant .tenant_list .tenant_item .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item .wrap {
    display: block;
  }
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img {
  width: 418px;
  margin-right: 40px;
}
@media screen and (max-width: 1180px) {
  .page_tenant .tenant_list .tenant_item .wrap .tenant_img {
    width: 45%;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item .wrap .tenant_img {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-main {
  margin-bottom: 16px;
  font-size: 0;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-main li img {
  border-radius: 8px;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-thumbs .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-thumbs .swiper-wrapper li {
  width: calc(25% - 9px);
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-thumbs .swiper-wrapper li {
    width: calc(25% - 3px);
    margin-right: 4px;
  }
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-thumbs .swiper-wrapper li:nth-of-type(4n) {
  margin-right: 0;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_img .js-swiper-thumbs .swiper-wrapper li img {
  border-radius: 8px;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_cnt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .page_tenant .tenant_list .tenant_item .wrap .tenant_cnt {
    width: 100%;
  }
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_cnt .tenant_info li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
@media screen and (max-width: 540px) {
  .page_tenant .tenant_list .tenant_item .wrap .tenant_cnt .tenant_info li {
    display: block;
  }
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_cnt .tenant_info li .ttl {
  font-weight: 500;
  width: 88px;
  margin-right: 16px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_cnt .tenant_info li .cnt {
  word-break: break-all;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_cnt .tenant_info li .cnt a {
  text-decoration: underline;
  color: #D6500A;
}
.page_tenant .tenant_list .tenant_item .wrap .tenant_cnt .tenant_info li .cnt a:hover {
  text-decoration: none;
  color: #3B3B3B;
}

.noentry {
  text-align: center;
  font-size: 18px;
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .noentry {
    margin: 48px 0;
    font-size: 16px;
  }
}

/*/ ptjob //////////////////////////////////////*/
.page_ptjob {
  margin-bottom: 108px;
}
@media screen and (max-width: 767px) {
  .page_ptjob {
    margin-bottom: 80px;
  }
}
.page_ptjob .ptjob_cat_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 96px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_cat_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.page_ptjob .ptjob_cat_list li {
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_cat_list li {
    width: 48%;
    margin: 0;
  }
}
.page_ptjob .ptjob_cat_list li a {
  font-size: 0;
  display: block;
  position: relative;
}
.page_ptjob .ptjob_cat_list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_ptjob .ptjob_cat_list li a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 10;
}
.page_ptjob .ptjob_cat_list li a:hover::before {
  opacity: 1;
}
.page_ptjob .ptjob_cat_list li a:hover img {
  opacity: 0;
}
.page_ptjob .ptjob_cat_list li:first-of-type a::before {
  background: url("../img/ptjob/yumekoji_on.png") no-repeat;
  background-size: 100%;
}
.page_ptjob .ptjob_cat_list li:nth-of-type(2) a::before {
  background: url("../img/ptjob/hanakoji_on.png") no-repeat;
  background-size: 100%;
}
.page_ptjob .ptjob_cat_list li:nth-of-type(3) a::before {
  background: url("../img/ptjob/kameyaza_on.png") no-repeat;
  background-size: 100%;
}
.page_ptjob .cat_ttl {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_ptjob .cat_ttl {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.page_ptjob .ptjob_list {
  margin-bottom: 80px;
  padding: 0 20px;
}
.page_ptjob .ptjob_list .ptjob_item {
  max-width: 1200px;
  margin: 0 auto 40px;
  background: -webkit-gradient(linear, right top, left top, from(#f8f7e7), to(#ffefe6));
  background: -webkit-linear-gradient(right, #f8f7e7 0%, #ffefe6 100%);
  background: linear-gradient(to left, #f8f7e7 0%, #ffefe6 100%);
  border-radius: 8px;
  padding: 32px 64px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1180px) {
  .page_ptjob .ptjob_list .ptjob_item {
    padding: 32px 40px;
  }
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item {
    padding: 32px 24px;
  }
}
.page_ptjob .ptjob_list .ptjob_item::before {
  content: "";
  display: block;
  background: #EFA88E;
  height: 54px;
  width: 3px;
  position: absolute;
  top: 40px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item::before {
    top: 24px;
    height: 40px;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap {
    display: block;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap > .cnt {
  width: 600px;
}
@media screen and (max-width: 1180px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap > .cnt {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap > .cnt {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: bold;
  color: #D6500A;
  line-height: 1.2;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_ttl {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_info {
  padding-left: 56px;
}
@media screen and (max-width: 1180px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_info {
    padding-left: 0;
    width: 100%;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_info li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_info li {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 540px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_info li {
    display: block;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap > .cnt .ptjob_info li .ttl {
  font-weight: 500;
  width: 88px;
  margin-right: 16px;
}
.page_ptjob .ptjob_list .ptjob_item .wrap .img {
  width: 422px;
  font-size: 0;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap .img {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .page_ptjob .ptjob_list .ptjob_item .wrap .img {
    width: 100%;
  }
}
.page_ptjob .ptjob_list .ptjob_item .wrap .img span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 16px;
  right: 0;
  border-radius: 100px 0 0 100px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  height: 28px;
  padding: 0 16px 1px 16px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #3B3B3B;
}

/*/ access //////////////////////////////////////*/
.page_access {
  overflow-x: hidden;
}
.page_access .access_time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 64px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page_access .access_time {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: -16px;
  }
}
.page_access .access_time li {
  margin-right: 80px;
}
@media screen and (max-width: 767px) {
  .page_access .access_time li {
    width: 48%;
    text-align: center;
    margin: 0 0 14px;
  }
}
@media screen and (max-width: 767px) {
  .page_access .access_time li:first-of-type {
    margin-right: 8%;
    width: 44%;
  }
}
.page_access .access_time li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .page_access .access_time li:last-of-type {
    width: 40%;
  }
}
.page_access .access_cnt {
  text-align: center;
  margin: 0 -40px 80px;
}
@media screen and (max-width: 767px) {
  .page_access .access_cnt {
    margin: 0 -20px 48px;
  }
}
@media screen and (max-width: 767px) {
  .page_access .access_cnt .pc {
    display: none;
  }
}
.page_access .access_cnt .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .page_access .access_cnt .sp {
    width: 640px;
    display: inline-block;
  }
}
.page_access .access_txt {
  background: url("../img/access/access_txt_bg.png") no-repeat center;
  background-size: 1335px;
  margin-bottom: 160px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page_access .access_txt {
    margin-bottom: 80px;
  }
}
.page_access .access_txt .line_copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.page_access .access_txt .page_lead {
  padding: 0;
}
.page_access .access_footer {
  background: url("../img/access/access_footer.jpg") no-repeat bottom center;
  height: 630px;
  background-size: cover;
  position: relative;
  -webkit-mask-image: url("../img/common/fcntbg.svg");
          mask-image: url("../img/common/fcntbg.svg");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: top left;
          mask-position: top left;
  padding: 190px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_access .access_footer {
    padding: 80px 20px 60px;
    height: auto;
    -webkit-mask-size: 30px auto;
            mask-size: 30px auto;
  }
}
.page_access .access_footer::before {
  content: "";
  display: block;
  width: 460px;
  height: 400px;
  background: -webkit-gradient(linear, left top, left bottom, from(#366ed5), to(rgba(92, 171, 244, 0)));
  background: -webkit-linear-gradient(#366ed5 0%, rgba(92, 171, 244, 0) 100%);
  background: linear-gradient(#366ed5 0%, rgba(92, 171, 244, 0) 100%);
  position: absolute;
  top: 0;
  left: calc(50% - 230px);
}
@media screen and (max-width: 767px) {
  .page_access .access_footer::before {
    width: 300px;
    left: calc(50% - 150px);
  }
}
.page_access .access_footer .ttl {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 30px;
  color: #FFF;
  position: relative;
  z-index: 100;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_access .access_footer .ttl {
    font-size: 20px;
  }
}
.page_access .access_footer .access_footer_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-align-self: 100px;
      -ms-flex-item-align: 100px;
          align-self: 100px;
}
@media screen and (max-width: 767px) {
  .page_access .access_footer .access_footer_list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .page_access .access_footer .access_footer_list li {
    max-width: 240px;
    margin: 0 auto 8px;
  }
}
.page_access .access_footer .access_footer_list li:first-of-type a {
  background: url("../img/access/yumekoji_on.png") no-repeat;
  background-size: 100%;
}
.page_access .access_footer .access_footer_list li:nth-of-type(2) a {
  background: url("../img/access/hanakoji_on.png") no-repeat;
  background-size: 100%;
}
.page_access .access_footer .access_footer_list li:nth-of-type(3) a {
  background: url("../img/access/kameyaza_on.png") no-repeat;
  background-size: 100%;
}
.page_access .access_footer .access_footer_list li a {
  display: block;
}
.page_access .access_footer .access_footer_list li a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page_access .access_footer .access_footer_list li a:hover img {
  opacity: 0;
}

/*/ sansaku //////////////////////////////////////*/
@media screen and (max-width: 767px) {
  .page_sansaku {
    overflow-x: hidden;
  }
}
.page_sansaku .sansaku_header {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 214, 193, 0)), to(#fff));
  background: -webkit-linear-gradient(rgba(242, 214, 193, 0) 0%, #fff 100%);
  background: linear-gradient(rgba(242, 214, 193, 0) 0%, #fff 100%);
  padding: 0 20px;
}
.page_sansaku .sansaku_header .sansaku_cat_list {
  margin-bottom: 40px;
  padding: 0;
}
.page_sansaku .sansaku_header .page_lead {
  padding: 0;
}
.page_sansaku .sansaku_map {
  background: url("../img/sansaku/map_bg.png") no-repeat bottom calc(20vw + 80px) center;
  background-size: 1420px;
  padding-bottom: 230px;
  padding-bottom: 80px;
  text-align: center;
  font-size: 0;
  position: relative;
  overflow-x: hidden;
  margin: 0 -20px;
}
@media screen and (max-width: 767px) {
  .page_sansaku .sansaku_map {
    padding-bottom: 30vw;
    margin: 0 -24vw;
  }
}
@media screen and (max-width: 1080px) {
  .page_sansaku .sansaku_map::before {
    content: "";
    display: block;
    background: url("../img/sansaku/sansaku_head_icon1.png") no-repeat top center;
    background-size: 100%;
    width: 20%;
    height: 80px;
    position: absolute;
    top: 0;
    right: -2%;
  }
}
@media screen and (max-width: 1080px) {
  .page_sansaku .sansaku_map::after {
    content: "";
    display: block;
    background: url("../img/sansaku/sansaku_head_icon2.png") no-repeat bottom center;
    background-size: 100%;
    width: 18%;
    height: 80px;
    position: absolute;
    bottom: 31vw;
    left: -3%;
  }
}
.page_sansaku .sansaku_map .map_inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}
.page_sansaku .sansaku_map .map_inner a {
  opacity: 0.6;
}
.page_sansaku .sansaku_map .spot1 {
  display: block;
  position: absolute;
  top: 43.5%;
  left: 24.5%;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .sansaku_map .spot1 {
    width: 2.5%;
    height: 6%;
  }
}
.page_sansaku .sansaku_map .spot2 {
  display: block;
  position: absolute;
  top: 89.9%;
  left: 39.2%;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .sansaku_map .spot2 {
    width: 2.5%;
    height: 6%;
  }
}
.page_sansaku .sansaku_map .spot3 {
  display: block;
  position: absolute;
  top: 57.5%;
  left: 52.8%;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .sansaku_map .spot3 {
    width: 2.5%;
    height: 6%;
  }
}
.page_sansaku .sansaku_map .spot4 {
  display: block;
  position: absolute;
  top: 25.5%;
  left: 53.4%;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .sansaku_map .spot4 {
    width: 2.5%;
    height: 6%;
  }
}
.page_sansaku .sansaku_map .spot5 {
  display: block;
  position: absolute;
  top: 17.9%;
  left: 35.5%;
  width: 27px;
  height: 32px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .sansaku_map .spot5 {
    width: 2.5%;
    height: 6%;
  }
}
.page_sansaku .sansaku_map .spot6 {
  display: block;
  position: absolute;
  top: 21.2%;
  left: 33%;
  width: 26px;
  height: 32px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .sansaku_map .spot6 {
    width: 2.5%;
    height: 6%;
  }
}
.page_sansaku .sansaku_cat_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .page_sansaku .sansaku_cat_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .page_sansaku .sansaku_cat_list li {
    width: 48%;
    text-align: center;
  }
}
.page_sansaku .sansaku_cat_list li:first-of-type a::before {
  background: url("../img/sansaku/sansaku_navi01_on.png") no-repeat;
  background-size: 100%;
}
.page_sansaku .sansaku_cat_list li a {
  display: block;
  font-size: 0;
  position: relative;
}
.page_sansaku .sansaku_cat_list li a::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_sansaku .sansaku_cat_list li a:hover::before {
  opacity: 1;
}
.page_sansaku .sansaku_cat_list li a:hover img {
  opacity: 0;
}
.page_sansaku .sansaku_cat_list li a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_sansaku .sansaku_cat_list li.soon a {
  pointer-events: none;
}
.page_sansaku .wrap_plan {
  background: url("../img/sansaku/plan_header_bg.svg") no-repeat top center;
  background-size: 100%;
  position: relative;
  padding-bottom: 160px;
  position: relative;
  padding-top: 240px;
  overflow-x: hidden;
}
@media screen and (max-width: 1360px) {
  .page_sansaku .wrap_plan {
    background-size: 1360px;
  }
}
@media screen and (max-width: 767px) {
  .page_sansaku .wrap_plan {
    padding-top: 88px;
    padding-bottom: 80px;
  }
}
.page_sansaku .wrap_plan::before {
  content: "";
  display: block;
  background: url("../img/top/sansaku_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 12px;
  left: calc(50% - 53px);
}
@media screen and (max-width: 767px) {
  .page_sansaku .wrap_plan::before {
    background-size: 100%;
    width: 74px;
    top: 15px;
    left: calc(50% - 37px);
  }
}
.page_sansaku .wrap_plan::after {
  content: "";
  display: block;
  background: url("../img/sansaku/plan_icon.svg") no-repeat;
  width: 147px;
  height: 62px;
  position: absolute;
  top: 296px;
  right: calc(50% - 530px);
}
.page_sansaku .wrap_plan .plan_header {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  padding: 0 20px;
  width: auto;
}
@media screen and (max-width: 980px) {
  .page_sansaku .wrap_plan .plan_header {
    margin-bottom: 48px;
  }
}
.page_sansaku .wrap_plan .plan_header .plan1 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%) translateY(-20%);
          transform: translateX(-100%) translateY(-20%);
}
.page_sansaku .wrap_plan .plan_header .plan_ttl {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  color: #D6500A;
  font-size: 40px;
  text-align: center;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .page_sansaku .wrap_plan .plan_header .plan_ttl {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.page_sansaku .wrap_plan .plan_header .plan_ttl span {
  font-size: 0;
  position: absolute;
  top: 50%;
  left: -85px;
  -webkit-transform: translateX(-100%) translateY(-60%);
          transform: translateX(-100%) translateY(-60%);
}
@media screen and (max-width: 1080px) {
  .page_sansaku .wrap_plan .plan_header .plan_ttl span {
    position: static;
    display: block;
    margin: 0 auto 24px;
    -webkit-transform: none;
            transform: none;
    width: 110px;
  }
}
@media screen and (max-width: 767px) {
  .page_sansaku .wrap_plan .plan_header .plan_ttl span {
    width: 72px;
    margin-bottom: 8px;
  }
}
.page_sansaku .wrap_plan .plan_header .lead {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_sansaku .wrap_plan .plan_header .lead {
    font-size: 15px;
    text-align: left;
  }
}
.page_sansaku .wrap_plan .plan_header .btn a {
  font-size: 16px;
  padding: 0 24px;
}
.page_sansaku .wrap_plan .plan_header .btn a::after {
  background: url("../img/common/external_w.svg");
  width: 14px;
  height: 14px;
}
.page_sansaku .wrap_plan .plan_cnt {
  background: url("../img/sansaku/sansaku_plan_top.png") no-repeat left calc(50vw - 332px) top, url("../img/sansaku/sansaku_plan_btm.png") no-repeat bottom center;
  background-size: 1116px, 1550px;
  margin-top: -100px;
}
@media screen and (max-width: 980px) {
  .page_sansaku .wrap_plan .plan_cnt {
    background: none;
  }
}
.page_sansaku .plan_list {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 121px;
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 48px;
  }
}
.page_sansaku .plan_list li {
  width: 420px;
  position: relative;
  margin-bottom: 72px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li {
    width: 38%;
  }
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li {
    max-width: 420px;
    width: 100%;
    margin-bottom: 0;
    margin-top: -60px !important;
  }
}
.page_sansaku .plan_list li .time {
  position: absolute;
  z-index: 100;
}
.page_sansaku .plan_list li::before, .page_sansaku .plan_list li::after {
  pointer-events: none;
}
.page_sansaku .plan_list li:nth-of-type(odd) .time {
  right: -245px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(odd) .time {
    right: -55%;
  }
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li:nth-of-type(odd) .time {
    top: auto !important;
    left: auto !important;
    right: 26%;
    bottom: 72px;
  }
}
.page_sansaku .plan_list li:nth-of-type(odd) .img::before {
  content: "";
  display: block;
  background: url("../img/sansaku/plan_cnt_icon1.svg") no-repeat;
  width: 110px;
  height: 35px;
  position: absolute;
  left: -16px;
  bottom: 102px;
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li:nth-of-type(odd) .img::before {
    display: none !important;
  }
}
.page_sansaku .plan_list li:nth-of-type(odd)::after {
  content: "";
  display: block;
  background: url("../img/sansaku/road1.png") no-repeat;
  background-size: 100%;
  width: 638px;
  height: 350px;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(odd)::after {
    width: 150%;
  }
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li:nth-of-type(odd)::after {
    background: url("../img/sansaku/sp_road1.png") no-repeat;
    background-size: 100%;
    width: 206px;
    height: 202px;
    position: static;
    margin-left: 40px;
    margin-top: -20px;
  }
}
.page_sansaku .plan_list li:nth-of-type(even)::after {
  content: "";
  display: block;
  background: url("../img/sansaku/road2.png") no-repeat;
  background-size: 100%;
  width: 788px;
  height: 320px;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(even)::after {
    width: 170%;
  }
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li:nth-of-type(even)::after {
    background: url("../img/sansaku/sp_road2.png") no-repeat;
    background-size: 100%;
    width: 207px;
    height: 202px;
    position: static;
    margin-right: 40px;
    margin-left: auto;
    margin-top: -20px;
  }
}
.page_sansaku .plan_list li:nth-of-type(even) .time {
  left: -245px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(even) .time {
    left: -55%;
  }
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li:nth-of-type(even) .time {
    top: auto !important;
    right: auto !important;
    left: 24%;
    bottom: 72px;
  }
}
.page_sansaku .plan_list li:nth-of-type(even) .img::before {
  content: "";
  display: block;
  background: url("../img/sansaku/plan_cnt_icon2.svg") no-repeat;
  width: 110px;
  height: 35px;
  position: absolute;
  right: -16px;
  bottom: 102px;
}
@media screen and (max-width: 980px) {
  .page_sansaku .plan_list li:first-of-type {
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .page_sansaku .plan_list li:first-of-type::after {
    margin-top: -50px;
  }
}
.page_sansaku .plan_list li:first-of-type .time {
  top: 230px;
}
.page_sansaku .plan_list li:first-of-type::after {
  top: 142px;
  left: 273px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:first-of-type::after {
    top: 160px;
  }
}
.page_sansaku .plan_list li:nth-of-type(2) {
  margin-top: 335px;
}
.page_sansaku .plan_list li:nth-of-type(2) .time {
  top: 166px;
}
.page_sansaku .plan_list li:nth-of-type(2)::after {
  top: 124px;
  right: 352px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(2)::after {
    right: 24vw;
    top: 5vw;
  }
}
.page_sansaku .plan_list li:nth-of-type(3) {
  margin-top: -487px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(3) {
    margin-top: -380px;
  }
}
.page_sansaku .plan_list li:nth-of-type(3) .time {
  top: 312px;
}
.page_sansaku .plan_list li:nth-of-type(3)::after {
  top: 220px;
  left: 273px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(3)::after {
    top: 20vw;
    left: 22vw;
  }
}
.page_sansaku .plan_list li:nth-of-type(4) {
  margin-top: 0;
}
.page_sansaku .plan_list li:nth-of-type(4) .time {
  top: 250px;
}
.page_sansaku .plan_list li:nth-of-type(4)::after {
  top: 212px;
  right: 352px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(4)::after {
    right: 24vw;
    top: 24vw;
  }
}
.page_sansaku .plan_list li:nth-of-type(5) {
  margin-top: -414px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(5) {
    margin-top: -32vw;
  }
}
.page_sansaku .plan_list li:nth-of-type(5) .time {
  top: 280px;
}
.page_sansaku .plan_list li:nth-of-type(5)::after {
  top: 188px;
  left: 273px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(5)::after {
    top: 15vw;
    left: 24vw;
  }
}
.page_sansaku .plan_list li:nth-of-type(6) .time {
  top: 280px;
}
.page_sansaku .plan_list li:nth-of-type(6)::after {
  top: 235px;
  right: 352px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(6)::after {
    top: 274px;
  }
}
.page_sansaku .plan_list li:nth-of-type(7) {
  margin-top: -410px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li:nth-of-type(7) {
    margin-top: -34vw;
  }
}
.page_sansaku .plan_list li:nth-of-type(7) .time {
  right: -210px;
  top: 210px;
}
.page_sansaku .plan_list li:nth-of-type(7)::after {
  top: 118px;
  left: 273px;
}
@media screen and (max-width: 767px) {
  .page_sansaku .plan_list li:last-of-type {
    margin-top: -90px !important;
  }
}
.page_sansaku .plan_list li:last-of-type::after {
  display: none;
}
.page_sansaku .plan_list li .img {
  position: relative;
  font-size: 0;
  z-index: 10;
  margin-bottom: 32px;
}
.page_sansaku .plan_list li .cnt {
  padding: 0 10px;
  position: relative;
  z-index: 100;
}
.page_sansaku .plan_list li .copy {
  color: #D6500A;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}
.page_sansaku .plan_list li .ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  background: #FFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  padding: 2px 4px;
  margin: 0 auto 24px;
}
.page_sansaku .plan_list li .txt {
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 1180px) {
  .page_sansaku .plan_list li .txt {
    font-size: 15px;
  }
}
.page_sansaku .plan_list li .point {
  padding: 18px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 247, 231, 0.7)), to(rgba(255, 239, 230, 0.7)));
  background: -webkit-linear-gradient(rgba(248, 247, 231, 0.7) 0%, rgba(255, 239, 230, 0.7) 100%);
  background: linear-gradient(rgba(248, 247, 231, 0.7) 0%, rgba(255, 239, 230, 0.7) 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 24px;
}
.page_sansaku .plan_list li .point::before {
  content: "";
  display: block;
  background: url("../img/sansaku/point.svg") no-repeat;
  width: 63px;
  height: 46px;
  margin-right: 24px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.page_sansaku .plan_list li .point p {
  font-size: 14px;
}
.page_sansaku .plan_list li .btn a {
  font-size: 16px;
  padding: 0 24px;
}
.page_sansaku .plan_list li .btn a::after {
  background: url("../img/common/external_w.svg");
  width: 14px;
  height: 14px;
}

/*/ monotagari //////////////////////////////////////*/
.page_monogatari .monogatari_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header {
    display: block;
  }
}
.page_monogatari .monogatari_header .img {
  padding-top: 91px;
  margin-right: 100px;
  margin-left: calc(50% - 50vw);
  width: 47.8vw;
  font-size: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .img {
    padding-top: 0;
    margin-left: -20px;
    width: 100%;
    margin-bottom: 56px;
  }
}
.page_monogatari .monogatari_header .img .monogatari_head_img {
  border-radius: 0 8px 8px 0;
}
.page_monogatari .monogatari_header .img .icon3 {
  position: absolute;
  top: 101px;
  right: -125px;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .img .icon3 {
    width: 70%;
    top: 0;
    right: -10%;
  }
}
.page_monogatari .monogatari_header .img .icon1 {
  position: absolute;
  top: 270px;
  right: -82px;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .img .icon1 {
    top: 52%;
    right: -10%;
    width: 18%;
  }
}
.page_monogatari .monogatari_header .img .icon2 {
  position: absolute;
  right: 420px;
  bottom: -100px;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .img .icon2 {
    right: 63%;
    bottom: -20%;
    width: 20%;
  }
}
.page_monogatari .monogatari_header .cnt .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .cnt .copy {
    display: block;
  }
}
.page_monogatari .monogatari_header .cnt .copy p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  margin-left: 28px;
  padding: 8px 2px;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .cnt .copy p {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 17px;
    margin: 0 0 8px;
    padding: 2px 8px;
  }
}
.page_monogatari .monogatari_header .cnt .copy p:last-of-type {
  margin-left: 0;
}
.page_monogatari .monogatari_header .cnt .icon {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .cnt .icon {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .page_monogatari .monogatari_header .cnt .icon img {
    width: 200px;
  }
}
.page_monogatari .monogatari_sec {
  margin-top: -240px;
  padding-top: 240px;
  padding-bottom: 200px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.page_monogatari .monogatari_sec:first-of-type {
  margin-top: -100px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec:first-of-type {
    margin-top: 0;
  }
}
.page_monogatari .monogatari_sec:first-of-type .monogatari_sec_wrap .monogatari_sec_ttl::before {
  display: none;
}
.page_monogatari .monogatari_sec:nth-of-type(odd) {
  background: url("../img/monogatari/sengoku_bg.png") no-repeat top 120px center;
  background-size: 100%;
}
@media screen and (max-width: 1360px) {
  .page_monogatari .monogatari_sec:nth-of-type(odd) {
    background-size: 1360px;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec:nth-of-type(odd) {
    background-position: top center;
  }
}
.page_monogatari .monogatari_sec:nth-of-type(even) {
  background: url("../img/monogatari/edo_bg.png") no-repeat top 120px center;
  background-size: 100%;
}
@media screen and (max-width: 1360px) {
  .page_monogatari .monogatari_sec:nth-of-type(even) {
    background-size: 1360px;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec:nth-of-type(even) {
    background-position: top center;
  }
}
.page_monogatari .monogatari_sec:nth-of-type(even) .monogatari_sec_wrap .monogatari_sec_ttl {
  left: auto;
  right: 0;
}
.page_monogatari .monogatari_sec:nth-of-type(even) .monogatari_sec_wrap .cnt_wrap {
  margin-right: auto;
  margin-left: 0;
}
.page_monogatari .monogatari_sec:last-of-type {
  padding-bottom: 60px;
}
.page_monogatari .monogatari_sec:last-of-type .monogatari_sec_wrap .monogatari_sec_ttl {
  height: calc(100% + 260px);
}
.page_monogatari .monogatari_sec::before {
  content: "";
  display: block;
  background: url("../img/top/monogatari_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 132px;
  left: calc(50% - 53px);
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec::before {
    background-size: 100%;
    width: 74px;
    top: 15px;
    left: calc(50% - 37px);
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap {
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  padding-top: 180px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap {
    padding-top: 77px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl {
  position: absolute;
  top: -60px;
  left: 20px;
  width: 144px;
  height: calc(100% + 350px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl {
    position: static;
    width: auto;
    height: auto;
    text-align: center;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .icon {
  font-size: 0;
  margin-bottom: 72px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .icon {
    width: 100px;
    display: inline-block;
    margin: 0 auto 22px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .ttl span {
  display: block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 40px;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1;
  padding: 0 16px;
  border-left: 1px solid #DB9C85;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .ttl span {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    border: none;
    border-bottom: 1px solid #DB9C85;
    font-size: 24px;
    padding: 10px 0;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .ttl span:first-of-type {
  border-right: 1px solid #DB9C85;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl .ttl span:first-of-type {
    border-right: none;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl::before {
  content: "";
  display: block;
  background: url("../img/monogatari/monogatari_ttl_bg1.svg") no-repeat;
  width: 12px;
  height: 160px;
  position: absolute;
  top: -180px;
  left: calc(50% - 6px);
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl::before {
    display: none;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl::after {
  content: "";
  display: block;
  width: 12px;
  height: 100%;
  width: 12px;
  border-radius: 6px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8bba2), to(rgba(239, 232, 205, 0.4)));
  background: -webkit-linear-gradient(top, #e8bba2 0%, rgba(239, 232, 205, 0.4) 100%);
  background: linear-gradient(to bottom, #e8bba2 0%, rgba(239, 232, 205, 0.4) 100%);
  margin: 24px auto 0;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .monogatari_sec_ttl::after {
    display: none;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap {
  width: 996px;
  margin-left: auto;
}
@media screen and (max-width: 1180px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap {
    width: calc(100% - 150px);
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap {
    width: 100%;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 88px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap {
    display: block;
    margin-bottom: 48px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap:last-of-type {
  margin-bottom: 88px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.db {
  display: block;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.db .cnt {
  padding-left: 0;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.rr .cnt {
  padding-left: 0;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.edo {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.edo .cnt {
  width: 486px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.edo .cnt {
    width: 100%;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.edo .img {
  margin-right: 100px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap.edo .img {
    margin: 0 auto;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 {
    display: block;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 li {
  width: 288px;
}
@media screen and (max-width: 1180px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 li {
    width: 31%;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 li {
    width: 100%;
    max-width: 288px;
    margin: 0 auto 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 li .ttl {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 8px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 li .txt {
  font-size: 14px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1180px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .col3 li .img {
    width: auto;
  }
}
@media screen and (max-width: 1180px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .img {
    width: 48%;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .img {
    width: calc(100% + 20px);
    text-align: center;
    margin: 0 -20px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img {
  width: 480px;
  height: auto;
  aspect-ratio: 16/15;
  background: url("../img/monogatari/monogatari_img_bg.png") no-repeat;
  background-size: 100%;
  padding-left: 9.5%;
  padding-top: 3.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1180px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img {
    width: 48%;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img {
    width: 100%;
    max-width: 480px;
    text-align: center;
    margin: 0 auto;
    padding-left: 12.7%;
    padding-top: 6.4%;
  }
}
@media screen and (max-width: 540px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img {
    width: calc(100% + 20px);
    margin: 0 -20px;
    padding-left: 13.5%;
    padding-top: 7.2%;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img.move img {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img img {
  width: 91%;
  -webkit-transform: rotate(16deg);
          transform: rotate(16deg);
  -webkit-filter: drop-shadow(0px 30px 30px rgba(0, 0, 0, 0.31));
          filter: drop-shadow(0px 30px 30px rgba(0, 0, 0, 0.31));
  -webkit-transition: -webkit-transform 0.85s;
  transition: -webkit-transform 0.85s;
  transition: transform 0.85s;
  transition: transform 0.85s, -webkit-transform 0.85s;
}
@media screen and (max-width: 540px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .monogatari_img img {
    width: 85%;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt {
  width: 420px;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1180px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt {
    width: 48%;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 16px;
    padding: 0;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt.w100 {
  width: 100%;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 600;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .ttl {
    font-size: 17px;
    margin: 0 auto 32px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .ttl_info {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 32px;
  margin-top: -24px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .ttl_info {
    margin: -24px auto 32px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .txt {
  font-weight: 500;
  margin-bottom: 48px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .txt {
    margin-bottom: 32px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point {
  position: relative;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointl {
  padding-left: 130px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointl {
    padding-left: 96px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointl::before {
  content: "";
  display: block;
  background: url("../img/monogatari/spot_icon1.png") no-repeat;
  background-size: 100%;
  width: 162px;
  height: 99px;
  position: absolute;
  top: -26px;
  left: -70px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointl::before {
    background: url("../img/monogatari/spot_icon3.png");
    background-size: 100%;
    width: 72px;
    height: 108px;
    left: 0;
    top: 0;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointr {
  padding-right: 108px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointr {
    padding-right: 0;
    padding-left: 96px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointr::before {
  content: "";
  display: block;
  background: url("../img/monogatari/spot_icon2.png") no-repeat;
  background-size: 100%;
  width: 163px;
  height: 100px;
  position: absolute;
  top: -16px;
  right: -70px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point.pointr::before {
    background: url("../img/monogatari/spot_icon3.png");
    background-size: 100%;
    width: 72px;
    height: 108px;
    left: 0;
    top: 0;
    right: auto;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point .pttl {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  position: relative;
  line-height: 1.4;
  margin-bottom: 8px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point .pttl::before {
  content: "";
  display: block;
  background: url("../img/monogatari/point_ttl_icon.svg") no-repeat;
  width: 22px;
  height: 20px;
  position: absolute;
  top: -12px;
  left: -20px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .cnt_wrap .wrap .cnt .point .ptxt {
  font-size: 14px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 48px;
  padding: 102px;
  border-radius: 8px;
  background: -webkit-gradient(linear, right top, left top, from(#f8f7e7), to(#ffefe6));
  background: -webkit-linear-gradient(right, #f8f7e7 0%, #ffefe6 100%);
  background: linear-gradient(to left, #f8f7e7 0%, #ffefe6 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box {
    padding: 56px 20px 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box::before {
  content: "";
  display: block;
  background: url("../img/monogatari/edo_icon.svg") no-repeat;
  width: 100px;
  height: 35px;
  position: absolute;
  top: 122px;
  left: -26px;
}
@media screen and (max-width: 1280px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box::before {
    left: -16px;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box::before {
    width: 60px;
    height: 20px;
    background-size: 100%;
    top: 24px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .edo_box_ttl {
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 64px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .edo_box_ttl {
    font-size: 22px;
    margin-bottom: 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -22px;
}
@media screen and (max-width: 1240px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 {
    display: block;
    margin-bottom: 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 .cnt {
  width: 588px;
  margin-right: 60px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 .cnt {
    width: 100%;
    margin: 0 0 24px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 .img {
  margin-top: -40px;
  margin-right: -120px;
}
@media screen and (max-width: 1240px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 .img {
    margin-right: -110px;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap1 .img {
    margin: 0;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -20px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 {
    margin-top: 0;
    display: block;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 .img {
  margin-right: 30px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 .img {
    margin: 0;
    text-align: center;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 .cnt {
  width: 680px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 .cnt {
    width: 100%;
    margin-bottom: 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap2 .cnt .btn {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 {
    margin-bottom: 40px;
    display: block;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .edo_box_ttl {
  margin-bottom: 72px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .edo_box_ttl {
    margin-bottom: 40px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .img {
  margin-left: 30px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .img {
    margin: 0;
    text-align: center;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt {
  width: 588px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt {
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt .point {
    margin-bottom: 16px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt .point.pointr {
  padding-right: 108px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt .point.pointr {
    padding-right: 0;
    padding-left: 96px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt .point.pointr::before {
  content: "";
  display: block;
  background: url("../img/monogatari/spot_icon2.png") no-repeat;
  background-size: 100%;
  width: 163px;
  height: 100px;
  position: absolute;
  top: -16px;
  right: -98px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap3 .cnt .point.pointr::before {
    background: url("../img/monogatari/spot_icon3.png");
    background-size: 100%;
    width: 72px;
    height: 108px;
    left: 0;
    top: 0;
    right: auto;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 {
    display: block;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .img {
  margin-right: 120px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .img {
    margin: 0;
    text-align: center;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt {
  width: 588px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt {
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt .point {
    margin-bottom: 16px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt .point.pointl {
  padding-left: 0;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt .point.pointl {
    padding-right: 0;
    padding-left: 96px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt .point.pointl::before {
  content: "";
  display: block;
  background: url("../img/monogatari/spot_icon1.png") no-repeat;
  background-size: 100%;
  width: 162px;
  height: 99px;
  position: absolute;
  top: -26px;
  left: -204px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .wrap4 .cnt .point.pointl::before {
    background: url("../img/monogatari/spot_icon3.png");
    background-size: 100%;
    width: 72px;
    height: 108px;
    left: 0;
    top: 0;
    right: auto;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  font-size: 22px;
  font-weight: 600;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 32px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .ttl {
    font-size: 18px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .ttl_info {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 32px;
  margin-top: -24px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .txt {
  font-weight: 500;
  margin-bottom: 48px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .txt {
    margin-bottom: 32px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point {
  position: relative;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointl {
  padding-left: 130px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointl {
    padding-right: 0;
    padding-left: 96px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointl::before {
  content: "";
  display: block;
  background: url("../img/monogatari/spot_icon1.png") no-repeat;
  background-size: 100%;
  width: 162px;
  height: 99px;
  position: absolute;
  top: -26px;
  left: -70px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointl::before {
    background: url("../img/monogatari/spot_icon3.png");
    background-size: 100%;
    width: 72px;
    height: 108px;
    left: 0;
    top: 0;
    right: auto;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointr {
  padding-right: 108px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointr {
    padding-right: 0;
    padding-left: 96px;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointr::before {
  content: "";
  display: block;
  background: url("../img/monogatari/spot_icon2.png") no-repeat;
  background-size: 100%;
  width: 163px;
  height: 100px;
  position: absolute;
  top: -16px;
  right: -70px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point.pointr::before {
    background: url("../img/monogatari/spot_icon3.png");
    background-size: 100%;
    width: 72px;
    height: 108px;
    left: 0;
    top: 0;
    right: auto;
  }
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point .pttl {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  position: relative;
  line-height: 1.4;
  margin-bottom: 8px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point .pttl::before {
  content: "";
  display: block;
  background: url("../img/monogatari/point_ttl_icon.svg") no-repeat;
  width: 22px;
  height: 20px;
  position: absolute;
  top: -12px;
  left: -20px;
}
.page_monogatari .monogatari_sec .monogatari_sec_wrap .edo_box .cnt .point .ptxt {
  font-size: 14px;
}
.page_monogatari .monogatari_footer {
  background: url("../img/monogatari/monogatari_footer_bg.jpg") no-repeat bottom center;
  height: 520px;
  background-size: cover;
  position: relative;
  -webkit-mask-image: url("../img/common/fcntbg.svg");
          mask-image: url("../img/common/fcntbg.svg");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: top left;
          mask-position: top left;
  padding-top: 103px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_footer {
    -webkit-mask-size: 30px auto;
            mask-size: 30px auto;
    padding-top: 124px;
    padding-bottom: 56px;
    height: auto;
  }
}
.page_monogatari .monogatari_footer .wrap {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_footer .wrap {
    display: block;
  }
}
.page_monogatari .monogatari_footer .wrap .lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 24px;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_footer .wrap .lead {
    display: block;
    margin-bottom: 72px;
  }
}
.page_monogatari .monogatari_footer .wrap .lead p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #FFF;
  color: #D6500A;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  margin-left: 28px;
  padding: 8px 2px;
  line-height: 1;
  letter-spacing: 0.2em;
}
.page_monogatari .monogatari_footer .wrap .lead p:last-of-type {
  margin-left: 0;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_footer .wrap .lead p {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    padding: 2px 8px;
    font-size: 17px;
    margin: 0 0 8px;
    letter-spacing: 0.1em;
  }
}
.page_monogatari .monogatari_footer .wrap .copy p {
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  color: #FFF;
  background: #D6500A;
  line-height: 1.2;
  margin-bottom: 16px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 2px 8px;
}
@media screen and (max-width: 980px) {
  .page_monogatari .monogatari_footer .wrap .copy p {
    font-size: 30px;
  }
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_footer .wrap .copy p {
    font-size: 22px;
  }
}
.page_monogatari .monogatari_footer .wrap .copy p a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
}
.page_monogatari .monogatari_footer .wrap .copy p a:hover {
  color: #3B3B3B;
}
.page_monogatari .monogatari_footer .wrap .copy p a:hover::after {
  background: #3B3B3B url("../img/common/btn_arrow_rr.svg") no-repeat center;
  background-size: 12px;
}
.page_monogatari .monogatari_footer .wrap .copy p a::after {
  content: "";
  display: block;
  background: #FFF url("../img/common/btn_arrow_rr.svg") no-repeat center;
  background-size: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 840px) {
  .page_monogatari .monogatari_footer .wrap .copy p a::after {
    width: 24px;
    height: 24px;
  }
}

/*/ meguru //////////////////////////////////////*/
.page_meguru .meguru_header {
  overflow-x: hidden;
  background: url("../img/meguru/meguru_head_bg.png") no-repeat top 268px right calc(50vw - 757px), -webkit-gradient(linear, left top, left bottom, from(rgba(242, 214, 193, 0)), to(#fff));
  background: url("../img/meguru/meguru_head_bg.png") no-repeat top 268px right calc(50vw - 757px), -webkit-linear-gradient(rgba(242, 214, 193, 0) 0%, #fff 100%);
  background: url("../img/meguru/meguru_head_bg.png") no-repeat top 268px right calc(50vw - 757px), linear-gradient(rgba(242, 214, 193, 0) 0%, #fff 100%);
  background-size: 769px;
  padding-bottom: 20vw;
}
@media screen and (max-width: 1360px) {
  .page_meguru .meguru_header {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 214, 193, 0)), to(#fff));
    background: -webkit-linear-gradient(rgba(242, 214, 193, 0) 0%, #fff 100%);
    background: linear-gradient(rgba(242, 214, 193, 0) 0%, #fff 100%);
  }
}
.page_meguru .meguru_header .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto 196px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .wrap {
    display: block;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .wrap::after {
    content: "";
    display: block;
    background: url("../img/meguru/meguru_head_bg.png") no-repeat center;
    background-size: 100%;
    width: 80vw;
    height: 70vw;
    margin-right: -40px;
    margin-top: -14vw;
    margin-bottom: -27vw;
    margin-left: auto;
  }
}
.page_meguru .meguru_header .wrap .img {
  margin-left: calc(50% - 50vw);
  width: 47.8vw;
  font-size: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .wrap .img {
    margin-left: -20px;
    width: 98%;
    margin-bottom: 56px;
  }
}
.page_meguru .meguru_header .wrap .img .meguru_head_img {
  border-radius: 0 8px 8px 0;
}
.page_meguru .meguru_header .wrap .img .icon1 {
  position: absolute;
  top: 180px;
  right: -82px;
}
@media screen and (max-width: 1080px) {
  .page_meguru .meguru_header .wrap .img .icon1 {
    top: 57%;
    right: -10%;
    width: 17%;
  }
}
.page_meguru .meguru_header .wrap .img .icon2 {
  position: absolute;
  right: 361px;
  bottom: -98px;
}
@media screen and (max-width: 1080px) {
  .page_meguru .meguru_header .wrap .img .icon2 {
    right: auto;
    left: 16%;
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .wrap .img .icon2 {
    bottom: -25px;
  }
}
.page_meguru .meguru_header .wrap .cnt {
  width: 492px;
  max-width: 46%;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .wrap .cnt {
    max-width: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page_meguru .meguru_header .wrap .cnt .line_copy {
  margin-bottom: 40px;
}
.page_meguru .meguru_header .wrap .cnt .icon {
  text-align: right;
}
.page_meguru .meguru_header .lead {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .lead {
    margin-bottom: 48px;
  }
}
.page_meguru .meguru_header .area {
  text-align: center;
  margin: 0 -40px 24px;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .area {
    margin: 0 -20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .area .pc {
    display: none;
  }
}
.page_meguru .meguru_header .area .sp {
  display: none;
  width: 540px;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_header .area .sp {
    display: inline-block;
  }
}
.page_meguru .yuu_area {
  background: url("../img/meguru/yuu_bg.png") no-repeat top center;
  background-size: 100%;
  -webkit-mask-image: url("../img/top/top_mask.svg");
          mask-image: url("../img/top/top_mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: top center;
          mask-position: top center;
  position: relative;
  margin-top: -20vw;
  padding-bottom: 20vw;
  overflow-x: hidden;
  margin-bottom: 120px;
}
@media screen and (max-width: 1360px) {
  .page_meguru .yuu_area {
    background-size: 1360px;
    -webkit-mask-size: 1360px;
            mask-size: 1360px;
    margin-top: -150px;
    padding-bottom: 216px;
    margin-bottom: 0px;
  }
}
.page_meguru .yuu_area::before {
  content: "";
  display: block;
  background: url("../img/top/monogatari_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 12px;
  left: calc(50% - 53px);
  z-index: 100;
}
.page_meguru .yuu_area .yuu_icon1 {
  position: absolute;
  top: 348px;
  left: calc(50vw - 786px);
}
@media screen and (max-width: 1280px) {
  .page_meguru .yuu_area .yuu_icon1 {
    width: 34%;
    left: -10%;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_icon1 {
    position: relative;
    top: auto;
    left: 8px;
    width: 55%;
    margin-top: -50vw;
  }
}
.page_meguru .yuu_area .yuu_icon2 {
  position: absolute;
  top: 462px;
  right: calc(50vw - 706px);
}
@media screen and (max-width: 1280px) {
  .page_meguru .yuu_area .yuu_icon2 {
    width: 30%;
    right: -5%;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_icon2 {
    position: relative;
    top: auto;
    right: 8px;
    width: 70%;
    margin-left: auto;
    display: block;
    margin-top: -40px;
  }
}
.page_meguru .yuu_area .header_cnt {
  width: 460px;
  height: 1140px;
  padding: 162px 55px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  --webkit-backdrop-filter: blur(20px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(226, 84, 116)), to(rgba(226, 84, 116, 0)));
  background: -webkit-linear-gradient(top, rgb(226, 84, 116), rgba(226, 84, 116, 0));
  background: linear-gradient(to bottom, rgb(226, 84, 116), rgba(226, 84, 116, 0));
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .header_cnt {
    width: 75%;
    padding: 100px 24px 64vw;
    height: auto;
  }
}
.page_meguru .yuu_area .header_cnt .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
.page_meguru .yuu_area .header_cnt .copy p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 22px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.8;
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.41);
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .header_cnt .copy p {
    font-size: 17px;
  }
}
.page_meguru .yuu_area .header_cnt .cnt_ttl {
  font-size: 0;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .header_cnt .cnt_ttl img {
    max-width: 240px;
  }
}
.page_meguru .yuu_area .header_cnt .txt {
  color: #FFF;
  margin-bottom: 32px;
}
.page_meguru .yuu_area .yuu_cnt {
  margin-top: -135px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt {
    background: url("../img/meguru/yuu_ara_bg.png") no-repeat top center;
    background-position: top right -40vw;
    background-size: 210%;
    margin-top: 0;
    padding-top: 20vw;
  }
}
.page_meguru .yuu_area .yuu_cnt::before {
  content: "";
  width: 100%;
  background: url("../img/meguru/yuu_ara_bg.png") no-repeat top center;
  background-size: 1467px;
  height: 850px;
  position: absolute;
  top: -230px;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt::before {
    display: none;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 72px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap {
    display: block;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap .img {
  width: 47.8vw;
  margin-right: calc(50% - 50vw);
  font-size: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap .img {
    margin-left: auto;
    margin-right: -20px;
    width: 98%;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap .img img {
  border-radius: 8px 0 0 8px;
}
.page_meguru .yuu_area .yuu_cnt .wrap .img .icon1 {
  position: absolute;
  top: 198px;
  left: -43px;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap .img .icon1 {
    top: 65%;
    left: -7%;
    width: 17%;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap .img .icon2 {
  position: absolute;
  top: -78px;
  left: -66px;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap .img .icon2 {
    top: -30%;
    left: -8%;
    width: 40%;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap .cnt {
  width: 486px;
  padding-top: 218px;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap .cnt {
    padding-top: 50vw;
    width: 100%;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap .cnt .line_copy {
  margin-bottom: 8px;
}
.page_meguru .yuu_area .yuu_cnt .wrap .cnt .ttl {
  font-size: 40px;
  font-weight: bold;
  font-family: "Zen Old Mincho", serif;
  color: #D6500A;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap .cnt .ttl {
    margin-bottom: 24px;
  }
}
.page_meguru .yuu_area .yuu_cnt .wrap .cnt .txt {
  font-weight: 500;
  margin-bottom: 40px;
}
.page_meguru .yuu_area .yuu_cnt .wrap .cnt .btn {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .wrap .cnt .btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.page_meguru .yuu_area .yuu_cnt .imgs {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .imgs {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .yuu_area .yuu_cnt .imgs li {
    width: 48%;
  }
}
.page_meguru .yuu_area .yuu_cnt .imgs li:nth-of-type(even) {
  margin-top: 72px;
}
.page_meguru .chi_area {
  background: url("../img/meguru/chi_bg.png") no-repeat top center, url("../img/meguru/chi_ara_bg.png") no-repeat bottom center;
  background-size: 100%;
  -webkit-mask-image: url("../img/top/top_mask.svg");
          mask-image: url("../img/top/top_mask.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: top center;
          mask-position: top center;
  position: relative;
  margin-top: -20vw;
  padding-bottom: 300px;
  overflow-x: hidden;
  margin-bottom: 100px;
}
@media screen and (max-width: 1360px) {
  .page_meguru .chi_area {
    background-size: 1360px;
    -webkit-mask-size: 1360px;
            mask-size: 1360px;
    margin-top: -150px;
    padding-bottom: 216px;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .chi_area {
    padding-bottom: 0;
    background-size: 1360px, 150%;
    background-position: top center, bottom 47vw center;
    margin-bottom: 80px;
  }
}
.page_meguru .chi_area::before {
  content: "";
  display: block;
  background: url("../img/top/monogatari_icon.svg") no-repeat;
  width: 106px;
  height: 31px;
  position: absolute;
  top: 12px;
  left: calc(50% - 53px);
  z-index: 100;
}
.page_meguru .chi_area .icon1 {
  position: absolute;
  top: 621px;
  left: calc(50vw - 730px);
  z-index: 100;
}
@media screen and (max-width: 1180px) {
  .page_meguru .chi_area .icon1 {
    top: calc(1000px - 25vw);
    width: 42%;
    left: -10%;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .chi_area .icon1 {
    position: relative;
    top: auto;
    left: auto;
    width: 80%;
    left: 2%;
    margin-top: -38vw;
    margin-bottom: 28vw;
  }
}
.page_meguru .chi_area .icon2 {
  position: absolute;
  top: 786px;
  right: calc(50vw - 723px);
  z-index: 100;
}
@media screen and (max-width: 1180px) {
  .page_meguru .chi_area .icon2 {
    top: calc(1125px - 25vw);
    width: 74%;
    right: -10%;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .chi_area .icon2 {
    position: relative;
    top: auto;
    right: -5%;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
}
.page_meguru .chi_area .header_cnt {
  width: 460px;
  height: 1140px;
  padding: 162px 55px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  --webkit-backdrop-filter: blur(20px);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(87, 112, 178)), to(rgba(87, 112, 178, 0)));
  background: -webkit-linear-gradient(top, rgb(87, 112, 178), rgba(87, 112, 178, 0));
  background: linear-gradient(to bottom, rgb(87, 112, 178), rgba(87, 112, 178, 0));
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_meguru .chi_area .header_cnt {
    width: 75%;
    padding: 100px 24px 60vw;
    height: auto;
  }
}
.page_meguru .chi_area .header_cnt .copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
.page_meguru .chi_area .header_cnt .copy p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 22px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.8;
  color: #FFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.41);
}
@media screen and (max-width: 767px) {
  .page_meguru .chi_area .header_cnt .copy p {
    font-size: 17px;
  }
}
.page_meguru .chi_area .header_cnt .cnt_ttl {
  font-size: 0;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_meguru .chi_area .header_cnt .cnt_ttl img {
    max-width: 240px;
  }
}
.page_meguru .chi_area .header_cnt .txt {
  color: #FFF;
  margin-bottom: 32px;
}
.page_meguru .meguru_footer {
  background: url("../img/meguru/meguru_footer_bg.jpg") no-repeat bottom center;
  height: 640px;
  background-size: cover;
  position: relative;
  -webkit-mask-image: url("../img/common/fcntbg.svg");
          mask-image: url("../img/common/fcntbg.svg");
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: top left;
          mask-position: top left;
  padding: 40px 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_footer {
    -webkit-mask-size: 30px auto;
            mask-size: 30px auto;
    padding: 80px 20px 60px;
    height: auto;
  }
}
.page_meguru .meguru_footer .cnt {
  width: 876px;
  min-height: 368px;
  border-radius: 8px;
  background: transparent;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 24px 88px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_footer .cnt {
    width: 100%;
    padding: 24px;
  }
}
.page_meguru .meguru_footer .cnt .ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  font-weight: bold;
  color: #D6500A;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_footer .cnt .ttl {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  .page_meguru .meguru_footer .cnt .ttl .pcn {
    display: block;
  }
}
.page_meguru .meguru_footer .cnt .txt {
  margin-bottom: 24px;
}

/*/ page_news //////////////////////////////////////*/
.page_news {
  max-width: 1240px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_news {
    display: block;
    margin-bottom: 80px;
  }
}
.page_news .news_cnt {
  width: calc(100% - 260px);
}
@media screen and (max-width: 1080px) {
  .page_news .news_cnt {
    width: calc(100% - 210px);
  }
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt {
    width: 100%;
  }
}
.page_news .news_cnt .news_entry {
  background: #FFF;
  border-radius: 8px;
  padding: 64px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry {
    padding: 32px 20px;
  }
}
.page_news .news_cnt .news_entry .data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.page_news .news_cnt .news_entry .data .cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 12px;
}
.page_news .news_cnt .news_entry .data .cat a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #D6500A;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 25px;
  border-radius: 2px;
}
.page_news .news_cnt .news_entry .data .date {
  font-size: 14px;
}
.page_news .news_cnt .news_entry .entry_ttl {
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_ttl {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.page_news .news_cnt .news_entry .entry_body h2 {
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  color: #D6500A;
  padding: 8px 32px;
  border-left: 3px solid #EFA88E;
  background: -webkit-gradient(linear, right top, left top, from(#f8f7e7), to(#ffefe6));
  background: -webkit-linear-gradient(right, #f8f7e7 0%, #ffefe6 100%);
  background: linear-gradient(to left, #f8f7e7 0%, #ffefe6 100%);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body h2 {
    font-size: 20px;
    padding: 6px 16px;
    line-height: 1.6;
  }
}
.page_news .news_cnt .news_entry .entry_body h3 {
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  color: #D6500A;
  padding: 8px 32px 8px 43px;
  border-bottom: 2px dashed #D6500A;
  background: url("../img/news/h3_icon.svg") no-repeat left 5px center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body h3 {
    font-size: 20px;
    line-height: 1.6;
  }
}
.page_news .news_cnt .news_entry .entry_body h4 {
  font-size: 18px;
  font-weight: bold;
  color: #D6500A;
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body h4 {
    font-size: 16px;
  }
}
.page_news .news_cnt .news_entry .entry_body h4::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EFA88E;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.page_news .news_cnt .news_entry .entry_body h5 {
  font-size: 16px;
  font-weight: bold;
  color: #D6500A;
  margin-bottom: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body h5 {
    font-size: 15px;
  }
}
.page_news .news_cnt .news_entry .entry_body p {
  font-weight: 500;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body p {
    margin-bottom: 40px;
  }
}
.page_news .news_cnt .news_entry .entry_body a {
  text-decoration: underline;
}
.page_news .news_cnt .news_entry .entry_body a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.page_news .news_cnt .news_entry .entry_body ul {
  margin-bottom: 48px;
}
.page_news .news_cnt .news_entry .entry_body ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.6;
}
.page_news .news_cnt .news_entry .entry_body ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EFA88E;
  position: absolute;
  left: 0;
  top: 0.6em;
}
.page_news .news_cnt .news_entry .entry_body ol {
  margin-bottom: 48px;
  counter-reset: number;
}
.page_news .news_cnt .news_entry .entry_body ol li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.6;
}
.page_news .news_cnt .news_entry .entry_body ol li::before {
  content: "";
  counter-increment: number;
  content: counter(number);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 500;
  color: #FFF;
  background: #3B3B3B;
  position: absolute;
  left: 0;
  top: 0.2em;
}
.page_news .news_cnt .news_entry .entry_body table {
  width: 100%;
  margin-bottom: 56px;
}
.page_news .news_cnt .news_entry .entry_body table tr:nth-of-type(odd) td {
  background: #EDEDED;
}
.page_news .news_cnt .news_entry .entry_body table tr th {
  background: #EFA88E;
  color: #FFF;
  text-align: center;
  padding: 12px 32px;
}
.page_news .news_cnt .news_entry .entry_body table tr th:first-child {
  width: 26% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body table tr th:first-child {
    width: 45% !important;
  }
}
.page_news .news_cnt .news_entry .entry_body table tr td {
  padding: 12px 32px;
  text-align: center;
}
.page_news .news_cnt .news_entry .entry_body table tr td:first-child {
  width: 26% !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_body table tr td:first-child {
    width: 45% !important;
  }
}
.page_news .news_cnt .news_entry .entry_body .btn a {
  text-decoration: none;
}
.page_news .news_cnt .news_entry .entry_share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.page_news .news_cnt .news_entry .entry_share li {
  margin-right: 24px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_share li {
    font-size: 13px;
    margin-right: 16px;
  }
}
.page_news .news_cnt .news_entry .entry_share li:last-of-type {
  margin-right: 0;
}
.page_news .news_cnt .news_entry .entry_share li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_news .news_cnt .news_entry .entry_share li a img {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .entry_share li a img {
    width: 18px;
    margin-right: 6px;
  }
}
.page_news .news_cnt .news_entry .entry_tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page_news .news_cnt .news_entry .entry_tags li {
  font-size: 12px;
  margin: 0 6px 6px;
}
.page_news .news_cnt .news_entry .entry_tags li a::before {
  content: "#";
}
.page_news .news_cnt .news_entry .pagenationSingle {
  border-top: 2px dashed #D6500A;
  padding-top: 27px;
  margin-top: 56px;
}
.page_news .news_cnt .news_entry .pagenationSingle ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li {
  width: 80px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .pagenationSingle ul li {
    font-size: 14px;
  }
}
.page_news .news_cnt .news_entry .pagenationSingle ul li a:hover {
  color: #D6500A;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.back {
  text-align: center;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.prev a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.prev a:hover::before {
  background-color: #3B3B3B;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.prev a::before {
  content: "";
  display: block;
  background: #D6500A url("../img/common/btn_arrow_l.svg") no-repeat center;
  background-size: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .pagenationSingle ul li.prev a::before {
    width: 24px;
    height: 24px;
    background-size: 8px;
  }
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.next a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.next a:hover::after {
  background-color: #3B3B3B;
}
.page_news .news_cnt .news_entry .pagenationSingle ul li.next a::after {
  content: "";
  display: block;
  background: #D6500A url("../img/common/btn_arrow.svg") no-repeat center;
  background-size: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .page_news .news_cnt .news_entry .pagenationSingle ul li.next a::after {
    width: 24px;
    height: 24px;
    background-size: 8px;
  }
}
.page_news .news_cnt .news_list {
  margin-bottom: 72px;
}
.page_news .news_cnt .news_list li {
  margin-bottom: 8px;
}
.page_news .news_cnt .news_list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px 80px 40px 36px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .page_news .news_cnt .news_list li a {
    padding: 20px 64px 20px 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.page_news .news_cnt .news_list li a:hover {
  background: #FFF;
}
.page_news .news_cnt .news_list li a:hover::after {
  content: "";
  background: url("../img/common/btn_arrow_bk.svg") no-repeat center;
  background-size: 12px;
  border: 1px solid #3B3B3B;
}
.page_news .news_cnt .news_list li a::after {
  content: "";
  background: url("../img/common/btn_arrow_rr.svg") no-repeat center;
  background-size: 12px;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  right: 40px;
  top: calc(50% - 16px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 540px) {
  .page_news .news_cnt .news_list li a::after {
    right: 16px;
  }
}
.page_news .news_cnt .news_list li a .date {
  margin-right: 12px;
  font-weight: 500;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.page_news .news_cnt .news_list li a .cat {
  min-width: 120px;
  height: 22px;
  border-radius: 11px;
  background: #F2F2F2;
  margin-right: 8px;
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
@media screen and (max-width: 540px) {
  .page_news .news_cnt .news_list li a .ttl {
    width: 100%;
    line-height: 1.6;
  }
}
.page_news .side_navi {
  width: 168px;
  margin-left: 92px;
}
@media screen and (max-width: 1080px) {
  .page_news .side_navi {
    margin-left: 48px;
  }
}
@media screen and (max-width: 767px) {
  .page_news .side_navi {
    width: 100%;
    margin: 48px 0 0;
  }
}
.page_news .side_navi li {
  margin-bottom: 8px;
}
.page_news .side_navi li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  color: #D6500A;
  font-weight: bold;
  min-height: 48px;
  border-radius: 24px;
  background: -webkit-gradient(linear, right top, left top, from(#f8f7e7), to(#ffefe6));
  background: -webkit-linear-gradient(right, #f8f7e7 0%, #ffefe6 100%);
  background: linear-gradient(to left, #f8f7e7 0%, #ffefe6 100%);
}
.page_news .side_navi li a:hover {
  background: #3B3B3B;
  color: #FFF;
}

.pagination ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination ul li {
  font-size: 16px;
  font-weight: 500;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .pagination ul li {
    font-size: 14px;
    margin: 0 12px;
  }
}
.pagination ul li span {
  color: #D6500A;
  text-decoration: underline;
}
.pagination ul li a:hover {
  color: #D6500A;
}
.pagination ul li.prev {
  margin: 0 20px 0 0;
}
.pagination ul li.prev a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination ul li.prev a:hover::before {
  background-color: #3B3B3B;
}
.pagination ul li.prev a::before {
  content: "";
  display: block;
  background: #D6500A url("../img/common/btn_arrow_l.svg") no-repeat center;
  background-size: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .pagination ul li.prev a::before {
    width: 24px;
    height: 24px;
    background-size: 8px;
    margin-right: 8px;
  }
}
.pagination ul li.next {
  margin: 0 0 0 20px;
}
.pagination ul li.next a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pagination ul li.next a:hover::after {
  background-color: #3B3B3B;
}
.pagination ul li.next a::after {
  content: "";
  display: block;
  background: #D6500A url("../img/common/btn_arrow.svg") no-repeat center;
  background-size: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .pagination ul li.next a::after {
    width: 24px;
    height: 24px;
    background-size: 8px;
    margin-left: 8px;
  }
}

/*/ pp //////////////////////////////////////*/
.page_pp {
  padding: 0 20px;
  margin-bottom: 160px;
}
.page_pp .pp_cnt {
  max-width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  .page_pp .pp_cnt {
    margin-bottom: 56px;
  }
}
.page_pp .pp_cnt .ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .page_pp .pp_cnt .ttl {
    font-size: 18px;
  }
}
.page_pp .pp_cnt p {
  font-size: 14px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .page_pp .pp_cnt p {
    font-size: 13px;
  }
}
.page_pp .pp_cnt p a {
  text-decoration: underline;
}
.page_pp .pp_cnt ul li {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page_pp .pp_cnt ul li {
    font-size: 13px;
  }
}
.page_pp .pp_cnt ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/*/ 404 //////////////////////////////////////*/
.page_404 {
  padding: 0 20px;
  margin: 100px auto 180px;
  max-width: 1020px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page_404 {
    margin: 64px auto 120px;
  }
}
.page_404 .txt {
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */