@charset "UTF-8";

:root {
  --light-green: #d5edeb;
  --brown: #403632;
  --light-grey: #eee;
  --white: #fff;
  --grey: #bc8f8f;

}


/* FRIENDS CUP2025 特設ページ */
h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%);
  text-align: center;
  font-size: 6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}
.slider {
  /*スライドショーの位置の起点とするため
  position:relative;をつける*/
  position: relative;
  /*z-indexの値を小さくして背景に回す*/
  z-index: 1;
  /*スライダー全体の縦幅を画面の高さいっぱい(100vh)にする*/
  height: auto;
}
/*背景の画像設定*/
.slider-item01{background: url(../images/IMG_4568.JPG);}
.slider-item02{background: url(../images/IMG_4567.JPG);}
.slider-item03{background: url(../images/IMG_4569.JPG);}
.slider-item04{background: url(../images/IMG_4570.JPG);}
.slider-item05{background: url(../images/IMG_4571.JPG);}
.slider-item06{background: url(../images/IMG_4572.JPG);}
.slider-item07{background: url(../images/IMG_4577.JPG);}
.slider-item08{background: url(../images/IMG_4578.JPG);}
.slider-item09{background: url(../images/IMG_4576.JPG);}
.slider-item10{background: url(../images/IMG_4579.JPG);}
.slider-item11{background: url(../images/IMG_4574.JPG);}
.slider-item12{background: url(../images/IMG_4575.JPG);}

.slider-item {
  /*各スライダー全体の横幅を画面の高さいっぱい(100%)にする*/
  width: 100%;
  /*各スライダーの全隊の縦幅を画面の高さいっぱい(100%)にする*/
  height: 100vh;
  /*背景画像をリピートしない*/
  background-repeat: no-repeat;
  /*背景画像の位置を中央に*/
  background-position: center;
  /*背景画像が.slider-item全体を覆い表示*/
  background-size: cover;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;/*絶対配置にする*/
  z-index: 3;
  top: 42%;/*上から42%の位置に表示*/
  /*マウスカーソルを指マークに*/
  cursor: pointer;
  /*クリックをしたら出てくる枠線を消す*/
  outline: none;
  border-top: 2px solid #fff;/*矢印の色*/
  border-right: 2px solid #fff;/*矢印の色*/
  height: 25px;/*矢印のサイズ*/
  width: 25px;/*矢印のサイズ*/
}

.slick-prev {/*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next {/*次の矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;/*ドットの位置*/
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;/*ドットボタンのサイズ*/
  height: 8px;/*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #fff;/*ドットボタンの色*/
}
.slick-dots .slick-active button {
  /*ドットボタンの現在地表示の色*/
  background: #333;
}

.btnripple3 {
  /*波紋の起点とするためrelativeを指定。*/
  position: relative;
  /*リンクの形状*/
  display: inline-block;
  text-decoration: none;
  color: #333;
  outline: none;
  font-size: 2rem;
}
/*波紋の設定*/
.btnripple3:hover::before {
  content: '';
  /*絶対配置で波紋の位置を決める*/
  position: absolute;
  left: 30%;
  top: 0;
  /*波紋の形状*/
  border: 1px solid #333;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*アニメーションの設定*/
  animation: 1s circleanime2 forwards;
}
/*波紋が広がるアニメーション*/
@keyframes circleanime2 {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(2);
    opacity: 0;
  }
}
/*矢印の設定*/
.btnripple3::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 45%;
  right: -20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

.btnripple4 {
  /*波紋の起点とするためrelativeを指定。*/
  position: relative;
  /*リンクの形状*/
  display: inline-block;
  text-decoration: none;
  color: #333;
  outline: none;
}
/*波紋の設定*/
.btnripple4:hover::before {
  content: '';
  /*絶対配置で波紋の位置を決める*/
  position: absolute;
  left: 30%;
  top: 0;
  /*波紋の形状*/
  border: 1px solid #333;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*アニメーションの設定*/
  animation: 1s circleanime3 forwards;
}
/*波紋が広がるアニメーション*/
@keyframes circleanime3 {
  0%{
    transform: scale(0);
  }
  100%{
    transform: scale(2);
    opacity: 0;
  }
}
/*矢印の設定*/
.btnripple4::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 45%;
  right: -20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

