@charset "UTF-8";

:root{
    --bg: #FAFAFA;
    --ink: #3F3F3F;
    --ink-soft: #9E9890;
    --pink: #E99F9F;
    --light-pink: #F4C2C2;
    --orange: #FDB46C;
    --light-orange:#FEE6AA;
    --purple: #B48BC9;
    --light-purple: #CAB2D6;
    --blue: #70AED8;
    --light-blue: #B3CFE2;
    --cyan: #66C2AE;
    --light-cyan: #B3E2D8;
    --brown: #8F5D3E;
    --shadow: rgba(63,63,63,0.2);
}

/* ----- resetここから ----- */
*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    margin: 0;
    padding: 0;
    width: 100%;
}

body{
    margin:0;
    padding: 0;
    width: 100%;
    background:var(--bg);
    color:var(--ink);
    font-family: "Kaisei Opti", serif;
    font-weight: 400;
    font-style: normal;
    line-height:1.9;
    -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
    font-weight:700;
    font-style: normal;
    line-height:1.25;
    margin:0;
    color:var(--ink);
}

h4 {
    font-size: 1rem;
    color: var(--pink);
    padding-bottom: 0.05em;
}

p{
    margin:0;
    font-size: 1rem;
    line-height: 1.5;
}

a{
    color: var(--ink-soft);
    transition: color 0.2s ease, border-color 0.2s ease;
    font-size: 1rem;
}

ul{
    margin:0;
    padding:0;
    list-style:none;
}

input, button, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.flex-item {
  min-width: 0;
  min-height: 0;
}

@media (max-width: 720px) {
    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 0.9rem;
    }

    p{
        font-size: 0.85rem;
    }

    a{
        font-size: 0.85rem;
    }

    dt {
        font-size: 0.85rem;
    }
    dd {
        font-size: 0.85rem;
    }
}

/* ----- resetここまで ----- */

/* ----- headerここから ----- */
.header {
    position: sticky;
    top: 0;
    background: rgba(250,250,250,0.2); /* --bg */
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--light-pink);
    height: 80px;
    z-index: 10;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
    align-items: center;
    padding-top: 25px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background-color: var(--brown);
}

.header--AL {
    border-bottom: 1px solid var(--orange);
}

.header--TW {
    border-bottom: 1px solid var(--purple);
}

.header--TM {
    border-bottom: 1px solid var(--cyan);
    font-weight: 200;
}

.header-logo a {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--brown);
    text-decoration: none;
}

.header-nav-list {
    display: flex;
    gap: 30px;
}

.header-nav-item {
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}

.header-nav-item--active {
    color: var(--ink);
    font-weight: 700;
}

.header-nav-item--active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--pink);
}

.header-nav-item--AL::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--orange);
}

.header-nav-item--TW::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--purple);
}

.header-nav-item--TM::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--cyan);
}

@media screen and (min-width: 769px) {
    .header-nav-list li:last-child {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header {
        width: 100vw;
    }

    .header-inner {
        width: 100vw;
        padding: 20px 10%;
    }

    .hamburger {
    display: flex;
    }

  /* スライドメニュー（初期状態：画面外の右側に隠す） */
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    color: var(--bg);
    background-color: var(--pink);
    transform: translateX(100%); /* 右へ100%分ずらして画面外に */
    transition: transform 0.4s ease; /* ゆるやかに動かす */
    z-index: 100;
  }

  .menu--AL {
    background-color: var(--orange);
  }

  .menu--TW {
    background-color: var(--purple);
  }

  .menu--TM {
    background-color: var(--cyan);
  }

  /* ボタンが押されて is-open が付いたら画面内へ */
  .menu.is-open {
    transform: translateX(0);
  }

  /* メニューリストのスタイル */  
  .header-nav-list {
    display: block;
  }

  .header-nav-list li {
    margin-left: 20%;
    margin-top: 24px;
  }

  .header-nav-item {
    color: var(--bg);
    font-size: 1.1rem;
  }

  .header-nav-list li:last-child {
    display: block;
  }  
}


/* ----- headerここまで ----- */

/* ----- footerここから ----- */
.footer {
    background-color: var(--light-pink);
    padding: 20px 0;
}

.footer-menu {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-logo a {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ink);
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-nav {
    width: 30%;
}

.footer-nav-title {
    color: var(--ink);
    position: relative;
    padding-bottom: 8px;
}

.footer-nav-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--ink-soft);
}

