@charset "utf-8";

.spnone{display: inherit;}
.pcnone{display: none;}


body{min-width: 1100px;}

/*---------------------------------------------------
メインビジュアル
---------------------------------------------------*/

/* メインビジュアル全体 */
.mv {
  width: 100%;
  height: 100vh; /* 画面高さいっぱい */
  display: flex;
  overflow: hidden;
}

/* 左右の領域 */
.mv-item {
  flex: 1;              /* 50%ずつにする */
  height: 100%;
  overflow: hidden;
}

/* 画像スタイル */
.mv-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* トリミングしつつ全体フィット */
  object-position: center;
  display: block;
}

/* ロゴの中央配置 */
.mv-logo {
    width: 37%;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -42%);
  z-index: 10;
  pointer-events: none;
}

.mv-logo img {
    width: 100%;
  height: auto;
    margin-left: 20px;
}

.mv-logo .brand{
    width: 100px;
    display: block;
    margin: 20px auto 0 auto;
}
.mv-logo .brand p{
    font-size: 12px;
    color: #FFF;
    margin-bottom: 10px;
}
.mv-logo .brand img{
    width: 100px;
    margin: 0;
}

.brand_sp{display:none; }


/*---------------------------------------------------
Prifile
---------------------------------------------------*/
.profile-section{
    width: 100%;
    position: relative;
    padding: 80px 0 0 0;
    overflow: hidden;
}

.profile-section .illust00{
    width: 250px;
    position: absolute;
    top: 20%;
    left: -25px;
}
.profile-section .illust00 img{width: 100%; vertical-align: bottom;}


.profile-section .vertical_ttl{
    font-size: 52px;
    letter-spacing: -.02em;
    line-height:100%;
    transform: rotate(90deg);
    
    position: absolute;
    top: 190px;
    right: -76px;
}
.profile-section .vertical_ttl span{
    font-size: 12px;
    line-height:160%;
    letter-spacing: .02em;
    margin-left: 25px;
    position: relative;
    display: inline-block;
}


.profile-section .movie{
    width: 60%;
    position: relative;
    margin: 0 auto;
}


.profile-section .movie::before{
    content: "";
    width: 15px;
    height: calc(100% - 60px);
    background-color: #ffeb3b;
    position: absolute;
    right: -15px;
    top: 60px;
}
.profile-section .movie::after{
    content: "";
    width: calc(100% - 45px);
    height: 15px;
    background-color: #ffeb3b;
    position: absolute;
    left: 60px;
    bottom: -15px;
}

.profile-section .movie img{width: 100%;}

.profile-section .movie .mvbtn{
  width: 108px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform .3s ease;
}


.movie:hover .mvbtn {
  transform: translate(-50%, -50%) scale(1.13);
}

.movie .mvbg {
  transition: opacity .3s ease; /* ★ ここ必須 */
  display: block;
}

.movie:hover .mvbg {
  opacity: .86;
    transition: transform .1s ease;
}


/* ライトボックスの背景 */
.movie-lightbox {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
  background: rgba(255, 235, 59, 0.92);
  display: flex;           /* 初期は非表示 */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;

}

/* 表示中の状態クラス */
.movie-lightbox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 中身のボックス */
.movie-lightbox__inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
}

/* 16:9 比率ボックス */
.movie-lightbox__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 = 9/16 * 100 */
}

/* YouTube iframe フルフィット */
.movie-lightbox__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 閉じるボタン */
.movie-lightbox__close {
    width: 110px;
  position: absolute;
  top: -60px;
  right: -6px;
  background: none;
  border: none;
  color: #004097;
  cursor: pointer;
    transition: all 0.3s ease;
}
.movie-lightbox__close img {width: 100%;}

.movie-lightbox__close:hover{opacity: 0.45; transition: all 0.15s ease;}



.profile_area{
    width: 95%;
    margin-left: 5%;
    margin-top: 90px;
    margin-bottom: 90px;
    position: relative;
}

.profile_area .en_ttl{
    font-size: 52px;
    letter-spacing: -.02em;
    line-height:100%;
    position: absolute;
    right: 20%;
    top: 50px;
}

