body, html {
    margin: 0;
    padding: 0;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    line-height:1.5;
    background-color: #000;
    color: #fff;
}

html{
    scroll-behavior: smooth;
}

img{
    width: 100%;
}

p {
    line-height:2;
}

a,a:hover,a:visited{
    color: inherit;
    text-decoration: none;
}

h1,h2,h3,h4,h5,ul,li{
    margin:0;
    padding:0;
}

.marker{
    background:linear-gradient(transparent 60%, #ff6 60%);
}

h2,h3,h4{
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

h2{
    font-size:1.8em;
}

h3.section-title{
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 1.2em;
    margin-bottom:60px;
}

h3.section-title:before{
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffffff;
    border-radius: 2px;
}

.btn,
a.btn,
button.btn {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #323232;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #656565;
}


#main-visual{
    position: relative;
}

.hero-image {
    background-image: url('assets/img/hero-img.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:15px;
}

.top-catch{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-catch-img{
    width: calc(50% - 10px);
}

.catch-copy{
    position: absolute;
    bottom:0;
    padding:30px;
    background-color:rgba(0, 0, 0, 0.8);
    width:calc(100% - 60px);
    text-align: center;
    color:#fff;
    font-size: 1.5em;
    font-weight: 900;
}

@media (max-width: 1023px) {

    .top-catch{
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
        padding:0 20px;
    }

    .top-catch-img{
        width: 100%;
    }

}

/*キャンペーン*/

#campaign{
    position: relative;
    width: 90%;
    padding:30px 0;
    margin: auto;
}

.campaign-img {
    width:100%;
    max-width:1280px;
    margin:30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}



/*ロゴ*/

.logo{
    max-width: 100px;
    padding:0 20px;
    height: 100%;
    display: flex; /* フレックスボックスを適用 */
    align-items: center; /* 縦中央揃え */
}

.logo a{
    padding:0;
    margin:0;
    line-height: 0;
}

.logo img{
    width: 100%;
}

.logo h1{
    font-size:0.6em;
    margin:0;
    text-align: center;
    white-space: nowrap;
}

/* ヘッダーとナビゲーション */
header {
    display: flex;
    position: fixed;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color:#fff;
    z-index: 9999;
    height:110px;
}

header > :first-child{
    margin-right: auto;
}

.menu-toggle {
    display: none; /* デフォルトでは非表示 */
}

.menu{
    display: none;
}

.pc-nav{
    height:100%;
}

.pc-nav ul{
    display: flex;
    list-style: none;
    height: 100%;
}

.pc-nav ul li{
    margin:0;
    padding:0 20px;
    height: 100%;
    display: flex; /* フレックスボックスを適用 */
    align-items: center; /* 縦中央揃え */
}

.pc-nav ul li a{
    font-weight: 600;
    color:#fff;
    text-decoration: none;
    position: relative;
}

.pc-nav ul li a::after {
    /*アンダーラインのスタイル*/
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #af0fa4;
    bottom: -15px;
    left: 0;
    /*横方向0で非表示にする*/
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    /*中央を基点にアニメーション*/
    -webkit-transform-origin: center top;
    transform-origin: center top;
    /*アニメーションの速度設定*/
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .pc-nav ul li a:hover::after {
    /*横方向等倍まで拡大*/
    transform: scale(1, 1);
  }

  .spmenu-img{
    width:30px;
    margin:0 auto;
  }

  .head-member{
    background-color: #8e44ad;
  }

  .head-ex{
    background-color: #2a1f9d;
  }

  .head-line{
    background-color: #efefef;
    color:#00B900;
  }

  .head-insta{
    background-color: #e9e9e9;
    color:#da0078;
  }

  .head-member,
  .head-ex,
  .head-line,
  .head-insta {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content:center;
    transition: background-color 0.3s ease; /* 背景色の変化をゆっくりと */
  }

  .head-member a::after,
  .head-ex a::after,
  .head-line a::after,
  .head-insta a::after {
    content: none !important; /* アンダーラインのアニメーションを無効化 */
  }

  .head-member:hover,
  .head-ex:hover {
    background-color: rgba(142, 68, 173, 0.7); /* ホバー時にバックグラウンドカラーを薄くする */
  }

  .head-ex {
    background-color: #2a1f9d; /* 初期バックグラウンドカラー */
  }

  .head-ex:hover {
    background-color: rgba(42, 31, 157, 0.7); /* ホバー時にバックグラウンドカラーを薄くする */
  }


/* レスポンシブ対応 */
@media (max-width: 1280px) {

    .pc-nav{
        display: none;
    }

    .mobile-nav{
        margin-right:20px;
    }

    .menu {
        display: block;
        position: absolute;
        top: 110px; /* ヘッダーの下に表示されるように調整 */
        left: 0;
        width: 100%;
        list-style: none;
        margin:0;
        transform: translateY(-100%);
        transition: transform 0.5s ease, opacity 0.5s ease; /* アニメーション適用 */
        z-index: 100;
        background-color: #000;
        color: #fff;
        visibility: hidden; /* 初期状態では見えない */
        opacity: 0; /* 初期状態では透明 */
    }
    
    .menu.is-active {
        transform: translateY(0); /* スムースに下りてくるアニメーション */
        visibility: visible; /* 表示状態に */
        opacity: 1; /* 不透明に */
    }
    
    .menu li a {
        text-decoration: none;
        padding: 25px 10px;
        display: block;
        font-size:1.2em;
        font-weight: 900;
        text-align: center;
    }

    .menu-sec{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .menu-sec li{
        padding:15px 0;
        width: 100%;
        display: block;
        text-align: center;
        font-size:10px;
    }

    .menu-sec a{
        width: 100%;
    }
    
    .menu-toggle {
        cursor: pointer;
        height: 24px; /* ボタンのサイズを調整 */
        width: 30px; /* ボタンのサイズを調整 */
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background: none; /* ボタンの背景色を透明にする */
        border: none; /* ボタンの境界線を削除 */
        padding: 0; /* パディングをリセット */
        margin: 0; /* マージンをリセット */
        outline: none; /* フォーカス時のアウトラインを削除 */
    }
    
    .burger {
        content: '';
        background-color: #fff; /* ラインの色 */
        height: 4px; /* ラインの厚さ */
        width: 30px; /* ラインの長さ */
        position: relative; /* 中央のラインに対する変更 */
        /*top: 50%;  親要素内で垂直中央に配置 */
        transform: translateY(-50%); /* 自身の高さの半分だけ上に移動して完全に中央に来るように調整 */
        transition: all 0.3s ease;
    }
    
    .burger::before, .burger::after {
        content: '';
        background-color: #fff; /* ラインの色 */
        height: 4px; /* ラインの厚さ */
        width: 30px; /* ラインの長さ */
        position: absolute; /* 絶対位置指定 */
        left: 0; /* 左端から配置 */
    }
    
    .burger::before {
        top: -10px; /* 上のラインの位置 */
        transition: all 0.3s ease;
    }
    
    .burger::after {
        top: 10px; /* 下のラインの位置 */
        transition: all 0.3s ease;
    }
    
    .menu-toggle.is-active .burger {
        background-color: transparent; /* アクティブ時は中央のラインを非表示 */
    }
    
    .menu-toggle.is-active .burger::before, .menu-toggle.is-active .burger::after {
        top: 0;
        transform: translateY(-50%) rotate(45deg); /* 上のラインを45度回転 */
    }
    
    .menu-toggle.is-active .burger::after {
        transform: translateY(-50%) rotate(-45deg); /* 下のラインを-45度回転 */
    }

}


/* ニュースセクション */
#news {
    background-color: #333;
    width: 100%;
    padding:100px 0;
}

.news-wrapper{
    padding:0 20px;
    max-width:680px;
    color: #fff;
    margin:0 auto;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-list li {
    padding: 10px 0;
    border-bottom: dotted 1px #ccc;
}

.news-list li:first-child {
    border-top: none;
}

.news-list li:last-child {
    border-bottom: none;
}

/* 事業内容セクション */

#services{
    width: 100%;
    padding:100px 0;
}

.parallax{
    height: auto;
    background:url(assets/img/service-bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.service-video{
    max-width: 680px;
    width: 100%;
    margin:50px auto;
    padding:0 20px;
    box-sizing: border-box;
}

.service-features{
    max-width: 980px;
    width: 100%;
    margin:auto;
}

.service-features ul{
    list-style: none;
    margin:100px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
}

.service-features ul li{
    flex: 0 0 calc(33.333% - 10px); /* 幅を固定（伸び縮みさせない） */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .service-features ul li {
      flex: 1 1 100%; /* モバイルビューでは各アイテムを縦に並べる */
    }
  }

.features-icon{
    text-align: center;
}

.features-icon img{
    width:50%;
}

.features-txt{
    padding: 10%;
    background-color: rgba(0, 0, 0, 0.8);
}

.features-txt h4{
    font-weight: 900;
    font-size: 1.2em;
    color:#edcd1a;
}

.service-cards{
    max-width: 980px;
    width: 100%;
    margin:auto;
}

.card{
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding:15px 20px;
}

.card-wrapper{
    display: flex;
    width: calc(100% - 60px);
    margin: auto;
    padding:30px;
    background: rgba(0,0,0,0.8);
}

.card-img{
    display: flex;
    justify-content:space-between;
    width: calc(50% - 20px);
    padding:0 10px;
}

.card-txt{
    width: calc(50% - 20px);
    padding:0 10px;
    margin:auto;
}

.card-txt h4{
    text-align: center;
    margin:20px;
}


  /**Slick Arrow*/

  .slick-prev {
    left: 5px !important;
    }
    
    .slick-next {
    right: 5px !important;
    }
    
     /*矢印の色を変更*/
    
    .slick-prev:before,
    .slick-next:before {
        color: #ffffff !important;
    }
    
     /*下に潜っているかもしれない画像の上に矢印を持ってくる*/
    
    .slick-prev,
    .slick-next {
        z-index: 100;
    }
    
/** 企業理念セクション **/

#philosophy{
    width: 100%;
    padding:100px 0 50px 0;
    background-color: #000;
    color:#fff;
}

.subsec-wrapper{
    width: 100%;
    max-width: 980px;
    margin:auto;
}

.subsec-title{
    width: 100%;
}

.subsec-content{
    width: 70%;
    margin:30px auto;
    text-align: center;
}

.subsec-content h4{
    font-size: 1.5em;
}

.logo-image{
    max-width:100px;
    margin:30px auto;
}

/** LINEセクション **/

#line{
    padding:0 0 100px 0;
}

.line-qr{
    max-width:980px;
    width:100%;
    margin: auto;
    text-align: center;
    padding:0 20px;
    box-sizing: border-box;
}

.line-card{
    max-width: 360px;
    width: 90%;
    margin: auto;
}

.line-qr-title{
    background-color: #00B900;
    padding:10px 0;
    text-align: center;
}

.line-qr-img{
    padding: 15%;
    box-sizing: border-box;
    background-color:#fff;
}

.line-qr-img a{
    line-height: 0;
}

.line-qr-img img{
    width: 100%;
}


/** ご利用案内セクション **/

#howto{
    width: 100%;
    padding:100px 0 50px 0;
    background-color: #000;
    color:#fff;
}

.flowchart {
    width: 80%;
    max-width: 600px;
    margin:auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step {
    background-color: #fff;
    color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step h4 {
    margin:0;
    padding:10px;
    box-sizing: border-box;
    font-size: 1.3em;
    display:block;
    width:100%;
    background-color: #8a8a8a;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.step p {
    color:#000;
    display: inline-block;
    padding: 10px 20px;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #4CAF50;
    margin: -10px auto 20px;
    transition: border-top-color 0.3s ease;
    display: block; /* 中央揃えのために追加 */
}

.step:hover + .arrow,
.arrow:hover {
    border-top-color: #45a049;
}

/** 会社概要セクション **/

#company{
    width: 100%;
    padding:100px 0;
}

.company-info dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 0px;
    margin-top:80px;
  }

  
@media (min-width: 769px) {/* PC表示時のdtとddの幅 */
    .company-info dl {
      grid-template-columns: 2fr 5fr; /* dt25%、ddの75% */
    }
  }
  
  .company-info dt, .company-info dd {
    margin: 0;
    padding: 20px 10px;
    border-bottom: 1px dotted #ccc;
    position: relative; 
  }

  .company-info dt{
    font-weight: 900;
  }
  
  .company-info dt::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #ccc;
  }


  .company-info dd:last-of-type,.company-info dt:last-of-type {
    border-bottom: none; /* 最後のddにはボーダーを追加しない */
  }


/** 価格セクション **/

#price{
    width:100%;
    background-color: #333;
    padding:100px 0;
    position: relative;
    text-align: center;
}

