@charset "utf-8";

/* CSS Document */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}

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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

html,
body {
  margin: 0 auto;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic",
    Verdana, Meiryo, sans-serif;
  font-size: 18px;
  text-align: left;
  background: url("../images/bg_pt-orange.png") fixed;
  color: #3c3c3c;
  min-width: 1080px;
}

@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 3.5vw;
    min-width: 240px;
    max-width: 767px;
    background-size: 5vw;
  }
}

/*img*/

img {
  border-style: none;
  vertical-align: bottom;
  padding: 0;
  line-height: 0em;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
}

/*youtube*/

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25% !important;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*txt*/

p {
  line-height: 1.75em;
  margin: 0 0 1em;
  padding: 0;
  text-align: left;
}

p:last-child {
  margin: 0;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.under_line {
  text-decoration: underline;
}

.line_through {
  text-decoration: line-through;
}

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

/*link*/

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
}

.opa {
  transition: all 0.3s ease;
}

.opa:hover {
  opacity: 0.7;
}

/*ヘッダー*/

#nav_btn {
  width: 90px;
  height: 90px;
  background: #ee9143;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  transition: 0.3s;
  cursor: pointer;
}

#nav_btn:hover {
  opacity: 0.7;
}

#nav_btn span {
  display: block;
  height: 3px;
  width: 60px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  margin: auto;
  transition: 0.3s;
}

#nav_btn span:before {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: #fff;
  position: absolute;
  bottom: 15px;
  transition: 0.3s;
}

#nav_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  background: #fff;
  position: absolute;
  top: 15px;
  transition: 0.3s;
}

#nav_btn p {
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  font-weight: bold;
  line-height: 1em;
}

#nav_btn.active {
  border-color: #fff;
}

#nav_btn.active span {
  background: rgba(255, 255, 255, 0);
}

#nav_btn.active span:before {
  bottom: 0;
  transform: rotate(33.33deg);
  background: #fff;
}

#nav_btn.active span:after {
  top: 0;
  transform: rotate(-33.33deg);
  background: #fff;
}

@media screen and (max-width: 767px) {
  #nav_btn {
    width: 15vw;
    height: 15vw;
  }
  #nav_btn:hover {
    opacity: 1;
  }
  #nav_btn span {
    width: 10vw;
    top: 5vw;
  }
  #nav_btn span:before {
    width: 10vw;
    bottom: 2.5vw;
  }
  #nav_btn span:after {
    width: 10vw;
    top: 2.5vw;
  }
  #nav_btn p {
    bottom: 1.5vw;
  }
}

#h_menu {
  display: none;
  color: #5a5a5a;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 999;
}

#h_menu_in {
  background: #fff;
  position: fixed;
  text-align: center;
  left: 0;
  right: 0;
  top: 0;
  padding: 60px;
  z-index: 1001;
}

#h_menu_in ul {
  display: inline-block;
  text-align: left;
}

#h_menu_in ul li {
  font-size: 24px;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding: 1em 1em;
  border-bottom: 2px dotted #5a5a5a;
  position: relative;
}

#h_menu_in ul li:first-child {
  border-top: 2px dotted #5a5a5a;
}

#h_menu_in ul li a {
  display: block;
  transition: 0.3s;
}

#h_menu_in ul li a:hover {
  color: #ee9143;
}

#h_menu_in ul li span.ico {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em 0.125em 0;
}

#h_menu_in ul li span.ico img {
  height: 36px;
}

#h_menu_in ul li dl dt span.toggle {
  display: inline-block;
  margin-left: 1em;
  background: #5a5a5a;
  width: 24px;
  height: 24px;
  position: relative;
  top: 0.125em;
  transition: 0.3s;
}

#h_menu_in ul li dl dt span.toggle:before {
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  margin: auto;
}

#h_menu_in ul li dl dt span.toggle:after {
  content: "";
  width: 16px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  margin: auto;
  transform: rotate(90deg);
  transition: 0.3s;
}

#h_menu_in ul li dl dt {
  cursor: pointer;
  transition: 0.3s;
}

#h_menu_in ul li dl dt:hover {
  color: #ee9143;
}

