@charset "UTF-8";
/*---------------------------------------

responsive

---------------------------------------*/
.font80 {
  font-size: 80%;
}

.font110 {
  font-size: 110%;
}

.font120 {
  font-size: 120%;
}

.font130 {
  font-size: 130%;
}

.font140 {
  font-size: 140%;
}

.font150 {
  font-size: 150%;
}

/*---------------------------------------

all

---------------------------------------*/
.bold {
  font-weight: bold;
}

.border {
  border-bottom: 2px solid #b1272d;
}

img {
  width: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Helvetica Neue",
    Arial, "Hiragino Sans", Meiryo, sans-serif;
  color: #666666;
}

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

.sponly {
  display: block;
}
@media (min-width: 600px) {
  .sponly {
    display: none;
  }
}

.lgless {
  display: block;
}
@media (min-width: 1024px) {
  .lgless {
    display: none;
  }
}

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

.lgmore {
  display: none;
}
@media (min-width: 1024px) {
  .lgmore {
    display: block;
  }
}

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

.sm {
  font-size: 70%;
}

.red {
  color: #cb1b45;
}

/*---------------------------------------

header

---------------------------------------*/
.header {
  position: relative;
  z-index: 999;
}
.header__humberger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
  text-align: center;
  width: 52px;
  height: 52px;
  transform: translate(-10px, 10px);
}
@media (min-width: 600px) {
  .header__humberger {
    width: 60px;
    height: 60px;
    transform: translate(-30px, 30px);
  }
}
.header__humberger--bg {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(to right, #90000a, #c61940);
  border-radius: 50%;
  border: 1px solid transparent;
  transition: 0.7s ease-in-out;
  width: 52px;
  height: 52px;
  transform: translate(-10px, 10px);
}
@media (min-width: 600px) {
  .header__humberger--bg {
    width: 60px;
    height: 60px;
    transform: translate(-30px, 30px);
  }
}
.header__humberger--bg.is-open {
  background: #fff;
  border: 1px solid #90000a;
}
.header__humberger--bg2 {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 997;
  background: #fff;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: 0.7s ease-in-out;
  transform: translate(-11px, 11px);
}
@media (min-width: 600px) {
  .header__humberger--bg2 {
    width: 58px;
    height: 58px;
    transform: translate(-31px, 31px);
  }
}
.header__humberger--bg2.is-open {
  transform: translate(0, 0) scale(100);
  background: #fff;
  border: 1px solid transparent;
}
.header__humberger--line {
  display: inline-block;
  width: 50%;
  height: 1px;
  background-color: #fff;
  transition: 0.325s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.header__humberger--line.-top {
  transform: translateY(-5px) rotate(-30deg);
}
@media (min-width: 600px) {
  .header__humberger--line.-top {
    transform: translateY(-6px) rotate(-30deg);
  }
}
.header__humberger--line.-bottom {
  transform: translateY(3px) rotate(-30deg);
}
@media (min-width: 600px) {
  .header__humberger--line.-bottom {
    transform: translateY(4px) rotate(-30deg);
  }
}
.header__humberger--text {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
}
.header__humberger--text img {
  width: 75%;
  height: 100%;
}
@media (min-width: 600px) {
  .header__humberger:hover + .header__humberger--bg {
    background: #fff;
    border: 1px solid #90000a;
  }
  .header__humberger:hover .header__humberger--line.-top {
    transform: translateY(-12px) rotate(0deg);
    background-color: #c61940;
    height: 1px;
    width: 75%;
  }
  .header__humberger:hover .header__humberger--line.-bottom {
    transform: translateY(12px) rotate(0deg);
    background-color: #c61940;
    height: 1px;
    width: 75%;
  }
  .header__humberger:hover .header__humberger--text {
    opacity: 1;
  }
}
.header__humberger.is-open .header__humberger--line.-top {
  transform: translateY(0) rotate(45deg);
  background-color: #c61940;
  height: 1px;
  width: 100%;
}
.header__humberger.is-open .header__humberger--line.-bottom {
  transform: translateY(0) rotate(-45deg);
  background-color: #c61940;
  height: 1px;
  width: 100%;
}
.header__humberger.is-open .header__humberger--text {
  opacity: 0;
}
.header__wrapper {
  position: fixed;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.325s ease-in-out;
  transition-delay: 0;
  width: 100vw;
  height: 100vh;
}
.header__wrapper.is-open {
  visibility: visible;
  opacity: 1;
  transition: 0.325s ease-in-out;
  transition-delay: 0.525s;
}
.header__inner {
  width: 100%;
  height: 360px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.header__logo {
  width: 45%;
  max-width: 220px;
  margin: 0 auto;
}
.header__nav {
  width: 100%;
  max-width: 566px;
  margin: 0 auto;
}
.header__nav--box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .header__nav--box {
    flex-wrap: nowrap;
    margin-top: 1em;
  }
}
.header__nav--item {
  width: 100%;
  text-align: center;
  margin-top: 1em;
}
@media (min-width: 768px) {
  .header__nav--item {
    width: 100%;
  }
}
.header__nav--item:nth-child(1) .header__nav--link {
  display: inline-block;
  width: 72px;
  transform: translateY(3px);
}
.header__nav--item:nth-child(2) .header__nav--link {
  width: 50px;
  display: inline-block;
}
.header__nav--item:nth-child(3) .header__nav--link {
  width: 66px;
  display: inline-block;
}
.header__nav--item:nth-child(4) .header__nav--link {
  width: 63px;
  display: inline-block;
}
.header__nav--item:nth-child(5) .header__nav--link {
  width: 44px;
  display: inline-block;
}
.header__nav--item:nth-child(6) .header__nav--link {
  width: 48px;
  display: inline-block;
}
.header__nav--item:nth-child(7) .header__nav--link {
  width: 66px;
  display: inline-block;
}
.header__nav--item:nth-child(8) .header__nav--link {
  width: 66px;
  display: inline-block;
}

.hero-panels {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loaded .hero-panel-bg div:nth-child(1) {
  transition-delay: 0s;
}

.loaded .hero-panel-bg div {
  width: 25%;
  opacity: 1;
}

/* Hero Panels
---------------------------- */
@media screen and (min-width: 812px) {
  /* Hero Title
    ---------------------------- */
  .hero-title {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 46.5%;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(144, 0, 10, 0.45));
  }
}
@media screen and (min-width: 812px) and (min-width: 1024px) {
  .hero-title {
    bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .hero-title picture {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
  }
}
@media screen and (min-width: 812px) {
  .loaded .hero-title picture {
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (min-width: 812px) {
  .hero-panels {
    position: relative;
    display: block;
    height: 100vh;
  }
}
@media screen and (min-width: 812px) {
  .hero-panels:before {
    content: "";
    display: block;
    padding-top: 114.6666667%;
  }
}
/* Hero Panel Background
---------------------------- */
@media screen and (min-width: 812px) {
  .hero-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .hero-panel-bg div {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s, width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .hero-panel-bg div:nth-child(1) {
    background: #90000a;
    left: 0;
  }
  .hero-panel-bg div:nth-child(2) {
    background: #cb1b45;
    left: 25%;
  }
  .hero-panel-bg div:nth-child(3) {
    background: #90000a;
    left: 50%;
  }
  .hero-panel-bg div:nth-child(4) {
    background: #cb1b45;
    left: 75%;
  }
  /* Loaded */
  .loaded .hero-panel-bg div {
    width: 25%;
    opacity: 1;
  }
  .loaded .hero-panel-bg div:nth-child(1) {
    transition-delay: 0s;
  }
  .loaded .hero-panel-bg div:nth-child(2) {
    transition-delay: 0.2s;
  }
  .loaded .hero-panel-bg div:nth-child(3) {
    transition-delay: 0.4s;
  }
  .loaded .hero-panel-bg div:nth-child(4) {
    transition-delay: 0.6s;
  }
  /* Hero Panel
  ---------------------------- */
  .hero-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .hero-panel div {
    width: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s, width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .hero-panel div:nth-child(1) {
    left: 0;
  }
  .hero-panel div:nth-child(2) {
    left: 25%;
  }
  .hero-panel div:nth-child(3) {
    left: 50%;
  }
  .hero-panel div:nth-child(4) {
    left: 75%;
  }
  /* Panel Visible */
  .hero-panel-visible div {
    width: 25%;
    opacity: 1;
  }
  .hero-panel-visible div:nth-child(1) {
    transition-delay: 0s;
  }
  .hero-panel-visible div:nth-child(2) {
    transition-delay: 0.2s;
  }
  .hero-panel-visible div:nth-child(3) {
    transition-delay: 0.4s;
  }
  .hero-panel-visible div:nth-child(4) {
    transition-delay: 0.6s;
  }
  /* Hero Panel Image
  ---------------------------- */
  .hero-panel div:before {
    content: "";
    display: block;
    width: 25vw;
    height: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(-12%, 0, 0);
    transition: all 0.6s;
  }
  /* Panel Visible */
  .hero-panel-visible div:before {
    transform: translate3d(0, 0, 0);
  }
  .hero-panel-visible div:nth-child(1):before {
    transition-delay: 0s;
  }
  .hero-panel-visible div:nth-child(2):before {
    transition-delay: 0.2s;
  }
  .hero-panel-visible div:nth-child(3):before {
    transition-delay: 0.4s;
  }
  .hero-panel-visible div:nth-child(3):before {
    transition-delay: 0.6s;
  }
  .hero-panel-01 div:nth-child(1):before {
    background-image: url(../img/mainview_1-1.jpg);
  }
  .hero-panel-01 div:nth-child(2):before {
    background-image: url(../img/mainview_1-2.jpg);
  }
  .hero-panel-01 div:nth-child(3):before {
    background-image: url(../img/mainview_1-3.jpg);
  }
  .hero-panel-01 div:nth-child(4):before {
    background-image: url(../img/mainview_1-4.jpg);
  }
  .hero-panel-02 div:nth-child(1):before {
    background-image: url(../img/mainview_2-1.jpg);
  }
  .hero-panel-02 div:nth-child(2):before {
    background-image: url(../img/mainview_2-2.jpg);
  }
  .hero-panel-02 div:nth-child(3):before {
    background-image: url(../img/mainview_2-3.jpg);
  }
  .hero-panel-02 div:nth-child(4):before {
    background-image: url(../img/mainview_2-4.jpg);
  }
  .hero-panel-03 div:nth-child(1):before {
    background-image: url(../img/mainview_3-1.jpg);
  }
  .hero-panel-03 div:nth-child(2):before {
    background-image: url(../img/mainview_3-2.jpg);
  }
  .hero-panel-03 div:nth-child(3):before {
    background-image: url(../img/mainview_3-3.jpg);
  }
  .hero-panel-03 div:nth-child(4):before {
    background-image: url(../img/mainview_3-4.jpg);
  }
  .hero-panel-04 div:nth-child(1):before {
    background-image: url(../img/mainview_4-1.jpg);
  }
  .hero-panel-04 div:nth-child(2):before {
    background-image: url(../img/mainview_4-2.jpg);
  }
  .hero-panel-04 div:nth-child(3):before {
    background-image: url(../img/mainview_4-3.jpg);
  }
  .hero-panel-04 div:nth-child(4):before {
    background-image: url(../img/mainview_4-4.jpg);
  }
}
/*----アン追加-------*/
@media screen and (max-width: 767px) {
  .hero {
    position: relative;
  }
  .hero-title {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 43%;
    z-index: 1;
    filter: drop-shadow(0 0 4px rgba(144, 0, 10, 0.5));
  }
  .hero-title picture {
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
  }
  .loaded .hero-title picture {
    transform: translate3d(0, 0, 0);
  }
  .hero-panel-01 div:nth-child(4) {
    width: 100%;
  }
  .hero-panel-01 div:nth-child(3):before {
    top: 50%;
  }
  .hero-panel-01 div:nth-child(4):before {
    top: 50%;
    left: 50%;
  }
  .hero-panel-02 div:nth-child(4) {
    width: 100%;
  }
  .hero-panel-02 div:nth-child(3):before {
    top: 50%;
  }
  .hero-panel-02 div:nth-child(4):before {
    top: 50%;
    left: 50%;
  }
  .hero-panel-03 div:nth-child(4) {
    width: 100%;
  }
  .hero-panel-03 div:nth-child(3):before {
    top: 50%;
  }
  .hero-panel-03 div:nth-child(4):before {
    top: 50%;
    left: 50%;
  }
  .hero-panel-04 div:nth-child(4) {
    width: 100%;
  }
  .hero-panel-04 div:nth-child(3):before {
    top: 50%;
  }
  .hero-panel-04 div:nth-child(4):before {
    top: 50%;
    left: 50%;
  }
  /* Hero Panels
  ---------------------------- */
  .hero-panels {
    height: 100%;
    position: relative;
    display: block;
    display: flex;
  }
  .hero-panels:before {
    content: "";
    display: block;
    padding-top: 114.6666667%;
  }
  /* Hero Panel Image
  ---------------------------- */
  /* Panel Visible */
  /*----アン追加-------*/
  /*----アン追加-------*/
}
@media screen and (max-width: 767px) and (min-width: 812px) {
  .hero-panels {
    height: 50vh;
  }
  .hero-panels:before {
    content: "";
    display: block;
    padding-top: 114.6666667%;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-bg {
    position: relative;
    width: 100%; /* 幅を100%にする */
    height: 50%; /* 高さを50%にする */
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-bg div {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s, width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-bg div:nth-child(1) {
    background: #90000a;
    left: 0%;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-bg div:nth-child(2) {
    background: #cb1b45;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .loaded .hero-panel-bg div {
    width: 50%;
    height: 100%;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .loaded .hero-panel-bg div:nth-child(1) {
    transition-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .loaded .hero-panel-bg div:nth-child(2) {
    transition-delay: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-bg div {
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s, width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-bg div:nth-child(1) {
    background: #90000a;
    left: 0%;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-bg div:nth-child(2) {
    background: #cb1b45;
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .loaded .hero-panel2-bg div {
    width: 50%;
    height: 50%;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .loaded .hero-panel2-bg div:nth-child(1) {
    transition-delay: 0.4s;
  }
}
@media screen and (max-width: 767px) {
  .loaded .hero-panel2-bg div:nth-child(2) {
    transition-delay: 0.6s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel div:before {
    content: "";
    display: block;
    width: 50vw;
    height: 50%;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(-12%, 0, 0);
    transition: all 0.6s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2 div:before {
    content: "";
    display: block;
    width: 50vw;
    height: 50vh;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate3d(-12%, 0, 0);
    transition: all 0.6s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-visible div:before {
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-visible div:before {
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel div {
    width: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.6s, width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2 div {
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s, width 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-visible div {
    width: 50%;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-visible div {
    width: 50%;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-01 div:nth-child(1):before {
    background-image: url(../img/mainview_1-1.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-01 div:nth-child(2):before {
    background-image: url(../img/mainview_1-2.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-01 div:nth-child(3):before {
    background-image: url(../img/mainview_1-3.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-01 div:nth-child(4):before {
    background-image: url(../img/mainview_1-4.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-02 div:nth-child(1):before {
    background-image: url(../img/mainview_2-1.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-02 div:nth-child(2):before {
    background-image: url(../img/mainview_2-2.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-02 div:nth-child(3):before {
    background-image: url(../img/mainview_2-3.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-02 div:nth-child(4):before {
    background-image: url(../img/mainview_2-4.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-03 div:nth-child(1):before {
    background-image: url(../img/mainview_3-1.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-03 div:nth-child(2):before {
    background-image: url(../img/mainview_3-2.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-03 div:nth-child(3):before {
    background-image: url(../img/mainview_3-3.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-03 div:nth-child(4):before {
    background-image: url(../img/mainview_3-4.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-04 div:nth-child(1):before {
    background-image: url(../img/mainview_4-1.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-04 div:nth-child(2):before {
    background-image: url(../img/mainview_4-2.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-04 div:nth-child(3):before {
    background-image: url(../img/mainview_4-3.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-04 div:nth-child(4):before {
    background-image: url(../img/mainview_4-4.jpg);
  }
}
@media screen and (max-width: 767px) {
  .hero-panel div:nth-child(1) {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel div:nth-child(2) {
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2 div:nth-child(3) {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2 div:nth-child(4) {
    left: 50%;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-visible div:nth-child(1) {
    transition-delay: 0s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel-visible div:nth-child(2) {
    transition-delay: 0.2s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-visible div:nth-child(3) {
    transition-delay: 0.4s;
  }
}
@media screen and (max-width: 767px) {
  .hero-panel2-visible div:nth-child(4) {
    transition-delay: 0.6s;
  }
}
/*----アン追加-------*/
/*---------------------------------------

scroll

---------------------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 15%;
  right: 20px;
  /*矢印の動き1秒かけて永遠にループ*/
  -webkit-animation: arrowmove 2s ease-in-out infinite;
  animation: arrowmove 2s ease-in-out infinite;
  z-index: 996;
}
@media (min-width: 1024px) {
  .scrolldown4 {
    bottom: 2%;
    right: 60px;
    -webkit-animation: arrowmove2 2s ease-in-out infinite;
    animation: arrowmove2 2s ease-in-out infinite;
  }
}

/*下からの距離が変化して全体が下→上→下に動く*/
@-webkit-keyframes arrowmove {
  0% {
    bottom: 15%;
  }
  50% {
    bottom: 17%;
  }
  100% {
    bottom: 15%;
  }
}
@keyframes arrowmove {
  0% {
    bottom: 15%;
  }
  50% {
    bottom: 17%;
  }
  100% {
    bottom: 15%;
  }
}
@-webkit-keyframes arrowmove2 {
  0% {
    bottom: 2%;
  }
  50% {
    bottom: 5%;
  }
  100% {
    bottom: 2%;
  }
}
@keyframes arrowmove2 {
  0% {
    bottom: 2%;
  }
  50% {
    bottom: 5%;
  }
  100% {
    bottom: 2%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 1px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}

.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #eee;
}

/*---------------------------------------

t-news

---------------------------------------*/
.t-news {
  padding: 100px 25px;
}
@media (min-width: 1024px) {
  .t-news {
    padding: 180px 0;
  }
}
.t-news__wrapper {
  max-width: 1020px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .t-news__wrapper {
    text-align: center;
  }
}
.t-news__title {
  min-width: 100px;
  max-width: 100px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .t-news__title {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .t-news__inner {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  .t-news__inner.a-news {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .t-news__inner {
    display: flex;
    justify-content: space-between;
  }
}
.t-news__contents {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  max-width: 786px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .t-news__contents {
    margin-left: 60px;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .t-news__contents {
    margin-left: 120px;
  }
}
@media (min-width: 1280px) {
  .t-news__contents {
    margin-left: 120px;
  }
}
.t-news__item {
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-bottom: 1em;
  border-bottom: 1px solid #aaa;
  transition: 0.325s ease-in-out;
}
.t-news__item:not(:nth-child(1)) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .t-news__item--box {
    display: flex;
  }
}
@media (min-width: 768px) {
  .t-news__item--day {
    margin-right: 30px;
  }
}
.t-news__item:hover {
  color: #cb1b45;
  border-bottom: 1px solid #cb1b45;
}
.t-news__item--title {
  text-align: left;
}
.t-news__more {
  position: absolute;
  min-width: 100px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .t-news__more {
    display: flex;
    margin-top: 0;
    left: 0;
    bottom: 0;
  }
}
.t-news__more--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.325s ease-in-out;
}
.t-news__more--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.t-news__more--link:hover {
  color: #cb1b45;
}
.t-news__more--link:hover::after {
  width: 125%;
}
@media (min-width: 768px) {
  .t-news__textarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

.t-test {
  padding: 56px 25px;
}
@media (min-width: 1024px) {
  .t-test {
    padding: 180px 0;
  }
}
.t-test__wrapper {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .t-test__wrapper {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .t-test__wrapper {
    max-width: 1280px;
    max-width: 1400px;
  }
}
.t-test__title {
  min-width: 100px;
  max-width: 100px;
  margin-bottom: 24px;
  max-width: 240px;
}
@media (min-width: 768px) {
  .t-test__title {
    margin-bottom: 40px;
  }
}
.t-test__title2 {
  min-width: 100px;
  max-width: 100px;
  margin-top: 0;
  max-width: 200px;
}
@media (min-width: 768px) {
  .t-test__title2 {
    margin-bottom: 0;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .t-test__inner {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  .t-test__inner.a-test {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .t-test__inner {
    display: flex;
    justify-content: space-between;
  }
}
.t-test__contents {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
}
@media (min-width: 768px) {
  .t-test__contents {
    display: block;
    max-width: 786px;
    margin-left: 60px;
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .t-test__contents {
    margin-left: 32px;
  }
}
@media (min-width: 1280px) {
  .t-test__contents {
    margin-left: 32px;
  }
}
.t-test__item {
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-bottom: 1em;
  transition: 0.325s ease-in-out;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .t-test__item {
    margin-top: 40px;
  }
}
.t-test__item:not(:nth-child(1)) {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .t-test__item:not(:nth-child(1)) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .t-test__item--box {
    display: flex;
  }
}
.t-test__item--day {
  font-size: 13px;
  text-align: left;
  border-top: 1px solid #aaa;
  max-width: 150px;
}
@media (min-width: 768px) {
  .t-test__item--day {
    font-size: 14px;
    max-width: 240px;
  }
}
@media (min-width: 768px) {
  .t-test__item--text {
    margin-left: 16px;
  }
}
.t-test__item--title {
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  min-height: 56px;
  max-width: 150px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .t-test__item--title {
    font-size: 18px;
    max-width: 240px;
  }
}
.t-test__item--title:hover {
  color: #cb1b45;
  transition: 0.8s;
}
.t-test__item--article {
  text-align: left;
}
.t-test__item--img {
  max-width: 150px;
}
@media (min-width: 768px) {
  .t-test__item--img {
    max-width: 200px;
  }
}
.t-test__item--article {
  max-width: 180px;
  max-width: 150px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-bottom: 1em;
  font-size: 13px;
}
@media (min-width: 768px) {
  .t-test__item--article {
    max-width: 240px;
    font-size: 14px;
  }
}
.t-test__more {
  position: absolute;
  min-width: 100px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .t-test__more {
    display: flex;
    margin-top: 0;
    left: 0;
    bottom: 0;
  }
}
.t-test__more--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.325s ease-in-out;
}
.t-test__more--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.t-test__more--link:hover {
  color: #cb1b45;
}
.t-test__more--link:hover::after {
  width: 125%;
}
@media (min-width: 768px) {
  .t-test__textarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
.t-test__snsicon {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .t-test__snsicon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

.sns__icon {
  max-width: 50px;
}

.sns__icon img {
  text-align: left;
}

.newsicon {
  background: #cb1b45;
  color: #ffffff;
  padding: 0 6px;
  font-size: 13px;
  font-weight: bold;
}

.t-test2 {
  padding: 56px 25px;
}
@media (min-width: 1024px) {
  .t-test2 {
    padding: 180px 0;
  }
}
.t-test2__wrapper {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .t-test2__wrapper {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .t-test2__wrapper {
    max-width: 1280px;
    max-width: 1400px;
  }
}
.t-test2__title {
  min-width: 100px;
  max-width: 100px;
  margin-bottom: 24px;
  max-width: 240px;
}
@media (min-width: 768px) {
  .t-test2__title {
    margin-bottom: 40px;
    margin-left: 24px;
  }
}
.t-test2__title2 {
  min-width: 100px;
  max-width: 100px;
  margin-top: 0;
  max-width: 200px;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .t-test2__title2 {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .t-test2__inner {
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
  }
  .t-test2__inner.a-test {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .t-test2__inner {
    display: flex;
    justify-content: space-between;
  }
}
.t-test2__contents {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .t-test2__contents {
    display: nowrap;
    max-width: 1020px;
    flex: 1;
    margin: 0 auto;
  }
}
.t-test2__item {
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-bottom: 1em;
  transition: 0.325s ease-in-out;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .t-test2__item {
    margin-top: 40px;
  }
}
.t-test2__item:not(:nth-child(1)) {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .t-test2__item:not(:nth-child(1)) {
    margin-top: 40px;
  }
}
.t-test2__item--day {
  font-size: 13px;
  text-align: left;
  border-top: 1px solid #aaa;
  max-width: 150px;
}
@media (min-width: 768px) {
  .t-test2__item--day {
    font-size: 14px;
    max-width: 240px;
  }
}
.t-test2__item--title {
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  min-height: 56px;
  max-width: 150px;
  line-height: 1.4;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .t-test2__item--title {
    font-size: 18px;
    max-width: 240px;
    line-height: 1.3;
    padding: 8px 0;
  }
}
.t-test2__item--title:hover {
  color: #cb1b45;
  transition: 0.8s;
}
.t-test2__item--article {
  text-align: left;
}
.t-test2__item--img {
  max-width: 150px;
}
@media (min-width: 768px) {
  .t-test2__item--img {
    max-width: 240px;
  }
}
.t-test2__item--article {
  max-width: 180px;
  max-width: 150px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-bottom: 1em;
  font-size: 13px;
}
@media (min-width: 768px) {
  .t-test2__item--article {
    max-width: 240px;
    font-size: 14px;
  }
}
.t-test2__more {
  position: absolute;
  min-width: 100px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .t-test2__more {
    display: flex;
    margin-top: 0;
    left: 0;
    bottom: 0;
  }
}
.t-test2__more--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.325s ease-in-out;
}
.t-test2__more--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.t-test2__more--link:hover {
  color: #cb1b45;
}
.t-test2__more--link:hover::after {
  width: 125%;
}
@media (min-width: 768px) {
  .t-test2__textarea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}
.t-test2__snsicon {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .t-test2__snsicon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

.sns__icon {
  max-width: 50px;
}

.sns__icon img {
  text-align: left;
}

.newsicon {
  background: #cb1b45;
  color: #ffffff;
  padding: 0 6px;
  font-size: 13px;
  font-weight: bold;
}

.reco_top {
  margin: 0;
  padding: 10px 0;
  background: linear-gradient(to right, #92010c, #c5193f);
}

.reco_frame {
  margin: 0;
  /* padding:45px 30px; */
  padding: 16px 30px;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.reco_frame img {
  width: 100%;
}

.reco_pict {
  margin: 0;
  padding: 0;
}

.reco_pict img {
  width: 100%;
}

.reco_txt {
  margin: 0;
  /* padding:45px 30px; */
  padding: 8px 20px 20px;
  background-image: url("img/bg_01.jpg");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.reco_name {
  margin: 0 0 30px 0;
  padding: 0 0 10px 0;
  font-size: 150%;
  line-height: 150%;
  border-bottom: 1px solid #881c21;
}

ul.reco_sns {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.reco_sns li {
  margin-bottom: 8px;
  margin-left: 8px;
  font-size: 20px;
  font-family: serif;
  font-style: italic;
}

ul.reco_sns img {
  max-width: 24px;
}

.reco_bg {
  padding: 1px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
}

.reco_bg p {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .reco_sns li {
    font-size: 20px;
  }
  .reco_bg p {
    font-size: 16px;
  }
}
.pink {
  color: #c41b45;
}

p.reco_p {
  margin-bottom: 8px;
  font-size: 14px !important;
}

.flex {
  display: none;
}
@media (min-width: 600px) {
  .flex {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* 追加 */
  }
}

.flex2 {
  display: flex;
  justify-content: space-around;
  align-items: flex-start; /* 追加 */
}

p.reco_prf {
  width: 46%;
  font-size: 14px !important;
}

@media screen and (min-width: 769px) {
  .reco_txt {
    padding: 16px 30px 30px;
  }
}
/*---------------------------------------

t-concept

---------------------------------------*/
.t-concept {
  padding: 0px 0;
}
@media (min-width: 1024px) {
  .t-concept {
    padding: 120px 0 300px;
  }
}
.t-concept__wrapper {
  padding: 180px 56px 100px;
  position: relative;
}
@media (min-width: 1024px) {
  .t-concept__wrapper {
    padding: 80px 40px;
  }
}
.t-concept__line {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to left, #90000a, #c61940);
}
.t-concept__line.-tops {
  top: 0;
  right: clamp(10px, 2vw, 50px);
  height: 0%;
  transition: 1s ease-in-out;
  opacity: 0;
}
.t-concept__line.-tops.is-scroll {
  opacity: 1;
  height: 50%;
}
@media (min-width: 1024px) {
  .t-concept__line.-tops {
    width: 0%;
    height: 2px;
    right: 0;
  }
  .t-concept__line.-tops.is-scroll {
    width: 31.5%;
    height: 2px;
  }
}
.t-concept__line.-topl {
  top: 0;
  right: clamp(5px, 1vw, 50px);
  height: 0%;
  opacity: 0;
  transition: 1s ease-in-out;
  transition-delay: 0.325s;
}
.t-concept__line.-topl.is-scroll {
  opacity: 1;
  height: 80%;
}
@media (min-width: 1024px) {
  .t-concept__line.-topl {
    width: 0%;
    height: 2px;
    right: 0;
    top: 8px;
  }
  .t-concept__line.-topl.is-scroll {
    width: 63%;
    height: 2px;
  }
}
.t-concept__line.-bottoms {
  bottom: 0;
  left: clamp(10px, 2vw, 50px);
  height: 0%;
  opacity: 0;
  transition: 1s ease-in-out;
  transition-delay: 0.65s;
}
.t-concept__line.-bottoms.is-scroll {
  height: 50%;
  opacity: 1;
}
@media (min-width: 1024px) {
  .t-concept__line.-bottoms {
    width: 0%;
    max-width: 250px;
    height: 2px;
    left: 0px;
    bottom: 8px;
  }
  .t-concept__line.-bottoms.is-scroll {
    width: 15%;
    height: 2px;
  }
}
.t-concept__line.-bottoml {
  bottom: 0;
  left: clamp(5px, 1vw, 50px);
  height: 0%;
  opacity: 0;
  transition: 1s ease-in-out;
  transition-delay: 0.975s;
}
.t-concept__line.-bottoml.is-scroll {
  opacity: 1;
  height: 80%;
}
@media (min-width: 1024px) {
  .t-concept__line.-bottoml {
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0px;
  }
  .t-concept__line.-bottoml.is-scroll {
    width: 33%;
    height: 2px;
  }
}
@media (min-width: 1024px) {
  .t-concept__inner {
    display: flex;
    max-width: 1020px;
    margin: 0 auto;
    align-items: center;
  }
}
.t-concept__title {
  max-width: 240px;
  margin: 0 auto;
}
.t-concept__textarea {
  font-family: "Noto Serif JP", serif;
  color: #666666;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .t-concept__textarea {
    flex: 1;
  }
}
.t-concept__main {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.75;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .t-concept__main {
    font-size: 24px;
    margin-top: 80px;
  }
}
@media (min-width: 1024px) {
  .t-concept__main {
    text-align: right;
    margin-top: 60px;
  }
}
.t-concept__sub {
  letter-spacing: 0.08em;
  line-height: 2;
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .t-concept__sub {
    margin-top: 80px;
  }
}
@media (min-width: 1024px) {
  .t-concept__sub {
    max-width: 800px;
    text-align: right;
    letter-spacing: 0.05em;
    margin-top: 60px;
  }
}
.t-concept__sub p {
  margin: 1em 0;
}

/*---------------------------------------

t-catalog

---------------------------------------*/
.t-catalog {
  padding: 100px 0;
  position: relative;
}
.t-catalog::after {
  position: absolute;
  content: "";
  background-image: url(../img/catalog.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding-top: 26.6666%;
  bottom: 5%;
  left: 0;
  z-index: -1;
  opacity: 0.07;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
}
@media (min-width: 768px) {
  .t-catalog::after {
    width: 70%;
    height: auto;
    padding-top: 16.6666%;
    bottom: 5%;
    left: 0;
    opacity: 0.06;
    transform: rotate(0) translateX(0);
  }
}
@media (min-width: 600px) {
  .t-catalog {
    padding: 0px 0 240px;
  }
}
@media (min-width: 768px) {
  .t-catalog__wrapper {
    display: flex;
  }
}
.t-catalog__title {
  width: 144px;
  margin: 0;
}
@media (min-width: 768px) {
  .t-catalog__title {
    width: 172px;
    margin: 0 0 auto auto;
  }
}
@media (min-width: 1024px) {
  .t-catalog__title {
    transform: translateX(10%);
  }
}
.t-catalog__textarea {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 25px 40px;
}
@media (min-width: 768px) {
  .t-catalog__textarea {
    width: 30%;
    margin-right: 10%;
    flex-direction: column;
  }
}
.t-catalog__more {
  width: 120px;
  margin: 25px 25px 0 auto;
}
@media (min-width: 768px) {
  .t-catalog__more {
    margin: 0;
  }
}
.t-catalog__more--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.325s ease-in-out;
}
.t-catalog__more--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.t-catalog__more--link:hover {
  color: #cb1b45;
}
.t-catalog__more--link:hover::after {
  width: 125%;
}
.t-catalog__inner {
  width: 80%;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .t-catalog__inner {
    width: 70%;
    margin: 0;
  }
}
.t-catalog__item {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .t-catalog__item {
    margin-right: 40px;
    overflow: hidden;
  }
}
.t-catalog__item--link {
  position: relative;
}
.t-catalog__item--link img {
  transition: 0.325s ease-in-out;
}
@media (min-width: 600px) {
  .t-catalog__item--link:hover img {
    transform: scale(104%);
  }
}
.t-catalog .slick-list {
  padding-right: 15%;
}
.t-catalog__pagenation {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .t-catalog__pagenation {
    margin-bottom: 40px;
  }
}
.t-catalog .slick-arrow {
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #cb1b45;
}
.t-catalog .slick-prev02::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left bottom;
}
.t-catalog .slick-next02::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}

/*---------------------------------------

t-reserve

---------------------------------------*/
.t-reserve__wrapper {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #cb1b45, #90000a);
  position: relative;
}
.t-reserve__top {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  width: 200%;
  top: 0;
  right: 0;
  z-index: 0;
}
.t-reserve__top--text {
  display: block;
  width: 30%;
  min-width: 240px;
  margin: 0 10px;
  opacity: 0.25;
}
@media (min-width: 768px) {
  .t-reserve__top--text {
    margin: 0 20px;
  }
}
@media (min-width: 1024px) {
  .t-reserve__top--text {
    margin: 0 30px;
  }
}
@media (min-width: 1280px) {
  .t-reserve__top--text {
    margin: 0 35px;
  }
}
@media (min-width: 1500px) {
  .t-reserve__top--text {
    margin: 0 40px;
  }
}
.t-reserve__bottom {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  width: 200%;
  bottom: 0;
  z-index: 0;
}
.t-reserve__bottom--text {
  display: block;
  width: 30%;
  min-width: 240px;
  margin: 0 10px;
  opacity: 0.25;
}
@media (min-width: 768px) {
  .t-reserve__bottom--text {
    margin: 0 20px;
  }
}
@media (min-width: 1024px) {
  .t-reserve__bottom--text {
    margin: 0 30px;
  }
}
@media (min-width: 1280px) {
  .t-reserve__bottom--text {
    margin: 0 35px;
  }
}
@media (min-width: 1500px) {
  .t-reserve__bottom--text {
    margin: 0 40px;
  }
}
.t-reserve__button {
  position: relative;
  z-index: 2;
  width: 75%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .t-reserve__button {
    padding: 120px 0;
  }
}
@media (min-width: 1500px) {
  .t-reserve__button {
    max-width: 400px;
  }
}
.t-reserve__button--link {
  background: #ffffff;
  color: #cb1b45;
  font-weight: 700;
  font-size: 20px;
  display: block;
  font-family: "Noto Serif JP", serif;
  padding: 0.75em 0 0.8em;
  border-radius: 1.5em;
  border: 1px solid #ffffff;
  letter-spacing: 0.08em;
  transition: 0.325s ease-in-out;
}
@media (min-width: 600px) {
  .t-reserve__button--link {
    font-size: 24px;
  }
}
.t-reserve__button--link:hover {
  background: transparent;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-weight: 600;
}

/*---------------------------------------

t-staff

---------------------------------------*/
.t-staff {
  padding: 100px 0;
  position: relative;
}
.t-staff::after {
  position: absolute;
  content: "";
  background-image: url(../img/staff.svg);
  background-repeat: no-repeat;
  width: 80%;
  height: auto;
  padding-top: 26.6666%;
  bottom: 5%;
  left: 0;
  z-index: -1;
  opacity: 0.07;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
}
@media (min-width: 768px) {
  .t-staff::after {
    width: 50%;
    height: auto;
    padding-top: 16.6666%;
    bottom: 5%;
    left: 0;
    opacity: 0.06;
    transform: rotate(0) translateX(0);
  }
}
@media (min-width: 600px) {
  .t-staff {
    padding: 180px 0;
  }
}
@media (min-width: 768px) {
  .t-staff__wrapper {
    display: flex;
  }
}
.t-staff__title {
  width: 100px;
  margin: 0;
}
@media (min-width: 768px) {
  .t-staff__title {
    width: 120px;
    margin: 0 0 auto auto;
  }
}
@media (min-width: 1024px) {
  .t-staff__title {
    transform: translateX(10%);
  }
}
.t-staff__textarea {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 25px 40px;
}
@media (min-width: 768px) {
  .t-staff__textarea {
    width: 30%;
    margin-right: 10%;
    flex-direction: column;
  }
}
.t-staff__more {
  width: 120px;
  margin: 25px 25px 0 auto;
}
@media (min-width: 768px) {
  .t-staff__more {
    margin: 0;
  }
}
.t-staff__more--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.325s ease-in-out;
}
.t-staff__more--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.t-staff__more--link:hover {
  color: #cb1b45;
}
.t-staff__more--link:hover::after {
  width: 125%;
}
.t-staff__inner {
  width: 80%;
  margin: 0 0 0 auto;
}
@media (min-width: 768px) {
  .t-staff__inner {
    width: 70%;
    margin: 0;
  }
}
.t-staff__person {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .t-staff__person {
    margin-right: 40px;
    overflow: hidden;
  }
}
.t-staff__person--link {
  position: relative;
}
.t-staff__person--link::after {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  background: linear-gradient(to bottom, #cb1b45, #90000a);
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  transition: 0.325s ease-in-out;
}
.t-staff__person--link img {
  transition: 0.325s ease-in-out;
}
@media (min-width: 600px) {
  .t-staff__person--link:hover::after {
    width: 0%;
  }
  .t-staff__person--link:hover img {
    transform: scale(104%);
  }
}
.t-staff .slick-list {
  padding-right: 15%;
}
.t-staff__pagenation {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .t-staff__pagenation {
    margin-bottom: 40px;
  }
}
.t-staff .slick-arrow {
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #cb1b45;
}
.t-staff .slick-prev01::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left bottom;
}
.t-staff .slick-next01::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}

/*---------------------------------------

t-contact

---------------------------------------*/
.t-contact {
  padding: 60px 0 0;
}
@media (min-width: 1024px) {
  .t-contact {
    padding: 120px 0 0;
  }
}
.t-contact__wrapper {
  margin-top: 20px;
}
.t-contact__title {
  width: 130px;
  margin: 0 auto;
}
.t-contact__box {
  width: 100%;
  margin-top: 0px;
  margin: 0 auto;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .t-contact__box {
    flex-direction: row;
  }
}
.t-contact__map {
  width: 100%;
  height: 500px;
  border: 2px solid #eee;
}
@media (min-width: 768px) {
  .t-contact__map {
    width: 30%;
    height: 600px;
    border: 1px solid #666;
  }
}
@media (min-width: 1024px) {
  .t-contact__map {
    width: 50%;
  }
}
.t-contact__map iframe {
  width: 100%;
  min-height: 400px;
  height: 100%;
  filter: grayscale(100%);
}
.t-contact__map object {
  filter: grayscale(100%);
}
.t-contact__map embed {
  filter: grayscale(100%);
}
.t-contact__contentsbox {
  width: 100%;
  padding: 25px 15px 25px 25px;
  background: #666;
}
@media (min-width: 768px) {
  .t-contact__contentsbox {
    padding: 40px 10px 40px 40px;
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .t-contact__contentsbox {
    width: 50%;
  }
}
.t-contact__scrollbar {
  overflow-y: scroll;
  width: 100%;
  height: 450px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .t-contact__scrollbar {
    padding-right: 20px;
    height: 500px;
  }
}
.t-contact__scrollbar::-webkit-scrollbar {
  width: 3px;
}
.t-contact__scrollbar::-webkit-scrollbar-thumb {
  background: #fff;
}
.t-contact__items {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .t-contact__items {
    margin-top: 60px;
  }
}
.t-contact__items:nth-child(1) {
  margin-top: 0;
}
.t-contact__contents {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: flex;
  padding: 15px 0;
  border-bottom: 0.5px solid #ffffff;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .t-contact__contents {
    padding: 15px;
    justify-content: flex-start;
  }
}
.t-contact__contents--name {
  width: 15%;
  text-align: left;
  transform: translateY(3px);
}
@media (min-width: 768px) {
  .t-contact__contents--name {
    text-align: right;
  }
}
.t-contact__contents--main {
  width: 80%;
  padding-left: 5%;
  line-height: 1.75;
}
.t-contact__contents--main p {
  margin-bottom: 0.5em;
}
.t-contact__contents--link {
  background: linear-gradient(to right, #cb1b45, #90000a);
  padding: 0.2em 0.5em 0.35em;
  transition: 0.325s ease-in-out;
  letter-spacing: 0.08em;
}
.t-contact__contents--link:hover {
  color: #666666;
}

p.t-contact__storename {
  color: #fff;
  padding-top: 25px;
}

p.t-contact__name {
  color: #fff;
  padding: 20px 0;
}
@media (min-width: 768px) {
  p.t-contact__name {
    padding: 50px 0 20px;
  }
}

/*---------------------------------------

child-header

---------------------------------------*/
.child-header {
  height: 120px;
  padding-top: 40px;
}
.child-header__logo {
  width: 50%;
  margin: 0 auto;
  max-width: 200px;
}

/*---------------------------------------

news

---------------------------------------*/
.news .a-news {
  min-height: 50vh;
  position: relative;
}
.news .a-news__textbox a {
  word-break: break-all;
}

/*---------------------------------------

menu

---------------------------------------*/
.menu {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .menu {
    padding-top: 100px;
  }
}
.menu__title {
  max-width: 1020px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}
.menu__title--image {
  width: 50%;
  max-width: 240px;
}
.menu__inner {
  display: none;
}
@media (min-width: 768px) {
  .menu__inner {
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 640px;
    height: 720px;
    flex-direction: row;
  }
}
.menu__card {
  width: 100%;
  height: auto;
  box-shadow: 0 0 40px rgba(65, 65, 65, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: 1s ease-in-out;
  transition-delay: 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  .menu__card {
    width: 280px;
    height: 560px;
  }
  .menu__card.-back {
    transform: rotateY(-180deg);
  }
  .menu__card.-front {
    transform: rotateY(0deg);
  }
}
.menu__card--box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 10;
  transition: 1s ease-in-out;
}
@media (min-width: 768px) {
  .menu__card--box {
    transform: translateX(180px);
    width: 280px;
    height: 560px;
  }
}
.menu__card--returnbox {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 9;
  transition: 1s ease-in-out;
}
@media (min-width: 768px) {
  .menu__card--returnbox {
    transform: translateX(-180px);
    width: 280px;
    height: 560px;
  }
}
@media (min-width: 768px) {
  .menu__inner.is-scroll .menu__card--box {
    transform: translateX(0);
  }
  .menu__inner.is-scroll .menu__card--returnbox {
    transform: translateX(0);
  }
  .menu__inner.is-scroll .menu__card.-front {
    transform: rotateY(-180deg);
  }
  .menu__inner.is-scroll .menu__card.-back {
    transform: rotateY(0deg);
  }
}
.menu__sp {
  width: 65%;
  margin: 60px auto;
  box-shadow: 0 0 40px rgba(65, 65, 65, 0.2);
}
@media (min-width: 768px) {
  .menu__sp {
    display: none;
  }
}

/*---------------------------------------

reserve

---------------------------------------*/
.reserve {
  min-height: 100vh;
  padding-bottom: 60px;
}
.reserve__wrapper {
  max-width: 1020px;
  margin: 0 auto;
}
.reserve__text {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 40px;
}
.reserve__flow {
  max-width: 640px;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 40px;
}
.reserve__calendar {
  margin-top: 40px;
}
.reserve__line {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #000000;
  padding: 1em;
  margin: 3em 1em 1em;
  border: 1px solid #cb1b45;
  text-align: center;
}
@media (min-width: 1024px) {
  .reserve__line {
    margin: 60px 0 120px;
  }
}
.reserve__line--text {
  line-height: 1.75;
  margin: 1em auto;
  font-size: 15px;
  display: inline-block;
  text-align: left;
}
@media (min-width: 768px) {
  .reserve__line--text {
    font-size: 16px;
    text-align: center;
  }
}
.reserve__line--text span {
  font-weight: bold;
}
.reserve__line--text.-sm {
  font-size: 85%;
}
.reserve__line--text a {
  color: #c41b45;
  text-decoration: underline;
}
.reserve__line--button {
  max-width: 440px;
  margin: 0 auto;
  padding: 20px;
}
.reserve__line--link {
  background: #cb1b45;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  display: block;
  padding: 0.75em 0 0.8em;
  border-radius: 1.5em;
  border: 1px solid #cb1b45;
  letter-spacing: 0.08em;
  transition: 0.325s ease-in-out;
}
@media (min-width: 600px) {
  .reserve__line--link {
    font-size: 20px;
  }
}
.reserve__line--link:hover {
  background: transparent;
  color: #cb1b45;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.reserve__line--link2 {
  color: #cb1b45;
  text-decoration: underline;
  transition: 0.325s ease-in-out;
}
.reserve__line--link2:hover {
  opacity: 0.8;
}
.reserve__list {
  display: inline-block;
}
@media (min-width: 768px) {
  .reserve__list {
    padding: 0 25px;
  }
}
.reserve__item {
  text-align: left;
  line-height: 1.75;
  font-size: 85%;
  list-style: inherit;
  padding-left: 1em;
  padding-bottom: 0.5em;
  position: relative;
}
.reserve__item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #666666;
  top: 10px;
  left: 0;
}

/*---------------------------------------

calendar_css追加

---------------------------------------*/
.week6_501c11a6f306 {
  display: none;
}

/*---------------------------------------

contact

---------------------------------------*/
.contact__title {
  width: 130px;
  margin: 0 auto;
  margin-top: 40px;
}
.contact input {
  border: 1px solid rgba(203, 27, 69, 0.5);
  box-shadow: inset 3px 3px 0 0 rgba(51, 51, 51, 0.08);
  border-radius: 3px;
  font-size: 16px;
  padding: 0.5em;
  margin: 0.5em 0;
  width: 100%;
  color: #333333;
}
.contact textarea {
  border: 1px solid rgba(203, 27, 69, 0.5);
  box-shadow: inset 3px 3px 0 0 rgba(51, 51, 51, 0.08);
  border-radius: 3px;
  font-size: 16px;
  padding: 0.5em;
  margin: 0.5em 0;
  width: 100%;
  color: #333333;
}
.contact .form__area {
  max-width: 640px;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 40px;
}
.contact .form__explan {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.75;
}
.contact .form__content {
  margin-top: 40px;
}
.contact .form__content--item span {
  color: #c61940;
  font-size: 85%;
  margin-left: 10px;
}
.contact .form__content--item-submit {
  text-align: center;
  margin: 2em;
}
.contact .form__content--item-submit input {
  background: linear-gradient(to right, #cb1b45, #90000a);
  color: #ffffff;
  border-radius: 4px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 1em 0;
  cursor: pointer;
  width: 100%;
  max-width: 480px;
  transition: 0.225s ease-in-out;
}
.contact .form__content--item-submit input:hover {
  letter-spacing: 0.2em;
}

/*---------------------------------------

access

---------------------------------------*/
.access {
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .access {
    max-width: 960px;
    margin: 0 auto;
  }
}
.access__title {
  width: 120px;
  margin: 0 auto;
  margin-top: 40px;
}
.access__contents {
  max-width: 740x;
  text-align: center;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 768px) {
  .access__item {
    width: 24%;
  }
}
.access__number {
  display: inline-block;
  background: linear-gradient(to right, #cb1b45, #90000a);
  color: #ffffff;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  width: 32px;
  height: 32px;
  border-radius: 24px;
  padding-top: 1px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .access__number {
    display: inline-block;
    background: linear-gradient(to right, #cb1b45, #90000a);
    color: #ffffff;
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    width: 40px;
    height: 40px;
    border-radius: 24px;
    padding-top: 4px;
    margin-top: 40px;
  }
}
.access__image {
  margin: 1em 0;
}

p.access__text {
  line-height: 1.6;
  text-align: left;
  font-size: 15px;
}
@media (min-width: 768px) {
  p.access__text {
    text-align: center;
    font-size: 14px;
  }
}

/*---------------------------------------

a-news

---------------------------------------*/
.a-news__contents {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  max-width: 786px;
  font-size: 14px;
  text-align: left;
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .a-news__contents {
    margin-left: 80px;
  }
}
.a-news__title {
  font-size: 24px;
  letter-spacing: 0.08em;
}
.a-news__days {
  color: #cb1b45;
  margin-top: 1.5em;
  letter-spacing: 0.1em;
}
.a-news__textbox {
  margin-top: 40px;
}
.a-news__textbox p {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 1em 0;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .a-news__textbox p {
    font-size: 16px;
  }
}
.a-news__textbox p a {
  color: #cb1b45;
  transition: 0.325s ease-in-out;
  border-bottom: 1px solid #cb1b45;
}
.a-news__textbox p a:hover {
  color: #90000a;
}
.a-news__imagebox {
  text-align: center;
}
.a-news__image.-sm {
  width: 60%;
}

/*---------------------------------------

staff

---------------------------------------*/
.staff {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .staff {
    padding-top: 100px;
  }
}
.staff__title {
  max-width: 1020px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.staff__title--image {
  width: 50%;
  max-width: 160px;
}
.staff__title::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 1px;
  background: linear-gradient(to left, #90000a, #c61940);
  bottom: -30px;
  left: 1em;
  transition: 1s ease-in-out;
}
@media (min-width: 768px) {
  .staff__title::after {
    height: 2px;
    bottom: -60px;
  }
}
.staff__title.is-scroll::after {
  width: calc(100% - 2em);
}
.staff__inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .staff__inner {
    padding: 120px 0;
  }
}
.staff__person {
  width: calc(50% - 2em);
  height: auto;
  margin: 1em;
  position: relative;
}
@media (min-width: 768px) {
  .staff__person {
    width: calc(33.333333% - 2em);
  }
}
.staff__person--box {
  display: flex;
  flex-wrap: wrap;
}
.staff__person--link {
  display: block;
  position: relative;
  overflow: hidden;
}
.staff__person--link::after {
  position: absolute;
  content: "";
  width: 15%;
  height: 100%;
  background: linear-gradient(to bottom, #cb1b45, #90000a);
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  transition: 0.325s ease-in-out;
}
.staff__person--link img {
  transition: 0.325s ease-in-out;
}
@media (min-width: 600px) {
  .staff__person--link:hover::after {
    width: 0%;
  }
  .staff__person--link:hover img {
    transform: scale(104%);
  }
}
.staff__prf {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin: 0.5em;
}
@media (min-width: 768px) {
  .staff__prf {
    display: block;
    margin: 1em 0 0;
    flex-direction: row;
    align-items: center;
  }
}
.staff__name {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin: 0.5em;
}
@media (min-width: 768px) {
  .staff__name {
    margin: 1em;
    flex-direction: row;
    align-items: center;
  }
}
.staff__name--en {
  color: #90000a;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  margin-top: 0.5em;
}
@media (min-width: 768px) {
  .staff__name--en {
    font-size: 16px;
    margin-top: 0;
  }
}
.staff__name--ja {
  font-size: 12px;
  margin-top: 0.5em;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .staff__name--ja {
    font-size: 14px;
    margin-top: 0;
  }
}

.a-staff__inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 60px 0 0;
  position: relative;
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  .a-staff__inner {
    padding: 120px 1em 0;
  }
}
.a-staff__person {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .a-staff__person {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.a-staff__image {
  width: 60%;
  margin: 0 auto;
  max-width: 320px;
}
.a-staff__textarea {
  padding: 40px 25px;
}
@media (min-width: 768px) {
  .a-staff__textarea {
    flex: 1;
    padding: 40px 20px 40px 60px;
  }
}
.a-staff__name {
  position: relative;
  padding-left: 48px;
}
@media (min-width: 768px) {
  .a-staff__name {
    padding-left: 60px;
  }
}
.a-staff__name::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 48px;
  bottom: 0;
  left: 0;
  background-color: #90000a;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
@media (min-width: 768px) {
  .a-staff__name::before {
    height: 64px;
  }
}
.a-staff__name--ja {
  font-size: 22px;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .a-staff__name--ja {
    font-size: 24px;
  }
}
.a-staff__name--en {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding-left: 1em;
  color: #90000a;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 768px) {
  .a-staff__name--en {
    padding-left: 2em;
    font-size: 16px;
  }
}
.a-staff__contents {
  padding-top: 60px;
}
.a-staff__contents p {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 14px;
}
@media (min-width: 768px) {
  .a-staff__contents p {
    font-size: 16px;
  }
}
.a-staff__back {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 100px;
  margin-top: 20px;
  transform: translateY(100%);
}
.a-staff__back--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.325s ease-in-out;
}
.a-staff__back--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.a-staff__back--link:hover {
  color: #cb1b45;
}
.a-staff__back--link:hover::after {
  width: 125%;
}

.n-staff__name {
  position: relative;
  padding-left: 48px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .n-staff__name {
    font-size: 14px;
    padding: 0 0 8px 60px;
    margin-bottom: 8px;
  }
}
.n-staff__name::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 24px;
  bottom: 0;
  left: 0;
  background-color: #90000a;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
@media (min-width: 768px) {
  .n-staff__name::before {
    height: 48px;
    width: 2px;
  }
}
.n-staff__name--ja {
  font-size: 22px;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .n-staff__name--ja {
    font-size: 24px;
  }
}
.n-staff__name--en {
  font-size: 14px;
  letter-spacing: 0.1em;
  padding-left: 1em;
  color: #90000a;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 768px) {
  .n-staff__name--en {
    padding-left: 2em;
    font-size: 16px;
  }
}
.n-staff__name span {
  font-size: 12px;
}
@media (min-width: 768px) {
  .n-staff__name span {
    font-size: 13px;
  }
}

/*---------------------------------------

catalog

---------------------------------------*/
.catalog {
  padding-top: 80px;
}
@media (min-width: 768px) {
  .catalog {
    padding-top: 100px;
  }
}
.catalog__title {
  max-width: 1020px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.catalog__title--image {
  width: 50%;
  max-width: 230px;
}
.catalog__title::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 1px;
  background: linear-gradient(to left, #90000a, #c61940);
  bottom: -30px;
  left: 1em;
  transition: 1s ease-in-out;
}
@media (min-width: 768px) {
  .catalog__title::after {
    height: 2px;
    bottom: -60px;
  }
}
.catalog__title.is-scroll::after {
  width: calc(100% - 2em);
}
.catalog__inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .catalog__inner {
    padding: 120px 0;
  }
}
.catalog__item {
  width: calc(50% - 2em);
  height: auto;
  margin: 1em;
  position: relative;
}
@media (min-width: 768px) {
  .catalog__item {
    width: calc(33.333333% - 2em);
  }
}
.catalog__item--box {
  display: flex;
  flex-wrap: wrap;
}
.catalog__item--link {
  display: block;
  position: relative;
  overflow: hidden;
}
.catalog__item--link img {
  transition: 0.325s ease-in-out;
}
@media (min-width: 600px) {
  .catalog__item--link:hover img {
    transform: scale(104%);
  }
}

.a-catalog__inner {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0px;
}
@media (min-width: 768px) {
  .a-catalog__inner {
    padding: 120px 0 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.a-catalog__look {
  max-width: 480px;
  width: 100%;
}
@media (min-width: 768px) {
  .a-catalog__look {
    width: 50%;
  }
}
.a-catalog__main {
  margin: 0 1em;
}
.a-catalog__main-nav--item {
  margin: 0.5em;
  cursor: pointer;
}
.a-catalog__main-nav--item.slick-current {
  position: relative;
}
.a-catalog__main-nav--item.slick-current::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #cb1b45;
}
.a-catalog__textbox {
  padding: 40px 20px 40px 10px;
}
@media (min-width: 768px) {
  .a-catalog__textbox {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .a-catalog__textbox {
    padding-left: 40px;
  }
}
.a-catalog__subtitle {
  color: #90000a;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  position: relative;
  padding-left: 48px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .a-catalog__subtitle {
    padding-left: 60px;
    margin-top: 40px;
  }
}
.a-catalog__subtitle::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 48px;
  bottom: 0;
  left: 0;
  background-color: #90000a;
  transform: rotate(45deg);
  transform-origin: bottom left;
}
@media (min-width: 768px) {
  .a-catalog__subtitle::before {
    height: 64px;
  }
}
.a-catalog__text {
  margin-top: 1em;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-left: 48px;
  padding-bottom: 24px;
  margin-top: 10px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .a-catalog__text {
    font-size: 16px;
    margin-top: 20px;
    padding-bottom: 40px;
    padding-left: 60px;
  }
}
.a-catalog__text.-right {
  text-align: right;
}
@media (min-width: 768px) {
  .a-catalog__text.-right {
    padding-bottom: 30px;
  }
}
.a-catalog__text span {
  font-weight: bold;
}
.a-catalog__pagenation {
  width: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .a-catalog__pagenation {
    margin-bottom: 40px;
  }
}
.a-catalog .slick-arrow {
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #cb1b45;
}
.a-catalog .slick-prev::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left bottom;
}
.a-catalog .slick-next::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}
.a-catalog__back {
  max-width: 1020px;
  margin: 0 auto;
  padding-bottom: 40px;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .a-catalog__back {
    padding-bottom: 120px;
    padding-left: 0;
  }
}
.a-catalog__back--link {
  font-family: "Noto Serif JP", serif;
  padding: 1em 0 1em 0.2em;
  letter-spacing: 0.08em;
  display: inline-block;
  width: 100px;
  position: relative;
  transition: 0.325s ease-in-out;
}
.a-catalog__back--link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 1px solid #c61940;
  bottom: 0;
  left: 0;
  transition: 0.325s ease-in-out;
}
.a-catalog__back--link:hover {
  color: #cb1b45;
}
.a-catalog__back--link:hover::after {
  width: 125%;
}

/*---------------------------------------

footer

---------------------------------------*/
.footer {
  background: #ffffff;
  padding-top: 20px;
  box-shadow: 0 -2px 4px rgba(150, 150, 150, 0.2);
}
.footer__wrapper {
  padding: 4em 2em;
  font-size: 12px;
  color: rgb(100, 100, 100);
  display: flex;
  justify-content: flex-start;
  gap: 1em;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  .footer__wrapper {
    padding: 4em 2em;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__ad {
  font-family: "Noto Serif JP", serif;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .footer__ad {
    margin-top: 0;
    margin-left: 40px;
  }
}
.footer__logo {
  max-width: 140px;
  margin: 0 auto;
  position: absolute;
  bottom: 2em;
  right: 2em;
}
@media (min-width: 768px) {
  .footer__logo {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 768px) {
  .footer__nav {
    flex: 1;
  }
}
.footer__nav--box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 10px;
  max-width: 660px;
}
@media (min-width: 768px) {
  .footer__nav--box {
    margin: 0 0 0 auto;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
  }
}
.footer__nav--item {
  width: 30%;
  text-align: center;
  margin: 1em 0;
}
@media (min-width: 768px) {
  .footer__nav--item {
    margin-left: 20px;
    width: auto;
  }
}
.footer__nav--item:nth-child(1) .footer__nav--link {
  display: inline-block;
  width: 72px;
}
.footer__nav--item:nth-child(2) .footer__nav--link {
  width: 50px;
  display: inline-block;
}
.footer__nav--item:nth-child(3) .footer__nav--link {
  width: 66px;
  display: inline-block;
}
.footer__nav--item:nth-child(4) .footer__nav--link {
  width: 63px;
  display: inline-block;
}
.footer__nav--item:nth-child(5) .footer__nav--link {
  width: 44px;
  display: inline-block;
}
.footer__nav--item:nth-child(6) .footer__nav--link {
  width: 48px;
  display: inline-block;
}
.footer__nav--item:nth-child(7) .footer__nav--link {
  width: 66px;
  display: inline-block;
}
.footer__nav--item:nth-child(8) .footer__nav--link {
  width: 66px;
  display: inline-block;
}
.footer__nav--item:nth-child(9) .footer__nav--link {
  width: 78px;
  display: inline-block;
}
.footer__nav--link-svg {
  fill: #666666;
}

/*---------------------------------------

time/calendar

---------------------------------------*/
.time {
  margin: 1px;
  background: #fff;
  border: 1px solid #eee;
  padding: 1px;
  max-width: 1200px;
  position: relative;
  overflow: auto;
  height: 600px;
}
@media (min-width: 375px) {
  .time {
    margin: 6px;
    padding: 0 6px 6px;
  }
}
@media (min-width: 600px) {
  .time {
    margin: 10px;
    padding: 0 10px 10px;
  }
}
@media (min-width: 1024px) {
  .time {
    margin: 0 auto;
  }
}

.month {
  text-align: center;
  color: #666666;
  letter-spacing: 0.08em;
  padding-top: 0.5em;
  padding-bottom: 1em;
  line-height: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
}

table.calendar {
  width: 100%;
  border-collapse: separate;
  table-layout: fixed;
}
table.calendar th {
  width: 14.2%;
  line-height: 1;
  font-size: 12px;
  color: #666666;
  padding: 0.25em 0;
  text-align: center;
  border: 1px solid #ddd;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 32px;
  z-index: 2;
}
table.calendar th:first-child {
  color: #cb1b45;
}
table.calendar th:last-child {
  color: rgb(67, 83, 253);
}
table.calendar td {
  border: 1px solid #ddd;
  height: calc((100vw - 20px) / 7);
  padding: 2px;
}
@media (min-width: 768px) {
  table.calendar td {
    padding: 4px;
    height: 168.5714285714px;
  }
}
table.calendar td br {
  display: none;
}
table.calendar .day {
  font-size: 14px;
  color: #666666;
}

.calendar_btn {
  width: 100%;
  margin: 4px 0 0 0;
  padding: 2px;
  font-size: 11px;
  line-height: 1.5;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
  border-color: rgb(248, 170, 52);
  word-break: break-word;
  font-weight: 500;
  background: rgb(248, 170, 52) !important;
  white-space: normal !important;
}
@media (min-width: 600px) {
  .calendar_btn {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .calendar_btn {
    font-size: 14px;
    padding: 4px;
  }
}
@media (min-width: 1024px) {
  .calendar_btn {
    padding: 4px 8px;
    margin: 8px 0 0 0;
  }
}
.calendar_btn br.pcnone {
  display: none;
}

#azabu .calendar_btn {
  border-color: rgb(255, 100, 105);
  background: rgb(255, 100, 105) !important;
}

.status {
  width: 100%;
  margin: 10px 0 0 0;
  padding: 5px 5px 5px 5px;
  font-size: 12px;
  display: inline-block;
  text-decoration: none;
  color: rgb(248, 170, 52);
  text-align: center;
  border-radius: 3px;
  border: 1px solid rgb(248, 170, 52);
  background: #fff !important;
  white-space: normal !important;
}
@media (min-width: 768px) {
  .status {
    font-size: 14px;
  }
}

#azabu .status {
  color: rgb(255, 100, 105);
  border: 1px solid rgb(255, 100, 105);
}

.zanseki {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  font-weight: 400;
}
@media (min-width: 600px) {
  .zanseki {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .zanseki {
    font-size: 14px;
  }
}

.manseki-calendar {
  font-size: 12px;
}
@media (min-width: 1024px) {
  .manseki-calendar {
    font-size: 14px;
  }
}

.shasen-calendar {
  font-size: 10px;
  text-decoration: line-through;
}
@media (min-width: 1024px) {
  .shasen-calendar {
    font-size: 14px;
  }
}

.app__text03 {
  text-align: center;
  color: #c41b45;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin: 1em 0 0.5em;
}
@media (min-width: 1024px) {
  .app__text03 {
    margin: 2em 0 1em;
    font-size: 24px;
  }
}

p.choose__day {
  text-align: center;
  line-height: 1.65;
  font-size: 15px;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  p.choose__day {
    font-size: 18px;
    letter-spacing: 0.03em;
    font-size: 18px;
    margin-bottom: 0px;
  }
}
p.choose__day2 {
  text-align: center;
  line-height: 1.65;
  font-size: 15px;
  margin: 0px;
  color: #be1d42;
}

@media (min-width: 768px) {
  p.choose__day2 {
    font-size: 18px;
    letter-spacing: 0.03em;
    font-size: 18px;
    margin: 0;
  }
}
.scroll {
  color: #b1272d;
  border-bottom: 2px solid #b1272d;
  font-weight: bold;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .pagination {
    margin-bottom: 64px;
  }
}

.pagination > * + * {
  margin-left: 12px;
}

.pagination-item__under-Link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.15s linear;
  color: #c41b45;
}

.pagination-item__under-Link-Icon {
  width: 20px;
}

.pagination-item__under-Link.isActive {
  pointer-events: none;
  background: #fff;
  color: #000;
}

.pagination-item__under-Link:not(.isActive):hover {
  background: linear-gradient(135deg, #cb1b45, #90000a);
  color: #fff;
}

.wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.content {
  padding-top: 120px;
  padding-bottom: 160px;
}

.site-title a {
  width: 180px;
  line-height: 1px;
  display: block;
}

.page-title {
  font-size: 0.875rem;
  font-weight: normal;
  margin-bottom: 30px;
}

#top {
  padding: 40px;
}
@media (min-width: 768px) {
  #top {
    padding: 80px;
  }
}

@media (min-width: 768px) {
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.product-list li {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .product-list li {
    width: 31%;
  }
}
@media (min-width: 1280px) {
  .product-list li {
    width: 33%;
  }
}
.product-list img {
  margin-bottom: 10px;
  vertical-align: top;
}
.product-list p {
  font-size: 0.75rem;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .product-list p {
    font-size: 1rem;
  }
}

pagination__add .slick-list {
  padding-right: 15%;
}
pagination__add__pagenation {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  pagination__add__pagenation {
    margin-bottom: 40px;
  }
}
pagination__add .slick-arrow {
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #cb1b45;
}
pagination__add .slick-prev01::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left bottom;
}
pagination__add .slick-next01::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30%;
  background: #cb1b45;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right bottom;
}

/*---------------------------------------

voice

---------------------------------------*/
.voice {
  background: url(../img/bg.jpg);
  padding: 0 10px;
}
@media (min-width: 600px) {
  .voice {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .voice {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .voice {
    padding: 0;
  }
}
.voice__wrapper {
  max-width: 1000px;
  background: #fff;
  margin: 0 auto;
  padding: 40px 20px;
}
.voice__wrapper.-attend {
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .voice__wrapper {
    padding: 20px 116px;
  }
}
.voice__title {
  font-size: 150%;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  color: #c41b45;
}
@media (min-width: 1024px) {
  .voice__title {
    font-size: 36px;
    line-height: 150%;
    text-align: center;
    margin-top: 80px;
  }
}
.voice__contents {
  margin-top: 1em;
}
@media (min-width: 1024px) {
  .voice__contents {
    margin-top: 40px;
  }
}
@media (min-width: 1024px) {
  .voice__contents--inner {
    display: flex;
  }
  .voice__contents--inner.-reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .voice__textbox {
    flex: 1;
  }
}
.voice__photo {
  width: 180px;
  margin: 1em auto;
}
@media (min-width: 1024px) {
  .voice__photo {
    margin: 0 40px;
  }
}
.voice__photo img {
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(196, 27, 69, 0.5);
}
.voice__name {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #c41b45;
  padding: 0.5em 1em;
  border-top: 2px solid;
  border-bottom: 2px solid;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .voice__name {
    font-size: 20px;
    padding: 1em;
  }
}
.voice__name span {
  font-size: 125%;
}
.voice__prf {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.75;
  padding: 1em;
}
@media (min-width: 1024px) {
  .voice__prf {
    font-size: 16px;
  }
}
.voice__text {
  font-size: 14px;
  color: #c41b45;
  line-height: 1.75;
  padding: 0 1em;
  border: 1px solid;
  position: relative;
}
@media (min-width: 600px) {
  .voice__text {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .voice__text {
    letter-spacing: 1px;
    padding: 3em 2em;
  }
}
.voice__text::before {
  position: absolute;
  content: "“";
  top: 0;
  left: 0;
  font-size: 56px;
  transform: translateY(-35%);
}
.voice__text::after {
  position: absolute;
  content: "”";
  bottom: 0;
  right: 0;
  font-size: 56px;
  transform: translateY(58%);
}
.voice__slick .voice__text {
  margin: 0 0 0 8px;
}
.voice__contents2 {
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .voice__contents2 {
    margin: 0 40px 10px 0;
    float: left;
  }
}
.voice__contents2 img {
  width: 180px;
  display: block;
  margin: 0 auto;
}
.voice__contents2--name {
  font-size: 16px;
  margin-top: 0.5em;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .voice__contents2--name {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .voice__slick {
    padding-left: 16px;
  }
}

.flex_item {
  flex: 1;
}

@media (min-width: 768px) {
  .flex_item2 {
    flex: 2;
  }
}

p.flex_item2 {
  font-size: 14px;
}

.add_comment_pc {
  display: none;
}
@media (min-width: 768px) {
  .add_comment_pc {
    margin: 3em 0 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .add_comment_pc {
    margin: 4.5em 0 0;
  }
}
@media (min-width: 768px) {
  .add_comment_pc img {
    max-width: 120px;
    display: grid;
    margin: 0 auto 16px auto;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .add_comment_pc img {
    max-width: 240px;
  }
}

.add_comment_sp {
  margin: 3em 0 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .add_comment_sp {
    margin: 4.5em 0 0;
  }
}
.add_comment_sp img {
  max-width: 120px;
  display: grid;
  margin: 0 auto 16px auto;
}
@media (min-width: 768px) {
  .add_comment_sp img {
    max-width: 240px;
  }
}
@media (min-width: 768px) {
  .add_comment_sp {
    display: none;
  }
}

/*---------------------------------------

list

---------------------------------------*/
.list {
  margin: 50px 0;
}
@media (min-width: 768px) {
  .list {
    margin: 90px 0;
  }
}
.list.-green {
  background: rgba(0, 0, 0, 0.1);
  padding: 32px 25px;
}
.list.-blue {
  padding: 1px 25px;
  margin-top: 2em;
}

.list__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.list__title {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  text-align: center;
  color: #000;
}
@media (min-width: 768px) {
  .list__title {
    font-size: 28px;
    line-height: 1.75;
  }
}
@media (min-width: 1024px) {
  .list__title {
    font-size: 36px;
  }
}

.list__box {
  width: 100%;
  text-align: center;
}

.list__item {
  color: #000;
  display: inline-block;
  padding: 1em;
}
.list__item:nth-child(1) {
  max-width: 50%;
}
@media (min-width: 768px) {
  .list__item:nth-child(1) {
    max-width: 50%;
  }
}
.list__item:nth-child(2) {
  max-width: 46%;
}
.list__item:nth-child(3) {
  max-width: 48%;
}
.list__item:nth-child(4) {
  max-width: 40%;
}
.list__item:nth-child(5) {
  max-width: 40%;
}
.list__item:nth-child(6) {
  max-width: 40%;
}
.list__item:nth-child(7) {
  max-width: 40%;
}
.list__item:nth-child(8) {
  max-width: 24%;
}

.flex_test {
  display: flex;
  align-items: flex-start;
}

.pcnone {
  display: block;
}
@media (min-width: 600px) {
  .pcnone {
    display: none;
  }
}

.spnone {
  display: none;
}
@media (min-width: 600px) {
  .spnone {
    display: block;
  }
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

/*---------------------------------------

calendar_css追加

---------------------------------------*/
/* 新宿 奇数月  */
.week1_ad16e6cbe3c5 {
  /* display: none; */
}

.week2_ad16e6cbe3c5 {
  /* display: none; */
}

.week3_ad16e6cbe3c5 {
  /* display:none; */
}

.week4_ad16e6cbe3c5 {
  /* display:none; */
}

.week5_ad16e6cbe3c5 {
  /* display:none; */
}

.week6_ad16e6cbe3c5 {
  /* display:none; */
}

/* // 新宿 偶数月 */
/* // 1週目 */
.week1_9c36727940e6 {
  /* display: none; */
}

/* //2週目  */
.week2_9c36727940e6 {
  /* display: none; */
}

/* //3週目  */
.week3_9c36727940e6 {
  /* display: none; */
}

/* //4週目  */
.week4_9c36727940e6 {
  /* display: none; */
}

/* //5週目  */
.week5_9c36727940e6 {
  /* display: none; */
}

.week6_9c36727940e6 {
  /* display: none; */
}
/*# sourceMappingURL=style.css.map */



/*---------------------------------------

calendar swipe CSS追加

---------------------------------------*/
#store_a {
  border: 2px solid #c5193f;
}

#store_btn_a.active {
  background-color: #c5193f;
  color: white;
}

#store_b {
  border: 2px solid #c5193f;
}

#store_btn_b.active {
  background-color: #c5193f;
  color: white;
}

#store_c {
  border: 2px solid #c5193f;
}

#store_btn_c.active {
  background-color: #c5193f;
  color: white;
}

.store-tabs {
  overflow: visible;
  display: flex;
  justify-content: center;

  align-items: flex-end;
  height: 60px;
}

.store-tabs button {
  background-color: #F5F5F5;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: all 0.3s ease;
  font-size: 17px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: 2px solid #c5193f;
  border-left: 2px solid #c5193f;
  border-right: 2px solid #c5193f;
  border-bottom: none;
  height: 50px;
  color: #666666;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .store-tabs button.active {
    height: 70px;
    font-size: x-large;
    font-weight: 600;
    width: 50%;
	text-align: center;
  }
  
  .store-tabs button {
	 width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .store-tabs button.active {
    height: 65px;
    font-size: x-large;
    font-weight: 600;
    width: 45%;
  }
  
  
  .store-tabs button {
	 width: 50%;
  }
  
  .app__calendar{
	width: 85%;
    margin: auto;
  }
  
}

.store-tabs button:hover {
  background-color: #ddd;
}

.tab-link {
  white-space: nowrap;
}

.tab-content {
  display: none;
}

.swipe-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
  border-radius: 8px;
}

.swipe-icon {
  width: auto;
  height: auto;
  max-width: 80px;
  opacity: 0.7;
  display: block;
}

.section .time {
  position: relative;
}

@media screen and (min-width: 769px) {
  .swipe-overlay {
    display: none !important;
  }

  .selected-btn-icon img {
    height: 40px;
	width: 35px;
    vertical-align: middle;
	
  }
  
  .tab-icon-active {
    display: none;
  }
  
  .tab-icon-inactive {
    display: inline;
    height: 25px !important;
  }
  

  .selected-btn-icon.active .tab-icon-active {
    display: inline;
  }
  
  .selected-btn-icon.active .tab-icon-inactive {
    display: none;
  }
  
}

@media screen and (max-width: 768px) {
  .selected-btn-icon img {
    height: 35px;
    margin-left: -35px;
    vertical-align: middle;
  }
  
  
    .tab-icon-active {
    display: none;
  }
  
  .tab-icon-inactive {
    display: inline;
    height: 25px !important;
  }
  

  .selected-btn-icon.active .tab-icon-active {
    display: inline;
  }
  
  .selected-btn-icon.active .tab-icon-inactive {
    display: none;
  }
}

.app__calendar{
	    max-width: 1020px !important;
}

#store_btn_a{
	margin-right:5%;
}