@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");

/*===================================================


	reset.css


====================================================*/
* {
  -webkit-touch-callout: none;
  user-select: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  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,
img,
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;
}

html,
body {
}

html {
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body:not(.page--home) .wrap {
  padding: 4vw;
  overflow-x: initial;
}
header {
  display: none;
}
ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}
input,
select {
  vertical-align: middle;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

img {
  width: 100%;
  vertical-align: bottom;
  line-height: 1;
  pointer-events: none;
}

.sml {
  font-size: 0.85em;
}

.delighter {
  transition: all 0.5s ease-out;
  opacity: 0;
  filter: blur(7px);
}

.delighter.started {
  transform: none;
  opacity: 1;
  filter: blur(0px);
}

.btnList {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 600px;
  margin: 50px auto;
}
.btnList li {
  width: 48%;
  margin: 0 auto;
}
.btnList li a {
  display: block;
  background: #000;
  color: #fff;
  padding: 25px;
  border-radius: 999px;
  font-size: 18px;
}
.btnList li a:hover {
  opacity: 0.7;
  transition: 0.4s;
}
.anc {
  display: block;
  position: absolute;
  top: -20px;
}

.ancPoint {
  position: relative;
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}
.attentionList {
  margin: 0 0 20px 0;
}
.attentionList li {
  font-size: 14px;
  line-height: 1.5;
  text-indent: -1em;
  margin: 0 0 5px 1em;
  padding: 0;
}
.attentionList li:last-child {
  margin: 0 0 0 1em;
}
.attentionTxt {
  font-size: 11px;
  text-align: center;
  margin: 10px auto 0;
}
.lead {
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
  margin: 0 auto 15px;
}
.lead .fa {
  position: relative;
  top: 4px;
}

main {
  padding-bottom: 0;
  min-height: 100vh;
}
a[target="_blank"]:not([class])::after {
  display: none;
}

footer {
  padding: 40px;
}

@keyframes upIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes rightIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(30px, 0);
    transform: translate(30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes leftIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-30px, 0);
    transform: translate(-30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes blurAnim {
  0% {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
    -moz-filter: blur(0);
    -ms-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

.contents_all {
  overflow: hidden;
}

.loaded .loading {
  z-index: -999;
  opacity: 0;
  pointer-events: none;
}
.contents {
  padding: 120px 6vw;
}
.contents:nth-child(even) {
  background: #1e12014f;
}

.inBox {
  margin: auto;
  position: relative;
  width: 90%;
  max-width: 1200px;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.star {
  position: absolute;
  display: block;
  background: #fff9de;
  box-shadow: 0 0 6px #ffffffb3;
  opacity: 0;
  animation: twinkle 1.75s infinite;
  border-radius: 50%;
}

@keyframes twinkle {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.mov {
  position: relative;
  width: 80%;
  overflow: hidden;
  box-shadow: 0 0 20px #00000075;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.bgBox {
  width: 100%;
  height: 100%;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.6s;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  opacity: 1;
}
.bg01 {
  opacity: 1;
  background: url(/static/kobukuro/official/feature/tour2025_dvd/images/bg_main_S7y3DuBY.jpg) no-repeat center center;
  background-size: cover;
}

.fixedBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  opacity: 0;
}
.loaded .fixedBtn {
  animation: upIn 0.5s ease 1.8s 1 forwards;
}
.fixedBtn a {
  background: #fff;
  display: block;
  color: #694929;
  padding: 10px 20px 14px 22px;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  transition: 0.4s;
  line-height: 1.4;
  box-shadow: 0 0 20px #00000075;
}

.fixedBtn a .sml {
  font-size: 0.7em;
}

.slick-slider {
  margin: 0 auto 80px;
  width: 70%;
}
.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  opacity: 0.25;
  color: #fff;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fff;
}
.arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 20px 0 0;
  position: relative;
}

.prev-arrow,
.next-arrow {
  display: block;
  width: 50px;
  height: 50px;
  background: #bb87dd;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 50%;
}

.prev-arrow {
  transform: rotate(180deg);
  left: -65px;
}
.next-arrow {
  right: -65px;
}
.prev-arrow::before,
.next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
/*===================================================

	mainVisual

====================================================*/

#mainVisual {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 44vw;
  margin: 0;
}
#mainVisual .mainInner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mainVisual .mainInner h2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainVisual .mainInner h2 .mainlogo {
  opacity: 0;
  transition: 0.7s ease 0.3s;
  transform: scale(1.2);
  margin: 0 auto 0;
}

.loaded #mainVisual .mainInner h2 .mainlogo {
  opacity: 1;
  transform: none;
}