#h_menu_in ul li dl dt:hover span.toggle {
  background: #ee9143;
}

#h_menu_in ul li dl dt.active span.toggle:after {
  transform: rotate(0deg);
}

#h_menu_in ul li dl dd {
  display: none;
}

#h_menu_in ul li dl dd ul {
  display: block;
  margin-top: 0.5em;
}

#h_menu_in ul li dl dd ul li {
  border: none !important;
  padding: 0;
}

#h_menu_in ul li dl dd ul li a {
  padding: 0.25em 0.25em 0.25em 2.5em;
  background: #fffcdb;
}

#h_menu_in ul li dl dd ul li:nth-child(2n) a {
  background: #fef7b0;
}

#h_menu_in ul li dl dd ul li a:after {
  content: "＞";
  line-height: 1em;
  position: absolute;
  right: 0.5em;
  top: calc(50% - 0.5em);
}

#h_menu_in ul li dl dd ul li a:hover {
  color: #fff;
  background: #ee9143;
}

#h_menu_bg {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  #h_menu_in {
    padding: 20vw 5vw 10vw;
  }
  #h_menu_in ul li {
    font-size: 4vw;
  }
  #h_menu_in ul li span.ico img {
    height: 6vw;
  }
  #h_menu_in ul li dl dt span.toggle {
    width: 4vw;
    height: 4vw;
  }
  #h_menu_in ul li dl dt span.toggle:before {
    width: 3vw;
  }
  #h_menu_in ul li dl dt span.toggle:after {
    width: 3vw;
  }
}

/*フッター*/

#footer {
  width: 1080px;
  margin: 0 auto;
}

#footer p {
  text-align: center;
  line-height: 1.25em;
  margin: 40px auto;
}

@media screen and (max-width: 767px) {
  #footer {
    width: 94%;
  }
  #footer p {
    margin: 5% auto;
  }
}

/*メイン*/

#content {
  overflow: hidden;
}

section {
  width: 100%;
  margin: 40px auto;
}

.maincontent {
  padding: 0;
  margin: 0 auto;
  width: 1080px;
}

@media screen and (max-width: 767px) {
  section {
    margin: 2.5% auto;
  }
  .maincontent {
    padding: 0;
    margin: 0 auto;
    width: 94%;
  }
}

/*btn*/

figure.btn {
  text-align: center;
  margin: 20px auto 0;
}

figure.btn_oubo {
  text-align: center;
  margin: 20px auto 0;
}

figure.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 440px;
  height: 80px;
  color: #fff;
  font-size: 129%;
  font-weight: bold;
  line-height: 1em;
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
  background: #f465b9;
  border-bottom: 6px solid #dc2fc2;
}

figure.btn_oubo a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 440px;
  height: 80px;
  color: #fff;
  font-size: 144%;
  font-weight: bold;
  line-height: 1em;
  border-radius: 20px;
  position: relative;
  transition: 0.3s;
  background: #32acd4;
  border-bottom: 6px solid #1181a7;
}

figure.btn a:after {
  content: "＞";
  line-height: 1em;
  position: absolute;
  right: 0.75em;
  top: calc(50% - 0.5em);
}

figure.btn_oubo a:after {
  content: "＞";
  line-height: 1em;
  position: absolute;
  right: 0.75em;
  top: calc(50% - 0.5em);
}

figure.btn a:hover {
  opacity: 0.7;
}

figure.btn_oubo a:hover {
  opacity: 0.7;
}

figure.btn.line {
  margin-top: 40px;
}

figure.btn.line a {
  width: 530px;
  height: 100px;
  font-size: 175%;
  background: #00b900;
  border-bottom: 6px solid #088525;
}

figure.btn.line a span {
  display: inline-block;
  vertical-align: middle;
}
/* event01　ボタン */

