@charset "UTF-8";
/*
Theme Name: You make
Description:
Theme URL:
Author:
Author URL:
Version:
License:
License URL:
*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

img {
  display: block;
}

a[href^="tel:"] {
  pointer-events: none;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --base_color: #3f51b5;
  --main_color: #ffffff;
  --accent_color: #ffe700;
  --header_footer: rgb(15 49 149 / 0.9);
  --text_shadow: rgb(15 49 149);
  --logo: #ffffff;
  --bg_color_sub: #f0f8ff;
  --text_border: #ffe700;
  --border_under: #3f51b5;
  --box_line: #ffe700;
  --button: #ff3c3c;
  --emphasis_color: #fc9400;
}

/*=================================================
ブレイクポイントによる表示/非表示
=================================================*/
.under_pc_sm {
  display: none;
}

.hidden_pc_sm {
  display: block;
}

.under_air {
  display: none;
}

.under_sp {
  display: none;
}

.under_sp_none {
  display: block;
}

.under_sp_none--ib {
  display: inline-block;
}

/*=================================================
共通パーツ
=================================================*/
.layout_margin-inline--auto {
  margin-inline: auto;
}

.btn_primary_wrapper {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 150px;
}

.btn_primary {
  display: block;
  width: fit-content;
  border-radius: 10px;
  padding: 20px 50px;
  background-color: var(--white);
  border-right: 5px solid var(--base_color);
  border-bottom: 5px solid var(--base_color);
  color: var(--base_color);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
  transform-origin: top right;
  position: relative;
}

.btn_primary:hover {
  opacity: 1;
  border: 0;
}

.btn_more_wrapper {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 100px;
}

.btn_more {
  display: block;
  width: fit-content;
  padding: 20px 50px;
  background-color: var(--white);
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
}

.btn_more_blog {
  display: block;
  width: fit-content;
  padding: 12px 16px;
  background-color: var(--base_color);
  color: var(--white);
  font-size: 1.6rem;
  text-align: center;
  transition: all 0.2s;
}

.cta_btn {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  background-color: var(--button);
  border: 3px solid var(--button);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 50px;
  border-radius: 9999px;
}

.cta_btn:hover {
  opacity: 1;
  color: var(--button);
  background-color: var(--white);
}

/*=================================================
ヘッダー
=================================================*/
.header {
  background-color: var(--header_footer);
  display: flex;
  width: 100%;
  padding-left: 30px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo_main {
  display: block;
  width: fit-content;
  font-family: "Meiryo UI", "メイリオ", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: var(--logo);
  font-size: 3.6rem;
  font-weight: 500;
  transition: all 0.3s;
  transform-origin: center center;
}

.logo_main:hover {
  opacity: 1;
  text-shadow: 4px 4px 2px var(--black);
}

.logo_sub {
  color: var(--accent_color);
  font-size: 1.2rem;
}

#hamburger_menu.open {
  opacity: 1;
  pointer-events: auto;
}

.header_menu {
  display: flex;
  gap: 16px;
}

.header_menu_list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.header_menu_item + .header_menu_item {
  border-top: none;
}

.header_menu_link {
  color: var(--white);
  font-size: 1.6rem;
  position: relative;
}

.header_menu_link:hover {
  opacity: 1;
}

.header_menu_link::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-bottom: 2px solid var(--accent_color);
  transition: all 0.3s;
  transform: scale(0);
  transform-origin: bottom center;
}

.header_menu_link:hover::after {
  transform: scale(1);
}

.cta_btn_header {
  font-size: 1.6rem;
  height: 70px;
  padding: 10px 15px 10px 30px;
  border-radius: 9999px 0 0 9999px;
  border-right: none;
}

/* ハンバーガーボタン */
#hamburger_btn {
  width: 50px;
  height: 50px;
  position: relative;
  display: none;
}

.hamburger_line_top,
.hamburger_line_center,
.hamburger_line_bottom {
  display: block;
  width: 35px;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  left: calc(50% - 16.5px);
  transition: all 0.3s;
}

.hamburger_line_top {
  top: calc(50% - 9px);
}

.hamburger_line_center {
  top: 50%;
}

.hamburger_line_bottom {
  top: calc(50% + 9px);
}

/* ボタン押され、クラスopenを付加した時 */
.open > .hamburger_line_top {
  transform: translate(0, 9px) rotate(45deg);
}

.open > .hamburger_line_center {
  display: none;
}

.open > .hamburger_line_bottom {
  transform: translate(0, -9px) rotate(-45deg);
}