.profile_area .illust01{
    width: 180px;
    position: absolute;
    top: -40px;
    right: -20px;
}
.profile_area .illust02{
    width: 340px;
    position: absolute;
    bottom: -120px;
    right: 60px;
}
.profile_area .illust01 img,.profile_area .illust02 img {width: 100%; vertical-align: bottom;}


.profile_area .prof_img{
    width: 30%;
    position: relative;
    display: inline-block;
}
.profile_area .prof_img img {width: 100%; vertical-align: bottom;}

.profile_area .prof_img::before{
    content: "";
    width: 15px;
    height: calc(100% - 60px);
    background-color: #ffeb3b;
    position: absolute;
    right: -15px;
    top: 60px;
}
.profile_area .prof_img::after{
    content: "";
    width: calc(100% - 45px);
    height: 15px;
    background-color: #ffeb3b;
    position: absolute;
    left: 60px;
    bottom: -15px;
}


.prof_txt{
    width: calc(50% - 100px);
    display: inline-block;
    margin-left: 100px;
    position: relative;
}

.pr_name{font-size: 32px; margin-bottom: 8px; line-height: 1;}
.pr_en{font-size: 11px; line-height: 1;}
.pr_shozoku{font-size: 13px; line-height: 160%; margin-top: 28px;}
.pr_body{
    margin-top: 28px;
    font-size: 15px;
    line-height: 220%;
}

/*---------------------------------------------------
質問スライド
---------------------------------------------------*/

.qa-section {
    width: 90%;
    margin-left: 10%;
    box-sizing: border-box;
  background: #ffeb3b;
  padding: 45px 50px 25px 50px;
  position: relative;
    border-bottom-left-radius: 12px;
    border-top-left-radius: 12px;
    
    margin-bottom: 70px;
}

#qa-splide:not(.is-initialized) .splide__track {
  overflow: hidden;
  max-height: 280px;
}

.qa-title {
  font-size: 26px;
  margin-bottom: 20px;
    position: relative;
}

.qa-title span{
    display: inline-block;
    position: relative;
}

.qa-title span::after {
  content: "";
  width: 86px;
    height: 4px;
    background-image: url("../images/line_wave.png");
    background-repeat: no-repeat;
    background-size: 86px 4px;
    background-position: 0 0 ;
    position: absolute;
    right: -106px;
    top: 18px;
}

/* Next と 9/10 のエリア
.qa-ui {
  position: absolute;
  top: 60px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
    z-index: 999;
} */

/* Next ボタン */
.qa-next {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  align-items: left;
    
    position: absolute;
    right: 50px;
    top: 42%;
    z-index: 10;
transition: all 0.3s ease;
}

.qa-next:hover{opacity: 0.45; transition: all 0.15s ease;}


.qa-next-text {
  font-size: 24px;
  color: #004097;
    line-height: 1;
    display: block;
    text-align: left!important;
    margin-bottom: -8px;
}
.qa-next-arrow{
    display: block;
}
.qa-next-arrow img{
    width: 128px; height: auto;
}

/* カウンター 9/10 */
.qa-counter { color: #004097; position: absolute;; line-height: 1; bottom: 35px; right: 50px; z-index: 10;}
#qa-current{font-size: 42px; margin-top: -20px; position: absolute; top: 13px; left: -40px; letter-spacing: -.02em;}
#qa-total{font-size: 15px; margin:0 0 0 -17px;}

.qa-counter img{
    position: relative;

  width: 48px;
    height: auto;
}

/* Splide 本体（赤枠エリア） */
.qa-splide {
  visibility: hidden;
}
/* JSでこのクラスを付けたら表示 */
.qa-splide.is-ready {
  visibility: visible;
}

.qa-box {
    width: 80%;
  padding: 0;
  /*background: #FFF;*/
  box-sizing: border-box;
    font-family: "aktiv-grotesk","Noto Sans JP", "sans-serif";
    font-weight: 500;
}

/* Q / A 行 */
.qa-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
  color: #004097;
  font-size: 15px;
  line-height:180%;
}

