@charset "UTF-8";
/*ブレイクポイントを設定*/
/* noto-sans-jp-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v55-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v55-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/noto-sans-jp-v55-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jost-500italic - latin */
/* color */
.ifc {
  color: #eb3e69;
}

.white {
  color: white;
}

.blue {
  color: #365bb1;
}

.blue2 {
  color: #89d6ff;
}

.red {
  color: #e04925;
}

.green {
  color: #0adc4d;
}

.yellow {
  color: #ffc533;
}

.bgwh {
  background: white;
}

.bgblu {
  background: #365bb1;
}

.bgblu2 {
  background: #ccd2e0;
}

.bgred {
  background: #e04925;
}

.bggre {
  background: #0adc4d;
}

.bgyel {
  background: #ffc533;
}

.bgba {
  background: #faf8e5;
}

.bgacc {
  background: #f1a2af;
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: min(2.3vw, 23px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  color: white;
  background: #eb3e69;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body.open {
  height: 100vh;
}
@media screen and (max-width: 591px) {
  body {
    font-size: 14px;
  }
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

p {
  color: white;
  text-align: left;
}

.f18 {
  font-size: clamp(15px, 1.8vw, 18px);
  text-align: left;
  width: min(95%, 860px);
}

/*リンク表示方法*/
a {
  text-decoration: none;
}

a:link {
  color: white;
}

a:visited {
  color: white;
}

a:active {
  color: white;
}

a:hover {
  opacity: 0.7;
}
a:hover img {
  opacity: 1;
}

:has(> .lista) {
  position: relative;
}

.lista {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  grid-template-columns: center;
}

.i-text {
  display: inline-block;
}

.ver-rl {
  writing-mode: vertical-rl;
}

.active1200 {
  display: none;
}
@media screen and (max-width: 1200px) {
  .active1200 {
    display: block;
  }
}

.active1000 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .active1000 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active768 {
  display: none;
}
@media screen and (max-width: 767px) {
  .active768 {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.active591 {
  display: none;
}
@media screen and (max-width: 591px) {
  .active591 {
    display: block;
  }
}

.active414 {
  display: none;
}
@media screen and (max-width: 414px) {
  .active414 {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .vanish1200 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 1000px) {
  .vanish1000 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 767px) {
  .vanish768 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

@media screen and (max-width: 591px) {
  .vanish591 {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .vanish414 {
    display: none;
  }
}

/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/
.pc,
.pc2 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .pc,
  .pc2 {
    display: none;
    /*スタイルを展開したいところに記述する*/
  }
}

.sp,
.sp2,
.spTel {
  display: none;
}
@media screen and (max-width: 1000px) {
  .sp,
  .sp2,
  .spTel {
    display: block;
    /*スタイルを展開したいところに記述する*/
  }
}

.pcTel {
  display: inline;
}

/*-----------------------------------------------------------
フォント
-----------------------------------------------------------*/
.titwrap {
  height: 100px;
  margin: 3em auto 1em;
}
.titwrap h2 {
  height: 100%;
}
.titwrap h2 img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 591px) {
  .titwrap {
    height: 65px;
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 414px) {
  .titwrap {
    height: 56px;
  }
}

.imgwrap {
  text-align: center;
  margin: 1em auto;
}
.imgwrap img {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: inline-block;
}

.readwrap {
  margin-bottom: 1.5em;
}

.mainTit {
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.mainTit img {
  max-width: 92%;
  height: min(7vw, 60px);
}

.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 500;
}

.en {
  font-family: "Jost", sans-serif;
  display: block;
  letter-spacing: 0.06em;
}

.come {
  font-size: clamp(12px, 0.8em, 17px);
  margin: 8px auto;
  text-align: left;
  width: 100%;
}

.attention-p {
  font-size: clamp(17px, 2.1vw, 21px);
}

/*-----------------------------------------------------------
テーブル
-----------------------------------------------------------*/
table {
  border-collapse: separate;
}
@media screen and (max-width: 767px) {
  table {
    width: 100%;
    /*スタイルを展開したいところに記述する*/
  }
  table th,
  table td {
    width: 100% !important;
    display: block;
  }
}

/*-----------------------------------------------------------
モーダル
-----------------------------------------------------------*/
#modal {
  display: none;
}

/*-----------------------------------------------------------
ページトップ
-----------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 245px;
  right: 25px;
  z-index: 9999;
  background: #63032b;
  width: 60px;
  height: 60px;
  border-radius: 3px;
}
#pageTop a {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  transition: 0.2s;
}
#pageTop a img {
  transform: rotate(-90deg);
}
#pageTop a:hover {
  background: #1a1a1a;
}
@media screen and (max-width: 591px) {
  #pageTop {
    display: none !important;
  }
}

/*-----------------------------------------------------------
スクロールバー
-----------------------------------------------------------*/
.scroll-pane {
  width: 100% !important;
  height: 300px; /*箱の高さ*/
  margin: 40px auto 0;
  overflow-y: auto;
}
.scroll-pane:focus {
  outline: none;
}

/*-----------------------------------------------------------
画像LP用
-----------------------------------------------------------*/
body {
  background: #eb3e69;
  position: relative;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(../img/bg.jpg) repeat;
  opacity: 0.1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

main {
  background: #eb3e69;
  max-width: 680px;
  margin: auto;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  main {
    box-shadow: none;
    /*スタイルを展開したいところに記述する*/
  }
}

header {
  width: 100%;
  position: fixed;
  height: min(10.7vw, 90px);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12;
  transition: 0.2s;
}
header .scactive {
  display: none;
}
header.headerScroll {
  height: 68px;
}
header.headerScroll .header_inner {
  background: #63032b;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
}
header.headerScroll .scnone {
  display: none;
}
header.headerScroll .scactive {
  display: block;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 680px);
  height: 100%;
  margin: auto;
  position: relative;
  padding: 5px 15px;
  transition: 0.2s;
  background: linear-gradient(180deg, #f17695 0%, #eb3e69 100%);
}
header .header_inner h1 {
  height: 100%;
  max-width: 130px;
}
header .header_inner div {
  max-height: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_inner div .contct_head {
  padding-top: 3px;
  margin-right: 24px;
  width: 48px;
}
header .header_inner a {
  max-height: 80px;
  object-fit: contain;
  height: 100%;
  transition: 0.2s;
}
header .header_inner a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
header .header_inner a.btn {
  max-height: 52px;
  position: relative;
  z-index: 2;
}
header .header_inner a.btn:hover {
  opacity: 1;
  transform: translateX(4px);
}
header .header_inner a.btn img {
  transition: 0.2s;
}
header .header_inner a.contct_head:hover {
  transform: rotate(5deg);
  opacity: 1;
}
header .header_inner a.hlogo {
  padding: 4px 0 8px 1em;
  height: 100%;
}
header a.hlogo:hover {
  opacity: 1;
}
@media screen and (max-width: 1000px) {
  header {
    top: 0;
    width: 100%;
    position: fixed;
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 767px) {
  header {
    height: 80px;
    /*スタイルを展開したいところに記述する*/
  }
  header.headerScroll {
    height: 72px;
  }
}
@media screen and (max-width: 591px) {
  header {
    height: 60px;
  }
  header.headerScroll {
    height: 55px;
  }
  header .header_inner a.hlogo {
    padding: 0 0 6px 0;
  }
  header .header_inner a.btn {
    width: 55%;
    height: 100%;
    display: block;
  }
}
@media screen and (max-width: 414px) {
  header .header_inner a.hlogo {
    width: 150px;
  }
  header .header_inner div .contct_head {
    width: 40px;
    margin-right: 1em;
  }
}

.content_wrap {
  width: 74.36%;
  margin: min(12%, 80px) auto min(8vw, 100px);
  padding: 2em 1.5em 1.5em;
}
.content_wrap.attention_rule {
  border: 2px solid #ccc;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content_wrap.attention_rule ul.ruleList li {
  line-height: 1.45;
  margin-bottom: 0.8em;
  font-size: clamp(14px, 1.6vw, 16px);
  color: white;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.content_wrap.attention_rule ul.ruleList li dt {
  font-weight: 700;
  margin-bottom: 0.4em;
  color: #abd2d9;
}
.content_wrap.attention_rule ul.ruleList li a {
  color: #fcaa00;
  background: #dccbbb;
  text-decoration: underline;
  transition: 0.2s;
}
.content_wrap.attention_rule ul.ruleList li a.acctxt {
  background: none;
}
.content_wrap.attention_rule ul.ruleList li a:hover {
  color: #eee;
}
.content_wrap.attention_rule ul.ruleList li:last-child {
  margin-bottom: 0;
}
.content_wrap.attention_rule ul.ruleList li .come {
  color: #eb3e69;
}
@media screen and (max-width: 767px) {
  .content_wrap {
    width: 90%;
    padding: 2em 5% 5%;
    /*スタイルを展開したいところに記述する*/
  }
}

.mainTit {
  text-align: center;
  margin-bottom: 32px;
}

.subtit {
  position: absolute;
  font-size: clamp(20px, 2.8vw, 28px);
  top: -0.5em;
  height: 1em;
  background: #42001a;
  padding: 0 12px;
  display: flex;
}
.subtit img {
  max-height: 38px;
}
@media screen and (max-width: 767px) {
  .subtit img {
    max-height: max(26px, 1.2em);
    /*スタイルを展開したいところに記述する*/
  }
}
@media screen and (max-width: 414px) {
  .subtit img {
    height: min(5.5vw, 32px);
  }
}

.top-con {
  padding-top: min(10%, 100px);
}

.base-con {
  padding: clamp(50px, 12%, 120px) 0;
}

.first_view {
  position: relative;
  height: min(100vh, 1200px);
  width: min(100%, 680px);
  margin: auto;
  text-align: center;
}
.first_view .fv_wrap {
  height: min(100vh, 1200px);
  width: 100%;
  position: relative;
}
.first_view .fv_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.first_view .fv_wrap img.lightone {
  object-position: 50% 39%;
}
.first_view .toptitwrap {
  width: 100%;
  height: auto;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
}
.first_view .toptitwrap h1 {
  width: min(100%, 588px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: auto;
  margin-bottom: 1em;
}
.first_view .toptitwrap h1 img.logo_event {
  width: 100%;
  height: 30vh;
  object-fit: contain !important;
  object-position: bottom !important;
}
.first_view .toptitwrap h1 .badge {
  width: min(29.1%, 285px);
  position: absolute;
  top: -20%;
  left: -5%;
  z-index: 1;
}
.first_view:after {
  content: "";
  width: 100%;
  height: 80px;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/bg_deco.webp) no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .first_view {
    height: auto;
    /*スタイルを展開したいところに記述する*/
  }
  .first_view .fv_wrap {
    height: auto;
  }
  .first_view .fv_wrap img {
    object-fit: initial;
    width: 100%;
    height: auto;
  }
  .first_view .toptitwrap {
    bottom: 1em;
  }
  .first_view h1 {
    width: 86.5%;
  }
  .first_view h1.lightone {
    bottom: clamp(60px, 9%, 260px);
  }
}
@media screen and (max-height: 880px) and (min-width: 592px) {
  .first_view {
    height: 100vh !important;
  }
  .first_view .fv_wrap {
    height: 100vh;
  }
  .first_view .fv_wrap img.logo_event {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
  }
  .first_view .fv_wrap .toptitwrap h1 {
    max-width: 430px;
  }
  .first_view .fv_wrap .toptitwrap .fv_btn_next {
    max-width: 400px;
  }
}
@media screen and (max-width: 591px) {
  .first_view .toptitwrap {
    width: 80%;
  }
  .first_view .toptitwrap h1 img.logo_event {
    height: auto;
  }
}

#ticket {
  background: #42001a;
}
#ticket table {
  width: 74.36%;
  background: #42001a;
  margin: min(8%, 60px) auto 0.6em;
  border: 2px solid #ccc;
  font-size: clamp(20px, 3.5vw, 35px);
}
#ticket table tr {
  display: flex;
  justify-content: space-between;
  border: 2px solid white;
}
#ticket table tr.bring {
  border-top: none;
  font-size: 0.6em;
}
#ticket table tr.bring th {
  width: 100%;
  height: 60px;
  font-weight: 700;
}
#ticket table tr.bring td {
  width: 100%;
  height: 60px;
  font-weight: 700;
}
#ticket table tr.bring td span {
  width: auto;
  margin-left: 0.4em;
}
@media screen and (max-width: 591px) {
  #ticket table tr.bring {
    font-size: 1em;
  }
}
#ticket table th {
  background: #7a7065;
  color: white;
}
#ticket table td {
  color: white;
}
#ticket table th,
#ticket table td {
  padding: 0.3em;
  width: 50%;
  text-align: center;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ticket table th div,
