@charset "UTF-8";
.effect-fade {
  opacity: 0;
  transition: all 1s;
  transform: translate(0, 45px);
}
.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.effect-fade.stop {
  opacity: 0;
  transition: all 1s;
  transform: translate(0, 0);
}
.effect-fade.stop.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.effect-fade.left-in {
  opacity: 0;
  transition: all 1s;
  transform: translate(-45px, 0);
}
.effect-fade.left-in.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}
.effect-fade.right-in {
  opacity: 0;
  transition: all 1s;
  transform: translate(45px, 0);
}
.effect-fade.right-in.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  transition: all 1s;
}
.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
/*==Shippori Mincho（縦書き）==*/
/*font-weight-regular*/
@font-face {
  font-family: "Shippori Mincho B1 tate";
  font-style: normal;
  font-weight: 400;
  src: url("../font/ShipporiMinchoB1-Regular_tate.woff2") format("woff2"), url("../font/ShipporiMinchoB1-Regular_tate.woff") format("woff"), url("../font/ShipporiMinchoB1-Regular_tate.ttf") format("truetype");
}
/*font-weight-medium*/
@font-face {
  font-family: "Shippori Mincho B1 tate";
  font-style: normal;
  font-weight: 500;
  src: url("../font/ShipporiMinchoB1-Medium_tate.woff2") format("woff2"), url("../font/ShipporiMinchoB1-Medium_tate.woff") format("woff"), url("../font/ShipporiMinchoB1-Medium_tate.ttf") format("truetype");
}
/*font-weight-semibold*/
@font-face {
  font-family: "Shippori Mincho B1 tate";
  font-style: normal;
  font-weight: 600;
  src: url("../font/ShipporiMinchoB1-SemiBold_tate.woff2") format("woff2"), url("../font/ShipporiMinchoB1-SemiBold_tate.woff") format("woff"), url("../font/ShipporiMinchoB1-SemiBold_tate.ttf") format("truetype");
}
/*font-weight-bold*/
@font-face {
  font-family: "Shippori Mincho B1 tate";
  font-style: normal;
  font-weight: 700;
  src: url("../font/ShipporiMinchoB1-Bold_tate.woff2") format("woff2"), url("../font/ShipporiMinchoB1-Bold_tate.woff") format("woff"), url("../font/ShipporiMinchoB1-Bold_tate.ttf") format("truetype");
}
/*==Shippori Mincho（横書き）==*/
/*font-weight-medium*/
@font-face {
  font-family: "Shippori Mincho B1";
  font-style: normal;
  font-weight: 500;
  src: url("../font/ShipporiMinchoB1-Medium.woff2") format("woff2"), url("../font/ShipporiMinchoB1-Medium.woff") format("woff");
}
/*font-weight-semibold*/
@font-face {
  font-family: "Shippori Mincho B1";
  font-style: normal;
  font-weight: 600;
  src: url("../font/ShipporiMinchoB1-SemiBold.woff2") format("woff2"), url("../font/ShipporiMinchoB1-SemiBold.woff") format("woff"), url("../font/ShipporiMinchoB1-SemiBold.ttf") format("truetype");
}
/*font-weight-bold*/
@font-face {
  font-family: "Shippori Mincho B1";
  font-style: normal;
  font-weight: 700;
  src: url("../font/ShipporiMinchoB1-Bold.woff2") format("woff2"), url("../font/ShipporiMinchoB1-Bold.woff") format("woff"), url("../font/ShipporiMinchoB1-Bold.ttf") format("truetype");
}
/*==SofiaSans==*/
/*font-weight-bold*/
@font-face {
  font-family: "SofiaSansExtraCondensed";
  font-style: normal;
  font-weight: 600;
  src: url("../font/SofiaSansExtraCondensed-Bold.ttf") format("truetype");
}
/*font-weight-ExtraBold*/
@font-face {
  font-family: "SofiaSansExtraCondensed";
  font-style: normal;
  font-weight: 700;
  src: url("../font/SofiaSansExtraCondensed-ExtraBold.ttf") format("truetype");
}
:root {
  --notosansjp: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans",
  	"Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  --shipporimincho-tate: "Shippori Mincho B1 tate", serif;
  --shipporimincho: "Shippori Mincho B1", serif;
  --sofiasans: "SofiaSansExtraCondensed", "Noto Sans JP", serif;
}

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

body {
  width: 100%;
  height: 100%;
  font-family: var(--notosansjp);
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  color: #000000;
  background-color: #ffffff;
}
body.noscroll {
  overflow: hidden;
}

/* ios用の初期化 */
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  vertical-align: bottom;
}

.pc {
  display: block;
}

.sp,
img.sp {
  display: none;
}

img.pc {
  display: inline-block;
}

a {
  display: block;
  cursor: pointer;
}

@media screen and (max-width:600px) {
  .sp {
    display: block;
  }
  .pc,
  img.pc {
    display: none;
  }
  img.sp {
    display: inline-block;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (width <= 600px) {
  html {
    scroll-padding-top: 150px;
  }
}

body {
  background-color: #0f0f0f;
}

.hidden {
  overflow: hidden;
}

.keyvisual {
  position: relative;
  width: 100%;
  height: 100dvh;
  transition: 0.5s;
}
.keyvisual .keyvisual_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.keyvisual .keyvisual_wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  transform: translateX(-50%) translateY(-50%);
}
.keyvisual h1 {
  position: absolute;
  top: calc(50% - 25vw);
  right: calc(50% - 26vw);
}
@media screen and (max-width:834px) {
  .keyvisual h1 {
    top: calc(50% - 36vw);
    right: calc(50% - 40vw);
  }
}
@media screen and (max-width:600px) {
  .keyvisual h1 {
    top: calc(50% - 70vw);
    right: calc(50% - 47.5vw);
  }
}
.keyvisual h1 img {
  width: 46vw;
}
@media screen and (max-width:834px) {
  .keyvisual h1 img {
    width: 72vw;
  }
}
@media screen and (max-width:600px) {
  .keyvisual h1 img {
    width: 86vw;
  }
}
@media screen and (min-width: 2500px) {
  .keyvisual h1 {
    top: calc(50% - 24.2vw);
    right: calc(50% - 26vw);
  }
  .keyvisual h1 img {
    width: 44vw;
  }
}
.keyvisual p {
  position: absolute;
  bottom: 44px;
  left: 13vw;
  font-family: var(--shipporimincho-tate);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width:834px) {
  .keyvisual p {
    display: none;
  }
}
.keyvisual p.load-fade {
  opacity: 0;
  transition: all 1s;
  transition-delay: 0.3s;
}
.keyvisual p.load-fade.done {
  opacity: 1;
  transform: translate(0, 0) scale(1.25, 1);
}
.keyvisual p span {
  display: inline-block;
  transform: translateY(-11px) rotate(-62deg);
}

.scroll_btn {
  position: absolute;
  right: 40px;
  bottom: -72px;
  z-index: 2;
  transition: all 0.3s;
}
@media screen and (max-width:600px) {
  .scroll_btn {
    right: 5vw;
    bottom: -12vw;
  }
}
.scroll_btn:hover {
  opacity: 0.6;
}
.scroll_btn a {
  position: relative;
  width: 152px;
  height: 152px;
  background: url(../img/scroll_circle.svg) center/100% no-repeat;
  animation: 10s linear infinite rotation;
}
@media screen and (max-width:600px) {
  .scroll_btn a {
    width: 24vw;
    height: 24vw;
  }
}
.scroll_btn span {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 12px);
  width: 25px;
  height: 61px;
  background: url(../img/scroll_arrow.svg) center/100% no-repeat;
}
@media screen and (max-width:600px) {
  .scroll_btn span {
    top: calc(50% - 5vw);
    left: calc(50% - 2.5vw);
    width: 5vw;
    height: 10vw;
    background-image: url(../img/sp_scroll_arrow.svg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.reservation_link {
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 2;
  writing-mode: vertical-rl;
  transition: all 0.5s;
}
@media screen and (max-width:834px) {
  .reservation_link {
    display: none;
  }
}
.reservation_link a {
  padding: 20px 17px 17px 20px;
  font-family: var(--shipporimincho-tate);
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #de0e0e;
  border-radius: 20px 0 0 20px;
}
.reservation_link a:hover {
  background-color: #666;
}

@-moz-document url-prefix() {
  .reservation_link {
    font-family: var(--shipporimincho);
  }
}
.obun {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 98px;
}
@media screen and (max-width:834px) {
  .header {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
  }
}
.header_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 98px;
  min-width: 98px;
  height: 100vh;
  border-right: 1px solid #ccc;
}
@media screen and (max-width:834px) {
  .header_inner {
    width: 100%;
    height: 0;
  }
}
.header_logo {
  position: absolute;
  top: 12px;
  left: 9px;
  z-index: 10;
  width: 82px;
}
@media screen and (max-width:834px) {
  .header_logo {
    position: fixed;
    top: 2vw;
    left: 2vw;
    width: 21vw;
    max-width: 82px;
  }
}
.header_logo img {
  width: 100%;
}
.header_content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width:1024px) {
  .header_content {
    width: 100%;
  }
}
.header_content a {
  visibility: hidden;
}
.header_content nav {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding: 0 10% 0 4%;
  margin: 0 auto;
}
@media screen and (max-width:1024px) {
  .header_content nav {
    padding: 0 0 0 13%;
  }
}
@media screen and (max-width:834px) {
  .header_content nav {
    display: block;
    width: 80%;
    padding: 0 0 5vw;
  }
}
.header_content nav > div {
  width: 50%;
}
@media screen and (max-width:834px) {
  .header_content nav > div {
    width: 100%;
  }
}
.header_content nav > div ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
@media screen and (max-width:1024px) {
  .header_content nav > div ul {
    gap: 15px;
  }
}
@media screen and (max-width:834px) {
  .header_content nav > div ul {
    gap: 3vw;
    margin: 0 0 9vw;
  }
}
@media screen and (max-width:600px) {
  .header_content nav > div ul {
    gap: 4vw;
  }
}
.header_content nav > div ul li a {
  font-family: var(--shipporimincho);
  font-size: 26px;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width:1024px) {
  .header_content nav > div ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width:834px) {
  .header_content nav > div ul li a {
    font-size: 3vw;
  }
}
@media screen and (max-width:600px) {
  .header_content nav > div ul li a {
    font-size: 4.5vw;
  }
}
.header_content nav > div ul li a:hover {
  color: #c80e0e;
}
.header_content nav > div ul li .insta {
  display: inline-block;
  width: 52px;
  height: 52px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width:834px) {
  .header_content nav > div ul li .insta {
    width: 5vw;
    height: 5vw;
  }
  .header_content nav > div ul li .insta img {
    width: 100%;
  }
}
@media screen and (max-width:600px) {
  .header_content nav > div ul li .insta {
    width: 12vw;
    height: 12vw;
  }
}
.header_content nav > div ul li .insta:hover {
  opacity: 0.5;
  transition: 0.5s;
}
@media screen and (max-width:834px) {
  .header_content nav > div ul li.tab-display-none {
    display: none;
  }
}
.header_content nav > div > div {
  position: absolute;
  right: 50px;
  bottom: 50px;
}
.header_content nav > div > div a {
  display: inline-block;
  padding: 0 10px;
  font-family: var(--shipporimincho);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.3em;
}
.header_content nav > div > div a:first-child {
  border-right: 1px solid #fff;
}
.header_content nav > div > div a:hover {
  color: #c80e0e;
}
.header_content nav dl {
  width: 50%;
  text-align: center;
}
@media screen and (max-width:1024px) {
  .header_content nav dl {
    width: 88%;
    margin: 0 auto;
  }
}
.header_content nav dt {
  margin-bottom: 40px;
}
@media screen and (max-width:834px) {
  .header_content nav dt {
    display: none;
  }
}
.header_content nav dt img {
  width: 300px;
}
@media screen and (max-width:1024px) {
  .header_content nav dt img {
    width: 20vw;
  }
}
.header_content nav dd {
  font-family: var(--shipporimincho);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;
}
.header_content nav dd p {
  margin: 0 0 28px;
  font-family: var(--shipporimincho);
  font-size: 16px;
}
@media screen and (max-width:834px) {
  .header_content nav dd p {
    display: none;
  }
}
.header_content nav dd .header_btn {
  position: relative;
  width: 350px;
  height: 90px;
  margin: 10px auto 0;
  font-weight: 600;
  background: #c80e0e;
}
@media screen and (max-width:1024px) {
  .header_content nav dd .header_btn {
    width: 300px;
    height: 75px;
  }
}
@media screen and (max-width:834px) {
  .header_content nav dd .header_btn {
    max-width: 400px;
    height: 12vw;
  }
}
@media screen and (max-width:600px) {
  .header_content nav dd .header_btn {
    width: 100%;
    height: 20vw;
  }
}
.header_content nav dd .header_btn span {
  position: absolute;
  top: calc(50% - 12px);
  z-index: 2;
  display: block;
  width: 100%;
  font-size: 23px;
  color: #fff;
  transform: scale(1.15, 1);
}
@media screen and (max-width:600px) {
  .header_content nav dd .header_btn span {
    top: calc(50% - 1.2vw);
    left: -0.5vw;
    width: 100%;
    font-size: 2vw;
  }
}
@media screen and (max-width:834px) {
  .header_content nav dd .header_btn span {
    top: calc(50% - 2vw);
    left: -1vw;
    font-size: 3vw;
  }
}
@media screen and (max-width:600px) {
  .header_content nav dd .header_btn span {
    top: calc(50% - 2.5vw);
    font-size: 4.5vw;
  }
}
.header_content nav dd .header_btn::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #999;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.header_content nav dd .header_btn:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header_content nav dd .header_btn::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 7.3%;
  z-index: 2;
  width: 27px;
  height: 16px;
  content: "";
  background: url(../img/header_arrow.svg) center/100% 100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:834px) {
  .header_content nav dd .header_btn::after {
    top: calc(50% - 1.8vw);
    width: 3vw;
    height: 3vw;
  }
}
@media screen and (max-width:600px) {
  .header_content nav dd .header_btn::after {
    top: calc(50% - 2.8vw);
    width: 5vw;
    height: 5vw;
    background-image: url(../img/sp_header_arrow.svg);
  }
}
.header_content .header_foot_link {
  display: flex;
  gap: 2%;
  align-items: center;
  width: 88%;
  margin: 4vw auto 0;
}
@media screen and (min-width: 601px) {
  .header_content .header_foot_link.sp {
    display: none;
  }
}
@media screen and (max-width:834px) {
  .header_content .header_foot_link {
    justify-content: center;
  }
}
.header_content .header_foot_link a {
  display: inline-block;
  font-size: 3.6vw;
  color: #fff;
  letter-spacing: 0.1em;
}
.header_content .header_foot_link a:first-child {
  padding-right: 1vw;
  margin-right: 1vw;
  border-right: 1px solid #fff;
}
.header.is-active {
  width: 100%;
}
.header.is-active .header_inner {
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.5s;
}
.header.is-active .header_content {
  position: fixed;
  top: 0;
  z-index: 2;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 1;
  transition: all 0.5s;
}
.header.is-active .header_content a {
  visibility: visible;
}

.page-top .header_lang {
  display: block;
}

.header_lang {
  position: fixed;
  bottom: 28px;
  left: 34px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: 0.5s;
}
@media screen and (max-width:834px) {
  .header_lang.active {
    bottom: 90px;
  }
}
@media screen and (max-width:600px) {
  .header_lang {
    top: calc(100dvh - 38vw);
    left: 2vw;
    display: none;
  }
  .header_lang.active {
    top: calc(100dvh - 51vw);
  }
}
.header_lang li {
  position: relative;
  padding: 5px 0;
}
.header_lang li a {
  display: block;
  align-items: center;
  width: 28px;
  padding: 3px 0 2px;
  font-family: var(--sofiasans);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  border-radius: 50%;
}
@media screen and (max-width:600px) {
  .header_lang li a {
    font-size: 4vw;
  }
}
.header_lang li:first-child a {
  width: 26px;
  padding: 3px 0 2px 2px;
}
.header_lang li:nth-child(n+2)::after {
  position: absolute;
  top: 0px;
  left: calc(50% - 2px);
  width: 4px;
  height: 2px;
  content: "";
  background-color: #fff;
}
.header_lang li.current a {
  color: #c80e0e;
  border-color: #c80e0e;
}
.header_lang li:hover a {
  color: #c80e0e;
}

.hamburger {
  position: absolute;
  top: calc(50% - 10px);
  z-index: 10;
  width: 22px;
  height: 20px;
  cursor: pointer;
}
@media screen and (max-width:834px) {
  .hamburger {
    position: fixed;
    top: 5vw;
    right: 5vw;
    width: 6.5vw;
    height: 7vw;
  }
}
.hamburger div {
  position: relative;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}
.hamburger span:first-child {
  top: 0;
  left: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
  left: 0;
}
.hamburger span:nth-child(3) {
  top: 22px;
  left: 0;
}