#mainVisual .mainInner h2 .release_txt {
  opacity: 0;
  width: 64%;
  transform: scale(1.2);
  clip-path: inset(0 100% 0 0);
  margin: 0 auto;
  transition: 0.5s ease 0.6s;
  line-height: 0;
}
.loaded #mainVisual .mainInner h2 .release_txt {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}
.loaded #mainVisual .mainInner h2 .inner {
  text-align: center;
  margin: 80px auto 0;
  text-indent: 0.3em;
  position: relative;
  padding: 0 0 8px 0;
  display: block;
  font-size: 49px;
  letter-spacing: 0.3em;
  font-family: barlow-condensed, sans-serif;
  font-weight: 400;
  line-height: 1.4em;
}

#mainVisual .mainInner h2.kv_photo {
  width: 50%;
  margin-right: 50px;
}

@keyframes bgAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

#mainVisual .sns {
  position: fixed;
  right: 2%;
  top: 3%;
  z-index: 1;
}
#mainVisual .sns .list--sns {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
#mainVisual .sns .list--sns li {
  margin: 0 20px 0 0;
}
#mainVisual .sns .list--sns li:last-child {
  margin: 0;
}
#mainVisual .sns .list--sns li a {
  font-size: 26px;
  transition: 0.4s;
}
#mainVisual .sns .list--sns li .links {
  display: none;
  position: absolute;
  top: 2em;
  left: 5px;
  width: 130px;
  text-align: left;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}
#mainVisual .sns .list--sns li .links a {
  font-size: 13px;
  margin: 5px 0;
  display: block;
  text-align: center;
}
#mainVisual .sns .list--sns li .ico {
  font-size: 24px;
}
#mainVisual .sns .list--sns li svg {
  fill: #fff;
  width: 25px;
  height: 23px;
  position: relative;
  top: 3px;
}

.scrolldown {
  position: absolute;
  left: 2%;
  bottom: 3%;
  height: 50px;
  display: none;
}
.scrolldown span {
  position: absolute;
  left: -3px;
  top: -40px;
  font-size: 12px;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 30px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

.bgLogo {
  position: absolute;
  bottom: -8%;
  right: -4%;
  width: 31%;
  z-index: 0;
}
h5 {
  text-align: center;
  margin: 0 auto 80px;
  text-indent: 0.3em;
  position: relative;
  padding-bottom: 32px;
}
h5.ja {
}
h5 span.inner {
  position: relative;
  padding: 0 0 8px 0;
  line-height: 1;
  display: block;
  font-size: 49px;
  letter-spacing: 0.3em;
  font-family: barlow-condensed, sans-serif;
  font-weight: 400;
}
h5::before {
  content: "";
  height: 2px;
  width: 55px;
  display: block;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, #e6bf5f, #ad6629);
  transform: translateX(-50%);
}

h5 .subtit {
  font-size: 15px;
}

.mini {
  font-size: 80%;
}

.btn a {
  display: block;
  max-width: 380px;
  text-align: center;
  padding: 24px;
  border-radius: 999px;
  font-size: 18px;
  transition: 0.4s;
  line-height: 1.4;
  margin: 0px auto 15px;
  color: #fff;
  background: linear-gradient(90deg, #e6bf5f, #ad6629);
  font-weight: bold;
}
.btn:last-child a {
  margin-bottom: 0;
}

.anc {
  display: block;
  position: absolute;
  top: -20px;
}

.ancPoint {
  position: relative;
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}
.copyright {
  font-size: 12px;
}

/*===================================================

	leadArea

====================================================*/
#leadArea .lead {
  font-size: 16px;
  line-height: 2.4;
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: 0.08em;
}

#leadArea .lead:last-child {
  margin-bottom: 0;
}

.lead_wrap {
  margin-bottom: 60px;
}
.lead_wrap:last-child {
  margin-bottom: 0;
}

.lead_tit {
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  margin-bottom: 32px;
}

.lead_wrap.lead_box {
  border: 1px solid #ffffff70;
  background: #00000054;
  padding: 40px;
}

/*===================================================

	albumArea

====================================================*/