#price::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0); /* 半透明の白色 */
    z-index: 0; /* オーバーレイを背景より前、内容より後ろに表示 */
}

.price{
    position: relative;
    z-index: 1;
    width:100%;
    max-width:980px;
    margin:auto;
    display: flex;
}

.plan{
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width:50%;
    margin:5px;
}
.plan-wrapper{
    background-color: #efefef;
    color:#000;
    width: 80%;
    margin:auto;
}

.plan-name{
    padding:15px;
    text-align: center;
}

.plan-name h4{
    font-size: 1.8em;
    font-weight: 900;
    margin-bottom:0;
}

.plan-name p{
    font-size: 0.9em;
    font-weight: 900;
    margin:0;
}

.bg-green{
    background-color:#2ecc71 ;
}

.bg-blue{
    background-color: #3498db;
}

.bg-red{
    background-color: #e74c3c;
}

.bg-orange{
    background-color: #e67e22;
}

.bg-purple{
    background-color:  #8e44ad;
}

.bg-yellow{
    background-color: #f1c40f;
}

.bg-grey{
    background-color: #424242;
}

.bg-pink{
    background-color: #db3fa4;
}

.price-month{
    text-align: center;
    padding: 15px;
    border-bottom:dotted 1px #000;
}

.price-month span{
    font-size: 0.9em;
}

