@charset "UTF-8";
.visible, .invisible {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}

.visible {
  opacity: 1;
}

.visible.translateY, .invisible.translateY {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateY {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.visible.translateToLeft, .invisible.translateToLeft {
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateToLeft {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.visible.translateToRight, .invisible.translateToRight {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateToRight {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.visible.translateScaleUp, .invisible.translateScaleUp {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateScaleUp {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.visible.translateScaleDown, .invisible.translateScaleDown {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateScaleDown {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.visible.translateRotate, .invisible.translateRotate {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateRotate {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

[data-target] {
  cursor: pointer;
}

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

html {
  font-size: 62.5%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

video {
  max-width: 100%;
  height: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #eee;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #eee;
}

blockquote,
q {
  quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}
form button {
  width: auto;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0;
  background-image: none;
  background-color: #efa336;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
form button:hover, form button:focus {
  outline: none;
}
form button:hover {
  opacity: 0.7;
}
form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: 1.6rem;
  -webkit-appearance: none;
}

textarea:hover, textarea:focus {
  outline: none;
}
textarea:focus {
  outline: none;
  border-color: #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
}
textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input:focus {
  outline: none;
  border-color: #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=submit], input[type=button] {
  width: auto;
  display: inline-block;
  padding: 0.6em 2em;
  margin: 0;
  background-image: none;
  background-color: #efa336;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 0;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
input[type=submit]:hover, input[type=submit]:focus, input[type=button]:hover, input[type=button]:focus {
  outline: none;
}
input[type=submit]:hover, input[type=button]:hover {
  opacity: 0.7;
}
input[type=submit] ::-moz-focus-inner, input[type=button] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 16px 0 0;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: block;
}
input[type=radio] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
input[type=radio]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 16px, 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #707070;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: block;
  opacity: 1;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 16px 0 0;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}
input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  width: 26px;
  height: 26px;
  display: block;
}
input[type=checkbox] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 26px;
  height: 15.6px;
  margin-top: -0.2em;
  display: block;
  border-left: 4px solid #efa336;
  border-bottom: 4px solid #efa336;
  opacity: 1;
}

select {
  padding: 0.4em 2.4em 0.4em 0.8em;
  border-radius: 0;
  font-family: inherit;
  font-size: 1.6rem;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid #707070;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #707070;
}

html, body {
  min-width: 1200px;
}
@media (max-width: 767px) {
  html, body {
    min-width: auto;
  }
}

body {
  position: relative;
  overflow-x: auto;
}
@media (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
  }
}
body.menu-open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.fixed {
  position: fixed;
}

img {
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 767px) {
  img {
    image-rendering: auto;
  }
}

a.hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a.hover:hover {
  opacity: 0.7;
}
a.hover__lead {
  position: relative;
}
a.hover__lead::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
a.hover__lead:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.content {
  padding-top: 120px;
  padding-bottom: 85px;
}
@media (max-width: 767px) {
  .content {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.wrap {
  width: 1300px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wrap {
    width: 100%;
  }
}

/* ローディング画面 */
#site_loader_overlay {
  width: 100vw;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

#site_loader_spinner {
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background-color: #000;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
          animation: sk-scaleout 1s infinite ease-in-out;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
a[href^="tel:"] {
  pointer-events: none;
}
@media (max-width: 767px) {
  a[href^="tel:"] {
    color: #3973c6;
    pointer-events: auto;
    text-decoration: underline;
  }
}

.target__header {
  margin-top: -85px;
  padding-top: 85px;
}
@media (max-width: 767px) {
  .target__header {
    margin-top: -70px;
    padding-top: 70px;
  }
}

.content_title {
  font-size: 5rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  line-height: 1;
  color: #5d6860;
}
@media (max-width: 767px) {
  .content_title {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}

.content_title_sub {
  font-size: 2.1rem;
  line-height: 1.95;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .content_title_sub {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 10px;
  }
}

.content_text {
  font-size: 1.3rem;
  line-height: 2.3;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .content_text {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.content_text + .content_text {
  margin-top: 13px;
}

.bnrWrapper__sns_wrap ul {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bnrWrapper__sns_wrap ul a {
  display: block;
  width: 100%;
}

.bnrWrapper__sns_wrap li {
  display: inline-block;
  width: 44px;
  height: 45px;
  border-top: solid 1px #fff;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns_wrap li {
    margin-left: 0;
    margin-right: 0;
    width: 41px;
    height: auto;
    border-top: none;
    border-left: solid 1px #fff;
  }
}
.bnrWrapper__sns_wrap li img {
  width: 100%;
  height: auto;
}

.bnrWrapper__sns {
  margin: 0 auto 60px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns {
    margin: 0 0 0 0;
    text-align: center;
    position: relative;
  }
}
.bnrWrapper__sns h3 {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns h3 {
    display: none;
  }
}
.bnrWrapper__sns ul {
  font-size: 0;
}

.bnrWrapper__sns li {
  display: inline-block;
  width: 80px;
  height: auto;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns li {
    margin: 0 10px 20px;
    width: 40px;
  }
}
.bnrWrapper__sns li a {
  display: block;
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns li a {
    display: block;
    width: 40px;
    height: 40px;
  }
}
.bnrWrapper__sns li img {
  width: 100%;
  height: auto;
}

.footer__onlineWrap {
  padding: 80px 0;
  background: #ffde00;
}

@media screen and (max-width: 768px) {
  .footer__onlineWrap {
    display: none;
  }
}
.footer__onlineWrap a {
  position: relative;
  display: block;
  width: 486px;
  height: 87px;
  margin: 0 auto;
}

.footer__onlineWrap a .icon__online {
  position: absolute;
  right: -90px;
  top: -50px;
}

.footer__onlineWrap a .icon__online:hover {
  opacity: 1;
}

.footer {
  position: relative;
  padding: 110px 0 30px;
  text-align: center;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 50px 30px;
    text-align: left;
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding: 40px 0 80px;
  }
}
.footer__logo {
  width: 130px;
  height: auto;
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: 50px;
    margin-left: auto;
    margin: 20px auto;
    display: block;
  }
}
.footer__copy {
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .footer__copy {
    text-align: center;
    bottom: 60px;
  }
}
.footer .icon_kong {
  display: none;
}

@media screen and (max-width: 768px) {
  .footer .icon_kong {
    display: block;
    width: 40px;
    position: absolute;
    position: absolute;
    top: -10px;
    right: 10%;
  }
}
header {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

header.active {
  opacity: 1;
}

.menu {
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  height: 30px;
  width: 30px;
  -webkit-transform: scale(2, 2);
          transform: scale(2, 2);
  cursor: pointer;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 102;
  display: block;
}

@media screen and (max-width: 576px) {
  .menu {
    right: 10px;
    top: 10px;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.menu-in {
  height: 20px;
  position: fixed;
  width: 20px;
  z-index: 101;
}

.menu__line {
  background: #000;
  display: block;
  height: 1px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}

.menu__line--top {
  top: 3px;
}

.menu__line--center {
  top: 9px;
}

.menu__line--bottom {
  bottom: 3px;
}

.menu__line--top.active {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menu__line--center.active {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.menu__line--bottom.active {
  bottom: 9px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* gnav */
.gnav {
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 101;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .gnav {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.gnav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  height: 100%;
  overflow: auto;
}
@media (max-width: 767px) {
  .gnav__wrap {
    display: block;
  }
}

.gnav__wrap__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
  width: 50%;
  width: 100%;
}
.gnav__wrap__inner.is-blue {
  background-color: #85D9DC;
}
.gnav__wrap__inner.is-blue .gnav_btn__item a {
  border: 1px solid #447577;
}
@media (max-width: 767px) {
  .gnav__wrap__inner.is-blue {
    height: 80%;
    height: 100%;
  }
}
.gnav__wrap__inner.is-yellow {
  background-color: #f8f6dc;
}
.gnav__wrap__inner.is-yellow .gnav_btn__item a {
  border: 1px solid #d1b600;
}
@media (max-width: 767px) {
  .gnav__wrap__inner.is-yellow {
    height: 65%;
  }
}
@media (max-width: 767px) {
  .gnav__wrap__inner {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 30px;
  }
}

.gnav__logo {
  position: absolute;
  top: 90px;
  left: 50%;
  width: 74px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
.gnav__logo.pc_only {
  display: block;
}
.gnav__logo.sp_only {
  display: none;
}
@media (max-width: 767px) {
  .gnav__logo {
    top: 4vh;
    width: 6vh;
  }
  .gnav__logo.sp_only {
    display: block;
    position: relative;
    left: auto;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .gnav__logo.pc_only {
    display: none;
  }
}
.gnav__logo img {
  display: block;
}

.gnav_title {
  width: 240px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media (max-width: 1440px) {
  .gnav_title {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .gnav_title {
    width: 24vh;
  }
}
.gnav_title.is-size1 {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .gnav_title.is-size1 {
    margin-top: 7vh;
    margin-bottom: 4vh;
  }
}
.gnav_title.is-size2 {
  margin-top: 37px;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .gnav_title.is-size2 {
    margin-top: 0;
    margin-bottom: 4vh;
  }
}
.gnav_title img {
  display: block;
}

.gnav__menu {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .gnav__menu {
    margin-bottom: 3vh;
  }
}
.gnav__menu.is-mb_large {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .gnav__menu.is-mb_large {
    margin-bottom: 4vh;
  }
}

.gnav__menu__item {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .gnav__menu__item {
    font-size: 1.8rem;
  }
}
.gnav__menu__item + .gnav__menu__item {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .gnav__menu__item + .gnav__menu__item {
    margin-top: 2vh;
  }
}
.gnav__menu__item a {
  display: block;
}
.gnav__menu__item img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.gnav__menu__item img.img1 {
  width: 86px;
}
@media (max-width: 767px) {
  .gnav__menu__item img.img1 {
    width: 10vh;
  }
}
.gnav__menu__item img.img2 {
  width: 72px;
}
@media (max-width: 767px) {
  .gnav__menu__item img.img2 {
    width: 8vh;
  }
}
.gnav__menu__item img.img3 {
  width: 104px;
}
@media (max-width: 767px) {
  .gnav__menu__item img.img3 {
    width: 12vh;
  }
}

@media (max-width: 767px) {
  .gnav_btn_box {
    width: 70%;
    max-width: 300px;
  }
}
.gnav__menu__item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .gnav__menu__item a:hover {
    opacity: 1;
  }
}
.gnav_btn__item {
  width: 320px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .gnav_btn__item {
    width: 100%;
    height: 38px;
  }
}
.gnav_btn__item + .gnav_btn__item {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .gnav_btn__item + .gnav_btn__item {
    margin-top: 2vh;
  }
}
.gnav_btn__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  background-color: #fff;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .gnav_btn__item a {
    font-size: 1.4rem;
  }
}
.gnav_btn__item a small {
  display: inline-block;
}
.gnav_btn__item a .icon {
  width: 24px;
  height: 28px;
  margin-left: 10px;
  background-image: url(/assets/img/icon_cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .gnav_btn__item a .icon {
    width: 27px;
    height: 22px;
    margin-left: 5px;
  }
}
.gnav_btn__item a:hover {
  background-color: #000;
  color: #fff;
}
.gnav_btn__item a:hover .icon {
  background-image: url(/assets/img/icon_cart_on.svg);
}

.bnrWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  width: 44px;
  height: 110vh;
  top: 0;
  right: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 44px;
  letter-spacing: 5px;
  text-align: center;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.bnrWrapper.active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .bnrWrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: 100%;
    height: 40px;
    top: auto;
    right: 0;
    bottom: 0;
    line-height: 40px;
    letter-spacing: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #fff;
  }
  .bnrWrapper.hide {
    -webkit-transform: translateY(45px);
            transform: translateY(45px);
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .bnrWrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    width: 100%;
    height: 40px;
    top: auto;
    right: 0;
    bottom: 0;
    line-height: 40px;
  }
}
.bnrWrapper__info {
  position: relative;
  display: block;
  width: 44px;
  height: 154px;
  background: #59acaf;
  color: #fff;
  font-weight: bold;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.bnrWrapper__info + .bnrWrapper__info {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .bnrWrapper__info + .bnrWrapper__info {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .bnrWrapper__info {
    display: block;
    width: 50%;
    height: 46px;
    padding: 0 5px;
    font-size: 1.2rem;
    border-top: none;
    border-left: solid 1px #fff;
    background-color: #498385;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (max-width: 370px) {
  .bnrWrapper__info {
    font-size: 1rem;
  }
}
.bnrWrapper__info:hover {
  opacity: 0.8;
}

.bnrWrapper__info .txt_btn {
  display: block;
}

.bnrWrapper__info .txt_btn_ie {
  display: none;
}

.bnrWrapper .onlineshopBtn {
  height: 250px;
  background-color: #efefef;
  color: #040000;
}

@media screen and (max-width: 768px) {
  .bnrWrapper .onlineshopBtn {
    border-top: none;
    background-color: #59acaf;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    color: #fff;
  }
}
/* sns */
.bnrWrapper__sns_wrap ul {
  font-size: 0;
  display: none;
}
@media (max-width: 767px) {
  .bnrWrapper__sns_wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bnrWrapper__sns_wrap ul a {
  display: block;
  width: 100%;
}

.bnrWrapper__sns_wrap li {
  display: inline-block;
  width: 44px;
  height: 45px;
  border-top: solid 1px #fff;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns_wrap li {
    margin-left: 0;
    margin-right: 0;
    width: 46px;
    height: auto;
    border-top: none;
    border-left: solid 1px #fff;
  }
}
.bnrWrapper__sns_wrap li img {
  width: 100%;
  height: auto;
}

.bnrWrapper__sns {
  margin: 0 auto 60px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns {
    margin: 0 0 0 0;
    text-align: center;
    position: relative;
  }
}
.bnrWrapper__sns h3 {
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns h3 {
    display: none;
  }
}
.bnrWrapper__sns ul {
  font-size: 0;
}

.bnrWrapper__sns li {
  display: inline-block;
  width: 80px;
  height: auto;
  margin: 0 20px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns li {
    margin: 0 10px 20px;
    width: 40px;
  }
}
.bnrWrapper__sns li a {
  display: block;
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 768px) {
  .bnrWrapper__sns li a {
    display: block;
    width: 40px;
    height: 40px;
  }
}
.bnrWrapper__sns li img {
  width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  border: 1px solid #728076;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  height: 40px;
  margin: 0;
  background-image: none;
  background-color: #728076;
  text-decoration: none;
  border-radius: 0;
  font-size: 1.3rem;
  text-align: center;
  -webkit-appearance: none;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .btn {
    font-size: 1.2rem;
    width: 140px;
    height: 36px;
  }
}
.btn:not(:disabled) {
  cursor: pointer;
}
.btn:hover, .btn:focus {
  outline: none;
  background-color: #fff;
  color: #728076;
}
.btn:hover::after, .btn:focus::after {
  border-bottom: 1px solid #728076;
  border-right: 2px solid #728076;
}
.btn::-moz-foucus-inner {
  padding: 0;
  border: none;
}
.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  padding-right: 22px;
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .btn a {
    padding-right: 18px;
  }
}
.btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 5px;
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: skew(60deg);
          transform: skew(60deg);
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 1;
  pointer-events: none;
  margin-top: -3px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 767px) {
  .btn::after {
    width: 16px;
    height: 3px;
    right: 10px;
    margin-top: -2px;
  }
}
.btn.btn_light {
  border: 1px solid #fff;
  background-color: transparent;
}
.btn.btn_light:hover {
  opacity: 0.7;
  background-color: transparent;
  color: #fff;
}
.btn.btn_light:hover::after {
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
}
.btn.btn_info {
  width: auto;
  height: auto;
  background-color: #fff;
  color: #728076;
  padding: 10px;
}
@media (max-width: 767px) {
  .btn.btn_info {
    padding: 8px;
  }
}
.btn.btn_info::after {
  content: none;
}
.btn.btn_info a {
  padding-right: 0;
}
.btn.btn_info:hover {
  background-color: #728076;
  color: #fff;
}
.btn.btn_link {
  width: 222px;
  height: 48px;
  background-color: #fff;
  color: #728076;
}
@media (max-width: 767px) {
  .btn.btn_link {
    width: 160px;
    height: 40px;
  }
}
.btn.btn_link::after {
  border-bottom: 1px solid #728076;
  border-right: 2px solid #728076;
}
.btn.btn_link:hover {
  outline: none;
  background-color: #728076;
  color: #fff;
}
.btn.btn_link:hover::after {
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
}
.btn.btn_fat {
  width: 136px;
  height: 48px;
  background-color: #fff;
  color: #728076;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .btn.btn_fat {
    font-size: 1.2rem;
    width: 140px;
    height: 36px;
  }
}
.btn.btn_fat::after {
  border-bottom: 1px solid #728076;
  border-right: 2px solid #728076;
}
.btn.btn_fat:hover {
  outline: none;
  background-color: #728076;
  color: #fff;
}
.btn.btn_fat:hover::after {
  border-bottom: 1px solid #fff;
  border-right: 2px solid #fff;
}

.drawer {
  z-index: 40;
}

.drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.drawer-close.is-checked {
  display: block;
  opacity: 0.4;
}

.drawer-icon {
  display: inline-block;
  position: relative;
  z-index: 41;
  text-align: center;
  cursor: pointer;
}
.drawer-icon::after {
  content: "MENU";
  display: block;
  color: #424242;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1;
  margin-top: 4px;
  font-weight: 700;
}
.drawer-icon.is-checked::after {
  content: "CLOSE";
}

.drawer-bars {
  display: inline-block;
  width: 25px;
  height: 19px;
  position: relative;
  vertical-align: bottom;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #424242;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 8px;
}
.drawer-bar:nth-of-type(3) {
  top: 16px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  z-index: 40;
  width: 200px;
  max-width: 90%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  padding-top: 80px;
  text-align: left;
  color: #424242;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

.drawer-content--left {
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  left: 0;
  right: auto;
}

.drawer-content--top {
  -webkit-transform: translateY(-105%);
          transform: translateY(-105%);
  top: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

#loadWrap {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  z-index: 9999;
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#85D9DC));
  background: linear-gradient(90deg, #ffffff, #85D9DC);
  background-size: 400% 400%;
  -webkit-animation: LoadBg 5s ease infinite;
  animation: LoadBg 5s ease infinite;
}
#loadWrap .loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#loadWrap .loader img {
  width: 80%;
  max-width: 600px;
  height: auto;
}
@media (max-width: 767px) {
  #loadWrap .loader img {
    width: 57%;
  }
}
@media (max-width: 767px) {
  #loadWrap .loader {
    -webkit-transform: translateY(-10vh);
            transform: translateY(-10vh);
  }
}

@-webkit-keyframes LoadBg {
  0% {
    background-position: 0% 79%;
  }
  50% {
    background-position: 100% 22%;
  }
  100% {
    background-position: 0% 79%;
  }
}
@keyframes LoadBg {
  0% {
    background-position: 0% 79%;
  }
  50% {
    background-position: 100% 22%;
  }
  100% {
    background-position: 0% 79%;
  }
}
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #728076;
}
.wp-pagenavi .page, .wp-pagenavi span {
  border: 1px solid #728076;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-right: 2.5px;
  margin-left: 2.5px;
  padding-top: 2px;
}
.wp-pagenavi .page:hover {
  background-color: #728076;
  color: #fff;
}
.wp-pagenavi span.current {
  background-color: #728076;
  color: #fff;
}

.previouspostslink,
.nextpostslink {
  border: 1px solid #728076;
  width: 68px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #728076;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  margin-right: 7.5px;
  margin-left: 7.5px;
}
.previouspostslink:hover,
.nextpostslink:hover {
  background-color: #fff;
  color: #728076;
}

.mfp-bg {
  background-color: #83D9DA !important;
}

.mfp-iframe-holder .mfp-close {
  width: auto !important;
  padding-right: 0 !important;
  padding: 0;
}

.mfp-iframe-txt {
  display: block;
  font-size: 1.6rem;
  position: absolute;
  bottom: -25px;
  right: 0;
  font-weight: bold;
}
@media (max-width: 1059px) {
  .mfp-iframe-txt {
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
  }
}

.mfp-iframe-holder .mfp-content {
  max-width: 70% !important;
}
@media (max-width: 1059px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 900px !important;
  }
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modalClose {
  position: absolute;
  width: 60px;
  height: 60px !important;
  top: -60px !important;
  right: -60px !important;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modalClose {
    width: 30px;
    top: -55px !important;
    right: 0 !important;
  }
}

.modalClose__line {
  background: #000;
  display: block;
  width: 60px;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .modalClose__line {
    width: 30px;
  }
}

.modalClose__line.top {
  -webkit-transform: rotate(-45deg) translateY(0px);
          transform: rotate(-45deg) translateY(0px);
  margin-top: 30px;
}

.modalClose__line.bottom {
  -webkit-transform: rotate(45deg) translateY(0px);
          transform: rotate(45deg) translateY(0px);
}

.menu_trigger {
  display: none;
  position: relative;
  z-index: 150;
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 0;
  background-color: #000;
}
@media (max-width: 767px) {
  .menu_trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.menu_trigger .menu_trigger_btn {
  width: 30px;
  height: 20px;
  position: relative;
}
.menu_trigger .menu_trigger_btn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  padding: 0;
}
.menu_trigger .menu_trigger_btn span:nth-of-type(1) {
  top: 0;
}
.menu_trigger .menu_trigger_btn span:nth-of-type(2) {
  top: 9px;
}
.menu_trigger .menu_trigger_btn span:nth-of-type(3) {
  bottom: 0;
}
.menu_trigger.active .menu_trigger_btn span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
.menu_trigger.active .menu_trigger_btn span:nth-of-type(2) {
  opacity: 0;
}
.menu_trigger.active .menu_trigger_btn span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
  width: 100%;
}

.special_wrap {
  position: relative;
  max-width: 1330px;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .special_wrap {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .special_wrap {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.special_title {
  width: auto;
  margin-right: auto;
  margin-bottom: 130px;
  margin-left: auto;
  margin-top: 80px;
}
.special_title img {
  display: block;
  max-height: 46px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .special_title {
    margin-bottom: 30px;
    margin-top: -30px;
    padding-top: 30px;
  }
  .special_title img {
    max-height: 21px;
  }
}

.special_flex_berabou {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  font-weight: 500;
  background: #004b29;
  border-top: 10px solid;
  border-bottom: 10px solid;
  -o-border-image: linear-gradient(to right, #d5b200 0%, #ecd560 50%, #d5b200 100%);
     border-image: -webkit-gradient(linear, left top, right top, from(#d5b200), color-stop(50%, #ecd560), to(#d5b200));
     border-image: linear-gradient(to right, #d5b200 0%, #ecd560 50%, #d5b200 100%);
  border-image-slice: 1;
  padding: 60px;
  position: relative;
}
@media (max-width: 1440px) {
  .special_flex_berabou {
    padding: 60px 40px;
  }
}
@media (max-width: 767px) {
  .special_flex_berabou {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 20px 0px;
    border-top: 8px solid;
    border-bottom: 8px solid;
    background-image: url(/assets/img/berabou/bg_berabou-sp_l.png), url(/assets/img/berabou/bg_berabou-sp_r.png);
    background-repeat: no-repeat;
    background-position: left bottom, right bottom;
    background-size: auto 50vw;
  }
}
.special_flex_berabou .icon_new_corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .special_flex_berabou .icon_new_corner {
    top: 0;
    width: 160px;
  }
}
@media (max-width: 767px) {
  .special_flex_berabou .icon_new_corner {
    top: 0;
    width: 100px;
  }
}

.berabou_flex__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .berabou_flex__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.berabou_logo {
  width: 28%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.berabou_logo img {
  width: 90%;
}

.berabou_package {
  width: 36%;
}

.berabou_detail {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 2rem;
  padding-left: 2%;
  text-align: center;
}
.berabou_detail .berabou_title {
  width: 80%;
  display: block;
  margin: 0 auto 30px;
}
.berabou_detail .berabou_mini_title {
  width: 70%;
  display: block;
  margin: 0 auto 10px;
}
.berabou_detail .berabou_text {
  margin-bottom: 30px;
}
.berabou_detail .berabou_detail_package {
  padding-left: 2%;
  margin-right: -2%;
}
@media (max-width: 767px) {
  .berabou_detail .berabou_detail_package {
    display: none;
  }
}

@media (max-width: 1440px) {
  .berabou_logo {
    width: 26%;
  }
  .berabou_logo img {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .berabou_package {
    width: 38%;
  }
  .berabou_detail {
    width: 36%;
  }
}
@media (max-width: 767px) {
  .berabou_logo {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }
  .berabou_logo img {
    width: 80%;
  }
  .berabou_package {
    width: 100%;
    margin-bottom: 30px;
  }
  .berabou_detail {
    width: 100%;
    font-size: 1.4rem;
    padding-left: 0%;
  }
  .berabou_detail .berabou_title {
    width: 60%;
    display: block;
    margin: 0 auto 20px;
    max-width: 340px;
  }
  .berabou_detail .berabou_mini_title {
    width: 55%;
    display: block;
    margin: 0 auto 10px;
    max-width: 300px;
  }
  .berabou_detail .berabou_text {
    margin-bottom: 30px;
  }
  .berabou_detail .berabou_detail_package {
    padding-left: 2%;
    margin-right: -2%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .berabou_detail .berabou_detail_package {
    display: none;
  }
}
.fade_slider_in img {
  width: 100%;
}

.mv_wrap {
  position: relative;
  z-index: 1;
}

.mv_photo_bg {
  position: relative;
  z-index: 1;
}
.mv_photo_bg img {
  width: 100%;
  display: block;
}

.mv_photo {
  width: 100%;
  position: absolute;
  z-index: 3;
  right: 1.6%;
  bottom: 2.9%;
  width: 30%;
}
@media (max-width: 767px) {
  .mv_photo {
    display: none;
  }
}
.mv_photo img {
  display: block;
  width: 100%;
}

.ttl_l {
  font-family: "Inter", sans-serif;
  color: #706E6E;
  font-size: 7.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .ttl_l {
    font-size: 2.4rem;
  }
}

.ttl_m {
  font-family: "Inter", sans-serif;
  color: #706E6E;
  font-size: 7.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 22.5px;
}

.gradient_wrap {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(11.46%, rgba(137, 203, 240, 0)), color-stop(30.73%, #8ac7f7), color-stop(75%, #8ac7f7), color-stop(85%, rgba(138, 200, 247, 0.8980392157)), color-stop(97.92%, rgba(137, 203, 240, 0.05)), to(rgba(137, 203, 240, 0)));
  background: linear-gradient(180deg, rgba(137, 203, 240, 0) 11.46%, #8ac7f7 30.73%, #8ac7f7 75%, rgba(138, 200, 247, 0.8980392157) 85%, rgba(137, 203, 240, 0.05) 97.92%, rgba(137, 203, 240, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(11.46%, rgba(137, 203, 240, 0)), color-stop(30.73%, #8ac7f7), color-stop(75%, #8ac7f7), color-stop(85%, #8ac7f7), color-stop(89%, rgba(138, 200, 247, 0.7960784314)), color-stop(91%, rgba(138, 200, 247, 0.6588235294)), color-stop(95.92%, rgba(137, 203, 240, 0.05)), to(rgba(137, 203, 240, 0)));
  background: linear-gradient(180deg, rgba(137, 203, 240, 0) 11.46%, #8ac7f7 30.73%, #8ac7f7 75%, #8ac7f7 85%, rgba(138, 200, 247, 0.7960784314) 89%, rgba(138, 200, 247, 0.6588235294) 91%, rgba(137, 203, 240, 0.05) 95.92%, rgba(137, 203, 240, 0) 100%);
  background: #85D9DC;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .gradient_wrap {
    margin-bottom: 110px;
  }
}
.gradient_wrap_tl {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(11.46%, #85D9DC), color-stop(30.73%, #85D9DC), color-stop(75%, #85D9DC), color-stop(85%, #85D9DC), color-stop(89%, rgba(133, 217, 220, 0.8156862745)), color-stop(91%, rgba(133, 217, 220, 0.6431372549)), color-stop(95.92%, rgba(133, 217, 220, 0.0666666667)), to(rgba(137, 203, 240, 0)));
  background: linear-gradient(180deg, #85D9DC 11.46%, #85D9DC 30.73%, #85D9DC 75%, #85D9DC 85%, rgba(133, 217, 220, 0.8156862745) 89%, rgba(133, 217, 220, 0.6431372549) 91%, rgba(133, 217, 220, 0.0666666667) 95.92%, rgba(137, 203, 240, 0) 100%);
  margin-bottom: unset;
}
@media (max-width: 767px) {
  .gradient_wrap_tl {
    margin-bottom: unset;
  }
}

.intro_wrap {
  position: relative;
  padding-top: 0;
}
@media (max-width: 767px) {
  .intro_wrap {
    padding-top: 0;
  }
}

.intro_photo {
  position: relative;
}
.intro_photo img {
  display: block;
}

.intro_mega_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 1980px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 26%;
}
@media (max-width: 767px) {
  .intro_mega_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 0%;
  }
}
.intro_mega_flex .is-right {
  width: 39%;
  z-index: 3;
  margin-top: 5.5%;
}
@media (max-width: 767px) {
  .intro_mega_flex .is-right {
    width: 90%;
    margin-top: 6%;
    margin-right: 0;
    margin-left: auto;
  }
}
.intro_mega_flex .is-left {
  width: 59%;
  margin-left: 0%;
  padding-top: 8%;
  z-index: 1;
  opacity: 0;
}
.intro_mega_flex .is-left img {
  width: 100%;
}
@media (max-width: 767px) {
  .intro_mega_flex .is-left {
    width: 73%;
    margin-top: 0;
    margin-left: 0%;
    margin-right: auto;
    padding-top: unset;
  }
}
.intro_mega_flex .is-left.is-animate {
  -webkit-animation: mvFade 1s 0s ease-out forwards;
          animation: mvFade 1s 0s ease-out forwards;
}
.intro_mega_flex .is-left2 {
  width: 54%;
  z-index: 3;
  margin-top: -4.5%;
}
@media (max-width: 767px) {
  .intro_mega_flex .is-left2 {
    width: 72%;
    margin-top: 12%;
    margin-left: 0;
    margin-right: auto;
  }
}
.intro_mega_flex .is-center {
  width: 52%;
  z-index: 2;
  margin-top: -10%;
  margin-right: auto;
  margin-left: auto;
  left: 8.7%;
}
@media (max-width: 767px) {
  .intro_mega_flex .is-center {
    width: 92%;
    margin-top: 12%;
    margin-right: auto;
    margin-left: auto;
    left: inherit;
  }
}

.intro_photo_inner_1 {
  width: 100%;
  position: absolute;
  bottom: -25%;
  right: 0;
  z-index: 1;
  opacity: 0;
}
.intro_photo_inner_1 img {
  width: 100%;
}
@media (max-width: 767px) {
  .intro_photo_inner_1 {
    width: 70%;
    position: relative;
    margin-right: 0;
    margin-left: auto;
  }
}
.is-animate .intro_photo_inner_1 {
  -webkit-animation: mvFade 1s 1s ease-out forwards;
          animation: mvFade 1s 1s ease-out forwards;
}

.intro_photo_inner_2 {
  width: 100%;
  position: absolute;
  top: 33%;
  right: 40%;
  z-index: 2;
  margin-top: -26%;
  opacity: 0;
  padding-right: 4%;
}
.intro_photo_inner_2 img {
  width: 100%;
}
@media (max-width: 767px) {
  .intro_photo_inner_2 {
    width: 57%;
    position: absolute;
    top: -91%;
    right: 0%;
    left: auto;
  }
}
.is-animate .intro_photo_inner_2 {
  -webkit-animation: mvFade 1s 0.5s ease-out forwards;
          animation: mvFade 1s 0.5s ease-out forwards;
}

.intro_photo_inner_4 {
  width: 100%;
  position: absolute;
  top: 33%;
  left: 0%;
  z-index: 3;
  margin-top: -26%;
  opacity: 0;
}
@media (max-width: 767px) {
  .intro_photo_inner_4 {
    width: 40%;
    position: absolute;
    top: 65%;
    left: 0%;
    left: auto;
  }
}
@media (max-width: 767px) {
  .is-animate .intro_photo_inner_4 {
    -webkit-animation: mvFade 1s 1.5s ease-out forwards;
            animation: mvFade 1s 1.5s ease-out forwards;
  }
}

.intro_center_photo {
  width: 100%;
}

.intro_box {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: clamp(92px, 7.6vw, 115px) 0 clamp(64px, 5.29vw, 80px);
}
@media (max-width: 767px) {
  .intro_box {
    padding: min(26.66vw, 200px) 0 min(21.33vw, 160px);
  }
}

.intro_subtitle {
  width: max(486px, 40vw);
  margin: 0 auto;
}
.intro_subtitle-wrap {
  margin-bottom: clamp(48px, 3.96vw, 60px);
}
@media (max-width: 767px) {
  .intro_subtitle-wrap {
    margin-bottom: min(8vw, 60px);
  }
}
@media (max-width: 767px) {
  .intro_subtitle {
    width: min(65.73vw, 493px);
  }
}

@media (max-width: 767px) {
  .intro_potato_wrap {
    margin-bottom: min(4vw, 30px);
  }
}
.intro_potato_wrap .potato {
  width: 43vw;
  width: max(522px, 43vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .intro_potato_wrap .potato {
    width: min(89.33vw, 670px);
  }
}

.intro_txt {
  margin: 0 auto;
  text-align: center;
}
.intro_txt p {
  font-size: clamp(26px, 2.2vw, 40px);
  line-height: 2;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 767px) {
  .intro_txt p {
    font-size: 4vw;
  }
}

.intro_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30% auto 0;
  width: 90%;
}
.intro_flex + .intro_flex {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .intro_flex {
    width: 90%;
    margin: 30px auto 0;
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro_flex + .intro_flex {
    margin-top: 20px;
  }
}
.intro_flex.intro_flex_ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .intro_flex.intro_flex_ttl {
    width: 90%;
    margin: 40px auto 26px;
    padding-left: 0;
  }
  .intro_flex.intro_flex_ttl + .intro_flex {
    margin-top: 20px;
  }
}

.intro_flex {
  width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .intro_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.intro_flex__item.intro_flex__item_logo {
  width: 37%;
}
@media (max-width: 767px) {
  .intro_flex__item.intro_flex__item_logo {
    width: 78%;
    margin-left: -4vw;
    max-width: 300px;
  }
}
.intro_flex__item.intro_flex__item_pic {
  width: 40%;
}
.intro_flex__item.intro_flex__item_txt {
  width: 63%;
  padding-left: 3vw;
}
@media screen and (max-width: 1440px) {
  .intro_flex__item.intro_flex__item_txt {
    padding-left: 4vw;
  }
}
@media (max-width: 767px) {
  .intro_flex__item.intro_flex__item_txt {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.intro_flex__item.intro_flex__item_txt .intro_txt {
  @import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 4.2rem;
  line-height: 1.8;
  color: #111;
  text-indent: -2rem;
}
@media screen and (max-width: 1440px) {
  .intro_flex__item.intro_flex__item_txt .intro_txt {
    font-size: 3.6rem;
    text-indent: -1.8rem;
  }
}
@media (max-width: 767px) {
  .intro_flex__item.intro_flex__item_txt .intro_txt {
    font-size: 1.8rem;
    margin-top: 20px;
    line-height: 2;
    text-indent: -0.9rem;
  }
}
.intro_flex__item.intro_flex__item_txt .intro_photo {
  width: auto;
}
@media (max-width: 767px) {
  .intro_flex__item.intro_flex__item_txt .intro_photo {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .intro_flex__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.intro_flex__item h2 {
  margin-bottom: 30px;
  max-width: 810px;
  opacity: 0;
}
@media (max-width: 767px) {
  .intro_flex__item h2 {
    width: 100%;
    margin-bottom: 0;
  }
}
.intro_flex__item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1170px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro_flex__item__text h3 {
  margin-bottom: 40px;
  width: 40%;
}
@media (max-width: 767px) {
  .intro_flex__item__text h3 {
    width: 50%;
    margin-bottom: 25px;
  }
}
.intro_flex__item__text p {
  width: 55%;
}
@media (max-width: 767px) {
  .intro_flex__item__text p {
    text-align: center;
    width: 90%;
    display: block;
    margin: 0 auto;
  }
}
.intro_flex__item__text p img {
  width: 100%;
}
.intro_flex__item .intro_photo {
  width: 434px;
  opacity: 0;
}
@media (max-width: 767px) {
  .intro_flex__item .intro_photo {
    width: 100%;
    margin-top: 10%;
    margin-right: auto;
    margin-left: auto;
  }
}
.intro_flex__item .intro_photo .intro_photo_inner_3 {
  padding-top: 0px;
}
@media (max-width: 767px) {
  .intro_flex__item .intro_photo .intro_photo_inner_3 {
    padding-top: 0;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
.intro_flex__item.is-animate h2, .intro_flex__item.is-animate .intro_photo {
  -webkit-animation: mvFade 1s ease-out forwards;
          animation: mvFade 1s ease-out forwards;
}
.intro_flex__item.is-animate h3, .intro_flex__item.is-animate p, .intro_flex__item.is-animate .intro_flex__item__text {
  -webkit-animation: mvFade 1s 2s ease-out forwards;
          animation: mvFade 1s 2s ease-out forwards;
}

@-webkit-keyframes mvFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mvFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.movie_wrap {
  position: relative;
  max-width: 1400px;
  margin-top: 160px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 300px;
}
@media (max-width: 1440px) {
  .movie_wrap {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .movie_wrap {
    margin-top: 80px;
    padding-bottom: 180px;
  }
}

.movie_title {
  width: auto;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
}
.movie_title img {
  display: block;
  max-height: 46px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .movie_title {
    margin-bottom: 30px;
  }
  .movie_title img {
    max-height: 21px;
  }
}

.movie_comingsoon {
  background: #cecece;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3rem;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
  width: 50%;
  height: 400px;
  padding: 5px 10px 10px;
}
@media (max-width: 767px) {
  .movie_comingsoon {
    width: 80%;
    height: 300px;
    font-size: 2rem;
  }
}

.movie_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 767px) {
  .movie_flex {
    display: block;
  }
}

.movie_flex__item {
  width: 50%;
  padding-right: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .movie_flex__item {
    width: 90%;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0px;
    margin: 0 auto;
  }
}
.movie_flex__item + .movie_flex__item {
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .movie_flex__item + .movie_flex__item {
    margin-top: 40px;
    padding-left: 0;
  }
}

.movie_mini_title {
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .movie_mini_title {
    margin-bottom: 15px;
  }
}
.movie_mini_title img {
  display: block;
}
@media (max-width: 767px) {
  .movie_mini_title img {
    width: auto;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.movie_mini_title.is-left {
  width: 110px;
}
@media (max-width: 767px) {
  .movie_mini_title.is-left {
    width: 100%;
    height: 18px;
  }
}
.movie_mini_title.is-right {
  width: 160px;
}
@media (max-width: 767px) {
  .movie_mini_title.is-right {
    width: 100%;
    height: 18px;
  }
}

.movie_flame {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .movie_flame {
    margin-bottom: 10px;
  }
}
.movie_flame img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .movie_flame img {
    margin-bottom: 15px;
  }
}
.movie_flame small {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 600;
}
@media (max-width: 767px) {
  .movie_flame small {
    font-size: 1.4rem;
  }
}

.movie_box {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .movie_box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .movie_box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

.movie_text {
  font-size: 1.6rem;
  line-height: 2;
  margin: 20px auto 0;
  text-align: left;
  width: 100%;
}
@media (max-width: 767px) {
  .movie_text {
    font-size: 1.2rem;
    padding-right: 4%;
    padding-left: 4%;
    text-align: justify;
  }
}

.lineup_btn_flex.cm_btn_flex .cm_btn_flex__item {
  width: auto;
  height: 70px;
}
@media (max-width: 767px) {
  .lineup_btn_flex.cm_btn_flex .cm_btn_flex__item {
    width: 85%;
    height: 54px;
  }
}
.lineup_btn_flex.cm_btn_flex .cm_btn_flex__item a {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .lineup_btn_flex.cm_btn_flex .cm_btn_flex__item a {
    font-size: 2.4rem;
  }
  .lineup_btn_flex.cm_btn_flex .cm_btn_flex__item a .icon_arrow {
    width: 10px;
    height: 21px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .lineup_btn_flex.cm_btn_flex .cm_btn_flex__item a {
    padding: 0;
    font-size: 1.8rem;
  }
  .lineup_btn_flex.cm_btn_flex .cm_btn_flex__item a .icon_arrow {
    width: 7px;
    height: 12px;
    margin-right: 7px;
  }
}

.notice {
  text-align: right;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .notice {
    font-size: 1.2rem;
    padding-right: 4%;
    padding-left: 6%;
    text-align: justify;
  }
}

.lineup_wrap {
  margin-top: -70px;
  position: relative;
  position: relative;
}
.lineup_wrap .icon_new_corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap .icon_new_corner {
    top: 14px;
    width: 160px;
    top: 15px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap .icon_new_corner {
    top: 0;
    width: 100px;
  }
}

.lineup_title {
  display: block;
  text-align: center;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  margin-top: -40px;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .lineup_title {
    margin-bottom: 30px;
    margin-top: -30px;
    padding-top: 30px;
  }
}
.lineup_title img {
  display: block;
}

.lineup_wrap_inner.is-left {
  padding: 2% 16% 0 6%;
}
.lineup_wrap_inner.is-left .lineup_flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.lineup_wrap_inner.is-left .lineup_content {
  padding-left: 70px;
}
.lineup_wrap_inner.is-right {
  padding: 2% 6% 0 16%;
}
.lineup_wrap_inner.is-right .lineup_flex {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-left, .lineup_wrap_inner.is-right {
    padding: 0;
  }
  .lineup_wrap_inner + .lineup_wrap_inner {
    margin-top: 0;
  }
  .lineup_wrap_inner.is-left .lineup_content {
    padding-left: 0px;
  }
}
.lineup_wrap_inner .lineup_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  max-width: 1350px;
  margin-right: auto;
  margin-left: auto;
  color: #000;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner .lineup_flex {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner .lineup_flex {
    display: block;
    padding-top: 20px;
  }
}
.lineup_wrap_inner.is-namaham {
  background: url(/assets/img/potato_lineup_05.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-namaham {
    background: none;
  }
}
.lineup_wrap_inner.is-namaham .lineup_flex {
  background: linear-gradient(64deg, #231815 43.43%, rgba(35, 24, 21, 0.81) 102.98%);
  background-size: cover;
  margin-bottom: 120px;
  min-height: 500px;
  padding-bottom: 40px;
  margin-top: 150px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-namaham .lineup_flex {
    background-position: bottom;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 45px;
    min-height: inherit;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-namaham .lineup_flex .lineup_mini_title {
    margin-top: 0;
    position: relative;
  }
}
.lineup_wrap_inner.is-namaham .lineup_flex .lineup_mini_title, .lineup_wrap_inner.is-namaham .lineup_flex .lineup_text {
  color: #fff;
}
.lineup_wrap_inner.is-namaham .lineup_flex .is-size2 {
  margin-top: 60px;
  margin-right: 60px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-namaham .lineup_flex .is-size2 {
    margin-right: 60px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-namaham .lineup_flex .is-size2 {
    margin-top: 0;
    margin-right: 0;
  }
}
.lineup_wrap_inner.is-namaham .lineup_flex .is-type2 {
  top: 140px;
}
.lineup_wrap_inner.is-blue {
  background: url(/assets/img/2508/potato_lineup_shio_2508.png) no-repeat right 3% top;
  background-size: 25%;
}
@media screen and (max-width: 1750px) {
  .lineup_wrap_inner.is-blue {
    background-size: 25%;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blue {
    background: none;
  }
}
.lineup_wrap_inner.is-blue .lineup_flex {
  background: linear-gradient(-71deg, #96d5db 7.29%, rgba(148, 201, 205, 0.48) 94.03%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 480px;
  padding-bottom: 54px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blue .lineup_flex {
    margin-top: 0;
    padding-bottom: 45px;
    min-height: inherit;
    margin-bottom: 0px;
  }
}
.lineup_wrap_inner.is-blue .lineup_pic_title {
  width: 340px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-blue .lineup_pic_title {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blue .lineup_pic_title {
    width: 50%;
  }
}
.lineup_wrap_inner.is-gold {
  background: url(/assets/img/potato_lineup_01.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-gold {
    background: none;
  }
}
.lineup_wrap_inner.is-gold .lineup_flex {
  background-image: url(/assets/img/bg_lineup_02.png);
  background-size: 100% auto;
  margin-top: 150px;
  min-height: 500px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-gold .lineup_flex {
    margin-top: 0;
    padding-bottom: 45px;
    min-height: inherit;
    margin-bottom: 0px;
  }
}
.lineup_wrap_inner.is-white {
  background: url(/assets/img/potato_lineup_04.png) no-repeat right top;
  background: url(/assets/img/potato_lineup_04.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-white {
    background: none;
  }
}
.lineup_wrap_inner.is-white .lineup_flex {
  background: linear-gradient(109deg, rgb(251, 250, 239) 5.04%, #ffeec4 91.8%);
  background: linear-gradient(109deg, #ffeec4 5.04%, rgb(251, 250, 239) 91.8%);
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-white .lineup_flex {
    margin-top: 0;
    padding-bottom: 45px;
    margin-bottom: 0px;
    min-height: inherit;
    padding-right: 0;
  }
}
.lineup_wrap_inner.is-green {
  background: url(/assets/img/potato_lineup_03.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-green {
    background: none;
  }
}
.lineup_wrap_inner.is-green .lineup_flex {
  background: linear-gradient(72deg, #08B004 6.92%, rgba(183, 228, 88, 0.97) 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
  padding-left: 26px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-green .lineup_flex {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
.lineup_wrap_inner.is-consome {
  background: url(/assets/img/2508/potato_lineup_consome_2508.png) no-repeat right 5% top;
  background-size: 23%;
}
@media screen and (max-width: 1750px) {
  .lineup_wrap_inner.is-consome {
    background: url(/assets/img/2508/potato_lineup_consome_2508.png) no-repeat right top;
    background-size: 23%;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-consome {
    background: none;
  }
}
.lineup_wrap_inner.is-consome .lineup_flex {
  background: linear-gradient(-71deg, #ff6a00 7.29%, rgba(255, 145, 66, 0.55) 94.03%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 54px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-consome .lineup_flex {
    background: linear-gradient(-71deg, #ff6a00 7.29%, rgba(255, 145, 66, 0.55) 94.03%);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
.lineup_wrap_inner.is-consome .lineup_pic_title {
  width: 330px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-consome .lineup_pic_title {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-consome .lineup_pic_title {
    width: 48%;
  }
}
.lineup_wrap_inner.is-honeybutter {
  background: url(/assets/img/potato_lineup_honeyButter.png) no-repeat right top;
  background-size: 20%;
  background-size: 21%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-honeybutter {
    background: none;
  }
}
.lineup_wrap_inner.is-honeybutter .lineup_flex {
  background: linear-gradient(72deg, #DC5B65 6.92%, #AA242F 85.32%);
  background: linear-gradient(72deg, #d5555e 6.92%, #991e29 85.32%);
  background: linear-gradient(64deg, #d5555e 6.92%, #991e29 85.32%);
  background: linear-gradient(64deg, #9b1a22 6.92%, #721217 85.32%);
  background: linear-gradient(64deg, #aa242f 6.92%, #721217 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 150px;
  padding-left: 26px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-honeybutter .lineup_flex {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
.lineup_wrap_inner.is-honeybutter .lineup_flex .icon_new_corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-honeybutter .lineup_flex .icon_new_corner {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-honeybutter .lineup_flex .icon_new_corner {
    width: 102px;
  }
}
.lineup_wrap_inner.is-honeybutter .is-sizenone_sizzle {
  position: absolute;
  top: -48px;
  right: 6px;
  width: 78px;
  top: 28px;
  right: -38px;
  width: 92px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-honeybutter .is-sizenone_sizzle {
    top: -43px;
    right: 7px;
    width: 74px;
    top: 22px;
    right: -33px;
    width: 84px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-honeybutter .is-sizenone_sizzle {
    top: -31%;
    right: 4px;
    width: 14%;
    top: 41%;
    right: -19px;
    width: 19%;
  }
}
.lineup_wrap_inner.is-honeybutter .lineup_mini_title, .lineup_wrap_inner.is-honeybutter .lineup_text, .lineup_wrap_inner.is-honeybutter .lineup_btn_flex__item a {
  color: #FFFCD1;
}
.lineup_wrap_inner.is-honeybutter .lineup_btn_flex__item a {
  border: 1px solid #FFFCD1;
}
.lineup_wrap_inner.is-honeybutter .lineup_btn_flex__item a .icon_arrow {
  background-image: url(/assets/img/icon_arrow_honeyButter.svg);
  fill: #FFFCD1;
}
.lineup_wrap_inner.is-honeybutter .lineup_btn_flex__item a:hover {
  background-color: white;
  color: #000;
}
.lineup_wrap_inner.is-honeybutter .lineup_btn_flex__item a:hover .icon_arrow {
  background-image: url(/assets/img/icon_arrow.svg);
}
.lineup_wrap_inner.is-honeybutter .lineup_content {
  margin-top: 73px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-honeybutter .lineup_content {
    margin-top: 60px;
    margin-top: 68px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-honeybutter .lineup_content {
    padding-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-honeybutter .lineup_package {
    margin-top: 40px;
  }
}
.lineup_wrap_inner.is-blackpaper {
  background: url(/assets/img/potato_lineup_blackpaper.png) no-repeat right top;
  background: url(/assets/img/potato_lineup_blackpaper.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blackpaper {
    background: none;
  }
}
.lineup_wrap_inner.is-blackpaper .lineup_flex {
  background: linear-gradient(64deg, #292929 6.92%, #000 85.32%);
  background: linear-gradient(64deg, #000 6.92%, #292929 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
  padding-left: 26px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blackpaper .lineup_flex {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blackpaper .lineup_flex {
    margin-bottom: 0;
  }
}
.lineup_wrap_inner.is-blackpaper .lineup_mini_title, .lineup_wrap_inner.is-blackpaper .lineup_text, .lineup_wrap_inner.is-blackpaper .lineup_btn_flex__item a {
  color: #fff;
}
.lineup_wrap_inner.is-blackpaper .lineup_btn_flex__item a {
  border: 1px solid #fff;
}
.lineup_wrap_inner.is-blackpaper .lineup_btn_flex__item a .icon_arrow {
  background-image: url(/assets/img/icon_arrow_wh.svg);
  fill: #fff;
}
.lineup_wrap_inner.is-blackpaper .lineup_btn_flex__item a:hover {
  background-color: white;
  color: #000;
}
.lineup_wrap_inner.is-blackpaper .lineup_btn_flex__item a:hover .icon_arrow {
  background-image: url(/assets/img/icon_arrow.svg);
}
.lineup_wrap_inner.is-blackpaper .icon_new_corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-blackpaper .icon_new_corner {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blackpaper .icon_new_corner {
    width: 102px;
  }
}
.lineup_wrap_inner.is-blackpaper .lineup_content {
  padding-left: 137px;
  padding-left: 120px;
  padding-left: 0;
  margin-top: 60px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-blackpaper .lineup_content {
    padding-left: 70px;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blackpaper .lineup_content {
    padding-left: 0;
    margin-top: 0;
  }
}
.lineup_wrap_inner.is-blackpaper .lineup_pic_title {
  width: 470px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-blackpaper .lineup_pic_title {
    width: 420px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-blackpaper .lineup_pic_title {
    width: 69%;
  }
}
.lineup_wrap_inner.is-mozzarella {
  background: url(/assets/img/potato_lineup_08.png) no-repeat right top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-mozzarella {
    background: none;
  }
}
.lineup_wrap_inner.is-mozzarella .lineup_flex {
  background: linear-gradient(64deg, #2a4681 6.92%, #06193f 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
  padding-left: 26px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-mozzarella .lineup_flex {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
.lineup_wrap_inner.is-mozzarella .lineup_mini_title, .lineup_wrap_inner.is-mozzarella .lineup_text, .lineup_wrap_inner.is-mozzarella .lineup_btn_flex__item a {
  color: #fff;
}
.lineup_wrap_inner.is-mozzarella .lineup_btn_flex__item a {
  border: 1px solid #fff;
}
.lineup_wrap_inner.is-mozzarella .lineup_btn_flex__item a .icon_arrow {
  background-image: url(/assets/img/icon_arrow_wh.svg);
  fill: #fff;
}
.lineup_wrap_inner.is-mozzarella .lineup_btn_flex__item a:hover {
  background-color: white;
  color: #000;
}
.lineup_wrap_inner.is-mozzarella .lineup_btn_flex__item a:hover .icon_arrow {
  background-image: url(/assets/img/icon_arrow.svg);
}
.lineup_wrap_inner.is-mozzarella .icon_new_corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-mozzarella .icon_new_corner {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-mozzarella .icon_new_corner {
    width: 102px;
  }
}
.lineup_wrap_inner.is-mozzarella .lineup_content {
  padding-left: 137px;
  padding-left: 120px;
  padding-left: 8%;
  margin-top: 60px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-mozzarella .lineup_content {
    padding-left: 70px;
    padding-left: 60px;
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-mozzarella .lineup_content {
    padding-left: 0;
    margin-top: 0;
  }
}
.lineup_wrap_inner.is-mozzarella .lineup_pic_title {
  width: 470px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-mozzarella .lineup_pic_title {
    width: 420px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-mozzarella .lineup_pic_title {
    width: 69%;
  }
}
.lineup_wrap_inner.is-kaisen {
  background: url(/assets/img/potato_lineup_kaisenshoyu_202409.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-kaisen {
    background: none;
  }
}
.lineup_wrap_inner.is-kaisen .lineup_flex {
  background: linear-gradient(64deg, #fac398 6.92%, #d65c15 85.32%);
  background: linear-gradient(64deg, #e35706 6.92%, #fac398 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-kaisen .lineup_flex {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
.lineup_wrap_inner.is-kaisen .icon_new_corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-kaisen .icon_new_corner {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-kaisen .icon_new_corner {
    width: 102px;
  }
}
.lineup_wrap_inner.is-kaisen .lineup_content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-kaisen .lineup_content {
    margin-top: 0;
  }
}
.lineup_wrap_inner.is-kaisen .lineup_pic_title {
  width: 470px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-kaisen .lineup_pic_title {
    width: 420px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-kaisen .lineup_pic_title {
    width: 69%;
  }
}
.lineup_wrap_inner.is-nori {
  background: url(/assets/img/2508/potato_lineup_nori_2508.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-nori {
    background: none;
  }
}
.lineup_wrap_inner.is-nori .lineup_flex {
  background: linear-gradient(-71deg, #ffeca5 6.92% 6.92%, #e0b328 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 54px;
  padding-left: 26px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-nori .lineup_flex {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-nori .lineup_flex {
    margin-bottom: 0;
  }
}
.lineup_wrap_inner.is-nori .icon_new_corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-nori .icon_new_corner {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-nori .icon_new_corner {
    width: 102px;
  }
}
.lineup_wrap_inner.is-nori .lineup_content {
  padding-left: 0;
  margin-top: 60px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-nori .lineup_content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-nori .lineup_content {
    padding-left: 0;
    margin-top: 0;
  }
}
.lineup_wrap_inner.is-nori .lineup_pic_title {
  width: 320px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-nori .lineup_pic_title {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-nori .lineup_pic_title {
    width: 48%;
  }
}
.lineup_wrap_inner.is-yuzuKosho {
  background: url(/assets/img/2508/potato_lineup_yuzu_2508.png) no-repeat left top;
  background-size: 25%;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-yuzuKosho {
    background: none;
  }
}
.lineup_wrap_inner.is-yuzuKosho .lineup_flex {
  background: linear-gradient(-71deg, rgba(255, 250, 218, 0.3490196078) 6.92%, #ffe765 85.32%);
  background-size: 100% auto;
  margin-top: 150px;
  margin-bottom: 100px;
  min-height: 500px;
  padding-bottom: 40px;
  padding-left: 26px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-yuzuKosho .lineup_flex {
    background: linear-gradient(-71deg, rgba(255, 250, 218, 0.3490196078) 6.92%, #ffe765 85.32%);
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 45px;
    min-height: inherit;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-yuzuKosho .lineup_flex {
    margin-bottom: 0;
  }
}
.lineup_wrap_inner.is-yuzuKosho .lineup_mini_title, .lineup_wrap_inner.is-yuzuKosho .lineup_text, .lineup_wrap_inner.is-yuzuKosho .lineup_btn_flex__item a {
  color: #000;
}
.lineup_wrap_inner.is-yuzuKosho .lineup_btn_flex__item a {
  border: 1px solid #000;
}
.lineup_wrap_inner.is-yuzuKosho .lineup_btn_flex__item a .icon_arrow {
  fill: #000;
}
.lineup_wrap_inner.is-yuzuKosho .lineup_btn_flex__item a:hover {
  color: #fff;
}
.lineup_wrap_inner.is-yuzuKosho .lineup_btn_flex__item a:hover .icon_arrow {
  background-image: url(/assets/img/icon_arrow_wh.svg);
}
.lineup_wrap_inner.is-yuzuKosho .icon_new_corner {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-yuzuKosho .icon_new_corner {
    width: 160px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-yuzuKosho .icon_new_corner {
    width: 102px;
  }
}
.lineup_wrap_inner.is-yuzuKosho .lineup_content {
  margin-top: 60px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-yuzuKosho .lineup_content {
    padding-left: 5%;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-yuzuKosho .lineup_content {
    padding-left: 0;
    margin-top: 0;
  }
}
.lineup_wrap_inner.is-yuzuKosho .lineup_pic_title {
  width: 320px;
}
@media (max-width: 1440px) {
  .lineup_wrap_inner.is-yuzuKosho .lineup_pic_title {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .lineup_wrap_inner.is-yuzuKosho .lineup_pic_title {
    width: 48%;
  }
}

.is-left .lineup_package {
  right: 0%;
  -webkit-transform: translate(10%, -50%);
          transform: translate(10%, -50%);
}
@media (max-width: 1440px) {
  .is-left .lineup_package {
    -webkit-transform: translate(15%, -50%);
            transform: translate(15%, -50%);
  }
}

.is-right .lineup_package {
  left: 0%;
  -webkit-transform: translate(-10%, -50%);
          transform: translate(-10%, -50%);
}
@media (max-width: 1440px) {
  .is-right .lineup_package {
    -webkit-transform: translate(-15%, -50%);
            transform: translate(-15%, -50%);
  }
}

@media (max-width: 767px) {
  .is-left .lineup_package, .is-right .lineup_package {
    left: auto;
    right: auto;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    margin-top: 30px;
  }
}
.lineup_package {
  width: 50%;
  position: absolute;
  top: 50%;
  z-index: 3;
}
@media (max-width: 1440px) {
  .lineup_package {
    width: 53%;
  }
}
@media (max-width: 767px) {
  .lineup_package {
    -webkit-transform: none;
            transform: none;
    width: 67%;
    position: relative;
    top: inherit;
    left: inherit;
    margin-top: 25px;
    margin-right: auto;
    margin-bottom: 25px;
    margin-left: auto;
  }
}
.lineup_package img {
  display: block;
}

.lineup_content {
  position: relative;
  width: 50%;
  min-height: 430px;
}
@media (max-width: 1440px) {
  .lineup_content {
    min-height: 280px;
    width: 53%;
  }
}
@media (max-width: 767px) {
  .lineup_content {
    width: 100%;
    margin: 0 auto;
    min-height: auto;
  }
}
.lineup_content.is-size1 {
  margin-top: 60px;
  margin-left: 60px;
  padding-right: 1em;
}
@media (max-width: 1440px) {
  .lineup_content.is-size1 {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .lineup_content.is-size1 {
    margin-top: 0;
    margin-left: 0;
    padding-right: 0;
  }
}
.lineup_content.is-size2 {
  margin-top: 60px;
  margin-right: 30px;
}
@media (max-width: 1440px) {
  .lineup_content.is-size2 {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .lineup_content.is-size2 {
    margin-top: 0;
    margin-right: 0;
  }
}
.lineup_content.is-size3 {
  margin-top: 53px;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .lineup_content.is-size3 {
    margin-top: 0;
    margin-left: 0;
  }
}
.lineup_content.is-size4 {
  margin-top: 57px;
  margin-right: 20px;
}
@media (max-width: 1440px) {
  .lineup_content.is-size4 {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .lineup_content.is-size4 {
    margin-top: 0;
    margin-right: 0;
  }
}
.lineup_content.is-size5 {
  margin-top: 45px;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .lineup_content.is-size5 {
    margin-top: 0;
    margin-left: 0;
  }
}

.lineup_pic_title {
  margin-bottom: 20px;
  position: relative;
}
.is-size1 .lineup_pic_title {
  width: 480px;
}
@media (max-width: 1440px) {
  .is-size1 .lineup_pic_title {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .is-size1 .lineup_pic_title {
    width: 67%;
    margin-right: auto;
    margin-left: auto;
  }
}
.is-size2 .lineup_pic_title {
  width: 480px;
}
@media (max-width: 1440px) {
  .is-size2 .lineup_pic_title {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .is-size2 .lineup_pic_title {
    width: 67%;
    margin-right: auto;
    margin-left: auto;
  }
}
.is-size3 .lineup_pic_title {
  width: 500px;
}
.is-size3 .lineup_pic_title .is-size3_sizzle {
  position: absolute;
  top: -48px;
  right: 6px;
  width: 78px;
}
@media (max-width: 1440px) {
  .is-size3 .lineup_pic_title .is-size3_sizzle {
    top: -43px;
    right: 7px;
    width: 74px;
  }
}
@media (max-width: 767px) {
  .is-size3 .lineup_pic_title .is-size3_sizzle {
    top: -31%;
    right: 4px;
    width: 14%;
  }
}
@media (max-width: 1440px) {
  .is-size3 .lineup_pic_title {
    width: 500px;
  }
}
@media (max-width: 767px) {
  .is-size3 .lineup_pic_title {
    width: 67%;
    margin-right: auto;
    margin-left: auto;
  }
}
.is-size4 .lineup_pic_title {
  width: 480px;
}
.is-size4 .lineup_pic_title .is-size4_sizzle {
  position: absolute;
  top: -34px;
  right: -71px;
  width: 120px;
}
@media (max-width: 767px) {
  .is-size4 .lineup_pic_title .is-size4_sizzle {
    top: -10px;
    right: -25px;
    width: 21%;
  }
}
@media (max-width: 1440px) {
  .is-size4 .lineup_pic_title {
    width: 390px;
  }
}
@media (max-width: 767px) {
  .is-size4 .lineup_pic_title {
    width: 67%;
    margin: 0 auto 20px;
  }
}
.is-size5 .lineup_pic_title {
  width: 430px;
}
.is-size5 .lineup_pic_title .is-size5_sizzle {
  position: absolute;
  top: 40px;
  right: -119px;
  width: 174px;
}
@media (max-width: 767px) {
  .is-size5 .lineup_pic_title .is-size5_sizzle {
    top: 18px;
    right: -56px;
    width: 41%;
  }
}
@media (max-width: 1440px) {
  .is-size5 .lineup_pic_title {
    width: 358px;
  }
}
@media (max-width: 767px) {
  .is-size5 .lineup_pic_title {
    width: 60%;
    margin: 0 auto 20px;
  }
}

.lineup_mini_title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .lineup_mini_title {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
  }
}

.lineup_text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  font-weight: 400;
}
@media (max-width: 767px) {
  .lineup_text {
    width: 100%;
    font-size: 1.2rem;
    line-height: 2;
    text-align: center;
  }
}

.lineup_potato {
  position: absolute;
  z-index: -10;
}
@media (max-width: 767px) {
  .lineup_potato {
    display: none;
  }
}
.lineup_potato.is-type1 {
  top: 100px;
  right: 60px;
  width: 360px;
}
@media (max-width: 1440px) {
  .lineup_potato.is-type1 {
    top: 130px;
    width: 300px;
  }
}
.lineup_potato.is-type2 {
  top: 100px;
  left: 60px;
  width: 340px;
}
@media (max-width: 1440px) {
  .lineup_potato.is-type2 {
    width: 280px;
  }
}
.lineup_potato.is-type3 {
  top: 120px;
  right: 60px;
  width: 315px;
}
@media (max-width: 1440px) {
  .lineup_potato.is-type3 {
    width: 255px;
  }
}
.lineup_potato.is-type4 {
  top: 130px;
  left: 40px;
  width: 340px;
}
@media (max-width: 1440px) {
  .lineup_potato.is-type4 {
    width: 280px;
  }
}
.lineup_potato img {
  display: block;
}

.lineup_btn_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .lineup_btn_flex {
    display: block;
    padding-top: 30px;
  }
}

.lineup_btn_flex__item {
  width: 230px;
  height: 48px;
}
@media (max-width: 1440px) {
  .lineup_btn_flex__item {
    width: 200px;
    height: 38px;
  }
}
@media (max-width: 767px) {
  .lineup_btn_flex__item {
    width: 50%;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
.lineup_btn_flex__item.cart {
  width: 452px;
  height: 58px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .lineup_btn_flex__item.cart {
    width: 75%;
    height: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1440px) {
  .lineup_btn_flex__item.cart a {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  .lineup_btn_flex__item.cart a {
    font-size: 1.4rem;
  }
}
.lineup_btn_flex__item img {
  display: block;
}
@media (max-width: 767px) {
  .lineup_btn_flex__item + .lineup_btn_flex__item {
    margin-top: 15px;
  }
}
.lineup_btn_flex__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .lineup_btn_flex__item a {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .lineup_btn_flex__item a {
    font-size: 1.4rem;
  }
}
.lineup_btn_flex__item a.btn_white {
  border: 1px solid #fff;
  color: #fff;
}
.lineup_btn_flex__item a.btn_white .icon_arrow {
  background-image: url(/assets/img/icon_arrow_wh.svg);
  fill: #fff;
}
.lineup_btn_flex__item a.btn_white:hover {
  background: white;
  color: #000;
}
.lineup_btn_flex__item a.btn_white:hover .icon_arrow {
  background-image: url(/assets/img/icon_arrow.svg);
}
.lineup_btn_flex__item a small {
  display: inline-block;
}
.lineup_btn_flex__item a .icon_arrow {
  width: 10px;
  height: 21px;
  margin-right: 10px;
  background-image: url(/assets/img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .lineup_btn_flex__item a .icon_arrow {
    width: 8px;
    height: 13px;
    margin-right: 7px;
  }
}
@media (max-width: 767px) {
  .lineup_btn_flex__item a .icon_arrow {
    width: 7px;
    height: 12px;
    margin-right: 7px;
  }
}
.lineup_btn_flex__item a:hover {
  background-color: #000;
  color: #fff;
}
.lineup_btn_flex__item a:hover .icon_arrow {
  background-image: url(/assets/img/icon_arrow_wh.svg);
  fill: #fff;
}
.lineup_btn_flex__item a .icon {
  width: 36px;
  height: 30px;
  margin-left: 10px;
  background-image: url(/assets/img/icon_cart.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .lineup_btn_flex__item a .icon {
    width: 27px;
    height: 22px;
    margin-left: 5px;
  }
}
.lineup_btn_flex__item a:hover {
  background-color: #000;
  color: #fff;
}
.lineup_btn_flex__item a:hover .icon {
  background-image: url(/assets/img/icon_cart_on.svg);
}

.campaign {
  padding: 0 0 130px;
}
.campaign_title {
  text-align: center;
  letter-spacing: 0.1em;
  padding-top: 110px;
}
.campaign_title img {
  height: 44px;
  width: auto;
}
@media (max-width: 767px) {
  .campaign_title {
    padding-top: 40px;
  }
  .campaign_title img {
    height: 24px;
    width: auto;
  }
}
.campaign_txt {
  text-align: center;
  margin-top: 30px;
  font-size: 2rem;
  color: #555;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .campaign_txt {
    margin-top: 20px;
    font-size: 1.4rem;
  }
}
.campaign_banner {
  width: 944px;
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .campaign_banner {
    width: 90%;
    margin: 20px auto 0;
  }
}
.campaign_banner img {
  display: block;
  width: 100%;
  margin: 0 auto;
  -webkit-box-shadow: 8px 10px 10px rgba(60, 90, 116, 0.3);
          box-shadow: 8px 10px 10px rgba(60, 90, 116, 0.3);
}
@media (max-width: 767px) {
  .campaign_banner img {
    -webkit-box-shadow: 4px 5px 5px rgba(60, 90, 116, 0.3);
            box-shadow: 4px 5px 5px rgba(60, 90, 116, 0.3);
  }
}
@media (max-width: 767px) {
  .campaign {
    margin-top: 60px;
    padding: 0 0 40px;
  }
}

.lineup_banner {
  width: 944px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 110px;
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .lineup_banner {
    width: 75%;
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
.lineup_banner img {
  display: block;
}

.other_wrap {
  position: relative;
}

.other_kv {
  width: 100%;
  background-image: url(/assets/img/bg_other_01_202301.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .other_kv {
    background-image: none;
  }
}

.other_kv_photo {
  width: 100%;
}
.other_kv_photo img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .other_kv_photo img {
    width: 100%;
  }
}

.other_inner {
  background-color: #f8f6dc;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 767px) {
  .other_inner {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.other_pic_title {
  width: 865px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .other_pic_title {
    width: 82%;
    margin-bottom: 25px;
  }
}
.other_pic_title img {
  display: block;
}

.other_text {
  width: 803px;
  margin-right: auto;
  margin-bottom: 80px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .other_text {
    width: 83%;
    margin-bottom: 45px;
  }
}
.other_text img {
  display: block;
}

.other_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .other_flex {
    display: block;
    margin-bottom: 30px;
  }
}

.other_flex__item {
  padding-right: 110px;
  padding-left: 110px;
}
@media (max-width: 767px) {
  .other_flex__item {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .other_flex__item + .other_flex__item {
    margin-top: 50px;
  }
}

.other_flex_photo {
  width: 335px;
  margin-bottom: 50px;
  position: relative;
  -webkit-filter: drop-shadow(15px 15px 15px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(15px 15px 15px rgba(0, 0, 0, 0.15));
}
@media (max-width: 767px) {
  .other_flex_photo {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-bottom: 20px;
  }
}
.other_flex_photo img {
  display: block;
}
.other_flex_photo .icon_new {
  position: absolute;
  display: block;
  left: -36px;
  top: -40px;
  width: 79px;
}
@media (max-width: 767px) {
  .other_flex_photo .icon_new {
    left: -31px;
    top: -28px;
    width: 59px;
    z-index: 1;
  }
}

.other_flex_name {
  width: 200px;
  margin: 0 auto 25px;
}
@media (max-width: 767px) {
  .other_flex_name {
    width: 50%;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }
}
.other_flex_name img {
  display: block;
}

.other_flex_content {
  width: 335px;
  text-align: center;
}
@media (max-width: 767px) {
  .other_flex_content {
    width: 100%;
  }
}

.other_flex_text {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.5em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.other_flex_text.is-size1 {
  width: 310px;
}
@media (max-width: 767px) {
  .other_flex_text.is-size1 {
    width: 70%;
  }
}
.other_flex_text.is-size2 {
  width: 214px;
}
@media (max-width: 767px) {
  .other_flex_text.is-size2 {
    width: 49%;
  }
}
.other_flex_text img {
  display: block;
}
@media (max-width: 767px) {
  .other_flex_text {
    font-size: 1.2rem;
  }
}

.other_btn_box {
  position: relative;
}

.other_btn {
  width: 452px;
  height: 58px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .other_btn {
    width: 75%;
    height: 40px;
  }
}
.other_btn img {
  display: block;
}
.other_btn + .other_btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .other_btn + .other_btn {
    margin-top: 15px;
  }
}
.other_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  background-color: transparent;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .other_btn a {
    font-size: 1.4rem;
  }
}
.other_btn a small {
  display: inline-block;
}
.other_btn a .icon {
  width: 36px;
  height: 30px;
  margin-left: 10px;
  background-image: url(/assets/img/icon_cart.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .other_btn a .icon {
    width: 27px;
    height: 22px;
    margin-left: 5px;
  }
}
.other_btn a:hover {
  background-color: #000;
  color: #fff;
}
.other_btn a:hover .icon {
  background-image: url(/assets/img/icon_cart_on.svg);
}

.special_wrap {
  position: relative;
  max-width: 1330px;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .special_wrap {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .special_wrap {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.special_title {
  width: auto;
  margin-right: auto;
  margin-bottom: 130px;
  margin-left: auto;
  margin-top: 80px;
}
.special_title img {
  display: block;
  max-height: 46px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .special_title {
    margin-bottom: 30px;
    margin-top: -30px;
    padding-top: 30px;
  }
  .special_title img {
    max-height: 21px;
  }
}

.special_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #222;
}
@media (max-width: 767px) {
  .special_flex {
    display: block;
  }
}

.special_flex__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  width: calc(50% - 15px);
  margin-bottom: 130px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.special_flex__item .special_flex__item_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .special_flex__item .special_flex__item_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.special_flex__item .special_flex__item_flex .ja5_cont_box {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 10px 20px;
}
@media (max-width: 767px) {
  .special_flex__item .special_flex__item_flex .ja5_cont_box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
.special_flex__item .special_flex__item_flex .ja5_potato-detail {
  display: block;
  background: #1fbbe6;
  padding: 20px;
  margin: 0;
}
@media (max-width: 767px) {
  .special_flex__item .special_flex__item_flex .ja5_potato-detail {
    margin: 20px -20px 0;
    width: calc(100% + 40px);
    position: relative;
  }
}
.special_flex__item .special_flex__item_flex .ja5_potato-detail__ttl {
  text-align: left;
}
@media (max-width: 767px) {
  .special_flex__item .special_flex__item_flex .ja5_chart, .special_flex__item .special_flex__item_flex .ja5_taste {
    width: 100%;
  }
}
.special_flex__item .special_flex__item_flex .lineup_detail_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.special_flex__item .special_flex__item_flex .lineup_text__detail {
  width: 80%;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .special_flex__item .special_flex__item_flex .lineup_text__detail {
    width: 100%;
    padding-right: 0px;
  }
}
.special_flex__item .special_flex__item_flex .lineup_img__detail {
  width: 20%;
}
@media (max-width: 767px) {
  .special_flex__item .special_flex__item_flex .lineup_img__detail {
    display: none;
  }
}
.special_flex__item .icon_new {
  position: absolute;
  display: block;
  left: -20px;
  top: -50px;
  width: 80px;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}
@media (max-width: 767px) {
  .special_flex__item .icon_new {
    left: -10px;
    top: -20px;
    width: 60px;
    z-index: 1;
  }
}
.special_flex__item h3 {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin: 10px 0;
  font-family: "Shippori Mincho", serif;
  width: 100%;
}
.special_flex__item h3 span {
  padding: 0px 10px;
  color: #fff;
  font-size: 2.6rem;
  position: relative;
  margin: 5px 0 0px;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .special_flex__item {
    width: calc(100% - 40px);
    margin: 0px auto;
    padding: 10px 20px 0px;
    display: block;
  }
  .special_flex__item + .special_flex__item {
    margin-top: 40px;
  }
  .special_flex__item h3 {
    text-align: center;
    margin: 10px 0 20px;
  }
  .special_flex__item h3 span {
    font-size: 2.2rem;
  }
}
.special_flex__item .lineup_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.special_flex__item .lineup_text img {
  padding-left: 0px;
  width: 30%;
  height: auto;
  margin-right: 14px;
}
@media (max-width: 767px) {
  .special_flex__item .lineup_text {
    text-align: left;
    font-size: 1.4rem;
  }
  .special_flex__item .lineup_text img {
    width: 35%;
    margin-right: 10px;
  }
}
.special_flex__item.ja5_detail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.special_flex__item.ja5_detail h3 {
  width: 90%;
  margin: 0 auto;
}
.special_flex__item.ja5_detail h3 img {
  padding-left: 10%;
}
.special_flex__item.ja5_detail h3 .ttl_ja5_detail {
  display: block;
  margin: 20px auto 20px;
  width: 75%;
  padding-left: 0px;
}
@media (max-width: 767px) {
  .special_flex__item.ja5_detail h3 {
    width: 100%;
  }
  .special_flex__item.ja5_detail h3 img {
    padding-left: 5%;
  }
  .special_flex__item.ja5_detail h3 .ttl_ja5_detail {
    display: block;
    margin: 20px auto 20px;
    width: 75%;
    padding: 0;
  }
  .special_flex__item.ja5_detail h3 .ttl_ja5_detail img {
    padding-left: 0%;
  }
}
.special_flex__item.ja5_detail .lineup_text {
  color: #845900;
  font-weight: bold;
  font-size: 2rem;
  display: block;
  letter-spacing: 0.08em;
  text-align: center;
  padding-right: 0px;
  font-family: "Shippori Mincho", serif;
}
.special_flex__item.ja5_detail .lineup_text span {
  font-weight: bold;
}
.special_flex__item.ja5_detail .txt_cap {
  font-size: 1.4rem;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .special_flex__item.ja5_detail {
    padding: 20px 0;
    display: block;
  }
  .special_flex__item.ja5_detail h3 span {
    padding: 4px 10px;
    font-size: 2.4rem;
    background: #fff;
    text-align: center;
    margin: 30px 0 20px;
  }
  .special_flex__item.ja5_detail .lineup_text {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    padding: 0;
  }
  .special_flex__item.ja5_detail .txt_cap {
    font-size: 1.2rem;
  }
}
.special_flex__item.ja5_snowmarch {
  background: #a9e8ff;
}
.special_flex__item.ja5_snowmarch h4 {
  color: #000;
}
.special_flex__item.ja5_snowmarch h3 {
  color: #003d65;
}
.special_flex__item.ja5_snowmarch h3 span {
  background: #00abeb;
}
.special_flex__item.ja5_snowmarch .lineup_mini_title {
  color: #003d65;
}
.special_flex__item.ja5_snowmarch .ja5_potato-detail {
  background-color: #76daff;
}
.special_flex__item.ja5_hikaru {
  background: #ffe2d7;
}
.special_flex__item.ja5_hikaru h3 {
  color: #cf0613;
}
.special_flex__item.ja5_hikaru h3 span {
  background: #cf0613;
}
.special_flex__item.ja5_hikaru h4 {
  color: #5b0201;
}
.special_flex__item.ja5_hikaru .ja5_chart {
  background-color: #ff9386;
}
.special_flex__item.ja5_hikaru .ja5_taste__sizzle {
  width: 47%;
  bottom: -6px;
  right: 1%;
}
.special_flex__item.ja5_hikaru .lineup_mini_title {
  color: #5b0201;
}
.special_flex__item.ja5_hikaru .ja5_potato-detail {
  background-color: #ffbda4;
}
.special_flex__item.ja5_kitakamui {
  background: #c7e7ff;
}
.special_flex__item.ja5_kitakamui h3 {
  color: #111956;
}
.special_flex__item.ja5_kitakamui h3 span {
  background: #4042b1;
}
.special_flex__item.ja5_kitakamui h4 {
  color: #1c1156;
}
.special_flex__item.ja5_kitakamui .lineup_mini_title {
  color: #1c1156;
}
.special_flex__item.ja5_kitakamui .ja5_potato-detail {
  background-color: #94d1ff;
}
.special_flex__item.ja5_kitakamui .ja5_taste__sizzle {
  width: 37%;
  bottom: -6px;
  right: 1%;
}
@media (max-width: 767px) {
  .special_flex__item.ja5_kitakamui {
    margin-top: 0;
  }
}
.special_flex__item.ja5_sassy {
  background: #fff78c;
}
.special_flex__item.ja5_sassy h3 {
  color: #a08112;
}
.special_flex__item.ja5_sassy h3 span {
  background: #daa700;
}
.special_flex__item.ja5_sassy h4 {
  color: #350000;
}
.special_flex__item.ja5_sassy .ja5_chart {
  background-color: #ffde74;
}
.special_flex__item.ja5_sassy .lineup_mini_title {
  color: #350000;
}
.special_flex__item.ja5_sassy .ja5_potato-detail {
  background-color: #ffd241;
}
.special_flex__item.ja5_sassy .ja5_taste__sizzle {
  width: 47%;
  bottom: -6px;
  right: 1%;
}
.special_flex__item.ja5_matilde {
  background: #d6f5cb;
}
.special_flex__item.ja5_matilde h3 {
  color: #518b27;
}
.special_flex__item.ja5_matilde h3 span {
  background: #3a8532;
}
.special_flex__item.ja5_matilde h4 {
  color: #043619;
}
.special_flex__item.ja5_matilde .lineup_mini_title {
  color: #043619;
}
.special_flex__item.ja5_matilde .ja5_potato-detail {
  background-color: #b4eda0;
}
.special_flex__item.ja5_matilde .ja5_taste__sizzle {
  width: 40%;
  bottom: -6px;
  right: 1%;
}
.special_flex__item .lineup_mini_title {
  font-size: 2rem !important;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 12px;
}
.special_flex__item .lineup_mini_title span {
  font-size: 1.6rem;
  padding: 0px 10px 0 0;
  border-radius: 20px;
  margin: 0px 0;
  display: inline-block;
}
@media (max-width: 1440px) {
  .special_flex__item .lineup_mini_title {
    font-size: 1.8rem !important;
  }
}
.special_flex__item .lineup_mini_title.sp_ttl {
  display: none;
}
@media (max-width: 767px) {
  .special_flex__item .lineup_mini_title {
    display: none;
  }
  .special_flex__item .lineup_mini_title.sp_ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .special_flex__item .lineup_mini_title.sp_ttl .lineup_mini_title_inner {
    font-size: 1.6rem !important;
    padding: 0;
  }
  .special_flex__item .lineup_mini_title.sp_ttl .lineup_mini_title_inner span {
    font-size: 1.4rem;
  }
  .special_flex__item .lineup_mini_title.sp_ttl img {
    max-width: 20%;
    max-height: initial;
    margin-right: 10px;
  }
}

.ja5_chart, .ja5_taste {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 70%;
  padding: 20px;
  background: #dfebf6;
  margin: auto -20px -20px;
  margin: 0;
}
.ja5_chart img, .ja5_taste img {
  width: 100%;
}
.ja5_chart h4, .ja5_taste h4 {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .ja5_chart h4, .ja5_taste h4 {
    font-size: 1.4rem;
    margin: 0px 0 10px;
  }
  .ja5_chart img, .ja5_taste img {
    width: 100%;
  }
}
.ja5_chart.ja5_nomal, .ja5_taste.ja5_nomal {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 190px;
  padding: 10px 20px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ja5_chart.ja5_nomal h4, .ja5_taste.ja5_nomal h4 {
  width: 100%;
  text-align: center;
  color: #004f94;
  margin-bottom: 10px;
}
.ja5_chart.ja5_nomal img, .ja5_taste.ja5_nomal img {
  width: 43%;
  padding: 0 10px;
}
.ja5_chart.ja5_nomal img.pkg, .ja5_taste.ja5_nomal img.pkg {
  width: 130px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .ja5_chart.ja5_nomal, .ja5_taste.ja5_nomal {
    width: 100%;
    margin: 0 auto;
  }
}

.ja5_taste {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  padding: 0 20px 0 0;
}
@media (max-width: 767px) {
  .ja5_taste {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ja5_taste h4 {
  font-size: 2rem;
  letter-spacing: 0.1em;
}
.ja5_taste h4 span {
  background: transparent !important;
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .ja5_taste h4 {
    font-size: 1.6rem;
    text-align: center;
  }
  .ja5_taste h4 span {
    font-size: 2rem;
  }
}
.ja5_taste__sizzle {
  position: absolute;
  width: 30%;
  bottom: -10px;
  right: 7%;
}
.ja5_taste__txt {
  line-height: 1.8;
  font-size: 1.7rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .ja5_taste__txt {
    margin-top: 0px;
    font-size: 1.4rem;
  }
}

.ja5_package {
  position: relative;
  width: 40%;
  margin: 20px 10px 20px 0;
}
@media (max-width: 767px) {
  .ja5_package {
    width: 70%;
    margin: 0;
  }
}
.ja5_package img {
  width: 100%;
  display: block;
}
@media (max-width: 767px) {
  .ja5_package img {
    margin: 0px auto;
  }
}

.special_mini_title {
  font-size: 1.8rem;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .special_mini_title {
    margin-bottom: 15px;
  }
}
.special_mini_title img {
  display: block;
}
@media (max-width: 767px) {
  .special_mini_title img {
    width: auto;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.special_mini_title.is-left {
  width: 110px;
}
@media (max-width: 767px) {
  .special_mini_title.is-left {
    width: 100%;
    height: 18px;
  }
}
.special_mini_title.is-right {
  width: 160px;
}
@media (max-width: 767px) {
  .special_mini_title.is-right {
    width: 100%;
    height: 18px;
  }
}

.special_flame {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .special_flame {
    margin-bottom: 10px;
  }
}
.special_flame img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .special_flame img {
    margin-bottom: 15px;
  }
}
.special_flame small {
  font-size: 1.8rem;
  line-height: 1.8;
  font-weight: 600;
}
@media (max-width: 767px) {
  .special_flame small {
    font-size: 1.4rem;
  }
}

.special_box {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.special_text {
  font-size: 1.6rem;
  line-height: 2;
  margin: 20px auto 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .special_text {
    font-size: 1.2rem;
    padding-right: 4%;
    padding-left: 4%;
    text-align: justify;
  }
}

.special_btn p {
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  width: 500px;
  margin: 0 auto;
}
.special_btn p::before, .special_btn p::after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  border-left: solid 1px #000;
  position: absolute;
  top: -10px;
}
.special_btn p::before {
  left: -20px;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}
.special_btn p::after {
  right: -20px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
}
.special_btn .lineup_btn_flex {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .special_btn {
    margin: 40px auto 0;
  }
  .special_btn p {
    font-size: 1.6rem;
    width: 65%;
  }
  .special_btn p::before {
    left: -20px;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .special_btn p::after {
    right: -20px;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
}

.spacial_pkg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 80%;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  .spacial_pkg {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .spacial_pkg > div {
    width: 33.3%;
  }
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.color_wh {
  color: #fff;
}

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

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

br.pc_only {
  display: inline-block;
}
@media (max-width: 767px) {
  br.pc_only {
    display: none;
  }
}
br.sp_only {
  display: none;
}
@media (max-width: 767px) {
  br.sp_only {
    display: inline-block;
  }
}

.movie_text.pc_only {
  display: inline-block;
}
@media (max-width: 767px) {
  .movie_text.pc_only {
    display: none;
  }
}
.movie_text.sp_only {
  display: none;
}
@media (max-width: 767px) {
  .movie_text.sp_only {
    display: inline-block;
  }
}
/*# sourceMappingURL=style_2508.css.map */