.product_wrap .tit {
  font-size: 25px;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.product_wrap .date {
  font-size: 18px;
  margin-bottom: 32px;
}

.track_info {
  padding: 20px;
  background: rgb(246 200 178 / 10%);
  margin: 0 auto 32px;
  border: 1px solid #ffffff70;
  font-size: 15px;
}
.track_info .track_info_tit {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.jkList {
  width: 30%;
}

.jkList li {
}

.jkList li .jk {
  margin-bottom: 15px;
  box-shadow: 0 5px 15px #00000054;
}
.jkList li .jk:last-child {
  margin-bottom: 0;
}

.jkList li .tit {
  font-size: 15px;
  text-align: right;
  margin: 0;
}

.product_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.product_wrap:last-child {
  margin-bottom: 0;
}

.track_wrap {
  width: 65%;
}

.songList {
  column-count: 2;
}
.songList > li {
  break-inside: avoid;
  font-size: 14px;
  margin-bottom: 5px;
}

.track_tit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  border-top: 1px solid;
  padding-top: 20px;
  letter-spacing: 0.1em;
}

.track_desc {
  border-top: 1px solid;
  padding-top: 20px;
  margin-top: 16px;
}

.songList > li .num {
  font-family: barlow-condensed, sans-serif;
  margin-right: 6px;
  opacity: 0.8;
}

/*===================================================

	typeArea

====================================================*/

.type_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.type_tit {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 34px;
  text-align: center;
  letter-spacing: 0.1em;
}

#typeArea .typeDetail {
  width: 49%;
  border: 1px solid #ffffff70;
  background: #00000054;
  padding: 25px;
  margin-bottom: 25px;
}
#typeArea .typeDetail dt {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 16px 0;
  border-left: 3px solid;
  padding-left: 16px;
  line-height: 1.5;
}
#typeArea .typeDetail dt .type {
  border: 1px solid;
  font-size: 0.7em;
  padding: 0em 0.5em;
  vertical-align: 2px;
  display: inline-block;
  margin-right: 5px;
}

#typeArea .typeDetail dt .mini {
  font-size: 0.7em;
}

#typeArea .typeDetail dd {
}
#typeArea .typeDetail dd .mini {
  font-size: 60%;
  margin-left: 3px;
}

#typeArea .typeDetail dd .price {
  font-size: 23px;
  font-weight: bold;
}

#typeArea .typeDetail .txtArea {
  background: rgb(255 255 255 / 11%);
  padding: 20px;
  margin: 20px 0 0 0;
  font-size: 14px;
}

#typeArea .listBox {
  padding: 3vw;
  background: rgba(104, 62, 146, 0.3);
  margin: 0 auto 50px;
  border-radius: 20px;
}
#typeArea .listBox .tit {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  margin: 0 auto 10px;
  letter-spacing: 0.2em;
}
#typeArea .listBox .subTit {
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  margin: 0 0 30px 0;
  border-bottom: 1px solid;
  padding: 0 0 30px 0;
}
#typeArea .listBox .list {
}
#typeArea .listBox .list li {
  font-size: 18px;
  margin: 0 0 15px 0;
}
#typeArea .listBox .list li:last-child {
  margin: 0;
}
#typeArea .listBox .txt {
  margin: 25px 0 0 0;
  font-size: 15px;
}

/*===================================================

	fcArea

====================================================*/

#fcArea .icon {
  width: 148px;
  height: 148px;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  background: linear-gradient(90deg, #e6bf5f, #ad6629);
  border-radius: 999px;
  left: 0;
  top: -50px;
}
#fcArea .icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#fcArea .lead {
  margin: 0 0 50px 0;
  font-size: 16px;
  line-height: 2.4;
  text-align: center;
  letter-spacing: 0.08em;
}
#fcArea .date {
  padding: 30px;
  margin: 0 0 60px 0;
  text-align: center;
  border: 1px solid #ffffff70;
  background: #00000054;
}
#fcArea .date dt {
  font-size: 18px;
  font-weight: bold;
}
#fcArea .date dd {
  font-size: 24px;
  font-weight: bold;
}

.through {
  text-decoration: line-through;
}
.fin_txt {
  color: #ff4d4d;
  font-size: 14px;
}

#fcArea .price {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 0 0 50px 0;
}

#fcArea .price_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#fcArea .price_wrap .date {
  width: 48%;
}

#fcArea .box {
  padding: 42px;
  background: rgb(246 200 178 / 10%);
  margin: 0 auto 60px;
  border: 1px solid #ffffff70;
}

#fcArea .box:last-child {
  margin-bottom: 0;
}

#fcArea .box dt {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 24px 0;
  border-bottom: 1px solid #ffffff66;
  padding-bottom: 16px;
}

#fcArea .box dd {
}

#fcArea .box {
  padding: 42px;
  background: rgb(246 200 178 / 10%);
  margin: 0 auto 60px;
  border: 1px solid #ffffff70;
}

#fcArea .box .phList {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2%;
  margin-bottom: 32px;
}

#fcArea .box .phList li {
  width: 30%;
}

#fcArea .box .phList li.one {
  width: 60%;
  margin: 0 auto 20px;
}
#fcArea .box .phList.two {
  width: 66%;
  margin: auto;
}
#fcArea .box .phList.two li {
  width: 47%;
}
#fcArea .box .lead {
  font-size: 16px;
  text-align: left;
  margin: 0 0 22px 0;
  line-height: 1.8;
}
#fcArea .box .lead:last-child {
  margin-bottom: 0;
}

#fcArea .box .benefitList > li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
}

#fcArea .box .txt {
  font-size: 15px;
  text-align: left;
  margin: 0 0 20px 0;
  line-height: 2;
  padding: 20px 30px;
  border: 1px solid;
}
#fcArea .box .txt .sml {
  font-size: 0.8em;
  display: inline-block;
  line-height: 1.6;
}