#ticket table td div {
  text-align: center;
  line-height: 1.25;
}
#ticket table th span,
#ticket table td span {
  font-size: 0.6em;
  display: block;
  margin-top: 0.3em;
  width: 100%;
}
@media screen and (max-width: 591px) {
  #ticket table {
    width: 85%;
  }
  #ticket table tr {
    display: flex;
    flex-direction: column;
  }
  #ticket table th {
    height: 62px;
  }
  #ticket table td {
    height: 80px;
    font-size: 23px;
  }
}
#ticket .subtit {
  background: #42001a;
}

.p-area {
  width: min(80%, 710px);
  margin: auto;
}
.p-area p {
  text-align: left;
  font-weight: 700;
}

.btn_con {
  width: 78%;
  display: block;
  margin: auto;
  transition: 0.2s;
  animation: btn 3.5s ease infinite;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}
.btn_con:hover {
  opacity: 1;
  transform: scale(1.1);
}
.btn_con::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../img/btn_arrow.webp) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

.link_area {
  position: relative;
  display: flex;
  justify-content: center;
}
.link_area .btn_area {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 414px) {
  .link_area .btn_area {
    bottom: 12%;
  }
}

.btn_area {
  margin-top: 6em;
}
.btn_area .come {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: clamp(10px, 1.6vw, 20px);
  line-height: 1.25;
}
.btn_area .attention-p {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.25;
}
.btn_area .attention-p a {
  color: #fcaa00;
}

