/*
Theme Name: Giants
Author: 近江
Description: アカデミー事業部オリジナルテーマ
Version: 1.0
License: GPLv2 or later
Text Domain: giants
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 2.5vw;
}
@media screen and ( min-width: 1024px ) {
    body {
        font-size: 25.6px;
    }
}
a {
    text-decoration: none; /* 下線を消す */
    color: white;
}
a:visited {
    color: white;
}
a:hover {
    color: white;
}
a:active {
    color: white;
}
.cgiants {
    color: #F08200;
}
.giants-icon {
    color: #F08200;
}
.container-maxwidth {
    width: 100%;
}
@media screen and ( min-width: 1024px ) {
    .container-maxwidth {
        width: 1024px;
        margin: 0 auto;
    }
}

/* ヘッダ */
.site-header {
    display: flex;             /* Flexbox にする */
    justify-content: space-between; /* 左右に分ける */
    align-items: center;       /* 垂直中央揃え */
    padding: 1vw;
}
.title-container {
    display: flex;           /* Flexbox にする */
    align-items: center;     /* 垂直中央揃え */
    justify-content: center; /* 横方向も中央に揃えたい場合 */
    gap: 10px;               /* img と span の間に隙間 */
}
.title-container .title-logo {
    display: flex;           /* Flexbox にする */
    align-items: center;     /* 垂直中央揃え */
}
.title-container .title-logo img {
    width: 10vw;
}
.title-container .title {
    color: #6F6F6F;
    font-size: 1em;
}
@media screen and ( min-width: 1024px ) {
    .title-container .title-logo img {
        width: 102.4px;
    }
    .title-container .title {
        font-size: 25.6px;
    }
}
/* ハンバーガーメニュー */
.header-menu-container {
    padding: 0.5em;
}
.menu-icon {
  display: block;
  z-index: 10;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
}
.navicon,
.navicon::before,
.navicon::after {
    display: block;
    position: absolute;
    top: 50%;
    height: 3px;
    width: 100%;
    background: #F08200;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navicon::before {
    top: -8px;
    content: '';
}
.navicon::after {
    top: 8px;
    content: '';
}
#menu-btn {
  display: none; /* チェックボックス非表示 */
}

/* メニュー */
.header-menu {
    display: none;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2em;
    text-align: center;
    color: white;
    background-color: #444c;
}
#menu-btn:checked ~ .header-menu {
    display: block; /* チェックされるとメニュー表示 */
}
#menu-btn:checked + .menu-icon .navicon {
  background: transparent;
}
#menu-btn:checked + .menu-icon .navicon::before {
  transform: rotate(-45deg);
  top: 0;
}
#menu-btn:checked + .menu-icon .navicon::after {
  transform: rotate(45deg);
  top: 0;
}
.header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-menu li {
  margin: 10px 0;
  position: relative;
}
.header-menu a {
  text-decoration: none;
}
.hint {
    position: absolute;
    z-index: 5;
    top: 1.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    padding: 0.5em;
    border-radius: 4px;
    line-height: 0.7em;
    text-align: left;
    pointer-events: none; /* 非表示時にクリックできないように */
    background-color: #F08200;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.hint-text {
    font-size: 0.7em;
}
.header-menu li:hover .hint {
  opacity: 0.8;
  pointer-events: auto; /* 表示時はクリック可能 */
}

/* スライダー */
.slider-container {
    position: relative;   /* 子要素の絶対配置の基準 */
    background-color: black;
}
.slider-text {
    position: absolute;   /* 親を基準に絶対配置 */
    top: 50%;             /* 縦方向中央 */
    left: 50%;            /* 横方向中央 */
    transform: translate(-50%, -100%); /* 中心にピッタリ配置 */
    color: white;         /* 文字色 */
    font-size: 2em;
    text-align: center;
}
.ml-slider .flexslider {
    position: relative;
    margin-bottom: 0.5em !important;
}
.ml-slider .flex-control-nav {
    position: absolute;
    bottom: 1em !important;
    left: 50%;
    transform: translateX(-50%); /* ドットナビを下中央に重ねる */
    z-index: 10;
}
.ml-slider .flex-control-nav li a {
    background: rgba(255,255,255,0.7);
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    margin: 0 5px;
}