.event01.event-bnr-no-padding {
  position: relative;
}
.event01-btn-wrap {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
@media screen and (max-width: 767px) {
  .event01-btn-wrap {
    position: absolute;
    top: 44%;
    transform: translateX(-50%);
    width: 90%;
    /* bottom: 16%; */
  }
}
/* event01　ボタン */

.event10.event-bnr-no-padding {
  position: relative;
}
.event10-btn-wrap {
  position: absolute;
  top: 76%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
@media screen and (max-width: 767px) {
  .event10-btn-wrap {
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* bottom: 16%; */
  }
}
/* event12　ボタン */

.event12.event-bnr-no-padding {
  position: relative;
}
.event12-btn-wrap {
  position: absolute;
  top: 87%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
@media screen and (max-width: 767px) {
  .event02-btn-wrap {
    position: absolute;
    top: 88%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}
/* event04　ボタン */

.event14.event-bnr-no-padding {
  position: relative;
}
.event14-btn-wrap {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
@media screen and (max-width: 767px) {
  .event14-btn-wrap {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
}
#event figure.event01-btn.btn a {
  background: #2fc70b;
  border-bottom: 6px solid #1e6d0b;
  flex-direction: column;
  font-size: 127%;
}

#event figure.event02-00.btn a {
  background: #f97d04;
  border-bottom: 6px solid #a14504;
  flex-direction: column;
  font-size: 127%;
}

#event figure.event01-btn.btn a .event01-btn-small {
  display: block;
  font-size: 20px;
  padding-top: 2px;
}

#event figure.event01-btn.btn a:after {
  right: 20px;
  top: 12px;
}
.reservation-tel-btn {
  width: 350px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #event figure.event01-btn.btn a .event01-btn-small {
    font-size: 80%;
  }
  #event figure.event01-btn.btn a:after {
    right: 4%;
    top: 17%;
  }
  .reservation-tel-btn {
    max-width: 60%;
    margin-top: 4%;
  }
}

@media screen and (max-width: 767px) {
  figure.btn {
    margin: 4% auto 0;
  }
  figure.btn_oubo {
    margin: 5% auto 0;
  }
  figure.btn a {
    width: 100%;
    height: 15vw;
    font-size: 135%;
    border-bottom: 1.25vw solid #dc2fc2;
    border-radius: 2.5vw;
  }
  figure.btn_oubo a {
    width: 100%;
    height: 15vw;
    font-size: 135%;
    border-bottom: 1.25vw solid #1181a7;
    border-radius: 2.5vw;
  }
  figure.btn.line {
    margin-top: 7.5%;
  }
  figure.btn.line img {
    height: 10vw;
  }
  figure.btn.line a {
    width: 100%;
    height: 15vw;
    font-size: 150%;
    border-bottom: 1.25vw solid #088525;
  }
}

/*カービーボタン*/

@media screen and (min-width: 767px) {
  .kb {
    bottom: 5% !important;
  }
}

/*ban*/

@media screen and (max-width: 767px) {
  figure.ban img {
    width: 100%;
  }
}

/*mv*/

#mv {
  text-align: center;
  margin: 0 auto 40px auto;
  background: url("../images/mv_bg-red.png") no-repeat bottom center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  #mv {
    margin: 0 auto;
    background: none;
  }
}

/*lottery*/

#lottery .maincontent {
  background: #fff;
  padding: 30px;
}

#lottery h2 {
  margin-bottom: 20px;
}

#lottery dl {
  letter-spacing: -1em;
  margin-bottom: 30px;
}

#lottery dl dt {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0;
  font-size: 112.5%;
  font-weight: bold;
}

#lottery dl dt strong {
  display: inline-block;
  margin-right: 0.5em;
  background: #4daefe;
  color: #fff;
  padding: 0.25em 0.5em;
  letter-spacing: 0.1em;
  border-radius: 0.25em;
}

#lottery dl dd {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0;
  color: #004098;
  font-size: 112.5%;
  font-weight: bold;
}

#lottery ul {
  width: calc(100% + 30px);
  margin: -15px 0 -15px -15px;
  letter-spacing: -1em;
}

#lottery ul li {
  display: inline-block;
  vertical-align: bottom;
  letter-spacing: 0;
  width: calc(50% - 30px);
  margin: 15px;
}