.is-active .hamburger span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.is-active .hamburger span:nth-child(2) {
  opacity: 0;
}
.is-active .hamburger span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.top_001 {
  position: relative;
  background: url(../img/top_001_bg.webp) center/cover no-repeat;
}
@media screen and (max-width:600px) {
  .top_001 {
    background-image: url(../img/sp_top_001_bg.webp);
  }
}
.top_001 .en_decoration {
  position: absolute;
  top: 250px;
  left: 98px;
  width: 170px;
  height: 920px;
  font-family: var(--sofiasans);
  font-size: 192px;
  color: rgba(51, 51, 51, 0.2);
  writing-mode: vertical-rl;
}
@media screen and (max-width:600px) {
  .top_001 .en_decoration {
    display: none;
  }
}
.top_001 > div {
  width: calc(100% - 98px);
  padding: 130px 0;
  margin-left: 98px;
}
@media screen and (max-width:1500px) {
  .top_001 > div {
    padding: 130px 0 17vw;
  }
}
@media screen and (max-width:834px) {
  .top_001 > div {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .top_001 > div {
    padding: 30vw 0 70vw;
  }
}
.top_001 .text_box {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  width: 1010px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width:1500px) {
  .top_001 .text_box {
    flex-direction: row;
    width: 80%;
  }
}
@media screen and (max-width:1024px) {
  .top_001 .text_box {
    gap: 10%;
  }
}
@media screen and (max-width:600px) {
  .top_001 .text_box {
    display: block;
  }
}
.top_001 .text_box h2 {
  font-family: var(--shipporimincho-tate);
  font-size: 32px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width:1500px) {
  .top_001 .text_box h2 {
    font-family: var(--shipporimincho);
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width:1024px) {
  .top_001 .text_box h2 {
    font-size: 22px;
    line-height: 1.8;
  }
}
@media screen and (max-width:834px) {
  .top_001 .text_box h2 {
    width: 50%;
    font-size: 21px;
  }
}
@media screen and (max-width:600px) {
  .top_001 .text_box h2 {
    width: 100%;
    margin: 0 0 5vw;
    font-size: 6vw;
    line-height: 1.8;
    text-align: center;
  }
}
.top_001 .text_box p {
  font-family: var(--shipporimincho-tate);
  font-size: 22px;
  font-weight: 500;
  line-height: 2.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.1, 1);
}
@media screen and (max-width:1500px) {
  .top_001 .text_box p {
    font-family: var(--shipporimincho);
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width:1024px) {
  .top_001 .text_box p {
    font-size: 18px;
    line-height: 3;
  }
}
@media screen and (max-width:834px) {
  .top_001 .text_box p {
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  .top_001 .text_box p {
    margin: 0 0 9vw;
    line-height: 2.5;
    text-align: center;
  }
}
.top_001 .text_box p .number {
  display: inline-block;
  margin: -0.6em 0;
  writing-mode: rl-tb;
}
@media screen and (max-width:1500px) {
  .top_001 .text_box .br {
    display: none;
  }
}
@media screen and (max-width:600px) {
  .top_001 .text_box .br {
    display: block;
  }
  .top_001 .text_box .br.pc {
    display: none;
  }
}
.top_001 .link_box {
  position: absolute;
  bottom: -198px;
  left: -160px;
  z-index: 2;
  width: 233px;
  height: 301px;
}
@media screen and (max-width:1500px) {
  .top_001 .link_box {
    bottom: -10vw;
    left: -2vw;
  }
}
@media screen and (max-width:600px) {
  .top_001 .link_box {
    bottom: -100vw;
    left: 10vw;
  }
}
.top_001 .link_box::after {
  position: absolute;
  top: -40px;
  left: -18px;
  display: block;
  width: 184px;
  height: 56px;
  content: "";
  background: url(../img/top_001_link_msg.svg) center/100% no-repeat;
}
@media screen and (max-width:600px) {
  .top_001 .link_box::after {
    top: -8.5vw;
    left: -6vw;
    width: 50vw;
    height: 16vw;
  }
}
.top_001 .link_box a {
  position: relative;
  display: flex;
  align-items: center;
  width: 148px;
  height: 162px;
  font-family: var(--shipporimincho);
  font-size: 22px;
  font-weight: 700;
  font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  background: url(../img/top_001_link_bg.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_001 .link_box a {
    width: 38vw;
    height: 42vw;
    font-family: var(--shipporimincho);
    font-size: 6.5vw;
  }
}
.top_001 .link_box a span {
  z-index: 2;
  display: block;
  width: 100%;
  padding-top: 10px;
  text-align: center;
}
@media screen and (max-width:600px) {
  .top_001 .link_box a span {
    padding-top: 5vw;
  }
}
.top_001 .link_box a span img {
  display: block;
  margin: 10px auto 0;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_001 .link_box a span img {
    margin: 1.5vw auto 0;
  }
}
.top_001 .link_box a:nth-child(2) {
  margin: -20px 0 0 82px;
}
.top_001 .link_box a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #999;
  opacity: 0;
  -webkit-mask: url(../img/top_001_link_bg_mask.svg) center/100% auto no-repeat;
  mask: url(../img/top_001_link_bg_mask.svg) center/100% auto no-repeat;
  transition: all 0.5s;
}
.top_001 .link_box a:hover span img {
  transform: translateX(10px);
}
.top_001 .link_box a:hover::before {
  opacity: 1;
}
.top_001 .man {
  display: inline-block;
  transform: translateX(2px) translateY(0px);
}

@-moz-document url-prefix() {
  .top_001 .text_box h2 {
    font-family: var(--shipporimincho);
  }
  .top_001 .man {
    transform: none;
  }
  .kakko {
    font-family: var(--shipporimincho);
  }
}
.top_002 {
  position: relative;
  padding-left: 98px;
}
@media screen and (max-width:834px) {
  .top_002 {
    width: 100%;
    padding-left: 0;
  }
}
.top_002 > div {
  display: flex;
  gap: 30px;
  width: 1260px;
  max-width: 90%;
  padding: 110px 0 0;
  margin: 0 auto 400px;
}
@media screen and (max-width:600px) {
  .top_002 > div {
    display: block;
    max-width: 88%;
    padding: 30vw 0 0;
    margin: 0 auto 20vw;
  }
}
.top_002 > div h2 {
  width: 70px;
  font-family: var(--shipporimincho-tate);
  font-size: 40px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width:600px) {
  .top_002 > div h2 {
    width: 83%;
    margin-left: 9vw;
    font-family: var(--shipporimincho);
    font-size: 7vw;
    writing-mode: horizontal-tb;
  }
}
.top_002 > div > div {
  position: relative;
  width: 670px;
}
@media screen and (max-width:600px) {
  .top_002 > div > div {
    max-width: 100%;
  }
}
.top_002 > div > div > span {
  font-family: var(--sofiasans);
  font-size: 20px;
  font-weight: 700;
  color: #c80e0e;
  letter-spacing: 1px;
}
@media screen and (max-width:600px) {
  .top_002 > div > div > span {
    font-size: 5vw;
  }
}
.top_002 > div > div .readmore {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--sofiasans);
  font-size: 16px;
  color: #c80e0e;
  letter-spacing: 0.05em;
  vertical-align: middle;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_002 > div > div .readmore {
    font-size: 4.5vw;
  }
}
.top_002 > div > div .readmore::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 0 0.3em;
  vertical-align: 2px;
  content: "";
  border-top: 1px solid #c80e0e;
  border-right: 1px solid #c80e0e;
  transition: all 0.5s;
  transform: rotate(45deg);
}
.top_002 > div > div .readmore:hover {
  color: #f2f2f2;
}
.top_002 > div > div .readmore:hover::after {
  border-color: #f2f2f2;
}
.top_002 > div > div ul li a {
  position: relative;
  box-sizing: border-box;
  display: block;
  display: table;
  width: 100%;
  padding: 36px 104px 36px 0;
  color: #fff;
  border-bottom: 1px solid #4d4d4d;
}
@media screen and (max-width:600px) {
  .top_002 > div > div ul li a {
    padding: 8vw 0;
  }
}
.top_002 > div > div ul li a time {
  display: table-cell;
  width: 32%;
  font-family: var(--sofiasans);
  font-size: 25px;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width:600px) {
  .top_002 > div > div ul li a time {
    display: block;
    width: 100%;
    font-size: 5vw;
    text-align: left;
  }
}
.top_002 > div > div ul li a p {
  display: table-cell;
  width: 68%;
  font-family: var(--notosansjp);
  font-size: 17px;
  line-height: 1.8;
}
@media screen and (max-width:600px) {
  .top_002 > div > div ul li a p {
    display: block;
    width: 100%;
    font-size: 4vw;
  }
}
.top_002 > div > div ul li a::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 22px;
  display: block;
  width: 54px;
  height: 6px;
  content: "";
  background: url(../img/top_002_arrow.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_002 > div > div ul li a::after {
    display: none;
  }
}
.top_002 > div > div ul li a:hover::after {
  transform: translateX(10px);
}
.top_002 .top_002_01 {
  position: absolute;
  top: -46px;
  right: 0;
  display: block;
  width: calc(50% - 400px);
  min-width: 430px;
  height: 583px;
  background: url(../img/top_002_01.webp) center/cover no-repeat;
}
@media screen and (max-width: 1280px) {
  .top_002 .top_002_01 {
    width: 30vw;
    min-width: auto;
  }
}
@media screen and (max-width:1024px) {
  .top_002 .top_002_01 {
    display: none;
  }
}

@-moz-document url-prefix() {
  .top_002 > div h2 {
    font-family: var(--shipporimincho);
  }
}
.top_003 {
  position: relative;
  width: 100%;
  padding: 130px 0 60px;
  overflow: hidden;
}
@media screen and (max-width:600px) {
  .top_003 {
    padding: 0;
  }
}
.top_003 > div {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .top_003 > div {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .top_003 > div {
    margin: 0 0 25vw;
  }
}
.top_003 > div > div {
  position: relative;
  display: flex;
  gap: 30px;
  width: 1260px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width:600px) {
  .top_003 > div > div {
    display: block;
  }
}
.top_003 > div > div h2 {
  width: 70px;
  font-family: var(--shipporimincho-tate);
  font-size: 40px;
  font-weight: 500;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width:600px) {
  .top_003 > div > div h2 {
    width: 90%;
    margin-left: 10vw;
    font-family: var(--shipporimincho);
    font-size: 7vw;
    writing-mode: horizontal-tb;
  }
}
.top_003 > div > div > div {
  width: 860px;
  max-width: 100%;
}
.top_003 > div > div > div > span {
  display: block;
  margin: 0 0 35px;
  font-family: var(--sofiasans);
  font-size: 20px;
  font-weight: 700;
  color: #c80e0e;
  letter-spacing: 1px;
}
@media screen and (max-width:600px) {
  .top_003 > div > div > div > span {
    margin: 0 0 8vw;
    font-size: 5vw;
  }
}
@media screen and (max-width:834px) {
  .top_003 > div > div > div ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width:834px) {
  .top_003 > div > div > div ul li {
    width: 48%;
  }
}
@media screen and (max-width:600px) {
  .top_003 > div > div > div ul li {
    width: 100%;
  }
}
.top_003 > div > div > div ul li a {
  color: #fff;
  transition: all 0.5s;
}
.top_003 > div > div > div ul li a:hover {
  opacity: 0.7;
}
.top_003 > div > div > div ul li a span {
  display: block;
  margin: 0 0 16px;
  font-family: var(--sofiasans);
  font-size: 25px;
  letter-spacing: 1px;
}
.top_003 > div > div > div ul li a time {
  display: block;
  margin: 0 0 5px;
  font-family: var(--sofiasans);
  font-size: 24px;
}
@media screen and (max-width:600px) {
  .top_003 > div > div > div ul li a time {
    margin: 0 0 1vw;
    font-family: var(--sofiasans);
    font-size: 6vw;
    letter-spacing: 0.05em;
  }
}
.top_003 > div > div > div ul li a p {
  margin: 0 0 25px;
  font-family: var(--notosansjp);
  font-size: 17px;
  line-height: 1.6;
}
@media screen and (max-width:600px) {
  .top_003 > div > div > div ul li a p {
    margin: 0 0 10vw;
    font-size: 16px;
  }
}
.top_003 > div > div > div ul li a img {
  width: 100%;
  margin: 0 0 20px;
}
.top_003 .not_swiper {
  display: none;
}
@media screen and (max-width:834px) {
  .top_003 .not_swiper {
    display: block;
  }
}
.top_003 .swiper {
  display: block;
  width: 1500px;
  /* 次への矢印 */
}
@media screen and (max-width:834px) {
  .top_003 .swiper {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .top_003 .swiper {
    width: 90vw;
  }
}
.top_003 .swiper .swiper-button-prev {
  top: 0;
  left: 0px;
  width: 350px;
  height: 100%;
  height: 300px;
  color: transparent;
  opacity: 0;
  transition: ease-in-out 0.2s;
}
@media screen and (max-width:600px) {
  .top_003 .swiper .swiper-button-prev {
    display: none;
  }
}
.top_003 .swiper .swiper-button-prev span {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}
.top_003 .swiper .swiper-button-prev span::before {
  position: absolute;
  top: calc(50% - 40px);
  right: 20px;
  z-index: 2;
  display: block;
  width: 80px;
  height: 80px;
  content: "";
  background: #f7f5f3;
  border-radius: 50%;
}
.top_003 .swiper .swiper-button-prev span::after {
  position: absolute;
  top: calc(50% - 40px);
  right: 20px;
  z-index: 3;
  width: 80px;
  height: 80px;
  content: "";
  background: url(../img/red_arrow.svg) center/100% no-repeat;
}
.top_003 .swiper .swiper-button-prev:hover {
  opacity: 1;
}
.top_003 .swiper .swiper-button-prev:hover span::after {
  transform: scale(1.2);
}
.top_003 .swiper .swiper-button-next {
  top: 0px;
  left: 56vw;
  width: 200px;
  height: 300px;
  color: transparent;
  opacity: 0;
  transition: ease-in-out 0.2s;
}
@media screen and (max-width:600px) {
  .top_003 .swiper .swiper-button-next {
    display: none;
  }
}
.top_003 .swiper .swiper-button-next span {
  position: relative;
  width: 100%;
  height: 100%;
}
.top_003 .swiper .swiper-button-next span::before {
  position: absolute;
  top: calc(50% - 40px);
  left: -50px;
  z-index: 2;
  display: block;
  width: 80px;
  height: 80px;
  content: "";
  background: #f7f5f3;
  border-radius: 50%;
}
.top_003 .swiper .swiper-button-next span::after {
  position: absolute;
  top: calc(50% - 40px);
  left: -50px;
  z-index: 3;
  width: 80px;
  height: 80px;
  content: "";
  background: url(../img/red_arrow.svg) center/100% no-repeat;
}
.top_003 .swiper .swiper-button-next:hover {
  opacity: 1;
}
.top_003 .swiper .swiper-button-disabled {
  visibility: hidden;
  transition: 0.5s;
}
.top_003 .readmore {
  position: absolute;
  top: 134px;
  right: 100px;
  font-family: var(--sofiasans);
  font-size: 16px;
  color: #c80e0e;
  letter-spacing: 0.05em;
  vertical-align: middle;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_003 .readmore {
    top: 11vw;
    right: 5vw;
    font-size: 4.5vw;
  }
}
.top_003 .readmore::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 0 0 0.3em;
  vertical-align: 2px;
  content: "";
  border-top: 1px solid #c80e0e;
  border-right: 1px solid #c80e0e;
  transition: all 0.5s;
  transform: rotate(45deg);
}
.top_003 .readmore:hover {
  color: #f2f2f2;
}
.top_003 .readmore:hover::after {
  border-color: #f2f2f2;
}

@-moz-document url-prefix() {
  .top_003 > div > div h2 {
    font-family: var(--shipporimincho);
  }
}
#top_menu {
  width: 100%;
  padding: 0 0 120px;
}
@media screen and (max-width:834px) {
  #top_menu {
    padding: 250px 0 120px;
  }
}
@media screen and (max-width:600px) {
  #top_menu {
    padding: 0 0 30vw;
  }
}
#top_menu > div {
  position: relative;
  width: calc(100% - 98px);
  padding: 40px 0 0;
  margin-left: 98px;
}
@media screen and (max-width:1024px) {
  #top_menu > div {
    padding: 60px 0 0;
  }
}
@media screen and (max-width:834px) {
  #top_menu > div {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  #top_menu > div {
    padding: 0;
  }
}
#top_menu > div > p {
  z-index: -1;
  width: 100%;
  margin-bottom: 20px;
  font-family: var(--sofiasans);
  font-size: 167px;
  line-height: 1;
  color: #a00e0e;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width:1024px) {
  #top_menu > div > p {
    font-size: 100px;
  }
}
@media screen and (max-width:834px) {
  #top_menu > div > p {
    top: -25vw;
    font-size: 16vw;
  }
}
@media screen and (max-width:600px) {
  #top_menu > div > p {
    top: 0;
    left: 1.5vw;
    width: 98.5vw;
    font-size: 24vw;
    line-height: 0.9;
  }
}
#top_menu ul.menu_list-text {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
  padding: 0px 40px;
  margin: 0 auto 65px;
}
@media (width <= 600px) {
  #top_menu ul.menu_list-text {
    padding: 0px 20px;
  }
}
#top_menu ul.menu_list-text li {
  width: calc((100% - 32px) / 5);
}
@media (width <= 600px) {
  #top_menu ul.menu_list-text li {
    width: calc((100% - 10px) / 2);
  }
}
#top_menu ul.menu_list-text li:nth-child(-n+3) {
  width: 100%;
}
@media (width > 600px) {
  #top_menu ul.menu_list-text li:nth-child(-n+3) {
    width: calc((100% - 16px) / 3);
  }
}
@media (width <= 600px) {
  #top_menu ul.menu_list-text li:nth-child(3) br {
    display: none;
  }
}
#top_menu ul.menu_list-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-family: var(--shipporimincho);
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  background-color: #a00e0e;
  border-radius: 25px;
  border-bottom-right-radius: 0px;
  transition: all 0.3s;
}
@media (width <= 1300px) {
  #top_menu ul.menu_list-text a {
    height: 80px;
    line-height: 1.2;
  }
}
@media (width <= 840px) {
  #top_menu ul.menu_list-text a {
    font-size: 20px;
  }
}
@media (width <= 600px) {
  #top_menu ul.menu_list-text a {
    height: 50px;
    font-size: 4vw;
  }
}
#top_menu ul.menu_list-text br {
  display: none;
}
@media (width <= 1300px) {
  #top_menu ul.menu_list-text br {
    display: block;
  }
}
@media (width <= 600px) {
  #top_menu ul.menu_list-text br {
    display: none;
  }
}
#top_menu ul.menu_list-text a:hover {
  color: #a00e0e;
  background-color: #ffffff;
}
#top_menu ul.menu_list-img {
  position: relative;
  display: flex;
  flex-flow: row;
  width: 94%;
  max-width: 1250px;
  margin: 0 auto 60px;
}
@media (width <= 600px) {
  #top_menu ul.menu_list-img {
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
#top_menu ul.menu_list-img li {
  display: flex;
  align-items: center;
}
@media (width <= 600px) {
  #top_menu ul.menu_list-img li {
    width: 32%;
  }
}
#top_menu ul.menu_list-img li img {
  width: 100%;
}
#top_menu ul.pickup_menu_list {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  row-gap: 50px;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0px 40px;
  margin: 0 auto 90px;
}
@media (width <= 700px) {
  #top_menu ul.pickup_menu_list {
    flex-flow: column;
    align-items: center;
  }
}
@media (width <= 600px) {
  #top_menu ul.pickup_menu_list {
    padding: 0px 7vw;
  }
}
#top_menu ul.pickup_menu_list li {
  position: relative;
  width: calc((100% - 16px) / 2);
  padding: 23px 23px 30px;
  background-color: #ffffff;
}
@media (width <= 700px) {
  #top_menu ul.pickup_menu_list li {
    width: 100%;
    max-width: 400px;
  }
}
@media (width < 600px) {
  #top_menu ul.pickup_menu_list li {
    padding: 10px 10px 16px;
  }
}
#top_menu ul.pickup_menu_list .wrapper_link {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 100%;
}
#top_menu ul.pickup_menu_list .label {
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: 1;
  font-family: var(--sofiasans);
  font-size: 47px;
  color: #a00e0e;
  letter-spacing: 0.03em;
}
@media (width <= 600px) {
  #top_menu ul.pickup_menu_list .label {
    top: -7px;
    left: 0px;
    font-size: 12vw;
  }
}
#top_menu ul.pickup_menu_list img {
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s;
}
#top_menu ul.pickup_menu_list .pickup_menu_header {
  display: flex;
  flex-flow: row;
  margin-bottom: 20px;
}
#top_menu ul.pickup_menu_list .title {
  font-family: var(--shipporimincho);
  font-size: 25px;
}
@media (width <= 1000px) {
  #top_menu ul.pickup_menu_list .title {
    font-size: 18px;
  }
}
@media (width <= 600px) {
  #top_menu ul.pickup_menu_list .title {
    font-size: 4.7vw;
    font-weight: 700;
  }
}
#top_menu ul.pickup_menu_list .price {
  margin-left: auto;
  font-family: var(--shipporimincho);
  font-size: 25px;
}
@media (width <= 1000px) {
  #top_menu ul.pickup_menu_list .price {
    font-size: 18px;
  }
}
@media (width <= 600px) {
  #top_menu ul.pickup_menu_list .price {
    font-size: 4.7vw;
    font-weight: 700;
  }
}
#top_menu ul.pickup_menu_list .description {
  max-width: 425px;
  font-size: 17px;
  line-height: 1.4705882353;
}
@media (width <= 600px) {
  #top_menu ul.pickup_menu_list .description {
    font-size: 4vw;
    line-height: 1.3;
  }
}
#top_menu ul.pickup_menu_list li:hover img {
  opacity: 0.8;
}
#top_menu .link_btn {
  position: relative;
  width: 85%;
  max-width: 1040px;
  height: 148px;
  margin: 0 auto;
  text-align: center;
  background-color: #a20e0e;
  transform: scale(1.15, 1);
}
@media screen and (max-width:1500px) {
  #top_menu .link_btn {
    width: 70%;
  }
}
@media screen and (max-width:600px) {
  #top_menu .link_btn {
    width: 80%;
    height: 28vw;
  }
}
#top_menu .link_btn span {
  position: absolute;
  top: calc(50% - 17px);
  left: 0;
  z-index: 2;
  width: 100%;
  font-family: var(--shipporimincho);
  font-size: 35px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media screen and (max-width:834px) {
  #top_menu .link_btn span {
    font-size: 3.5vw;
  }
}
@media screen and (max-width:600px) {
  #top_menu .link_btn span {
    top: calc(50% - 3vw);
    font-size: 5.6vw;
  }
}
#top_menu .link_btn::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #fff;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
#top_menu .link_btn img {
  position: absolute;
  top: calc(50% - 7px);
  right: 65px;
  z-index: 2;
  width: 45px;
  transition: all 0.5s;
}
@media screen and (max-width:834px) {
  #top_menu .link_btn img {
    right: 7.5%;
    z-index: 2;
    width: 4vw;
  }
}
@media screen and (max-width:600px) {
  #top_menu .link_btn img {
    top: calc(50% - 2vw);
    width: 6vw;
  }
}
#top_menu .link_btn:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
#top_menu .link_btn:hover img {
  transform: translateX(10px);
}