/*=================================================
メイン
=================================================*/
/* main */
.main {
  margin-top: 70px;
}

/* section共通 */
.section_container {
  padding-inline: 15px;
}

.container {
  max-width: 1000px;
  margin-inline: auto;
}

/* fv */
.fv_area {
  width: 100%;
  aspect-ratio: 1280/600;
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border: 3px solid red;
}

.fv {
  background: url(./assets/img/fv_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  aspect-ratio: 1280/600;
  position: relative;
}

.fv_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--white) 0, transparent 80%);
}

.fv_title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 30%;
  left: 5%;
}

.fv_title_main {
  color: var(--emphasis_color);
  text-shadow: 5px 5px 5px var(--black);
  font-style: italic;
  font-size: clamp(3.6rem, 4vw, 5.2rem);
  line-height: 1.5;
}

.fv_title_sub {
  color: var(--black);
  text-shadow: 5px 5px 5px #c0c0c0;
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  line-height: 1.5;
}

/* problem */
.problem_main {
  background-color: var(--bg_color_sub);
  padding-top: 60px;
  padding-bottom: 60px;
}

.problem_list {
  list-style: none;
  width: 90%;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 32px;
}

.problem_item {
  background-color: var(--white);
  width: 47%;
}

.problem_title {
  font-family: "Meiryo UI", "メイリオ", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  padding: 20px 40px;
  display: flex;
  width: 80%;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid var(--border_under);
}

