@charset "UTF-8";

body {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

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

.tb_show {
  display: none;
}
@media screen and (max-width: 1199px) {
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tb_show {
    display: none;
  }
}

.sp_show {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_show {
    display: block;
  }
  /* SP スライダー：横並び定速連続LOOP */
  .custom-slider.sp_show {
    height: 100%;           /* 親 .slider の高さいっぱいに */
    min-height: 420px;
    overflow: hidden !important;
  }
  .custom-slider.sp_show .swiper-wrapper {
    transition-timing-function: linear !important; /* 定速（止まらない） */
  }
  .custom-slider.sp_show .swiper-slide {
    width: 75vw !important;
    height: 100% !important;
    transform: none !important;   /* PC用 scale を無効化 */
    filter: none !important;
    transition: none !important;  /* PC用 cubic-bezier を無効化 */
  }
  .custom-slider.sp_show .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* ページネーション・ナビは不要 */
  .custom-slider.sp_show .swiper-pagination,
  .custom-slider.sp_show .swiper-button-prev,
  .custom-slider.sp_show .swiper-button-next {
    display: none !important;
  }
}

a:hover{opacity: 0.7;}


.-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

/*------------------------------------------------------------
	BASIC DESIGN
------------------------------------------------------------*/

.button{
  background-color: #152c88;
  border-radius: 5px;
  color: #fff;
  display: block;
  padding: 4px 20px;
  max-width: 170px;
  min-width: 68px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: clamp(12px, 0.85vw, 18px);
}

.button:hover{
  background-color: #264de8;
  text-shadow: 0 0 3px #fff;
  letter-spacing: 2px;
}


/*------------------------------------------------------------
	電話番号リンクスマホのみ有効
------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/*************************************************************
**************************************************************
**************************************************************
*************************************************************/
/*------------------------------------------------------------
	NAVI
------------------------------------------------------------*/

/*************************************************************
**************************************************************
**************************************************************
*************************************************************/



/*------------------------------------------------------------
	MAIN
------------------------------------------------------------*/

main{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: auto; /* 行高さは内容に合わせて */
  grid-auto-rows: minmax(auto, 1fr); /* 最大高さを揃えやすく */
  position: relative; /* stop時の絶対配置基準 */
}
/* main content と sidebar の境界線（75% = column 6/7 の境目） */
main::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 75%;
  width: 1px;
  background: #152c88;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  main::after { display: none; }
}

/*****************************************
*****************************************/

  .slider{
      grid-column: 1 / 7;
      grid-row: 1 / 2;
      order: 1;
      align-items: stretch;
}

  .pickup{
      grid-column: 7 / 9;
      grid-row: 1 / 2;
      order: 2;
      align-items: stretch;
    }

    .basic{
      grid-column: 1 / 7;
      grid-row: 2 / 3;
      grid-auto-rows: auto;       /* 自由な高さ */

    }
    .twitter{
      grid-column: 1 / 4;
      grid-row: 3 / 5;
    }
    .policy{
      grid-column: 4 / 7;
      grid-row: 3 / 4;
      grid-auto-rows: auto;       /* 自由な高さ */
    }
    .youtobe{
      grid-column: 4 / 7;
      grid-row: 4 / 5;
    }
    .profile{
      grid-column: 1 / 7;
      grid-row: 5 / 6;
      grid-auto-rows: auto;       /* 自由な高さ */
    }

    .side-content {
      grid-column: 7 / 9;
      grid-row: 2 / 6;
    }

    


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

  /* ①PCの1fr行均等化をリセット — これが間延びの根本原因 */
  main {
    grid-auto-rows: auto;
  }

  .slider{
      grid-column: 1 / 7;
      grid-row: 1 / 2;
      align-items: stretch;
  }

  .pickup{
      grid-column: 7 / 9;
      grid-row: 1 / 2;
      order: 2;
      align-items: stretch;
    }

  .basic{
      grid-column: 1 / 9;
      grid-row: 3 / 4;
      height: auto;
      min-height: 280px;
      align-self: start;
  }

  .twitter{
      grid-column: 1 / 5;
      grid-row: 6 / 7;
      height: auto;
      align-self: start; /* ②高さ伝染を防ぐ */
  }

  .policy{
      grid-column: 1 / 9;
      grid-row: 4 / 5;
      height: auto;
      min-height: 300px;
      align-self: start;
    }
    .youtobe{
      grid-column: 5 / 9;
      grid-row: 6 / 7;
      height: auto;
      align-self: start; /* ②高さ伝染を防ぐ */
    }
    .profile{
      grid-column: 1 / 9;
      grid-row: 5 / 6;
      height: auto;
      min-height: 420px;
      align-self: start;
    }

    .side-content {
      grid-column: 1 / 9;
      grid-row: 2 / 3;
      align-self: start;
    }


}

