@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 62.5%;
}

@media screen and (max-width: 991px) {
  html {
    font-size: 72.5%;
  }
}

@media (max-width: 500px) {
  html {
    font-size: calc(100vw / 39);
    /*ビューポートが375pxならフォントサイズは10px*/
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333333;
  width: 100%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

body.is_hidden {
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

@keyframes pageShow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 16px;
  }
}

.inner_s {
  width: 100%;
  max-width: 1045px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 16px;
  }
}

.inner_l {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .inner_l {
    padding: 0 16px;
  }
}

/*------------------------------------
clearfix
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
画像クラス
------------------------------------*/
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

/* header
-------------------------------------------*/
@media screen and (min-width: 992px) {
  .header {
    position: relative;
    width: 100%;
    z-index: 100;
    background: #fff;
    padding-bottom: 20px;
  }
  .header #sp_menu_block {
    display: none;
  }
  .header-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    border-top: 10px solid #e72e35;
  }
  .header-inner {
    max-width: 1440px;
    min-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-logo {
    display: flex;
    align-items: center;
    width: 20%;
    max-width: 218px;
    height: 100%;
  }
  .header-logo img {
    max-width: 170px;
  }
  .header-main {
    width: 80%;
  }
  .header-submenu {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .header-submenu ul {
    display: flex;
    padding-top: 10px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1150px) and (min-width: 992px) {
  .header-submenu ul {
    padding-right: 20px;
  }
}

@media screen and (min-width: 992px) {
  .header-submenu ul li a {
    font-size: 1.4rem;
    color: #888888;
  }
}

@media screen and (min-width: 992px) and (max-width: 1150px) and (min-width: 992px) {
  .header-submenu ul li a {
    font-size: 1.2173913043478262vw;
  }
}

@media screen and (min-width: 992px) {
  .header-submenu ul li a.--blank {
    position: relative;
    padding-right: 15px;
  }
  .header-submenu ul li a.--blank::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background: url(../img/common/icon_blank.svg) left center no-repeat;
    background-size: contain;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .header-submenu ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-submenu ul li a:hover {
    color: #e72e35;
  }
}

@media screen and (min-width: 992px) {
  .header-submenu ul li + li {
    margin-left: 30px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1150px) and (min-width: 992px) {
  .header-submenu ul li + li {
    margin-left: 20px;
  }
}

@media screen and (min-width: 992px) {
  .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    position: relative;
    width: 100%;
    padding-top: 25px;
  }
  .header-contact {
    background: #e72e35;
    height: 50px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    box-shadow: 0 5px 0 0 #b7161f;
    border-left: 1px solid #e72e35;
    border-right: 1px solid #e72e35;
  }
  .header-contact > span {
    display: block;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    line-height: 1;
    padding-bottom: 0.5em;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-left: 25px;
  }
  .header-contact > span::before {
    content: "";
    position: absolute;
    top: -0.5em;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../img/common/icon_mail_w.svg) left center no-repeat;
    background-size: contain;
    width: 16px;
    height: 12px;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .header-contact {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-contact > span,
  .header-contact > span::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-contact:hover {
    background: #fff;
  }
  .header-contact:hover > span {
    color: #e72e35;
  }
  .header-contact:hover > span::before {
    background-image: url(../img/common/icon_mail.svg);
  }
}

@media screen and (min-width: 992px) {
  .header .gnav {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header .gnav > ul {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .header .gnav > ul > li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .header .gnav > ul > li + li {
    margin-left: 40px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1150px) and (min-width: 992px) {
  .header .gnav > ul > li + li {
    margin-left: 25px;
  }
}

@media screen and (min-width: 992px) {
  .header .gnav > ul > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #05693c;
    width: calc(100% - 40px);
    margin: auto;
    height: 3px;
    opacity: 0;
  }
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    line-height: 1;
    position: relative;
    cursor: pointer;
    padding: 20px 0;
    display: block;
  }
  .header .gnav > ul > li > a > span,
  .header .gnav > ul > li > div:nth-child(1) > span {
    display: block;
    text-align: center;
  }
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    line-height: 1;
  }
}

@media screen and (min-width: 992px) and (max-width: 1150px) and (min-width: 992px) {
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.391304347826087vw;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav > ul > li > a:hover,
  .header .gnav > ul > li > div:nth-child(1):hover {
    color: #e72e35;
  }
}

@media screen and (min-width: 992px) {
  .header .gnav-mega {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
  }
  .header .gnav-mega > a,
  .header .gnav-mega > div:first-child {
    padding-right: 25px !important;
    position: relative;
  }
  .header .gnav-mega > a::before,
  .header .gnav-mega > div:first-child::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #e72e35;
    border-radius: 50%;
    width: 18px;
    height: 18px;
  }
  .header .gnav-mega > a::after,
  .header .gnav-mega > div:first-child::after {
    content: "";
    position: absolute;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    right: 6px;
    top: -2px;
    bottom: 0;
    margin: auto;
    height: 6px;
    width: 6px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .header .gnav-mega:hover .gnav-sub {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  .header .gnav-sub {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 190px;
  }
  .header .gnav-sub ul {
    background: #fff;
    border: 1px solid #E72E35;
    padding: 5px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  }
  .header .gnav-sub ul li {
    position: relative;
  }
  .header .gnav-sub ul li + li {
    background-image: linear-gradient(to right, #D3D3D3 2px, transparent 2px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: left top;
  }
  .header .gnav-sub ul li a {
    padding: 15px 0;
    position: relative;
    display: block;
    width: 100%;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-sub ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid #e72e35;
    border-right: 2px solid #e72e35;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .header .gnav-sub ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-sub ul li a:hover {
    color: #e72e35;
  }
}

@media screen and (max-width: 991px) {
  .header {
    background: #fff;
    height: 70px;
    width: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    background: #fff;
  }
  .header-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 5px;
    background: #e72e35;
  }
  .header-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
  }
  .header-logo {
    height: 32px;
  }
  .header-logo > img {
    height: 32px;
  }
  .header-shopsearch {
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 50px;
  }
  .header-shopsearch a {
    display: block;
    border: 2px solid #E72E35;
    padding: 2px 6px 3px;
  }
  .header-hum {
    position: absolute;
    right: 0;
    top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 65px;
    height: 65px;
    padding-top: 2px;
    z-index: 9999;
  }
  .header-hum > img {
    width: 30px;
    margin-top: 8px;
  }
  .header-hum.is_active img {
    opacity: 0;
  }
  .header #sp_menu_btn {
    width: 30px;
    height: 18px;
    display: block;
    z-index: 101;
    cursor: pointer;
    position: relative;
  }
  .header #sp_menu_btn span {
    width: 30px;
    height: 2px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #E72E35;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header #sp_menu_btn span:nth-of-type(1) {
    top: 0;
  }
  .header #sp_menu_btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .header #sp_menu_btn span:nth-of-type(3) {
    bottom: 0;
  }
  .header .is_active #sp_menu_btn span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .header .is_active #sp_menu_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .header .is_active #sp_menu_btn span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  .header #sp_menu_block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: -1;
    background: #fff;
    padding: 70px 5% 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header #sp_menu_block.is_active {
    opacity: 1;
    pointer-events: all;
  }
  .header .sp-menu > ul > li:not(:last-child) {
    background-image: linear-gradient(to right, #D3D3D3 1px, transparent 1px);
    background-size: 5px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
  .header .sp-menu > ul > li > a, .header .sp-menu > ul > li > div.js_ac {
    font-size: 1.5rem;
    padding: 28px 0;
    display: block;
    line-height: 1;
  }
  .header .sp-menu > ul > li > div.js_ac {
    position: relative;
  }
  .header .sp-menu > ul > li > div.js_ac::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background: url(../img/common/icon_arrow_b.svg) left center no-repeat;
    background-size: contain;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .sp-menu > ul > li > div.js_ac.is_open::after {
    transform: rotate(-180deg);
  }
  .header .sp-menu-sub ul {
    padding-bottom: 25px;
    padding-left: 5px;
  }
  .header .sp-menu-sub ul li a {
    padding: 10px 0;
    display: block;
    position: relative;
    padding-left: 12px;
  }
  .header .sp-menu-sub ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 6px;
    height: 2px;
    background: #e72e35;
  }
  .header .sp-submenu {
    margin-top: 10px;
  }
  .header .sp-submenu ul {
    display: flex;
    justify-content: center;
  }
  .header .sp-submenu ul + ul {
    margin-top: 15px;
  }
  .header .sp-submenu ul li + li {
    margin-left: 15px;
  }
  .header .sp-submenu ul li a {
    font-size: 1.2rem;
    color: #888888;
    line-height: 1;
    display: block;
  }
  .header .sp-submenu ul li a.--blank {
    position: relative;
    padding-right: 15px;
  }
  .header .sp-submenu ul li a.--blank::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background: url(../img/common/icon_blank.svg) left center no-repeat;
    background-size: contain;
  }
  .header .btn-arrow {
    margin-top: 40px;
    width: 100%;
    background: #e72e35;
    box-shadow: 0 3px 0 0 #b7161f;
    border: 1px solid #b7161f;
    color: #fff;
    font-size: 1.6rem;
  }
  .header .btn-arrow::after {
    border-color: #fff;
  }
  .header .btn-arrow > span {
    position: relative;
    padding-left: 25px;
  }
  .header .btn-arrow > span::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../img/common/icon_mail_w.svg) left center no-repeat;
    background-size: contain;
    width: 18px;
    height: 100%;
  }
}

/* ページ下部ナビ
-------------------------------------------*/
.contentsNav {
  background: #fafafa;
  padding: 100px 0 120px;
}

@media screen and (max-width: 991px) {
  .contentsNav {
    padding: 50px 0;
  }
}

.contentsNav.--convenience {
  padding-bottom: 0;
  background: #fff;
}

.contentsNav .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .contentsNav .ttl {
    margin-bottom: 35px;
  }
}

.contentsNav .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contentsNav .flex .item .image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.contentsNav .flex .item .image > div {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 90%;
  height: 70px;
}

@media screen and (max-width: 991px) {
  .contentsNav .flex .item .image > div {
    height: 50px;
  }
}

.contentsNav .flex .item .image > div > span {
  display: flex;
  align-items: center;
  position: relative;
  border-top-left-radius: 8px;
  color: #e72e35;
  font-size: 2.3rem;
  font-weight: 700;
  background: #fff;
  width: 100%;
  height: 100%;
  padding-left: 30px;
}

@media screen and (max-width: 991px) {
  .contentsNav .flex .item .image > div > span {
    font-size: 1.5rem;
  }
}

.contentsNav .flex .item .image > div > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.contentsNav .flex .item .txt {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .contentsNav .flex .item .txt {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}

@media screen and (min-width: 992px) {
  .contentsNav .flex .item .image img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .contentsNav .flex .item:hover .image img {
    transform: scale(1.1, 1.1);
  }
}

@media screen and (min-width: 992px) {
  .contentsNav .flex.--col2 .item {
    width: 47%;
  }
}

@media screen and (max-width: 991px) {
  .contentsNav .flex.--col2 .item {
    width: 100%;
  }
  .contentsNav .flex.--col2 .item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.contentsNav .flex.--col3 .item .image > div {
  height: 52px;
}

.contentsNav .flex.--col3 .item .image > div > span {
  font-size: 1.5rem;
}

@media screen and (min-width: 992px) {
  .contentsNav .flex.--col3 .item {
    width: 32%;
  }
}

@media screen and (max-width: 991px) {
  .contentsNav .flex.--col3 .item {
    width: 100%;
  }
  .contentsNav .flex.--col3 .item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.footNav {
  height: 500px;
}

@media screen and (max-width: 991px) {
  .footNav {
    min-height: 355px;
    height: auto;
  }
}

.footNav .flex {
  display: flex;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .footNav .flex {
    flex-direction: column;
  }
}

.footNav .flex .item {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px 0;
}

@media screen and (max-width: 991px) {
  .footNav .flex .item {
    width: 100%;
    padding: 50px 0;
  }
}

.footNav .flex .item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}

.footNav .flex .item.--corporate {
  background-image: url(../img/common/bg_corporate.jpg);
}

.footNav .flex .item.--environment {
  background-image: url(../img/common/bg_environment.jpg);
}

.footNav .flex .item.--store_flyer {
  background-image: url(../img/common/bg_flyer.jpg);
}

.footNav .flex .item.--food_store {
  background-image: url(../img/common/bg_food_store.jpg);
}

.footNav .flex .item.--discount_store {
  background-image: url(../img/common/bg_discount_store.jpg);
}

.footNav .flex .item dl {
  position: relative;
  z-index: 2;
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .footNav .flex .item dl {
    width: 90%;
  }
}

.footNav .flex .item dl dt {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .footNav .flex .item dl dt {
    margin-bottom: 30px;
  }
}

.footNav .flex .item dl dt .t1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .footNav .flex .item dl dt .t1 {
    font-size: 2rem;
  }
}

.footNav .flex .item dl dt .t2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .footNav .flex .item dl dt .t2 {
    font-size: 1.2rem;
  }
}

.footNav .flex .item dl dd p {
  color: #fff;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .footNav .flex .item dl dd p {
    font-size: 1.3rem;
    margin: auto;
    letter-spacing: -0.01em;
  }
}

.footNav-btn {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .footNav-btn {
    margin-top: 30px;
  }
  .footNav-btn .btn-arrow {
    width: 100%;
  }
}

/* footer
-------------------------------------------*/
.footer-top {
  padding: 100px 0 65px;
}

@media screen and (max-width: 991px) {
  .footer-top {
    padding: 65px 0 45px;
  }
}

.footer-main {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .footer-main {
    flex-direction: column;
  }
}

.footer-inner {
  position: relative;
  max-width: 1240px;
  min-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .footer-inner {
    width: 100%;
    display: block;
    padding: 0;
    min-width: 100%;
    padding: 0 16px;
  }
}

.footer-logo {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    margin-bottom: 20px;
  }
}

.footer-logo > a > img {
  display: block;
  max-width: 187px;
  width: 100%;
}

.footer-nav {
  display: flex;
  width: 60%;
}