@media screen and (max-width: 767px) {
  #lottery .maincontent {
    padding: 3%;
  }
  #lottery h2 {
    margin-bottom: 20px;
  }
  #lottery dl {
    margin-bottom: 2.5%;
  }
  #lottery dl dt {
    display: block;
    font-size: 125%;
  }
  #lottery dl dd {
    font-size: 90%;
    margin-top: 2.5%;
  }
  #lottery ul {
    width: 100%;
    margin: 0 auto;
  }
  #lottery ul li {
    display: block;
    width: 100%;
    margin: 5% auto;
  }
  #lottery ul li img {
    width: 100%;
  }
  #lottery ul li:last-child {
    display: block;
    width: 100%;
    margin: 5% auto;
  }
}

/*news*/

#news .news-box {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
}

#news .news-box:before,
#news .news-box:after {
  position: absolute;
  width: 221px;
  height: 85px;
  content: "";
}

#news .news-box:before {
  background: url("../images/box-l.png") no-repeat;
  left: 0;
  top: 0;
}

#news .news-box:after {
  background: url("../images/box-r.png") no-repeat;
  right: 0;
  bottom: 0;
}

#news .news-box h2 {
  font-size: 144%;
  font-weight: bold;
  color: #292e49;
  padding: 0 15px;
  margin-bottom: 10px;
  line-height: 1.5em;
}

#news .news-box p {
  font-size: 100%;
  font-weight: bold;
  color: #292e49;
  padding: 0 20px;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  #news .news-box {
    padding: 20px 0;
  }
  #news .news-box h2 {
    font-size: 130%;
  }
}

/*event*/

#event .event-ttl {
  text-align: center;
  margin: 20px 0;
}

#event .flex {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  margin-top: 45px;
}

#event ul {
  letter-spacing: -1em;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}

#event ul li {
  display: inline-block;
  position: relative;
  vertical-align: top;
  letter-spacing: 0;
  width: calc(50% - 40px);
  margin: 20px;
  background: #fff;
  padding: 20px;
  height: 100% !important;
  box-sizing: border-box;
}

#event ul li.event06 {
  padding: 0 0 20px 0;
}


#event ul li.event06 figure.btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: 93%;
}

@media screen and (max-width: 767px) {
  #event ul li.event10 figure img {
    margin-top: 0;
  }
}
/* #event ul li.event02{
  padding: 0 0 20px 0;
  width: 100%;
} */
.btn.event02-00 {
  position: absolute;
  bottom: 75%;
  width: 94%;
  left: 50%;
  transform: translateX(-50%);
}
.btn.event02-01 {
  position: absolute;
  bottom: 26%;
  width: 94%;
  left: 25%;
  transform: translateX(-50%);
}
.btn.event02-02 {
  position: absolute;
  bottom: 5%;
  width: 94%;
  left: 25%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  /* .event02 .btn{
    padding: 0 10px;

  } */
  .btn.event02-00 {
    bottom: 89.5%;
    left: 50%;
  }
  .btn.event02-01 {
    bottom: 48%;
    left: 50%;
  }
  .btn.event02-02 {
    bottom: 34%;
    left: 50%;
  }
}

/* #event ul li#marche202411{
  width: 100%;
} */
#event ul:nth-child(1) li {
  background: transparent;
  padding: 20px 0;
}
#event ul li.event-bnr-no-padding {
  background: transparent;
  padding: 0;
}

#event figure.btn a {
  background: #f465b9;
  border-bottom: 6px solid #dc2fc2;
}
#event .event11 figure.btn a {
  background: #ff9000;
  border-bottom: 6px solid #f66e00;
}
#event figure.btn_oubo a {
  background: #32acd4;
  border-bottom: 6px solid #1181a7;
}
#event ul.event-bnr li:nth-child(3) figure.btn {
  /* position: absolute;
  left: 6%;
  bottom: 3%; */
}

#event .line-link {
  text-indent: -99999em;
  overflow: hidden;
  display: block;
  position: absolute;
  width: 45%;
  height: 7%;
  top: 50.5%;
  left: 5%;
}

.line__link {
  text-indent: -99999em;
  overflow: hidden;
  display: block;
  position: absolute;
}

.line__link.line_1 {
  width: 55%;
  height: 6.5%;
  top: 23.5%;
  left: 6%;
}