@media screen and (max-width: 699px) {
  /* 699px以下は完全1カラム縦積み — 横並びによる高さの伝染を防ぐ */
  .slider       { grid-column: 1 / 9; grid-row: 1 / 2; }
  .pickup       { grid-column: 1 / 9; grid-row: 2 / 3; }
  .side-content { grid-column: 1 / 9; grid-row: 3 / 4; }
  .basic        { grid-column: 1 / 9; grid-row: 4 / 5; }
  .policy       { grid-column: 1 / 9; grid-row: 5 / 6; }
  .profile      { grid-column: 1 / 9; grid-row: 6 / 7; }
  .twitter      { grid-column: 1 / 9; grid-row: 7 / 8; }
  .youtobe      { grid-column: 1 / 9; grid-row: 8 / 9; }
}

/*****************************************
SLIDER
*****************************************/

  .slider{
      display: block;
      overflow: hidden;
      text-align: center;
      position: relative;
      border-bottom: solid 5px #152c88;
      max-height: 760px;
      width: 100%;
    .ddd{
        content: " ";
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        background-color: rgba(62, 136, 255, 0.4);
        mix-blend-mode: multiply;
        z-index: 9;
      }
      h1{
        position: absolute;
        left: 30px;
        bottom: 20px;
        z-index: 100;
        color: #fff;
        text-align: left;
        font-size: 50px ;
        line-height: 1.1em;
        font-family: "Shippori Antique", sans-serif;
        opacity: 1;
      }  

  }




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


.custom-slider {
  overflow: hidden !important; /* これがないとtransform隠れる */
}

/* 全スライド共通：トランジション必須 */
.custom-slider .swiper-slide {
  transition: all 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform;
}

/* ★メイン画像：拡大（!important必須） */
.custom-slider .swiper-slide-active {
  transform: scale(1.05) !important;
  z-index: 4 !important; /* z-index:2だと隠れる */
  filter: none !important;
}

}





@media screen and (min-width: 1921px) {
    .custom-slider .swiper-slide-prev,
    .custom-slider .swiper-slide-next {
      z-index: 3;
    }

    .swiper-slide {
      width: 1450px!important;
    }
    .custom-slider {
      overflow: visible !important; /* これがないとtransform隠れる */
  }

    .custom-slider .swiper-slide-prev,
  .custom-slider .swiper-slide-next {
    z-index: 1 !important;

  }
}