.top_005 {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .top_005 {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .top_005 {
    padding: 0;
  }
}
.top_005 div ul {
  display: flex;
}
@media screen and (max-width:600px) {
  .top_005 div ul {
    display: block;
  }
}
.top_005 div ul li {
  position: relative;
  width: 50%;
  height: 486px;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width:600px) {
  .top_005 div ul li {
    width: 100%;
    height: 116vw;
  }
}
.top_005 div ul li img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  transition: all 0.5s;
  transform: scale(1);
}
@media screen and (max-width:1500px) {
  .top_005 div ul li img {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width:600px) {
  .top_005 div ul li img {
    width: 100%;
    height: auto;
  }
}
.top_005 div ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
}
.top_005 div ul li h3 {
  display: block;
  margin: 153px 0 40px;
  font-family: var(--shipporimincho);
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  transform: scale(1.15, 1);
}
@media screen and (max-width:1024px) {
  .top_005 div ul li h3 {
    margin-top: 16vw;
  }
}
@media screen and (max-width:834px) {
  .top_005 div ul li h3 {
    font-size: 4vw;
  }
}
@media screen and (max-width:600px) {
  .top_005 div ul li h3 {
    margin: 35vw 0 4vw;
    font-size: 8vw;
    letter-spacing: 0.1em;
  }
}
.top_005 div ul li h3 span {
  display: block;
  margin: 18px 0 0;
  font-family: var(--sofiasans);
  font-size: 20px;
  color: #c80e0e;
}
@media screen and (max-width:834px) {
  .top_005 div ul li h3 span {
    font-size: 3.5vw;
  }
}
@media screen and (max-width:600px) {
  .top_005 div ul li h3 span {
    margin: 2vw 0 0;
    font-size: 4vw;
    letter-spacing: 1px;
  }
}
.top_005 div ul li p {
  font-family: var(--notosansjp);
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width:834px) {
  .top_005 div ul li p {
    width: 62%;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
  }
}
@media screen and (max-width:600px) {
  .top_005 div ul li p {
    width: 100%;
    margin: 0 auto;
    font-size: 4vw;
  }
}
.top_005 div ul li:hover img {
  transform: scale(1.05);
}
.top_005 div ul li::after {
  position: absolute;
  right: 57px;
  bottom: 43px;
  z-index: 1;
  display: block;
  width: 45px;
  height: 16px;
  content: "";
  background: url(../img/white_arrow.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_005 div ul li::after {
    right: calc(50% - 6vw);
    bottom: 30vw;
    width: 12vw;
    height: 4vw;
  }
}
.top_005 div ul li:hover::after {
  transform: translate(10px);
}

.top_006 {
  position: relative;
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .top_006 {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .top_006 {
    width: 93%;
    margin-left: 7%;
  }
}
.top_006::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 50vw;
  height: 100%;
  content: "";
  background-color: #fff;
}
.top_006 > div {
  width: calc(100% - 100px);
  margin-left: 100px;
}
@media screen and (max-width:1500px) {
  .top_006 > div {
    width: 100%;
    margin-left: 0;
  }
}
.top_006 .top_006_wrap {
  box-sizing: border-box;
  display: flex;
  gap: 30px;
  width: 1290px;
  max-width: 100%;
  padding: 110px 120px 166px 84px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 120px 0 0 0px;
}
@media screen and (max-width:1500px) {
  .top_006 .top_006_wrap {
    padding: 110px 5vw 166px 5vw;
  }
}
@media screen and (max-width:1024px) {
  .top_006 .top_006_wrap {
    display: block;
  }
}
@media screen and (max-width:600px) {
  .top_006 .top_006_wrap {
    padding: 10vw 5vw 35vw;
  }
}
.top_006 .top_006_wrap header {
  text-align: center;
}
.top_006 .top_006_wrap header img {
  width: 193px;
}
@media screen and (max-width:1500px) {
  .top_006 .top_006_wrap header img {
    width: 10vw;
  }
}
@media screen and (max-width:1024px) {
  .top_006 .top_006_wrap header img {
    width: 70%;
    max-width: 200px;
    margin: 0 auto 5vw;
  }
}
.top_006 .top_006_inner {
  width: 818px;
  max-width: 100%;
}
.top_006 .top_006_inner h2 {
  margin: 0 0 26px;
  font-family: var(--shipporimincho);
  font-size: 27px;
  font-weight: 800;
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner h2 {
    margin: 0;
    font-size: 7vw;
  }
}
.top_006 .top_006_inner h2 span {
  margin-right: 1em;
  font-size: 20px;
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner h2 span {
    display: block;
    margin: 0 0 1vw;
    font-size: 5vw;
    letter-spacing: 0;
  }
}
.top_006 .top_006_inner .image_box {
  display: flex;
  flex-flow: row;
  gap: 5px;
}
@media (width <= 600px) {
  .top_006 .top_006_inner .image_box {
    flex-flow: column;
  }
}
.top_006 .top_006_inner .map {
  width: 100%;
  height: 468px;
  margin: 0 0 50px;
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner .map {
    height: 56vw;
    margin: 0 0 6vw;
  }
}
.top_006 .top_006_inner > div {
  margin: 0 0 50px;
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner > div {
    margin: 0 0 10vw;
  }
}
.top_006 .top_006_inner dl {
  display: table;
  width: 100%;
  padding: 30px 12px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width:834px) {
  .top_006 .top_006_inner dl {
    display: block;
  }
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner dl:nth-child(2), .top_006 .top_006_inner dl:nth-child(3) {
    display: table;
  }
  .top_006 .top_006_inner dl:nth-child(2) dt, .top_006 .top_006_inner dl:nth-child(3) dt {
    display: table-cell;
    width: 50%;
  }
  .top_006 .top_006_inner dl:nth-child(2) dd, .top_006 .top_006_inner dl:nth-child(3) dd {
    display: table-cell;
    width: 50%;
  }
}
.top_006 .top_006_inner dl dt {
  display: table-cell;
  width: 20%;
  font-family: var(--shipporimincho);
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width:834px) {
  .top_006 .top_006_inner dl dt {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner dl dt {
    margin: 0 0 2.5vw;
  }
}
.top_006 .top_006_inner dl dt span {
  display: inline-block;
  width: 4.5em;
  margin-right: 5px;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.top_006 .top_006_inner dl dt::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 0.3em;
  content: "";
  background: #000;
  border-radius: 50%;
}
.top_006 .top_006_inner dl dt::after {
  display: inline-block;
  color: #000;
  content: "／";
  border-radius: 50%;
}
.top_006 .top_006_inner dl dd {
  display: table-cell;
  width: 80%;
  font-size: 16px;
  line-height: 1.9;
}
@media screen and (max-width:834px) {
  .top_006 .top_006_inner dl dd {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner dl dd {
    width: calc(100% - 3.5vw);
    margin-left: 3.5vw;
  }
}
.top_006 .top_006_inner ul {
  display: flex;
  gap: 8px;
}
@media screen and (max-width:834px) {
  .top_006 .top_006_inner ul {
    flex-direction: column;
  }
}
.top_006 .top_006_inner ul li {
  position: relative;
  width: calc(50% - 4px);
  height: 148px;
  background: #c80e0e;
}
@media screen and (max-width:834px) {
  .top_006 .top_006_inner ul li {
    width: 100%;
  }
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner ul li {
    height: 30vw;
    margin: 0;
  }
}
.top_006 .top_006_inner ul li a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.top_006 .top_006_inner ul li span {
  position: absolute;
  top: calc(50% - 17px);
  left: 0;
  z-index: 2;
  width: 95%;
  font-family: var(--shipporimincho);
  font-size: 29px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  transform: scale(1.15, 1);
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner ul li span {
    top: calc(50% - 4vw);
    width: 80%;
    margin-left: 7.5%;
    font-size: 6vw;
  }
}
.top_006 .top_006_inner ul li::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #999;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.top_006 .top_006_inner ul li::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 7.3%;
  z-index: 2;
  width: 35px;
  height: 16px;
  content: "";
  background: url(../img/white_arrow_w35.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .top_006 .top_006_inner ul li::after {
    top: calc(50% - 2.5vw);
    right: 6vw;
    width: 7vw;
    height: 3vw;
    background-image: url(../img/sp_white_arrow_w35.svg);
  }
}
.top_006 .top_006_inner ul li:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.top_006 .top_006_inner ul li:hover::after {
  transform: translateX(10px);
}

@media screen and (max-width:834px) {
  .footer_fix_btn {
    position: fixed;
    bottom: 0;
    left: 5%;
    z-index: 3;
    display: flex;
    gap: 2%;
    width: 90%;
    text-align: center;
    letter-spacing: 0.1em;
    transition: 0.3s;
    transform: translateY(100%);
  }
  .footer_fix_btn.active {
    transform: translate(0);
  }
  .footer_fix_btn a {
    display: block;
    width: 49%;
    padding: 3.5vw 0 3vw 0;
    font-family: var(--shipporimincho);
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    background: #c80e0e;
    border-radius: 5vw 5vw 0 0;
  }
  .footer_fix_btn a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 835px) {
  .footer_fix_btn {
    display: none;
  }
}
@media screen and (max-width:600px) {
  .footer_fix_btn a {
    font-size: 5vw;
  }
}
.footer {
  position: relative;
  padding: 140px 0 210px 98px;
  background: url(../img/footer_bg.svg) top -10px left calc(50% - 64px)/1231px auto no-repeat;
}
@media screen and (max-width:834px) {
  .footer {
    padding: 5vw 0 82vw;
  }
}
@media screen and (max-width:600px) {
  .footer {
    padding: 50vw 0 20vw;
    background: url(../img/sp_footer_bg.svg) bottom -4vw left 5vw/105vw auto no-repeat;
  }
}
.footer > img {
  position: absolute;
  top: -120px;
  left: calc(50% - 563px);
  width: 320px;
}
@media screen and (max-width:834px) {
  .footer > img {
    top: -10vw;
    left: 1vw;
    width: 30vw;
  }
}
@media screen and (max-width:600px) {
  .footer > img {
    top: -24vw;
    left: 4vw;
    width: 50vw;
  }
}
.footer > div {
  text-align: center;
}
@media screen and (max-width:600px) {
  .footer > div {
    position: relative;
  }
}
.footer > div dt {
  margin-bottom: 36px;
}
@media screen and (max-width:600px) {
  .footer > div dt {
    margin-bottom: 7vw;
  }
}
.footer > div dt img {
  width: 209px;
}
@media screen and (max-width:600px) {
  .footer > div dt img {
    width: 45vw;
  }
}
.footer > div dd {
  font-family: var(--shipporimincho);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;
}
.footer > div dd .insta {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin: 0 0 36px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width:600px) {
  .footer > div dd .insta {
    width: 12vw;
    height: 12vw;
    margin: 0 0 6vw;
  }
  .footer > div dd .insta img {
    width: 100%;
  }
}
.footer > div dd p {
  margin: 0 0 13px;
  font-family: var(--shipporimincho);
  font-size: 16px;
}
@media screen and (max-width:600px) {
  .footer > div dd p {
    margin: 0 0 1.5vw;
    font-size: 4vw;
  }
}
.footer > div dd .tel {
  margin: 0 0 24px;
  font-family: var(--shipporimincho);
  font-size: 26px;
  color: #fff;
}
@media screen and (max-width:600px) {
  .footer > div dd .tel {
    margin: 0 0 6vw;
    font-size: 7vw;
  }
}
.footer > div dd .hour {
  width: 86%;
  max-width: 384px;
  margin: 0 auto;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width:600px) {
  .footer > div dd .hour {
    font-size: 3.5vw;
  }
}
.footer > div dd .footer_btn {
  position: relative;
  width: 246px;
  height: 56px;
  margin: 24px auto 0;
  background: #c80e0e;
}
.footer > div dd .footer_btn span {
  position: absolute;
  top: calc(50% - 10px);
  z-index: 2;
  display: block;
  width: 100%;
  font-size: 17px;
  color: #fff;
  transform: scale(1.15, 1);
}
.footer > div dd .footer_btn::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #999;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.footer > div dd .footer_btn:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.footer > div dd .footer_btn::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 7.3%;
  z-index: 2;
  width: 16px;
  height: 16px;
  content: "";
  background: url(../img/white_arrow.svg) center/100% 100% no-repeat;
  transition: all 0.5s;
}
.footer nav {
  position: absolute;
  right: 50px;
  bottom: 46px;
}
@media screen and (max-width:834px) {
  .footer nav {
    bottom: 20vw;
  }
}
@media screen and (max-width:600px) {
  .footer nav {
    position: static;
    margin: 38vw 7vw 0;
  }
}
.footer nav div a {
  display: inline-block;
  color: #fff;
  transition: all 0.5s;
}
.footer nav div a:hover {
  color: #c80e0e;
}
.footer nav div ul {
  display: flex;
  flex-flow: column;
  gap: 30px;
  text-align: right;
}
@media screen and (max-width:600px) {
  .footer nav div ul {
    gap: 6vw;
  }
}
.footer nav div ul li {
  font-family: var(--shipporimincho);
  font-size: 15px;
  transition: all 0.3s;
}
@media screen and (max-width:600px) {
  .footer nav div ul li {
    font-size: 4vw;
  }
}
.footer nav div ul li::after {
  display: inline-block;
  width: 4px;
  height: 1px;
  margin: 0 0 0 0.5em;
  vertical-align: 5px;
  content: "";
  background-color: #fff;
  transition: all 0.3s;
}
.footer nav div ul li:hover::after {
  width: 10px;
  background-color: #c80e0e;
}
.footer nav div div {
  margin-top: 45px;
  font-family: var(--notosansjp);
  text-align: right;
}
@media screen and (max-width:600px) {
  .footer nav div div {
    margin-top: 9vw;
  }
}
.footer nav div div a {
  font-size: 12px;
}
.footer nav div div a:first-child {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #fff;
}
.footer .copyright {
  position: absolute;
  bottom: 48px;
  left: 140px;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width:834px) {
  .footer .copyright {
    bottom: 14vw;
    left: 28px;
  }
}
@media screen and (max-width:600px) {
  .footer .copyright {
    bottom: 101vw;
    left: 0;
    width: 100%;
    font-size: 3vw;
    color: #fff;
  }
}
.footer .copyright a {
  display: inline-block;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width:600px) {
  .footer .copyright a {
    font-size: 3vw;
  }
}
.footer .copyright a:hover {
  color: #c80e0e;
}

/*個別ページ共通*/
.common_header {
  width: 100%;
  height: 750px;
  background: url(../img/about_main.webp) center/cover no-repeat;
}
@media screen and (max-width:600px) {
  .common_header {
    height: 70vh;
    background-image: url(../img/sp_about_main.webp);
  }
}
.common_header div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 98px);
  height: 100%;
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .common_header div {
    width: 100%;
    margin-left: 0;
  }
}
.common_header h2 {
  font-family: var(--shipporimincho-tate);
  font-size: 35px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width:600px) {
  .common_header h2 {
    font-size: 7vw;
  }
}