.footer-nav-item {
    color: var(--ink);
    text-decoration: none;
}

.footer-copy {
    display: block;
    margin: 10px 0 auto;
    text-align: center;
}

.footer--AL {
    background-color: var(--light-orange);
}

.footer--TW {
    background-color: var(--light-purple);
}

.footer--TM {
    background-color: var(--light-cyan);
}

@media screen and (max-width: 768px) {
    .footer-menu {
        display: block;
        padding-left: 30px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-nav {
        width: 300px;
        margin-bottom: 20px;
    }
}


/* ----- footerここまで ----- */

/* ----- commonここから ----- */
.fv {
    background-image: url(./images/fv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 50vh;
    position: relative;
    z-index: 1;
    width: 100%;
    place-items: center;
}

.fv-text {
    position: absolute;
    bottom: 30px;
    text-align: center;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    width: max-content; /* 折り返し防止 */
}

.sec {
    width: 1000px;
    margin: 0 auto 5vh;
}

.sec--first {
    margin-top: 60px;
}

.sec-heading {
    text-align: center;
    padding-bottom: 10px;
}

.sec-heading-rule{
    width: 50px;
    height: 1px;
    background: var(--ink-soft);
    margin: 0 auto 2vh;
}

.cards {
    display: flex;
    justify-content: space-between;
}

.card {
    width: 300px;
    height: 300px;
    position:relative;
    border-radius: 10px;
}

.card-text {
    padding: 10px 0;
}

.card-image {
    border-radius: 10px;
}

.card-image--square {
    width: 300px;
}

.h3--center {
    text-align: center;
    padding-bottom: 10px;
}

.h3--bottom {
    padding-bottom: 10px;
}

.h3--small {
    font-size: 1rem;
}

.p--center {
    text-align: center;
}

.p--right {
    padding-top: 10px;
    text-align: right;
}

.capt {
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.card__white {
    background-color: var(--bg);
    opacity: 0.8;
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.card--orange {
    border-style: solid;
    border-width: 4px;
    border-color: var(--light-orange);
}

.card--purple {
    border-style: solid;
    border-width: 4px;
    border-color: var(--light-purple);
}

.card--cyan {
    border-style: solid;
    border-width: 4px;
    border-color: var(--light-cyan);
}

.row {
    display: flex;
}

.row-image {
    width: 300px;
    margin-right: 30px;
    border-radius: 10px;
}

.row-text {
    padding-top: 10px;
}

.row--space {
    margin-top: 30px;
}

.btn {
    border-radius: 100px;
    transition: background .2s ease,transform .15s ease;
    margin: 0 auto;
}

.btn--imp {
    text-align: center;
    margin: 30px auto;
}

.btn-center {
    text-align: center;
}

.btn--pill {
    display: inline-block;
    padding: 10px 30px;

}

.btn--fix {
    display: block;
    padding: 10px;
}

.btn-text {
    display: block;
    color: var(--ink);
    font-size: 0.9rem;
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.7;
}

.btn--pink {
    background: var(--light-pink);
}

.btn--orange {
    background-color: var(--light-orange);
}

.btn--purple {
    background-color: var(--light-purple);
}

.btn--cyan {
    background-color: var(--light-cyan);
}

.steps {
    width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    padding: 10px 0;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    background: var(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85em;
    font-weight: 700;
    margin-right: 10px;
}

.space--bottom {
    margin-bottom: 20px;
}

.info-table {
    margin-top: 10px;
}

.info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 15px 0;
    gap: 12px;
}

.info-row dt {
    font-weight: 700;
}

.info-row dd {
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 10px;
}

.faq-item {
    overflow: hidden;
}

.faq-q {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    border-radius: 100px;
    border: 4px solid var(--light-orange);
}

.faq-icon{
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    position: relative;
    transition: transform .25s ease;
}

.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--bg);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.faq-icon::before {
    width: 10px;
    height: 2px;
}

.faq-icon::after {
    width:2px;
    height:10px;
}

.faq-item.open .faq-icon {
    transform:rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a-inner {
    padding: 0 18px 18px;
}

@media screen and (max-width: 768px) {
    .fv-text {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .sec {
        width: 85vw;
        margin: 20px auto;
    }
    .cards {
        display: block;
    }
    .card {
        margin: 0 auto 20px;
    }

    .row {
        display: block;
    }
    .row-image {
        display: block;
        margin: 0 auto 10px;
    }
    .row-text {
        margin: 20px auto;
    }

    .btn-text {
        font-size: 0.8rem;
    }

    .step > p {
        width: 85%;
    }

    .faq-grid {
        display: block;
    }
    .faq-item {
        margin-bottom: 10px;
    }
    .faq-a-inner {
        font-size: 0.85rem;
    }

}

/* ----- commonここまで ----- */

/* ----- topここから ----- */

.fv--top {
    background-image: url(./images/fv.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 70vh;
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    place-items: center;
}

.fv--fluid {
    background: var(--bg);
    opacity: 0.5;
    width: 50vh;
    height: 50vh;
    animation: fluidAnimation 15s ease 0s infinite normal;
}

@keyframes fluidAnimation {
    /* 
      正円である「50%」を基準に、ブレ幅を【65%〜75%】の範囲内に制限。
      これにより「半径の外側4分の1（25%）」以上のえぐれを防ぎつつ、
      生き物のように滑らかに変化する輪郭を作ります。
    */
    0%, 100% {
        border-radius: 72% 52% 68% 52% / 50% 72% 68% 50%;
    }
    20% {
        border-radius: 50% 74% 70% 66% / 72% 50% 74% 52%;
    }
    50% {
        border-radius: 74% 66% 50% 72% / 52% 74% 66% 72%;
    }
    60% {
        border-radius: 52% 72% 74% 50% / 72% 52% 52% 50%;
    }
    80% {
        border-radius: 72% 50% 52% 74% / 64% 52% 70% 66%;
    }
}

.fv-text--top {
    margin: 0;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--ink);
    z-index: 3;
    text-align: center;
}

.fv--fluid, .fv-text--top {
    grid-area: 1 / 1;
}

.fv-desc {
    width: 1000px;
    margin: 5vh auto;
}

.card--top-acts {
    position: relative;
    background-size: cover;
}

.card--top-AL {
    background-image: url(./images/act--AL.jpg);
}

.card--top-TW {
    background-image: url(./images/act--TW.jpg);
}

.card--top-TM {
    background-image: url(./images/act--TM.jpg);
}

.card__dome {
    position:absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
}

.card__title {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    bottom: 50px;
}

.capt--top-acts {
    position: absolute;
    display: block;
    width: 100%;
    text-align: center;
    bottom: 20px;
}

.card--top-long {
    background-image: url(./images/act--trip.jpg);
    position: relative;
    width: 1000px;
    height: 200px;
    border-radius: 10px;
    margin-top: 30px;
    background-size: cover;
}

.card--inner {
    position: absolute;
    width: 300px;
    left: 0;
    bottom: 0;
}

.card--top-art1 {
    background-image: url(./images/artis--1.jpg);
    background-size: cover;
}

.card--top-art2 {
    background-image: url(./images/artis--2.jpg);
    background-size: cover;
}

.card--top-art3 {
    background-image: url(./images/artis--3.jpg);
    background-size: cover;
}

.card-text--art {
    position: absolute;
    padding: 30px;
    padding-top: 80px;
}

.card--contact {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    padding: 30px;
    height: auto;
}

.btn--contact {
    margin-bottom: 10px;
}

.p--contact {
    margin-top: 15px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .fv--top {
        height: 50vh;
    }

    .fv--fluid {
        width: 40vh;
        height: 40vh;
    }

    .fv-text--top {
        font-size: 1.4rem;
    }
    
    .fv-desc {
        width: 90%;
        margin: 20px auto;
    }

    .card--top-long {
        background-image: url(./images/act--trip-p.jpg);
        position: relative;
        width: 300px;
        height: 300px;
        border-radius: 10px;
        margin: 0 auto;
        background-size: cover;
    }

    .card--contact {
        margin: 0 auto 20px;
    }
}

/* ----- topここまで ----- */

/* ----- artlaboここから ----- */
.AL {
    font-family: 'Zen Maru Gothic', sans-serif;
}

.fv--AL {
    background-image: url(images/fv--AL.jpg);
    background-color: var(--orange);
    height: 60vh;
}

.btn--AL {
    padding: 15px 60px;
    background-color: var(--orange);
}

.btn-text--AL {
    color: var(--bg);
    font-size: 1.2rem;
    font-weight: 700;
}

.sec--AL {
    margin-top: 60px;
    margin-bottom: 60px;
}

.sec--bear {
    display: flex;
    align-items: center;
}

.sec__bear {
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-right: 15px;
}

.bear {
    display: flex;
    width: 450px;
}

.sec-heading--dash {
    width: 500px;
}

.sec-heading__dash1 {
    position: relative;
    padding: 15px;

    &::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    box-sizing: border-box;
    background-color: var(--orange);
    rotate: -16deg;
  }

  &::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    border-radius: 2px;
    box-sizing: border-box;
    background-color: var(--orange);
    rotate: 12deg;
  }

  & > .sec-heading__dash2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    &::before {
      content: "";
      position: absolute;
      top: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      border-radius: 2px;
      box-sizing: border-box;
      background-color: var(--orange);
      rotate: -12deg;
    }

    &::after {
      content: "";
      position: absolute;
      bottom: -20px;
      left: 0;
      width: 60px;
      height: 4px;
      border-radius: 2px;
      box-sizing: border-box;
      background-color: var(--orange);
      rotate: 16deg;
    }
  }
}

.sec-heading--AL {
    margin-bottom: 60px;
}

.card--gray {
    border: 4px solid var(--ink-soft);
    padding: 10px 5px;
    height: auto;
}

.card--notice {
    border: 4px solid var(--light-orange);
    padding: 20px 10px;
    height: auto;
}

.part__notice {
    background-image: url(images/notice.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 120px;
    margin: 30px auto;
    align-items: center;
}

.p--notice {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    padding-top: 50px;
}

.sec-heading--bee {
    background-image: url(images/bees.png);
    height: 50px;
    margin-bottom: 30px;
}

.sec-heading--cyan {
    color: var(--cyan);
    padding-top: 20px;
}

.part__sun {
    display: grid;
}

.sun-line, .sun, .p--sun {
    grid-area: 1 / 1;
}

.sun-line {
    width: 250px;
    height: 250px;
    border-radius: 300px;
    border: 4px dashed var(--orange);
    margin: 0 auto;
}

.sun {
    width: 230px;
    height: 230px;
    border-radius: 300px;
    background-color: var(--orange);
    margin: auto;
}

.p--sun {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: auto;
    color: var(--bg);
}

.sun--desc {
    font-size: 0.9rem;
    margin-top: 15px;
    font-weight: 700;
}

.imagebox {
    position: relative;
    width: 1000px;
    height: 250px;
}

.image--tape {
    position: absolute;
    top: -20px;
    left: 75px;
    content: "";
    width: 80px;
    height: 40px;
    background-color: var(--light-orange);
    opacity: 0.8;
    rotate: -8deg;
}


.image--rotate {
    position: absolute;
    top: 0;
    margin-left: 30px;
    width: 200px;
    height: 200px;
    rotate: -8deg;
}

.comment {
    border-radius: 10px;
    background-color: var(--light-orange);
    padding: 15px;
    margin-top: 10px;
}

.info-table--AL {
    width: 800px;
    margin: 30px auto 60px;
}

.info-row--AL dt {
    padding-left: 20px;
    color: var(--orange);
}

.info-row--AL {
    border-top: 4px dashed var(--light-orange);
}

.info-row--AL:last-child {
    border-bottom: 4px dashed var(--light-orange);
}

.steps-list--AL {
    width: 800px;
    margin: 0 auto;
}

.step-num--AL {
    color: var(--bg);
    background-color: var(--orange);
}

.faq-q--AL {
    border: 4px solid var(--light-orange);
}

.faq-icon--AL {
    background: var(--orange);
}

@media screen and (max-width: 768px) {
    .fv--AL {
        height: 30vh;
    }

    .dome--fv {
        width: 200px;
        height: 100px;
    }

    .btn--AL {
        padding: 15px 30px;
    }

    .sec--AL {
        margin-bottom: 30px;
    }

    .btn-text--AL {
        font-size: 0.9rem;
    }

    .sec--bear {
        display: block;
    }

    .sec__bear {
        width: 80px;
        height: 80px;
    }

    .bear {
        margin: 0 auto;
    }

    .sec-heading__dash1 {
    &::before {
    top: -8px;
    width: 30px;
  }

  &::after {
    bottom: 0px;
    width: 40px;
  }

  & > .sec-heading__dash2 {
    &::before {
      top: 0;
      width: 40px;
    }

    &::after {
      bottom: -8px;
      width: 30px;
    }
  }
  }

  .sec-heading--AL {
    margin-bottom: 20px;
  }

  .sec-heading--bee {
    background-image: none;
    margin: 0;
    height: auto;
  }

  .sec-heading--cyan {
    padding-top: 0;
  }

  .sun {
    width: 180px;
    height: 180px;
  }

  .sun-line {
    width: 200px;
    height: 200px;
  }

  .card--sun {
    height: 240px;
  }

  .imagebox {
    width: 300px;
  }
    .image--tape {
        top: 0;
        left: 100px;
    }

    .image--rotate {
        position: absolute;
        top: 20px;
        margin-left: 50px;
    }

    .info-table--AL {
        width: 100%;
    }

    .steps-list--AL {
        width: 100%;
    }
}

/* ----- artlaboここまで ----- */

/* ----- toironowaここから ----- */
.TW {
    font-family: 'Hina Mincho', serif;
}

.fv--TW {
    background-image: url(images/fv--TW.jpg);
    background-color: var(--light-purple);
    height: 60vh;
}

.fv-text--TW {
    letter-spacing: 0.1em;
}

.btn--TW {
    background-color: var(--purple);
}

.sec--TW {
    margin-bottom: 30px;
}

.sec-heading--TW {
    padding-bottom: 10px;
}

.sec-heading-rule--TW {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, #B48BC9, #B3CFE2);
    margin-bottom: 30px;
}

.card--TW {
    display: grid;
}

.card__circle, .card-inner--TW {
    grid-area: 1 / 1;
}

.card-inner--TW {
    z-index: 10;
    height: 200px;
    margin: auto 0;
}

.card__circle {
    width: 200px;
    height: 200px;
    border-radius: 300px;
    background-color: var(--light-purple);
    opacity: 0.7;
    margin: 0 auto;
}

.card--TWact {
    width: 480px;
    height: auto;
    padding: 20px;
    border: 2px solid var(--light-purple);
}

.card--TWteacher {
    width: 450px;
    height: auto;
}

.info-table--TW {
    width: 800px;
    margin: 0 auto;
}

.info-row--TW {
    border-top: 1px solid var(--light-purple);
}

.info-row--TW:last-child {
    border-bottom: 1px solid var(--light-purple);
}

.faq-q--TW {
    border: 1px solid var(--light-purple);
}

.faq-icon--TW {
    background: var(--purple);
}

@media screen and (max-width: 768px) {
    .fv--TW {
        height: 30vh;
    }
    .card--TW {
        height: 200px;
    }
    .card-inner--TW {
        height: 90px;
    }
    .card--TWact {
        width: 100%;
    }
    .card--TWteacher {
        width: 100%;
    }
    .info-table--TW {
        width: 100%;
    }
}

/* ----- toironowaここまで ----- */

/* ----- toiromarcheここから ----- */
.TM {
    font-family: 'RocknRoll One', sans-serif;
    font-weight: 200;
}

.fv--TM {
    background-image: url(images/fv--TM.jpg);
    background-color: var(--cyan);
    height: 60vh;
}

.btn--TM {
    background-color: var(--cyan);
}

.btn-text--TM {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bg);
}

.sec--marche {
    background-color: var(--cyan);
    color: var(--bg);
    text-align: center;
}

.part__marche {
    padding: 30px 0;
}

.h2--marche {
    color: var(--bg);
    text-align: center;
    margin-bottom: 15px;
}

.marche__date {
    font-size: 2rem;
    letter-spacing: 0.2em;
}

.sec-heading--TM {
    width: 200px;
    margin-right: 50px;
}

.sec-heading--marche {
    margin: 60px auto 15px;
}

.h2--TM {
    color: var(--cyan);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
}

.sec-flag {
    width: 200px;
    margin: 0 auto;
}

.sec-flag--small {
    width: 100px;    
}

.part__theme {
    display: grid;
    grid-template-columns: 160px 1fr;
    padding: 15px 0;
    gap: 12px;
    align-items: center;
}

.p--theme {
    color: var(--bg);
    background-color: var(--cyan);
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 15px;
    text-align: center;
    font-weight: 400;
}

.info-row--TM {
    border-top: 2px solid var(--light-cyan);
}

.info-row--TM:last-child {
    border-bottom: 2px solid var(--light-cyan);
}

.tents {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.card--tent {
    position: relative;
    border-radius: 16px;
    width: 300px;
    height: 370px;
    margin-top: 110px;
}

.tent--purple {
    border-right: 4px solid var(--light-purple);
    border-left: 4px solid var(--light-purple);
    border-bottom: 4px solid var(--light-purple);
}

.tent--pink {
    border-right: 4px solid var(--light-pink);
    border-left: 4px solid var(--light-pink);
    border-bottom: 4px solid var(--light-pink);
}

.tent--orange {
    border-right: 4px solid var(--light-orange);
    border-left: 4px solid var(--light-orange);
    border-bottom: 4px solid var(--light-orange);
}

.tent--cyan {
    border-right: 4px solid var(--light-cyan);
    border-left: 4px solid var(--light-cyan);
    border-bottom: 4px solid var(--light-cyan);
}

.tent--blue {
    border-right: 4px solid var(--light-blue);
    border-left: 4px solid var(--light-blue);
    border-bottom: 4px solid var(--light-blue);
}

.part__tent {
    position: absolute;
    top: -140px;
    width: 300px;
    left: 50%;
    transform: translateX(-50%);
}

.card-image--small {
    position: absolute;
    width: 250px;
    margin: 0 auto;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.part__shop {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
}

.shop-info {
    display: flex;
}

.p--tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--bg);
    margin-left: 10px;
}

.tag--purple {
    background-color: var(--purple);
}

.tag--pink {
    background-color: var(--pink);
}

.tag--orange {
    background-color: var(--orange);
}

.tag--cyan {
    background-color: var(--cyan);
}

.tag--blue {
    background-color: var(--blue);
}

.part__shop-desc {
    margin-top: 5px;
    font-size: 0.9rem;
}

.part__shop-inst {
    display: flex;
    margin-top: 5px;
    align-items: center;
}

.part__shop-inst i {
    font-size: 1.4rem;
    margin-right: 5px;
    color: var(--ink-soft);
}

.sec--offer {
    background-color: var(--light-cyan);
    padding: 30px 0;
}

.h2--offer {
    text-align: center;
    font-weight: 400;
    margin-bottom: 15px;
}

.sec--TM {
    margin-top: 30px;
}

.points {
    display: flex;
    justify-content: space-between;
}

.point {
    margin-bottom: 10px;
    align-items: center;
    width: 300px;
}

.point-head {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.point-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 1.5rem;
    color: var(--bg);
    background-color: var(--cyan);
    margin-right: 4px;
}

.info-table--marche {
    width: 800px;
    margin: 15px auto;
}

.p--atn {
    width: 650px;
    margin: 15px auto;
}

.steps-list--TM {
    width: 600px;
    margin: 0 auto;
}

.step-num--TM {
    color: var(--bg);
    background-color: var(--cyan);
}

@media screen and (max-width: 768px) {
    .fv--TM {
        height: 30vh;
    }

    .marche__date {
        font-size: 1.3rem;
    }

    .sec-heading--TM {
        margin: 0 auto;
    }
    .sec-flag {
        width: 100px;
        display: block;
        margin: 0 auto 20px;
    }

    .part__theme {
        display: block;
    }

    .TM iframe {
        width: 100%;
    }

    .sec-desc--TM {
        margin-bottom: 60px;
    }

    .tents {
        display: block;
    }
    .card--tent {
        margin: 180px auto 10px;
    }

    .points {
        display: block;
    }

    .point {
        width: 100%;
    }

    .info-table--marche {
        width: 100%;
    }

    .p--atn {
        width: 100%;
    }

    .steps-list--TM {
        width: 100%;
    }
}

/* ----- toiromarcheここまで ----- */



/* ----- tripここから----- */
.trip-btns {
    display: flex;
    margin: 0 auto 30px;
    width: 450px;
}

@media screen and (max-width: 768px) {
    .row-text--trip {
        margin: 0;
    }
    .steps--trip {
        width: 100%;
    }
    .step-num--trip {
        width: 30px;
    }
    .trip-btns {
        width: 100%;
        display: block;
    }
    .btn--trip {
        display: block;
        margin: 10px auto 0;
    }
}

/* ----- tripここまで ----- */


/* ----- aboutここから ----- */
.card--about {
    position: relative;
}

.card-inner--about {
    position: absolute;
    padding: 30px;
}

.h3--about {
    padding-top: 15px;
}

.card-text--about {
    padding-top: 30px;
    color: var(--ink);
}

.card--about1 {
    background-image: url(./images/about--AL.jpg);
    background-size: cover;
}

.card--about2 {
    background-image: url(./images/about--TW.jpg);
    background-size: cover;
}

.card--about3 {
    background-image: url(./images/about--TM.jpg);
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .row-text--about {
        margin: 0;
    }
}

/* ----- aboutここまで ----- */


/* ----- contactここから ----- */
.sec--form {
    width: 800px;
    margin: 90px auto;
}

.p--contact {
    text-align: center;
    margin-bottom: 30px;
}

/* ----- formここから ----- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.badge-required {
    background-color: var(--pink);
    color: var(--bg);
    font-size: 0.7em;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

.form-categories{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.form-category{
    display: flex;
    align-items: center;
}

/* 入力欄（1行テキスト・複数行テキスト共通）のスタイル */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="phone"],
.form-group textarea,
.form-group input [type="checkbox"] {
    width: 100%;
    padding: 15px;
    font-family: 'Kaisei Opti';
    border: 1px solid var(--ink);
    border-radius: 6px;
    background-color: #FFFFFF;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

/* チェックボックスのサイズ変更 */
.form-category input[type="checkbox"] {
    transform: scale(1.5); /* 1.5倍 */
    margin-right: 8px;
}
.checkbox-label input[type="checkbox"] {
    transform: scale(1.5); /* 1.5倍 */
    margin-right: 8px;
}

/* 入力欄にカーソルが当たったときの見た目 */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit button {
    background-color: var(--ink);
    color: var(--bg);
    font-family: 'Kaisei Opti';
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 15px 60px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.form-submit button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .sec--form {
        width: 90%;
        margin: 30px auto;
    }

    .capt--form {
        font-size: 0.75rem;
    }

    .form-group label {
        font-size: 0.7em;
    }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="phone"],
    .form-group textarea,
    .form-group input[type="checkbox"] {
        padding: 12px;
    }

    .form-categories {
        display: block;
    }
    .form-category {
        margin-bottom: 5px;
    }
}

/* ----- formここまで ----- */

/* ----- contactここまで ----- */

/* ----- priacyここから ----- */
.privacy-container {
    margin: 50px auto;
    max-width: 1000px;
    padding: 0;
}

.privacy-container a{
    text-decoration: underline;
}

.privacy-heading {
    padding-bottom: 10px;
}

.privacy-section{
    margin-bottom: 40px;
}

.policy-section{
    margin-bottom: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    border: var(--pink);
}

.policy-section h3{
    margin-bottom: 30px;
}

.policy-section ul{
    padding-left: 20px;
}

.policy-section li{
    list-style: disc;
    line-height: 1.2em;
}

.policy-group{
    margin-bottom: 20px;
}


@media (max-width: 720px) {
    .privacy-container {
        padding: 0 20px;
    }
    
    .policy-group li{
        font-size: 0.7rem;
    }
}

/* ----- priacyここまで ----- */

/* ----- thanksここから ----- */
.thanks-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    box-sizing: border-box;
}

.thanks-icon {
    display: inline-block;
    color: var(--pink); 
    font-size: 80px; 
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 15px;
    letter-spacing: 0.05em;
}

.thanks-container p {
    margin-bottom: 50px;
    color: var(--ink);
    text-align: center;
}

.thanks-action {
    text-align: center;
}

.btn-home {
    display: inline-block;
    background-color: var(--pink);
    color: var(--bg);
    font-size: 1.5em;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 100px;
    transition: opacity 0.2s ease;
    border-bottom: none;
}

.btn-home:hover {
    opacity: 0.8;
}

@media (max-width: 720px) {
    .thanks-container {
        padding: 60px 16px;
    }
    
    .thanks-icon {
        margin-bottom: 24px;
    }
    
    .btn-home {
        padding: 14px 48px;
    }
}
/* ----- thanksここまで ----- */