/* 11月予告 */
#event ul.event-bnr li:nth-child(8) {
  /* display: block; */
  /* width: calc(100% - 40px); */
}

@media screen and (max-width: 767px) {
  #event .event-ttl {
    margin: 5% 0;
  }
  #event ul {
    width: 100%;
    margin: 0 auto;
  }
  #event ul li {
    display: block;
    width: 100%;
    margin: 5% auto;
    padding: 3%;
  }

  #event ul li img {
    width: 100%;
  }
  #event ul:nth-child(1) {
    margin: 8% auto;
  }
  #event ul:nth-child(1) li {
    padding: 0;
  }
  #event ul.event-bnr li:nth-child(2),
  #event ul.event-bnr li:nth-child(7) {
    width: 100%;
  }
  #event ul.event-bnr2 li {
    width: 100%;
    padding: 3%;
  }
  #event ul.event-bnr li:nth-child(9) {
    width: 100%;
  }
  #event figure.btn a {
    border-bottom: 1.25vw solid #dc2fc2;
  }
  #event .evnet11 figure.btn a {
    border-bottom: 1.25vw solid #ff9000;
  }
  #event figure.btn_oubo a {
    border-bottom: 1.25vw solid #1181a7;
  }
  #event ul.event-bnr li:nth-child(3) figure.btn {
    /* position: relative; */
    /* left: auto; */
    /* bottom: auto; */
  }
  #event .line-link {
    width: 46%;
    height: 8%;
    top: 57.5%;
    left: 4.5%;
  }
}

/*プリキュアの注釈*/

.info {
  margin-right: 211px;
}

@media screen and (max-width: 767px) {
  .info {
    margin-right: 127px;
  }
}

/*ticket*/

#ticket .ticket-box {
  position: relative;
}

#ticket .ticket-box:before,
#ticket .ticket-box:after {
  position: absolute;
  height: 3px;
  content: "";
  background: #292e49;
}

#ticket .ticket-box:before {
  width: 60%;
  right: 0;
  top: 52px;
}

#ticket .ticket-box:after {
  width: 100%;
  left: 0;
  bottom: 0;
}

#ticket .ticket-box h2 {
  background: #292e49;
  font-size: 130%;
  font-weight: bold;
  color: #ffffff;
  padding: 0 15px;
  margin-bottom: 10px;
  margin-left: 15px;
  position: relative;
  display: inline-block;
  height: 56px;
  line-height: 56px;
}

#ticket .ticket-box h2:before {
  position: absolute;
  top: 0;
  left: -15px;
  width: 0;
  height: 0;
  content: "";
  border-width: 0 0 56px 15px;
  border-style: solid;
  border-color: transparent transparent #292e49 transparent;
}

#ticket .ticket-box h2:after {
  position: absolute;
  top: 0;
  right: -15px;
  width: 0;
  height: 0;
  content: "";
  border-width: 0 15px 56px 0;
  border-style: solid;
  border-color: transparent transparent #292e49 transparent;
}

#ticket .ticket-box p {
  font-size: 110%;
  font-weight: bold;
  color: #292e49;
  padding: 20px 0 25px 0;
}

@media screen and (max-width: 767px) {
  #ticket .ticket-box:before {
    width: 18%;
    right: 0;
    top: 44px;
  }
  #ticket .ticket-box h2 {
    font-size: 120%;
    padding: 0 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    height: 46px;
    line-height: 46px;
  }
  #ticket .ticket-box h2:before {
    left: -10px;
    border-width: 0 0 46px 10px;
  }
  #ticket .ticket-box h2:after {
    right: -10px;
    border-width: 0 10px 46px 0;
  }
  #ticket .ticket-box p {
    font-size: 100%;
    padding: 10px 0 15px 0;
  }
}

/*follow01*/

#follow01 ul {
  /*letter-spacing: -1em;*/
  width: calc(100% + 40px);
  margin: -20px 0 -20px -20px;
  text-align: center;
}

#follow01 ul li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0;
  width: calc(50% - 40px);
  margin: 20px;
}