@-moz-document url-prefix() {
  .common_header h2 {
    font-family: var(--shipporimincho);
  }
}
.page-contents {
  position: relative;
}
.page-contents .en_decoration {
  position: absolute;
  top: 504px;
  left: 98px;
  width: 170px;
  height: auto;
  font-family: var(--sofiasans);
  font-size: 192px;
  color: rgba(51, 51, 51, 0.3);
  writing-mode: vertical-rl;
}
@media screen and (max-width:834px) {
  .page-contents .en_decoration {
    display: none;
  }
}

/*aboutページ*/
@media screen and (max-width:600px) {
  .page-about .footer {
    padding-top: 21vw;
  }
}

.about_001 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  width: 100%;
  max-width: 1010px;
  padding: 132px 0 30px;
  margin: 0 auto;
  overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
  .about_001 {
    display: block;
    padding: 15vw 0 0;
    text-align: center;
  }
}
.about_001 h2 {
  width: 150px;
  padding-right: 5px;
  font-family: var(--shipporimincho-tate);
  font-size: 32px;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width: 1200px) {
  .about_001 h2 {
    width: 100%;
    margin: 0 0 50px;
    font-family: var(--shipporimincho);
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width:600px) {
  .about_001 h2 {
    width: 85%;
    margin: 0 auto 8vw;
    font-size: 6vw;
    line-height: 1.8;
    text-align: center;
  }
}
.about_001 h2.load-fade.done {
  transform: scale(1.25, 1) translate(0, 0);
}
.about_001 p {
  font-family: var(--shipporimincho-tate);
  font-size: 22px;
  font-weight: 500;
  line-height: 2.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.1, 1);
}
@media screen and (max-width: 1200px) {
  .about_001 p {
    font-family: var(--shipporimincho);
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width:600px) {
  .about_001 p {
    font-size: 4.5vw;
    line-height: 2.3;
    text-align: center;
  }
}
.about_001 p .man {
  display: inline-block;
  transform: translateX(2px) translateY(0px);
}
@media screen and (max-width:600px) {
  .about_001 p .man {
    transform: none;
  }
}
.about_001 p .number {
  display: inline-block;
  margin: -0.6em 0;
  writing-mode: rl-tb;
}
.about_001 p.load-fade.done {
  transform: scale(1.1, 1) translate(0, 0);
}

@-moz-document url-prefix() {
  .about_001 h2 {
    font-family: var(--shipporimincho);
  }
}
.about_002 {
  position: relative;
  padding: 90px 0 0;
  overflow-x: hidden;
  background: url(../img/about_002_bg.webp) bottom/100% no-repeat;
}
@media screen and (max-width:1024px) {
  .about_002 {
    width: calc(100% - 98px);
    margin-left: 98px;
  }
}
@media screen and (max-width:834px) {
  .about_002 {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .about_002 {
    padding: 35vw 0 0;
    background: url(../img/sp_about_002_bg.webp) bottom -41vw center/100% no-repeat;
  }
}
.about_002 h2 {
  position: absolute;
  top: 10px;
  left: calc(50% - 586px);
  font-family: var(--shipporimincho-tate);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width: 1200px) {
  .about_002 h2 {
    position: static;
    margin: 0 0 100px;
    font-family: var(--shipporimincho);
    text-align: center;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width:600px) {
  .about_002 h2 {
    position: static;
    margin: 0 0 10vw;
    font-family: var(--shipporimincho);
    font-size: 8vw;
    text-align: center;
    writing-mode: horizontal-tb;
  }
}
.about_002 h2.effect-scroll {
  opacity: 1;
  transform: scale(1.25, 1) translate(0, 0);
}
.about_002 h2 .man {
  display: inline-block;
  transform: translateX(4px) translateY(4px);
}
@media screen and (max-width:600px) {
  .about_002 h2 .man {
    transform: none;
  }
}
.about_002 div {
  width: calc(100% - 98px);
  padding: 57px 0 0;
}
@media screen and (max-width:600px) {
  .about_002 div {
    width: 100%;
  }
}
.about_002 ol {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .about_002 ol {
    padding-left: 5%;
  }
}
@media screen and (max-width:834px) {
  .about_002 ol {
    padding: 0 5%;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol {
    width: 88%;
    padding: 0;
  }
}
.about_002 ol li {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 0 150px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li {
    margin: 0 0 200px;
  }
}
@media screen and (max-width:1024px) {
  .about_002 ol li {
    max-width: 50vw;
  }
}
@media screen and (max-width:834px) {
  .about_002 ol li {
    max-width: 66%;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li {
    max-width: 100%;
    margin: 0 0 23vw;
  }
}
.about_002 ol li img {
  position: absolute;
}
.about_002 ol li:nth-child(1) {
  margin-left: 125px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(1) {
    margin: 0 0 250px;
  }
}
@media screen and (max-width:834px) {
  .about_002 ol li:nth-child(1) {
    margin: 0 0 25vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(1) {
    padding-bottom: 99vw;
  }
}
.about_002 ol li:nth-child(1) img {
  top: 145px;
  left: calc(50% + 350px);
  width: 430px;
}
@media screen and (max-width:834px) {
  .about_002 ol li:nth-child(1) img {
    top: 2vw;
  }
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(1) img {
    top: 0;
    right: -36vw;
    left: auto;
    width: 31vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(1) img {
    top: auto;
    right: -5vw;
    bottom: 0;
    left: auto;
    width: 64vw;
  }
}
.about_002 ol li:nth-child(2) {
  margin-bottom: 300px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(2) {
    margin: 0 0 150px 30vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(2) {
    padding: 27vw 0 0;
    margin: 0 0 25vw;
  }
}
.about_002 ol li:nth-child(2) img {
  top: 145px;
  left: calc(50% + 350px);
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(2) img {
    top: 0;
    left: -35.5vw;
    width: 29vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(2) img {
    top: -48vw;
    left: 0;
    width: 50vw;
  }
}
.about_002 ol li:nth-child(3) {
  margin-left: 400px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(3) {
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(3) {
    padding: 94vw 0 0;
  }
}
.about_002 ol li:nth-child(3) img {
  top: -160px;
  right: calc(50% + 340px);
  width: 653px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(3) img {
    top: 0;
    right: -55vw;
    width: 50vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(3) img {
    top: -5vw;
    right: auto;
    left: -5vw;
    width: 90vw;
  }
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(4) {
    margin: 0 0 150px 30vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(4) {
    padding: 95vw 0 0;
    margin: 0;
  }
}
.about_002 ol li:nth-child(4) img {
  top: 24px;
  right: calc(50% - 700px);
  width: 342px;
}
@media screen and (max-width: 1200px) {
  .about_002 ol li:nth-child(4) img {
    top: 0;
    right: auto;
    left: -35.5vw;
  }
}
@media screen and (max-width:834px) {
  .about_002 ol li:nth-child(4) img {
    width: 31vw;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol li:nth-child(4) img {
    top: 0;
    right: -5vw;
    left: auto;
    width: 70vw;
  }
}
.about_002 ol header {
  display: flex;
  gap: 60px;
  align-items: center;
  margin: 0 0 24px;
}
@media screen and (max-width:600px) {
  .about_002 ol header {
    gap: 9vw;
    align-items: start;
    margin: 0 0 5vw;
  }
}
.about_002 ol header span {
  display: inline-block;
  width: 100px;
  height: 117px;
  padding: 27px 0 26px;
  font-family: var(--shipporimincho);
  font-size: 50px;
  color: #fff;
  text-align: center;
  background: url(../img/about_num_bg.svg) center/100% no-repeat;
}
@media screen and (max-width:834px) {
  .about_002 ol header span {
    width: 66px;
    height: auto;
    padding: 22px 0 22px;
    font-size: 25px;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol header span {
    width: 16vw;
    padding: 3.5vw 0 4.2vw;
    font-size: 8.5vw;
  }
}
.about_002 ol header h3 {
  font-family: var(--shipporimincho);
  font-size: 32px;
  line-height: 1.5;
  color: #fff;
  transform: scale(1.25, 1);
}
@media screen and (max-width:834px) {
  .about_002 ol header h3 {
    font-size: 23px;
  }
}
@media screen and (max-width:600px) {
  .about_002 ol header h3 {
    font-size: 6vw;
    line-height: 1.35;
  }
}
.about_002 ol p {
  font-family: var(--shipporimincho);
  font-size: 18px;
  line-height: 2.3;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width:600px) {
  .about_002 ol p {
    font-size: 16px;
  }
}
.about_002 .msg {
  padding: 200px 0 301px;
  font-family: var(--shipporimincho);
  font-size: 25px;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  transform: scale(1.25, 1);
}
@media screen and (max-width: 1200px) {
  .about_002 .msg {
    width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width:600px) {
  .about_002 .msg {
    width: 100%;
    padding: 30vw 0 36vw;
    font-size: 5vw;
    line-height: 2.2;
  }
}

@-moz-document url-prefix() {
  .about_002 h2 {
    font-family: var(--shipporimincho);
  }
}
.about_003#top_menu {
  width: 100%;
  padding: 0 0 120px;
}
@media screen and (max-width:834px) {
  .about_003#top_menu {
    padding: 250px 0 120px;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu {
    padding: 0 0 30vw;
  }
}
.about_003#top_menu div {
  position: relative;
  width: calc(100% - 98px);
  padding: 40px 0 0;
  margin-left: 98px;
}
@media screen and (max-width:1024px) {
  .about_003#top_menu div {
    padding: 60px 0 0;
  }
}
@media screen and (max-width:834px) {
  .about_003#top_menu div {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu div {
    padding: 0;
  }
}
.about_003#top_menu div > p {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  font-family: var(--sofiasans);
  font-size: 167px;
  line-height: 1;
  color: #a00e0e;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width:1024px) {
  .about_003#top_menu div > p {
    font-size: 100px;
  }
}
@media screen and (max-width:834px) {
  .about_003#top_menu div > p {
    top: -25vw;
    font-size: 16vw;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu div > p {
    top: 0;
    left: 1.5vw;
    width: 98.5vw;
    font-size: 45vw;
    line-height: 0.9;
  }
}
.about_003#top_menu ul {
  position: relative;
  width: 94%;
  max-width: 1250px;
  height: 447px;
  margin: 0 auto 60px;
}
@media screen and (max-width:1500px) {
  .about_003#top_menu ul {
    height: 34vw;
  }
}
@media screen and (max-width:834px) {
  .about_003#top_menu ul {
    width: 85%;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu ul {
    width: 80%;
    height: 142vw;
    margin: 0 auto 30vw;
  }
}
.about_003#top_menu ul li {
  position: absolute;
}
@media screen and (min-width: 1501px) {
  .about_003#top_menu ul li:first-child {
    top: 0;
    left: 0;
    width: 464px;
  }
  .about_003#top_menu ul li:nth-child(2) {
    top: 18px;
    left: calc(50% - 134px);
    width: 312px;
  }
  .about_003#top_menu ul li:nth-child(3) {
    top: 0;
    right: 20px;
    width: 414px;
  }
  .about_003#top_menu ul li:nth-child(4) {
    bottom: -7px;
    left: 10px;
    width: 318px;
  }
  .about_003#top_menu ul li:nth-child(5) {
    bottom: -2px;
    left: calc(50% - 263px);
    width: 399px;
  }
  .about_003#top_menu ul li:nth-child(6) {
    right: 90px;
    bottom: 0;
    width: 372px;
  }
}
@media screen and (max-width:1500px) {
  .about_003#top_menu ul li {
    width: 26vw;
  }
  .about_003#top_menu ul li:first-child {
    top: 0;
    left: 0;
  }
  .about_003#top_menu ul li:nth-child(2) {
    top: 0;
    left: calc(50% - 15vw);
  }
  .about_003#top_menu ul li:nth-child(3) {
    top: 0;
    right: 40px;
  }
  .about_003#top_menu ul li:nth-child(4) {
    bottom: 0;
    left: 0;
  }
  .about_003#top_menu ul li:nth-child(5) {
    bottom: 0;
    left: calc(50% - 15vw);
  }
  .about_003#top_menu ul li:nth-child(6) {
    right: 2vw;
    bottom: 0;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu ul li {
    width: 40vw;
    text-align: center;
  }
  .about_003#top_menu ul li:first-child {
    top: -6vw;
    left: -1vw;
    width: 60vw;
  }
  .about_003#top_menu ul li:nth-child(2) {
    top: 32vw;
    left: 38vw;
    width: 43vw;
  }
  .about_003#top_menu ul li:nth-child(3) {
    top: 49vw;
    right: 26.5vw;
    width: 58vw;
  }
  .about_003#top_menu ul li:nth-child(4) {
    bottom: 28.5vw;
    left: 40vw;
    width: 46vw;
  }
  .about_003#top_menu ul li:nth-child(5) {
    bottom: 6vw;
    left: -4vw;
    width: 50vw;
  }
  .about_003#top_menu ul li:nth-child(6) {
    bottom: -22vw;
    left: 30vw;
    width: 48vw;
  }
}
.about_003#top_menu ul li a :hover {
  transition: all 0.5s;
  transform: translateY(-10px);
}
.about_003#top_menu ul li img {
  width: 100%;
}
.about_003#top_menu .link_btn {
  position: relative;
  width: 85%;
  max-width: 1040px;
  height: 148px;
  margin: 0 auto;
  text-align: center;
  background-color: #a20e0e;
  transform: scale(1.15, 1);
}
@media screen and (max-width:1500px) {
  .about_003#top_menu .link_btn {
    width: 70%;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu .link_btn {
    width: 80%;
    height: 28vw;
  }
}
.about_003#top_menu .link_btn span {
  position: absolute;
  top: calc(50% - 17px);
  left: 0;
  z-index: 2;
  width: 100%;
  font-family: var(--shipporimincho);
  font-size: 35px;
  font-weight: 700;
  color: #000;
  text-align: center;
}
@media screen and (max-width:834px) {
  .about_003#top_menu .link_btn span {
    font-size: 3.5vw;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu .link_btn span {
    top: calc(50% - 3vw);
    font-size: 5.6vw;
  }
}
.about_003#top_menu .link_btn::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #fff;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.about_003#top_menu .link_btn img {
  position: absolute;
  top: calc(50% - 7px);
  right: 65px;
  z-index: 2;
  width: 45px;
  transition: all 0.5s;
}
@media screen and (max-width:834px) {
  .about_003#top_menu .link_btn img {
    right: 7.5%;
    z-index: 2;
    width: 4vw;
  }
}
@media screen and (max-width:600px) {
  .about_003#top_menu .link_btn img {
    top: calc(50% - 2vw);
    width: 6vw;
  }
}
.about_003#top_menu .link_btn:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.about_003#top_menu .link_btn:hover img {
  transform: translateX(10px);
}
@media screen and (max-width:600px) {
  .about_003#top_menu {
    padding: 0;
  }
}