.qa-label {
  width: 32px;
  height: 32px;
  background: #004097;
  color: #fff;
font-family: "aktiv-grotesk", sans-serif;
font-weight: 700;
  text-align: center;
  line-height: 32px;
  flex-shrink: 0;
    font-size: 16px;
    margin-top: 13px;
}

/* A 用に別スタイルが欲しければ */
.qa-a-label {
  background: #ffeb3b;
  border: 1px solid #004097;
  color: #004097;
}

.qa-q p{font-size: 16px; font-weight: 700;}

/* スライドのイージング */
.splide__list {
  transition-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1) !important;
}


/*---------------------------------------------------
Interview
---------------------------------------------------*/

.sponsored-section{
    width: 100%;
    margin: 0 auto;
    
    background-image: url("../images/illust/item04.png");
    background-size: 88% auto;
    background-position: top 0 left 40px;
    background-repeat: no-repeat;
    
    overflow: hidden;
}

.interview{
    width: 70%;
    margin: 0 auto;
    padding:180px 0 50px 0;
    position: relative;
}

.interview .vertical_ttl{
    font-size: 52px;
    letter-spacing: -.02em;
    line-height:100%;
    transform: rotate(90deg);
    
    position: absolute;
    top: 210px;
    right: -220px;
    z-index: 2;
}
.interview .vertical_ttl span{
    font-size: 18px;
    line-height:100%;
    letter-spacing: .02em;
    margin-left: 25px;
    position: relative;
}

.interview .vertical_ttl span::after{
    content: "";
    width: 200px;
    height: 60px;
    background-image: url("../images/logo_vertical.png");
    background-repeat: no-repeat;
    background-size: 184px auto;
    position: absolute;
    top: 0;
    left: 110px;
}

.interview .illust01{
    width: 236px;
    position: absolute;
    top: 226px;
    right: -210px;
    z-index: 0;
}
.interview .illust01 img{width: 100%; vertical-align: bottom;}


.interview .in_ttl{
    font-size: 32px;
    margin-bottom: 20px;
}
.interview .in_subttl{
    font-size: 16px;
}


/* ---------- アコーディオン ----------  */

.accordion {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 140px;
    position: relative;
}

.accordion .illust01{width: 420px; position: absolute; left: -100px; bottom: -20px; z-index: -1;}
.accordion .illust01 img{width: 100%;}

/* 各パネル */
.accordion-item {}

.accordion-item + .accordion-item {
  border-top: none; /* スクショみたいに境界線を共有 */
}

/* 見出し（タイトル全体クリック可能） */
.accordion-header {
  width: 100%;
    margin-top: -1px;
  padding: 16px 18px 16px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border: 1px solid #004097;
  cursor: pointer;
  text-align: left;
  font-size: 19px;
    color: #004097;
    transition: all 0.3s ease;
}

.accordion-header:hover{
    background: #f4f4f4;
    transition: all 0.1s ease;
}


/* タイトルテキスト */
.accordion-title {position: relative;}
.accordion-title::before {
    content: "";
    width: 18px;
    height: 1px;
    background: #004097;
    position: absolute;
    top: 12px;
    left: -32px;
}

/* トグルアイコン（黄色い四角の中に＋／−） */
.accordion-toggle {
  width: 28px;
  height: 28px;
  background: #ffeb3b;
  position: relative;    
}

/* ＋を構成する2本の線 */
.accordion-toggle::before,
.accordion-toggle::after {
  content: "";
  position: absolute;
  display: block;
  background-color: #004097;
}
/* 横線（ずっと横のまま） */
.accordion-toggle::before {
  width: 10px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 縦線：最初は縦、開くと右に倒れて横線と重なる */
.accordion-toggle::after {
  width: 1px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  transition: transform 0.25s ease;
}

/* 開いているとき：縦線だけ90度回転して横線と重なる → 見た目が「−」になる */
.accordion-item.is-open .accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}


/* 本文エリア（高さアニメ用） */
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

/* 中の余白用ラッパー */
.accordion-inner {
  padding: 38px 0 38px 0;
  font-size: 15px;
  line-height: 220%;
}

/* 最初に開いているもの用（JSで上書きするけど保険） */
.accordion-item.is-open .accordion-content {
  max-height: 9999px;
}
/* ---------- アコーディオン ----------  */



