@charset "UTF-8";
/*
Theme Name:     yuzuhoshiokoshi
Theme URI:      https://example.com/
Description:    Yuzuho Shiokoshi テーマ for Twenty Twenty-Five
Author:         Naofumi Tatematsu
Author URI:     https://contentsdive.com/
Template:       twentytwentyfive
Version:        1.0
*/
@import url("../twentytwentyfive/style.css");
/* ==================================================================
   01. Variables & Mixins (変数とMixin)
   ================================================================== */
/* ==================================================================
   02. Base Styles (ベーススタイル)
   ================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "游ゴシック体", "YuGothic", Meiryo, "メイリオ", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.wp-site-blocks > * {
  display: none;
}

header {
  display: block !important;
}

main {
  display: block !important;
}

.wpcf7-back {
  display: none !important;
}

/* ==================================================================
   03. Header (ヘッダー)
   ================================================================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.site-header .site-branding img {
  max-height: 50px;
}
.site-header .nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.site-header .nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-header .nav-menu a:hover {
  color: #D96B1C;
}
@media (max-width: 768px) {
  .site-header .nav-menu {
    display: none;
  }
}

/* ==================================================================
   04. Main Content Sections (主要コンテンツセクション)
   ================================================================== */
/* --- Parallax Section (パララックスセクション) --- */
.parallax-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.parallax-section .parallax-wrapper img {
  width: 100%;
  height: auto;
  will-change: transform;
}
.parallax-section .parallax-content .main-ttl {
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (max-width: 480px) {
  .parallax-section .parallax-content .main-ttl {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .parallax-section {
    height: auto;
  }
}

/* --- Portfolio Section (ポートフォリオセクション) --- */
.portfolio-section {
  background-color: #FFF7E0;
  padding: 60px 20px;
  text-align: center;
}
.portfolio-section .portfolio-title {
  color: #D96B1C;
  font-size: 1.35em;
  margin-bottom: 40px;
}
.portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio-section .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}
.portfolio-section .portfolio-grid .portfolio-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 480px) {
  .portfolio-section .portfolio-grid .portfolio-item:nth-child(n+10) {
    display: none;
  }
}

/* --- Topics Section (トピックスセクション) --- */
.topics-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.topics-section h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #D96B1C;
}
.topics-section .topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.topics-section .topics-list .topics-list-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 480px) {
  .topics-section .topics-list .topics-list-item {
    display: block;
  }
}
.topics-section .topics-list .topics-list-item:last-child {
  border-bottom: none;
}
.topics-section .topics-list .topics-list-item .topics-date {
  flex-shrink: 0;
  width: 100px;
  font-size: 16px;
  color: #666;
}
.topics-section .topics-list .topics-list-item .topics-label {
  flex-shrink: 0;
  margin: 0 12px;
  padding: 2px 8px;
  font-size: 16px;
  color: #D96B1C;
  border: 1px solid #D96B1C;
  border-radius: 4px;
}
.topics-section .topics-list .topics-list-item .topics-title {
  flex: 1;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}
.topics-section .topics-list .topics-list-item .topics-title:hover {
  color: #D96B1C;
}
.topics-section .topics-no-results {
  padding: 16px 0;
  color: #999;
  text-align: center;
}
.topics-section .topics-text {
  font-size: 16px;
  display: flex;
  margin: 10px auto;
}
@media (max-width: 480px) {
  .topics-section .topics-text {
    display: block;
  }
}
.topics-section .topics-text time {
  margin-right: 15px;
}

/* --- SNS Section (SNSセクション) --- */
.sns-section {
  width: 80%;
  margin: 65px auto;
}
.sns-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #D96B1C;
}
.sns-section .twitter-feed {
  font-size: 0.8em !important;
}
.sns-section .twitter-feed img {
  max-width: 100%;
}
.sns-section .sbi_header_text,
.sns-section #sbi_load {
  display: none !important;
}