#fcArea .box .txt:last-child {
  margin-bottom: 0;
}

#fcArea .itembox {
  padding: 42px;
  background: rgb(246 200 178 / 10%);
  margin: 0 auto 60px;
  border: 1px solid #ffffff70;
}

#fcArea .itembox:last-child {
  margin-bottom: 0;
}

#fcArea .itembox dt {
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  margin: 0 0 24px 0;
  border-bottom: 1px solid #ffffff66;
  padding-bottom: 16px;
}

#fcArea .itembox dd {
}

#fcArea .itembox {
  padding: 42px;
  background: rgb(246 200 178 / 10%);
  margin: 0 auto 60px;
  border: 1px solid #ffffff70;
}

#fcArea .itembox .phList {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2%;
  margin-bottom: 32px;
}

#fcArea .itembox .phList li {
  width: 30%;
}

#fcArea .itembox .phList li.one {
  width: 60%;
  margin: 0 auto 20px;
}
#fcArea .itembox .phList.two {
  width: 66%;
  margin: auto;
}
#fcArea .itembox .phList.two li {
  width: 47%;
}
#fcArea .itembox .lead {
  font-size: 16px;
  text-align: left;
  margin: 0 0 22px 0;
  line-height: 1.8;
}
#fcArea .itembox .lead:last-child {
  margin-bottom: 0;
}

#fcArea .itembox .benefitList > li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;
}

#fcArea .itembox .txt {
  font-size: 15px;
  text-align: left;
  margin: 0 0 20px 0;
  line-height: 2;
  padding: 20px 30px;
  border: 1px solid;
}
#fcArea .itembox .txt .sml {
  font-size: 0.8em;
  display: inline-block;
  line-height: 1.6;
}

#fcArea .itembox .txt:last-child {
  margin-bottom: 0;
}

#fcArea .itembox .tit {
  font-size: 21px;
}

#fcArea .itembox .product_wrap {
  display: block;
}

#fcArea .itembox .product_wrap .jkList {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

#fcArea .itembox .attentionList {
  text-align: end;
  margin-bottom: 30px;
  margin-top: 10px;
}

#fcArea .itembox .product_wrap .jkList li {
  width: 45%;
}

#fcArea .delivery {
  background: rgb(255 255 255);
  padding: 40px;
  color: #000;
  box-shadow: 0 0 20px #00000075;
}

#fcArea .delivery .txt {
  text-align: center;
  font-size: 21px;
  margin: 0 0 20px 0;
  line-height: 1.8;
}
#fcArea .delivery .txt .red.bold {
  font-weight: bold;
  color: #ff0000;
}

#fcArea .delivery .btnBox {
}
#fcArea .delivery .btnBox dt {
  font-size: 25px;
  text-align: center;
  margin: 0 0 16px 0;
  font-weight: bold;
}

#fcArea .delivery .btnBox dd {
}

#fcArea .delivery .btnBox dd .phList {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto 50px;
  width: 80%;
}

#fcArea .delivery .btnBox dd .phList li {
  width: 48%;
}
#fcArea .delivery .btnBox dd .phList li a {
  display: block;
  transition: 0.4s;
}
#fcArea .delivery .txtBox {
  margin: 0 0 50px 0;
}
#fcArea .delivery .txtBox .txt {
  font-size: 17px;
}

#fcArea .delivery .attentionList {
  width: fit-content;
  margin: 0 auto 20px;
}

#fcArea .delivery .accountBox {
  padding: 30px;
  background: #dadad9;
  margin: 0 auto 30px;
}
#fcArea .delivery .accountBox dt {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
#fcArea .delivery .accountBox dd {
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

#fcArea .date dd.end {
  text-decoration: line-through;
}
#fcArea .date dd .mini {
  font-size: 15px;
}
.fin_txt {
  font-size: 12px;
}

#fcArea .addTxt {
  text-align: center;
  margin: 50px 0 25px 0;
}
#fcArea .addTxt p {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  font-size: 22px;
  color: #f4912a;
  font-weight: bold;
}
#fcArea .addTxt p:before,
#fcArea .addTxt p:after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: #f4912a;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
}
#fcArea .addTxt p:before {
  left: 0;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}
#fcArea .addTxt p:after {
  right: 0;
}

#fcArea .btnBox dd .phList {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 auto 50px;
  width: 80%;
}

#fcArea .btnBox dd .phList li {
  width: 48%;
}

#fcArea .btnBox dd .phList li a {
  display: block;
  transition: 0.4s;
}

.step_wrap {
  border: 1px solid;
  padding: 26px 30px;
  margin-bottom: 36px;
  margin-top: 36px;
}