@media screen and (max-width: 1100px) and (min-width: 992px) {
  .footer-nav {
    width: 70%;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav .flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .footer-nav .flex .item {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .footer-nav-main {
    margin-right: 80px;
  }
}

.footer-nav-main > li > a,
.footer-nav-main > li > div {
  position: relative;
  display: block;
  font-size: 1.5rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 991px) {
  .footer-nav-main > li > a,
  .footer-nav-main > li > div {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}

.footer-nav-main > li > a > span,
.footer-nav-main > li > div > span {
  font-weight: 700;
  display: block;
  line-height: 1.5;
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
  .footer-nav-main > li > a > span,
  .footer-nav-main > li > div > span {
    font-size: 1.333vw;
  }
}

.footer-nav-main > li:not(:last-child) {
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .footer-nav-main > li:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 992px) {
  .footer-nav-main > li > a:hover {
    color: #e72e35;
  }
}

.footer-nav-sub {
  padding-top: 20px;
}

.footer-nav-sub > li > a {
  position: relative;
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
  padding-left: 12px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.footer-nav-sub > li > a::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  width: 6px;
  height: 2px;
  background: #e72e35;
}

@media screen and (max-width: 991px) {
  .footer-nav-sub > li > a {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .footer-nav-sub > li > a:hover {
    color: #e72e35;
  }
}

.footer-nav-sub > li:not(:last-child) {
  margin-bottom: 12px;
}

.footer-nav-last > li > a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

@media screen and (min-width: 992px) {
  .footer-nav-last > li > a:hover {
    opacity: 0.6;
  }
}

.footer-nav-last > li > a.ico-list > span {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.footer-nav-last > li > a.ico-list > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/common/icon_list.svg) left bottom no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}

.footer-nav-last > li:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .footer-nav-last > li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.footer-submenu {
  width: 60%;
  margin-top: 30px;
  margin-left: auto;
  display: flex;
}

@media screen and (max-width: 1100px) and (min-width: 992px) {
  .footer-submenu {
    width: 75%;
  }
}

@media screen and (max-width: 991px) {
  .footer-submenu {
    width: 100%;
    flex-direction: column;
  }
}

.footer-submenu ul {
  display: flex;
}

.footer-submenu ul + ul {
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .footer-submenu ul + ul {
    margin: 5px 0 0 0;
  }
}

@media screen and (max-width: 1100px) and (min-width: 992px) {
  .footer-submenu ul {
    justify-content: flex-end;
  }
}

.footer-submenu ul li a {
  font-size: 1.2rem;
  color: #888888;
}

@media screen and (max-width: 991px) {
  .footer-submenu ul li a {
    letter-spacing: 0.01em;
  }
}

.footer-submenu ul li a.--blank {
  position: relative;
  padding-right: 15px;
}

.footer-submenu ul li a.--blank::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  background: url(../img/common/icon_blank.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .footer-submenu ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .footer-submenu ul li a:hover {
    color: #e72e35;
  }
}

.footer-submenu ul li + li {
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .footer-submenu ul li + li {
    margin-left: 20px;
  }
}

.footer-address {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .footer-sns {
    margin-bottom: 60px;
  }
}

.footer-sns dl dt {
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .footer-sns dl dt {
    margin-bottom: 10px;
  }
}

.footer-sns dl dd ul {
  display: flex;
  align-items: center;
}

.footer-sns dl dd ul li {
  display: flex;
  align-items: center;
}

.footer-sns dl dd ul li + li {
  margin-left: 25px;
}

.footer-sns dl dd ul li a {
  display: flex;
  align-items: center;
}

.footer-copyright {
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .footer-copyright {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}

.footer-bottom {
  background: #e72e35;
  height: 90px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .footer-bottom {
    height: auto;
    padding: 15px 0;
  }
}

.footer-bottom .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .footer-bottom .flex {
    flex-direction: column;
  }
}

.footer-bottom .flex ul {
  display: flex;
}

@media screen and (max-width: 991px) {
  .footer-bottom .flex ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer-bottom .flex ul li a {
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .footer-bottom .flex ul li a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 991px) {
  .footer-bottom .flex ul li a {
    font-size: 1.1rem;
  }
}

.footer-bottom .flex ul li + li {
  margin-left: 25px;
}

@media screen and (max-width: 991px) {
  .footer-bottom .flex ul li + li {
    margin-left: 15px;
  }
}

.pagetop {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: opacity 1s;
  opacity: 0;
  cursor: pointer;
  z-index: 99;
}

@media screen and (max-width: 991px) {
  .pagetop {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
}

.pagetop.is_active {
  opacity: 1;
}

.pagetop img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .main {
    padding-top: 70px;
  }
}

.main.--hidden {
  overflow: hidden;
}

/* グループサイト
-------------------------------------------*/
.groupSites {
  padding: 120px 0;
  background: #f7f7f7;
}

@media screen and (max-width: 991px) {
  .groupSites {
    padding: 60px 0;
  }
}

.groupSites-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .groupSites-ttl {
    margin-bottom: 40px;
  }
}

.groupSites-ttl img {
  width: 320px;
}

@media screen and (max-width: 991px) {
  .groupSites-ttl img {
    width: 220px;
  }
}

.groupSites-ttl .t1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin: 10px 0 0;
}

@media screen and (max-width: 991px) {
  .groupSites-ttl .t1 {
    font-size: 2.1rem;
  }
}

.groupSites-ttl .t2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #e72e35;
}

@media screen and (max-width: 991px) {
  .groupSites-ttl .t2 {
    font-size: 1.4rem;
  }
}

.groupSites-list {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .groupSites-list {
    justify-content: space-between;
  }
}

@media screen and (min-width: 992px) {
  .groupSites-list .item {
    width: 24%;
    margin-right: 1.333333333333333%;
  }
  .groupSites-list .item:nth-child(4n) {
    margin-right: 0;
  }
  .groupSites-list .item:nth-child(n + 5) {
    margin-top: 40px;
  }
  .groupSites-list .item dl dt,
  .groupSites-list .item .image > img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .groupSites-list .item:hover .image > img {
    transform: scale(1.1, 1.1);
  }
  .groupSites-list .item:hover dl dt {
    color: #e72e35;
  }
}

@media screen and (max-width: 991px) {
  .groupSites-list .item {
    width: 48%;
  }
  .groupSites-list .item:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.groupSites-list .item .image {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.groupSites-list .item .image img {
  width: 100%;
}

.groupSites-list .item dl {
  padding-top: 5px;
}

@media screen and (max-width: 991px) {
  .groupSites-list .item dl {
    padding-top: 8px;
  }
}

.groupSites-list .item dl dt {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .groupSites-list .item dl dt {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}

.groupSites-list .item dl dd ul {
  display: flex;
  flex-wrap: wrap;
}

.groupSites-list .item dl dd ul li {
  color: #888888;
  font-size: 1.2rem;
  position: relative;
  padding-left: 1em;
  margin-right: 8px;
}

.groupSites-list .item dl dd ul li::before {
  content: "#";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #e72e35;
}

/* 背景
-------------------------------------------*/
.bg-circle {
  width: 550px;
  height: 550px;
  background: url(../img/common/bg_circle02.svg) center center no-repeat;
  background-size: 100%;
  position: absolute;
}

.bg-circle-left {
  width: 115px;
  height: 394px;
  background: url(../img/common/bg_circle_left.svg) center center no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
}

@media screen and (max-width: 991px) {
  .bg-circle-left {
    display: none;
  }
}

.bg-circle-left.--store01 {
  top: 17%;
}

.bg-circle-left.--store02 {
  top: 30%;
}

.bg-circle-left.--store03 {
  top: 53%;
}

.bg-circle-left.--store04 {
  top: 80%;
}

.bg-circle-right {
  width: 114px;
  height: 427px;
  background: url(../img/common/bg_circle_right.svg) center center no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0;
}

@media screen and (max-width: 991px) {
  .bg-circle-right {
    display: none;
  }
}

.bg-circle-right.--store05 {
  top: 21%;
}

.bg-circle-right.--store06 {
  top: 45%;
}

.bg-circle-right.--store07 {
  top: 66%;
}

/* TOP
-------------------------------------------*/
.topMv {
  position: relative;
  padding-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .topMv {
    padding-bottom: 15px;
  }
}

.topMv-slide {
  position: relative;
}

.topMv-slide #js_mvslider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.topMv-slide #js_mvslider.slick-initialized {
  opacity: 1;
}

.topMv-slide #js_mvslider .slick-list li {
  padding: 0 12px;
}

@media screen and (max-width: 991px) {
  .topMv-slide #js_mvslider .slick-list li {
    padding: 0 4.5vw;
  }
}

.topMv-slide #js_mvslider .slick-list li img {
  max-width: 1100px;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1400px) {
  .topMv-slide #js_mvslider .slick-list li img {
    max-width: 100%;
  }
}

.topMv .slide-arrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  pointer-events: none;
}

.topMv .slide-arrow .slick-next,
.topMv .slide-arrow .slick-prev {
  color: transparent;
  outline: none;
  border: none;
  width: 122px;
  height: 122px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  pointer-events: all;
  margin-top: -80px;
}

@media screen and (max-width: 991px) {
  .topMv .slide-arrow .slick-next,
  .topMv .slide-arrow .slick-prev {
    width: 64px;
    height: 64px;
    margin-top: -50px;
  }
}

.topMv .slide-arrow .slick-prev {
  margin-left: -50px;
}

@media screen and (max-width: 991px) {
  .topMv .slide-arrow .slick-prev {
    margin-left: -30px;
  }
}

.topMv .slide-arrow .slick-prev::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  transform: rotate(-135deg);
}

@media screen and (max-width: 991px) {
  .topMv .slide-arrow .slick-prev::after {
    right: 10px;
    width: 10px;
    height: 10px;
  }
}

.topMv .slide-arrow .slick-next {
  margin-right: -50px;
}

@media screen and (max-width: 991px) {
  .topMv .slide-arrow .slick-next {
    margin-right: -30px;
  }
}

.topMv .slide-arrow .slick-next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 25px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .topMv .slide-arrow .slick-next::after {
    left: 10px;
    width: 10px;
    height: 10px;
  }
}

.topMv .slick-dots {
  height: 80px;
  padding: 0;
  align-items: center;
  display: flex !important;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .topMv .slick-dots {
    height: 50px;
  }
}

.topMv .slick-dots li {
  padding: 0;
}

.topMv .slick-dots li + li {
  margin-left: 16px;
}

@media screen and (max-width: 991px) {
  .topMv .slick-dots li + li {
    margin-left: 8px;
  }
}

.topMv .slick-dots li button {
  padding: 0;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dedede;
  color: transparent;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .topMv .slick-dots li button {
    width: 6px;
    height: 6px;
  }
}

.topMv .slick-dots li.slick-active button {
  background-color: #888888;
}

.topMv .bg-circle {
  left: -190px;
  bottom: -45px;
  background-image: url(../img/common/bg_circle01.svg);
}

@media screen and (max-width: 991px) {
  .topMv .bg-circle {
    display: none;
  }
}

.topTopics {
  position: relative;
  padding-top: 110px;
  padding-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .topTopics {
    padding-top: 80px;
    padding-bottom: 65px;
  }
}

.topTopics::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  margin: auto;
  background: #e72e35;
  width: 100%;
  height: calc(100% - 500px);
}

@media screen and (max-width: 991px) {
  .topTopics::before {
    height: calc(100% - 290px);
  }
}

.topTopics.--no_animation::before {
  height: calc(100% - 370px);
}

@media screen and (max-width: 991px) {
  .topTopics.--no_animation::before {
    height: calc(100% - 215px);
  }
}

@media screen and (max-width: 991px) {
  .topTopics .ttl .t1 {
    font-size: 2.1rem;
  }
  .topTopics .ttl .t2 {
    font-size: 1.4rem;
  }
}

.topTopics .wave-top {
  position: absolute;
  top: 290px;
  width: 100%;
  height: 0;
  background: url(../img/common/wave_top.png) center center no-repeat;
  background-size: 100%;
  padding-top: 4.42857142857143%;
}

@media screen and (max-width: 991px) {
  .topTopics .wave-top {
    top: 200px;
    background-image: url(../img/common/wave_top_sp.png);
    padding-top: 4.1025641025641%;
  }
}

.topTopics .wave {
  position: absolute;
  top: 300px;
  width: 100%;
  height: 200px;
  /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
  background: #fff;
  /*背景を塗りつぶして重ねた波を表現したい場合は、波を描画する親要素に波と同じ背景色を設定しましょう。*/
}

@media screen and (max-width: 991px) {
  .topTopics .wave {
    top: 190px;
    height: 100px;
  }
}

.topTopics .wave.--static {
  height: 67px;
  transform: scale(1, -1);
  top: 370px;
  background: #e72e35;
}

@media screen and (max-width: 991px) {
  .topTopics .wave.--static {
    height: 20px;
    top: 218px;
  }
}

.topTopics .wave.--static::before, .topTopics .wave.--static::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.topTopics .wave.--static::before {
  width: 55%;
  height: 100%;
  background-color: #e72e35;
  right: -1.5%;
  top: 40%;
  z-index: 2;
}

.topTopics .wave.--static::after {
  width: 55%;
  height: 109%;
  background-color: #fff;
  left: -1.5%;
  top: 60%;
}

.topTopics canvas {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .topTopics canvas {
    height: 100px;
  }
}

.topTopics .inner {
  position: relative;
  z-index: 2;
}

.topTopics-ttl {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.topTopics-ttl b {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #e72e35;
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  .topTopics-ttl b {
    padding-left: 35px;
    line-height: 1.4;
    font-size: 2rem;
  }
}

.topTopics-ttl b::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #e72e35;
  border-radius: 50%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topTopics-ttl b::before {
    width: 18px;
    height: 18px;
  }
}

.topTopics-ttl b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e72e35;
}

@media screen and (max-width: 991px) {
  .topTopics-ttl b::after {
    width: 24px;
    height: 24px;
  }
}

.topTopics-ttl span {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  margin-left: 5px;
  color: #e72e35;
}

@media screen and (max-width: 991px) {
  .topTopics-ttl span {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.topTopics-ttl span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #e72e35;
  width: 16px;
  height: 1px;
}

@media screen and (max-width: 991px) {
  .topTopics-ttl.--w {
    flex-direction: column;
    align-items: flex-start;
  }
  .topTopics-ttl.--w span {
    margin-left: 35px;
  }
}

.topTopics-ttl.--w b {
  color: #fff;
}

.topTopics-ttl.--w b::before {
  background: #fff;
}

.topTopics-ttl.--w b::after {
  background: #e72e35;
  border-color: #fff;
}

.topTopics-ttl.--w span {
  color: #fff;
}

.topTopics-ttl.--w span::before {
  background: #fff;
}

.topTopics-item + .topTopics-item {
  margin-top: 60px;
}

.topTopics-item .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .topTopics-item .flex {
    position: relative;
  }
  .topTopics-item .flex .item {
    width: 32%;
  }
  .topTopics-item .flex .item:nth-child(n + 4) {
    margin-top: 3.5%;
  }
  .topTopics-item .flex .item:hover .image img {
    transform: scale(1.1, 1.1);
  }
  .topTopics-item .flex::after {
    content: "";
    display: block;
    width: 32%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .topTopics-item .flex .item {
    width: 49%;
  }
  .topTopics-item .flex .item:nth-child(n+3) {
    display: none;
  }
}

.topTopics-item .flex .image {
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .topTopics-item .flex .image img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.topTopics-item .flex dl {
  color: #fff;
  padding-top: 17px;
}

@media screen and (max-width: 991px) {
  .topTopics-item .flex dl {
    padding-top: 12px;
  }
}

.topTopics-item .flex dl dt {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .topTopics-item .flex dl dt {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}

.topTopics-item .flex dl dd p {
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .topTopics-item .flex dl dd p {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 991px) {
  .topTopics .bg-circle {
    display: none;
  }
}

.topTopics .bg-circle.--bg01 {
  left: -250px;
  top: 550px;
}

.topTopics .bg-circle.--bg02 {
  right: -280px;
  bottom: 80px;
}

.topStore {
  position: relative;
  padding-bottom: 180px;
}

@media screen and (max-width: 991px) {
  .topStore {
    padding-bottom: 100px;
  }
}

.topStore::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  width: 1400px;
  height: 466px;
  background: url(../img/index/bg_store.svg) center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .topStore::before {
    width: 100%;
    height: 100%;
    transform: none;
    left: 0;
    right: 0;
    bottom: -18vw;
    background-position: center bottom;
  }
}

.topStore::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #e72e35;
  width: 100%;
  height: 600px;
}

@media screen and (min-width: 1400px) {
  .topStore::after {
    height: 42vw;
  }
}

@media screen and (max-width: 991px) {
  .topStore::after {
    height: 85%;
  }
}

@media screen and (max-width: 991px) {
  .topStore .ttl .t1 {
    font-size: 2.1rem;
  }
  .topStore .ttl .t2 {
    font-size: 1.4rem;
  }
}

.topStore-wrap {
  position: relative;
  z-index: 3;
}

.topStore-map {
  width: 50%;
  margin-left: auto;
  margin-top: -85px;
  position: relative;
  margin-right: -30px;
}

@media screen and (max-width: 1450px) and (min-width: 992px) {
  .topStore-map {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 991px) {
  .topStore-map {
    margin-top: -30vw;
    width: 100%;
    margin-right: 0;
  }
}

.topStore-map img {
  width: 120%;
  max-width: inherit;
}

@media screen and (max-width: 991px) {
  .topStore-map img {
    width: 100%;
  }
}

.topStore-map .maplink {
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  font-weight: 500;
  display: table;
  padding: 0 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink {
    font-size: 1.2rem;
    height: 40px;
    line-height: 40px;
    padding: 0 16px;
  }
}

.topStore-map .maplink span {
  position: relative;
  padding-left: 28px;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink span {
    padding-left: 23px;
  }
}

.topStore-map .maplink span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_arrow_map.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .topStore-map .maplink {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .topStore-map .maplink span {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .topStore-map .maplink span::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .topStore-map .maplink:hover {
    background: #e72e35;
  }
  .topStore-map .maplink:hover span {
    color: #fff;
  }
  .topStore-map .maplink:hover span::before {
    background-image: url(../img/common/icon_arrow_map_w.svg);
  }
}

.topStore-map .maplink.--gunma {
  top: 20vw;
  left: 11vw;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink.--gunma {
    top: 41vw;
    left: 23vw;
  }
}

.topStore-map .maplink.--saitama {
  top: 32vw;
  left: 18vw;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink.--saitama {
    top: 66vw;
    left: 40vw;
  }
}

.topStore-map .maplink.--tokyo23 {
  top: 39.5vw;
  left: 14.5vw;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink.--tokyo23 {
    top: inherit;
    bottom: 41vw;
    left: 59vw;
  }
}

.topStore-map .maplink.--tokyo_outside {
  top: 44vw;
  left: 22vw;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink.--tokyo_outside {
    top: inherit;
    bottom: 41vw;
  }
}

.topStore-map .maplink.--kanagawa {
  top: 50vw;
  left: 17vw;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink.--kanagawa {
    top: inherit;
    bottom: 21vw;
    left: 29vw;
  }
}

.topStore-map .maplink.--chiba {
  top: 53vw;
  right: 5vw;
}

@media screen and (max-width: 991px) {
  .topStore-map .maplink.--chiba {
    top: inherit;
    bottom: 18vw;
    right: 3vw;
  }
}

.topStore .leadtxt {
  color: #fff;
  text-align: center;
}

.topStore-ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.topStore-ttl > div {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  .topStore-ttl > div {
    padding-left: 35px;
  }
}

.topStore-ttl > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topStore-ttl > div::before {
    width: 18px;
    height: 18px;
  }
}

.topStore-ttl > div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: #e72e35;
  border-radius: 50%;
  border: 1px solid #fff;
}

@media screen and (max-width: 991px) {
  .topStore-ttl > div::after {
    width: 24px;
    height: 24px;
  }
}

.topStore-ttl b {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .topStore-ttl b {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.topStore-ttl span {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  margin-left: 5px;
  color: #fff;
  margin-bottom: 4px;
}

@media screen and (max-width: 991px) {
  .topStore-ttl span {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

.topStore-ttl span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #fff;
  width: 16px;
  height: 1px;
}

.topStore-main {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topStore-main {
    padding-bottom: 80px;
  }
}

.topStore-main .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .topStore-main .flex .item {
    width: 50%;
  }
  .topStore-main .flex .item:nth-child(2) {
    padding-left: 30px;
  }
}

@media screen and (max-width: 991px) {
  .topStore-main .flex .item {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .topStore-main .flex .item:nth-child(2) {
    margin-top: 85px;
  }
}

.topStore-contents {
  max-width: 1220px;
  width: 100%;
  margin: auto;
  z-index: 2;
  padding: 0 50px;
  pointer-events: none;
  margin-top: 85px;
  position: relative;
}

@media screen and (min-width: 1450px) {
  .topStore-contents {
    position: absolute;
    left: 0;
    right: 0;
    top: 170px;
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .topStore-contents {
    padding: 0 16px;
    margin-top: 40px;
    position: static;
  }
}

.topStore-items {
  margin-top: 20px;
  pointer-events: all;
}

@media screen and (max-width: 991px) {
  .topStore-items {
    margin-top: 17px;
  }
}

.topStore-items a {
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  display: flex;
  border-radius: 10px;
  min-height: 180px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .topStore-items a {
    flex-direction: column;
  }
}

.topStore-items a + a {
  margin-top: 25px;
}

.topStore-items a .image {
  width: 35%;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .topStore-items a .image {
    width: 100%;
  }
}

.topStore-items a .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.topStore-items a .txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 15px 70px 15px 25px;
  width: 65%;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topStore-items a .txt {
    width: 100%;
    padding: 15px 65px 20px 20px;
  }
}

.topStore-items a .txt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 35px;
  height: 35px;
  background: url(../img/common/icon_arrow.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .topStore-items a .txt::after {
    right: 16px;
  }
}

.topStore-items a .txt dt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .topStore-items a .txt dt {
    margin-bottom: 10px;
  }
}

.topStore-items a .txt dt span {
  font-size: 1.1rem;
  padding: 5px 7px;
  border-bottom: 5px;
  line-height: 1;
  border: 1px solid #df1b26;
  color: #df1b26;
  border-radius: 5px;
}

.topStore-items a .txt dt b {
  font-size: 1.5rem;
  font-weight: 500;
  padding-top: 7px;
  line-height: 1.6;
}

.topStore-items a .txt dd ul {
  display: flex;
  flex-wrap: wrap;
}

.topStore-items a .txt dd ul li {
  color: #888888;
  font-size: 1.2rem;
  position: relative;
  padding-left: 1em;
}

.topStore-items a .txt dd ul li::before {
  content: "#";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #e72e35;
}

.topStore-items a .txt dd ul li + li {
  margin-left: 8px;
}

@media screen and (min-width: 992px) {
  .topStore-items a dt b,
  .topStore-items a .image img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .topStore-items a:hover dt b {
    color: #e72e35;
  }
  .topStore-items a:hover .image img {
    transform: scale(1.1, 1.1);
  }
}

.topStore-link {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
  margin-top: 60px;
}

.topStore-link a {
  pointer-events: all;
}

@media screen and (max-width: 991px) {
  .topStore-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}

.topStore .wave {
  position: absolute;
  height: 67px;
  width: 100%;
  background: #e72e35;
  top: 600px;
}

@media screen and (min-width: 1400px) {
  .topStore .wave {
    top: 42vw;
  }
}

@media screen and (max-width: 991px) {
  .topStore .wave {
    top: 85%;
    height: 20px;
  }
}

.topStore .wave::before,
.topStore .wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.topStore .wave::before {
  width: 55%;
  height: 100%;
  background-color: #e72e35;
  right: -1.5%;
  top: 40%;
}

.topStore .wave::after {
  width: 55%;
  height: 109%;
  background-color: #fff;
  left: -1.5%;
  top: 60%;
}

.topStore .bg-circle {
  left: -280px;
  top: -50px;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .topStore .bg-circle {
    display: none;
  }
}

.topCommitment {
  background: #f8f7f5;
  padding: 110px 0 250px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topCommitment {
    padding: 60px 0 80px;
  }
}

@media screen and (max-width: 991px) {
  .topCommitment .ttl .t1 {
    font-size: 2.1rem;
  }
  .topCommitment .ttl .t2 {
    font-size: 1.4rem;
  }
}

.topCommitment-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.8;
  margin-bottom: 60px;
}

.topCommitment-ttl .t1 {
  font-size: 2.6rem;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topCommitment-ttl .t1 {
    font-size: 2.1rem;
  }
}

.topCommitment-ttl .t2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #e72e35;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .topCommitment-ttl .t2 {
    font-size: 1.4rem;
  }
}

.topCommitment-lead {
  position: relative;
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .topCommitment-lead {
    margin-bottom: 30px;
  }
}

.topCommitment-lead::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/index/bg_commitment.svg) left center no-repeat;
  background-size: contain;
  width: 298px;
  height: 207px;
}

