@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.html {
  font-size: 90%;
}

body {
  font-family: "Poppins", sans-serif;
}

/*==========================================================================
// Utility
==========================================================================*/

.container {
  max-width: 1200px;
  margin: auto;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
}

.btn-primary {
  color: #fff;
  background: #16a083;
}

.btn-primary:hover {
  background: #117964;
  transition: background 0.3s ease-in-out;
}

a {
  text-decoration: none;
  color: #222222;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

/*==========================================================================
// nav bar - for PC desktop
==========================================================================*/

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.85;
  height: 80px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
}

.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.menu-items a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.menu-items a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}
.logo span{
	font-size: 0.7em;
}

/*==========================================================================
// Top image
==========================================================================*/

.showcase-area {
    height: 100vh;
    background-image: url("../img/top_main_pc.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.main-title {
    margin-left: -300px;
    text-transform: uppercase;
    margin-top: 1em;
	color: rgba(0, 0, 0, 0);
    text-shadow: 3px 3px 0 #cd5;
    -webkit-text-stroke: 1px #888;
    text-stroke: 1px #888;
    padding: 0 0 10px;
	font-size: 2em;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 1.6rem;
}

.showcase-container p {
    margin-left: -300px;
    font-weight: 500;
}

/* 767px以下のモバイル表示 */
@media screen and (max-width: 767px) {
    .showcase-area {
        height: 90vh;
        width: 100%; /* 画面幅いっぱいに修正 */
        background-image: url("../img/top_mainv_sp.png");
        background-position: center; /* 背景画像を中央に配置 */
        background-repeat: no-repeat;
        background-size: cover; /* 画面サイズに合わせて調整 */
    }

    .showcase-container {
        justify-content: flex-end; /* コンテンツを下部に配置 */
        align-items: flex-start;
        padding: 0 5%; /* 左右に余白を設定 */
    }

    .showcase-container p {
        font-size: 0.9em;
        font-weight: 500;
        margin: 0 0 10px 0; /* マージンを修正 */
        text-shadow: 0 0 8px #ffffff;
    }

    .main-title {
        font-size: 2em;
        text-transform: uppercase;
        margin: 0; /* マージンを修正 */
    }

    .showcase-area .btn {
        margin-left: 0;
        margin-bottom: 30px;
    }
}
/*==========================================================================
// Now on air
==========================================================================*/

#onair {
  padding: 50px 0;
  background: #f5f5f7;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
}

#onair h2 {
  font-size: 2.3rem;
}

#onair p {
  font-size: 1.2rem;
  color: #555;
}

#onair .small {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.onair-img {
  flex: 1 1 400px;
  padding: 30px;
  transform: translateX(150%);
  animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes onair-img-animation {
  100% {
    transform: translate(0);
  }
}

.about-text {
  flex: 1 1 400px;
  padding: 30px;
  margin: auto;
  transform: translate(-150%);
  animation: about-text-animation 1s ease-in-out forwards;
}

@keyframes about-text-animation {
  100% {
    transform: translate(0);
  }
}

.about-img img {
  display: block;
  height: 400px;
  max-width: 100%;
  margin: auto;
  object-fit: cover;
  object-position: right;
}

/*==========================================================================
// YouTube Section
==========================================================================*/
#youtube {
    padding: 80px 0;
    text-align: center;
}

#youtube .youtube {
    max-width: 1200px; /* コンテンツの最大幅を制限して中央に配置 */
    margin: 0 auto;
    padding: 0 5%;
}

#youtube h2 {
    margin-bottom: 50px;
	text-align: center;
	font-size: 2.5rem;
	font-weight: 400;
	text-transform: uppercase;
	color: #555;
}

#youtube h4 {
    margin-top: 30px;
    margin-bottom: 20px;
	font-size: 1.1em;
	font-weight: 500;
	padding: 10px 0px 10px 15px;
	text-align: left;
	border-left: 5px solid #e6e300;
}

/* PC表示で動画を横に並べるためのコンテナ */
#youtube .youtube-cont-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#youtube .video-item {
    width: 48%; /* 横並びにするために幅を約半分に設定 */
    margin-bottom: 40px;
}

#youtube .youtube-cont {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9のアスペクト比を維持 */
}