/*メニューページ*/
/*メニューページ*/
.page-menu .common_header {
  background-image: url(../img/menu_main.webp);
}
@media screen and (max-width:600px) {
  .page-menu .common_header {
    background-image: url(../img/sp_menu_main.webp);
  }
}

.menu_001 {
  padding: 130px 0 0;
}

.menu_box {
  width: calc(100% - 98px);
  margin-left: 98px;
  overflow: hidden;
}
@media screen and (max-width:834px) {
  .menu_box {
    width: 100%;
    padding: 10vw 5%;
    margin: 0 auto;
  }
}
.menu_box > div {
  position: relative;
  display: flex;
  gap: 60px;
  max-width: 1400px;
  padding: 0 100px;
  margin: 0 auto 130px;
}
@media screen and (max-width: 1350px) {
  .menu_box > div {
    display: block;
    padding: 0 5vw;
  }
}
@media screen and (max-width:834px) {
  .menu_box > div {
    padding: 0;
    margin: 0;
  }
}
.menu_box > div h2 {
  font-family: var(--shipporimincho-tate);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  writing-mode: vertical-rl;
  transform: scale(1.25, 1);
}
@media screen and (max-width: 1350px) {
  .menu_box > div h2 {
    position: static;
    margin: 0 0 50px;
    font-size: 40px;
    text-align: left;
    writing-mode: horizontal-tb;
  }
}
@media screen and (max-width:834px) {
  .menu_box > div h2 {
    margin: 0 0 7vw;
    font-size: 5vw;
  }
}
@media screen and (max-width:600px) {
  .menu_box > div h2 {
    font-size: 7vw;
  }
}
.menu_box > div h2.effect-scroll {
  opacity: 1;
  transform: scale(1.25, 1) translate(0, 0);
}
.menu_box > div h2 .man {
  display: inline-block;
  transform: translateX(4px) translateY(4px);
}

.menu_img_list {
  display: flex;
  gap: 1%;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width:600px) {
  .menu_img_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4%;
    width: 100vw;
    margin-left: -5vw;
  }
}
.menu_img_list li {
  width: 32.66%;
}
@media screen and (max-width:600px) {
  .menu_img_list li {
    width: 49.3%;
    margin: 0 0 1vw;
  }
  .menu_img_list li:first-child {
    width: 100%;
  }
}
.menu_img_list li img {
  width: 100%;
}

.menu_list h3 {
  margin: 0 0 34px;
  font-family: var(--shipporimincho);
  font-size: 23px;
  color: #fff;
}
@media screen and (max-width:600px) {
  .menu_list h3 {
    margin: 0 0 5vw;
    font-size: 5vw;
  }
}
.menu_list h3::before {
  display: inline-block;
  width: 15px;
  height: 16px;
  margin-right: 0.5em;
  content: "";
  background: url(../img/menu_title_icon.svg) center/100% no-repeat;
}
.menu_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 26px);
  margin-left: 26px;
}
@media screen and (max-width: 1250px) {
  .menu_list ul {
    gap: 2vw;
    width: 98%;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .menu_list ul {
    gap: 3vw;
  }
}
.menu_list ul:first-child {
  margin-left: 26px;
}
@media screen and (max-width: 1110px) {
  .menu_list ul:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .menu_list ul:first-child {
    margin: 0 0 3vw;
  }
}
.menu_list ul li {
  display: flex;
  justify-content: space-between;
}
.menu_list ul li p {
  font-family: var(--shipporimincho);
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .menu_list ul li p {
    font-size: 18px;
  }
}
@media screen and (max-width:834px) {
  .menu_list ul li p {
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  .menu_list ul li p {
    font-size: 4vw;
  }
}
.menu_list ul li small {
  margin-left: 0.5em;
  font-family: var(--shipporimincho);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1250px) {
  .menu_list ul li small {
    font-size: 14px;
  }
}
@media screen and (max-width:834px) {
  .menu_list ul li small {
    font-size: 12px;
  }
}
@media screen and (max-width:600px) {
  .menu_list ul li small {
    font-size: 3vw;
  }
}
.menu_list ul li span {
  font-family: var(--shipporimincho);
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .menu_list ul li span {
    font-size: 18px;
  }
}
@media screen and (max-width:834px) {
  .menu_list ul li span {
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  .menu_list ul li span {
    font-size: 4vw;
  }
}

.menu_list_inner {
  margin: 0 0 88px;
}
@media screen and (max-width:600px) {
  .menu_list_inner {
    margin-bottom: 14vw;
  }
}

.menu_list_001 {
  display: flex;
  gap: 90px;
  margin: 0;
}
@media screen and (max-width: 1060px) {
  .menu_list_001 {
    gap: 3vw;
  }
}
@media screen and (max-width:600px) {
  .menu_list_001 {
    display: block;
  }
}
.menu_list_001 .menu_list_inner {
  width: calc(50% - 45px);
}
@media screen and (max-width: 1060px) {
  .menu_list_001 .menu_list_inner {
    width: calc(50% - 1.5vw);
  }
}
@media screen and (max-width:600px) {
  .menu_list_001 .menu_list_inner {
    width: 100%;
  }
}

@-moz-document url-prefix() {
  .menu_box > div h2 {
    font-family: var(--shipporimincho);
  }
}
.menu_002 .menu_list_inner {
  display: flex;
  gap: 90px;
}
@media screen and (max-width:600px) {
  .menu_002 .menu_list_inner {
    display: block;
  }
}
@media screen and (max-width: 1250px) {
  .menu_002 .menu_list_inner {
    gap: 2vw;
  }
}
@media screen and (max-width:600px) {
  .menu_002 .menu_list_inner {
    display: block;
  }
}
.menu_002 .menu_list_inner li {
  max-width: 455px;
}

.menu_list_002_02 {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 1250px) {
  .menu_list_002_02 {
    gap: 2vw;
  }
}
@media screen and (max-width:600px) {
  .menu_list_002_02 {
    display: block;
  }
}
.menu_list_002_02 .menu_list_inner {
  display: block;
  width: calc(50% - 45px);
}
@media screen and (max-width: 1250px) {
  .menu_list_002_02 .menu_list_inner {
    width: calc(50% - 1vw);
  }
}
@media screen and (max-width:600px) {
  .menu_list_002_02 .menu_list_inner {
    width: 100%;
  }
}

.menu_002 > div {
  margin-bottom: 200px;
}
@media screen and (max-width:834px) {
  .menu_002 > div {
    margin: 0;
  }
}
.menu_002 > div .menu_img_list {
  margin-bottom: 95px;
}
@media screen and (max-width:600px) {
  .menu_002 > div .menu_img_list {
    margin-bottom: 12vw;
  }
}

.hoppy {
  width: 100%;
  max-width: 990px;
  margin: 0 0 82px;
}
@media screen and (max-width:600px) {
  .hoppy {
    margin: 0 0 15vw;
  }
}
.hoppy h3 {
  margin: 0 0 30px;
  font-family: var(--shipporimincho);
  font-size: 37px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1350px) {
  .hoppy h3 {
    font-size: 30px;
  }
}
@media screen and (max-width:600px) {
  .hoppy h3 {
    font-size: 5vw;
  }
}
.hoppy h3 span {
  color: #c80e0e;
}
.hoppy .hoppy_inner {
  display: flex;
  gap: 55px;
  margin: 0 0 80px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 36px;
}
@media screen and (max-width: 1350px) {
  .hoppy .hoppy_inner {
    gap: 3vw;
  }
}
@media screen and (max-width:600px) {
  .hoppy .hoppy_inner {
    flex-flow: column-reverse;
  }
}
.hoppy .hoppy_inner > div {
  box-sizing: border-box;
  width: calc(100% - 461px);
  padding: 47px 0 47px 47px;
}
@media screen and (max-width: 1350px) {
  .hoppy .hoppy_inner > div {
    width: calc(100% - 33vw);
    padding: 3vw 0 3vw 3vw;
  }
}
@media screen and (max-width:600px) {
  .hoppy .hoppy_inner > div {
    width: 100%;
    padding: 5vw 6vw 10vw;
  }
}
.hoppy .hoppy_inner > div > p {
  margin-left: 1.5em;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 1350px) {
  .hoppy .hoppy_inner > div > p {
    font-size: 16px;
  }
}
@media screen and (max-width:1024px) {
  .hoppy .hoppy_inner > div > p {
    margin-left: 0;
    font-size: 15px;
  }
}
@media screen and (max-width:600px) {
  .hoppy .hoppy_inner > div > p {
    margin: 0 0 4vw;
  }
}
.hoppy .hoppy_inner dl {
  padding-bottom: 10px;
}
.hoppy .hoppy_inner dl dt {
  margin: 0 0 22px;
  font-family: var(--shipporimincho);
  font-size: 25px;
}
@media screen and (max-width: 1350px) {
  .hoppy .hoppy_inner dl dt {
    font-size: 22px;
  }
}
@media screen and (max-width:600px) {
  .hoppy .hoppy_inner dl dt {
    font-size: 5vw;
  }
}
.hoppy .hoppy_inner dl dt::before {
  display: inline-block;
  width: 15px;
  height: 16px;
  margin-right: 0.5em;
  content: "";
  background: url(../img/menu_title_icon_black.svg) center/100% no-repeat;
}
.hoppy .hoppy_inner dl dd {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px 1.2em;
  font-family: var(--shipporimincho);
  font-size: 23px;
}
@media screen and (max-width: 1350px) {
  .hoppy .hoppy_inner dl dd {
    font-size: 19px;
  }
}
@media screen and (max-width:1024px) {
  .hoppy .hoppy_inner dl dd {
    margin: 0 0 1vw 0;
    font-size: 17px;
  }
}
@media screen and (max-width:600px) {
  .hoppy .hoppy_inner dl dd {
    font-size: 4.2vw;
  }
  .hoppy .hoppy_inner dl dd small {
    font-size: 3vw;
  }
}
.hoppy .hoppy_inner img {
  width: 406px;
}
@media screen and (max-width: 1350px) {
  .hoppy .hoppy_inner img {
    width: 30vw;
  }
}
@media screen and (max-width:600px) {
  .hoppy .hoppy_inner img {
    width: 100%;
  }
}

.menu_003 {
  display: flex;
  gap: 90px;
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .menu_003 {
    width: 100%;
    padding: 10vw 5%;
    margin: 0 auto;
  }
}
.menu_003 .menu_list_inner {
  width: 100%;
}

.menu_list_003_01 .menu_list_inner {
  max-width: 620px;
}
.menu_list_003_01 .menu_list_inner li {
  display: flex;
}
@media screen and (max-width:600px) {
  .menu_list_003_01 .menu_list_inner li {
    display: block;
  }
}
@media screen and (max-width:600px) {
  .menu_list_003_01 .menu_list_inner li span {
    display: block;
    margin: 2vw 0;
    text-align: right;
  }
}

.menu_list_003_02 {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 1250px) {
  .menu_list_003_02 {
    gap: 2vw;
  }
}
@media screen and (max-width:600px) {
  .menu_list_003_02 {
    display: block;
  }
}
.menu_list_003_02 > div {
  width: calc(50% - 45px);
}
@media screen and (max-width: 1250px) {
  .menu_list_003_02 > div {
    width: calc(50% - 2vw);
  }
}
@media screen and (max-width:600px) {
  .menu_list_003_02 > div {
    width: 100%;
  }
}

.menu_list_003_03 .menu_list_inner,
.menu_list_003_04 .menu_list_inner {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 1250px) {
  .menu_list_003_03 .menu_list_inner,
  .menu_list_003_04 .menu_list_inner {
    gap: 2vw;
  }
}
@media screen and (max-width:600px) {
  .menu_list_003_03 .menu_list_inner,
  .menu_list_003_04 .menu_list_inner {
    display: block;
  }
}

.menu_list_003_05 .menu_list_inner {
  max-width: 620px;
  margin-left: 26px;
}
@media screen and (max-width: 1250px) {
  .menu_list_003_05 .menu_list_inner {
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .menu_list_003_05 .menu_list_inner:nth-child(2) li:nth-child(2) span {
    width: 38%;
  }
}
.menu_list_003_05 .menu_list_inner:nth-child(3) {
  max-width: 640px;
}
.menu_list_003_05 .menu_list_inner ul {
  margin-left: 26px;
}
@media screen and (max-width: 1250px) {
  .menu_list_003_05 .menu_list_inner ul {
    margin-left: 0;
  }
}

.menu_list_inner#wine li:nth-child(3) {
  display: block;
  width: 110%;
}
@media screen and (max-width:834px) {
  .menu_list_inner#wine li:nth-child(3) {
    width: 100%;
  }
}
.menu_list_inner#wine li:nth-child(3) h4 {
  margin: 0 0 20px;
  font-family: var(--shipporimincho);
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .menu_list_inner#wine li:nth-child(3) h4 {
    font-size: 18px;
  }
}
@media screen and (max-width:834px) {
  .menu_list_inner#wine li:nth-child(3) h4 {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
.menu_list_inner#wine li:nth-child(3) ul {
  margin-left: 1em;
}
@media screen and (max-width:600px) {
  .menu_list_inner#wine li:nth-child(3) ul {
    margin-left: 0;
  }
  .menu_list_inner#wine li:nth-child(3) ul li {
    display: block;
  }
  .menu_list_inner#wine li:nth-child(3) ul li span {
    display: block;
    margin: 2vw 0;
    text-align: right;
  }
}

@media screen and (max-width:600px) {
  .menu_list_inner:nth-child(4) li {
    display: block;
  }
  .menu_list_inner:nth-child(4) li span {
    display: block;
    margin: 2vw 0;
    text-align: right;
  }
}
@media screen and (max-width:600px) {
  .page-menu .footer {
    padding-top: 20vw;
  }
}