@media screen and (max-width: 991px) {
  .topCommitment-lead::after {
    width: 80vw;
    height: 55.570vw;
  }
}

.topCommitment-lead dl {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topCommitment-lead dl img {
    width: 80%;
  }
}

.topCommitment-lead dt {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.topCommitment-lead dd p {
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .topCommitment-lead dd p {
    font-size: 1.3rem;
  }
}

.topCommitment-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.topCommitment-item + .topCommitment-item {
  margin-top: 25px;
}

.topCommitment-item .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex {
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 992px) {
  .topCommitment-item .flex .item {
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item {
    width: 100%;
  }
}

.topCommitment-item .flex .item:nth-child(1) {
  display: flex;
  align-items: center;
  padding: 50px 65px;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) {
    padding: 30px 20px 35px;
  }
}

.topCommitment-item .flex .item:nth-child(1) dl dt {
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) dl dt {
    margin-bottom: 15px;
  }
}

.topCommitment-item .flex .item:nth-child(1) dl dt .t1 {
  position: relative;
  padding-left: 40px;
  color: #888888;
  font-size: 1.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) dl dt .t1 {
    font-size: 1.2rem;
  }
}

.topCommitment-item .flex .item:nth-child(1) dl dt .t2 {
  position: relative;
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) dl dt .t2 {
    padding-left: 35px;
    font-size: 1.8rem;
  }
}

.topCommitment-item .flex .item:nth-child(1) dl dt .t2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #e72e35;
  border-radius: 50%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) dl dt .t2::before {
    width: 18px;
    height: 18px;
  }
}

.topCommitment-item .flex .item:nth-child(1) dl dt .t2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e72e35;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) dl dt .t2::after {
    width: 24px;
    height: 24px;
  }
}

.topCommitment-item .flex .item:nth-child(1) dl dd .link-arrow {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .topCommitment-item .flex .item:nth-child(1) dl dd p {
    font-size: 1.3rem;
  }
}

.topCommitment-item .flex .item .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.topCommitment-item .image {
  height: 100%;
  position: relative;
}

.topCommitment .wave-top {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: url(../img/common/wave_top.png) center center no-repeat;
  background-size: 100%;
  padding-top: 4.42857142857143%;
}

@media screen and (max-width: 991px) {
  .topCommitment .wave-top {
    background-image: url(../img/common/wave_top_sp.png);
    padding-top: 4.1025641025641%;
  }
}

.topCommitment .wave.--static {
  height: 100px;
  transform: scale(1, -1);
}

@media screen and (max-width: 991px) {
  .topCommitment .wave.--static {
    height: 20px;
    top: 218px;
  }
}

.topCommitment .wave.--static::before, .topCommitment .wave.--static::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.topCommitment .wave.--static::before {
  width: 55%;
  height: 100%;
  background: url(../img/index/bg_movie_red.png) center center repeat;
  background-size: 70px 70px;
  right: -1.5%;
  top: 40%;
  z-index: 2;
}

.topCommitment .wave.--static::after {
  width: 55%;
  height: 109%;
  background-color: #f8f7f5;
  left: -1.5%;
  top: 60%;
}

.topCommitment canvas {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .topCommitment canvas {
    height: 100px;
  }
}

.topMovie {
  padding: 50px 0 150px;
  position: relative;
  background: url(../img/index/bg_movie_red.png) center center repeat;
  background-size: 70px 70px;
}

@media screen and (max-width: 991px) {
  .topMovie {
    padding: 20px 0 65px;
    background-size: 35px 35px;
  }
}

.topMovie .inner {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topMovie .inner {
    padding: 0;
  }
}

@media screen and (max-width: 991px) {
  .topMovie .ttl {
    padding: 0 16px;
  }
}

@media screen and (max-width: 991px) {
  .topMovie .ttl .t1 {
    font-size: 2.1rem;
  }
  .topMovie .ttl .t2 {
    font-size: 1.4rem;
  }
}

.topMovie .leadtxt {
  padding-left: 10px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .topMovie .leadtxt {
    padding: 0 16px;
  }
}

.topMovie-main {
  padding-top: 100px;
}

@media screen and (max-width: 991px) {
  .topMovie-main {
    padding-top: 65px;
  }
}

.topMovie-main .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .topMovie-main .flex .item {
    width: 42%;
  }
  .topMovie-main .flex .item:nth-child(2) {
    width: 55%;
    max-width: 604px;
  }
}

@media screen and (max-width: 991px) {
  .topMovie-main .flex .item {
    width: 100%;
  }
  .topMovie-main .flex .item:not(:last-child) {
    margin-bottom: 50px;
    padding: 0 16px;
  }
}

.topMovie-main .flex .item dl dt {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 35px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topMovie-main .flex .item dl dt {
    margin-bottom: 25px;
  }
}

.topMovie-main .flex .item dl dt span {
  position: relative;
  background: #fff;
  padding: 5px 20px 7px;
  color: #e72e35;
  line-height: 1.6;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 10px;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .topMovie-main .flex .item dl dt span {
    font-size: 2rem;
  }
}

.topMovie-main .flex .item dl dt::after {
  content: "";
  position: absolute;
  top: -59px;
  left: 154px;
  margin: auto;
  background: url(../img/index/txt_discover.svg) left center no-repeat;
  background-size: contain;
  width: 438px;
  height: 130px;
}

@media screen and (max-width: 991px) {
  .topMovie-main .flex .item dl dt::after {
    width: 230px;
    height: 68.265px;
    top: -39px;
    left: inherit;
    right: 0;
  }
}

.topMovie-main .flex .item dl dd p {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .topMovie-main .flex .item dl dd p {
    font-size: 1.3rem;
  }
}

.topMovie-main .flex .item dl dd p + p {
  margin-top: 20px;
}

.topMovie-main .flex .item dl dd .link-arrow {
  margin-top: 30px;
}

.topMovie-sub {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .topMovie-sub {
    padding: 0 16px;
    margin-top: 60px;
  }
}

.topMovie-sub dl dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  padding-left: 25px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .topMovie-sub dl dt {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.topMovie-sub dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 1px;
  background: #fff;
}

.topMovie-sub dl dd .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .topMovie-sub dl dd .flex {
    position: relative;
  }
  .topMovie-sub dl dd .flex .item {
    width: 32%;
  }
}

@media screen and (max-width: 991px) {
  .topMovie-sub dl dd .flex .item {
    width: 100%;
  }
  .topMovie-sub dl dd .flex .item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.topMovie-sub dl dd .flex .item .image {
  width: calc(100% - 15px);
}

.topMovie-sub dl dd .flex .item .txt {
  padding-left: 15px;
  margin-top: -20px;
}

@media screen and (max-width: 991px) {
  .topMovie-sub dl dd .flex .item .txt {
    padding-left: 0;
  }
}

.topMovie-sub dl dd .flex .item .txt a {
  background: #fff;
  display: block;
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  color: #e72e35;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .topMovie-sub dl dd .flex .item .txt a {
    margin-left: 15px;
  }
}

.topMovie-sub dl dd .flex .item .txt a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.topMovie-sub dl dd .flex .item .txt a > span {
  position: relative;
  padding-left: 35px;
  display: block;
}

.topMovie-sub dl dd .flex .item .txt a > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-position: left center;
  background-repeat: no-repeat;
}

.topMovie-sub dl dd .flex .item .txt a.--recipe > span::before {
  background-image: url(../img/common/icon_recipe.svg);
  width: 24px;
  height: 23px;
}

.topMovie-sub dl dd .flex .item .txt a.--howto > span::before {
  background-image: url(../img/common/icon_howto.svg);
  width: 23px;
  height: 28px;
}

.topMovie-sub dl dd .flex .item .txt a.--camp > span {
  padding-left: 45px;
}

.topMovie-sub dl dd .flex .item .txt a.--camp > span::before {
  background-image: url(../img/common/icon_camp.svg);
  width: 39px;
  height: 23px;
}

@media screen and (min-width: 992px) {
  .topMovie-sub dl dd .flex .item .txt a::after,
  .topMovie-sub dl dd .flex .item .txt a > span {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .topMovie-sub dl dd .flex .item .txt a:hover::after {
    right: 22px;
  }
  .topMovie-sub dl dd .flex .item .txt a:hover > span {
    transform: translateX(3px);
  }
}

.topMovie-sub dl dd .flex .item .txt p {
  margin-top: 15px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .topMovie-sub dl dd .flex .item .txt p {
    font-size: 1.3rem;
  }
}

.topMovie-bg {
  position: absolute;
  width: 100vw;
  right: -23vw;
  top: -26vw;
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .topMovie-bg {
    display: none;
  }
}

.topInfo {
  padding: 120px 0;
  background: #f7f7f7;
}

@media screen and (max-width: 991px) {
  .topInfo {
    padding: 70px 0 80px;
  }
}

@media screen and (max-width: 991px) {
  .topInfo .ttl .t1 {
    font-size: 2.1rem;
  }
  .topInfo .ttl .t2 {
    font-size: 1.4rem;
  }
}

.topInfo-main {
  max-width: 1010px;
  padding: 0 30px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .topInfo-main {
    padding: 0;
  }
}

.topInfo-list .item {
  padding-bottom: 20px;
  border-bottom: 1px dashed #dedede;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .topInfo-list .item {
    flex-wrap: wrap;
  }
}

.topInfo-list .item + .item {
  padding-top: 20px;
}

.topInfo-list .item .date {
  font-size: 1.4rem;
  color: #888888;
  width: 8em;
}

@media screen and (max-width: 991px) {
  .topInfo-list .item .date {
    font-size: 1.2rem;
    width: 6.5em;
  }
}

.topInfo-list .item .tag {
  width: 9em;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50px;
}

@media screen and (max-width: 991px) {
  .topInfo-list .item .tag {
    font-size: 1rem;
    padding: 5px 8px;
  }
}

.topInfo-list .item .txt {
  width: calc(100% - 17em);
  padding-left: 50px;
}

@media screen and (max-width: 991px) {
  .topInfo-list .item .txt {
    padding: 0;
    width: 100%;
    margin-top: 15px;
    font-size: 1.3rem;
  }
}

.topInfo-list .item .txt a {
  font-weight: 500;
  display: block;
  line-height: 1.6;
}

@media screen and (min-width: 992px) {
  .topInfo-list .item .txt a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .topInfo-list .item .txt a:hover {
    transform: translateX(3px);
    color: #e72e35;
  }
}

.topInfo-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.topCompany {
  padding: 200px 0 160px;
  position: relative;
  background: url(../img/index/bg_company.png) center bottom no-repeat;
  background-size: 1400px 704px;
}

@media screen and (max-width: 991px) {
  .topCompany {
    padding: 90px 0 45px;
    background-image: url(../img/index/bg_company_sp.png);
    background-size: 100% auto;
    background-position: center top 60px;
  }
}

.topCompany .ttl {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .topCompany .ttl .t1 {
    font-size: 2.1rem;
  }
  .topCompany .ttl .t2 {
    font-size: 1.4rem;
  }
}

.topCompany .leadtxt {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .topCompany .leadtxt {
    text-align: center;
    margin-bottom: 45px;
  }
}

.topCompany-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .topCompany-list {
    position: relative;
  }
  .topCompany-list .item {
    width: 31%;
  }
  .topCompany-list .item:nth-child(n + 4) {
    margin-top: 3.5%;
  }
  .topCompany-list::after {
    content: "";
    display: block;
    width: 31%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .topCompany-list .item {
    width: 100%;
  }
  .topCompany-list .item:not(:last-child) {
    margin-bottom: 35px;
  }
}

.topCompany-list .item .image {
  overflow: hidden;
  border-radius: 10px;
}

.topCompany-list .item .txt {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 5px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .topCompany-list .item .txt {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}

.topCompany-list .item .txt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  background: url(../img/common/icon_arrow.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .topCompany-list .item .txt,
  .topCompany-list .item .image > img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .topCompany-list .item:hover .image > img {
    transform: scale(1.1, 1.1);
  }
  .topCompany-list .item:hover .txt {
    color: #e72e35;
  }
}

/* ページタイトル
-------------------------------------------*/
.pageTitle {
  height: 380px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .pageTitle {
    padding: 0 16px;
    height: 146px;
  }
}

.pageTitle-wrap {
  background: #e72e35;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  width: 100%;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
  position: relative;
}

@media screen and (min-width: 992px) {
  .pageTitle-wrap {
    min-width: 960px;
  }
}

.pageTitle-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/common/bg_page_ttl.svg) right center no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 100%;
}

.pageTitle .inner {
  position: relative;
  z-index: 2;
}

.pageTitle-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .pageTitle-txt {
    margin-bottom: 0;
  }
}

.pageTitle-txt b {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  padding-left: 50px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .pageTitle-txt b {
    font-size: 1.8rem;
    padding-left: 30px;
  }
}

.pageTitle-txt b::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #e72e35;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .pageTitle-txt b::before {
    width: 16px;
    height: 16px;
    border-width: 1px;
    left: 1px;
  }
}

.pageTitle-txt b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
}

@media screen and (max-width: 991px) {
  .pageTitle-txt b::after {
    width: 18px;
    height: 18px;
  }
}

.pageTitle-txt span {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 2rem;
  padding-left: 50px;
}

@media screen and (max-width: 991px) {
  .pageTitle-txt span {
    font-size: 1.2rem;
    padding-left: 30px;
  }
}