.step_tit {
  font-weight: bold;
  margin-bottom: 15px;
  border-left: 3px solid;
  padding-left: 12px;
}
.step_list > li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
  margin-bottom: 10px;
}
.step_list > li:last-child {
  margin-bottom: 0;
}

.step_list > li .attentionList {
  padding-top: 10px;
}

.attention {
  margin: 120px 0;
}

.txt {
  margin-bottom: 20px;
}
.txt:last-child {
  margin-bottom: 0;
}

.tit_center {
  text-align: center;
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 24px;
}

.btn_list > li {
  padding: 24px;
  margin-bottom: 4px;
  text-align: center;
  background: #ffffff21;
}
.btn_list > li:last-child {
  margin-bottom: 0;
}
.btn_list > li .btn_tit {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

#shopArea {
  text-align: center;
}
#shopArea .inBox {
  padding: 3vw;
  background: rgba(104, 62, 146, 0.3);
  margin: 0 auto;
  border-radius: 20px;
}
#shopArea h2 + .btn03 {
  margin: 0 0 60px;
}

#shopArea .shoptit {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #ffffff66;
  padding-bottom: 15px;
}

#shopArea .lead {
  font-size: 17px;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.6;
}
#shopArea .pic {
  line-height: 0;
}

#shopArea .shopTxt {
  padding: 20px 25px;
}

#shopArea .shopName {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 2px;
}
#shopArea .tokuten {
  font-size: 17px;
  font-weight: bold;
}

#shopArea p {
  font-size: 16px;
}

#shopArea .otherShop {
  border: #6880af solid 2px;
  padding: 15px;
  margin-top: 40px;
  font-size: 18px;
}

#shopArea .shopBox {
  margin-bottom: 45px;
}

#shopArea .shopHalf {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#shopArea .shopHalf .shopBox {
  width: 48%;
}

#shopArea .jacket {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 0;
  background-color: rgb(246 178 241 / 10%);
  padding: 0;
  flex-wrap: wrap;
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

#shopArea .attentionList {
  margin: 30px 0 0px;
  text-align: left;
}
#shopArea .attentionList li {
  font-size: 14px;
}
#shopArea .jacket li {
  width: 48%;
}
#shopArea .jacket.rakuten li {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#shopArea .jacket.rakuten li.re {
  flex-direction: row-reverse;
}
#shopArea .jacket li.normal {
  width: 41.6%;
}
#shopArea .jacket li.col1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: #1b2b4d solid 1px;
  padding-right: 6%;
  width: 53%;
}
#shopArea .jacket li .pic {
  line-height: 0;
}
#shopArea .jacket li p + .pic {
  margin-top: 40px;
}
#shopArea .jacket li .pic.v-center {
  padding-top: 100%;
  position: relative;
}
#shopArea .jacket li .pic.v-center img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#shopArea .jacket li .pic p {
  text-align: right;
  line-height: 1.6;
  font-size: 12px;
  font-weight: normal;
  margin-top: 5px;
  letter-spacing: 0.05em;
}
#shopArea .jacket li p {
  color: #ffffff;
  text-align: left;
}
#shopArea .jacket li p span {
  font-weight: normal;
  font-size: 14px;
}
#shopArea .jacket li .note {
  font-size: 14px;
  font-weight: normal;
}
#shopArea .jacket .rakutenTxt {
  color: #000;
  font-size: 14px;
  text-align: left;
  margin-bottom: 20px;
}

#shopArea .shopHalf .jacket li {
  width: 100%;
}

#shopArea .quarter {
  width: 49%;
}
#shopArea .tokutenBg {
  padding: 30px 5%;
}
#shopArea .jacket.rakuten li.delivery {
  display: block;
  background: rgba(104, 62, 146, 0.3);
  padding: 3vw;
  margin: 50px auto 0;
}
#shopArea .jacket.rakuten li.delivery .jacket {
  margin-bottom: 0;
}
#shopArea .jacket.rakuten li.delivery .jacket li .quarter {
  margin: auto;
  width: 100%;
  max-width: 600px;
}
#shopArea .jacket.rakuten li .attentionList li {
  margin: 0 0 5px 1em;
}
#shopArea .shopBox.last {
  margin-bottom: 0;
}

.theater_box .btn {
  margin-top: 30px;
}

.theater_box .op_detail {
  margin-bottom: 50px;
}

.flx {
  width: 80%;
  justify-content: space-between;
  display: flex;
}

.loaded #mainVisual .mainInner .mainphoto {
  width: 100%;
  opacity: 1;
  transform: none;
  transition: 0.7s ease 0.3s;
}