@media screen and (max-width:600px) {
  .-en .menu_list h3 {
    margin: 0 0 5vw 0.9em;
    font-size: 5vw;
    line-height: 1.4;
    text-indent: -0.9em;
  }
  .-en .menu_list h3::before {
    width: 3vw;
    height: 3vw;
    margin-right: 0.3em;
  }
}
.-en .menu_list ul li small {
  letter-spacing: 0;
}
.-en #kushiyaki-tori li:nth-child(3) small,
.-en #kushiyaki-tori li:nth-child(4) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #kushiyaki-buta li:last-child small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #kushiyaki-yasai ul:nth-child(2) li:nth-child(n+2) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #agemono ul:nth-child(2) li:nth-child(3) small,
.-en #agemono ul:nth-child(2) li:nth-child(4) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #speed ul:nth-child(2) li:nth-child(4) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #ippin ul:nth-child(1) li:nth-child(3) {
  display: block;
}
.-en #ippin ul:nth-child(1) li:nth-child(3) span {
  display: block;
  margin: 5px 0 0 -0.1em;
  text-align: right;
}
.-en #ippin ul:nth-child(1) li:nth-child(6) {
  display: block;
}
.-en #ippin ul:nth-child(1) li:nth-child(6) span {
  display: block;
  margin: 5px 0 0 -0.1em;
  text-align: right;
}
.-en #ippin ul:nth-child(1) li:nth-child(7) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #ippin ul:nth-child(2) li:first-child {
  display: block;
}
.-en #ippin ul:nth-child(2) li:first-child span {
  display: block;
  margin: 5px 0 0 -0.1em;
  text-align: right;
}
.-en #ippin ul:nth-child(2) li:nth-child(3) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #ippin ul:nth-child(2) li:last-child {
  display: block;
}
.-en #ippin ul:nth-child(2) li:last-child span {
  display: block;
  margin: 5px 0 0 -0.1em;
  text-align: right;
}
.-en #gohan ul:nth-child(1) li:nth-child(2) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #gohan ul:nth-child(2) li:nth-child(1) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}
.-en #shochu ul:nth-child(1) li:nth-child(n+3) {
  display: block;
}
.-en #shochu ul:nth-child(1) li:nth-child(n+3) span {
  display: block;
  margin: 5px 0 0 -0.1em;
  text-align: right;
}
.-en #shochu ul:nth-child(2) li:nth-child(n+3) {
  display: block;
}
.-en #shochu ul:nth-child(2) li:nth-child(n+3) span {
  display: block;
  margin: 5px 0 0 -0.1em;
  text-align: right;
}

@media screen and (max-width:600px) {
  .-en .menu_list_003_05 .menu_list_inner:nth-child(2) li:nth-child(2) span {
    width: auto;
  }
}

/*店舗情報ページ*/
.page-shop .common_header {
  background-image: url(../img/shop_main.webp);
}
.page-shop .page-contents .en_decoration {
  color: rgba(51, 51, 51, 0.2);
}
@media screen and (max-width:1024px) {
  .page-shop .page-contents .en_decoration {
    display: none;
  }
}
@media screen and (max-width:600px) {
  .page-shop .footer {
    padding-top: 33vw;
  }
}

.shop_001 {
  box-sizing: border-box;
  width: calc(100% - 320px);
  padding: 50px 0 150px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 0 0 150px 150px;
}
@media screen and (max-width:1024px) {
  .shop_001 {
    width: calc(100% - 98px);
    margin-left: 98px;
  }
}
@media screen and (max-width:834px) {
  .shop_001 {
    width: 88%;
    margin: 0 auto;
  }
}
@media screen and (max-width:600px) {
  .shop_001 {
    padding: 0 0 26vw;
    border-radius: 0 0 18vw 18vw;
  }
}
.shop_001 > div {
  width: 88%;
  max-width: 900px;
  margin: 0 auto;
}
.shop_001 > div > ul {
  margin: 0 0 106px;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul {
    margin: 0 0 12vw;
  }
}
.shop_001 > div > ul > li {
  padding: 50px 0 58px;
  border-bottom: 2px dotted #808080;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li {
    padding: 13vw 0 7vw;
  }
}
.shop_001 > div > ul > li:last-child {
  display: flex;
  gap: 60px;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li:last-child {
    display: block;
  }
}
.shop_001 > div > ul > li:last-child > div:first-child {
  width: 35%;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li:last-child > div:first-child {
    width: 100%;
    padding: 0 0 10vw;
    margin-bottom: 10vw;
    border-bottom: 2px dotted #808080;
  }
}
.shop_001 > div > ul > li:last-child > div:nth-child(2) {
  width: 65%;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li:last-child > div:nth-child(2) {
    width: 100%;
  }
}
.shop_001 > div > ul > li h2 {
  margin: 0 0 22px;
  font-family: var(--shipporimincho);
  font-size: 32px;
  font-weight: 500;
  transform: scale(1.15, 1);
}
@media screen and (max-width: 1200px) {
  .shop_001 > div > ul > li h2 {
    font-size: 26px;
  }
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li h2 {
    margin: 0 0 4vw;
    font-size: 5.8vw;
    font-weight: 600;
  }
}
.shop_001 > div > ul > li h2::before {
  display: inline-block;
  width: 15px;
  height: 16px;
  margin-right: 0.5em;
  vertical-align: 5px;
  content: "";
  background: url(../img/shop_icon.svg) center/100% no-repeat;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li h2::before {
    width: 4vw;
    height: 4.5vw;
    margin-right: 0.2em;
    vertical-align: 0px;
  }
}
.shop_001 > div > ul > li .msg {
  font-family: var(--shipporimincho);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .msg {
    font-size: 4.5vw;
    line-height: 1.6;
  }
}
.shop_001 > div > ul > li .msg strong {
  color: #c80e0e;
}
.shop_001 > div > ul > li .msg span {
  display: inline-block;
}
.shop_001 > div > ul > li p {
  font-size: 17px;
  line-height: 1.8;
}
@media screen and (max-width:1024px) {
  .shop_001 > div > ul > li p {
    margin: 0 0 10px;
  }
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li p {
    font-size: 16px;
  }
}
.shop_001 > div > ul > li .map {
  height: 468px;
  margin: 0 0 24px;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .map {
    height: 50vw;
    margin: 0 0 1vw;
  }
}
.shop_001 > div > ul > li .detail {
  display: flex;
  gap: 4%;
  align-items: start;
}
@media screen and (max-width:1024px) {
  .shop_001 > div > ul > li .detail {
    display: block;
  }
}
.shop_001 > div > ul > li .detail > div {
  width: 48%;
}
@media screen and (max-width:1024px) {
  .shop_001 > div > ul > li .detail > div {
    width: 100%;
  }
}
.shop_001 > div > ul > li .detail > div dl {
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .detail > div dl {
    display: block;
    padding: 4vw 0;
  }
}
.shop_001 > div > ul > li .detail > div dl dt {
  width: 7em;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .detail > div dl dt {
    width: 100%;
    margin: 0 0 2vw;
    font-size: 4vw;
  }
}
.shop_001 > div > ul > li .detail > div dl dt::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.2em;
  content: "";
  background-color: #000;
  border-radius: 50%;
}
.shop_001 > div > ul > li .detail > div dl dd {
  width: calc(100% - 7em);
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .detail > div dl dd {
    width: 100%;
    font-size: 4vw;
  }
}
.shop_001 > div > ul > li .detail > img {
  width: 48%;
}
@media screen and (max-width:1024px) {
  .shop_001 > div > ul > li .detail > img {
    display: block;
    width: 80%;
    margin: 7vw auto 5vw;
  }
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .detail > img {
    width: 100%;
    margin: 5vw 0 5vw;
  }
}
.shop_001 > div > ul > li .link_btns {
  display: flex;
  gap: 8px;
  margin: 20px 0 0;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .link_btns {
    flex-direction: column;
    gap: 2vw;
    margin: 5vw 0 7vw;
  }
}
.shop_001 > div > ul > li .link_btns li {
  position: relative;
  width: calc(50% - 4px);
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .link_btns li {
    width: 100%;
  }
}
.shop_001 > div > ul > li .link_btns li a {
  height: 120px;
  background-color: #c80e0e;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .link_btns li a {
    height: 24vw;
  }
}
.shop_001 > div > ul > li .link_btns li a span {
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  z-index: 2;
  width: 100%;
  font-family: var(--shipporimincho);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .shop_001 > div > ul > li .link_btns li a span {
    top: calc(50% - 14px);
    font-size: 28px;
  }
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .link_btns li a span {
    top: calc(50% - 4.5vw);
    font-size: 7vw;
  }
}
.shop_001 > div > ul > li .link_btns li a span i {
  font-size: 26px;
  font-style: normal;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .link_btns li a span i {
    font-size: 4.5vw;
    vertical-align: 0.5vw;
  }
}
.shop_001 > div > ul > li .link_btns li a::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #999;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.shop_001 > div > ul > li .link_btns li a:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
@media screen and (max-width:600px) {
  .shop_001 > div > ul > li .link_btns li:nth-child(2) span {
    font-size: 6.1vw;
  }
}
.shop_001 > div > ul > li .link_btns li:nth-child(2)::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 9%;
  z-index: 2;
  width: 35px;
  height: 16px;
  content: "";
  background: url(../img/white_arrow_w35.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width: 1280px) {
  .shop_001 > div > ul > li .link_btns li:nth-child(2)::after {
    right: 7%;
    z-index: 2;
    width: 28px;
  }
}
.shop_001 > div > ul > li .link_btns li:nth-child(2):hover::after {
  transform: translateX(10px);
}
.shop_001 > div nav {
  width: 100%;
}
.shop_001 > div nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width:600px) {
  .shop_001 > div nav ul {
    gap: 2vw;
  }
}
.shop_001 > div nav ul li {
  position: relative;
  overflow: hidden;
}
.shop_001 > div nav ul li a {
  height: 148px;
}
@media screen and (max-width:600px) {
  .shop_001 > div nav ul li a {
    height: 38vw;
  }
}
.shop_001 > div nav ul li a span {
  position: absolute;
  top: calc(50% - 16px);
  left: 0;
  z-index: 2;
  width: 100%;
  font-family: var(--shipporimincho);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width:600px) {
  .shop_001 > div nav ul li a span {
    top: calc(50% - 8.5vw);
    left: -3vw;
    font-size: 7.5vw;
  }
}
.shop_001 > div nav ul li a span i {
  font-size: 26px;
  font-style: normal;
}
.shop_001 > div nav ul li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: all 0.5s;
  transform: scale(1);
}
@media screen and (max-width: 1280px) {
  .shop_001 > div nav ul li a img {
    width: auto;
    height: 100%;
  }
}
.shop_001 > div nav ul li a:hover img {
  transform: scale(1.05);
}
.shop_001 > div nav ul li::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 7.6%;
  z-index: 2;
  width: 45px;
  height: 16px;
  content: "";
  background: url(../img/white_arrow.svg) center/100% 100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .shop_001 > div nav ul li::after {
    top: calc(50% - 2.3vw);
    right: 6vw;
    width: 7vw;
    height: 3vw;
    background-image: url(../img/sp_white_arrow_w35.svg);
  }
}
.shop_001 > div nav ul li:hover::after {
  transform: translateX(10px);
}

/*特別イベント*/
.page-event .common_header {
  background-image: url(../img/event_main.webp);
}

.event_inner {
  width: calc(100% - 98px);
  padding: 126px 0 0;
  margin-left: 98px;
}
@media screen and (max-width: 1300px) {
  .event_inner {
    padding: 126px 5%;
  }
}
@media screen and (max-width:834px) {
  .event_inner {
    width: 100%;
    padding: 15vw 8vw 0;
    margin-left: 0;
  }
}

.event_list {
  display: flex;
  flex-wrap: wrap;
  gap: 90px 34px;
  max-width: 1100px;
  margin: 0 auto 150px;
}
@media screen and (max-width:600px) {
  .event_list {
    display: block;
    margin: 0 0 20vw;
  }
}
.event_list .contents_box {
  position: relative;
  width: calc(33.33% - 24px);
}
@media screen and (max-width:834px) {
  .event_list .contents_box {
    width: 47%;
  }
}
@media screen and (max-width:600px) {
  .event_list .contents_box {
    width: 100%;
    margin: 0 0 15vw;
  }
}
.event_list .contents_box a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.event_list .contents_box .thumbnail_wrapper {
  position: relative;
  height: 250px;
  margin: 0 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .event_list .contents_box .thumbnail_wrapper {
    height: 18vw;
  }
}
@media screen and (max-width:834px) {
  .event_list .contents_box .thumbnail_wrapper {
    height: 27vw;
  }
}
@media screen and (max-width:600px) {
  .event_list .contents_box .thumbnail_wrapper {
    height: 60vw;
    margin: 0 0 6vw;
  }
}
.event_list .contents_box .thumbnail_wrapper img {
  width: 100%;
  height: auto;
  transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
  .event_list .contents_box .thumbnail_wrapper img {
    width: auto;
    height: 100%;
  }
}
.event_list .contents_box:hover .thumbnail_wrapper img {
  transform: scale(1.1);
}
.event_list .contents_box time {
  display: block;
  margin: 0 0 16px;
  font-family: var(--sofiasans);
  font-size: 25px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1200px) {
  .event_list .contents_box time {
    margin: 0 0 10px;
    font-size: 20px;
  }
}
@media screen and (max-width:600px) {
  .event_list .contents_box time {
    font-size: 6vw;
  }
}
.event_list .contents_box p {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .event_list .contents_box p {
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  .event_list .contents_box p {
    font-size: 15px;
  }
}

.pagination {
  width: auto;
  margin: 0 auto;
}

.pagination ul {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 0px;
}
@media screen and (max-width:600px) {
  .pagination ul {
    gap: 8px;
  }
}

.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 2px 0 0;
  font-family: var(--sofiasans);
  font-size: 25px;
  font-weight: 100;
  letter-spacing: -0.01em;
  border-radius: 50%;
}
@media screen and (max-width:600px) {
  .pagination li a,
  .pagination li span {
    width: 12vw;
    height: 12vw;
    font-size: 5vw;
  }
}

.pagination li .current {
  font-family: var(--sofiasans);
  font-size: 25px;
  color: #fff;
  background-color: #c80e0e;
}
@media screen and (max-width:600px) {
  .pagination li .current {
    font-size: 5vw;
  }
}

.pagination a.prev,
.pagination a.next {
  width: 52px;
  height: 52px;
  font-size: 0px;
  color: #fff;
  background: url(../img/pager_arrow.svg) center/100% no-repeat;
}
@media screen and (max-width:600px) {
  .pagination a.prev,
  .pagination a.next {
    width: 10vw;
    height: 10vw;
  }
}
.pagination a.prev:hover,
.pagination a.next:hover {
  transition: 0.5s all;
}

a.page-numbers {
  color: #fff;
}
a.page-numbers:hover {
  background-color: #c80e0e;
  transition: 0.5s all;
}

.pagination a.prev {
  transform: scale(-1, 1);
}

.page-single-event .common_header {
  background-image: url(../img/event_main.webp);
}
@media screen and (max-width:600px) {
  .page-single-event .common_header {
    background-image: url(../img/sp_event_main.webp);
  }
}

.event_contents {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .event_contents {
    width: 100%;
    margin-left: 0;
  }
}
.event_contents .event_single_content {
  width: 85%;
  max-width: 860px;
  margin: 130px auto 0;
}
@media screen and (max-width:600px) {
  .event_contents .event_single_content {
    width: 85%;
    margin: 13vw auto 0;
  }
}
.event_contents .event_single_content h2 {
  margin: 0 0 30px;
  font-family: var(--shipporimincho);
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width:600px) {
  .event_contents .event_single_content h2 {
    margin: 0 0 6vw;
    font-size: 6vw;
  }
}
.event_contents .event_single_content .thumbnail_wrapper {
  margin: 0 0 55px;
  overflow: hidden;
}
@media screen and (max-width:600px) {
  .event_contents .event_single_content .thumbnail_wrapper {
    margin: 0 0 7vw;
  }
}
.event_contents .event_single_content .thumbnail_wrapper img {
  width: 100%;
  height: auto;
}
.event_contents .event_single_content time {
  display: block;
  margin: 0 0 36px;
  font-family: var(--sofiasans);
  font-size: 25px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width:600px) {
  .event_contents .event_single_content time {
    margin: 0 0 6vw;
    font-size: 6vw;
  }
}
.event_contents .event_single_content h3 {
  font-family: var(--shipporimincho);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}
.event_contents .event_single_content p {
  margin: 0 0 40px;
  font-family: var(--shipporimincho);
  font-size: 18px;
  line-height: 2.5;
  color: #fff;
}
@media screen and (max-width:600px) {
  .event_contents .event_single_content p {
    font-size: 4vw;
  }
}

.event_viewall {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 94px 0 0;
  font-family: var(--shipporimincho);
  font-size: 18px;
  color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .event_viewall {
    gap: 4vw;
    margin: 15vw 0 0 0;
    font-size: 4.5vw;
  }
}
.event_viewall span {
  display: block;
  width: 52px;
  height: 52px;
  background: #c80e0e;
  border-radius: 50%;
}
.event_viewall span img {
  transform: rotate(180deg);
}
.event_viewall:hover {
  transform: translateX(-10px);
}
.event_viewall:hover p {
  color: #c80e0e;
}
.event_viewall p {
  font-size: 18px;
  transition: 0.5s all;
}
@media screen and (max-width:600px) {
  .event_viewall p {
    font-size: 4vw;
  }
}

/*ブログ・ニュース*/
.page-blog .common_header {
  background-image: url(../img/blog_main.webp);
}
@media screen and (max-width:600px) {
  .page-blog .common_header {
    background-image: url(../img/sp_blog_main.webp);
  }
}

.blog_inner {
  width: calc(100% - 98px);
  padding: 126px 0 0;
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .blog_inner {
    width: 100%;
    padding: 10vw 0 15vw;
    margin-left: 0;
  }
}
@media screen and (max-width:600px) {
  .blog_inner {
    padding: 20vw 0 0;
  }
}