.pageTitle p {
  color: #fff;
  padding-top: 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .pageTitle p {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--image .pageTitle-wrap {
    position: relative;
  }
  .pageTitle.--image .pageTitle-wrap::after {
    right: 36%;
  }
  .pageTitle.--image .pageTitle-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 36%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .pageTitle.--image p {
    width: 60%;
    padding-right: 20px;
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--recipe_movie .pageTitle-wrap::before {
    background-image: url(../img/recipe_movie/mv_recipe_movie.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--howto_movie .pageTitle-wrap::before {
    background-image: url(../img/howto_movie/mv_howto_movie.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--camp_movie .pageTitle-wrap::before {
    background-image: url(../img/camp_movie/mv_camp_movie.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--discover .pageTitle-wrap::before {
    background-image: url(../img/discover/mv_discover.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--food_store .pageTitle-wrap::before {
    background-image: url(../img/food_store/mv_food_store.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--discount_store .pageTitle-wrap::before {
    background-image: url(../img/discount_store/mv_discount_store.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--olympic_celler .pageTitle-wrap::before {
    background-image: url(../img/olympic_celler/mv_olympic_celler.jpg);
  }
}

@media screen and (min-width: 992px) {
  .pageTitle.--piccoly .pageTitle-wrap::before {
    background-image: url(../img/piccoly/mv_olympic_piccoly.jpg);
  }
}

/* ページリード文
-------------------------------------------*/
.pageLead {
  padding-bottom: 40px;
}

.pageLead p {
  font-size: 1.3rem;
}

/* パンくず
-------------------------------------------*/
.panNav {
  padding-top: 10px;
}

.panNav ul {
  display: flex;
}

@media screen and (max-width: 991px) {
  .panNav ul {
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}

.panNav ul li {
  color: #888;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .panNav ul li {
    font-size: 1rem;
  }
}

.panNav ul li a {
  color: #888;
}

@media screen and (min-width: 992px) {
  .panNav ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .panNav ul li a:hover {
    color: #e72e35;
  }
}

.panNav ul li + li {
  margin-left: 5px;
  padding-left: 20px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .panNav ul li + li {
    padding-left: 15px;
  }
}

.panNav ul li + li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .panNav ul li + li::before {
    width: 6px;
    height: 6px;
  }
}

/* 共通レイアウト
-------------------------------------------*/
.contents {
  padding: 80px 0 120px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .contents {
    padding: 30px 0 60px;
  }
}

.contents > .inner {
  position: relative;
  z-index: 2;
}

.column {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .column {
    flex-direction: column;
  }
}

.column-left {
  width: 254px;
}

@media screen and (max-width: 991px) {
  .column-left {
    width: 100%;
  }
}

.column-right {
  width: calc(100% - 254px);
  padding-left: 60px;
}

@media screen and (max-width: 991px) {
  .column-right {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }
}

.sideBox {
  padding: 30px 20px 50px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background: #fff;
}

@media screen and (max-width: 991px) {
  .sideBox {
    padding: 30px 25px 40px;
  }
}

@media screen and (min-width: 992px) {
  .sideBox.--sticky {
    position: sticky;
    top: 20px;
  }
}

.sideBox-ttl {
  margin-bottom: 28px;
}

.sideBox-ttl b {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #e72e35;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .sideBox-ttl b {
    font-size: 2rem;
  }
}

.sideBox-ttl span {
  padding-top: 8px;
  display: block;
  line-height: 1;
  position: relative;
  font-size: 1.4rem;
  color: #e72e35;
  padding-left: 25px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .sideBox-ttl span {
    font-size: 1.3rem;
  }
}

.sideBox-ttl span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 1px;
  background: #e72e35;
}

.sideBox-item + .sideBox-item {
  margin-top: 40px;
}

@media screen and (min-width: 992px) {
  .sideBox .nav01 {
    border-left: 2px solid #d3d3d3;
  }
}

@media screen and (max-width: 991px) {
  .sideBox .nav01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
  }
  .sideBox .nav01 ul::after {
    content: '';
    display: block;
    width: 30.5%;
    height: 0;
  }
}

@media screen and (min-width: 992px) {
  .sideBox .nav01 ul li + li {
    margin-top: 20px;
  }
}

@media screen and (max-width: 991px) {
  .sideBox .nav01 ul li {
    width: 30.5%;
  }
  .sideBox .nav01 ul li:nth-child(n + 4) {
    margin-top: 25px;
  }
}

.sideBox .nav01 ul li a {
  position: relative;
  padding-left: 15px;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .sideBox .nav01 ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (max-width: 991px) {
  .sideBox .nav01 ul li a {
    padding: 0 0 5px 0;
    border-bottom: 2px solid #d3d3d3;
    width: 100%;
    display: block;
    letter-spacing: 0.01em;
  }
}

.sideBox .nav01 ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  margin: auto;
  background: #e72e35;
  width: 2px;
  height: 1.8em;
  opacity: 0;
}

@media screen and (min-width: 992px) {
  .sideBox .nav01 ul li a::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (max-width: 991px) {
  .sideBox .nav01 ul li a::before {
    left: 0;
    right: 0;
    bottom: -2px;
    top: inherit;
    width: 100%;
    height: 2px;
  }
}

.sideBox .nav01 ul li a.is-current {
  color: #e72e35;
}

.sideBox .nav01 ul li a.is-current::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  margin: auto;
  background: #e72e35;
  width: 2px;
  height: 1.8em;
}

.sideBox .nav01 ul li.active a,
.sideBox .nav01 ul li.current-cat a {
  color: #e72e35;
}

.sideBox .nav01 ul li.active a::before,
.sideBox .nav01 ul li.current-cat a::before {
  opacity: 1;
}

@media screen and (min-width: 992px) {
  .sideBox .nav01 ul li:hover a {
    color: #e72e35;
  }
}

.sideBox .nav02 {
  border-left: 2px solid #d3d3d3;
}

.sideBox .nav02 ul li + li {
  margin-top: 30px;
}

.sideBox .nav02 ul li a {
  position: relative;
  padding-left: 15px;
  display: flex;
  align-items: center;
}

.sideBox .nav02 ul li a .image {
  width: 60px;
}

@media screen and (max-width: 991px) {
  .sideBox .nav02 ul li a .image {
    width: 80px;
  }
}

.sideBox .nav02 ul li a .txt {
  width: calc(100% - 60px);
  padding-left: 12px;
}

@media screen and (min-width: 992px) {
  .sideBox .nav02 ul li a .txt {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (max-width: 991px) {
  .sideBox .nav02 ul li a .txt {
    width: calc(100% - 80px);
  }
}

.sideBox .nav02 ul li a .txt .tag {
  font-size: 1rem;
  border: 1px solid #333;
  line-height: 1;
  padding: 3px;
  border-radius: 2px;
  display: table;
  letter-spacing: 0.01em;
}

@media screen and (min-width: 992px) {
  .sideBox .nav02 ul li a .txt .tag {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.sideBox .nav02 ul li a .txt .name {
  line-height: 1.5;
  padding-top: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 992px) {
  .sideBox .nav02 ul li a .txt .name {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (max-width: 991px) {
  .sideBox .nav02 ul li a .txt .name {
    font-size: 1.4rem;
  }
}

.sideBox .nav02 ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2px;
  margin: auto;
  background: #e72e35;
  width: 2px;
  height: 100%;
  opacity: 0;
}

@media screen and (min-width: 992px) {
  .sideBox .nav02 ul li a::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (min-width: 992px) {
  .sideBox .nav02 ul li a:hover .name {
    color: #e72e35;
  }
  .sideBox .nav02 ul li a:hover .tag {
    border-color: #e72e35;
    color: #e72e35;
  }
}

.sideBox .nav02 ul li.active a .name {
  color: #e72e35;
}

.sideBox .nav02 ul li.active a .tag {
  border-color: #e72e35;
  color: #e72e35;
}

.sideBox .nav02 ul li.active a::before {
  opacity: 1;
}

/* youtube */
.flexItems {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flexItems .item .image {
  overflow: hidden;
  border-radius: 8px;
}

.flexItems .item .txt dl {
  padding-top: 20px;
}

@media screen and (max-width: 991px) {
  .flexItems .item .txt dl {
    padding-top: 15px;
  }
}

.flexItems .item .txt dl dt {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .flexItems .item .txt dl dt {
    font-size: 1.4rem;
  }
}

.flexItems .item .txt dl dd p {
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .flexItems .item .txt dl dd p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 992px) {
  .flexItems .item .image a img,
  .flexItems.--img_hover .item .image img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

@media screen and (min-width: 992px) {
  .flexItems .item .image a:hover img,
  .flexItems.--img_hover .item:hover .image img {
    transform: scale(1.1, 1.1);
  }
}

@media screen and (min-width: 992px) {
  .flexItems {
    position: relative;
  }
  .flexItems .item {
    width: 31.5%;
  }
  .flexItems .item:nth-child(n + 4) {
    margin-top: 80px;
  }
  .flexItems::after {
    content: "";
    display: block;
    width: 31.5%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .flexItems .item {
    width: 48.5%;
  }
  .flexItems .item:nth-child(n + 3) {
    margin-top: 35px;
  }
}

/* HOT TOPICS */
.hotTopics .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .hotTopics .ttl {
    margin-bottom: 30px;
  }
}

.hotTopics .flexItems {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 991px) {
  .hotTopics .flexItems {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 992px) {
  .hotTopics .flexItems {
    position: relative;
  }
  .hotTopics .flexItems .item {
    width: 32%;
  }
  .hotTopics .flexItems::after {
    width: 32%;
  }
}

@media screen and (max-width: 991px) {
  .hotTopics .flexItems .item:nth-child(n+3) {
    display: none;
  }
}

.hotTopics .embedsocial-hashtag {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 991px) {
  .hotTopics .embedsocial-hashtag {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

/* youtube */
.youtube_wrap {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .youtube_wrap {
    border-radius: 5px;
  }
}

.youtube_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* こだわり */
.commitmentBlk {
  padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk {
    padding-bottom: 65px;
  }
}

.commitmentBlk .ttl {
  align-items: flex-start;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk .ttl {
    margin-bottom: 35px;
  }
}

.commitmentBlk .ttl span {
  font-size: 2rem;
  font-weight: 500;
  color: #888888;
  line-height: 1.5;
  padding-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk .ttl span {
    font-size: 1.2rem;
  }
}

.commitmentBlk .ttl .t1 {
  line-height: 1.2;
  padding-bottom: 6px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk .ttl .t1 {
    padding-bottom: 4px;
    font-size: 1.8rem;
  }
}

.commitmentBlk .ttl .t2 {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .commitmentBlk .ttl .t2 {
    font-size: 1.2rem;
  }
}

.commitmentBlk-list .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item {
    flex-direction: column;
  }
}

.commitmentBlk-list .item + .item {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item + .item {
    margin-top: 45px;
  }
}

.commitmentBlk-list .item .image {
  width: 30%;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item .image {
    width: 100%;
  }
}

.commitmentBlk-list .item .txt {
  width: 70%;
  padding-left: 65px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item .txt {
    width: 100%;
    padding: 20px 0 0 0;
  }
}

.commitmentBlk-list .item dl dt {
  font-size: 2.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item dl dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.commitmentBlk-list .item dl dt > span {
  font-size: 4rem;
  font-weight: 700;
  color: #e72e35;
  padding-right: 15px;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item dl dt > span {
    font-size: 2.8rem;
  }
}

.commitmentBlk-list .item dl dd {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .commitmentBlk-list .item dl dd {
    font-size: 1.3rem;
  }
}

/* 店舗情報
-------------------------------------------*/
.storeLead {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .storeLead {
    margin-bottom: 40px;
  }
}

.storeLead-ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .storeLead-ttl {
    margin-bottom: 15px;
  }
}

.storeLead-ttl .t1 {
  background: #e72e35;
  border-radius: 5px;
  padding: 0 16px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .storeLead-ttl .t1 {
    font-size: 1.2rem;
    height: 30px;
  }
}

.storeLead-ttl .t2 {
  font-size: 3.2rem;
  font-weight: 700;
  padding-top: 10px;
}

@media screen and (max-width: 991px) {
  .storeLead-ttl .t2 {
    font-size: 2.2rem;
    padding-top: 8px;
  }
}

.storeLead-image {
  overflow: hidden;
  border: 8px;
}

.columnStore {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .columnStore {
    flex-direction: column;
  }
}

.columnStore-left {
  width: calc(100% - 410px);
  padding-right: 65px;
}

@media screen and (max-width: 991px) {
  .columnStore-left {
    width: 100%;
    padding: 0;
  }
}

.columnStore-right {
  width: 410px;
}

@media screen and (max-width: 991px) {
  .columnStore-right {
    width: 100%;
    display: none;
  }
}

.storeMain-info .datatbl {
  width: 100%;
  max-width: 470px;
  margin: auto;
}

.storeMain-info .datatbl dl {
  display: flex;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 991px) {
  .storeMain-info .datatbl dl {
    font-size: 1.3rem;
    flex-direction: column;
  }
}

.storeMain-info .datatbl dl dt {
  width: 6em;
}

@media screen and (max-width: 991px) {
  .storeMain-info .datatbl dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}

.storeMain-info .datatbl dl dd {
  width: calc(100% - 6em);
}

@media screen and (max-width: 991px) {
  .storeMain-info .datatbl dl dd {
    width: 100%;
    font-weight: 400;
  }
}

.storeMain-info .datatbl dl dd ul li + li {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .storeMain-info .datatbl dl dd ul li + li {
    margin-top: 5px;
  }
}

.storeMain-info .datatbl dl + dl {
  margin-top: 20px;
}

.storeMain-info .datatbl + .gmap {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .storeMain-info .datatbl + .gmap {
    margin-top: 20px;
  }
}

.storeMain-info .gmap {
  width: 100%;
  max-width: 470px;
  margin: auto;
  height: 310px;
}

@media screen and (max-width: 991px) {
  .storeMain-info .gmap {
    height: 240px;
  }
}

.storeMain-info .gmap iframe {
  width: 100%;
  height: 100%;
}

.storeMain-guide dl {
  display: flex;
}

@media screen and (min-width: 992px) {
  .storeMain-guide dl {
    min-height: 155px;
  }
}

.storeMain-guide dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff7f7;
  border-radius: 8px;
  width: 168px;
  color: #e72e35;
  font-size: 3rem;
  font-weight: 500;
  gap: 4px;
}

.storeMain-guide dl dd {
  width: calc(100% - 168px);
  padding-left: 45px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .storeMain-guide dl dd {
    width: 100%;
    padding-left: 0;
  }
}

.storeMain-guide dl dd .t1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e72e35;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .storeMain-guide dl dd .t1 {
    font-size: 1.4rem;
  }
}

.storeMain-guide dl dd p {
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .storeMain-guide dl dd p {
    font-size: 1.3rem;
  }
}

.storeMain-guide dl + dl {
  margin-top: 25px;
}

.storeMain-service .servicelist ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .storeMain-service .servicelist ul li {
    width: 13%;
    margin-right: 1.5%;
  }
  .storeMain-service .servicelist ul li:nth-child(7n) {
    margin-right: 0;
  }
  .storeMain-service .servicelist ul li:nth-child(n + 8) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 991px) {
  .storeMain-service .servicelist ul li {
    width: 17.5%;
    margin-right: 3.125%;
  }
  .storeMain-service .servicelist ul li:nth-child(5n) {
    margin-right: 0;
  }
  .storeMain-service .servicelist ul li:nth-child(n + 6) {
    margin-top: 15px;
  }
}

.storeMain > section + section {
  margin-top: 85px;
}

@media screen and (max-width: 991px) {
  .storeMain > section + section {
    margin-top: 60px;
  }
}

.storeSide {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .storeSide {
    margin-top: 65px;
    padding: 50px 0;
  }
}

.storeSide-item {
  width: 325px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .storeSide-item {
    min-width: 325px;
    width: calc(100% - 50px);
  }
}

.storeSide-item + .storeSide-item {
  margin-top: 50px;
  padding-top: 50px;
  background-image: linear-gradient(to right, #888888 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}

.storeSide-item > dl > dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.8;
  margin-bottom: 15px;
}

.storeSide-item > dl > dt .t1 {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 991px) {
  .storeSide-item > dl > dt .t1 {
    font-size: 1.8rem;
  }
}

.storeSide-item > dl > dt .t2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #e72e35;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .storeSide-item > dl > dt .t2 {
    font-size: 1.2rem;
  }
}

.storeSide-item > dl > dd p {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .storeSide-item > dl > dd p {
    font-size: 1.3rem;
  }
}

.storeSide-flyer {
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .storeSide-flyer {
    display: flex;
    justify-content: center;
  }
}

.storeSide-flyer ul li + li {
  margin-top: 25px;
}

@media screen and (max-width: 991px) {
  .storeSide-shop {
    padding-top: 15px;
  }
}

.storeSide-shop .item {
  max-width: 225px;
  display: block;
  width: 100%;
  margin: auto;
}

.storeSide-shop .item + .item {
  margin-top: 40px;
}

@media screen and (min-width: 992px) {
  .storeSide-shop .item .image > img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .storeSide-shop .item:hover .image > img {
    transform: scale(1.1, 1.1);
  }
  .storeSide-shop .item:hover dl dt {
    color: #e72e35;
  }
}

.storeSide-shop .item .image {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.storeSide-shop .item .image img {
  width: 100%;
}

.storeSide-shop .item dl {
  padding-top: 5px;
}

@media screen and (max-width: 991px) {
  .storeSide-shop .item dl {
    padding-top: 8px;
  }
}

.storeSide-shop .item dl dt {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .storeSide-shop .item dl dt {
    margin-bottom: 5px;
  }
}

.storeSide-shop .item dl dd ul {
  display: flex;
  flex-wrap: wrap;
}

.storeSide-shop .item dl dd ul li {
  color: #888888;
  font-size: 1.2rem;
  position: relative;
  padding-left: 1em;
  margin-right: 8px;
}

.storeSide-shop .item dl dd ul li::before {
  content: "#";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #e72e35;
}

.storeSide-banner .item + .item {
  margin-top: 40px;
}

.storeSide-banner .item a {
  display: block;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .storeSide-banner .item a > img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .storeSide-banner .item a:hover > img {
    transform: scale(1.1, 1.1);
  }
}

.storeNews {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .storeNews {
    margin-top: 60px;
  }
}

@media screen and (min-width: 992px) {
  .storeNews .flexItems .item:nth-child(n + 4) {
    margin-top: 45px;
  }
}

/* ディスカウントストア
-------------------------------------------*/
.productsHandled {
  padding: 110px 0;
  background: #f8f7f5;
}

@media screen and (max-width: 991px) {
  .productsHandled {
    padding: 65px 0 40px;
  }
}

.productsHandled .ttl {
  margin-bottom: 65px;
}

.productsHandled .flex {
  display: flex;
  flex-wrap: wrap;
  max-width: 945px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .productsHandled .flex {
    justify-content: space-between;
  }
}

@media screen and (min-width: 992px) {
  .productsHandled .flex .item {
    width: 23%;
    margin-right: 2.666666666666667%;
  }
  .productsHandled .flex .item:nth-child(4n) {
    margin-right: 0;
  }
  .productsHandled .flex .item:nth-child(n + 5) {
    margin-top: 40px;
  }
}

@media screen and (max-width: 991px) {
  .productsHandled .flex .item {
    width: 48%;
  }
  .productsHandled .flex .item:nth-child(n + 3) {
    margin-top: 30px;
  }
}

.productsHandled .flex .item .image {
  width: 80%;
  margin: auto;
}

.productsHandled .flex .item .txt {
  padding-top: 20px;
}

.productsHandled .flex .item .txt dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .productsHandled .flex .item .txt dl dt {
    font-size: 1.6rem;
  }
}

.productsHandled .flex .item .txt dl dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.productsHandled .flex .item .txt dl dd ul li {
  font-size: 1.4rem;
  color: #888888;
  margin-right: 7px;
}

@media screen and (max-width: 991px) {
  .productsHandled .flex .item .txt dl dd ul li {
    font-size: 1.2rem;
  }
}

.productsHandled .flex .item .txt dl dd ul li > span {
  color: #e72e35;
}

/* オリンピックセラー
-------------------------------------------*/
.aboutCeller {
  padding-bottom: 90px;
}

@media screen and (max-width: 991px) {
  .aboutCeller {
    padding-bottom: 60px;
  }
}

.aboutCeller .leadtxt {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .aboutCeller .leadtxt {
    text-align: left;
    margin-bottom: 15px;
  }
}

.aboutCeller-youtube {
  max-width: 678px;
  margin: auto;
}

.aboutCeller-youtube .txt {
  text-align: center;
  padding-top: 10px;
  color: #888888;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .aboutCeller-youtube .txt {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
  }
}

.howtouseBlk {
  background: #f8f7f5;
  padding: 120px 0;
}

@media screen and (max-width: 991px) {
  .howtouseBlk {
    padding: 70px 0;
  }
}

.howtouseBlk .leadtxt {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .howtouseBlk .leadtxt {
    text-align: left;
    margin-bottom: 50px;
  }
}

.howtouseBlk-list {
  max-width: 944px;
  margin: auto;
}

.howtouseBlk-item + .howtouseBlk-item {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #d3d3d3;
}

.howtouseBlk-item .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .howtouseBlk-item .flex .item:nth-child(1) {
    width: 25%;
  }
  .howtouseBlk-item .flex .item:nth-child(2) {
    width: 75%;
    padding-left: 65px;
  }
}

@media screen and (max-width: 991px) {
  .howtouseBlk-item .flex {
    flex-direction: column;
  }
}

.howtouseBlk-item .flex .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .howtouseBlk-item .flex .image {
    width: 120px;
    margin-bottom: 10px;
  }
}

.--piccoly .howtouseBlk-item .flex .image img {
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .--piccoly .howtouseBlk-item .flex .image {
    width: 240px;
  }
}

.howtouseBlk-item .flex dl dt {
  font-size: 2.4rem;
  font-weight: 500;
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .howtouseBlk-item .flex dl dt {
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 10px;
  }
}

.howtouseBlk-item .flex dl dt > span {
  font-size: 4rem;
  font-weight: 700;
  color: #e72e35;
  padding-right: 15px;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .howtouseBlk-item .flex dl dt > span {
    font-size: 2rem;
    padding-right: 5px;
  }
}

.howtouseBlk-item .flex dl dt div {
  line-height: 1;
}

.howtouseBlk-item .flex dl dt small {
  font-size: 1.4rem;
  font-weight: 400;
}

.howtouseBlk-item .flex dl dd {
  width: 90%;
}

@media screen and (max-width: 991px) {
  .howtouseBlk-item .flex dl dd {
    width: 100%;
  }
  .howtouseBlk-item .flex dl dd p {
    text-align: center;
    font-size: 1.3rem;
  }
}

.cellarOriginalBlk {
  padding-top: 80px;
}

@media screen and (max-width: 991px) {
  .cellarOriginalBlk {
    padding-top: 60px;
  }
}

.cellarOriginalBlk .leadtxt {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .cellarOriginalBlk .leadtxt {
    text-align: left;
    margin-bottom: 25px;
  }
}

.cellarOriginalBlk .image {
  text-align: center;
  margin-bottom: 30px;
}

.cellarOriginalBlk .image img {
  max-width: 260px;
}

@media screen and (max-width: 991px) {
  .cellarOriginalBlk .image {
    margin-bottom: 25px;
  }
}

.cellarOriginalBlk .link-arrow {
  margin: 0 auto;
}

.messageBlk {
  padding: 80px 0 180px;
}

@media screen and (max-width: 991px) {
  .messageBlk {
    padding: 60px 0 65px;
  }
}

.messageBlk .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .messageBlk .ttl {
    margin-bottom: 50px;
  }
}

.messageBlk-box {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 70px 50px 100px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .messageBlk-box {
    padding: 40px 16px 70px;
  }
}

.messageBlk-box .circle {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #e72e35;
  border-radius: 50%;
}

@media screen and (max-width: 991px) {
  .messageBlk-box .circle {
    width: 14px;
    height: 14px;
  }
}

.messageBlk-box .circle.--bg01 {
  left: 15px;
  top: 15px;
}

.messageBlk-box .circle.--bg02 {
  right: 15px;
  top: 15px;
}

.messageBlk-box .circle.--bg03 {
  left: 15px;
  bottom: 15px;
}

.messageBlk-box .circle.--bg04 {
  right: 15px;
  bottom: 15px;
}

.messageBlk-list {
  width: 100%;
  max-width: 880px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.messageBlk-list .item .image {
  width: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .messageBlk-list .item .image {
    width: 156px;
  }
}

.messageBlk-list .item dl {
  padding-top: 20px;
}

.messageBlk-list .item dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .messageBlk-list .item dl dt {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

.messageBlk-list .item dl dt .t1 {
  font-size: 1.4rem;
  font-weight: 700;
}

.messageBlk-list .item dl dt .t1 b {
  font-size: 1.8rem;
}

.messageBlk-list .item dl dt .t2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #888888;
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .messageBlk-list .item dl dt .t2 {
    padding-left: 15px;
  }
}

.messageBlk-list .item dl dd p {
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .messageBlk-list .item {
    width: 46%;
  }
  .messageBlk-list .item:nth-child(n + 3) {
    margin-top: 80px;
  }
}

@media screen and (max-width: 991px) {
  .messageBlk-list .item {
    width: 100%;
  }
  .messageBlk-list .item:not(:last-child) {
    margin-bottom: 45px;
  }
}

.storelistBlk-btn {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .storelistBlk-btn {
    margin-top: 50px;
  }
}

.storelistBlk .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .storelistBlk .ttl {
    margin-bottom: 45px;
  }
}

.storelistBlk .storeList-item .item:nth-child(1) {
  width: 35%;
}

@media screen and (max-width: 991px) {
  .storelistBlk .storeList-item .item:nth-child(1) {
    width: 100%;
  }
}

.storelistBlk .storeList-item .item:nth-child(2) {
  width: calc(100% - 335px - 35%);
}

@media screen and (max-width: 991px) {
  .storelistBlk .storeList-item .item:nth-child(2) {
    width: 100%;
  }
}

.storelistBlk .storeList-item .item:nth-child(3) {
  width: 335px;
}

.storelistBlk .storeList-name dl dt {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .storelistBlk .storeList-name dl dt {
    margin-bottom: 5px;
  }
}

.storelistBlk .storeList-info li {
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .storelistBlk .storeList-info li {
    font-size: 1.3rem;
  }
}

.storelistBlk .storeList-btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.storelistBlk .storeList-btns li {
  margin: 0;
}

.storelistBlk .storeList-btns li a {
  font-size: 1.4rem;
}

/* ワインカタログ
-------------------------------------------*/
.wineMv-image {
  text-align: center;
}

.wineMv-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 120px;
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 0px 0 20px 0px;
}

.wine-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.wine-item:hover {
  transform: translateY(-5px);
}

.wine-bottle {
  width: 80px;
  height: 140px;
  margin: 0 auto 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wine-bottle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: translate(0, 0) translateZ(0);
}

.wine-bottle.default-bottle {
  background: #666;
  border-radius: 4px 4px 15px 15px;
}

.wine-bottle.default-bottle::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 25px;
  background: #666;
  border-radius: 2px;
}

.wine-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wineCatalog .coming-soon {
  background: white;
  border: 1px solid #ddd;
  padding: 6px 12px;
  font-size: 11px;
  color: #666;
  margin-bottom: 15px;
  border-radius: 4px;
}

.wine-detail {
  background: #f8f9fa;
  margin: 40px 0px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
  scroll-margin-top: 20px;
  position: relative;
}

.wine-detail-bottle {
  width: 200px;
  height: 500px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wine-detail-bottle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wine-detail-bottle.default-bottle {
  width: 80px;
  height: 180px;
  background: #666;
  border-radius: 6px 6px 25px 25px;
}

.wine-detail-bottle.default-bottle::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 30px;
  background: #666;
  border-radius: 3px;
}

.wine-info {
  flex: 1;
}

.wine-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.wine-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.wineCatalog .price-section {
  margin-bottom: 30px;
}

.wineCatalog .volume {
  font-size: 18px;
  margin-right: 20px;
}

.wineCatalog .price {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.wineCatalog .price-detail {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
}

.wine-description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.wine-specs {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px 20px;
  font-size: 14px;
}

.wineCatalog .spec-label {
  color: #666;
  font-weight: 500;
}

.wineCatalog .spec-value {
  color: #333;
}

.wineCatalog .producer-btn {
  background: #a91b3e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 40px;
}

.wineCatalog .producer-btn:hover {
  background: #8a152f;
}

/* モーダル */
.wineCatalog .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease;
}

.wineCatalog .modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.wineCatalog .modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  width: 85%;
  max-width: 1000px;
  max-height: 75vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  top: 5%;
  left: auto;
  transform: none;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.wineCatalog .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.wineCatalog .modal-close:hover {
  color: #333;
  background: #f0f0f0;
}

.wineCatalog .modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}

.wineCatalog .gallery-container {
  margin-bottom: 30px;
}

.wineCatalog .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.wineCatalog .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #f5f5f5;
}

.wineCatalog .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wineCatalog .gallery-item.landscape {
  grid-column: span 2;
  height: 200px;
}

.wineCatalog .gallery-item.portrait {
  height: 300px;
}

.wineCatalog .gallery-item.square {
  height: 200px;
}

.wineCatalog .producer-info {
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.wineCatalog .producer-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.wineCatalog .producer-info p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.wineCatalog .top-accent {
  position: absolute;
  top: 0;
  right: 60px;
  width: 4px;
  height: 100px;
  background: linear-gradient(to bottom, #4db8ff, #2196F3);
}

@media (max-width: 991px) {
  .wineCatalog .container {
    padding: 15px;
  }

  .wine-grid {
    margin: 40px 0 30px 40px;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .wine-detail {
    margin: 30px 20px;
    padding: 25px;
    grid-template-columns: 100px 1fr;
    gap: 40px;
  }

  .wine-detail-bottle {
    width: 100%;
    height: 450px;
    overflow: hidden;
  }

  .wine-detail-bottle.default-bottle {
    width: 70px;
    height: 150px;
  }

  .wine-title {
    font-size: 20px;
  }

  .wineCatalog .side-text {
    left: 15px;
    font-size: 12px;
  }

  .top-accent {
    right: 20px;
    height: 80px;
  }

  .modal-content {
    width: 95%;
    padding: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.landscape {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .wineMv-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }

  .wineCatalog .price-section {
    display: flex;
    flex-wrap: wrap;
  }

  .wineCatalog .price-detail {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }

  .wineCatalog .price-volume {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }

  .wineCatalog .price {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }

  .wine-grid {
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .wine-item {
    padding: 15px;
  }

  .wine-bottle {
    width: 60px;
    height: 110px;
  }

  .wine-name {
    font-size: 11px;
    min-height: 35px;
  }

  .wine-detail {
    margin: 20px 10px;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wine-detail-bottle {
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  .wine-detail-bottle.default-bottle {
    width: 60px;
    height: 130px;
  }

  .wine-specs {
    grid-template-columns: 80px 1fr;
    gap: 10px 15px;
    font-size: 13px;
  }

  .wine-item:has(.coming-soon) {
    cursor: default;
    pointer-events: none;
  }

  .wine-item:has(.coming-soon):hover {
    transform: none;
  }

  .wine-item:has(.coming-soon) .wine-bottle {
    opacity: 0.8;
  }
}

/* 会社概要
-------------------------------------------*/
.philosophyBlk .ttl {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .philosophyBlk .ttl {
    margin-bottom: 30px;
  }
}

.philosophyBlk-main {
  min-height: 508px;
  background: url(../img/company/bg_philosophy.svg) center center no-repeat;
  background-size: 728px 508px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 150px;

}

@media screen and (max-width: 991px) {
  .philosophyBlk-main {
    min-height: inherit;
    background-size: 80vw auto;
    background-position: center top;
    padding-top: 50px;
    margin-bottom: 100px;
  }
}

.philosophyBlk-main dl dt {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .philosophyBlk-main dl dt {
    margin-bottom: 30px;
  }
  .philosophyBlk-main dl dt img {
    width: 70%;
  }
}

.philosophyBlk-main dl dd p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.2;
}

@media screen and (max-width: 991px) {
  .philosophyBlk-main dl dd p {
    font-size: 1.4rem;
  }
}

.basicinfoBlk {
  padding-top: 75px;
}

@media screen and (max-width: 991px) {
  .basicinfoBlk .ttl {
    margin-bottom: 0;
  }
}

.basicinfoBlk-tbl .gmap {
  margin-top: 24px;
  max-width: 470px;
  height: 276px;
}

@media screen and (max-width: 991px) {
  .basicinfoBlk-tbl .gmap {
    height: 210px;
    margin-top: 15px;
  }
}

.basicinfoBlk-tbl .gmap iframe {
  width: 100%;
  height: 100%;
}

.basicinfoBlk-tbl dl {
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  padding: 40px;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .basicinfoBlk-tbl dl {
    padding: 30px 0;
    flex-direction: column;
  }
}

.basicinfoBlk-tbl dl dt {
  width: 30%;
}

@media screen and (max-width: 991px) {
  .basicinfoBlk-tbl dl dt {
    font-size: 1.6rem;
    font-weight: 500;
    width: 100%;
    margin-bottom: 15px;
  }
}

.basicinfoBlk-tbl dl dd {
  width: 70%;
}

@media screen and (max-width: 991px) {
  .basicinfoBlk-tbl dl dd {
    font-size: 1.5rem;
    width: 100%;
  }
}

.basicinfoBlk-tbl dl dd ul li {
  display: flex;
}

.basicinfoBlk-tbl dl dd ul li + li {
  margin-top: 3px;
}

.basicinfoBlk-tbl dl dd ul li span:nth-child(1) {
  width: 12em;
}

.basicinfoBlk-tbl dl dd ul li span:nth-child(2) {
  width: calc(100% - 12em);
}

/* 環境に対する取り組み
-------------------------------------------*/
.enviromentalBlk + .enviromentalBlk {
  margin-top: 120px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk + .enviromentalBlk {
    margin-top: 90px;
  }
}

.enviromentalBlk .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk .ttl {
    margin-bottom: 50px;
  }
}

.enviromentalBlk-ttl {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}

.enviromentalBlk-ttl h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 40px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl h3 {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}

.enviromentalBlk-ttl h3 > span {
  padding: 0 30px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e72e35;
  border-radius: 5px;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl h3 > span {
    font-size: 1.6rem;
    height: 44px;
    padding: 0 13px;
    letter-spacing: -0.01em;
  }
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl h3 > span b.t1 {
    font-size: 1.4rem;
    margin-left: -0.1em;
  }
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl h3 > span b.t2 {
    font-size: 1.2rem;
    margin-left: -0.1em;
  }
}

.enviromentalBlk-ttl .icons {
  display: flex;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl .icons {
    margin-bottom: 8px;
  }
}

.enviromentalBlk-ttl .icons li {
  height: 64px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-ttl .icons li {
    width: 44px;
    height: 44px;
  }
}

.enviromentalBlk-ttl .icons li + li {
  margin-left: 4px;
}

.enviromentalBlk-item + .enviromentalBlk-item {
  margin-top: 140px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item + .enviromentalBlk-item {
    margin-top: 55px;
  }
}

.enviromentalBlk-item dl + dl {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item dl + dl {
    margin-top: 40px;
  }
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item dl dd p {
    font-size: 1.3rem;
  }
}

.enviromentalBlk-item .flex {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .flex {
    margin-top: 25px;
    flex-direction: column;
  }
}

@media screen and (min-width: 992px) {
  .enviromentalBlk-item .flex .item {
    width: 48.5%;
  }
  .enviromentalBlk-item .flex .item:nth-child(n + 3) {
    margin-top: 32px;
  }
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .flex .item {
    width: 100%;
  }
  .enviromentalBlk-item .flex .item + .item {
    margin-top: 16px;
  }
}

.enviromentalBlk-item .flex .item .txt {
  font-weight: 500;
  padding-top: 10px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .flex .item .txt {
    font-size: 1rem;
    padding-top: 5px;
    letter-spacing: -0.01em;
  }
}

.enviromentalBlk-item .flex .item .bgbox {
  background: #f7f7f7;
  border-radius: 5px;
  padding: 40px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .flex .item .bgbox {
    padding: 35px 20px;
  }
}

.enviromentalBlk-item .flex .item .bgbox .t1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .flex .item .bgbox .t1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .flex .item .bgbox .t2 {
    font-size: 1.3rem;
  }
}

.enviromentalBlk-item .dataimg {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .dataimg.--col2 {
    flex-wrap: wrap;
  }
  .enviromentalBlk-item .dataimg.--col2 img {
    width: 100%;
  }
  .enviromentalBlk-item .dataimg.--col2 img + img {
    margin-top: 30px;
  }
}

.enviromentalBlk-item .dataimg.--col3 {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .enviromentalBlk-item .dataimg.--col3 {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .enviromentalBlk-item .dataimg.--col3 img {
    width: 48%;
  }
  .enviromentalBlk-item .dataimg.--col3 img:first-child {
    margin-right: 4%;
  }
  .enviromentalBlk-item .dataimg.--col3 img:last-child {
    margin-top: 4%;
  }
}

.enviromentalBlk-tbl {
  margin-top: 40px;
}

/* お問い合わせ
-------------------------------------------*/
.faqBlk {
  padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .faqBlk {
    padding-bottom: 60px;
  }
}

.faqBlk .leadtxt {
  text-align: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .faqBlk .leadtxt {
    text-align: left;
  }
}

.faqBlk .ttl-circle {
  color: #E72E35;
}

.faqBlk-ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}

.faqBlk-ttl > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #E72E35;
  font-weight: 700;
}

.faqBlk-item + .faqBlk-item {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .faqBlk-item + .faqBlk-item {
    margin-top: 40px;
  }
}

.faqBlk-item dl {
  background: #fafafa;
  border-radius: 10px;
}

.faqBlk-item dl + dl {
  margin-top: 16px;
}

.faqBlk-item dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding: 0 80px 0 70px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .faqBlk-item dl dt {
    font-size: 1.4rem;
    padding: 0 45px 0 17px;
    min-height: 100px;
  }
}

.faqBlk-item dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 25px;
  height: 5px;
  background: #e72e35;
  border-radius: 20px;
}

@media screen and (max-width: 991px) {
  .faqBlk-item dl dt::before {
    right: 20px;
    width: 17px;
    height: 3px;
  }
}

.faqBlk-item dl dt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  margin: auto;
  width: 5px;
  height: 25px;
  background: #e72e35;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 991px) {
  .faqBlk-item dl dt::after {
    right: 27px;
    height: 17px;
    width: 3px;
  }
}

.faqBlk-item dl dt.is_open::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.faqBlk-item dl dt > div {
  position: relative;
  padding-left: 60px;
}

@media screen and (max-width: 991px) {
  .faqBlk-item dl dt > div {
    padding-left: 35px;
  }
}

.faqBlk-item dl dt > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/contact/icon_q.svg) left center no-repeat;
  background-size: contain;
  width: 28px;
  height: 23px;
}

@media screen and (max-width: 991px) {
  .faqBlk-item dl dt > div::before {
    width: 22px;
    height: 18.071px;
  }
}

.faqBlk-item dl dd .js_ac_inner {
  padding: 0 70px 50px 130px;
}

@media screen and (max-width: 991px) {
  .faqBlk-item dl dd .js_ac_inner {
    padding: 0 17px 40px 17px;
  }
}

.faqBlk-item dl dd .txt p + p {
  margin-top: 30px;
}

.faqBlk-item dl dd .txt p a {
  color: #e72e35;
}

.contactBlk .ttl {
  margin-bottom: 85px;
}

@media screen and (max-width: 991px) {
  .contactBlk .ttl {
    margin-bottom: 30px;
  }
}

.contactBlk-nav {
  margin-bottom: 75px;
}

@media screen and (max-width: 991px) {
  .contactBlk-nav {
    margin-bottom: 60px;
  }
}

.contactBlk-nav ul {
  display: flex;
}

@media screen and (max-width: 991px) {
  .contactBlk-nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.contactBlk-nav ul li {
  width: 25%;
  height: 40px;
}

@media screen and (min-width: 992px) {
  .contactBlk-nav ul li + li {
    border-left: 1px solid #d3d3d3;
  }
}

@media screen and (max-width: 991px) {
  .contactBlk-nav ul li {
    width: 48%;
  }
  .contactBlk-nav ul li:nth-child(n+3) {
    margin-top: 10px;
  }
}

.contactBlk-nav ul li a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .contactBlk-nav ul li a {
    border-bottom: 1px solid #d3d3d3;
    padding: 5px 0;
  }
}

.contactBlk-nav ul li a > span {
  position: relative;
  padding-right: 30px;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .contactBlk-nav ul li a > span {
    width: 100%;
    font-size: 1.4rem;
  }
}

.contactBlk-nav ul li a > span::after {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media screen and (min-width: 992px) {
  .contactBlk-nav ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .contactBlk-nav ul li a:hover {
    color: #e72e35;
  }
}

.contactBlk-item {
  max-width: 950px;
  margin: auto;
}

.contactBlk-item + .contactBlk-item {
  padding-top: 70px;
  margin-top: 70px;
  border-top: 1px solid #d3d3d3;
}

@media screen and (max-width: 991px) {
  .contactBlk-item + .contactBlk-item {
    padding-top: 50px;
    margin-top: 50px;
  }
}

.contactBlk-lead {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .contactBlk-lead {
    margin-bottom: 25px;
  }
}

.contactBlk-btn .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .contactBlk-btn .flex .item {
    width: 48.5%;
  }
}

@media screen and (max-width: 991px) {
  .contactBlk-btn .flex .item {
    width: 100%;
  }
  .contactBlk-btn .flex .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.contactBlk-btn a {
  background: #e72e35;
  height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 5px;
}

.contactBlk-btn a .t1 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .contactBlk-btn a .t1 {
    font-size: 1.6rem;
  }
}

.contactBlk-btn a .t1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contactBlk-btn a .t2 > span {
  text-decoration: underline;
}

.contactBlk-btn a.--tel .t1 {
  padding-left: 22px;
}

.contactBlk-btn a.--tel .t1::before {
  background-image: url(../img/common/icon_tel.svg);
  width: 14px;
  height: 18px;
}

.contactBlk-btn a.--mail .t1 {
  padding-left: 33px;
}

.contactBlk-btn a.--mail .t1::before {
  background-image: url(../img/common/icon_mail_w.svg);
  width: 24px;
  height: 18px;
}

.contactBlk-btn > a {
  max-width: 466px;
  margin: auto;
}

.contactBlk-btn .txt {
  margin-top: 6px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
}

.contactBlk-caution {
  margin-top: 30px;
}

.contactBlk-caution ul li {
  font-size: 1.2rem;
  line-height: 2;
}

.contactBlk-bgbox {
  max-width: 400px;
  margin: 0 auto;
}

.contactBlk-bgbox > div {
  background: #f7f7f7;
  padding: 25px;
}

.contactBlk-bgbox ul {
  display: table;
  margin: auto;
}

.contactBlk-bgbox ul li {
  position: relative;
  padding-left: 1.2em;
}

.contactBlk-bgbox ul li + li {
  margin-top: 10px;
}

.contactBlk-bgbox ul li::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  background: #e72e35;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  top: 0.7em;
}

.contactBlk-bgbox p {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  margin-top: 5px;
}

@media screen and (max-width: 991px) {
  .contactBlk-bgbox p {
    font-size: 1.3rem;
  }
}

.contactBlk-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.contactBlk-ttl > span {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  .contactBlk-ttl > span {
    padding-left: 35px;
    font-size: 1.6rem;
  }
}

.contactBlk-ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: #e72e35;
  border-radius: 50%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .contactBlk-ttl > span::before {
    width: 18px;
    height: 18px;
  }
}

.contactBlk-ttl > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e72e35;
}

@media screen and (max-width: 991px) {
  .contactBlk-ttl > span::after {
    width: 24px;
    height: 24px;
  }
}

/* 食品専門店
-------------------------------------------*/
.featuredBlk {
  background: #e72e35;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .featuredBlk {
    padding: 60px 0 65px;
  }
}

.featuredBlk .inner {
  position: relative;
  z-index: 2;
}

.featuredBlk .ttl .t1,
.featuredBlk .ttl .t2 {
  color: #fff;
}

.featuredBlk .leadtxt {
  color: #fff;
  text-align: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .featuredBlk .leadtxt {
    text-align: left;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .featuredBlk .flexItems .item {
    width: 100%;
  }
  .featuredBlk .flexItems .item + .item {
    margin-top: 40px;
  }
}

.featuredBlk .flexItems .txt {
  color: #fff;
}

.featuredBlk .flexItems .txt dl dt {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .featuredBlk .flexItems .txt dl dt {
    font-size: 1.5rem;
  }
}

.featuredBlk .flexItems .txt dl dd p {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .featuredBlk .flexItems .txt dl dd p {
    font-size: 1.3rem;
  }
}

.featuredBlk .bg-circle {
  width: 340px;
  height: 340px;
}

@media screen and (max-width: 991px) {
  .featuredBlk .bg-circle {
    width: 250px;
    height: 250px;
  }
}

.featuredBlk .bg-circle.--bg01 {
  left: -225px;
  bottom: 60px;
}

@media screen and (max-width: 991px) {
  .featuredBlk .bg-circle.--bg01 {
    left: -100px;
    bottom: 30px;
  }
}

.featuredBlk .bg-circle.--bg02 {
  right: -225px;
  top: 60px;
}

@media screen and (max-width: 991px) {
  .featuredBlk .bg-circle.--bg02 {
    right: -100px;
    top: 30px;
  }
}

.departmentBlk {
  padding: 100px 0 110px;
}

@media screen and (max-width: 991px) {
  .departmentBlk {
    padding: 60px 0 0;
  }
}

.departmentBlk .leadtxt {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .departmentBlk .leadtxt {
    text-align: left;
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 991px) {
  .departmentBlk .flexItems .item {
    width: 100%;
  }
  .departmentBlk .flexItems .item + .item {
    margin-top: 40px;
  }
}

.departmentBlk .flexItems .txt dl dt {
  font-size: 1.8rem;
}

.departmentBlk .flexItems .txt dl dd p {
  font-size: 1.5rem;
  color: #888888;
}

@media screen and (max-width: 991px) {
  .departmentBlk .flexItems .txt dl dd p {
    font-size: 1.3rem;
  }
}

.departmentBlk-list {
  margin-top: 140px;
}

@media screen and (max-width: 991px) {
  .departmentBlk-list {
    margin-top: 40px;
  }
}

.departmentBlk-item {
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .departmentBlk-item {
    height: 28vw;
    min-height: 400px;
  }
}

@media screen and (max-width: 991px) {
  .departmentBlk-item {
    flex-direction: column-reverse;
  }
}

.departmentBlk-item + .departmentBlk-item {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .departmentBlk-item + .departmentBlk-item {
    margin-top: 40px;
  }
}

@media screen and (min-width: 992px) {
  .departmentBlk-item .image {
    height: 100%;
    min-height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(50vw - 100px);
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  .departmentBlk-item .image {
    width: calc(100% - 30px);
    border-radius: 8px;
    overflow: hidden;
  }
}

.departmentBlk-item .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .departmentBlk-item:nth-child(odd) .image {
    right: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  .departmentBlk-item:nth-child(even) .image {
    left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .departmentBlk-item:nth-child(even) .txt {
    margin-left: auto;
  }
}

.departmentBlk-item .txt {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .departmentBlk-item .txt {
    width: 100%;
  }
}

.departmentBlk-item .txt p {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .departmentBlk-item .txt p {
    font-size: 1.3rem;
  }
}

.departmentBlk-item .txt p + p {
  margin-top: 30px;
}

.departmentBlk-item .txt .link-arrow {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .departmentBlk-item .txt .link-arrow {
    margin-top: 25px;
    padding-right: 45px;
  }
  .departmentBlk-item .txt .link-arrow::before {
    width: 33px;
    height: 33px;
  }
}

@media screen and (max-width: 991px) {
  .departmentBlk-ttl {
    padding-top: 20px;
  }
}

.departmentBlk-ttl .t1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #e72e35;
  padding-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .departmentBlk-ttl .t1 {
    font-size: 1.2rem;
    padding-bottom: 0;
  }
}

.departmentBlk-ttl .t2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .departmentBlk-ttl .t2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

/* Olympicグループについて
-------------------------------------------*/
.aboutOlympic {
  padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
  .aboutOlympic {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 991px) {
  .aboutOlympic .inner {
    padding: 0;
  }
}

.aboutOlympic .leadtxt {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .aboutOlympic .leadtxt {
    text-align: left;
    margin-bottom: 35px;
    padding: 0 15px;
  }
}

.aboutOlympic-image {
  display: flex;
  justify-content: center;
}

.groupOlympic .ttl {
  margin-bottom: 65px;
}

@media screen and (max-width: 991px) {
  .groupOlympic .ttl {
    margin-bottom: 35px;
  }
}

.groupOlympic-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.groupOlympic-list .item .image {
  overflow: hidden;
  border-radius: 8px;
}

.groupOlympic-list .item dl {
  padding-top: 10px;
}

.groupOlympic-list .item dl dt {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .groupOlympic-list .item dl dt {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}

.groupOlympic-list .item dl dd p {
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .groupOlympic-list .item dl dd p {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 992px) {
  .groupOlympic-list {
    position: relative;
  }
  .groupOlympic-list .item {
    width: 31.5%;
  }
  .groupOlympic-list .item:nth-child(n + 4) {
    margin-top: 50px;
  }
  .groupOlympic-list::after {
    content: "";
    display: block;
    width: 31.5%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .groupOlympic-list .item {
    width: 48.5%;
  }
  .groupOlympic-list .item:nth-child(n + 3) {
    margin-top: 45px;
  }
}

/* おすすめレシピ
-------------------------------------------*/
.recommendMovie .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .recommendMovie .flex {
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
}

@media screen and (min-width: 992px) {
  .recommendMovie .flex .item {
    width: 45%;
  }
  .recommendMovie .flex .item:nth-child(2) {
    width: 55%;
    padding-left: 50px;
  }
}

@media screen and (max-width: 991px) {
  .recommendMovie .flex .item {
    width: 100%;
  }
  .recommendMovie .flex .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.recommendMovie .flex .item dl dt {
  margin-bottom: 18px;
}

@media screen and (max-width: 991px) {
  .recommendMovie .flex .item dl dt {
    margin-bottom: 15px;
  }
}

.recommendMovie .flex .item dl dt .t1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1;
  color: #e72e35;
}

@media screen and (max-width: 991px) {
  .recommendMovie .flex .item dl dt .t1 {
    font-size: 1.2rem;
  }
}

.recommendMovie .flex .item dl dt .t2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .recommendMovie .flex .item dl dt .t2 {
    font-size: 1.8rem;
  }
}

.recommendMovie .flex .item dl dd {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .recommendMovie .flex .item dl dd {
    font-size: 1.3rem;
  }
}

.recommendMovie-txt {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .recommendMovie-txt {
    font-size: 1.3rem;
  }
}

.recommendMovie-txt .t2 {
  display: flex;
}

.recommendMovie-txt .t2 > div + div {
  margin-left: 10px;
}

.recommendMovie-tags {
  margin-top: 15px;
}

.recommendMovie-tags ul {
  display: flex;
  flex-wrap: wrap;
}

.recommendMovie-tags ul li {
  font-size: 1.4rem;
  color: #888888;
  margin-right: 15px;
}

.recommendMovie-tags ul li > span {
  color: #e72e35;
}

.recommendMovie-link {
  margin-top: 18px;
}

@media screen and (max-width: 991px) {
  .recommendMovie-link {
    margin-top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .recommendMovie-link .link-external {
    font-size: 1.6rem;
  }
  .recommendMovie-link .link-external::before {
    width: 15px;
    height: 15px;
  }
}

/* ～を探す
-------------------------------------------*/
.searchBox-wrap {
  background: #f8f7f5;
  border-radius: 8px;
  padding: 64px 0;
}

@media screen and (max-width: 991px) {
  .searchBox-wrap {
    padding: 40px 0;
  }
}

.searchBox-ttl {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

@media screen and (max-width: 991px) {
  .searchBox-ttl {
    margin-bottom: 30px;
  }
}

.searchBox-ttl > span {
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
}

@media screen and (max-width: 991px) {
  .searchBox-ttl > span {
    font-size: 1.8rem;
    padding-left: 30px;
  }
}

.searchBox.--recipe .searchBox-ttl > span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_recipe.svg) left center no-repeat;
  background-size: contain;
  width: 24px;
  height: 23px;
}

@media screen and (max-width: 991px) {
  .searchBox.--recipe .searchBox-ttl > span:before {
    width: 21px;
    height: 20px;
  }
}

@media screen and (max-width: 991px) {
  .searchBox.--howto .searchBox-ttl > span {
    padding-left: 25px;
  }
}

.searchBox.--howto .searchBox-ttl > span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_howto.svg) left center no-repeat;
  background-size: contain;
  width: 21px;
  height: 26px;
}

@media screen and (max-width: 991px) {
  .searchBox.--howto .searchBox-ttl > span:before {
    width: 17px;
    height: 22px;
  }
}

.searchBox.--camp .searchBox-ttl > span {
  padding-left: 45px;
}

@media screen and (max-width: 991px) {
  .searchBox.--camp .searchBox-ttl > span {
    padding-left: 35px;
  }
}

.searchBox.--camp .searchBox-ttl > span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_camp.svg) left center no-repeat;
  background-size: contain;
  width: 34px;
  height: 22px;
}

@media screen and (max-width: 991px) {
  .searchBox.--camp .searchBox-ttl > span:before {
    width: 28px;
    height: 18px;
  }
}

.searchBox-nav {
  width: 80%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .searchBox-nav {
    width: calc(100% - 30px);
  }
}

.searchBox-nav ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .searchBox-nav ul {
    justify-content: space-between;
  }
}

@media screen and (max-width: 991px) {
  .searchBox-nav ul li {
    min-height: 35px;
  }
}

.searchBox-nav ul li a {
  width: 100%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
  height: 50px;
  border-radius: 8px;
}

@media screen and (max-width: 991px) {
  .searchBox-nav ul li a {
    height: 100%;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 992px) {
  .searchBox-nav ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .searchBox-nav ul li a:hover {
    background: #e72e35;
    color: #fff;
  }
}

.searchBox-nav ul li.active a {
  background: #e72e35;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .searchBox-nav ul li {
    width: 23.5%;
    margin-right: 2%;
  }
  .searchBox-nav ul li:nth-child(4n) {
    margin-right: 0;
  }
  .searchBox-nav ul li:nth-child(n + 5) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 991px) {
  .searchBox-nav ul li {
    width: 48%;
  }
  .searchBox-nav ul li:nth-child(n + 3) {
    margin-top: 16px;
  }
}

.searchBox + .movieList {
  margin-top: 65px;
}

@media screen and (max-width: 991px) {
  .searchBox + .movieList {
    margin-top: 50px;
  }
}

/* 動画リスト
-------------------------------------------*/
#modal-overlay {
  z-index: 9999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}

.modal-content {
  margin: 0;
  padding: 0;
  position: fixed;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 991px) {
  .modal-content {
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .modal-movie {
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 992px) {
  .modal-movie iframe {
    width: 800px;
    height: 450px;
  }
}

@media screen and (max-width: 991px) {
  .modal-movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.movieList .ttl {
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .movieList .ttl {
    margin-bottom: 35px;
  }
}

.movieList-link {
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .movieList-link {
    margin-bottom: 3px;
  }
}

.movieList-link a {
  display: block;
}

.movieList-link a > span {
  display: inline;
  background: url(../img/common/icon_blank_detail.svg) right center no-repeat;
  background-size: 13px;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .movieList-link a > span {
    background-size: 10px;
    padding-right: 10px;
  }
}

@media screen and (min-width: 992px) {
  .movieList-link a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .movieList-link a:hover {
    color: #e72e35;
  }
}

.movieList-tags {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .movieList-tags {
    padding-top: 5px;
  }
}

.movieList-tags li {
  font-size: 1.4rem;
  color: #888888;
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .movieList-tags li {
    font-size: 1rem;
    margin-right: 10px;
  }
}

.movieList-tags li > span {
  color: #e72e35;
}

.movieList-tags li > span.num {
  color: #888888 !important;
}

.movieList-num {
  font-size: 1.4rem;
  color: #888888;
}

@media screen and (max-width: 991px) {
  .movieList-num {
    line-height: 1.4;
  }
}

.movieList-txt {
  padding-top: 12px;
}

@media screen and (max-width: 991px) {
  .movieList-txt {
    padding-top: 10px;
  }
}

.movieList-more {
  margin: 60px auto 0;
  height: 55px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 0 0 #dedede;
  border: 1px solid #dedede;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  width: 80%;
  max-width: 320px;
  position: relative;
  cursor: pointer;
}
.movieList-more.loading, .movieList-more.done {
  display: none;
}

@media screen and (max-width: 991px) {
  .movieList-more {
    margin-top: 50px;
  }
}

.movieList-more::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 2px;
  background: #e72e35;
  height: 14px;
}

.movieList-more::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  margin: auto;
  height: 2px;
  background: #e72e35;
  width: 14px;
}

@media screen and (min-width: 992px) {
  .movieList-more {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .movieList-more::before, .movieList-more::after {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .movieList-more:hover {
    background: #e72e35;
    color: #fff;
  }
  .movieList-more:hover::before, .movieList-more:hover::after {
    background: #fff;
  }
}

.movieList .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .movieList .flex {
    position: relative;
  }
  .movieList .flex .item {
    width: 32%;
  }
  .movieList .flex .item:nth-child(n + 4) {
    margin-top: 4%;
  }
  .movieList .flex::after {
    content: "";
    display: block;
    width: 31%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .movieList .flex .item {
    width: 48%;
  }
  .movieList .flex .item:nth-child(n + 3) {
    margin-top: 35px;
  }
}

/* ディスカバーOlympic
-------------------------------------------*/
.discoverMovie .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .discoverMovie .flex .item {
    width: 45%;
  }
  .discoverMovie .flex .item:nth-child(2) {
    width: 55%;
    padding-left: 50px;
  }
}

@media screen and (max-width: 991px) {
  .discoverMovie .flex .item {
    width: 100%;
  }
  .discoverMovie .flex .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.discoverMovie .flex .item dl dt {
  margin-bottom: 18px;
}

@media screen and (max-width: 991px) {
  .discoverMovie .flex .item dl dt {
    margin-bottom: 15px;
  }
}

.discoverMovie .flex .item dl dt .t1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #888888;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .discoverMovie .flex .item dl dt .t1 {
    font-size: 1.2rem;
  }
}

.discoverMovie .flex .item dl dt .t2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .discoverMovie .flex .item dl dt .t2 {
    font-size: 1.8rem;
  }
}

.discoverMovie .flex .item dl dd {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .discoverMovie .flex .item dl dd {
    font-size: 1.3rem;
  }
}

.discoverMovie-txt p {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .discoverMovie-txt p {
    font-size: 1.3rem;
  }
}

.discoverMovie-link {
  margin-top: 18px;
}

@media screen and (max-width: 991px) {
  .discoverMovie-link {
    margin-top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .discoverMovie-link .link-external {
    font-size: 1.6rem;
  }
  .discoverMovie-link .link-external::before {
    width: 15px;
    height: 15px;
  }
}

.discoverMovie-item + .discoverMovie-item {
  padding-top: 60px;
  margin-top: 60px;
  border-top: 1px solid #d3d3d3;
}

@media screen and (max-width: 991px) {
  .discoverMovie-item + .discoverMovie-item {
    padding-top: 45px;
    margin-top: 45px;
  }
}

.discoverMovie + .movieList {
  margin-top: 110px;
}

@media screen and (max-width: 991px) {
  .discoverMovie + .movieList {
    margin-top: 65px;
  }
}

/* 店舗情報・チラシ
-------------------------------------------*/
.storeList-ttl {
  background: #f7f7f7;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .storeList-ttl {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}

.storeList-blk + .storeList-blk {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .storeList-blk + .storeList-blk {
    margin-top: 50px;
  }
}

.storeList-item {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .storeList-item {
    flex-direction: column;
  }
}

.storeList-item:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px dotted #d3d3d3;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .storeList-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 992px) {
  .storeList-item .item:nth-child(1) {
    width: 42%;
    padding-right: 20px;
  }
  .storeList-item .item:nth-child(2) {
    width: calc(100% - 160px - 42%);
    padding-right: 20px;
  }
  .storeList-item .item:nth-child(3) {
    width: 160px;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 991px) {
  .storeList-item .item {
    width: 100%;
  }
  .storeList-item .item + .item {
    margin-top: 20px;
  }
}

.storeList-item a.item {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (min-width: 992px) {
  .storeList-item a.item .storeList-name dl dt .t1,
  .storeList-item a.item .storeList-name dl dt .t2 {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .storeList-item a.item:hover .storeList-name dl dt .t1,
  .storeList-item a.item:hover .storeList-name dl dt .t2 {
    color: #E72E35;
  }
}

.storeList-name dl dt {
  margin-bottom: 18px;
}

.storeList-name dl dt .t1 {
  font-weight: 700;
  color: #888888;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .storeList-name dl dt .t1 {
    font-size: 1.2rem;
  }
}

.storeList-name dl dt .t2 {
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .storeList-name dl dt .t2 {
    font-size: 1.8rem;
  }
}

.storeList-name dl dd p {
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .storeList-name dl dd p {
    font-size: 1.3rem;
  }
}

.storeList-info li {
  position: relative;
  padding-left: 35px;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .storeList-info li {
    font-size: 1.3rem;
  }
}

.storeList-info li + li {
  margin-top: 15px;
}

.storeList-info li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.storeList-info li.--time::before {
  background-image: url(../img/common/icon_info_time.svg);
}

.storeList-info li.--tel::before {
  background-image: url(../img/common/icon_info_tel.svg);
}

@media screen and (max-width: 991px) {
  .storeList-btns {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .storeList-btns li {
    width: 48%;
  }
}

@media screen and (min-width: 992px) {
  .storeList-btns li + li {
    margin-top: 15px;
  }
}

.storeList-btns li a {
  border: 1px solid #e72e35;
  border-radius: 5px;
  width: 160px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #e72e35;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 991px) {
  .storeList-btns li a {
    width: 100%;
  }
}

.storeList-btns li a > span {
  position: relative;
  padding-left: 23px;
}

.storeList-btns li a > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .storeList-btns li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .storeList-btns li a > span::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .storeList-btns li a:hover {
    background: #e72e35;
    color: #fff;
  }
  .storeList-btns li a:hover > span::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.storeList-btns li a.disabled {
  pointer-events: none;
  border-color: #ccc;
  color: #ccc;
}

.storeList-btns li.--flyer a > span::before {
  background-image: url(../img/common/icon_flyer.svg);
}

.storeList-btns li.--flyer a.disabled > span::before {
  background-image: url(../img/common/icon_flyer_disabled.svg);
}

@media screen and (min-width: 992px) {
  .storeList-btns li.--flyer a:hover > span::before {
    background-image: url(../img/common/icon_flyer_w.svg);
  }
}

.storeList-btns li.--map a > span::before {
  background-image: url(../img/common/icon_gmap.svg);
}

.storeList-btns li.--map a.disabled > span::before {
  background-image: url(../img/common/icon_gmap_disabled.svg);
}

@media screen and (min-width: 992px) {
  .storeList-btns li.--map a:hover > span::before {
    background-image: url(../img/common/icon_gmap_w.svg);
  }
}

/* プライバシーポリシー等
-------------------------------------------*/
.txtBlk dl + dl {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .txtBlk dl + dl {
    margin-top: 50px;
  }
}

@media screen and (max-width: 991px) {
  .txtBlk dl .ttl-circle {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .txtBlk dl dd p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 991px) {
  .txtBlk dl dd p + .list-dot {
    margin-top: 10px;
  }
}

.txtBlk-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e72e35;
  border-radius: 5px;
  color: #fff;
  padding: 45px;
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .txtBlk-contact {
    justify-content: center;
    padding: 30px;
  }
}

.txtBlk-contact .t1 {
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .txtBlk-contact .t1 {
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .txtBlk-contact .t2 {
    text-align: center;
  }
}

.txtBlk-contact .t2 a {
  color: #fff;
}

.txtBlk-last {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .txtBlk-last {
    margin-top: 50px;
    font-size: 1.6rem;
  }
}

/* 404
-------------------------------------------*/
.notfoundBlk-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  padding-bottom: 40px;
  line-height: 1;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .notfoundBlk-ttl {
    font-size: 2rem;
  }
}

.notfoundBlk-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #e72e35;
  height: 2px;
  width: 80px;
}

.notfoundBlk p {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .notfoundBlk p {
    font-size: 1.3rem;
  }
}

.notfoundBlk-btn {
  margin-top: 60px;
}

/* お知らせ
-------------------------------------------*/
.infoList-item {
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px dotted #d3d3d3;
}

@media screen and (max-width: 991px) {
  .infoList-item {
    padding-bottom: 30px;
  }
}

.infoList-item:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .infoList-item:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 992px) {
  .infoList-item .image img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .infoList-item .txt {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .infoList-item:hover .image img {
    transform: scale(1.1, 1.1);
  }
  .infoList-item:hover .txt {
    color: #E72E35;
  }
}

.infoList-item .image {
  width: 30%;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .infoList-item .image {
    display: none;
  }
}

.infoList-item .txt {
  width: 70%;
  padding-left: 45px;
}

@media screen and (max-width: 991px) {
  .infoList-item .txt {
    width: 100%;
    padding-left: 0;
  }
}

.infoList-item .txt .t1 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .infoList-item .txt .t1 {
    margin-bottom: 15px;
  }
}

.infoList-item .txt .t1 .date {
  font-size: 1.6rem;
  color: #888888;
  width: 7em;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .infoList-item .txt .t1 .date {
    font-size: 1.2rem;
    width: 6.5em;
  }
}

.infoList-item .txt .t1 .tag {
  min-width: 9em;
  background: #b95900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50px;
  height: 28px;
}

@media screen and (max-width: 991px) {
  .infoList-item .txt .t1 .tag {
    font-size: 1rem;
    padding: 5px 8px;
    height: auto;
  }
}

.infoList-item .txt .t2 {
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .infoList-item .txt .t2 {
    font-size: 1.3rem;
  }
}

.pager {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .pager {
    margin-top: 35px;
  }
}

.pager ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager ul li {
  width: 50px;
  height: 50px;
  margin: 0 7px;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .pager ul li {
    width: 40px;
    height: 40px;
  }
}

.pager ul li a,
.pager ul li span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background: #888888;
  border-radius: 50%;
}

@media screen and (min-width: 992px) {
  .pager ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .pager ul li a:hover {
    background: #E72E35;
  }
}

@media screen and (max-width: 991px) {
  .pager ul li a,
  .pager ul li span {
    font-size: 1.6rem;
  }
}

.pager ul li.prev a, .pager ul li.next a {
  background: none;
  position: relative;
}

.pager ul li.prev {
  margin-right: 0;
}

.pager ul li.prev a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-top: 3px solid #E72E35;
  border-right: 3px solid #E72E35;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.pager ul li.next {
  margin-left: 0;
}

.pager ul li.next a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-top: 3px solid #E72E35;
  border-right: 3px solid #E72E35;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pager ul li.current span {
  background: #E72E35;
}

.infoDetail > .inner {
  max-width: 900px;
}

.infoDetail-info {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.infoDetail-info .date {
  font-size: 1.6rem;
  color: #888888;
  width: 7em;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .infoDetail-info .date {
    width: 6.5em;
  }
}

.infoDetail-info .tag {
  min-width: 9em;
  background: #b95900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 50px;
  height: 28px;
}

@media screen and (max-width: 991px) {
  .infoDetail-info .tag {
    font-size: 1rem;
    padding: 5px 8px;
    height: auto;
  }
}

.infoDetail-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .infoDetail-ttl {
    font-size: 2.2rem;
  }
}

.infoDetail-image {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .infoDetail-image {
    margin-bottom: 40px;
  }
}

.infoDetail-main p + h2,
.infoDetail-main p + h3,
.infoDetail-main p + h4,
.infoDetail-main p + h5,
.infoDetail-main p + h6,
.infoDetail-main p + ul,
.infoDetail-main p + ol,
.infoDetail-main ul + h2,
.infoDetail-main ul + h3,
.infoDetail-main ul + h4,
.infoDetail-main ul + h5,
.infoDetail-main ul + h6,
.infoDetail-main ul + ul,
.infoDetail-main ul + ol,
.infoDetail-main ol + h2,
.infoDetail-main ol + h3,
.infoDetail-main ol + h4,
.infoDetail-main ol + h5,
.infoDetail-main ol + h6,
.infoDetail-main ol + ul,
.infoDetail-main ol + ol {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .infoDetail-main p + h2,
  .infoDetail-main p + h3,
  .infoDetail-main p + h4,
  .infoDetail-main p + h5,
  .infoDetail-main p + h6,
  .infoDetail-main p + ul,
  .infoDetail-main p + ol,
  .infoDetail-main ul + h2,
  .infoDetail-main ul + h3,
  .infoDetail-main ul + h4,
  .infoDetail-main ul + h5,
  .infoDetail-main ul + h6,
  .infoDetail-main ul + ul,
  .infoDetail-main ul + ol,
  .infoDetail-main ol + h2,
  .infoDetail-main ol + h3,
  .infoDetail-main ol + h4,
  .infoDetail-main ol + h5,
  .infoDetail-main ol + h6,
  .infoDetail-main ol + ul,
  .infoDetail-main ol + ol {
    margin-top: 30px;
  }
}

.infoDetail-main a {
  color: #06c;
}

.infoDetail-main a:hover {
  text-decoration: underline;
}

.infoDetail-main h2 {
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 15px;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .infoDetail-main h2 {
    font-size: 2.2rem;
  }
}

.infoDetail-main h3,
.infoDetail-main h4,
.infoDetail-main h5,
.infoDetail-main h6 {
  font-weight: 500;
  margin-bottom: 16px;
}

.infoDetail-main h3 {
  font-size: 2.2rem;
}

@media screen and (max-width: 991px) {
  .infoDetail-main h3 {
    font-size: 2rem;
  }
}

.infoDetail-main h4 {
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  .infoDetail-main h4 {
    font-size: 1.8rem;
  }
}

.infoDetail-main h5 {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .infoDetail-main h5 {
    font-size: 1.6rem;
  }
}

.infoDetail-main h6 {
  font-size: 1.6rem;
  border-left: 6px solid #e72e35;
  padding-left: 15px;
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .infoDetail-main h6 {
    font-size: 1.4rem;
  }
}

.infoDetail-main ul > li {
  position: relative;
  padding-left: 1.2em;
}

.infoDetail-main ul > li + li {
  margin-top: 5px;
}

.infoDetail-main ul > li::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  background: #e72e35;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 0.7em;
}