/* solid007 */
.button_solid007 {
  text-align: center;
}
.button_solid007 p {
  margin-bottom: 5px;
  font-weight: 600;
  color: #6bb6ff;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}
.button_solid007 p:before, .button_solid007 p:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 3px;
  border-radius: 5px;
  background-color: #6bb6ff;
  content: "";
}
.button_solid007 p:before {
  left: -30px;
  -webkit-transform: rotate( 50deg );
  transform: rotate( 50deg );
}
.button_solid007 p:after {
  right: -30px;
  -webkit-transform: rotate( -50deg );
  transform: rotate( -50deg );
}
.button_solid007 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #6bb6ff;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 3px;
}
.button_solid007 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}

.btntransform {
  /*丸の基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  padding: 0 0 0 15px;
  line-height: 50px;
  color: #333;
  text-decoration: none;
  outline: none;
}
/*丸が動く*/
.btntransform::before {
  content:'';
  /*絶対配置で丸の位置を決める*/
  position: absolute;
  left: 0;
  z-index: -1;
  /*丸の形状*/
  width: 50px;
  height: 50px;
  background: #ccc;
  border-radius: 25px;
  /*アニメーションの指定*/
  transition: .3s ease-out;
}
/*hoverした際の形状*/
.btntransform:hover::before {
  width: 500px;
}
/*矢印の形状*/
.btntransform::after {
  position: absolute;
  content: '';
  top: 0.7em;
  right: -15px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.btntransform {
  font-size: 2rem;
  color: #f0821e;
}

/* 共通部分
----------------------------- */
html {
  font-size: 100%;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans","BIZ UDPGothic", sans-serif;
  line-height: 1.7;
  color: #432;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* レイアウト */
/* wrapperを追加し、maxで最大幅を指定、marginでボックス中央、paddingで左右に余白を指定 */
.wrapper {
  max-width: 1120px;
  margin: auto;
  padding: 1.5rem;
}
.align-center {
  text-align: center;
  margin-top: 2rem;
}
.wrapper2 {
  margin: auto;
  padding: 1.5rem;
}
/* LOADING
============================ */
#loading {
  background-color: var(--light-grey);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}
#loading-screen {
  background-color: var(--light-green);
  position: fixed;
  inset: 0;
  z-index: 9998;
  translate: 0 100vh;
}
#loading p {
  font-size: 2rem;
}
/* 見出し */
.font-english {
  font-family: 'Philosopher', sans-serif;
  font-weight: normal;
}


/* h2 class のDog Sports Friends */
.page-title,
.heading-large,
.heading-medium {
  font-size: 2rem;
  text-align: center;
}
.page-title {
  margin-top: 1rem;
  line-height: 1.4;
}
/* Friendsとはで追記 */
.heading-large {
  margin-bottom: 1rem;
  margin-top: 5rem;
}

/* ENTRY 
-------------------------- */
/* .contact-main {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
*/
/* .contact-form {
  margin: 40px;
}
*/
/* .form-radio-wrapper {
  padding: 0 20px;
  margin: auto;
  position: relative;
}
*/

.form-block {
  display: grid;
  /* grid-template-columns: 14em 1fr; */
  border-top: 1px dotted #606060;
  padding: 1em;
  align-items: center;
  /* height: 5em; */
} 

.contact-main {
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 0 1.5rem;
  border-spacing: 0;
}
.form-field {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em 1em;
}