.sponsored-section .bnrarea{width:  calc(100% - 80px); margin:0 auto 8% auto;}
.sponsored-section .bnrarea a img{width: 100%;}

.sponsored-section .bnrarea a{transition: all 0.3s ease;}
.sponsored-section .bnrarea a:hover{opacity: 0.65; transition: all 0.15s ease;}


/*---------------------------------------------------
Special Contents
---------------------------------------------------*/

.manga-section {
  position: relative;
    box-sizing: border-box;
    padding: 0 40px;
}

.manga-section .ttl{
  font-size: 50px;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: 160px;
}


.manga-section .manga{
  width: 62%;
    margin: 0 auto;
    display: grid;
     grid-template-columns: 1fr;
    /*grid-template-columns: 1fr 1fr;*/
    /*column-gap: 30px;*/
    row-gap: 30px;
    position: relative;
}
.manga-section .manga img{width: 100%; }

   .manga-section .manga .left {
    order: 2; /* 後ろへ */
  }

  .manga-section .manga .right {
    order: 1; /* 先頭へ（manga01.png がここ） */
  }

.manga-section .manga .numlist{
    position: absolute;
    z-index: 10;
    color: #FFF;
    background-color: #004097;
    top: 0;
    left: 0;
    font-size: 16px;
    line-height: 26px;
    width: 26px;
    text-align: center;
}
.manga-section .manga .num01{top: 2px; left: 2px;}
.manga-section .manga .num02{top: 51.5%; left: 2px;}
.manga-section .manga .num03{top: 2px; right: 0;}
.manga-section .manga .num04{top: 51.7%; right: 0; border: 1px solid #FFF;}


.manga-section .manga .sub_ttl{
  font-size: 35px;
    letter-spacing: -.02em;
    line-height: 1;
    writing-mode: vertical-rl;
    
    position: absolute;
    top: 0;
    left: -2.6em;
}
.manga-section .manga .sub_ttl img{
    width: 50px;
    margin-bottom: 22px;
}


.manga-section .manga .sub_ttl_en{
    position: absolute;
    display: inline-block;
    top: 50%;
    right: -235px;
  font-size: 18px;
    letter-spacing: -.02em;
    line-height: 1;
    transform: rotate(90deg);
}


.manga-section .manga .mangattl{
    position: absolute;
    width: 180px;
  right: 0;
  left: 0;
    top: -130px;
  margin: 0 auto;
}


.manga-section .manga .name{
    position: absolute;
    top: -100px;
    right: 0;
    line-height: 1;
    text-align: right;
    font-size: 24px;
}

.manga-section .manga .name p{
    font-size: 12px;
    margin-bottom: 8px;
}


.manga-section .manga_discriptiion{
  width: 68%;
    box-sizing: border-box;
    margin: 70px auto;
    position: relative;
}

.manga-section .manga_discriptiion::before{
    position: absolute;
    content: "";
    width: 300px;
    height: 275px;
    bottom: -80px;
    right: -130px;
    background: url( "../images/illust/item09.png") no-repeat;
    background-size: contain;
    display: block;
    z-index: -1;
}



.manga-section .manga_discriptiion .md_ttl{
  font-size: 28px;
    padding: 0 40px;
    line-height: 160%;
    margin-bottom: 30px;
    position: relative;
}
.manga-section .manga_discriptiion .md_ttl::before{
    content:"";
    width: 4px;
    height: 80%;
    background-image: url("../images/line_wave_v.png");
    background-size: 4px auto;
    background-repeat: repeat-y;
    position: absolute;
    top: 10px;
    left: 0;
}

.manga-section .manga_discriptiion .md_body{
  font-size: 15px;
    line-height: 220%;
    padding: 0 40px;
}



.manga_caption{
  width: 86%;
    margin: 0 auto 80px auto;
    display: flex;
}

.manga_caption .cap_block{width: 50%; border-radius: 12px; box-sizing: border-box; padding: 30px;}

.manga_caption .cap_block.y_line{border: 2px solid #ffe600;}
.manga_caption .cap_block.y_bg{background-color: #ffe600;}

.manga_caption .cap_block .profimg{
    width: 96px;
    margin-right: 30px;
    float: left;
}
.manga_caption .cap_block .profimg img{width: 100%;}

.manga_caption .cap_block .profinner{
    width: calc(100% - 126px);
    float: left;
}

.manga_caption .cap_block .profinner .cap{
    font-size: 12px;
    margin-bottom: 6px;
}

.manga_caption .cap_block .profinner .name{
    font-size: 18px;
    margin-bottom: 15px;
}
.manga_caption .cap_block .profinner .name span{
    font-size: 12px;
    margin-left: 15px;
}

.manga_caption .cap_block .profinner .name br{
    display: none;
}

.manga_caption .cap_block .profinner .body{
    font-size: 13px;
    line-height: 200%;
}



/*---------------------------------------------------
フローティングボタン
---------------------------------------------------*/

.insta-ball {
  animation: ballDrop 1.6s cubic-bezier(.95, .85, .35, 1.2) forwards;
  transform-origin: center center;
}

@keyframes ballDrop {
  0% {
    opacity: 0;
    transform: translateY(-360px) scale(1);
  }

  /* 1回目（大） */
  20% {
    opacity: 1;
    transform: translateY(0) scale(1) scaleY(0.92) ;
  }
  30% {
    transform: translateY(-70px) scale(1);
  }
  /* 2回目 */
  40% {
    transform: translateY(0) scale(1) scaleY(0.96);
  }
  48% {
    transform: translateY(-40px) scale(1);
  }
  /* 3回目 */
  57% {
    transform: translateY(0) scale(1);
  }
  63% {
    transform: translateY(-20px) scale(1);
  }
  /* 4回目 */
  70% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(-15px) scale(1);
  }
  /* 5回目 */
  76% {
    transform: translateY(0) scale(1);
  }
  80% {
    transform: translateY(-10px) scale(1);
  }
  /* 6回目 */
  81% {
    transform: translateY(0) scale(1);
  }
  85% {
    transform: translateY(-2px) scale(1);
  }
  /* 7回目 */
  86% {
    transform: translateY(0) scale(1);
  }
  92% {
    transform: translateY(-1px) scale(1);
  } 
  /* 8回目 */
  93% {
    transform: translateY(0) scale(1);
  }
  97% {
    transform: translateY(-0.5px) scale(1);
  }
  /* 9回目（最後の小バウンド） */
  98% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}


.insta-floating {
  position: fixed;
  right: 60px;
  bottom: 50px;
  z-index: 99999;
}


.insta {
    width: 130px;
  transition: transform .25s ease;
}

.insta.hide {
  transform: translateY(120px); /* 下に隠す */
}

.insta a{
  display: flex;
  justify-content: center;
  align-items: center;
width: 130px;
height: 130px;
background-color: #ffe600;
border-radius: 50%;
position: relative;
    
text-decoration: none;
transition: transform .25s ease, background-color .25s ease;
}

.insta a:hover{
transform: scale(1.13);
    background-color: #feffbb;
    transition: all .25s ease;
}

.insta a i{
    font-size: 26px;
    color: #112d4e;
}

.insta a img{
    width: 116px;
    position: absolute;
    top: 7px;
    left: 7px;
  /* 回転アニメーションを追加 */
  animation: rotateText 6s linear infinite;
  transform-origin: 50% 50%; /* 画像の中央を回転中心にする */
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------------------
ギャラリー
---------------------------------------------------*/

.tennis-section {
  position: relative;
overflow-x: hidden;
    z-index: 10;
}

/* 縦テキスト共通 */
.side-text {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  overflow: hidden;
  pointer-events: none;
}


/* 左／右位置 */
.side-text-left {
  left: 5px;
}

.side-text-right {
  right: -15px;
}

.text-track {

}

.text-item {
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 10px;
  line-height: 1;
  margin-bottom: 20px; /* gap 20px */
    transform: rotate(0.001deg);
}

/* 左は上へ */
.side-text-left .text-track {
  animation: scroll-up linear infinite;
}

/* 右は下へ */
.side-text-right .text-track {
  animation: scroll-down linear infinite;
}

.side-text-left .side-text-inner {
  transform: translateX(-50%) rotate(180deg);
}


/* キーフレーム */
@keyframes scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(50%); }
}

@keyframes scroll-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}