#youtube .youtube-cont iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* モバイル表示 (767px以下) */
@media screen and (max-width: 767px) {
    #youtube {
        padding: 50px 0;
    }
    #youtube h2 {
        margin-bottom: 30px;
    }
    #youtube .youtube-cont-wrapper {
        flex-direction: column; /* 縦並びにする */
        align-items: center;
    }
    #youtube .video-item {
        width: 100%; /* 幅を100%に */
        margin-bottom: 20px;
    }
}
/*==========================================================================
// Profile
==========================================================================*/
#profile {
  max-width: 1200px;
  margin: 0 auto; /* コンテナを中央寄せにする */
  padding: 80px 20px; /* 上下の余白を追加 */
  background: #fff;
}

#profile h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #555;
}

#profile h3 {
  font-size: 2.3rem;
}

#profile a {
  text-decoration: none;
  color: #DC3939;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

#profile a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

#profile .prof-menu-container {
  display: flex; /* Flexboxを有効にする */
  flex-wrap: wrap; /* 要素を折り返す */
  justify-content: center; /* 要素を中央に配置 */
  align-items: flex-start; /* 要素を上端に揃える */
  gap: 40px; /* 要素間の隙間を設定 */
}

/* プロフィール画像 */
#profile .prof-img {
  flex: 1 1 300px; /* 成長・縮小し、基準幅を300pxに設定 */
  text-align: center;
}

#profile .prof-img img {
  max-width: 250px;
  height: auto;
  border-radius: 20%; /* 画像を丸くする */
  box-shadow: -10px 10px 15px rgba(230, 180, 15, 0.9),
    10px -10px 15px rgba(8, 131, 161, 0.9);
}

/* プロフィール詳細 */
#profile .prof-description {
  flex: 1 1 400px; /* 成長・縮小し、基準幅を400pxに設定 */
  text-align: left;
}

.prof-description p {
  font-size: 1.2rem;
  color: #333333;
  font-weight: 500;
}

.prof-description .small {
  font-size: 1.6rem;
  color: #117964;
  font-weight: 700;
}

/* テーブルスタイル */
#profile table {
  flex: 1 1 390px; /* 成長・縮小し、基準幅を390pxに設定 */
  width: 80%; /* 親要素の幅80%に広げる */
  margin: auto;
  padding-top: 40px;
  border-spacing: 0;
}

#profile table th {
  border-bottom: solid 2px #fb5144;
  padding: 10px;
  text-align: center;
}

#profile table td {
  border-bottom: solid 2px #ddd;
  text-align: center;
  padding: 10px;
}

/* ボイスサンプル部分 */
#profile .voice_box {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 10px; /* ボタン間の隙間を設定 */
}

.voice_box p {
  color: #fff;
  padding: 10px;
  font-size: 0.7em;
  font-weight: 500;
}

.button-link {
  font-size: 1.3em;
  padding-right: 20px;
  background: #333;
  text-align: left;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  width: 220px;
  text-decoration: none;
  transition: 0.5s;
}

.voice_box .button-link:hover {
  background: #13c3ac;
  color: #FF0000;
  cursor: pointer;
}

.button-link > i {
  display: block;
  margin: 0 auto;
}

.button-link > p {
  width: 100%;
}

/* プロフィールセクションのレスポンシブ調整 */
@media screen and (max-width: 767px) {
  #profile {
    padding: 50px 20px; /* モバイルの余白を調整 */
  }

  #profile h2 {
    margin-bottom: 30px;
  }

  #profile .prof-menu-container {
    flex-direction: column; /* 縦並びにする */
    align-items: center; /* 中央揃えにする */
    gap: 30px; /* モバイルの隙間を調整 */
  }

  #profile .prof-img,
  #profile .prof-description,
  #profile table {
	font-size: 0.9em;
	padding: 0px;
    width: 90%;
    margin-left: 0; /* ネガティブマージンを削除 */
  }

  #profile .prof-img {
    padding-left: 0; /* 画像のパディングを削除 */
  }

  #profile table {
	width: 100%; /* モバイルでは幅を100%に */
    padding-left: 0; /* テーブルのパディングを削除 */
  }

  #profile table th,
  #profile table td {
    padding: 8px; /* テーブルのパディングを減らす */
  }

  .voice_box .button-link {
    width: 60%; /* ボタンの幅を100%にする */
    margin: 0; /* マージンを削除 */
  }
}