#price h5{
    display: inline;
    font-size: 2em;
    font-weight: 900;
    margin:0 10px;
}

.plan-wrapper ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-wrapper ul li{
    padding:15px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 900;
    border-bottom:dotted 1px #000;
}


.plan-wrapper ul li:last-child{
    border:none;
}

.ticket{
    width: 100%;
    max-width: 690px;
    margin: auto;
    display: flex;
    justify-content:space-around;
    box-sizing: border-box;
    padding:10px;
}

.ticket-card{
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    margin:30px 0;
}

.ticket-type{
    color:#fff;
    padding:20px 0;
}

#price .ticket-type h5{
    font-size: 1.3em;
}

.ticket-price{
    background-color: #efefef;
    color: #262626;
}

.ticket-price p{
    margin: 0;
}

/** 特定商取引法に基づく表記 **/

#legalWrap {
	max-width:700px;
    width: 100%;
	margin:0 auto;
	font-size:90%;
    padding:150px 0 100px 0;
    color: #fff;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    color: #111;
  }

  .table-responsive tbody{
    width: 100%;
  }
  
.table-responsive table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .table-responsive th{
    white-space: nowrap;
    background-color: #ddd;
  }

  .table-responsive td {
    background-color: #eee;
  }

  .table-responsive th,
  .table-responsive td {
    text-align: left;
    padding: 10px 15px;
    border: 1px solid #666;
  }

  
  @media screen and (max-width: 600px) {

    .table-responsive {
        width: 90%;
        margin: auto;
      }

    .table-responsive th,
    .table-responsive td {
      display: block;

    }

    .table-responsive td {
      position: relative;
    }

  }