/* --- Other Contents (その他のコンテンツ) --- */
.other-contents {
  margin-top: 100px;
  text-align: center;
}
.other-contents h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #D96B1C;
}
.other-contents .banners {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 40px 65px;
}
.other-contents .banners .banner-item {
  width: 320px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.other-contents .banners .banner-item img {
  width: 320px;
  height: 120px;
}

/* --- Sponsor Section (スポンサーセクション) --- */
.sponsor-section {
  padding: 40px 20px;
  text-align: center;
}
.sponsor-section h2 {
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #D96B1C;
}
.sponsor-section .sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.sponsor-section .sponsor-logos .sponsor-item {
  width: 320px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.sponsor-section .sponsor-logos .sponsor-item img {
  width: 320px;
  height: 120px;
}

/* ==================================================================
   05. Footer (フッター)
   ================================================================== */
.site-footer {
  background-color: #FFF7E0;
  padding: 20px;
  text-align: center;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
  }
}
.site-footer .footer-inner .footer-branding {
  font-weight: bold;
}
.site-footer .footer-inner .footer-branding p {
  font-size: small;
  font-weight: bold;
  color: #D96B1C;
  padding: 0;
  margin: -10px;
}
.site-footer .footer-inner .footer-branding a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-branding {
    text-align: center;
  }
}
.site-footer .footer-inner .footer-nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer .footer-inner .footer-nav a {
  text-decoration: none;
  color: #333;
}
.site-footer .footer-inner .footer-nav a:hover {
  color: #D96B1C;
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-nav a {
    font-size: 0.8em;
    margin: 0 6px;
  }
}
@media (max-width: 480px) {
  .site-footer .footer-inner .footer-nav a {
    font-size: 0.75em;
    margin: 0 4px;
  }
}
.site-footer .footer-inner .footer-nav .ig img,
.site-footer .footer-inner .footer-nav .x img {
  width: 30px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-nav .ig img,
  .site-footer .footer-inner .footer-nav .x img {
    width: 24px;
    margin-top: 0;
  }
}
.site-footer .footer-inner .footer-nav .cart,
.site-footer .footer-inner .footer-nav .ball,
.site-footer .footer-inner .footer-nav .mail {
  margin: 0 15px;
  color: #D96B1C;
  font-size: 0.85em;
}
.site-footer .footer-inner .footer-nav .cart img,
.site-footer .footer-inner .footer-nav .ball img,
.site-footer .footer-inner .footer-nav .mail img {
  width: 20px;
  margin-top: 15px;
  margin-right: 5px;
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-nav .cart img,
  .site-footer .footer-inner .footer-nav .ball img,
  .site-footer .footer-inner .footer-nav .mail img {
    width: 16px;
    margin-top: 0;
    margin-right: 4px;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-inner .footer-nav {
    justify-content: center;
    gap: 8px;
  }
}
.site-footer small {
  display: block;
  color: #999;
  font-size: 0.8em;
}

/* ==================================================================
   06. Specific Page Styles (特定ページスタイル)
   ================================================================== */
/* --- Profile Page (プロフィールページ) --- */
.profile-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.profile-page .profile-header-banner {
  background-color: #FFF7E0;
  padding: 80px 0 40px;
  text-align: left;
}
.profile-page .profile-header-banner h1 {
  margin: 0;
  font-size: 2.5em;
  color: #D96B1C;
}
.profile-page .profile-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  /* プロフィールイントロセクション固有スタイル */
  /* プロフィール略歴セクション固有スタイル */
  /* プロフィール主な成績セクション固有スタイル */
}
.profile-page .profile-section .profile-image img,
.profile-page .profile-section .history-image img,
.profile-page .profile-section .achievements-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.profile-page .profile-section h2 {
  position: relative;
  font-size: 1.1em;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  padding-bottom: 25px;
}
.profile-page .profile-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 2px;
  background-color: #D96B1C;
  left: 50%;
  /* 親要素の左端から50%の位置 */
  transform: translateX(-50%);
  /* 要素自身の幅の半分だけ左に戻す */
  display: block;
  /* 擬似要素をブロック要素として扱う (幅指定のために必要) */
}
@media (max-width: 768px) {
  .profile-page .profile-section h2::after {
    width: 150px;
  }
}
.profile-page .profile-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}
.profile-page .profile-section.profile-intro .profile-image {
  flex: 1;
  max-width: 40%;
}
.profile-page .profile-section.profile-intro .profile-text {
  flex: 2;
}
.profile-page .profile-section.profile-intro .en {
  font-size: 0.85em;
  color: #666;
  margin-left: 8px;
}
.profile-page .profile-section.profile-intro .profile-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
}
.profile-page .profile-section.profile-intro .profile-meta li {
  font-size: 16px;
  color: #555;
}
.profile-page .profile-section.profile-history .history-text {
  flex: 2;
  width: 90%;
  margin: auto;
}
.profile-page .profile-section.profile-history .history-image {
  flex: 1;
  max-width: 40%;
}
@media (max-width: 480px) {
  .profile-page .profile-section.profile-history .history-text {
    order: 1;
  }
  .profile-page .profile-section.profile-history .history-image {
    order: 0;
  }
}
.profile-page .profile-section.profile-achievements .achievements-image {
  flex: 1;
  max-width: 40%;
}
.profile-page .profile-section.profile-achievements .achievements-text {
  flex: 2;
}
@media (max-width: 768px) {
  .profile-page .profile-section {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .profile-page .profile-section .history-text,
  .profile-page .profile-section .achievements-text,
  .profile-page .profile-section .profile-text {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .profile-page .profile-section .profile-image,
  .profile-page .profile-section .history-image,
  .profile-page .profile-section .achievements-image {
    max-width: 100%;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .profile-page .profile-section .profile-image,
  .profile-page .profile-section .history-image,
  .profile-page .profile-section .achievements-image {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }
  .profile-page .profile-section .profile-image img,
  .profile-page .profile-section .history-image img,
  .profile-page .profile-section .achievements-image img {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .profile-page .profile-section p {
    text-align: left;
  }
}

/* --- Contact Form (お問い合わせフォーム) --- */
.contact-form {
  text-align: left;
  font-size: 16px;
}
.contact-form h3 {
  font-size: 20px;
  color: #D96B1C;
  text-align: center;
  margin: 20px 0;
}
.contact-form p {
  margin: 25px auto;
}
.contact-form ul {
  border-left: 5px #D96B1C solid;
  background: #FFF7E0;
  padding: 20px 20px 20px 30px;
  font-size: 14px;
  margin-bottom: 65px;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.contact-form ul p {
  margin: 0;
}
.contact-form label {
  display: flex;
  margin: 25px auto;
  max-width: 600px;
}
.contact-form label .field_name {
  flex-shrink: 0;
  width: 200px;
  padding-right: 10px;
}
.contact-form label .field_name .need {
  color: #ff0000;
  padding: 10px 0 0 5px;
}
.contact-form label .wpcf7-form-control-wrap {
  flex-grow: 1;
  width: auto;
}
.contact-form label .wpcf7-form-control-wrap select,
.contact-form label .wpcf7-form-control-wrap input[type=text],
.contact-form label .wpcf7-form-control-wrap input[type=tel],
.contact-form label .wpcf7-form-control-wrap input[type=email] {
  border: 1px #e0e0e0 solid;
  padding: 5px 10px;
  border-radius: 5px;
  width: 100% !important;
  max-width: 60ch;
}
.contact-form label .wpcf7-form-control-wrap textarea {
  border: 1px #e0e0e0 solid;
  padding: 5px 10px;
  border-radius: 5px;
  width: 100% !important;
  max-width: 66.5ch;
}
.contact-form label input[type=file] {
  display: none;
}
.contact-form label .custom-file-upload {
  display: inline-block;
  padding: 8px 16px;
  cursor: pointer;
  background-color: #fff;
  color: #333;
  border: 1px #e0e0e0 solid;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 5px;
}
.contact-form label .upload_warn {
  background-color: red;
}
.contact-form label .upload_warn p {
  font-size: 12px !important;
}
@media (max-width: 480px) {
  .contact-form label {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form label .field_name {
    width: auto;
    padding-right: 0;
    margin-bottom: 5px;
  }
  .contact-form label select,
  .contact-form label input[type=text],
  .contact-form label input[type=tel],
  .contact-form label input[type=email] {
    max-width: 100% !important;
  }
  .contact-form label textarea {
    max-width: 100% !important;
  }
}
.contact-form .file_warn {
  margin-top: -20px;
  margin-bottom: 65px;
  font-size: 14px;
  text-align: center;
}
.contact-form .submit_btn p {
  text-align: center;
  margin: 25px auto;
}
.contact-form .submit_btn p input[type=submit],
.contact-form .submit_btn p input[type=button] {
  background: #D96B1C;
  color: #fff;
  font-size: 18px;
  padding: 10px 65px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 480px) {
  .contact-form .submit_btn p input[type=submit],
  .contact-form .submit_btn p input[type=button] {
    width: 100%;
    padding: 10px 0;
  }
}

/* --- Privacy Policy (プライバシーポリシー) --- */
.privacy-policy h3 {
  font-size: 18px !important;
  margin: 10px 0;
  color: #D96B1C;
  font-weight: bold;
}
.privacy-policy p {
  font-size: 16px !important;
  margin-bottom: 25px;
}
.privacy-policy ol {
  padding-left: 20px;
  margin-bottom: 25px;
}
.privacy-policy ol li {
  font-size: 16px;
}

/* ==================================================================
   07. Utility Classes & WordPress Specific Styles (ユーティリティとWP固有スタイル)
   ================================================================== */
/* --- Utility Classes (汎用ユーティリティクラス) --- */
.white-bg {
  background: #fff;
}

.cen {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.under_footer-brand {
  margin-top: 25px;
  margin-bottom: 25px;
  font-weight: bold;
}
.under_footer-brand .footer-branding {
  font-weight: normal;
  font-size: 13px;
}

.under_title {
  margin-left: 85px;
  margin-top: -30px;
  margin-bottom: 20px;
  color: #D96B1C;
  font-weight: bold;
  font-size: 13px;
}

/* --- WordPress Block & Plugin Specific Styles (WordPressブロック・プラグイン関連スタイル) --- */
.wp-block-group {
  margin-top: 0 !important;
}
.wp-block-group .entry-content {
  font-size: 16px;
}
.wp-block-group .entry-content .topics-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-block-group .entry-content .topics-list .topics-list-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 480px) {
  .wp-block-group .entry-content .topics-list .topics-list-item {
    display: block;
  }
}
.wp-block-group .entry-content .topics-list .topics-list-item:last-child {
  border-bottom: none;
}
.wp-block-group .entry-content .topics-list .topics-list-item .topics-date {
  flex-shrink: 0;
  width: 100px;
  font-size: 16px;
  color: #666;
}
.wp-block-group .entry-content .topics-list .topics-list-item .topics-label {
  flex-shrink: 0;
  margin: 0 12px;
  padding: 2px 8px;
  font-size: 16px;
  color: #D96B1C;
  border: 1px solid #D96B1C;
  border-radius: 4px;
}
.wp-block-group .entry-content .topics-list .topics-list-item .topics-label-none {
  display: none;
}
.wp-block-group .entry-content .topics-list .topics-list-item .topics-title {
  flex: 1;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}
.wp-block-group .entry-content .topics-list .topics-list-item .topics-title:hover {
  color: #D96B1C;
}
.wp-block-group .entry-content .topics-no-results {
  padding: 16px 0;
  color: #999;
  text-align: center;
}
.wp-block-group .entry-content .topics-text {
  font-size: 16px;
  display: flex;
  margin: 10px auto;
}
@media (max-width: 480px) {
  .wp-block-group .entry-content .topics-text {
    display: block;
  }
}
.wp-block-group .entry-content .topics-text time {
  margin-right: 15px;
}
.wp-block-group .wp-block-post-content p {
  margin: 0 auto !important;
  max-width: 1340px !important;
}

.post-title-area {
  display: block;
  background: #FFF7E0;
}
.post-title-area h1.wp-block-post-title {
  text-align: center;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  color: #D96B1C;
  font-size: 24px;
  background: #FFF7E0;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 0;
  max-width: 1340px !important;
}
@media (max-width: 480px) {
  .post-title-area h1.wp-block-post-title {
    padding-left: 0 !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    line-height: 135%;
  }
}
@media (max-width: 768px) {
  .post-title-area h1.wp-block-post-title {
    padding-left: 0 !important;
    line-height: 135%;
  }
}

.wp-block-navigation__responsive-container {
  background-color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}

.wp-block-navigation__responsive-container-content {
  font-weight: bold !important;
}

#wp--skip-link--target > div.wp-block-group.alignfull.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained > div.wp-block-group.has-accent-4-color.has-text-color.has-link-color.has-small-font-size.is-layout-flex.wp-container-core-group-is-layout-5.wp-block-group-is-layout-flex,
#wp--skip-link--target > div.wp-block-group.alignfull.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained > div.wp-block-group.has-accent-4-color.has-text-color.has-link-color.has-small-font-size.is-layout-flex.wp-container-core-group-is-layout-4efaea1e.wp-block-group-is-layout-flex {
  display: none;
}

.single-post main,
.wp-block-post-template {
  font-size: 16px !important;
}

.post-navigation-link-previous,
.post-navigation-link-next {
  font-size: 16px !important;
}

.wp-block-query .wp-block-post-title a {
  font-size: 16px !important;
  /* フォントサイズを16pxに設定 */
  /* 必要であれば、他のスタイルも調整できます */
  /* font-weight: normal; */
  /* 太字を解除したい場合 */
  /* line-height: 1.5; */
  /* 行間を調整したい場合 */
  /* color: #333; */
  /* 文字色を変更したい場合 */
  /* text-decoration: none; */
  /* 下線をなくしたい場合 */
}/*# sourceMappingURL=style.css.map */