.infoDetail-main ol > li {
  position: relative;
  padding-left: 1.4em;
}

.infoDetail-main ol > li + li {
  margin-top: 5px;
}

.infoDetail-main ol > li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
  color: #e72e35;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
}

.infoDetail-main ol > li:nth-child(1)::before {
  content: "1.";
}

.infoDetail-main ol > li:nth-child(2)::before {
  content: "2.";
}

.infoDetail-main ol > li:nth-child(3)::before {
  content: "3.";
}

.infoDetail-main ol > li:nth-child(4)::before {
  content: "4.";
}

.infoDetail-main ol > li:nth-child(5)::before {
  content: "5.";
}

.infoDetail-main ol > li:nth-child(6)::before {
  content: "6.";
}

.infoDetail-main ol > li:nth-child(7)::before {
  content: "7.";
}

.infoDetail-main ol > li:nth-child(8)::before {
  content: "8.";
}

.infoDetail-main ol > li:nth-child(9)::before {
  content: "9.";
}

.infoDetail-pager {
  margin-top: 160px;
}

@media screen and (max-width: 991px) {
  .infoDetail-pager {
    margin-top: 35px;
  }
}

.infoDetail-pager .inner {
  max-width: 1050px;
}

.infoDetail-pager-wrap {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 50px;
}