@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }

  #mainVisual .sns .list--sns li a:hover,
  #mainVisual .sns .list--sns li .ico:hover,
  #fcArea .delivery .btnBox dd .phList li a {
    opacity: 0.7;
  }
  .fixedBtn a:hover {
    background: #c4923a;
    display: block;
    color: #fff;
  }
  .btn a:hover {
    display: block;
    filter: hue-rotate(19deg);
  }
  .prev-arrow:hover,
  .next-arrow:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .prev-arrow,
  .next-arrow {
    display: block;
    width: 25px;
    height: 25px;
  }
  .prev-arrow {
    left: -30px;
  }
  .next-arrow {
    right: -30px;
  }
  .prev-arrow::before,
  .next-arrow::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
  }
  .slick-slider {
    margin: 0 auto 50px;
    width: 85%;
  }
  .attentionList li {
    font-size: 11px;
  }
  #mainVisual {
  }

  .bgLogo {
    position: absolute;
    width: 60%;
    right: -15%;
    bottom: -20%;
  }
  #mainVisual .mainInner {
  }
  #mainVisual .mainInner h2 {
    width: 90%;
    margin: 0 auto;
  }

  #mainVisual .mainInner h4 {
    width: 94%;
    margin: 0 0 0 auto;
    position: relative;
    top: 0;
  }

  #mainVisual .mainInner h4 p {
    margin-bottom: 2%;
  }

  #mainVisual .mainInner h2 .release_txt {
    width: 80%;
  }

  .fixedBtn {
    position: fixed;
    right: auto;
    bottom: 10px;
    right: 10px;
    z-index: 1;
  }

  .fixedBtn a {
    padding: 8px 12px 8px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    transition: 0.4s;
  }
  .scrolldown {
    position: absolute;
    left: 2%;
    bottom: 3%;
    height: 50px;
    display: none;
  }
  .contents {
    padding: 50px 0;
  }

  .inBox {
    width: 88%;
  }

  #leadArea .inBox {
  }

  .loaded #leadArea .inBox {
  }

  #leadArea .lead {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 16px;
  }

  .lead_wrap {
    margin-bottom: 35px;
  }

  .lead_wrap.lead_box {
    padding: 20px 16px;
  }

  .lead_tit {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .btn a {
    font-size: 15px;
    padding: 22px;
  }
  attentionList li {
    font-size: 13px;
  }
  h5 {
    text-align: center;
    font-size: 20px;
    margin: 0 auto 34px;
    padding-bottom: 12px;
  }
  h5 span.inner {
    position: relative;
    padding: 0;
    font-size: 30px;
  }
  h5 span.inner:before {
    width: 80px;
  }
  h5 .subtit {
    font-size: 12px;
  }
  h5.ja span.inner {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .mov {
    width: 100%;
  }

  .track_tit {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .product_wrap .tit {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto 10px;
  }

  .product_wrap .date {
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }

  .attentionList:last-child {
    margin-bottom: 0;
  }

  .track_info {
    padding: 16px;
    margin: 0 auto 24px;
    font-size: 13px;
  }
  .track_info .track_info_tit {
    font-size: 12px;
  }

  .jkList {
    margin: 0 auto 20px;
    width: 100%;
  }
  .jkList li {
    width: 86%;
    margin: 0 auto;
  }

  .jkList li .jk {
  }
  .jkList li .tit {
    font-size: 14px;
    text-align: center;
  }

  .track_wrap {
    width: 100%;
  }

  .track_desc {
    font-size: 13px;
    padding-top: 24px;
    margin-top: 24px;
  }

  .type_tit {
    font-size: 21px;
    margin-bottom: 24px;
  }

  .songList > li {
    font-size: 13px;
    text-indent: -21px;
    padding-left: 21px;
  }

  .product_wrap {
    margin-bottom: 45px;
  }

  #typeArea .typeDetail dt {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding-left: 12px;
  }

  #typeArea .typeDetail dd {
    font-size: 15px;
  }

  #typeArea .typeDetail {
    width: 100%;
    padding: 18px;
    margin-bottom: 16px;
  }
  #typeArea .typeDetail .txtArea {
    padding: 12px;
    margin: 10px 0 0 0;
    font-size: 11px;
  }

  #typeArea .listBox {
    padding: 20px;
    margin: 0 auto 30px;
    border-radius: 10px;
  }

  #typeArea .listBox .tit {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin: 0 auto 10px;
    letter-spacing: 0.2em;
  }
  #typeArea .listBox .subTit {
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid;
    padding: 0 0 10px 0;
  }
  #typeArea .listBox .list li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
  #typeArea .listBox .txt {
    font-size: 13px;
    margin: 15px 0 0 0;
  }
  #fcArea .icon {
    width: 84px;
    height: 84px;
    font-size: 12px;
    font-weight: bold;
    left: -8px;
    top: -68px;
    line-height: 1.5;
  }
  #fcArea .lead {
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
    margin: 0 0 30px 0;
  }
  #fcArea .date {
    padding: 16px;
    border: 2px solid;
    margin: 0 0 25px 0;
    text-align: center;
  }
  #fcArea .date dt {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 5px 0;
  }
  #fcArea .date dd {
    font-size: 14px;
  }
  #fcArea .price {
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    margin: 0 0 30px 0;
  }
  #fcArea .box {
    padding: 20px 16px;
    margin: 0 auto 24px;
  }
  #fcArea .box .benefitList > li {
    font-size: 13px;
  }
  #fcArea .box .benefitList > li:last-child {
    margin-bottom: 0;
  }

  #fcArea .box dt {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px 0;
  }

  #fcArea .box .phList {
    margin-bottom: 20px;
  }
  #fcArea .box .phList li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #fcArea .box .phList li:last-child {
    margin-bottom: 0;
  }

  #fcArea .box .phList li.one {
    width: 100%;
  }
  #fcArea .box .phList.two {
    width: 100%;
  }
  #fcArea .box .phList.two li {
    width: 100%;
  }
  #fcArea .box .lead {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #fcArea .box .txt {
    font-size: 13px;
    margin: 0 0 10px 0;
    padding: 15px;
  }

  #fcArea .itembox {
    padding: 20px 16px;
    margin: 0 auto 24px;
  }
  #fcArea .itembox .benefitList > li {
    font-size: 13px;
  }
  #fcArea .itembox .benefitList > li:last-child {
    margin-bottom: 0;
  }

  #fcArea .itembox dt {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px 0;
  }

  #fcArea .itembox .phList {
    margin-bottom: 20px;
  }
  #fcArea .itembox .phList li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #fcArea .itembox .phList li:last-child {
    margin-bottom: 0;
  }

  #fcArea .itembox .phList li.one {
    width: 100%;
  }
  #fcArea .itembox .phList.two {
    width: 100%;
  }
  #fcArea .itembox .phList.two li {
    width: 100%;
  }
  #fcArea .itembox .lead {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #fcArea .itembox .txt {
    font-size: 13px;
    margin: 0 0 10px 0;
    padding: 15px;
  }

  #fcArea .itembox .product_wrap .jkList {
    display: block;
  }

  #fcArea .itembox .attentionList {
    margin-bottom: 30px;
  }

  #fcArea .itembox .product_wrap .jkList li {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  #fcArea .itembox .tit {
    font-size: 13px;
  }

  #fcArea .delivery {
    padding: 20px 15px;
  }
  #fcArea .delivery .txt {
    text-align: left;
    font-size: 14px;
    margin: 0 0 15px 0;
    line-height: 1.8;
  }
  #fcArea .delivery .btnBox dt {
    font-size: 15px;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: bold;
  }
  #fcArea .delivery .btnBox dd .phList li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #fcArea .delivery .btnBox dd .phList {
    display: block;
    margin: 0 auto 20px;
  }
  #fcArea .delivery .txtBox .txt {
    font-size: 12px;
    text-align: left;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  #fcArea .delivery .txtBox {
    margin: 0 0 20px 0;
  }
  #fcArea .delivery .accountBox {
    padding: 15px;
    margin: 0 auto 20px;
  }
  #fcArea .delivery .accountBox dt {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 5px 0;
  }
  #fcArea .delivery .accountBox dd {
    font-size: 12px;
    line-height: 1.6;
  }

  #fcArea .date dd .mini {
    font-size: 11px;
    line-height: 1.5;
  }
  #fcArea .addTxt {
    margin: 30px 0 10px 0;
  }
  #fcArea .addTxt p {
    padding: 0 30px;
    font-size: 14px;
  }
  #fcArea .addTxt p:before,
  #fcArea .addTxt p:after {
    width: 25px;
  }

  #fcArea .btnBox dd .phList li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  #fcArea .btnBox dd .phList {
    display: block;
    margin: 0 auto 20px;
  }

  .txt {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .step_wrap {
    padding: 16px;
    margin-bottom: 24px;
  }

  .step_tit {
    font-size: 13px;
    margin-bottom: 13px;
    padding-left: 10px;
  }

  .step_list > li {
    font-size: 12px;
  }

  .tit_center {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn_list > li {
    padding: 18px;
  }

  .btn_list > li .btn_tit {
    font-size: 12px;
    margin-bottom: 13px;
  }

  #shopArea .shoptit {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px 0;
  }

  #shopArea .inBox {
    padding: 20px;
    border-radius: 10px;
  }
  #shopArea .lead {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #shopArea .attentionList {
    margin: 20px 0 0;
  }

  #shopArea .pic {
  }
  #shopArea .shopName {
    font-size: 17px;
  }
  #shopArea .tokuten {
    font-size: 13px;
    margin-bottom: 10px;
  }
  #shopArea p {
    font-size: 12px;
  }
  #shopArea .otherShop {
    padding: 3vw;
    margin-top: 8vw;
    font-size: 3.4vw;
  }

  #shopArea .shopBox {
    margin-bottom: 20px;
  }
  #shopArea .jacket {
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  #shopArea .jacket li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  #shopArea .jacket.rakuten li {
    display: block;
    margin: 0 0 10px 0;
  }
  #shopArea .jacket li:last-child {
    margin-bottom: 0;
  }
  #shopArea .jacket li.normal {
    width: 100%;
  }
  #shopArea .jacket li .pic {
    margin-bottom: 0;
  }
  #shopArea .jacket li.normal .pic {
  }
  #shopArea .shopTxt {
    padding: 15px 20px;
  }

  #shopArea .jacket li .pic p {
    line-height: 1.6;
    font-size: 2.6vw;
    margin-top: 1vw;
  }
  #shopArea .jacket li p {
    font-size: 15px;
  }
  #shopArea .jacket li .tokuten {
    font-size: 13px;
    margin: 0;
  }

  #shopArea .jacket li p span {
    font-size: 80%;
  }

  #shopArea .jacket li.col1 {
    display: block;
    border-right: none;
    border-bottom: #1b2b4d solid 1px;
    padding-bottom: 8vw;
    padding-right: 0;
    width: 100%;
  }
  #shopArea .jacket li.col1 .pic {
    width: 86.8%;
  }

  #shopArea .jacket li.normal p + .pic {
    margin-top: 6vw;
  }

  #shopArea .shopHalf {
    display: block;
  }
  #shopArea .shopHalf .shopBox {
    width: 100%;
  }
  #shopArea .jacket li .note {
    font-size: 3vw;
  }
  #shopArea .jacket li .pic.v-center {
    padding-top: 0;
  }
  #shopArea .jacket li .pic.v-center img {
    position: static;
    transform: translateY(0%);
  }

  #shopArea .quarter {
    width: 100%;
    margin: 0 0 15px 0;
  }
  #shopArea .quarter:first-child {
    padding-top: 0;
  }
  #shopArea .quarter.tokutenBg {
    padding: 0 0 8vw;
    border-bottom: #999 solid 1px;
    margin-bottom: 2vw;
  }
  #shopArea .jacket .rakutenTxt {
    font-size: 3.2vw;
    margin-bottom: 6vw;
  }
  #shopArea .jacket.rakuten li.delivery {
    padding: 10px;
    margin: 20px auto 0;
  }
  #shopArea .jacket.rakuten li.delivery .tokuten {
    margin: 0 0 5px 0;
  }
  #shopArea .attentionList li {
    font-size: 11px;
  }
  #shopArea .jacket.rakuten li .attentionList {
    margin: 25px 0 0 0;
    text-align: left;
    width: 95%;
  }
  #shopArea .jacket.rakuten li .attentionList li {
    font-size: 11px;
    margin: 0 0 5px 1em;
  }
  footer {
    padding: 50px 40px 100px;
  }
  .copyright {
    font-size: 10px;
    text-align: center;
  }
}