/* ----------------- gallery ----------------- */

.tennis-gallery {
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* 中身のグリッド：4 カラム × gap20px
   デザイン時は max-width:1120px (= 265*4 + 20*3) を想定 */
.tennis-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* 画像共通 */
.tennis-grid .item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---- レイアウト指定（PC） ---- */
/* 1段目：左右 550px（= カラム2本分） */
.tennis-grid .item1 {
  grid-column: 1 / 3; /* col1〜2 → 550px 相当 */
  grid-row: 1 / 2;
}

.tennis-grid .item2 {
  grid-column: 3 / 5; /* col3〜4 → 550px 相当 */
  grid-row: 1 / 2;
}

/* 2〜3段目 左：縦長 265px 幅 */
.tennis-grid .item3 {
  grid-column: 1 / 2; /* col1 → 265px */
  grid-row: 2 / 4; /* row2 & row3 の 2段分 */
}

/* 2段目 中央の横長 550px */
.tennis-grid .item4 {
  grid-column: 2 / 4; /* col2〜3 → 550px */
  grid-row: 2 / 3;
}

/* 2段目 右の 265px（右上） */
.tennis-grid .item5 {
  grid-column: 4 / 5; /* col4 → 265px */
  grid-row: 2 / 3;
}

/* 3段目 中央左 265px */
.tennis-grid .item6 {
  grid-column: 2 / 3; /* col2 */
  grid-row: 3 / 4;
}

/* 3段目 中央右 265px */
.tennis-grid .item7 {
  grid-column: 3 / 4; /* col3 */
  grid-row: 3 / 4;
}

/* 3段目 右下 265px */
.tennis-grid .item8 {
  grid-column: 4 / 5; /* col4 */
  grid-row: 3 / 4;
}


/*---------------------------------------------------
footer
---------------------------------------------------*/

footer {
    width: 100%;
    position: relative;
    z-index: 20;
    padding-top: 280px;

    pointer-events: none; /* instaボタンが重なりで一部無効になるのでポインタイベントを解除 */
}

footer .logo{
    width: 366px;
    position: absolute;
  right: 0;
  left: 20px;
    top: -22px;
  margin: 0 auto;

}
footer .logo img{width: 100%;}


footer .illust01{
    width: 260px;
    position: absolute;
    bottom: 200px;
    left: 90px;
}
footer .illust03{
    width: 340px;
    position: absolute;
    bottom: 90px;
    right: 130px;
    z-index: -1
}

footer .illust01 img,footer .illust03 img {width: 100%; vertical-align: bottom;}



footer .footer_inner{
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 0 40px 40px 40px;
    
    pointer-events: auto; /* ここだけポインタイベントを有効に */
    
}

footer .footer_inner .brand{
    display: inline-block;
}
footer .footer_inner .brand p{
    font-size: 12px;
    margin-bottom: 10px;
}
footer .footer_inner .brand img{
    width: 120px;
    margin-right: 18px;
}
footer .footer_inner .brand span{
    font-size: 12px;
}


footer .footer_inner .edit{
    display: inline-block;
    margin-left: 40px;
}
footer .footer_inner .edit img{
    width: 93px;
    margin-left: 18px;
}

footer .footer_inner .edit span{
    font-size: 12px;
}


footer .footer_inner a{transition: all 0.3s ease;}
footer .footer_inner a:hover{opacity: 0.45; transition: all 0.15s ease;}


footer .pagetop{
    position: absolute;
    right: 40px;
    bottom: 200px;
    
    pointer-events: auto; /* ポインタイベントを有効に */
}

footer .pagetop a{
    display: block;
    transform: rotate(90deg);
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    position: relative;
}

footer .pagetop a::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #004097;
    position: absolute;
    left: 0;
    bottom: -8px;
}

footer .pagetop a{transition: all 0.3s ease;}
footer .pagetop a:hover{opacity: 0.45; transition: all 0.15s ease;}


footer .footer_inner .copyright{
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 11px;
}