.blog_list {
  width: 85%;
  max-width: 1000px;
  margin: 0 auto 60px;
}
@media screen and (max-width:600px) {
  .blog_list {
    display: block;
    margin: 0 auto 14vw;
  }
}
.blog_list .contents_box {
  position: relative;
  display: flex;
  padding: 45px 0 36px;
  border-top: 1px solid #4d4d4d;
}
@media screen and (max-width:834px) {
  .blog_list .contents_box {
    display: block;
    padding: 5vw 0;
  }
}
@media screen and (max-width:600px) {
  .blog_list .contents_box {
    padding: 9vw 0;
  }
}
.blog_list .contents_box:last-child {
  border-bottom: 1px solid #4d4d4d;
}
.blog_list .contents_box a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}
.blog_list .contents_box time {
  display: block;
  width: 17%;
  padding: 3px 2% 0 0;
  font-family: var(--sofiasans);
  font-size: 25px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width:834px) {
  .blog_list .contents_box time {
    width: 100%;
    padding: 0 0 1vw;
    font-size: 3vw;
    text-align: left;
  }
}
@media screen and (max-width:600px) {
  .blog_list .contents_box time {
    font-size: 5.5vw;
  }
}
.blog_list .contents_box p {
  width: 72%;
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width:834px) {
  .blog_list .contents_box p {
    width: 81%;
    font-size: 16px;
  }
}
@media screen and (max-width:600px) {
  .blog_list .contents_box p {
    width: 100%;
  }
}
.blog_list .contents_box::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  display: inline-block;
  width: 55px;
  height: 7px;
  content: "";
  background: url(../img/blog_arrow.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .blog_list .contents_box::after {
    display: none;
  }
}
.blog_list .contents_box:hover time {
  opacity: 0.5;
}
.blog_list .contents_box:hover p {
  opacity: 0.5;
}
.blog_list .contents_box:hover::after {
  transform: translateX(10px);
}

.page-blog-single .common_header {
  background-image: url(../img/blog_main.webp);
}
@media screen and (max-width:600px) {
  .page-blog-single .common_header {
    background-image: url(../img/sp_blog_main.webp);
  }
}

.blog_contents {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .blog_contents {
    width: 100%;
    margin-left: 0;
  }
}
.blog_contents .blog_single_content {
  width: 85%;
  max-width: 860px;
  margin: 130px auto 0;
}
@media screen and (max-width:834px) {
  .blog_contents .blog_single_content {
    margin-bottom: 100px;
  }
}
@media screen and (max-width:600px) {
  .blog_contents .blog_single_content {
    margin: 15vw auto 0;
  }
}
.blog_contents .blog_single_content header {
  margin: 0 0 58px;
  border-bottom: 1px solid #4d4d4d;
}
.blog_contents .blog_single_content h2 {
  margin: 0 0 30px;
  font-family: var(--shipporimincho);
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width:600px) {
  .blog_contents .blog_single_content h2 {
    margin: 0 0 5vw;
    font-size: 5.5vw;
  }
}
.blog_contents .blog_single_content time {
  display: block;
  margin: 0 0 36px;
  font-family: var(--sofiasans);
  font-size: 23px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width:600px) {
  .blog_contents .blog_single_content time {
    margin: 0 0 5vw;
    font-size: 5vw;
  }
}
.blog_contents .blog_single_content h3 {
  font-family: var(--shipporimincho);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
}
.blog_contents .blog_single_content p {
  margin: 0 0 40px;
  font-family: var(--shipporimincho);
  font-size: 18px;
  line-height: 2.5;
  color: #fff;
}
@media screen and (max-width:600px) {
  .blog_contents .blog_single_content p {
    font-size: 15px;
  }
}

/*よくある質問ページ*/
.page-faq .common_header {
  background-image: url(../img/faq_main.webp);
}
@media screen and (max-width:600px) {
  .page-faq .common_header {
    background-image: url(../img/sp_faq_main.webp);
  }
}
.page-faq .footer {
  padding-top: 10vw;
}

.faq_001 {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .faq_001 {
    width: 100%;
    margin-left: 0;
  }
}
.faq_001 > div {
  width: 85%;
  max-width: 1100px;
  padding: 110px 0 0;
  margin: 0 auto;
}
.faq_001 > div > div {
  margin: 0 0 100px;
}
.faq_001 h2 {
  margin: 0 0 40px 3em;
  font-family: var(--shipporimincho);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  transform: scale(1.15, 1);
}
@media screen and (max-width:600px) {
  .faq_001 h2 {
    margin: 0 0 5vw 6vw;
    font-size: 5.5vw;
  }
}
.faq_001 dl {
  position: relative;
  display: block;
  padding: 0 0 40px;
  border-top: 1px solid #4d4d4d;
}
@media screen and (max-width:600px) {
  .faq_001 dl {
    padding: 0 0 8vw;
  }
}
.faq_001 dl:last-child {
  border-bottom: 1px solid #4d4d4d;
}
.faq_001 dl dt {
  position: relative;
  padding: 40px 76px 0;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width:600px) {
  .faq_001 dl dt {
    padding: 8vw 0 0 9vw;
  }
}
.faq_001 dl dt::before {
  position: absolute;
  top: 23px;
  left: 20px;
  font-family: var(--sofiasans);
  font-size: 50px;
  color: #fff;
  content: "Q";
}
@media screen and (max-width:600px) {
  .faq_001 dl dt::before {
    top: 4.8vw;
    left: 5px;
    font-size: 11vw;
  }
}
.faq_001 dl dt p {
  font-family: var(--shipporimincho);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
}
@media screen and (max-width:1500px) {
  .faq_001 dl dt p {
    line-height: 1.5;
  }
}
@media screen and (max-width:600px) {
  .faq_001 dl dt p {
    font-size: 4.5vw;
    line-height: 1.5;
  }
}
.faq_001 dl dt .plsminus {
  position: absolute;
  top: 39px;
  right: 32px;
}
@media screen and (max-width:600px) {
  .faq_001 dl dt .plsminus {
    top: calc(50% + 0.5vw);
    right: 1vw;
  }
}
.faq_001 dl dt span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}
@media screen and (max-width:600px) {
  .faq_001 dl dt span {
    width: 7vw;
    height: 7vw;
  }
}
.faq_001 dl dt span::before {
  position: absolute;
  top: 14px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .faq_001 dl dt span::before {
    top: 3.5vw;
    left: 0;
  }
}
.faq_001 dl dt span::after {
  position: absolute;
  top: 0;
  left: 14px;
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .faq_001 dl dt span::after {
    top: 0;
    left: 3.5vw;
  }
}
.faq_001 dl dt.show span::before {
  transform: rotate(180deg);
}
.faq_001 dl dt.show span::after {
  transform: rotate(270deg);
}
.faq_001 dl dd {
  display: none;
  padding: 40px 76px 0;
  color: #fff;
}
@media screen and (max-width:600px) {
  .faq_001 dl dd {
    padding: 7vw 0 0;
  }
}
.faq_001 dl dd p {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width:600px) {
  .faq_001 dl dd p {
    font-size: 4vw;
  }
}
.faq_001 dl a {
  display: inline-block;
  color: #fff;
  text-decoration: underline;
}

/*サイトマップページ*/
.page-sitemap .common_header {
  background-image: url(../img/sitemap_main.webp);
}
@media screen and (max-width:600px) {
  .page-sitemap .common_header {
    background-image: url(../img/sp_sitemap_main.webp);
  }
}

.sitemap_001 {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .sitemap_001 {
    width: 100%;
    margin-left: 0;
  }
}
.sitemap_001 > nav {
  width: 85%;
  max-width: 446px;
  padding: 170px 0 0;
  margin: 0 auto;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav {
    padding: 16vw 0 0;
  }
}
.sitemap_001 > nav ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin: 0 0 100px;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav ul {
    gap: 4.5vw;
    margin: 0 0 16vw;
  }
}
.sitemap_001 > nav ul li a {
  font-family: var(--shipporimincho);
  font-size: 30px;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav ul li a {
    font-size: 6vw;
  }
}
.sitemap_001 > nav ul li a:hover {
  color: #c80e0e;
}
.sitemap_001 > nav > div {
  width: 100%;
  margin: 0 auto 130px;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav > div {
    width: 85%;
    margin: 0 auto;
  }
}
.sitemap_001 > nav > div a {
  position: relative;
  width: 100%;
  max-width: 446px;
  height: 120px;
  background-color: #c80e0e;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav > div a {
    height: 24vw;
  }
}
.sitemap_001 > nav > div a span {
  position: absolute;
  top: calc(50% - 0.7em);
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  font-family: var(--shipporimincho);
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav > div a span {
    top: calc(50% - 0.6em);
    left: -1vw;
    font-size: 5.5vw;
  }
}
.sitemap_001 > nav > div a:first-child {
  margin-bottom: 15px;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav > div a:first-child {
    margin-bottom: 1.5vw;
  }
}
.sitemap_001 > nav > div a::before {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /*背景色*/
  width: 100%;
  height: 100%;
  content: "";
  /*色や形状*/
  background: #999;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.sitemap_001 > nav > div a:hover::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.sitemap_001 > nav > div a::after {
  position: absolute;
  top: calc(50% - 7px);
  right: 7.3%;
  z-index: 2;
  width: 35px;
  height: 16px;
  content: "";
  background: url(../img/white_arrow_w35.svg) center/100% no-repeat;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .sitemap_001 > nav > div a::after {
    top: calc(50% - 2vw);
    right: 5vw;
    width: 7vw;
    height: 3vw;
    background-image: url(../img/sp_white_arrow_w35.svg);
  }
}
.sitemap_001 > nav > div a:hover {
  color: #c80e0e;
}
.sitemap_001 > nav > div a:hover::after {
  transform: translateX(10px);
}

/*プライバシーポリシー*/
.terms_001 {
  width: calc(100% - 98px);
  padding: 0 0 90px;
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .terms_001 {
    width: 88%;
    padding: 0;
    margin: 0 auto;
  }
}
.terms_001 header {
  padding: 230px 0 120px;
}
@media screen and (max-width:600px) {
  .terms_001 header {
    padding: 40vw 0 20vw;
  }
}
.terms_001 header h2 {
  font-family: var(--shipporimincho);
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3em;
}
.terms_001 header h2 span {
  display: inline-block;
}
@media screen and (max-width:600px) {
  .terms_001 header h2 {
    font-size: 5.5vw;
    letter-spacing: 0.1em;
  }
}
.terms_001 > div {
  width: 85%;
  max-width: 745px;
  margin: 0 auto;
}
@media screen and (max-width:600px) {
  .terms_001 > div {
    width: 100%;
  }
}
.terms_001 > div > p {
  margin: 0 0 56px;
}
.terms_001 > div p {
  font-family: var(--notosansjp);
  font-size: 16px;
  line-height: 2.1;
  color: #fff;
}
.terms_001 > div ol {
  display: flex;
  flex-direction: column;
  gap: 54px;
}
.terms_001 > div ol li {
  width: 100%;
}
.terms_001 > div ol li h3 {
  margin: 0 0 20px;
  font-family: var(--shipporimincho);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width:600px) {
  .terms_001 > div ol li h3 {
    font-size: 4.5vw;
  }
}
.terms_001 > div ol li a {
  color: #fff;
  text-decoration: underline;
}
.terms_001 > div ol li ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.terms_001 > div ol li ul li {
  margin-left: 1em;
  font-size: 16px;
  color: #fff;
}
.terms_001 > div ol li ul li::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 0.3em;
  content: "";
  background-color: #fff;
  border-radius: 50%;
}

/*お問い合わせ*/
.page-contact .common_header {
  background-image: url(../img/contact_main.webp);
}
@media screen and (max-width:600px) {
  .page-contact .common_header {
    background-image: url(../img/sp_contact_main.webp);
  }
}
@media screen and (max-width:600px) {
  .page-contact .footer {
    padding-top: 33vw;
  }
}

.contact_001 {
  width: calc(100% - 98px);
  margin-left: 98px;
}
@media screen and (max-width:834px) {
  .contact_001 {
    width: 100%;
    margin-left: 0;
  }
}
.contact_001 > div {
  max-width: 860px;
  padding: 110px 0px;
  margin: auto;
}
@media screen and (max-width:1024px) {
  .contact_001 > div {
    padding: 110px 5%;
  }
}
@media screen and (max-width:600px) {
  .contact_001 > div {
    padding: 20vw 7vw 0;
  }
}
.contact_001 > div > .description {
  margin: 0 0 80px;
  line-height: 2;
  color: #ffffff;
  letter-spacing: -0.021em;
}
@media screen and (max-width:600px) {
  .contact_001 > div > .description {
    margin-bottom: 10vw;
    font-size: 16px;
  }
}

.CF7_table {
  width: 100%;
  margin-bottom: 105px;
}
@media screen and (max-width:600px) {
  .CF7_table {
    margin-bottom: 15vw;
  }
}
.CF7_table div {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media screen and (max-width:600px) {
  .CF7_table div {
    gap: 8vw;
  }
}
.CF7_table fieldset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 30px;
  color: #ffffff;
}
@media screen and (max-width:834px) {
  .CF7_table fieldset {
    margin: 0 0 8vw;
  }
}
.CF7_table legend {
  font-family: var(--shipporimincho);
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.07em;
}
@media screen and (max-width:600px) {
  .CF7_table legend {
    font-size: 5.5vw;
  }
}
.CF7_table small {
  display: block;
  margin: 8px 0 0;
  color: #999;
}
.CF7_table legend.required {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 15px;
}
.CF7_table legend.required::before {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  font-size: 20px;
  color: #c80e0e;
  content: "*";
}
.CF7_table p input[type=text],
.CF7_table p input[type=email] {
  width: 100%;
  padding: 11px 20px;
  letter-spacing: 0.039em;
  background-color: #232323;
}
@media screen and (max-width:600px) {
  .CF7_table p input[type=text],
  .CF7_table p input[type=email] {
    padding: 5vw 3vw;
  }
}
.CF7_table input::-moz-placeholder, .CF7_table textarea::-moz-placeholder {
  color: #4d4d4d;
}
.CF7_table input::placeholder,
.CF7_table textarea::placeholder {
  color: #4d4d4d;
}
@media screen and (max-width:600px) {
  .CF7_table input::-moz-placeholder, .CF7_table textarea::-moz-placeholder {
    font-size: 3.4vw;
  }
  .CF7_table input::placeholder,
  .CF7_table textarea::placeholder {
    font-size: 3.4vw;
  }
}
.CF7_table textarea {
  width: 100%;
  height: 330px;
  padding: 15px 20px;
  line-height: 1.5;
  letter-spacing: 0.039em;
  background-color: #232323;
}
@media screen and (max-width:600px) {
  .CF7_table fieldset.privacy_policy {
    padding: 4vw 0 0;
  }
  .CF7_table fieldset.privacy_policy .wpcf7-form-control-wrap {
    margin-top: 5vw;
  }
}
.CF7_table fieldset.privacy_policy legend {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.021em;
}
.CF7_table fieldset.privacy_policy p {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: -0.021em;
}
.CF7_table fieldset.privacy_policy p a {
  display: inline;
  text-decoration: underline;
}
.CF7_table .wpcf7-form-control-wrap {
  display: block;
  margin-top: 20px;
}
@media screen and (max-width:600px) {
  .CF7_table .wpcf7-form-control-wrap {
    margin-top: 2vw;
  }
}
.CF7_table .wpcf7-list-item {
  margin: 0;
}
.CF7_table .wpcf7-form-control-wrap input[type=checkbox] {
  position: relative;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  margin-bottom: 3px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  border: 1px solid #aeaeae;
}
.CF7_table .wpcf7-list-item-label {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 15px;
  font-family: var(--shipporimincho);
  font-size: 20px;
  letter-spacing: 0.07em;
}
.CF7_table .wpcf7-list-item-label::before {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  font-size: 20px;
  color: #c80e0e;
  content: "*";
}

.CF7_button {
  position: relative;
  width: 320px;
  height: 75px;
  margin: auto;
  text-align: center;
}
.CF7_button::before {
  position: absolute;
  top: 50%;
  right: 7.3%;
  z-index: 2;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../img/white_arrow.svg) center/100% 100% no-repeat;
  transition: all 0.5s;
  transform: translateY(-50%);
}
@media screen and (max-width:600px) {
  .CF7_button::before {
    top: calc(50% - 0.5vw);
    right: 6vw;
    width: 7vw;
    height: 3vw;
    background-image: url(../img/sp_white_arrow_w35.svg);
  }
}
.CF7_button input[type=submit] {
  width: 100%;
  font-family: var(--shipporimincho);
  font-size: 18px;
  line-height: 70px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #c80e0e;
}
.CF7_button input[type=submit]:disabled {
  background-color: #999999;
}