.infoDetail-pager ul {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.infoDetail-pager ul li {
  min-width: 140px;
}

.infoDetail-pager ul li a {
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .infoDetail-pager ul li {
    min-width: 100px;
  }
  .infoDetail-pager ul li a {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 992px) {
  .infoDetail-pager ul li a {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .infoDetail-pager ul li a:hover {
    color: #E72E35;
  }
}

.infoDetail-pager ul .prevlink a {
  position: relative;
  padding-left: 65px;
}

@media screen and (max-width: 991px) {
  .infoDetail-pager ul .prevlink a {
    padding-left: 45px;
  }
}

.infoDetail-pager ul .prevlink a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url(../img/common/icon_arrow_l.svg) left center no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}

@media screen and (max-width: 991px) {
  .infoDetail-pager ul .prevlink a::before {
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 992px) {
  .infoDetail-pager ul .prevlink a::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .infoDetail-pager ul .prevlink a:hover::before {
    background-image: url(../img/common/icon_arrow_l_w.svg);
    left: -3px;
  }
}

.infoDetail-pager ul .nextlink a {
  position: relative;
  padding-right: 65px;
}

@media screen and (max-width: 991px) {
  .infoDetail-pager ul .nextlink a {
    padding-right: 45px;
  }
}

.infoDetail-pager ul .nextlink a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  background: url(../img/common/icon_arrow_l.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .infoDetail-pager ul .nextlink a::before {
    width: 32px;
    height: 32px;
  }
}

@media screen and (min-width: 992px) {
  .infoDetail-pager ul .nextlink a::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .infoDetail-pager ul .nextlink a:hover::before {
    background-image: url(../img/common/icon_arrow_l_w.svg);
    right: -3px;
  }
}

@media screen and (max-width: 991px) {
  .infoDetail-pager ul .backlink {
    margin-top: 3em;
  }
}

.infoOthers {
  margin-top: 110px;
}

@media screen and (max-width: 991px) {
  .infoOthers {
    margin-top: 75px;
  }
}

.infoOthers .ttl {
  margin-bottom: 55px;
}

@media screen and (max-width: 991px) {
  .infoOthers .ttl {
    margin-bottom: 35px;
  }
}

.infoOthers-slider {
  position: relative;
  overflow: hidden;
}

.infoOthers-slider .item {
  padding: 0 12px;
}

@media screen and (min-width: 992px) {
  .infoOthers-slider .item .image img {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .infoOthers-slider .item .txt {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .infoOthers-slider .item:hover .image img {
    transform: scale(1.1, 1.1);
  }
  .infoOthers-slider .item:hover .txt {
    color: #E72E35;
  }
}

.infoOthers-slider .item .txt {
  padding-top: 20px;
}

.infoOthers-slider .item .txt .t1 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.infoOthers-slider .item .txt .t1 .date {
  font-size: 1.6rem;
  color: #888888;
  width: 7em;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .item .txt .t1 .date {
    font-size: 1.2rem;
    width: 6.5em;
  }
}

.infoOthers-slider .item .txt .t1 .tag {
  width: 9em;
  background: #b95900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.0rem;
  border-radius: 50px;
  height: 28px;
   width: auto;
    max-width: 100%;
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .item .txt .t1 .tag {
    font-size: 1rem;
    padding: 5px 8px;
    height: auto;
  }
}

.infoOthers-slider .item .txt .t2 {
  font-weight: 500;
}

.infoOthers-slider .item .image {
  overflow: hidden;
  border-radius: 8px;
}

.infoOthers-slider .item .image img {
  max-width: 472px;
  width: 100%;
  height: auto;
  display: block;
}

.infoOthers-slider .slide-arrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  pointer-events: none;
}

.infoOthers-slider .slide-arrow .slick-next,
.infoOthers-slider .slide-arrow .slick-prev {
  color: transparent;
  outline: none;
  border: none;
  width: 122px;
  height: 122px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  pointer-events: all;
  margin-top: -80px;
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .slide-arrow .slick-next,
  .infoOthers-slider .slide-arrow .slick-prev {
    width: 64px;
    height: 64px;
    margin-top: -50px;
  }
}

.infoOthers-slider .slide-arrow .slick-prev {
  margin-left: -50px;
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .slide-arrow .slick-prev {
    margin-left: -30px;
  }
}

.infoOthers-slider .slide-arrow .slick-prev::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  transform: rotate(-135deg);
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .slide-arrow .slick-prev::after {
    right: 10px;
    width: 10px;
    height: 10px;
  }
}

.infoOthers-slider .slide-arrow .slick-next {
  margin-right: -50px;
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .slide-arrow .slick-next {
    margin-right: -30px;
  }
}

.infoOthers-slider .slide-arrow .slick-next::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 25px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  transform: rotate(45deg);
}

@media screen and (max-width: 991px) {
  .infoOthers-slider .slide-arrow .slick-next::after {
    left: 10px;
    width: 10px;
    height: 10px;
  }
}

.tag.--news-information {
  background: #e72e35 !important;
}

.tag.--new-store {
  background: #f0b001 !important;
}

.tag.--store-information {
  background: #54a1d9 !important;
}

.tag.--shop-update {
  background: #b95900 !important;
}

.tag.--special-feature {
  background: #64be68 !important;
}

.tag.--group-information {
  background: #d357db !important;
}

.tag.--event-news {
  background: #68d0dc !important;
}

.tag.--others {
  background: #888889 !important;
}

/* list
-------------------------------------------*/
.list-no {
  counter-reset: number 0;
}

.list-no > li {
  position: relative;
  padding-left: 1.3em;
}

.list-no > li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
  counter-increment: number 1;
  /* number カウンタの増加数をセット */
  content: counter(number) ".";
}

.list-no.--wide > li + li {
  margin-top: 10px;
}

.list-caution > li {
  position: relative;
  padding-left: 1.3em;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .list-caution > li {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.list-caution > li::before {
  content: "※";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list-dot > li {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .list-dot > li {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .list-dot > li:not(:last-child) {
    margin-bottom: 5px;
  }
}

.list-dot > li::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  background: #e72e35;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 0.8em;
}

.list-dot.--wide > li + li {
  margin-top: 10px;
}

/*------------------------------------
共通
------------------------------------*/
/* アコーディオン
-------------------------------------------*/
.js_ac_box {
  height: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  visibility: hidden;
  overflow: hidden;
}

.is_open + .js_ac_box {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* さらに表示
-------------------------------------------*/
.js_more_items .item {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.js_more_items .item.hide {
  height: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  z-index: -1;
}

/* タイトル
-------------------------------------------*/
.ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.8;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .ttl {
    margin-bottom: 25px;
  }
}

.ttl .t1 {
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
}

@media screen and (max-width: 991px) {
  .ttl .t1 {
    font-size: 1.8rem;
  }
}

.ttl .t2 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #e72e35;
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .ttl .t2 {
    font-size: 1.2rem;
  }
}

.ttl.--topics .t1 {
  padding-left: 50px;
  margin-left: -50px;
}

@media screen and (max-width: 991px) {
  .ttl.--topics .t1 {
    padding-left: 35px;
    margin-left: -35px;
  }
}

.ttl.--topics .t1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/index/icon_hot_topics.svg) left center no-repeat;
  background-size: contain;
  width: 31px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttl.--topics .t1::before {
    width: 25px;
  }
}

.ttl.--store .t1 {
  padding-left: 50px;
  margin-left: -50px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .ttl.--store .t1 {
    padding-left: 42px;
    margin-left: -42px;
  }
}

.ttl.--store .t1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/index/icon_store_flyer.svg) left center no-repeat;
  background-size: contain;
  width: 40px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttl.--store .t1::before {
    width: 35px;
  }
}

