/* Dela Gothic One */
@font-face {
  font-family: "Dela Gothic One";
  src: url("../fonts/DelaGothicOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Belanosima Regular */
@font-face {
  font-family: "Belanosima";
  src: url("../fonts/Belanosima-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Belanosima SemiBold */
@font-face {
  font-family: "Belanosima";
  src: url("../fonts/Belanosima-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Belanosima Bold */
@font-face {
  font-family: "Belanosima";
  src: url("../fonts/Belanosima-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 適用例 
body {
  font-family: "Dela Gothic One", sans-serif;
}
  */

  html{
      font-family: 'Noto Sans JP', sans-serif;
  }

  a,p,li{
    font-family: 'Noto Sans JP', sans-serif;
  }

  h2,h3,h4,h5{
  font-family: "Belanosima";
}

p{
    font-size: 17px;
}

@media (max-width: 768px) {
    p{
    font-size: 15px;
}
}

  /* ヘッダー全体↓ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
  padding-left: 20px;
}

/* ロゴ */
.logo {
  font-size: 32px;
  font-weight: bold;
  color: #0087D3;
  text-decoration: none;
  font-family: "Dela Gothic One", sans-serif;
}

.logo span{
  font-family: "Belanosima";
  font-size: 40px;
  font-weight: bold;
}


/* PC用ナビ */
nav {
  display: flex;
  font-weight: bold;
}
nav a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.header-right {
    display: flex;
    align-items: anchor-center;
    /* height: -webkit-fill-available; */
}



nav.nav-list a {
    padding: 4.5px 24px;
    text-align: center;
    margin: auto;
    display: flex
;
}


nav.nav-list a:not(:first-child) {
  border-left: 1px solid #000;
}


/* お問い合わせボタン */

.color-btn {
    /* height: -webkit-fill-available; */
    /* gap: 0; */
    display: flex;
    /* align-items: center; */
}


.btn-contact {
    display: block;
    background: #0087D3;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    text-decoration: none;
    /* height: -webkit-fill-available; */
    margin: auto;
    text-align: center;
    align-items: center;
    font-size: 15px;
    font-family: sans-serif;
    font-weight: bold;
}

.en-text {
    font-size: 13px;
    font-family: 'Belanosima';
    font-weight: bold;
}


.btn-contact.pink-back {
    background: #E51F87;
}

/* ハンバーガー */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 58px;
  height: 58px;
  position: relative;
  padding: 17px 0px;
  transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    margin: auto;
}

/* 通常の3本線 */
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 8px; }
.menu-toggle span:nth-child(3) { top: 16px; }


.menu-toggle.active{
  background: #000;
}

/* active状態で✕に変形 */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    position: relative;
    background-color: #fff;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: -10px;
    position: relative;
    background-color: #fff;
}

/* スマホ用メニュー */
.sp-nav {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #F2F2F2;
  height: -webkit-fill-available;
  flex-direction: column;
  padding: 40px 20px 10px;
  transition: all 0.3s ease;
  z-index: 10000;
}

.sp-link-list a{
border-bottom: 2px solid #000;
}

.sp-nav a {
  padding: 14px 0;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.sp-color-btn {
    margin: 1.5rem 0;
}

a.sp-c-btn {
    width: 80%;
    text-align: center;
    margin: auto;
    display: flex;
    justify-content: center;
    background-color: #0685D3;
    color: #fff;
    position: relative;
    border-radius: 30px;
    font-size: 20px;
}

a.sp-c-btn.pink {
    background-color: #E51F87;
}

a.sp-c-btn span {
    position: absolute;
    left: 7.5%;
}

.sp-color-btn a {
    margin: 1rem auto;
}

.sp-flex-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px;
    gap: 1%;
    margin-top: 1rem;
}

.sp-flex-btn a {
    width: 48%;
    font-weight: inherit;
    font-size: 12px;
}


/* レスポンシブ */
@media (max-width: 768px) {

header {
    padding-left: 10px;
}

.logo {
  font-size: 24px;
}

.logo span{
  font-size: 32px;
}


  nav,
  .btn-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .sp-nav.active {
    display: flex;
  }
}
/* ヘッダー全体↑ */

/* フッター全体↓ */
footer{
  background-color: #323232;
  padding: 4rem 1rem 1.5rem;
  color: #fff;
  position: relative;
}

.footer-inner-box {
    max-width: 1100px;
    margin: auto;
}

.footer-inner-flexbox {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.sitemap {
    max-width: 245px;
    width: -webkit-fill-available;
}

.footer-about {
    display: flex;
    background: #fff;
    color: #000;
    border-radius: 10px;
    padding:  1.5rem;
    width: -webkit-fill-available;
    position: relative;
}

.footer-about-left,.footer-about-right {
    width: 48%;
  }

hr.center-bar {
    margin: 0 1.5rem;
}

img.footer-abs-img {
    max-width: 140px;
    position: absolute;
    right: 0rem;
    top: -6rem;
}

.footer-about-left h2 {
    font-family: 'Belanosima';
    font-size: 56px;
    line-height: 45px;
}

h2.sitemap-title {
    font-size: 30px;
}

ul.sitelist {
    margin: 2rem 0;
}

ul.sitelist li {
    border-bottom: 2px solid;
    padding: 1rem 0;
}

ul.sitelist li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.sitemap-bottom-btn a {
    border: 2px solid;
    display: flex;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 7px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

.footer-inner-flexlist {
    margin: 3rem 0px;
}

ul.link-list-footer {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    flex-wrap: wrap;
    margin: auto;
}

hr.center-bar-flexlist {
    margin: 0;
}

.footer-about-left h2 {
    margin-bottom: 2.5rem;
}

h3.footer-about-left-decotext {
    font-size: 16px;
}

h3.footer-about-left-decotext strong {
    color: #0087D3;
    font-size: 2rem;
    margin-bottom: 10px;
}

img.footer-img {
    margin-top: 1.5rem;
}

h3.accese-title {
    font-size: 2rem;
    color: #0087D3;
}

h3.accese-title span {
    font-size: 2rem;
    color: #0087D3;
}

h3.accese-title span {
    color: #000;
    font-size: 1rem;
    margin-left: 10px;
    font-family: 'Belanosima';
}

p.accese-link {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.5rem;
}

p.accese-link a {
    text-decoration: underline;
    font-size: 14px;
    margin-bottom: 0rem;
}

p.accese-text {
    font-size: 12px;
    margin: 0rem;
    text-decoration: underline;
}

p.license {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
}

img.footer-abs-img-sp-only {
    max-width: 140px;
    position: absolute;
    right: 0rem;
    top: -5rem;
    display: none;
}

.flexed-btn {
    width: 56px;
    position: fixed;
    right: 0%;
    top: 9%;
    z-index: 1000;
}

a.flexed-btn-blue {
    background: #0386D3;
    color: #fff;
    padding: 1.25rem 1rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    gap: 15px;
    border-radius: 7px 0 0 7px;
    font-weight: bold;
    margin: 0.25rem 0;
}

a.flexed-btn-pink {
    background: #E51F87;
    color: #fff;
    padding: 1.25rem 1rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    gap: 15px;
    border-radius: 7px 0 0 7px;
    font-weight: bold;
}

.flexed-btn-return {
    background: #FCD807;
    width: fit-content;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    text-align: center;
    position: fixed;
    bottom: 5%;
    right: 4%;
    z-index: 1000;
    display: none;
}

.flexed-btn-return a {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: anchor-center;
    font-family: 'Belanosima';
}

br.sp-only{
    display: none;
}

p.mg-bottom {
    margin-bottom: 2rem !important;
}

/* レスポンシブ */
@media (max-width: 768px) {

    br.sp-only{
    display: block;
}


  footer {
    padding: 1.5rem 1rem 5rem;
}

h2.sitemap-title {
    text-align: center;
}

.footer-about-left h2 {
    font-size: 40px;
    line-height: 35px;
    margin-bottom: 1.5rem;
}

  .footer-inner-flexbox {
    display: block;
}

.footer-inner-flexbox {
    display: block;
}

.sitemap {
    margin-bottom: 2rem;
    max-width: none;
}

.footer-about {
    display: block;
}

hr.center-bar {
    display: none;
}

.footer-about-left, .footer-about-right {
    width: -webkit-fill-available;
}

.footer-inner-flexlist {
    margin: 1.5rem 0px;
}

img.footer-img {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

img.footer-abs-img {
    display: none;
}

hr.center-bar-flexlist {
    display: none;
}

ul.link-list-footer {
    justify-content: space-between;
}

ul.link-list-footer li {
    width: 49%;
    font-size: 12px;
    margin: 0.75rem 0;
}

    img.footer-abs-img-sp-only {
        max-width: 90px;
        right: 1rem;
        top: -3rem;
        display: block;
    }

    .sitemap-bottom-btn a {
    width: 80%;
    margin: 0.75rem auto;
}

p.text-mg {
    margin: 0.5rem 0;
}

iframe {
    margin: 1rem 0 0;
}

.flexed-btn {
    width: 100%;
    display: flex;
    bottom: 0%;
    top: inherit;
    height: auto;
    /* width: -webkit-fill-available; */
}

a.flexed-btn-blue {
    margin: 0;
    writing-mode: inherit;
    text-orientation: inherit;
    display: block;
    width:50% ;
    border-radius: 10px 10px 0 0;
    justify-content: center;
    /* height: -webkit-fill-available; */
    font-size: 20px;
    align-items: anchor-center;
    padding: 0.75rem;
}

a.flexed-btn-pink {
    margin: 0;
    writing-mode: inherit;
    text-orientation: inherit;
    display: block;
    width:50% ;
    border-radius: 10px 10px 0 0;
    justify-content: center;
    /* height: -webkit-fill-available; */
    font-size: 20px;
    align-items: anchor-center;
    padding: 0.75rem;
}

.flexed-btn-return {
display: block;

}
}


/* フッター全体↑ */


/* トップページ↓ */
section.main-view {
    position: relative;
    background-image: url(../img/main-view.png);
    height: 633px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2.5rem 4rem 0rem;
    z-index: 0;
    margin-bottom: 2rem;
}

.main-view-inner {
    position: relative;
    max-width: 1100px;
    margin: auto;
    color: #fff;
}

h2.h2-main {
    font-family: 'Dela Gothic One';
    font-size: 72px;
    font-weight: normal;
    color: #84CCCF;
     margin: 0px;
}

span.y-color {
    color: #FCD807;
}

span.p-color {
    color: #E51F87;
}

h1.main-view-title {
    font-family: 'Dela Gothic One';
    font-size: 89px;
    margin: 0px;
    font-weight: normal;
    line-height: 70px;
}

p.year-text {
    font-family: 'Belanosima';
    font-size: 80px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
    line-height: normal;
}

.main-view-day {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
}

.main-view-day p {
    font-family: 'Belanosima';
    font-size: 37px;
    font-weight: bold;
    margin: 0;
    line-height: normal;
}

.main-view-day-title p strong {
    font-size: 80px;
    line-height: normal;
    font-family: 'Belanosima';
}

.main-view-day-title p span {
    font-family: 'Dela Gothic One';
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    display: block;
    line-height: 20px;
    position: relative;
    bottom: 1rem;
}

.main-view-time-title p strong {
    font-family: 'Belanosima';
    font-size: 40px;
    font-weight: bold;
}

.main-view-time-title p span {
    font-size: 23px;
    font-family: 'Dela Gothic One';
    font-weight: normal;
    text-align: center;
    display: block;
    border: 1px solid;
    border-radius: 20px;
    padding: 0 1rem;
    line-height: 29px;
}

.character-box {
    width: fit-content;
    position: absolute;
    right: 0%;
    bottom: -210px;
    z-index: 10;
}

.character-box p {
    font-family: 'Noto Sans JP';
    font-size: 10px;
    color: #000;
}

img.maru-img {
    position: absolute;
    right: -85px;
    bottom: -20px;
}

section.info-box {
    max-width: 1120px;
    margin: auto;
    padding: 1rem 1rem;
    margin-bottom: 5rem;
}

.hukidashi {
    margin: 0 auto;
    display: block;
    color: #fff;
    background-color: #0087D3;
    width: -webkit-fill-available;
    padding: 1rem 1rem;
    border-radius: 40px;
    position: relative;
    max-width: 732px;

}

.hukidashi p{
    text-align: center;
    font-size: 24px;   
    font-weight: bold; 
    margin: 0 !important;
}

.hukidashi::before {
  content: "";
  position: absolute;
  top: 100%;             
  left: 50%;            
  transform: translateX(-50%); 
  border-width: 15px;
  border-style: solid;
  border-color: #0087D3 transparent transparent transparent;
}

.info-text-box {
    margin: 3rem 0;
    text-align: center;
}

.info-text-box p {
    margin: 2rem 0;
    font-size: 17px;
    font-weight: bold;
}

.info-text-box p strong {
    font-size: 20px;
}


.info-img {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    /* display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; */
}

@media (max-width: 768px) {
    .info-img {
        grid-template-columns: repeat(2,1fr);
    }
}

.info-img p {
    margin: 0 !important;
}


section.concept-box {
    background-image: url(../img/blue-back.png);
    padding: 7rem 2rem 0rem;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.concept-inner {
    max-width: 1100px;
    margin: auto;
}

.concept-title-box {
    background-image: url(../img/hukidashi-back.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem 2rem 4rem;
    text-align: center;
    position: relative;
    width: -webkit-fill-available;;
    margin: auto;
}

h2.flex-title {
    font-family: 'Dela Gothic One';
    font-size: 40px;
    font-weight: bold;
    display: flex;
    gap: 10px;
    align-items: anchor-center;
    justify-content: center;
}

p.en-blue {
    margin: 0.5rem;
    color: #0087D3;
    font-size: 24px;
    font-weight: bold;
}

img.concept-icon {
    position: absolute;
    top: -60px;
    left: 18%;
}

.concept-flex-box {
    margin: 3rem 0 0;
}

.concept-flex {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    align-items: center;
    margin: 2rem 0;
}

.concept-flex p {
    width: 50%;
}

@media (max-width: 768px) {
    .concept-flex p {
        width: 100%;
    }
}

.concept-flex-right {
    width: 50%;
    /* width: fit-content; */
    margin: auto;
}

@media (max-width: 768px) {
    .concept-flex-right {
        width: fit-content;
        /* width: 70%; */
    }
    .concept-infolist {
        width: 60vw;
        margin-inline: auto !important;
        display: block;
    }
    .concept-flex-right h3 img {
        width: 36% !important;
    }
}


.concept-flex-right h3 {
    display: flex;
    gap: 1rem;
    font-size: 24px;
    align-items: center;
}


.info-contents-flex img {
    margin: auto;
    max-width: 474px;
}

@media (max-width: 768px) {
    .info-contents-flex img {
        max-width: 100%;
    }
}

ul.concept-infolist {
    margin: 3rem 1.5rem 0;
}

ul.concept-infolist li {
    margin: 1rem 0;
    list-style: disc;
    font-size: 17px;
}

ul.concept-infolist li::marker {
    color: #0087D3;
}

.concept-flex.mb-0 {
    margin-bottom: 0;
}

.concept-flex.reverse {
  flex-direction: row-reverse;
}


img.blue-back-bottom {
    position: relative;
    width: -webkit-fill-available;
}

.blue-back-bottom-box{
    background-image: url(../img/blue-back-bottom.png);
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    position: relative;
    margin: auto;
    background-size: cover;
    padding: 1rem 0 3rem;
}

.blue-back-bottom-box-inner {
    margin: auto;
    max-width: 1100px;
}

img.blue-back-bottom-icon {
    margin: 0 0 0 auto;
    transform: translateY(1rem);
}


section.infomation-box {
    padding: 5rem 2rem;
}

.infomation-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.infomation-inner-title h2 {
    font-size: 70px;
    color: #0087D3;
}


.infomation-inner-title p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}

.info-contents {
    width: -webkit-fill-available;
    box-shadow: 0 0 15px #eee;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 2rem 0 ;
}

.info-contents h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2.5rem;
}

.info-table table {
    margin: auto;
}

.info-table {
  border: 1px solid #eee; 
  border-radius: 2px;  
  max-width: 900px;
  margin: auto;
}

.info-table table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th{
    border-right: 1px solid #eee;
}

.info-table th,
.info-table td {
  border-bottom: 1px solid #eee;
  padding: .6rem .8rem;
  font-weight: normal;
  text-align: left;
}

a.table-link {
    text-decoration: underline;
    background: url(../img/link-icon.png);
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: center;
    padding-right: 1rem;
}


a.table-link.small {
    font-size: 14px;
}


.info-contents-flex {
    display: flex;
    gap: 1.5rem;
    text-align: left;
    align-items: center;
    max-width: 972px;
    margin: 2rem auto;
}

.info-contents-flex-right {
    width: -webkit-fill-available;
}

.info-contents-flex-right h4 {
    font-size: 20px;
    text-align: center;
}

ul.info-contents-flex-right-list {
    margin: 2rem 0 0;
    font-size: 14px;
}

ul.info-contents-flex-right-list li {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin: 0.5rem 0;
    align-items: center;
}

ul.info-contents-flex-right-list li span {
    background-color: #0087D3;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    width: -webkit-fill-available;
    max-width: 170px;
    text-align: center;
    border-radius: 4px;
    /* height: -webkit-fill-available; */
    /* display: flex; */
    justify-content: center;
    align-items: anchor-center;
}

@media (max-width: 768px) {
    ul.info-contents-flex-right-list li span {
        display: block;
    }
}

section.ex-sp-box {
    background-image: url(../img/gray-back.png);
    padding: 7rem 2rem 0rem;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.ex-sp-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.ex-sp-inner-title h2 {
    font-size: 70px;
    color: #0087D3;
}


.ex-sp-inner-title p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}

.info-contents.ex-sp {
    background-color: #fff;
}

.info-contents.ex-sp.mg-0 {
    margin-bottom: 0;
}

img.glay-back-bottom {
    width: -webkit-fill-available;
}

p.mb-40px {
    margin-bottom: 40px;
}

a.black-btn {
    background-color: #000;
    display: flex;
    width: fit-content;
    color: #fff;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    padding: 1rem;
    border-radius: 44px;
    gap: 1rem;
    max-width: 320px;
    width: -webkit-fill-available;
    justify-content: center;
    margin: 2.5rem auto 0.5rem;
}

section.hanashi-box {
    padding: 0rem 2rem 4rem;
}

.hanashi-inner {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

img.hanashi-icon {
    margin: auto;
}

p.hanashi-text {
    margin: 2.5rem 0;
}


.moshimo-icon-box {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

section.faq-box {
    background-image: url(../img/green-back.png);
    padding: 7rem 2rem 0rem;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
      overflow: hidden; 
}


.faq-inner {
    max-width: 1100px;
    margin: auto;
}

.hukidashi.faq {
    background-color: #fff;
    padding: 0.25rem 1rem;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.hukidashi.faq::before {
  content: "";
  position: absolute;
  top: 100%;             
  left: 50%;            
  transform: translateX(-50%); 
  border-width: 15px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}


.hukidashi.faq p {
    color: #84CCCF;
}

img.glay-back-bottom.under-b {
    background-color: #323232;
}

.hukidashi.faq p strong {
    font-family: 'Belanosima';
    font-size: 38px;
}


.hukidashi.faq p  {
    font-size: 20px;
    font-weight: bold;
}

.hukidashi.faq p {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.faq-item-list {
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 5px 15px;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    font-weight: bold;
}

.faq-question::before {
    content: "＋";
    position: absolute;
    right: 15px;
    font-size: 30px;
}

.faq-question.active::before {
    content: "－";
}

.faq-question:hover {
  background: #f0f8ff;
}

.faq-answer {
  display: none;
  padding:  15px;
  background: #ffffff;
  border-radius: 5px;
}

span.q-deco {
    font-family: 'Belanosima';
    font-size: 32px;
    font-weight: bold;
}

.flex-box {
    display: contents;
}

img.glay-back-bottom.under-b.sp {
    display: none;
}


img.glay-back-bottom.sp {
    display: none;
}

/* タブボタンの基本 */
.booth-tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
}

.booth-tabs .tab-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border: none;
    background: #D5D5D5;
    font-weight: bold;
    font-size: 17px;
    font-weight: bold;
    border-radius: 20px 20px 0 0;
    color: #fff;
}

.booth-tabs .tab-btn.active {
  background: #007bff;
  color: #fff;
}


/* SP時だけタブで切り替え */
@media screen and (max-width: 768px) {
  .tab-content { display: none; }
  .tab-content.active { display: block; }
}

/* PC時はタブボタンを非表示、両方表示 */
@media screen and (min-width: 769px) {
  .booth-tabs { display: none; }
  .tab-content { display: block !important; }
}





@media (max-width: 1200px) {

img.concept-icon {
    left: 12%;
}
}

@media (max-width: 768px) {



    section.main-view {
        text-align: center;
        height: 600px;
        background-image: url(../img/main-view-sp.png);
        padding: 2.5rem 0.5rem;
    }

    h2.h2-main {
    font-size: 32px;
    }  

    h1.main-view-title {
    font-size: 37px;
    line-height: 32px;
}

p.year-text {
    font-size: 40px;
    width: fit-content;
    margin: auto;
    gap: 0.5rem;
}

img.jojojo-img {
    max-width: 200px;
}

img.maru-img {
    max-width: 100px;
    right: -10px;
    bottom: -75px;
}

img.character-img {
    width: 100px;
    margin: 0 2rem 0 auto;
}

.character-box {
    bottom: -190px;
}

.main-view-day {
    justify-content: center;
}

    .main-view-day {
        display: block;
        margin-top: 9rem;
    }

.flex-box {
    display: flex;
    align-items: anchor-center;
    justify-content: center;
    gap: 5px;
    transform: (15px);
}

.main-view-time-title p span {
    width: fit-content;
    margin: auto;
}

.main-view-day-title {
    display: flex;
    align-items: end;
}

.main-view-day p {
    font-size: 30px;
}

.main-view-day-title p strong {
    font-size: 64px;
}

.main-view-day-title p span {
    font-size: 18px;
}

.main-view-time-title p strong {
    font-size: 32px;
}

.main-view-time-title p span {
    font-size: 17px;
    line-height: 22px;
}

.hukidashi {
    margin-top:2rem !important;
}

.hukidashi p {
    font-size: 20px;
    margin:0 !important;
}

.info-text-box p {
    font-size: 15px;
    text-align: left;
}

.info-text-box p strong {
    font-size: 18px;
}

.info-img img {
    /* width: 48%; */
}

section.concept-box {
        background-image: url(../img/blue-back-sp.png);
        padding: 8rem 1rem 1rem;
        background-size: cover;
    }

h2.flex-title img {
    max-width: 120px;
}

h2.flex-title {
    font-size: 29px;
}

.concept-title-box {
    background-image: url(../img/hukidashi-back.png);
    padding: 2rem 0rem 4rem;
}

.concept-title-box {
    background-size: contain;
    padding: 1.5rem 0rem 4rem;
    margin-top: 1rem;
}

img.concept-icon {
    max-width: 120px;
    left: 0;
    top: -65px;
}

.concept-flex {
    display: block;
}

.concept-flex-box {
    margin: 0rem 0 0;
    position: relative;
}

.concept-flex-right h3 {
    display: block;
    font-size: 22px;
    margin: auto;
    text-align: center;
    width: -webkit-fill-available;
    /* line-height: 0px; */
}

.concept-flex-right h3 span img {
    width: auto;
    margin: auto;
    position: relative;
    top: -30px;
    
}

ul.concept-infolist li::marker {
    font-size: 20px;
}

ul.concept-infolist li {
    font-size: 15px;
}


.blue-back-bottom-box {
    background-image: url(../img/blue-back-bottom-sp.png);
    background-size: cover;
    padding: 0rem 0 0rem;
}

img.blue-back-bottom-icon {
    margin: 0 1rem 0 auto;
    transform: translateY(0rem);
}

section.infomation-box {
    padding: 5rem 1rem;
}

.infomation-inner-title h2 {
    font-size: 48px;
}

.infomation-inner-title p {
    font-size: 13px;
}

.info-table {
    font-size: 14px;
}

.info-table th {
    min-width: 100px;
    text-align: center;
    padding: 1rem 0rem;
}

.info-contents-flex {
    display: block;
}

.info-contents h3 {
    font-size: 18px;
}

.info-contents-flex-right h4 {
    font-size: 18px;
    margin: 1rem;
}

ul.info-contents-flex-right-list li {
    display: block;
    margin: 1rem auto;
    text-align: center;
}

    ul.info-contents-flex-right-list li span {
        margin: 0 auto 0.5rem;
    }

    .concept-flex img {
    margin: auto;
}

.blue-back-flexbox {
    display: block!important;
    padding: 2rem 1rem!important;
}

.price-box-about {
    display: block!important;
}

.blue-back-flexbox-left, .blue-back-flexbox-right {
    width: -webkit-fill-available!important;
    max-width: -webkit-fill-available!important;
    
}



p.blue-text {
    text-align: center!important;
}


.ex-sp-inner-title h2 {
    font-size: 48px;
    line-height: 48px;
}

a.black-btn {
    font-size: 16px;
}


.moshimo-icon-box {
    flex-wrap: wrap;
}

.moshimo-icon-box img {
    width: 46%;
}

span.q-deco {
    font-size: 24px;
}

.faq-question::before {
    content: "＋";
    position: absolute;
    right: 15px;
    font-size: 20px;
}

.hukidashi.faq p strong {
    font-family: 'Belanosima';
    font-size: 32px;
}
.hukidashi.faq p {
    font-size: 18px;
}

section.faq-box {
    background-image: url(../img/green-back-sp.png);
    padding: 7rem 2rem 0rem;
}

img.glay-back-bottom.under-b.pc {
    display: none;
}

img.glay-back-bottom.under-b.sp {
    display: block;
}

.blue-back-flexbox {
    margin-top: 0!important;
    border-radius: 0 0 20px 20px!important;
}

p.positoon-info {
    font-size: 19px!important;
}

strong.price-big-text {
    line-height: 50px!important;
}

ul.info-item-list {
    justify-content: center;
    gap: 0.5rem;
}

.info-box {
    margin-top: 2.5rem !important;
}

p.price-box-inner-btn {
    margin: 2rem auto 0;
}

section.ex-sp-box {
    background-image: url(../img/gray-back-sp.png);
    padding: 7rem 1rem 0rem;
}

img.glay-back-bottom.pc {
    display: none;
}

img.glay-back-bottom.sp {
    display: block;
}

section.hanashi-box {
    padding: 0rem 1rem 4rem;
}

.info-contents {
    padding: 3rem 1rem;
}
}

























/* トップページ↑ */

/* 下層ページ↓ */
.title-box {
    background-image: url(../img/title-back.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1rem 1rem 5rem;
}

.title-box-inner {
    max-width: 1100px;
    margin: auto;
    color: #fff;
}

p.bread {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-box-inner h1 {
    font-family: 'Belanosima';
    font-size: 70px;
    margin: 0rem auto;
    text-align: center;
}

p.jp-title {
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.text-contents-box-pad {
    padding: 0 1rem;
}

.text-contents-box {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2rem 0;
}

ul.text-contents-list li h3 {
    font-size: 24px;
    border-bottom: 2px solid;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
     font-family: 'Noto Sans JP';
}

ul.text-contents-list li p {
    font-size: 17px;
    margin: 0;
}

li.text-contents-item {
    margin-bottom: 4rem;
}

ul.dot-list {
    list-style: disc;
    margin-left: 1.5rem;
}

strong.l-text {
    font-size: 18px;
}

p.mb-s {
    margin-bottom: 1rem;
}

strong.l-text.text17 {
    font-size: 17px;
}

a.other-link {
    text-decoration: underline;
}

.other-main-text p {
    font-size: 17px;
}

.other-main-text {
    margin-bottom: 4rem;
}

span.blue-text {
    color: #0087D3;
}

span.pink-text {
    color: #E51F87;
}

.ptice-box {
    border-radius: 5px;
    padding: 2rem 2.5rem;
    margin: 3rem 0 0;
    box-shadow: 0px 0px 10px #dddddd;
}

h3.price-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.blue-back-flexbox {
    background: #F3F8FC;
    padding: 2rem;
    border-radius: 20px;
    margin: 0.5rem 0;
}

.blue-back-flexbox {
    background: #F3F8FC;
    padding:  2rem ;
    border-radius: 20px;
    display: flex;
    gap: 2rem;
    max-width: 972px;
    margin-left: auto;
    margin-right: auto;
}

.blue-back-flexbox-left,.blue-back-flexbox-right {
    width: -webkit-fill-available;
    max-width: 48%;
}

.price-box-about {
    display: flex;
    justify-content: space-between;
    gap:1rem;
}

.position-btn {
    color: #0087D3;
    font-size: 18px;
    background: #fff;
    border: 1px solid;
    padding: 0 1.5rem;
    border-radius: 17px;
    margin-right: 0.75rem;
}

p.positoon-info {
    font-size: 21px;
        margin: 0;
}

p.blue-text {
    color: #0087D3;
    text-align: right;
    font-family: "Inter", sans-serif;
    margin: 0rem ;
}

strong.price-big-text {
    font-size: 40px;
    font-weight: bold;
    line-height: 30px;
}

span.price-big-text-en {
    margin-left: 0.3rem;
    font-size: 27px;
    font-weight: bold;
    font-family: 'Noto Sans JP';
}

ul.info-item-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-box p {
    margin: 1rem 0 0.25rem;
}

p.price-box-inner-btn{
    font-size: 16px;
    background: #fff;
    border: 1px solid #0087D3;
    padding: 0  0.75rem;
    border-radius: 17px;
    margin: 0;
    width: fit-content;
}

p.font-sm15 {
    font-size: 15px;
}

p.check-text {
    font-size: 14px;
    margin: 0.5rem 0;
}

.contact-form {
    max-width: 1100px;
    background: #F7F7F7;
    padding: 3rem;
    margin:0  auto 4rem;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form form {
    max-width: 900px;
    margin: auto;
}

@media (max-width: 768px) {
    .contact-form {
        max-width: auto;
        margin: 0 1rem;
        padding: 0rem;
    }

    .contact-form iframe {
        margin: 0 !important;
    }
}


.form-group {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0rem;
    align-items: center;
    font-weight: bold;
    gap:1rem;
}

span.required {
    background: #FCD807;
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 16px;
    font-weight: normal;
}

span.optional{
    background: #5B5B5B;
    border-radius: 5px;
    padding: 2px 6px;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
}

input,.address-fields,
select#prefecture,
.file-upload-area {
    border: 0px solid #fff;
    padding: 0.5rem 0.5rem;
    border-radius: 3px;
    max-width: 630px;
    width: -webkit-fill-available;
}

select#prefecture {
    padding-right: 1.5rem;
}

input::placeholder,
textarea::placeholder,
select#prefecture
{
    color: #CCCCCC; 
    opacity: 1;
    font-weight: bold;
}

.form-address {
    display: flex;
    justify-content: space-between;
    gap:1rem;
}

.address-ite-flex {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    gap: 2.5rem;
}

.address-item.block label {
    display: block;
}

label.sub-label {
    font-weight: bold;
}

.form-address label {
    font-weight: bold;
}

.address-fields.pad-no {
    padding: 0;
}

.address-item.block {
    width: 35%;
}

.address-item {
    width: -webkit-fill-available;
}

.form-group.top-line {
    align-items: baseline;
}

.file-upload-area{
    background-color: #fff;
    padding-top:1.5rem;
    padding-bottom: 1.5rem;
    border-radius: 5px;
}

p.file-upload-text {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-weight: normal;
}

input#company-logo {
    margin: 1rem auto 0;
    display: block;
    width: auto;
}

section.infomation-box.sp-page {
    padding: 0px 2rem;
}

section.contact-sp-page {
    max-width: 1100px;
    margin: 3rem auto;
}



@media (max-width: 768px) {
    section.contact-sp-page.-type2 .contact-box-sp-page {
    margin-top: 0;
}
    section.contact-sp-page {
        max-width: auto;
        margin: 3rem 1.6rem;
    } 
}

.contact-box-sp-page {
    border-radius: 5px;
    border: 1px solid #0087D3;
    padding: 2rem;
    margin: 4rem auto 0;
    max-width: 582px;
    text-align: center;
}

.contact-box-sp-page a img {
    margin: auto;
}

p.tel-text {
    color: #0087D3;
    font-weight: bold;
    font-size: 36px;
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
}

p.tel-text span{
    font-size: 28px;
}

p.mail-text {
    margin: 0 auto 1.5rem;
}

.contact-box-sp-page h3 {
    font-size: 20px;
}


@media (max-width: 768px) {
    .title-box-inner h1 {
        font-size: 40px;
        line-height: 35px;
        margin: 1.5rem 0 1rem;
    }
    
    p.bread {
    font-size: 11px;
}

p.jp-title {
    font-size: 13px;
}

ul.text-contents-list li h3 {
    font-size: 20px;
    margin-bottom: 1rem;
}

ul.text-contents-list li p {
    font-size: 15px;
}

ul.dot-list {
    font-size: 15px;
}

::marker {
    font-size: 10px;
}

.text-contents-box {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding: 2rem 0 1rem;
}

strong.l-text {
    font-size: 15px;
    font-weight: normal;
}

strong.l-text.text17 {
    font-size: 15px;
}

p.mb-s {
    margin-bottom: 4rem;
}

.other-main-text {
    margin-bottom: 2rem;
}


}

@media (max-width: 480px) {
    .title-box {
    background-image: url(../img/title-back-sp.png);
    padding: 1rem 1rem 4rem;
}
}

.blue-back-flexbox-left .font-sm15,
.blue-back-flexbox-right .font-sm15 {
    text-align: left !important;
}
/* 下層ページ↑ */