/*****************************************
PICK UP
*****************************************/
.pickup{
  position: relative;
  border-left: solid 1px #152c88;
  border-bottom: solid 5px #152c88;
  max-height: 760px;


.pickup-news{
  padding: 10%;
  max-width: 700px;
  margin: 0 auto;
  p{
  display: -webkit-box;             /* ボックスをWebKit専用の縦方向ボックスに設定 */
  -webkit-box-orient: vertical;     /* 縦方向に配置 */
  -webkit-line-clamp: 2;            /* 最大2行まで表示 */
  overflow: hidden;                 /* はみ出すテキストを非表示にする */
  text-overflow: ellipsis;          /* はみ出した部分を「…」で表す */
  }
}

.pickup-data{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 5%;
}

.pickup-data-left{
  text-align: left;

  .pickup-label{
    font-size: clamp(20px, 2.0vw, 30px);
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #152c88;
    font-family: "M PLUS U", sans-serif;
  }

  .pickup-date{
    margin-top: 4px;
    font-size: clamp(13px, 1.1vw, 16px);
    letter-spacing: 2px;
    white-space: nowrap;
    color: #6b7aa8;
    font-family: "Figtree", sans-serif;
  }
}

.pickup-data-right{
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(60px, 6.0vw, 95px);
  font-weight: 400;
  line-height: 0.9;
  color: #152c88;
  text-align: right;
}

.pickup-caption{
  margin-top: 14px;
}

.pickup-all{
  display: block;
  text-align: right;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #152c88;
  font-family: "Figtree", sans-serif;
}

.pickup-img{
  background-color: #ccc;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    }
  }
}

@media screen and (max-width: 1300px) {
.pickup-news{
  p{
  -webkit-line-clamp: 1;            /* 最大2行まで表示 */
  }
}
}

.pickup-sns{
  width: 100%;
  position: absolute;
  bottom:0;
  padding: 20px 10%;
  border-top: solid 1px #152c88;

  ul{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    margin: 0;
    padding: 0;
  }

  li{
  img{
    width: 50%;
    max-width: 60px;
  }
}
}



/*****************************************
CONTENT
*****************************************/

.basic {
  position: relative;
  padding: 0 1vw;
  border-bottom: solid 1px #8f9bbc;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 100%;
  overflow: hidden;
}

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

.basic {
    border-top: solid 1px #8f9bbc;

}

}



.basic .con {
  width: calc(100% - 6.25vw);
  display: flex;
  justify-content: right;
  align-items: center;
  text-align: center;

  .main_con_ttl_02 {
    font-size: 58px;
    color: #152c88;
    margin-bottom: 2.4vw;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14em;
  }
}

.basic .img_area {
  position: absolute;
  left: 0;
  bottom: -90px;
  transition: 0.3s;
  width:50%;

  img {
    width: 100%;
    min-width: 450px;
    max-width: 530px;
    }
}
.basic .txt_area {
  position: relative;
  z-index: 100;
  padding: 0 4.27vw;
}
.basic .spell_area {
  position: relative;
  width: 6.25vw;
  border-left: dashed 1px #d0d2d6;
}