@media screen and (max-width: 414px) {
  .btn_area .come {
    margin-top: 0.5em;
  }
}
.banner_area {
  width: min(90%, 580px);
  margin: 3em auto 0;
  border-radius: 12px;
}
.banner_area p {
  margin: 0 0 0.5rem 0;
  color: white;
  text-align: center;
}
.banner_area a {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  border-radius: 12px;
  /* 斜めに流れる光（疑似要素） */
  /* 光が流れるアニメーション */
}
.banner_area a::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -60%;
  width: 30%;
  height: 120%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.banner_area a.shine-active::before, .banner_area a:hover::before {
  animation: bannerShine 0.9s ease forwards;
}
.banner_area a:hover {
  opacity: 1;
  transform: scale(1.01) translateY(-4px);
  filter: brightness(1.06) saturate(1.03);
}
.banner_area a:hover img {
  opacity: 1;
}
@keyframes bannerShine {
  0% {
    left: -60%;
    opacity: 0;
    transform: skewX(-25deg) translateX(0);
  }
  10% {
    opacity: 0.9;
  }
  100% {
    left: 140%;
    opacity: 0;
    transform: skewX(-25deg) translateX(0);
  }
}
.banner_area a img {
  border-radius: 12px;
  transition: 0.2s;
  display: block;
}