/* 中段メニュー */
.middle-menu-container {
    display: flex;
    background: black;
}
.middle-menu-item {
    width: 25%;
    padding: 4% 0;
    border: 1px solid #F08200;
    text-align: center;
    color: white;
    font-size: 1em;
}

/* アイコンメニュー */
.icon-menu-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;          /* 縦方向を中央揃え */
    padding: 1em;
    background: black;
}
.icon-menu-item .icon-menu-button {
    display: inline-block;       /* インラインでもサイズや余白を持てるようにする */
    padding: 10px 20px;          /* 内側の余白 */
    background-color: black;   /* 背景色 */
    color: white;                 /* 文字色 */
    border-radius: 8px;          /* 角を丸くする */
    text-decoration: none;       /* 下線を消す（リンク風にするなら必須） */
    cursor: pointer;             /* マウスカーソルを「手」にする */
}
.icon-menu-item .icon-menu-button.contact {
    background-color: #F08200;   /* 背景色 */
}
.icon-menu-item .icon-menu-button.line {
    background-color: #00B900;   /* 背景色 */
}
.icon-menu-item .fa-instagram {
  font-size: 2em;   /* 大きさ */
  color: #E4405F;    /* Instagramカラー */
}

/* 対象年齢 */
.targerage-container img {
    width: 100%;
}

/* セクション */
.section-container {
    padding: 5%;
    background: white;
}
@media screen and ( min-width: 1024px ) {
    .section-container {
        width: 1024px;
        margin: 0 auto;
    }
}
.section-container img {
    width: 100%;
}
.section-name {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}
.section-caption {
    padding: 1em;
    text-align: center;
}
.section-bar {
    margin: 1em 1em;
    border-bottom: 2px solid #F08200;
}
.section-button-container {
    margin: 1em;
    text-align: center;
}
.section-button {
    display: inline-block;       /* インラインでもサイズや余白を持てるようにする */
    padding: 10px 20px;          /* 内側の余白 */
    background-color: black;   /* 背景色 */
    color: white;                 /* 文字色 */
    border-radius: 8px;          /* 角を丸くする */
    text-decoration: none;       /* 下線を消す（リンク風にするなら必須） */
    cursor: pointer;             /* マウスカーソルを「手」にする */
    transition: background 0.3s; /* ホバー時のアニメーション */
}
.section-button:hover {
    background-color: gray;   /* ホバー時の色 */
}