@media screen and (max-width: 767px) {
  #follow01 ul {
    width: 100%;
    margin: 0 auto;
  }
  #follow01 ul li {
    display: block;
    width: 100%;
    margin: 5% auto;
  }
  #follow01 ul li img {
    width: 100%;
  }
}

/*lineup*/

#lineup #lineup_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 100%;
  height: 100px;
  color: #fff;
  font-size: 200%;
  font-weight: bold;
  line-height: 1em;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  background: #f465b9;
  border-bottom: 6px solid #dc2fc2;
}

#lineup #lineup_btn i {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  position: relative;
  transition: 0.3s;
}

#lineup #lineup_btn:hover {
  opacity: 0.7;
}

#lineup #lineup_btn.active i {
  transform: rotateX(180deg);
}

@media screen and (max-width: 767px) {
  #lineup #lineup_btn {
    margin: 0 auto 2.5%;
    height: 15vw;
    font-size: 150%;
    border-radius: 2.5vw;
    border-bottom: 1.25vw solid #dc2fc2;
  }
}

#lineup #lineup_cont {
  display: none;
  background: #fff;
  padding: 20px;
}

#lineup #lineup_cont ul {
  letter-spacing: -1em;
  width: calc(100% + 30px);
  margin: -15px 0 -15px -15px;
}

#lineup #lineup_cont ul li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0;
  width: calc(50% - 30px);
  margin: 15px;
  background: #faf6d9;
}

#lineup #lineup_cont dl {
  display: table;
  table-layout: fixed;
  width: 100%;
}

#lineup #lineup_cont dl dt {
  display: table-cell;
  vertical-align: middle;
  width: 310px;
}

#lineup #lineup_cont dl dd {
  display: table-cell;
  vertical-align: top;
  padding: 20px;
  position: relative;
}

#lineup #lineup_cont dl dd h3 {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #333;
}

#lineup #lineup_cont dl dd p {
  margin: 0 auto;
  line-height: 1.25em;
}

#lineup #lineup_cont dl dd a {
  display: block;
  font-weight: bold;
  color: #3c3c3c;
  width: calc(100% - 20px);
  background: url("../images/lineup_btn_bg.png");
  padding: 0.5em 0;
  line-height: 1em;
  text-align: center;
  border-radius: 8px;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
}

#lineup #lineup_cont dl dd a i {
  display: inline-block;
  margin-left: 0.25em;
}

#lineup #lineup_cont dl dd a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  #lineup #lineup_cont {
    padding: 3%;
  }
  #lineup #lineup_cont ul {
    width: 100%;
    margin: -3% auto;
  }
  #lineup #lineup_cont ul li {
    display: block;
    width: 100%;
    margin: 3% auto;
  }
  #lineup #lineup_cont dl dt {
    width: 60%;
  }
  #lineup #lineup_cont dl dt img {
    width: 100%;
  }
  #lineup #lineup_cont dl dd {
    padding: 5% 2.5%;
  }
  #lineup #lineup_cont dl dd h3 {
    padding-bottom: 2.5%;
    margin-bottom: 2.5%;
  }
  #lineup #lineup_cont dl dd h3 img {
    width: 100%;
  }
  #lineup #lineup_cont dl dd p {
    font-size: 90%;
  }
  #lineup #lineup_cont dl dd a {
    font-size: 90%;
    width: 90%;
    border-radius: 1.25vw;
  }
}

/*service*/

#service {
  margin: 80px auto;
}

#service h2 {
  text-align: center;
  margin-bottom: 40px;
}

#service ul li {
  margin: 40px auto;
}

#service ul li p {
  text-align: center;
  font-size: 144%;
  font-weight: bold;
  line-height: 1.25em;
  margin-top: 0.25em;
}

.present {
  bottom: 5%;
  position: absolute;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  #service {
    margin: 10% auto;
  }
  #service h2 {
    margin-bottom: 5%;
  }
  #service h2 img {
    width: 75%;
  }
  #service ul li {
    margin: 5% auto;
  }
  #service ul li p {
    font-size: 112.5%;
  }
  .present {
    width: 85.5%;
  }
}

/*access*/

#access {
  margin: 80px auto;
  text-align: center;
}

#access h2 {
  text-align: center;
  margin-bottom: 40px;
}