.ttl.--store .t2 {
  color: #ffc92e;
}

.ttl.--movie {
  flex-direction: row;
}

@media screen and (max-width: 991px) {
  .ttl.--movie {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ttl.--movie .t1 {
  padding-left: 60px;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .ttl.--movie .t1 {
    padding-left: 42px;
  }
}

.ttl.--movie .t1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/index/icon_movie.svg) left center no-repeat;
  background-size: contain;
  width: 48px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttl.--movie .t1::before {
    width: 36px;
  }
}

.ttl.--movie .t2 {
  color: #ffc92e;
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  .ttl.--movie .t2 {
    margin-left: 0;
    padding-left: 42px;
  }
}

.ttl.--info, .ttl.--company {
  flex-direction: row;
}

.ttl.--info .t2, .ttl.--company .t2 {
  color: #e72e35;
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  .ttl.--info .t2, .ttl.--company .t2 {
    margin-left: 10px;
    padding-top: 0.3em;
  }
}

@media screen and (max-width: 991px) {
  .ttl.--company {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .ttl.--company .t2 {
    margin: 0;
    padding-top: 0;
  }
}

.ttl.--border .t1 {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.ttl.--border .t1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #333 2px, transparent 2px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

@media screen and (max-width: 991px) {
  .ttl.--border .t1::before {
    background-size: 5px 1px;
    height: 1px;
    background-image: linear-gradient(to right, #333 1px, transparent 1px);
  }
}

.ttl.--border .t1 > span {
  position: relative;
  z-index: 2;
  padding: 0 30px;
  background: #f8f7f5;
}

@media screen and (max-width: 991px) {
  .ttl.--border .t1 > span {
    padding: 0 25px;
  }
}

.ttl.--howtouse .t1 {
  padding-left: 70px;
  margin-left: -70px;
}

@media screen and (max-width: 991px) {
  .ttl.--howtouse .t1 {
    padding-left: 35px;
    margin-left: -35px;
  }
}

.ttl.--howtouse .t1::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/olympic_celler/icon_wine.svg) left center no-repeat;
  background-size: contain;
  width: 59px;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .ttl.--howtouse .t1::before {
    width: 35px;
  }
}

.ttl-circle {
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .ttl-circle {
    margin-bottom: 10px;
  }
}

.ttl-circle.--mb {
  margin-bottom: 25px;
}

.ttl-circle > span {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 25px;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .ttl-circle > span {
    font-size: 1.6rem;
  }
}

.ttl-circle > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  margin: auto;
  width: 12px;
  height: 12px;
  background: #e72e35;
  border-radius: 50%;
  z-index: 2;
}