.btn_con {
  width: 78%;
  display: block;
  margin: auto;
  transition: 0.2s;
  animation: btn 3.5s ease infinite;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
}
.btn_con:hover {
  opacity: 1;
  transform: scale(1.1);
}
.btn_con::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.6em;
  top: -1.3em;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/btn_before.webp) no-repeat center center/contain;
}
.btn_con::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background: url(../img/how_icon_arrow.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%) rotate(-90deg);
}

.link_area {
  position: relative;
  display: flex;
  justify-content: center;
}
.link_area .btn_area {
  position: absolute;
  bottom: 10%;
}
@media screen and (max-width: 414px) {
  .link_area .btn_area {
    bottom: 12%;
  }
}

@keyframes btn {
  0% {
    transform: translateX(0);
  }
  5% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-15px);
  }
  25% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(-15px);
  }
  75% {
    transform: translateX(0);
  }
  80% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
/*-----------------------------------------------------------
 footer
-----------------------------------------------------------*/
footer {
  width: min(100%, 680px);
  padding: min(8%, 60px) 3%;
  font-weight: 400;
  font-size: 13px;
  background: #21030f;
  margin: auto;
  font-family: "Noto sans JP", sans-serif;
}
footer .f-inner {
  margin: auto;
}
footer .flex {
  justify-content: space-between;
}
footer .flex .f-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
footer .flex .f-head .f-logo {
  width: 165px;
  margin: auto;
}
footer .flex .f-head .f-logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .flex .f-head {
    margin-right: 0;
    /*スタイルを展開したいところに記述する*/
  }
  footer .flex .f-head .f-logo {
    width: 125px;
  }
}
footer .flex .f-body {
  width: 45%;
  display: flex;
  justify-content: center;
  margin-top: 0.5em;
}
footer .flex .f-body .f-txt {
  width: calc(100% - (160px + 5%));
  margin-right: 5%;
  color: white;
}
footer .flex .f-body .f-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .flex .f-body .f-info .add {
  width: 23em;
  text-align: center;
  font-size: clamp(10px, 1.1vw, 11px);
}
@media screen and (max-width: 591px) {
  footer .flex .f-body .f-info .add {
    width: 100%;
  }
}
footer .flex a.compbtn {
  display: block;
  width: 160px;
  margin: 12px 0 0;
  border-radius: 35px;
  padding: 6px 15px;
  background: #fcaa00;
  border: 1px solid #eb3e69;
}
footer .flex a.compbtn:hover {
  background: #1a1a1a;
}
footer .flex a.compbtn p {
  text-align: center;
  font-size: 0.8em;
  color: #1a1a1a;
}
@media screen and (max-width: 767px) {
  footer {
    /*スタイルを展開したいところに記述する*/
  }
  footer .flex {
    flex-direction: column;
  }
  footer .flex .f-body {
    width: 100%;
    flex-direction: column;
  }
  footer .flex .f-body .f-txt {
    margin-right: 0;
    width: 100%;
  }
  footer .flex a.compbtn {
    margin: 12px auto;
  }
}
@media screen and (max-width: 414px) {
  footer .flex .f-body .f-txt,
  footer .flex .f-body .f-info .add {
    line-height: 1.6;
    margin-top: 12px;
  }
}
footer a.btn {
  margin-top: min(5%, 30px);
  background: #365bb1;
}
footer .copyflex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  margin: min(7%, 35px) auto 0;
  padding: min(7%, 35px) 0 0;
}
footer .copyflex .copyflex-inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
footer .copyflex .copyflex-inner a.copypp {
  display: block;
  text-align: right;
  color: #dccbbb;
  font-size: 10px;
}
footer .copyflex .copyflex-inner a.copypp.asct {
  margin-right: 1.5em;
}
footer .copyflex p.copyright {
  width: 38em;
  text-align: left;
  color: #dccbbb;
  font-size: 10px;
  line-height: 1;
  margin-right: 2em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  footer .copyflex {
    flex-direction: row;
    padding: 6% 0 0;
    /*スタイルを展開したいところに記述する*/
  }
  footer .copyflex p.copyright {
    width: 35%;
    padding-left: 0;
  }
  footer .copyflex a.copypp {
    text-align: left;
    font-size: 12px;
  }
}
@media screen and (max-width: 591px) {
  footer .copyflex {
    flex-direction: column;
  }
  footer .copyflex p.copyright {
    width: auto;
    margin: auto;
  }
  footer .copyflex .copyflex-inner {
    margin-top: 1em;
    justify-content: center;
  }
}
@media screen and (max-width: 414px) {
  footer .copyflex {
    flex-direction: column;
  }
  footer .copyflex p.copyright {
    text-align: center;
  }
  footer .copyflex a.copypp {
    text-align: center;
    margin-top: 12px;
  }
}
footer .snsList {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: min(6%, 60px);
}
footer .snsList li {
  padding: 1em;
}
@media screen and (max-width: 591px) {
  footer .snsList li {
    padding: 1em;
  }
}
footer .snsList li a {
  width: 25px;
  height: 25px;
  display: grid;
  place-content: center;
}
/*# sourceMappingURL=maps/footer.css.map */