.form-block.--textfield {
  align-items: start;
  border-bottom: 1px dotted #606060;
  height: auto;
}
.form-field.--textfield {
  height: 20em;
  resize: none;
}
.label-radio, .label-radio {
  margin-left: 9em;
}
.radio-span {
  margin-left: 0.5em;
}
/* 必須アイコン */
.form-required {
  margin-left: 1em;
  color: #fff;
  background-color: #f67a7a;
  padding: 2px 8px;
  font-size: 1.2rem;
  border-radius: 3px;
}
.form-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12em;
  height: 3em;
  font-size: 1rem; /* <--2remから1remに変更 */
  background-color: #6695ED;
  border-radius: 5px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
}

input[type="text"], input[type="email"], input[type="url"], textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button.form-btn {
  background-color: #4CAF50; /* 緑色 */
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

div[role="listitem"] {
  border: 2px solid #4CAF50;
  border-radius: 5px;
  margin: 10px 0;
  padding: 10px;
}

/* 送信後のサンクスページ専用 */
/* ------------------------------------ */
/*.section-thanks{
   padding: 100px 40px; 
} */
.thanks-h1{
  font-size: 2.8rem;
  text-align: center;
}
.thanks-a{
  background-color:#6695ED;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
 /* width: 12em; */
  height: 3em;
}


/* CONTACT 
-------------------------- */
/* ボタン */
.btn {
  display: inline-block;
  font-size: 1.5rem;
  background-color: #0bd;
  color: #fff;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  transition: .5s;
}
.btn:hover {
  background-color: #0090aa;
}

/* iframe  */
iframe {
  width: 100%;
  margin-top: 3rem;
}

.email {
  max-width: 916px;
  padding: 1.5rem 2.5rem 2.5rem;
  margin: 3rem auto 4rem;
}
.email p {
  margin-bottom: 3rem;
}

/* SNS */

.sns {
  width: 100%;
  margin: auto;
  padding: 0 1.5rem;
  border-spacing: 0;
}

.sns-item {
  margin-bottom: 2rem;
}
.sns-item .heading-medium {
  margin-bottom: .5rem;
}

.sns-youtube {
  aspect-ratio: 16/9;
}
.sns-youtube iframe {
  height: 100%;
}


/* bodyの背景画像 */
.cover {
  background-size: contain;
  background-position: center;
  height: 800px;
}
.gallery {
  background-image: url(../images/season4ep3.jpg);
}

.sub-cover {
  background-size: contain;
  background-position: center bottom;
  height: 300px;
  margin-bottom: 4rem;
  margin-top: 30px;
}

/* HOME
----------------------------- */

.cover-home {
  background-image: url(../images/home2.jpg);
} 

/* ヘッダー
---------------------------- */
.page-header {
  padding-top: .5rem;
}
/*
.logo {
  width: 210px;
}
*/
/*
.main-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 1rem;
  list-style: none;
  padding-top: 1rem;
}
*/
/*
.main-nav a {
  color: #ffffff;
}
*/


/* NEWS
-------------------------------- */
.cover-news {
  background-image: url(../images/home3.jpg);
}
/* NEWSの記事部分 */
.post {
  margin-bottom: 3rem; /* 余白を指定 */
}
.post-title {
  font-weight: normal;    /* タイトル部分の指定 */
  margin-left: 1.25rem;
}
.post-info {
  display: flex;  /* 横並びの指定 */
  gap: 1rem;             /* gapとmargin-bottomで余白の指定 */
  margin-bottom: 2rem;
}
.post-cat {
  display: flex;  /* 横並びの指定 */
  gap: .5rem;
  list-style: none;
}
.post-cat a { /* 色や文字サイズ、余白、角丸の指定 */
  color: #432;
  background-color: #faf7f0;
  border-radius: 8px;
  font-size: .875rem;
  padding: .5rem .75rem;
}
.post-cat a:hover {
  background-color: #c9c2bc;
}
.post-date {
  font-size: .875rem;   /* 日付部分の指定 */
}
.post-thumbnail {
  /*  cborder-radius: 16px;  角丸の指定 */
  margin-bottom: 1.5rem;
  width: 100%;
}
.post p {
  margin-bottom: 1.5rem;
  line-height: 2;    /* 行間の指定 */
}

/* マップ */
.location {
  margin-bottom: 3.5rem;
}
.location-info {
  margin-bottom: 3.5rem;
}
.location-info .info {
  padding: 0;
}

/* NEWS サイドバー */
.side-menu {
  list-style: none; /* cssではデフォルトでリストに丸いマークが付くため非表示にするコード */
  text-align: center;
  margin-bottom: 4rem;
}
.side-menu li {
  border-bottom: 1px solid #c9c2bc;
}
.side-menu a {
  color: #432;
  display: block;
  padding: 1rem;
}
.side-menu a:hover {
  color:#0bd;
}

/* GALLERY
-------------------------- */
.cover-gallery {
  background-image: url(../images/IMG_4476.JPG);
}
.big-box {
  grid-column: auto;
  grid-row: auto;
}
.big-box img {
  height: auto;
}
.grid {
  display: grid; /* タイル型に並べる指定 */
  gap: 2rem 1.5rem; /* 最初の指定で縦方向の余白、２個目の指定で横の余白の指定 */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* [1fr]のボックスが１列に２つ並ぶ指定 */
  margin-top: 6%;
  margin-bottom: 50px;
  text-align: center;
  
}
.item img {
  aspect-ratio: 1/1; /* 画像の比率 */
  object-fit: cover; /* はみ出した部分をトリミング */
  border-radius: 16px;
  box-shadow: 2px 2px 8px #666;
}
.item img {
  aspect-ratio: 1/1; /* 画像の比率 */
  object-fit: cover; /* はみ出した部分をトリミング */
  border-radius: 16px;
  box-shadow: 2px 2px 8px #666;
}
/* youtube動画の影 */
.youtube iframe {
  box-shadow: 2px 2px 8px #666;
  transition: .3s;
}
.youtube iframe:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.item p {
  font-size: .875rem;
}

/* a:hoverはカーソルを合わせた時の装飾 */
.main-nav a:hover {
  color: "0bd";
}

/* Friendsとは */
.about {
  max-width: 736px;
  padding: 0 1.5rem;
  margin: 3rem auto 4rem;
}
.about p {
  margin-bottom: .5rem;
  text-align: center;
}

.about2 {
  width: 100%;
  padding: 0 1.5rem;
}

/* フッター インフォメーション部分
--------------------------- */
.info {
  width: 100%;
  max-width: 544px;
  margin: auto;
  padding: 0 1.5rem;
  border-spacing: 0;
}
.info th,
.info td {
  border-bottom: 1px solid #c9c2bc;
}
.info th {
  text-align: left;
  font-weight: normal;
  padding: 1rem;
}
.info td {
  padding: 1rem 0;
}

/* コピーライト */
.copyright {
  background-color: #432;
  text-align: center;
  padding: 2rem 0;
  margin-top: 6rem;
  color: #fff;
}
header video {
  max-width: 100%;

}
p {
 line-height: 2.3rem;
}
.heading-small {
  font-size: 2rem;
  text-align: center;
}




/* メディアクエリーを使用して画面サイズに合わせてCSSを切り替える */
/* デスクトップ版
---------------------------- */
@media (min-width: 900px) {
  /* 見出し */
  .page-title {
    font-size: 5rem;
    
  }
  .heading-large {
    font-size: 3rem;
    margin-top: 1rem;
  }
  .post-title {
    font-size: 2rem;
  }

  /* ヘッダー */
  .page-header {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
  }
  .main-nav {
    font-size: 2rem;
  }
  /* ヘッダーカバー画像 */
  .sub-cover {
    height: 400px;
    margin-bottom: 6rem;
  }
  .cover {
    height: 400px;
    margin-bottom: 6rem;
  }

  
/* HOME
----------------------------- */

.cover-home {
  background-image: url(../images/home2.jpg);
}

/* NEWS */
.cover-news {
  background-image: url(../images/home3.jpg);
 
}
.news-contents {
  display: flex;
  justify-content: space-between;
}
.post {  /* メインコンテンツの70% */
  width: 70%;
}
.sidebar {  /* サイドバー22% */
  width: 22%;
}
.sidebar .heading-medium { /* 余白や行間の指定を加えてバランスを整える */
  line-height: 1;
  margin-bottom: 1rem;
}
.sidebar-sticky-schedule {
  position: sticky;
  top: 50px;
}
.heading-small {
  font-size: 2rem;
  text-align: center;
}

/* GALLERY */
.cover-gallery {
  background-image: url(../images/SEASON4episode1.jpg);
}
.gallery {
  background-image: url(../images/season4ep3.jpg);
}
.big-box {
  grid-column: 1/3;
  grid-row: 1/3;
}
.big-box img {
  height: 94%;
  width: 100%;
  object-fit: cover;
}
.grid {
  gap: 3rem 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.item img {
  margin-bottom: 1rem;
}
.item p {
  font-size: 1rem;
}

.grid {
  display: grid; /* タイル型に並べる指定 */
  gap: 2rem 1.5rem; /* 最初の指定で縦方向の余白、２個目の指定で横の余白の指定 */
  grid-template-columns: repeat(3, 1fr); /* [1fr]のボックスが１列に２つ並ぶ指定 */
  text-align: center;
  
}
.item img {
  aspect-ratio: 1/1; /* 画像の比率 */
  object-fit: cover; /* はみ出した部分をトリミング */
  border-radius: 16px;
  box-shadow: 2px 2px 8px #666;
}

.form-block {
  /*display: grid;*/
  grid-template-columns: 14em 1fr;
  /*border-top: 1px dotted #606060;
  padding: 1em;
  align-items: center;
  height: 5em;*/
}

.info {
  max-width: 736px;
  margin: auto;
  padding: 0 3rem;
  border-spacing: 0;
}
.info th,
.info td {
  border-bottom: 1px solid #c9c2bc;
}
.info th {
  text-align: left;
  font-weight: normal;
  padding: 1rem;
}
.info td {
  padding: 1rem 0;
}
.post-reguration {
  max-width: 736px;
  margin: auto;
  padding: 0 3rem;
  border-spacing: 0;
}
header video{
  min-width: 100%;
}
.sns {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 0;
}
.sns-item {
  flex: 1;
}
}
 /* SNS */
 .email {
  margin-bottom: 4rem;
 }

/*
Slide menu
============================= */
/* 開閉ボタン */

.btn-menu {
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 4;
  padding: .5rem 1rem;
  border: 1px solid var(--grey);
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  transition: .4s;
}
.btn-menu svg {
  fill: var(--grey);
  margin-top: .25rem;
  height: 2rem;
  width: 2rem;
}

/* 閉じるボタン */
#menu-close {
  border: 1px solid var(--light-green);
}
#menu-close svg {
  fill: var(--light-green);
}

/* スライドメニューパネル */
#menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  padding: 3rem 6rem 2rem;
  width: max(32vw, 20rem);
  height: 100vh;
  background-color: var(--brown);
  box-shadow: 0 0 2rem var(--brown);
  font-family: var(--crossorigin-font);
  translate: 100vw;
}
.menu-list {
  list-style: none;
}
.menu-list li {
  margin: 1.5rem 0;
  opacity: 0;
}
.menu-list a {
  color: var(--light-green);
  text-decoration: none;
  font-size: 2rem;
}
.sns-links {
  list-style: none;
}
.sns-links li {
  margin: 1.5rem 0;
  opacity: 0;
}
.sns-links a {
  color: var(--light-green);
  text-decoration: none;
  font-size: 2rem;
}
.about p {
  margin-bottom: .5rem;
  text-align: center;
}

h1 {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30%;
  transform: translate(-50% -50%);
  text-align: center;
  font-size: 6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}