/*FAQ*/

.faq{
    background-color: #000;
    width: 100%;
    padding:100px 0;
}

.faq_wrapper{
    width: 100%;
    max-width: 780px;
    margin: auto;
}

.toggle {
	display: none;
}
.Label {/*タイトル*/
	padding: 1em;
	display: block;
	color: #fff;
	background:#4c4c4c;
}
.Label::before{/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.accordion div:last-child{
    margin-bottom:0;
}

/** アクセス **/

.access-header{
    background-color: #8e44ad;
    color:#fff;
    font-weight:600;
    text-align: center;
    padding:5px 10px;
    font-size:1.4em;
}

.access-header p{
    line-height: 1.4;;
}

.google-map {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
  }
  
  .google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
/* スマホ表示時の高さを調整 */
@media (max-width: 768px) {
    .google-map {
      padding-top: 75%; /* 縦がより高いアスペクト比（例えば4:3） */
    }
  }
  
  /* PC表示時のスタイル調整 */
  @media (min-width: 769px) {
    .google-map {
      padding-top: 25%; /* PCでの高さを狭くする */
    }
  }


/** フッターセクション **/

footer{
    width:100%;
    background-color: #000;
    padding:30px 0 15px 0;
    color:#fff;
}

.footer-wrapper{
    width: 100%;
    max-width: 980px;
    margin:auto;
}

.footer-company{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom:35px;
    align-items:center;
    text-align: center;
}

.footer-logo{
    max-width: 320px;
}

.footer-logo img{
    max-width: 120px;
}

.footer-address{
    text-align: left;
    padding:0 25px;
    font-size:1.4em;
}

.footer-address p{
    margin:0;
    line-height:1.6;
}


.footer-nav{
    width:100%;
    margin:auto;
}

.footer-nav ul{
    width: 100%;
    list-style: none;
    padding:0;
    margin:0;
    display: flex;
    justify-content:center;
}

.footer-nav ul li{
    margin:5px 30px;
}

.copylight{
    background-color: #262626;
    color:#fff;
    text-align: center;
}

/** お問合せフォーム **/

.Required{
    background-color: #c92752;
    color:#fff;
    font-size:0.8em;
    padding:3px 5px;
    border-radius: 5px;
    
}

#formWrap {
	width:700px;
	margin:0 auto;
	color:#ffffff;
	font-size:90%;
    padding:150px 0 100px 0;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#363636;
	text-align:left;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

@media (max-width: 768px) {
    /* タブレットやスマートフォン向けのレスポンシブ対応 */

    .hero-image {
        background-position: 65% 50%;
    }

    .catch-copy{
        width:calc(100% - 60px);
        font-size: 1.1em;
    }

    #services{
        background-position: right 30% bottom 50%;
    }

    .card-wrapper{
        flex-direction: column;
    }

    .card-img,.card-txt{
        width: 100%;
    }

    .card-img img{
        width: 100%;
        margin:5px auto;
    }
    
    .subsec-wrapper{
        flex-direction: column;
    }

    .subsec-title{
        width: 100%;
        text-align: center;
    }

    .subsec-content{
        width: 90%;
    }

    .company-info dl {
        grid-template-columns: 1fr;
        }
    
    .company-info dt {
        border-bottom: none;
        background-color: #424242;
        }

    .company-info dd{
        border-bottom: 1px dotted #fff;
    }

    .company-info dt::after {
        content:none;
    }

    .ticket{
        flex-direction: column;
    }

    .ticket-card{
        width: 82%;
        margin:10px auto 20px auto;
    }

    .footer-company{
        flex-direction: column-reverse;
    }

    .footer-logo{
        margin:auto;
        width: 75%;
        margin-top:30px;
        text-align: center;
    }

    .footer-logo img{
        width: 198px;
    }

    .footer-address{
        font-size:1.3em;
    }

    .brsp{
        display: none;
    }

    .footer-nav ul{
        flex-direction: column;
    }

    .footer-nav ul li{
        font-size: 0.8em;
        margin: 10px;
        text-align: center;
    }

}

/*利用規約*/

.termsWrap {
	max-width:700px;
    width:100%;
	margin:0 auto;
    padding:150px 15px 100px 15px;
    box-sizing: border-box;
}

.termsWrap h4 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #fff;
  border-left: 4px solid #2a1f9d;
  padding-left: 10px;
  font-weight: bold;
}

.termsWrap p,
.termsWrap li {
  margin-bottom: 10px;
}

.termsWrap ol,
.termsWrap ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.termsWrap ul {
  list-style-type: disc;
}

.termsWrap ol {
  list-style-type: decimal;
}

/*プライバシーポリシー*/

.policyWrap {
	max-width:700px;
    width:100%;
	margin:0 auto;
    padding:150px 15px 100px 15px;
    box-sizing: border-box;
}

.policyWrap h4 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #fff;
  border-left: 4px solid #8e44ad;
  padding-left: 10px;
  font-weight: bold;
}

.policyWrap p,
.policyWrap li {
  margin-bottom: 10px;
}

.policyWrap ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 20px;
}