.problemContent_list {
  list-style: disc;
  list-style-position: inside;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problemContent_item {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* attempt */
.attempt {
  background-color: var(--base_color);
  padding: 60px 15px;
}

.attempt_title {
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.attempt_title_main {
  font-size: 4.2rem;
  font-weight: 700;
}

.attempt_title_sub {
  font-size: 1.8rem;
}

.attempt_child_wrapper {
  margin-top: 60px;
  display: flex;
  margin-inline: auto;
  justify-content: space-between;
}

.attempt_child {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.attempt_content {
  margin-top: 40px;
  width: 80%;
  padding: 20px 15px;
  border: 2px solid var(--box_line);
  border-radius: 10px;
  position: relative;
}

.attempt_connect_line {
  position: absolute;
  width: 15%;
  height: 90px;
  border-left: 2px solid var(--box_line);
  border-bottom: 2px solid var(--box_line);
  border-radius: 0 0 0 10px;
  top: -25px;
  left: -15%;
}

.attempt_child_title {
  font-size: 2.6rem;
  font-weight: 700;
  width: 100%;
  color: var(--accent_color);
  font-style: italic;
}

.content_txt {
  font-size: 1.8rem;
  line-height: 1.5;
}

.attempt_child_txt {
  color: var(--white);
}

.features {
  margin-left: 20px;
}

.feature {
  margin-top: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

/* programming_school  career_planning */
.section_general {
  padding: 60px 15px;
  background-color: var(--bg_color_sub);
}

.section_title {
  font-size: 4.2rem;
  font-weight: 700;
}

.contents_title {
  color: var(--emphasis_color);
  font-style: italic;
}

.section_title_sub {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.contents_title_sub {
  margin-top: 24px;
  margin-left: 24px;
  width: fit-content;
}

.text_line {
  background: linear-gradient(transparent 70%, var(--accent_color) 0%);
}

.contents_inner {
  margin-inline: auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contents_item_layout {
  display: flex;
  justify-content: space-between;
}

.contents_item_first {
  width: 100%;
}

.contents_item_first_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/***画像を入れるパターンのcss
.contents_img_wrapper {
  width: 47%;

  @include breakpoint_max("air") {
    width: 80%;
    margin-inline: auto;
    padding-bottom: 20px;
  }
}

.contents_img2_wrapper {
  margin-top: 80px;

  @include breakpoint_max("air") {
    margin-top: 0;
  }
}

.contents_img {
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 3px solid red;
}

***************************/
.section_child_title {
  font-size: 2.6rem;
}

.contents_child_txt {
  margin-top: 20px;
}

.contents_btn_layout {
  margin-inline: auto;
}

/*=================================================
blog
=================================================*/
.blog {
  padding: 80px 15px;
  background-color: var(--base_color);
}

.blog_title {
  color: var(--main_color);
  text-align: center;
}

.blog_list {
  margin-top: 60px;
  list-style: none;
  border-radius: 10px;
  background-color: var(--main_color);
  padding: 15px;
}

.blog_item + .blog_item {
  border-top: 1px solid gray;
}

.blog_link {
  color: var(--black);
}

.blog-item_inner {
  display: flex;
  padding: 16px;
  flex-direction: column;
}

.blog-item_title {
  font-size: 2.8rem;
  font-weight: 500;
}

.blog-item_date {
  margin-top: 8px;
  font-size: 1.4rem;
}

.blog-item_content {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

/*=================================================
フッター
=================================================*/
.footer {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 10px;
  padding-inline: 10%;
  background-color: var(--header_footer);
}

.footer_inner {
  display: flex;
  justify-content: space-between;
}

.footer_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_br {
  display: none;
}

.footer_right {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_menu_list {
  margin-left: 30px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_menu_item {
  height: fit-content;
}

.footer_menu_link {
  color: var(--white);
  font-size: 1.6rem;
  position: relative;
}

.footer_menu_link:hover {
  opacity: 1;
}

.footer_menu_link::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-bottom: 2px solid var(--accent_color);
  transition: all 0.3s;
  transform: scale(0);
  transform-origin: bottom center;
}

.footer_menu_link:hover::after {
  transform: scale(1);
}

.cta_btn_footer {
  color: var(--white);
  font-weight: 700;
  font-size: 1.6rem;
}

.copy_right_wrapper {
  width: 100%;
  padding: 30px 10px 10px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy_right {
  color: var(--white);
  font-size: 1.2rem;
}

/*=================================================
下層ページ
=================================================*/
.under_fv {
  background-color: var(--base_color);
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.under_fv_title {
  color: var(--white);
  font-size: 5rem;
  font-weight: 700;
  text-shadow: 5px 5px 2px var(--black);
}

.under_section_title {
  text-align: center;
  padding-bottom: 24px;
}

.under_section_child_title {
  margin-top: 36px;
}

.under_section_child_txt {
  margin-top: 24px;
}

/* You makeとは？ */
.whats_youmake_inner {
  width: 90%;
}

.whats_youmake_child_title {
  color: var(--emphasis_color);
}

/* c#programming C#プログラミング教室 */
.c-sharp_exp_inner {
  width: 90%;
}

.c-sharp_exp_title {
  color: var(--emphasis_color);
}

.text-emphasis {
  color: #ff0000;
  font-size: 2.2rem;
  font-weight: 500;
}

.pass-fail_question_list {
  margin-top: 24px;
  margin-left: 24px;
}

.pass-fail_question_item {
  margin-top: 12px;
}

/* curriculum */
.curriculum_inner {
  width: 90%;
}

.skill_sheet {
  display: block;
  width: 100%;
  height: auto;
}

.curriculum_list_txt {
  font-size: 2.2rem;
  font-weight: 600;
}

.curriculum_list {
  margin-top: 24px;
  list-style-position: inside;
}

.curriculum_item {
  margin-top: 12px;
}

/*=================================================
お問い合わせページ
=================================================*/
.contact_inner {
  width: 90%;
  margin-inline: auto;
}

.contact_txt {
  text-align: center;
}

.btn_group_contact {
  padding-top: 0;
}

/*=================================================
コンタクトフォーム
=================================================*/
/* ラッパー */
#contact-form_main {
  margin-top: 60px;
  width: 90%;
  max-width: 800px;
  margin-inline: auto;
}

#contact-form_main.form-item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* コンタクトフォーム本体 */
.contact_form_wrapper {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.form_item_wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* エリア */
.form_item > p {
  width: 100%;
}

.wpcf7-date {
  max-width: 200px;
}

.wpcf7-email,
.wpcf7-text {
  width: 100%;
  max-width: 500px;
}

.wpcf7-textarea {
  width: 100%;
  height: 200px;
}

.wpcf7-textarea,
.wpcf7-text,
.wpcf7-date {
  border: 1px solid var(--black);
  padding: 10px 15px;
}

.form_item,
.form_item_appointment,
.form_item-textarea {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-direction: column;
  align-items: start;
}

.form_item,
.form_item-textarea {
  flex-direction: column;
}

.form_item-textarea > p {
  display: flex;
  justify-content: start;
  align-items: center;
}

p:has(.form_item_title) {
  display: flex;
  align-items: center;
}

.form_item_title {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.8rem;
  letter-spacing: 0.05em;
  display: flex;
  height: 35px;
  width: fit-content;
  padding-left: 8px;
  align-items: center;
  border-left: 5px solid var(--base_color);
  position: relative;
}

.required::after {
  content: "必須";
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: flex;
  background-color: red;
  width: 50px;
  height: 25px;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

.form_item_title_sub_message {
  margin-left: 8px;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.1rem;
  letter-spacing: 0.05em;
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-date {
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
}

.wpcf7-text::placeholder {
  color: gray;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
}

.form_item-textarea > p {
  width: 100%;
}

.form_item-textarea > p > span {
  display: flex;
  width: 100%;
}

/* 送信ボタン */
.wpcf7-submit {
  display: block;
  margin-top: 46px;
  margin-inline: auto;
  background-color: var(--black);
  border: none;
  max-width: 400px;
  width: 100%;
  height: 57.5px;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  cursor: pointer;
}

.wpcf7-submit:hover {
  background-color: var(--base_color);
}

/*=================================================
footer手前、ボタン群
=================================================*/
/* ボタン群 */
.btn_group_inner {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}

.contact_btn_btn-group {
  font-size: 1.8rem;
  max-width: 500px;
  width: 100%;
}

.btn_group_under {
  display: flex;
  width: 100%;
  margin-inline: auto;
  justify-content: space-between;
  gap: 36px;
}

.btn_primary_wrapper_btn-group {
  height: 100px;
}

.btn_btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}

.btn_btn-group::after {
  content: "⇒";
  position: absolute;
  right: 30px;
}

/*=================================================
blogs 運営ブログ一覧ページ
=================================================*/
.blog_archives {
  background-color: var(--bg_color_sub);
}

.blogs_list {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog_card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 16px;
}

.blog-card_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card_right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card_link {
  margin-top: 12px;
  margin-left: auto;
}

.blog-card_date {
  font-size: 1.4rem;
}

.blog-card_title {
  font-size: 2.4rem;
  font-weight:700;
}

.blog-card_content {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* ページネーション */
#posts_pagination {
  width: 100%;
  margin-top: 48px;
}

.pagination {
  margin-inline: auto;
  width: fit-content;
}

#posts_pagination ul.page-numbers {
  list-style: none;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#posts_pagination .prev,
#posts_pagination .next {
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--main_color);
  color: var(--base_color);
}

#posts_pagination a.page-numbers,
#posts_pagination .ellipsis {
  color: var(--base_color);
  font-family: "Meiryo UI", "メイリオ", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--main_color);
  color: var(--base_color);
}

#posts_pagination .current {
  color: var(--white);
  font-family: "Meiryo UI", "メイリオ", "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: var(--base_color);
  color: var(--main_color);
  justify-content: center;
  align-items: center;
}

/*=================================================
単一投稿ページ
=================================================*/
.blog_single {
  padding: 60px 15px;
}

.blog_single_container {
  max-width: 1000px;
  width: 90%;
  margin-inline: auto;
}

.blog_single_wrapper {
  display: flex;
  flex-direction: column;
}

.blog_single_title {
  font-size: 3.6rem;
  font-weight: 700;
}

.blog_single_date {
  font-size: 1.4rem;
  margin-top: 12px;
}

.blog_single_content {
  line-height: 1.5;
  margin-top: 40px;
}

.paginations_wrapper {
  margin-top: 60px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  width: 70%;
}

.previous_post,
.next_post {
  display: block;
  padding: 12px;
  background-color: var(--base_color);
  font-size: 1.6rem;
}

.previous_post a,
.next_post a {
  color: #ffffff;
}

@media screen and (max-width: 1536px) {
  /* PCファースト lg */
}

@media screen and (max-width: 1366px) {
  /* PCファースト md */
}

@media screen and (max-width: 1200px) {
  /* PCファースト menu */
}

@media screen and (max-width: 1060px) {
  /* PCファースト pc_sm */
  .under_pc_sm {
    display: block;
  }
  .hidden_pc_sm {
    display: none;
  }
  .header {
    padding: 8px 30px;
  }
  .cta_btn_header {
    display: none;
  }
  .problemContent_item {
    font-size: 1.4rem;
  }
  .footer_br {
    display: block;
  }
  .footer_right {
    padding-right: 25%;
  }
  .cta_btn_footer {
    font-size: 1.4rem;
    text-align: center;
    height: 70px;
    padding: 10px 15px 10px 30px;
    border-radius: 9999px 0 0 9999px;
    position: fixed;
    right: 0;
    bottom: 60px;
    border-right: none;
  }
}

@media screen and (max-width: 950px) {
  /* PCファースト tab_lg */
}

@media screen and (max-width: 820px) {
  /* PCファースト air */
  .under_air {
    display: block;
  }
  .logo_sub {
    font-size: 1rem;
  }
  .main {
    margin-top: 80px;
  }
  .fv_area {
    top: 80px;
  }
  .problem_title {
    font-size: 1.8rem;
  }
  .problemContent_list {
    padding: 20px 15px 20px 35px;
  }
  .attempt_title_main {
    font-size: 3.6rem;
  }
  .attempt_title_sub {
    font-size: 1.6rem;
  }
  .attempt_child_wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .attempt_child {
    width: 85%;
    margin-inline: auto;
  }
  .attempt_content {
    width: 80%;
  }
  .attempt_connect_line {
    width: 15%;
    left: -15%;
  }
  .contents_inner {
    width: 90%;
  }
  .contents_item_layout {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .contents_item_first_wrapper {
    width: 100%;
  }
  .footer_menu_list {
    margin-left: 0;
  }
  .form_item_appointment {
    flex-direction: column;
  }
  .form_item-textarea > p {
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .btn_group_under {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .btn_btn-group {
    width: 100%;
  }
  #posts_pagination {
    margin-top: 20px;
  }
  #posts_pagination ul.page-numbers {
    gap: 24px;
  }
  #posts_pagination .prev,
  #posts_pagination .next {
    font-size: 1.6rem;
    width: 30px;
    height: 30px;
  }
  #posts_pagination a.page-numbers,
  #posts_pagination .ellipsis {
    font-size: 2rem;
    width: 30px;
    height: 30px;
  }
  #posts_pagination .current {
    font-size: 2rem;
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 650px) {
  /* PCファースト sp */
  .under_sp {
    display: block;
  }
  .under_sp_none {
    display: none;
  }
  .under_sp_none--ib {
    display: none;
  }
  .btn_primary {
    padding: 20px 30px;
  }
  .btn_more {
    padding: 20px 30px;
  }
  .btn_more_blog {
    padding: 8px 12px;
    font-size: 1.4rem;
  }
  .logo_main {
    font-size: 2.8rem;
  }
  .logo_sub_header {
    display: none;
  }
  #hamburger_menu {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .header_menu {
    position: fixed;
    width: 100%;
    background-color: var(--header_footer);
    height: calc(100dvh - 48px);
    flex-direction: column;
    align-items: center;
    gap: 12px;
    top: 66px;
    left: 0;
    right: 0;
  }
  .header_menu_list {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  .header_menu_item {
    width: 100%;
    height: 50px;
    border-top: 1px solid var(--accent_color);
    border-bottom: 1px solid var(--accent_color);
  }
  .header_menu_link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header_menu_link:hover::after {
    transform: scale(0);
  }
  .cta_btn_header {
    display: flex;
    height: 50px;
    width: fit-content;
    padding: 0 50px;
    border: 3px solid var(--button);
    border-radius: 9999px;
  }
  #hamburger_btn {
    display: block;
  }
  .main {
    margin-top: 66px;
  }
  .fv_area {
    aspect-ratio: 375/375;
    top: 66px;
  }
  .fv {
    height: 375px;
    width: 100%;
    background-position: 60%;
  }
  .fv_title {
    top: 10%;
  }
  .problem_list {
    flex-direction: column;
  }
  .problem_item {
    width: 100%;
  }
  .attempt_child {
    width: 100%;
  }
  .section_title {
    font-size: 3.2rem;
  }
  .section_title_sub {
    font-size: 1.8rem;
  }
  .footer_inner {
    flex-direction: column;
  }
  .footer_br {
    display: none;
  }
  .footer_right {
    padding-right: 0;
  }
  .footer_menu_list {
    display: none;
  }
  .footer_menu_link:hover::after {
    transform: scale(0);
  }
  .cta_btn_footer {
    position: static;
    height: 50px;
    padding: 10px 30px 10px 30px;
    border-radius: 9999px;
    margin-inline: auto;
    border: 3px solid var(--button);
  }
  .under_fv {
    height: 200px;
  }
  .under_fv_title {
    font-size: 2.8rem;
  }
  .curriculum_list_txt {
    font-size: 1.8rem;
  }
  .btn_btn-group::after {
    right: 15px;
  }
  .blog_single_container {
    width: 100%;
  }
  .blog_single_title {
    font-size: 2.4rem;
  }
  .blog_single_content {
    margin-top: 20px;
  }
  .paginations_wrapper {
    margin-top: 40px;
    width: 80%;
  }
  .previous_post,
  .next_post {
    padding: 8px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px) {
  /* PCファースト small */
}

@media (any-hover: none) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}
/*# sourceMappingURL=style.css.map */