.contact_form-confirm div {
  width: 100%;
  margin-bottom: 100px;
}
.contact_form-confirm dl {
  display: table;
  flex-direction: row;
  width: 100%;
  border-bottom: 1px solid #3c3c3c;
}
@media screen and (max-width:600px) {
  .contact_form-confirm dl {
    display: block;
    width: 100%;
  }
}
.contact_form-confirm dl:first-of-type {
  border-top: 1px solid #3c3c3c;
}
.contact_form-confirm dt {
  display: table-cell;
  width: 250px;
  padding: 25px 0;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width:834px) {
  .contact_form-confirm dt {
    display: block;
    width: 100%;
    padding: 7vw 5vw 0;
  }
}
.contact_form-confirm dd {
  display: table-cell;
  width: calc(100% - 250px);
  padding: 25px 0;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (max-width:834px) {
  .contact_form-confirm dd {
    display: block;
    width: 100%;
    padding: 3vw 5vw 7vw;
  }
}
.contact_form-confirm .submit_button {
  position: relative;
  width: 320px;
  height: 75px;
  margin: auto;
  text-align: center;
}
.contact_form-confirm .submit_button::before {
  position: absolute;
  top: 50%;
  right: 7.3%;
  z-index: 2;
  width: 20px;
  height: 20px;
  content: "";
  background: url(../img/white_arrow.svg) center/100% 100% no-repeat;
  transition: all 0.5s;
  transform: translateY(-50%);
}
@media screen and (max-width:600px) {
  .contact_form-confirm .submit_button::before {
    top: calc(50% - 0.5vw);
    right: 6vw;
    width: 7vw;
    height: 3vw;
    background-image: url(../img/sp_white_arrow_w35.svg);
  }
}
.contact_form-confirm .submit_button input {
  width: 100%;
  font-size: 18px;
  line-height: 70px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
  background-color: #c80e0e;
}

.wpcf7-response-output {
  color: #ffffff;
}

.thanks_message {
  margin-bottom: 70px;
  text-align: center;
}

.thanks_message .title {
  margin-bottom: 30px;
  font-family: var(--shipporimincho);
  font-size: 35px;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media screen and (max-width:834px) {
  .thanks_message .title {
    font-size: 28px;
  }
}
@media screen and (max-width:600px) {
  .thanks_message .title {
    font-size: 6vw;
    line-height: 1.5;
  }
}

.thanks_message .description {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width:834px) {
  .thanks_message .description {
    font-size: 16px;
  }
}

/*オンライン予約フォーム*/
.reservation_001 header {
  padding: 230px 0 100px;
}
@media screen and (max-width:600px) {
  .reservation_001 header {
    padding: 40vw 0 0;
  }
}
.reservation_001 header h2 {
  font-family: var(--shipporimincho);
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3em;
}
.reservation_001 header h2 span {
  display: inline-block;
}
@media screen and (max-width:600px) {
  .reservation_001 header h2 {
    margin: 0 0 5vw;
    font-size: 5.5vw;
    letter-spacing: 0.1em;
  }
}
.reservation_001 .note {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.reservation_001 .note b {
  display: inline-block;
  margin: 0 7px;
  color: #de0e0e;
}
@media screen and (max-width:600px) {
  .reservation_001 .note {
    margin: 0;
    font-size: 4vw;
    line-height: 1.6;
  }
}
.reservation_001 > div {
  width: 85%;
  max-width: 800px;
  padding: 110px 0px;
  margin: 0 auto;
}
@media screen and (max-width:600px) {
  .reservation_001 > div {
    padding: 20vw 0 0;
  }
}
.reservation_001 input,
.reservation_001 select,
.reservation_001 textarea {
  box-sizing: border-box;
  padding: 15px 10px;
  font-size: 16px;
  background: #fff;
}
.reservation_001 option:disabled {
  display: none;
}
.reservation_001 .rtb-booking-form textarea {
  width: 80%;
  max-width: none;
}
@media screen and (max-width:600px) {
  .reservation_001 .rtb-booking-form textarea {
    width: 100%;
  }
}
.reservation_001 .reservation {
  margin: 0 0 100px;
}
@media screen and (max-width:600px) {
  .reservation_001 .reservation {
    margin: 0 0 25vw;
  }
}
.reservation_001 .rtb-booking-form fieldset .add-message {
  display: none;
}
.reservation_001 .rtb-booking-form fieldset .rtb-form-submit {
  display: block;
  text-align: center;
}
.reservation_001 .rtb-booking-form fieldset .rtb-form-submit button {
  width: 100%;
  max-width: 600px;
  padding: 30px 0;
  margin: 0 auto;
  font-family: var(--shipporimincho);
  font-size: 24px;
  color: #fff;
  text-align: center;
  background-color: #c80e0e;
  transition: all 0.5s;
}
@media screen and (max-width:600px) {
  .reservation_001 .rtb-booking-form fieldset .rtb-form-submit button {
    font-size: 4.5vw;
  }
}
.reservation_001 .rtb-booking-form fieldset .rtb-form-submit:hover button {
  color: #666;
  background-color: #fff;
}
.reservation_001 .rtb-booking-form fieldset > div {
  gap: 30px;
  align-items: center;
}
@media screen and (max-width:600px) {
  .reservation_001 .rtb-booking-form fieldset > div {
    display: block;
  }
}
.reservation_001 .rtb-booking-form legend {
  width: 100%;
  padding: 0 0 20px;
  font-size: 24px;
}
@media screen and (max-width:600px) {
  .reservation_001 .rtb-booking-form legend {
    padding: 0 0 3vw;
    font-size: 4.5vw;
    line-height: 1.5;
  }
}
.reservation_001 .rtb-booking-form label {
  width: 100%;
  margin: 0 0 10px;
  font-size: 20px;
}
@media screen and (max-width:600px) {
  .reservation_001 .rtb-booking-form label {
    width: 100%;
    margin: 0 0 3vw;
    font-size: 3.8vw;
  }
}
.reservation_001 .rtb-booking-form input,
.reservation_001 #stripe-payment-form #cardElement {
  width: 100%;
  max-width: none;
}
@media screen and (max-width:600px) {
  .reservation_001 .rtb-booking-form input,
  .reservation_001 #stripe-payment-form #cardElement {
    width: 100%;
  }
}
.reservation_001 .rtb-booking-form select {
  width: 4em;
}
.reservation_001 #rtb_recaptcha {
  float: none;
  width: 304px;
  margin: 30px auto 80px;
}

.rtb-booking-form label,
.rtb-booking-form legend {
  color: #ffffff;
}

.rtb-booking-form input,
.rtb-booking-form select {
  background-color: #ffffff;
}

.recaptcha_text {
  padding: 30px;
  margin: 50px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
  border: 1px solid #666;
}
.recaptcha_text a {
  display: inline-block;
  color: #ccc;
}

.grecaptcha-badge {
  visibility: hidden;
}

.picker__day {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 30px !important;
}
.picker__day[data-reservation_status=available]::before {
  position: absolute;
  bottom: 3px;
  font-size: 20px;
  color: green;
  content: "◯";
}
.picker__day[data-reservation_status=limited]::before {
  position: absolute;
  bottom: 3px;
  font-size: 20px;
  content: "△";
}
.picker__day[data-reservation_status=full]::before {
  position: absolute;
  bottom: 3px;
  font-size: 20px;
  content: "×";
}

.rtb-message p {
  font-size: 20px;
  line-height: 2.5;
  color: #fff;
  text-align: center;
}

/*英語用scss*/
.-en {
  /*こだわり*/
}
.-en .header_content nav dd .header_btn span {
  font-size: 19px;
}
.-en .keyvisual p {
  font-size: 20px;
  writing-mode: horizontal-tb;
}
@media screen and (max-width:1024px) {
  .-en .keyvisual p {
    left: 15vw;
    font-size: 18px;
  }
}
.-en .top_001 > div {
  padding-bottom: 300px;
}
@media screen and (max-width:600px) {
  .-en .top_001 > div {
    padding-bottom: 0;
  }
}
.-en .top_001 .text_box {
  display: block;
}
.-en .top_001 .text_box h2 {
  margin: 0 0 50px;
  writing-mode: horizontal-tb;
  transform: none;
}
.-en .top_001 .text_box p {
  writing-mode: horizontal-tb;
  transform: none;
}
.-en .top_001 .link_box {
  left: -250px;
}
@media screen and (max-width:1500px) {
  .-en .top_001 .link_box {
    bottom: -370px;
    left: 0;
  }
}
@media screen and (max-width:600px) {
  .-en .top_001 .link_box {
    position: static;
    bottom: -10vw;
    left: -2vw;
    margin: 20vw auto 0;
  }
}
.-en .top_001 .link_box a {
  font-size: 20px;
}
@media screen and (max-width:600px) {
  .-en .top_001 .link_box a {
    width: 38vw;
    height: 42vw;
    font-family: var(--shipporimincho);
    font-size: 5vw;
  }
}
.-en.reservation_link {
  padding: 15px 40px;
  writing-mode: horizontal-tb;
}
@media screen and (max-width:834px) {
  .-en.reservation_link {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .-en .top_005 div ul li h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width:600px) {
  .-en .top_005 div ul li h3 {
    font-size: 8vw;
  }
}
@media screen and (max-width:1024px) {
  .-en .top_005 div ul li p {
    font-size: 2vw;
  }
}
@media screen and (max-width:600px) {
  .-en .top_005 div ul li p {
    font-size: 4vw;
  }
}
@media screen and (max-width:600px) {
  .-en .top_006 .top_006_inner dl:nth-child(2), .-en .top_006 .top_006_inner dl:nth-child(3) {
    display: block;
  }
  .-en .top_006 .top_006_inner dl:nth-child(2) dt, .-en .top_006 .top_006_inner dl:nth-child(3) dt {
    display: block;
    width: 100%;
  }
  .-en .top_006 .top_006_inner dl:nth-child(2) dd, .-en .top_006 .top_006_inner dl:nth-child(3) dd {
    display: block;
    width: 100%;
  }
}
.-en .top_006 .top_006_inner dl dt {
  width: 25%;
}
@media screen and (max-width:834px) {
  .-en .top_006 .top_006_inner dl dt {
    width: 100%;
  }
}
.-en .top_006 .top_006_inner dl dt span {
  width: auto;
}
.-en .common_header h2 {
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
}
@media screen and (max-width:600px) {
  .-en .common_header h2 {
    font-size: 5vw;
  }
}
.-en .about_001 {
  display: block;
  padding: 132px 0 130px;
  text-align: center;
}
@media screen and (max-width:600px) {
  .-en .about_001 {
    padding: 20vw 0 0;
  }
}
.-en .about_001 h2 {
  width: 100%;
  margin: 0 0 30px;
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
  transform: none;
}
.-en .about_001 h2.load-fade.done {
  transform: none;
}
.-en .about_001 p {
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
  transform: none;
}
.-en .about_001 p.load-fade.done {
  transform: none;
}
.-en .about_002 ol li:nth-child(1) {
  margin-left: 0;
}
@media screen and (max-width:600px) {
  .-en .about_002 ol li:nth-child(1) {
    padding-bottom: 100vw;
  }
}
.-en .about_002 ol li:nth-child(1) img {
  top: 0;
  left: calc(50% + 450px);
}
@media screen and (max-width:1024px) {
  .-en .about_002 ol li:nth-child(1) img {
    left: calc(50% + 280px);
  }
}
@media screen and (max-width:600px) {
  .-en .about_002 ol li:nth-child(1) img {
    top: 139vw;
    right: 0;
    left: auto;
  }
}
@media screen and (max-width:600px) {
  .-en .about_002 ol li header h3 {
    font-size: 6vw;
    line-height: 1.35;
    transform: scale(1.1);
  }
}
.-en .about_002 h2 {
  position: static;
  width: 100%;
  margin: 0 0 80px;
  font-family: var(--shipporimincho);
  text-align: center;
  writing-mode: horizontal-tb;
  transform: none;
}
.-en .about_002 h2.load-fade.done {
  transform: none;
}
@media screen and (max-width:600px) {
  .-en .about_002 h2.load-fade.done {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width:600px) {
  .-en .about_002 .msg {
    width: 80%;
    padding: 30vw 5vw 36vw;
  }
}
.-en .shop_001 > div > ul > li h2 {
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width:600px) {
  .-en .shop_001 > div > ul > li h2 {
    margin-left: 0.8em;
    text-indent: -0.8em;
  }
}

.footer .-en dd .hour {
  max-width: 360px;
  text-align: center;
}

/*中国語用scss*/
@media screen and (max-width:834px) {
  .-cn.reservation_link {
    display: none;
  }
}
.-cn .top_001 > div {
  padding-bottom: 150px;
}
@media screen and (max-width:600px) {
  .-cn .top_001 > div {
    padding-bottom: 0;
  }
}
.-cn .top_001 .text_box {
  display: block;
}
.-cn .top_001 .text_box h2 {
  margin: 0 0 50px;
  writing-mode: horizontal-tb;
  transform: none;
}
.-cn .top_001 .text_box p {
  writing-mode: horizontal-tb;
  transform: none;
}
@media screen and (max-width:834px) {
  .-cn .top_001 .text_box p {
    max-width: 56%;
  }
}
@media screen and (max-width:600px) {
  .-cn .top_001 .text_box p {
    max-width: none;
  }
}
.-cn .top_001 .link_box {
  right: 0;
  bottom: 0;
  left: auto;
}
@media screen and (max-width:600px) {
  .-cn .top_001 .link_box {
    position: static;
    bottom: -10vw;
    left: -2vw;
    margin: 20vw auto 0;
  }
}
.-cn .top_001 .link_box a {
  font-size: 20px;
}
@media screen and (max-width:600px) {
  .-cn .top_001 .link_box a {
    width: 38vw;
    height: 42vw;
    font-family: var(--shipporimincho);
    font-size: 5vw;
  }
}
.-cn .common_header h2 {
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
}
.-cn .about_001 {
  display: block;
  padding: 132px 0 130px;
  text-align: center;
}
@media screen and (max-width:600px) {
  .-cn .about_001 {
    padding: 20vw 0 0;
  }
}
.-cn .about_001 h2 {
  width: 100%;
  margin: 0 0 30px;
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
  transform: none;
}
.-cn .about_001 h2.load-fade.done {
  transform: none;
}
.-cn .about_001 p {
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
  transform: none;
}
.-cn .about_001 p.load-fade.done {
  transform: none;
}
.-cn .about_002 ol li header {
  align-items: center;
}
.-cn .about_002 ol li:nth-child(1) {
  margin-left: 0;
}
.-cn .about_002 ol li:nth-child(1) img {
  top: 0;
  left: calc(50% + 450px);
}
@media screen and (max-width:1024px) {
  .-cn .about_002 ol li:nth-child(1) img {
    left: calc(50% + 280px);
  }
}
@media screen and (max-width:600px) {
  .-cn .about_002 ol li:nth-child(1) img {
    top: 65vw;
    right: 0;
    left: auto;
  }
}
.-cn .about_002 h2 {
  position: static;
  width: 100%;
  margin: 0 0 80px;
  font-family: var(--shipporimincho);
  text-align: center;
  writing-mode: horizontal-tb;
  transform: none;
}
.-cn .about_002 h2.load-fade.done {
  transform: none;
}

.footer .-cn dd .hour {
  max-width: 380px;
}

/*韓国語用scss*/
@media screen and (max-width:834px) {
  .-kr.reservation_link {
    display: none;
  }
}
.-kr .top_001 > div {
  padding-bottom: 300px;
}
.-kr .top_001 .text_box {
  display: block;
}
.-kr .top_001 .text_box h2 {
  margin: 0 0 50px;
  writing-mode: horizontal-tb;
  transform: none;
}
.-kr .top_001 .text_box p {
  writing-mode: horizontal-tb;
  transform: none;
}
.-kr .top_001 .link_box {
  left: -250px;
}
@media screen and (max-width:1500px) {
  .-kr .top_001 .link_box {
    bottom: -350px;
    left: 0;
  }
}
@media screen and (max-width:600px) {
  .-kr .top_001 .link_box {
    bottom: -100vw;
    left: 10vw;
  }
}
.-kr .top_001 .link_box a {
  font-size: 20px;
}
.-kr .about_001 {
  display: block;
  padding: 132px 0 130px;
  text-align: center;
}
@media screen and (max-width:600px) {
  .-kr .about_001 {
    padding: 20vw 0 0;
  }
}
.-kr .about_001 h2 {
  width: 100%;
  margin: 0 0 30px;
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
  transform: none;
}
.-kr .about_001 h2.load-fade.done {
  transform: none;
}
.-kr .about_001 p {
  font-family: var(--shipporimincho);
  writing-mode: horizontal-tb;
  transform: none;
}
.-kr .about_001 p.load-fade.done {
  transform: none;
}
.-kr #kushiyaki-yasai ul:nth-of-type(2) li:nth-of-type(3) small,
.-kr #kushiyaki-yasai ul:nth-of-type(2) li:nth-of-type(4) small {
  display: block;
  margin: 5px 0 0 -0.1em;
}

.footer .-kr dd .hour {
  max-width: 542px;
}

#rtb-party:disabled {
  background-color: #8a8a8a;
}

.rtb-error_message {
  color: #af1010;
}
/*# sourceMappingURL=style.css.map */