@media screen and (max-width: 768px) {
  .basic .spell_area {
    width: 12vw;
  }
}
.basic .spell_area .spell {
  position: absolute;
  top: 0.6vw;
  left: 0;
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .basic .spell_area .spell {
    top: 1.5vw;
  }
}
.basic .spell_area .spell img {
  width: 5.57vw;
}
@media screen and (max-width: 768px) {
  .basic .spell_area .spell img {
    width: 12vw;
  }
}
.basic .sub_ttl {
  text-align: center;
  position: relative;
  display: inline-block;
  padding: 0 2.4vw 0 2.8vw;
  font-size: clamp(30px, 2.5vw, 38px);
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1199px) {
  .basic .sub_ttl {
    font-size: clamp(27px, 3.51vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .basic .sub_ttl {
    padding: 0;
    font-size: clamp(20px, 5.33vw, 27px);
  }
}
.basic .sub_ttl::before, .basic .sub_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 2.92vw;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}
@media screen and (max-width: 768px) {
  .basic .sub_ttl::before, .basic .sub_ttl::after {
    width: 8.5vw;
  }
}
.basic .sub_ttl::before {
  left: 0;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
}
@media screen and (max-width: 768px) {
  .basic .sub_ttl::before {
    left: -8vw;
  }
}
.basic .sub_ttl::after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .basic .sub_ttl::after {
    right: -7.86vw;
  }
}
.basic .txt {
  margin-top: 0.9vw;
  font-size: clamp(20px, 1.67vw, 24px);
  text-align: center;
  margin-bottom: 3.13vw;
}
@media screen and (max-width: 1199px) {
  .basic .txt {
    font-size: clamp(18px, 2.34vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .basic .txt {
    margin-top: 1vw;
    margin-bottom: 6vw;
    font-size: clamp(14px, 3.73vw, 18px);
  }
}
@media screen and (max-width: 768px) {
  .basic .link_btn {
    margin-bottom: 6.68vw;
  }
}

/*****************************************
Twitter
*****************************************/

.twitter{
  padding: 40px;
  grid-auto-rows: auto;       /* 自由な高さ */
  text-align: center;
  border-right: solid 1px #8f9bbc;

  .icon_ttl{
    width: 50px;
    margin: auto;
  }

  .sns_iframe_area, 
  .twitter-tweet{
    margin: auto;
  }
}
/*****************************************
*****************************************/




/*****************************************
*****************************************/


.policy {
  border-bottom: solid 1px #8f9bbc;
  position: relative;
  display: grid;
  grid-template-columns: 6.5vw 1fr;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url(../img/narita-02.jpg) no-repeat center / cover;  background-size: 100% auto;
  background-position: bottom;
}


.policy .txt_area {
  width: 100%;
  text-align: center;
    display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center;      /* 上下中央 */
  margin-bottom: 60px;
}

.policy .txt_area .link_btn {
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center;      /* 上下中央 */
}

.policy .main_con_ttl_02 {
      color: #152c88;
  font-size: clamp(36px, 3vw, 58px);
  margin-bottom: 1vw;
}

.policy .sub_ttl {
  font-size: clamp(28px, 2.33vw, 44px);
  line-height: 1.1;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.policy .sub_ttl .min {
  font-size: 0.75em;
}
.policy .sub_ttl .big {
  font-family: "Figtree";
  font-weight: 700;
  font-size: 1.45em;
  color: #152c88;
}


.policy .spell_area {
  width: 6.25vw;
  position: relative;



  border-right: dashed 1px #d0d2d6;
}

.policy .spell_area .spell {
  position: absolute;
  top: 0.6vw;
  left: 0;
  opacity: 0.1;
}

.policy .spell_area .spell img {
  width: 5.57vw;
}

/*****************************************
*****************************************/

/*****************************************
Youtobe
*****************************************/
.youtobe{
  width: 100%;
  padding: 30px 30px 30px 30px;
  position: relative; /* stop時の絶対配置基準 */  
  transition: 0.2s;

  .con{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 200px;
    column-gap: 0px;
    row-gap: 0px;
    justify-content: center; /* 左右中央 */
    align-items: center;      /* 上下中央 */
    padding-top: 20px;

    .button{
    width: 100%;

  }
  }
}

.movie iframe{
        aspect-ratio: 16 / 9;

}
@media screen and (max-width: 1400px) {
.youtobe{

  background-image: url(../img/youtobe-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
}
/*****************************************
*****************************************/
.profile{
  padding: 0 0 0 5vw;
  border-top: solid 1px #8f9bbc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;  
  position: relative;
  overflow: hidden;


  .ttl{
    text-align: right;
    margin: 30px 0;

  .job {
  font-size: clamp(14px, 1.17vw, 20px);
  margin-bottom: 0.8vw;
  display: block;
    }

  .name {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 900;
    }
  }


  .spell{
    opacity: 0.5;
    width: 40%;
  }
  .img_area{
    position: absolute;
    right: -60px;
    top: 0px;
    transition: 0.3s;
    width:50%;
    z-index: -9;

    img {
      width: 100%;
      min-width: 400px;
      max-width: 560px;
    }
  }
}


@media screen and (max-width: 1400px) {
.profile{
  grid-template-columns: 60% 1fr;


    .img_area{
    position: absolute;
    right: -20px;
    bottom: -80px;
    transition: 0.3s;
    width:40%;
    z-index: -9;

    img {
      width: 100%;
      min-width: 450px;
      max-width: 530px;
    }
  }
}
}



@media screen and (max-width: 1100px) {
.profile{
  grid-template-columns: 70% 1fr;


    .img_area{
    position: absolute;
    right: 0px;
    bottom: -80px;
    transition: 0.3s;
    width:40%;
    z-index: -9;

    img {
      width: 100%;
      min-width: 450px;
      max-width: 530px;
    }
  }
}
}
@media screen and (max-width: 900px) {

.basic{
  min-height: 420px;
}
.policy{
  min-height: 420px;
}
  .profile{
  height: auto;
  min-height: 420px;
  overflow: hidden;
  border-bottom: solid 1px #8f9bbc;
}

}








/* =================================================================
   SP 内部スタイル（699px 以下）
================================================================= */
@media screen and (max-width: 699px) {


  /* ---- SLIDER ---- */
  .slider {
    height: 100vw;
    max-height: 110vw;
    min-height: 420px;
  }
  .slider h1 {
    font-size: clamp(18px, 5.5vw, 30px);
    left: 14px;
    bottom: 12px;
    line-height: 1.25;
  }

  /* ---- PICKUP ---- */
  .pickup {
    max-height: none;
    border-left: none;
    border-top: solid 1px #152c88;
  }
  .pickup-news {
    padding: 6%;
  }
  .pickup-sns {
    position: relative;
    padding: 12px 6%;
  }
  /* ② 最新記事ラベル・日付・日付数字を SP サイズに */
  .pickup-data-left .pickup-label {
    font-size: clamp(16px, 4.5vw, 24px);
  }
  .pickup-data-left .pickup-date {
    font-size: clamp(12px, 3vw, 16px);
  }
  .pickup-data-right {
    font-size: clamp(44px, 11vw, 64px);
  }

  /* ---- BASIC ---- */
  .basic {
    max-height: none;
    min-height: none;
    height: auto;
    padding: 80px 5vw 400px!important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .basic .con {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
  }
  .basic .con .main_con_ttl_02 {
    font-size: clamp(30px, 7.5vw, 44px);
    margin-bottom: 12px;
  }

  .basic .spell_area {
    display: none;
  }

  /* ---- TWITTER ---- */
  .twitter {
    padding: 24px 16px;
    border-right: none;
    border-top: solid 1px #8f9bbc;
  }

  /* ---- POLICY ---- */
  .policy {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
      background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/narita-02.jpg) no-repeat center / cover;  background-size: 100% auto;

    background-size: cover;
    background-position: center bottom;
  }
  .policy .spell_area {
    display: none;
  }
  .policy .txt_area {
    display: block; /* flex中央揃えを解除して上詰めに */
    padding: 80px 20px 80px;
    margin-bottom: 0;
    text-align: center;
  }
  .policy .main_con_ttl_02 {
    font-size: clamp(26px, 6.5vw, 38px);
  }
  .policy .sub_ttl {
    font-size: clamp(18px, 4.5vw, 28px);
  }

  /* ---- YOUTUBE ---- */
  .youtobe {
    padding: 20px 16px;
    background-image: none; /* SP ではbg画像なし */
  }
  .youtobe .con {
    grid-template-columns: 1fr;
    padding-top: 12px;
    row-gap: 12px;
  }
  .youtobe .con .button {
    max-width: 160px;
    margin: 0 auto;
  }

  /* ---- PROFILE ---- */
  .profile {
    grid-template-columns: 1fr;
    place-items: start;   /* center→start：上詰めに変更 */
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 36px 5vw 0;
  }
  .profile .txt_area {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .profile .ttl {
    text-align: left;
  }
  .profile .ttl .name {
    font-size: clamp(28px, 7vw, 40px);
  }
  .profile .spell {
  }
  .profile .img_area {
    position: relative;
    width: 80%;
    margin: 16px auto -7px;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 0;
  }
  .profile .img_area img {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

}

/* ---- PAGE TOP（index） ---- */
#page_top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
#page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 0;
  background-color: #152c88;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
#page_top:hover { opacity: 0.8; }


@media screen and (min-width: 2200px) {
  .profile .img_area {
    z-index: 0;
  }
}