/* PC表示でのボタンマージン調整 */
@media screen and (min-width: 768px) {
  .button-link_r {
    margin-right: 1em;
  }
}
/*==========================================================================
// Biography
==========================================================================*/
#bio {
    padding-top: 100px;
    padding-bottom: 80px;
    background: #f7f7f7;
}

/* コンテンツを中央に配置するコンテナ */
#bio .bio-container {
    max-width: 1200px; /* コンテンツの最大幅を設定 */
    margin: 0 auto; /* コンテナを中央寄せにする */
    padding: 0 20px; /* 左右に少し余白を持たせ、コンテンツが端に寄りすぎないようにする */
}

/* 各経歴項目を並べるエリア */
#bio .master_area {
    display: flex;
    flex-wrap: wrap; /* 画面幅に合わせて要素を折り返す */
    justify-content: center; /* 要素を中央に配置 */
    gap: 40px 20px; /* 要素間の縦と横の隙間を設定 */
}

/* 各経歴項目 */
#bio .master_inner {
    width: 45%; /* 各要素の幅を約半分に設定 */
    background: #fff;
    padding: 30px;
    box-sizing: border-box; /* paddingとborderを幅に含める */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#bio h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #555;
}
#bio .master_inner h4 {
	font-size: 0.8em;
	text-align: center;
    font-weight: 600;
    letter-spacing: 0.2em;
	padding: 8px 1px;
  border-radius: 10px;
  border: 3px solid #FF0000;
}

#bio .master_inner h5 {
    font-size: 1.2rem;
    color: #5F5C00;
    margin-bottom: 15px;
    border-bottom: 2px solid #e6e300;
    padding-bottom: 5px;
}

#bio .master_inner a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

#bio .master_inner a:hover {
  color: #117964;
  transition: color 0.3s ease-in-out;
}

#bio .master_inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#bio .master_inner li {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
}

#bio .master_inner span {
    font-weight: bold;
    color: #117964;
    margin-right: 5px;
}

/* 767px以下のモバイル表示 */
@media screen and (max-width: 767px) {
    #bio {
        padding: 50px 0;
    }
    #bio .master_area {
        gap: 20px 0;
    }
    #bio .master_inner {
        width: 100%; /* モバイルでは幅を100%に */
    }
    #bio .bio-container {
        padding: 0 5%;
    }
}

/*==========================================================================
// Contact us
==========================================================================*/

#contact {
  padding: 5rem 0;
  background: rgb(226, 226, 226);
}

.contact-container {
  display: flex;
  background: #fff;
}

.contact-img {
  width: 50%;
}

.contact-img img {
  display: block;
  height: 400px;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.form-container {
  padding: 1rem;
  width: 50%;
  margin: auto;
}

.form-container input {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  box-shadow: none;
  outline: none;
  margin-bottom: 1rem;
  color: #444;
  font-weight: 500;
}

.form-container textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #ddd;
  color: #444;
  outline: none;
  padding: 1rem 0;
  resize: none;
}

.form-container h2 {
  font-size: 2.7rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 1rem;
  margin-top: -1.2rem;
}

.form-container a {
  font-size: 1.3rem;
}
@media (max-width: 767px) {
	
  .form-container {
    width: 90%;
  }

  .contact-container {
    display: flex;
    flex-direction: column;
  }

  .contact-img {
    width: 90%;
    margin: 3rem auto;
  }
}

/*==========================================================================
// Footer
==========================================================================*/


#footer h2 {
  text-align: center;
  font-size: 1rem;
  padding: 1.2rem;
  font-weight: 300;
  color: #fff;
  background: rgb(65, 65, 65);
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right:  10px;
  bottom: 0;
  background: #16A083;
  opacity: 0.7;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*==========================================================================
// nav bar mobile
==========================================================================*/

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 30px;
    width: 35px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {

    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    padding-top: 100px;
    background: #fff;
    height: 100vh;
    max-width: 350px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.7rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
	}}