.ttl-circle > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e72e35;
}

.ttl-circle > span .t1 {
  padding-left: 1em;
  font-weight: 500;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .ttl-circle > span .t1 {
    font-size: 1.4rem;
  }
}

.ttl-border {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 45px;
  padding: 0 0 15px 0;
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}

@media screen and (max-width: 991px) {
  .ttl-border {
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
}

.ttl-border > span {
  padding-left: 55px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .ttl-border > span {
    padding-left: 40px;
  }
}

.ttl-border > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.ttl-border.--info > span::before {
  background-image: url(../img/store_flyer/icon_info.svg);
  width: 46px;
  height: 46px;
}

@media screen and (max-width: 991px) {
  .ttl-border.--info > span::before {
    width: 30px;
    height: 30px;
  }
}

.ttl-border.--guide > span::before {
  background-image: url(../img/store_flyer/icon_guide.svg);
  width: 43px;
  height: 43px;
}

@media screen and (max-width: 991px) {
  .ttl-border.--guide > span::before {
    width: 30px;
    height: 30px;
  }
}

.ttl-border.--service > span::before {
  background-image: url(../img/store_flyer/icon_service.svg);
  width: 39px;
  height: 39px;
}

@media screen and (max-width: 991px) {
  .ttl-border.--service > span::before {
    width: 30px;
    height: 30px;
  }
}

.ttl-border.--news > span::before {
  background-image: url(../img/store_flyer/icon_news.svg);
  width: 35px;
  height: 29px;
}

@media screen and (max-width: 991px) {
  .ttl-border.--news > span::before {
    width: 28px;
    height: 23.200px;
  }
}

/* リード文
-------------------------------------------*/
.leadtxt {
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .leadtxt {
    font-size: 1.3rem;
  }
}

.leadtxt.--bold {
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .leadtxt.--bold {
    font-size: 1.3rem;
  }
}

/* ボタン
-------------------------------------------*/
.btn-arrow {
  display: flex;
  justify-content: center;
  margin: auto;
  max-width: 320px;
  width: 80%;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  border: 1px solid #dedede;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  box-shadow: 0 3px 0 0 #dedede;
}

.btn-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #e72e35;
  border-right: 2px solid #e72e35;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-arrow.--blank::after {
  content: none;
}

.btn-arrow.--blank::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_blank_red.svg) left center no-repeat;
  background-size: contain;
  border: none;
}

@media screen and (max-width: 991px) {
  .btn-arrow {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 992px) {
  .btn-arrow {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-arrow::after {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-arrow:hover {
    border-color: #e72e35;
    background: #e72e35;
    color: #fff;
    box-shadow: 0 3px 0 0 #b7161f;
  }
  .btn-arrow:hover::after {
    border-color: #fff;
  }
  .btn-arrow.--blank::before {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .btn-arrow.--blank:hover::before {
    background-image: url(../img/common/icon_blank_w.svg);
  }
}

/* リンク
-------------------------------------------*/
.link-arrow {
  position: relative;
  padding-right: 45px;
  font-weight: 700;
  display: table;
}

@media screen and (max-width: 991px) {
  .link-arrow {
    padding-right: 35px;
  }
}

.link-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_arrow.svg) left center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .link-arrow::before {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 992px) {
  .link-arrow {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .link-arrow::before {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .link-arrow:hover {
    color: #e72e35;
  }
  .link-arrow:hover::before {
    background-image: url(../img/common/icon_arrow_w.svg);
    right: -3px;
  }
}

.link-arrow.--w {
  color: #fff;
}

.link-arrow.--w::before {
  background-image: url(../img/common/icon_arrow2_w.svg);
}

@media screen and (min-width: 992px) {
  .link-arrow.--w:hover::before {
    background-image: url(../img/common/icon_arrow2.svg);
  }
}

.link-external {
  position: relative;
  padding-right: 30px;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .link-external {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .link-external:hover {
    color: #e72e35;
  }
}

.link-external::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: url(../img/common/icon_blank_detail.svg) left center no-repeat;
  background-size: contain;
}

/* YouTubeレスポンシブ */
.responsive-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 投稿マージン制御 */
.mt5 { margin-top: 5px; }

.mt10 { margin-top: 10px; }

.mr15 { margin-right: 15px; }

.mt15 { margin-top: 15px; }

.mt20 { margin-top: 20px; }

.mt30 { margin-top: 30px; }

.mt40 { margin-top: 40px; }

.mt50 { margin-top: 50px; }

.mb5 { margin-bottom: 5px; }

.mb10 { margin-bottom: 10px; }

.mb15 { margin-bottom: 15px; }

.mb20 { margin-bottom: 20px; }

.mb25 { margin-bottom: 25px; }

.mb30 { margin-bottom: 30px; }

.mb40 { margin-bottom: 40px; }

.mb50 { margin-bottom: 50px; }


/* グループ企業リンク設定 */
.group-link  {
    color: #b32424;
    text-decoration: underline;
}

/* エネルギーの推移グラフ */
.energy-section {
  background-color: #e53e3e;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  display: inline-block;
  border-radius: 0;
}

.charts-container {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  justify-content: center;
}

.chart {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.chart-wrapper {
  height: 400px;
  position: relative;
}

.axis-label {
  position: absolute;
  right: -8px;
  bottom: 28px;
  font-size: 11px;
  text-align: center;
  line-height: 1.4;
  z-index: 10;
}

.data-table {
  background-color: #f7f7f7;
  margin-top: 60px;
  padding: 0 40px;
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.data-table th,
.data-table td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid #d3d3d3;
  vertical-align: middle;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: none;
}

.year-header {
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

.metric-label {
  font-weight: bold;
  text-align: left;
  padding-left: 20px;
  color: #333;
  white-space: nowrap;
}

.estimated {
  font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .energy-section {
    font-size: 18px;
    padding: 12px 24px;
  }

  .charts-container {
    flex-direction: column;
    gap: 40px;
  }

  .chart {
    max-width: 100%;
  }

  .chart-wrapper {
    height: 300px;
  }

  .data-table {
    padding: 0 20px;
  }

  .data-table table {
    font-size: 14px;
  }

  .data-table th,
  .data-table td {
    padding: 12px 8px;
  }

  .metric-label {
    padding-left: 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .chart-wrapper {
    height: 250px;
  }

  .data-table {
    overflow-x: auto;
  }

  .data-table table {
    font-size: 12px;
    width: 500px;
  }

  .data-table th,
  .data-table td {
    padding: 8px 4px;
  }

  .metric-label {
    padding-left: 8px;
    font-size: 11px;
  }
}