/*===================================================
  OP:DETAIL
====================================================*/
.op_detail {
  margin-bottom: 30px;
}
.op_detail .detailList {
  display: flex;
  padding: 18px 0;
  align-items: stretch;
  border-bottom: 1px solid #ffffff66;
  font-size: 14px;
}
.op_detail .detailList:first-child {
  border-top: 1px solid #ffffff66;
}

.op_detail .detailList:last-child {
  margin: 0;
}

.op_detail .detailList dt {
  width: 20%;
  padding: 0 1rem 0 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1.6em;
  font-size: 0.95rem;
}
.op_detail .detailList dt:before {
}
.op_detail .detailList dt .txt {
  font-size: 100%;
  line-height: 1.5em;
}
.op_detail .detailList dd {
  width: 80%;
  position: relative;
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
}

.op_detail .detailList dd > * {
  margin-bottom: 20px;
}
.op_detail .detailList dd > *:last-child {
  margin-bottom: 0;
}
.op_detail .detailList dd .detailInner {
  width: 100%;
}
.op_detail .detailList dd .detailInner > * {
  margin-bottom: 10px;
}
.op_detail .detailList dd .detailInner > *:last-child {
  margin-bottom: 0;
}

.op_detail .btn {
  margin-bottom: 70px;
}

@media screen and (max-width: 960px) {
  .topSchedule .schedule_tit .schedule_tit_logo {
    width: 100%;
  }

  .op_detail .detailList {
    display: block;
    padding: 16px 0;
  }
  .op_detail .detailList dt {
    width: 100%;
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    opacity: 0.7;
  }

  .op_detail .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .op_detail .detailList dd:before {
    content: none;
  }

  .flx {
    width: 90%;
    display: block;
  }

  .loaded #mainVisual .mainInner .mainphoto {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

  .loaded #mainVisual .mainInner h2 .inner {
    font-size: 20px;
    margin: 20px auto 0;
  }

  #mainVisual .mainInner h2.kv_photo {
    margin-right: 0;
    width: 100%;
  }
}