/* ABOUT */
.about-items {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-items li {
    position: relative;
    padding: 1em 0;
}
.about-items .item-number {
    font-size: 1.7em;
}
.about-items .item-text {
    border-bottom: 2px solid #F08200;
    font-size: 2em;
}
.about-items .item-comment {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
}

/* FAQ */
.faq-items {
    list-style: none;
    padding: 0;
    margin: 0 1.5em;
}
.faq-items li {
    margin: 0 0 1em 0;
}
.faq-q {
    display: block;
    font-size: 0.8em;
}
.faq-a {
    display: flex;
    font-size: 1.15em;
}
.faq-a-text {
    display: inline-block;
}

/* USER'S VOICE */
.voices .user {
    display: flex;
    gap: 1em;
    align-items: center;
    margin: 2em 0;
    padding: 1em;
    border-radius: 8px;
    background-color: whitesmoke;
}
.voices .user-icon {
    width: 15%;
}
.voices .user-icon img {
    background-color: white; /* 背景色 */
    border-radius: 50%;       /* 正円にする */
    padding: 0;            /* 画像の周りに余白を作る */
}
.voice-container {
    width: 80%;
}
.voice-bar {
    margin: 0.5em 0;
    border-bottom: 2px dashed black;
}
.voice-text {
    margin-bottom: 0;
    font-size: 1.2em;
    font-weight: bold;
}
.voice-information {
    display: block;
    width: 100%;
    text-align: right;
    font-size: 0.8em;
}
.voice-comment {
    font-size: 1em;
}

/* NEWS */
.news-item {
    margin: 0.5em 1.5em 1.3em 1.5em;
}
.news-date {
    font-size: 0.8em;
    margin-bottom: 0.5em;
    color: black;
}

.news-title {
    margin: 0;
    font-size: 1.3em;
}

/* フッタ */
.site-footer {
    background-color: black;
}
.site-footer .logo-container {
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
    padding: 2em;
}
.site-footer .logo-container img {
    height: 8em;
}
.site-footer .sns-container {
    display: flex;
    gap: 1em;
    justify-content: center;
    align-items: center;
}
.site-footer .campany-container {
    padding: 2em;
    text-align: center;
    font-size: 1.3em;
    color: white;
}
.site-footer .copyright {
    text-align: center;
    font-size: 0.8em;
    color: black;
    background-color: #F08200;
}

/* ジャイアンツ・メソッドとは？ */
.main-contents {
    width: 100%;
    padding: 2em 4em;
    background-color: #f2f0eb;
}
@media screen and ( min-width: 1024px ) {
    .main-contents {
        width: 1024px;  /* 1024px固定 */
        margin: 0 auto; /* 中央寄せ */
    }
}
.main-contents .academy_content_header {
    margin-bottom: 2em;
    padding: 0 0 0.5em 0;
    border-bottom: 2px solid #F08200;
    text-align: center;
    color: #F08200;
}
.main-contents .padding-p {
    margin: 1em 0;
    padding: 2em;
    border: 1px solid #ccc;
    font-size: 1em;
    background: #fff;
}
.academy_about_feature_list {
    margin-left: 2em;
    list-style: none;
}
.academy_about_feature_list li:before {
    content: '●';
    display: inline-block;
    width: 1em;
    font-size: 10px;
    color: #F08200;
}
.main-contents .padding-p .giants-method-img {
    width: 100%;
    padding: 5%;
}
.main-contents .padding-p .giants-method-news-img {
    width: 100%;
    margin-top: 2em;
}
.teaching-materials {
    display: flex;
}
.main-contents .padding-p hr {
    margin: 1em 0;
}
.main-contents .padding-p .teaching-materials-div-one-img {
    width: 90%;
    padding: 1em;
    border: 1px solid #ccc;
}
.main-contents .padding-p .teaching-materials-div-two-img {
    width: 90%;
    padding: 1em;
    border: 1px solid #ccc;
}
.marging-h2 {
    display: flex;
    align-items: center;
}
.marging-h2:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 12px;
    border-color: transparent transparent transparent #F08200;
}
.marging-h2 span {
    margin-left: 0.5em;
}

/* スタッフ紹介 */
.stfull-content {
    display: flex;
    justify-content: space-between; /* 左右に分ける */
    align-items: flex-start;       /* 垂直中央揃え */
    padding: 1em;
    border: 3px solid #F08200;
    background-color: white;
}
.stfull-content .boximg {
    width: 30%;
}
.stfull-content .boximg img {
    width: 100%;
    height: 100%;
    padding: 0.5em;
}
.stfull-content .comment {
    width: 70%;
}

/* スクール案内 */
.school-information-div {
    padding-top: 2em;
    background-color: white;
}
.school-information-div .school {
    border-spacing: 0;
}
.school-information-div .school th {
    padding: 0.5em;
    text-align: left;
    color: white;
    background-color: #F08200;
}
.school-information-div .school td {
    padding: 0.5em;
}
.school-information-div .school tbody tr:nth-of-type(even) {
    background-color: #fff;
}
.school-information-div .school tbody tr:nth-of-type(odd) {
    background-color: #eee;
}