#access dl {
  letter-spacing: -1em;
  margin: 30px auto;
}

#access dl dt {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0;
  width: 70px;
}

#access dl dd {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0;
  padding-left: 10px;
}

#access dl dd p {
  font-size: 166%;
  font-weight: bold;
  line-height: 1.25em;
}

#access #g_map iframe {
  width: 100%;
  height: 720px;
}

@media screen and (max-width: 767px) {
  #access {
    margin: 10% auto;
  }
  #access h2 {
    margin-bottom: 5%;
  }
  #access h2 img {
    width: 75%;
  }
  #access dl {
    margin: 5% auto;
  }
  #access dl dt {
    width: 9vw;
  }
  #access dl dd {
    padding-left: 2.5%;
  }
  #access dl dd p {
    font-size: 112.5%;
  }
  #access #g_map iframe {
    height: 100vw;
  }
}

/*contact*/

#contact {
  margin: 80px auto;
}

#contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

#contact figure.btn a {
  width: 720px;
  height: 180px;
  background: #ec3761;
  border-color: #bb284b;
}

#contact figure.btn a:after {
  display: none;
}

#contact .contact_info {
  width: 720px;
  margin: 20px auto;
  font-size: 133%;
  font-weight: bold;
}

#contact .contact_info p {
  margin: 0 auto;
}

#contact .contact_info table td {
  padding: 0.25em;
}

#contact .contact_info table td.min {
  font-size: 66%;
}

@media screen and (max-width: 767px) {
  #contact {
    margin: 10% auto;
  }
  #contact h2 {
    margin-bottom: 5%;
  }
  #contact h2 img {
    width: 75%;
  }
  #contact figure.btn a {
    width: 100%;
    height: 20vw;
    padding: 2.5% 5%;
  }
  #contact .contact_info {
    width: 100%;
    margin: 2.5% auto;
    font-size: 3vw;
  }
  #contact .contact_info table th {
    width: 4vw;
  }
  #contact .contact_info table td {
    font-size: 2.75vw;
    min-width: 4.5em;
  }
  #contact .contact_info table td.min {
    font-size: 2.25vw;
    letter-spacing: -0.025em;
  }
}

#contact dl#att {
  width: 720px;
  margin: 20px auto;
}

#contact dl#att dt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 100%;
  height: 110px;
  color: #fff;
  font-size: 250%;
  font-weight: bold;
  line-height: 1em;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  background: #15c06a;
  border-bottom: 6px solid #0f9853;
}

#contact dl#att dt i {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5em;
  position: relative;
  transition: 0.3s;
}

#contact dl#att dt:hover {
  opacity: 0.7;
}

#contact dl#att dt.active i {
  transform: rotateX(180deg);
}

@media screen and (max-width: 767px) {
  #contact dl#att {
    width: 100%;
    margin: 2.5% auto;
  }
  #contact dl#att dt {
    margin: 0 auto 2.5%;
    height: 15vw;
    font-size: 150%;
    border-radius: 2.5vw;
    border-bottom: 1.25vw solid #0f9853;
  }
}

#contact dl#att dd {
  display: none;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px;
}

#contact dl#att dd ul li {
  padding-left: 1em;
  font-size: 112.5%;
  line-height: 1.25em;
  margin-bottom: 0.25em;
  position: relative;
}

#contact dl#att dd ul li:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  #contact dl#att dd {
    margin-top: 2.5%;
    padding: 3%;
  }
  #contact dl#att dd ul li {
    font-size: 80%;
  }
}

@media print, screen and (min-width: 768px) {
  .smp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  #event ul.event-bnr li:nth-child(4) {
    width: 100%;
  }
  #event ul.event-bnr li:nth-child(5) {
    width: 100%;
  }
  #event ul.event-bnr li:nth-child(8) {
    width: 100%;
  }
}
#event ul .zizenyoyaku_li {
  width: 730px;
}
@media screen and (max-width: 767px) {
  #event ul .zizenyoyaku_li {
    width: 100%;
  }
  #event ul li.event-bnr-no-padding.single_event {
    padding-top: 5%;
  }
}