/* ニュース */
.contents section .container {
    padding: 1em;
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
.fade-in {
    animation: fadeIn ease 4s;
    -webkit-animation: fadeIn ease 4s;
    -moz-animation: fadeIn ease 4s;
    -o-animation: fadeIn ease 4s;
    -ms-animation: fadeIn ease 4s;
}
.bottomtxt {
    position: absolute;
    top: 94%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* font-family: 'Noto Serif JP', serif !important; */
    color: #fff;
    background: #F08200;
    width: 97.5%;
    text-align: center;
}

/* 各スクール詳細 */
.school-information-div {
    padding: 1em;
    border: 2px solid #ccc;
    background: #fff;
    margin-bottom: 1em;
}
.caption-style {
    background-color: #6c9bd2;
    padding: 5px 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
    /* border: 1px solid #fff; */
    border-bottom: 0;
    font-size: 18px;
    margin-bottom: 0px;
}
.school-details {
    text-align: center;
}
.school-details th {
    padding: 0.5em;
    border: 1px solid #fff;
    font-weight: bold;
    background-color: #0062ac;
    color: #fff;
}
.school-details td {
    padding: 0.5em;
    border: 1px solid #fff;
    background-color: #d3def1;
}

/* 料金プラン */
.form-box {
    padding: 1em;
}
.form-box .step {
    display: flex;
    justify-content: space-evenly;
}
.step-div-two-ul {
    border: 3px solid green;
    border-radius: 15px;
    padding: 7%;
    width: 50%;
    margin: 0% 25%;
    list-style: none;
}

/* 本日のスケジュール */
.form-box p {
    margin-bottom: 0.2em;
}

/* 問合せ */
.section-contact {
    padding: 1em;
}
.section-contact p {
    font-size: 0.8em;
}
p .required {
    display: inline-block;
    font-size: .69rem;
    background: #ef3333;
    color: #fff;
    padding: 0 4px;
    text-align: center;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 700;
}
form .required {
    display: inline-block;
    font-size: .69rem;
    background: #ef3333;
    color: #fff;
    padding: 0 4px;
    text-align: center;
    border-radius: 3px;
    margin-left: 5px;
    font-weight: 700;
}
.section-contact .form-box {
    font-size: 0.8em;
}
.cont-grid {
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 1em;
}
.cont-grid input,select {
    font-size: 1em;
}
.cont-grid2 {
    display: grid;
    grid-template-columns: .9fr 1.5fr 2.1fr;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}
.cont-grid2 input,select {
    font-size: 1em;
}
.cont-grid3 {
    display: grid;
    grid-template-columns: 1.2fr 2.7fr 2.1fr;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}
.cont-grid3 input,select {
    font-size: 1em;
}
.text.cont-wid {
  width: 100%;       /* 親要素いっぱいに広がる */
  max-width: 600px;  /* 最大幅を制限（任意） */
  box-sizing: border-box; /* padding や border を幅に含める */
}
.addr.cont-wid {
  width: 100%;       /* 親要素いっぱいに広がる */
  max-width: 600px;  /* 最大幅を制限（任意） */
  box-sizing: border-box; /* padding や border を幅に含める */
}
.mail.cont-wid {
  width: 100%;       /* 親要素いっぱいに広がる */
  max-width: 600px;  /* 最大幅を制限（任意） */
  box-sizing: border-box; /* padding や border を幅に含める */
}
.submit-box {
    display: flex;
    justify-content: space-evenly;
    padding-top: 2em;
}
.contents .main-contents .btn {
    display: block;
    margin-bottom: 2em;
    padding: 0.5em 1em;
    border: 0;
    line-height: 2em;
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    border-radius: 0 !important;
    color: #fff;
    background: #f08201;
}

/* プライバシーポリシー */







