@charset "UTF-8";
/* ========================================
   リセット + ベーススタイル統一用 CSS
   ======================================== */

/* ========== 共通レイアウト用テンプレート ========== */

/*  全体リセット・基本設定 */
/* ベーススタイル + 初期調整 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-width: 375px;
  /* 最小スマホ幅 */
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: #000;
  font-size: 100%;
  /* line-height: 1.5; */
  /* 必要に応じて */
  -webkit-text-size-adjust: 100%;
  /* モバイルでのズーム防止 */
}

/* 2. 画像・リスト・リンク */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

li {
  list-style: none;
}

ul {
  overflow-wrap: break-word;
  /* 最新記述 */
  word-wrap: break-word;
  /* 互換性あり記述 */
}

/* 3. リンク・ボタン */
a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
  background-color: transparent;
}

/* ========== 共通レイアウト用テンプレート ========== */

.main-content {
  padding-top: 80px;
  /* ←ヘッダーの高さに合わせて調整 */
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 80px;
  }
}


/* 汎用ラッパークラス：wrap */
/* 必要な場合 */
.wrap {
  max-width: 1200px;
  /* 基本の最大幅 */
  min-width: 375px;
  /* スマホの最小幅 */
  margin: 0 auto;
}

/* 拡張用 wrap（必要なセクションで個別指定）必要に応じて 現状未使用*/
.wrap_wide {
  max-width: 1400px;
  /* ワイド表示が必要なセクション用 必要に応じて 現状未使用*/
}

.wrap_narrow {
  max-width: 960px;
  /*コンパクト表示用 必要に応じて 現状未使用*/
}

/* コンテナクラス：container */
/* 使用中*/
.container {
  /* スマホ */
  padding: 30px 0 40px;
}

@media(min-width: 768px) {

  /* タブ 使用中*/
  .container {
    padding: 30px 0 70px;
  }
}

@media(min-width: 1024px) {

  /* PC 使用中*/
  .container {
    padding: 30px 0 90px;
  }
}

/* セクション共通余白 不要？*/
/* section {
  padding: 20px 0;
} */

/* セクション見出し 使用*/
.section-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

/*  レスポンシブ対応 使用*/
@media (min-width: 768px) {
  .wrap {
    padding: 0 2rem;
  }
}

/* 
Noto Sans font-weight
=================================== */

/* .weight100	 {
	font-weight:100
	} 不要？の場合削除*/

/* .weight300	 {
	font-weight:300
	} 不要？の場合削除**/

.weight400 {
  font-weight: 400
}

.weight500 {
  font-weight: 500
}

.weight600 {
  font-weight: 600
}

.weight700 {
  font-weight: 700
}

/* .weight900	 {
	font-weight:900
	} 不要？*/

/*-------------------------------------------
Header スマホサイズ 共通　ヘッダー部　ハンバーガー
-------------------------------------------*/
/* ※vw vh z-index等サイズ値は仮置き */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-white);
  max-width: 1920px;
}

.head_block {
  height: 60px;
  padding: 1.5vh 5vw 0;
}

.logo_img {
  max-width: 240px;
  /* 仮設定 */
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 60px;
  /* 55pxから60pxへ変更 */
  height: 60px;
  cursor: pointer;
  z-index: 300;
  background: var(--bg-color-main);
}

.hamburger__line {
  position: absolute;
  width: 24px;
  height: 1px;
  left: 16px;
  background-color: var(--bg-white);
  transition: all 0.5s;
}

.hamburger__line_1 {
  top: 22px;
}

.hamburger__line_2 {
  top: 28px;
}

.hamburger__line_3 {
  top: 34px;
}

.hamburger.open .hamburger__line_1 {
  transform: rotate(-45deg);
  top: 28px;
}

.hamburger.open .hamburger__line_2 {
  opacity: 0;
  /* 真ん中の線を消す */
}

.hamburger.open .hamburger__line_3 {
  transform: rotate(45deg);
  top: 28px;
}

/* 
nav_group(ナビ) ハンバーガーClickメニュー（footerと同じ）
=================================== */
.nav_group {
  position: absolute;
  top: 60px;
  /* ヘッダーの高さに合わせる */
  left: 0;
  width: 100%;
  height: 80vh;
  background-color: var(--bg-white);
  opacity: 0;
  /* 初期状態透明 */
  visibility: hidden;
  /* 初期状態非表示 */
  transform: translateY(-20px);
  /* 少し上に配置 */
  transition: transform 0.6s ease, opacity 0.6s ease-in-out, visibility 0.6s ease;
  /* 動きを滑らかに */
  z-index: 700;
}

/* 開いたときの動き */
.open .nav_group {
  visibility: visible;
  /* 表示する */
  opacity: 1;
  /* 徐々に表示 */
  transform: translateY(0);
  /* 自然に展開 */
  height: auto;
  /* 必要なら高さを指定 */
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* ※後ほど調整 */
  z-index: 600;
  background-color: #000;
  /* 後ほど色調整 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

.header_block,
.footer_block {
  padding: 30px 0 25px;
  background: var(--bg-color-support1);
}

.header_wrap,
.footer_wrap {
  margin: 0 15px;
}

.header_upper_box,
.footer_upper_box {
  margin-bottom: 25px;
}

.header_container,
.footer_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}

.header_white,
.footer_white {
  width: 300px;
  height: 50px;
}

.header_white {
  margin-left: auto;
}

.header_white a,
.footer_white a {
  display: block;
}

.header_white img,
.footer_white img {
  width: 66vw;
}

.sp_h_area_box,
.sp_f_area_box {
  border-top: var(--border-width) var(--border-style) var(--border-color1);
  margin: 0;
  width: 100vw;
  position: relative;
  left: -15px;
  padding-left: 15px;
}

.spt_title {
  display: flex;
  padding-left: 15px;
}

.spt_title img {
  width: 5%;
  height: 5%;
  padding-top: 13px;
  margin-right: 10px;
}

.h_toggle_icon {
  width: 20px;
  height: 20px;
  border: var(--border-style) var(--border-width) var(--border-white);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 26px;
}

.h_toggle_icon::before,
.h_toggle_icon::after {
  content: "";
  position: absolute;
  background-color: var(--bg-white);
  transition: 0.3s ease;
}

.h_toggle_icon,
.toggle_icon,
.h_toggle_btn {
  font-size: 16px;
}

/* 横線 */
.h_toggle_icon::before {
  width: 10px;
  height: 1px;
}

/* 縦線（⊕の状態） */
.h_toggle_icon::after {
  width: 1px;
  height: 10px;
}

/* 「⊕」→「⊖」の切り替え */
.active.h_toggle_icon::after {
  display: none;
  /* 縦線を消して「⊖」に変更 */
}

.h_dropdown_content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* 開いたとき */
.open .h_dropdown_content {
  max-height: 500px;
  /* 適切な高さに調整 */
  opacity: 1;
}

/* トグルアイコン切り替え */
.h_toggle_icon.active::after {
  display: none;
  /* 縦線を消して「⊖」に変更 */
}

.h_dropdown_item li,
.f_dropdown_item li {
  line-height: 2;
  min-height: 0px;
  font-size: 14px;
}

.h_dropdown_item li:nth-child(1),
.f_dropdown_item li:nth-child(1) {
  padding-top: 5px;
}

.h_dropdown_item li a,
.f_dropdown_item li a {
  color: var(--text-white);
}

.h_toggle_btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  padding-top: 10px;
}

.sns_box {
  margin-bottom: 10px;
}

.sns_box ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sns_box ul li {
  margin-right: 12px;
  width: calc(100% / 13);
}

.sns_box li:nth-child(6) {
  margin: 0;
}

.sns_box ul li a {
  display: block;
}

.sns_box li:nth-child(3) img {
  border-radius: 12px;
}

/* PCアイテム　非表示*/
.pc_nav,
.global_nav,
.pch_sns_box,
.pcf_sns_box,
.pc_nav_header,
.hc_contact,
.fc_contact {
  display: none;
}

/* footer PCアイテム　非表示*/
.pc_dropdown_title,
.pc_copyright,
.pc_nav_footer {
  display: none;
}

/* 
footer
=================================== */
.footer_block {
  padding: 30px 0 25px;
  background: var(--bg-color-support1);
}

.footer_wrap {
  margin: 0 15px;
}

.footer_upper_box {
  margin-bottom: 25px;
}

.footer_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1000px;
  margin: auto;
}

.footer_white {
  margin: 0 auto;
  width: 300px;
  height: 50px;
}

.footer_white a {
  display: block;
}

.sp_f_area_box {
  border-top: var(--border-width) var(--border-style) var(--border-color1);
  margin: 0;
  width: 100vw;
  position: relative;
  left: -15px;
  padding-left: 15px;
}

.f_dropdown_item li {
  line-height: 2;
  min-height: 0px;
  font-size: 14px;
}

.f_dropdown_item li:nth-child(1) {
  padding-top: 5px;
}

.f_dropdown_item li a {
  color: var(--text-white);
}

.toggle_btn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  padding-top: 10px;
  font-size: 16px;
}

.toggle_icon {
  /* 後ほど確認・h_toggle_iconと統合？ */
  width: 20px;
  height: 20px;
  border: var(--border-style) var(--border-width) var(--border-white);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  margin-right: 26px;
}

/* 初期状態（⊕） */
.toggle_icon::before,
.toggle_icon::after {
  /* 後ほど確認・ヘッダー部と統合？ */
  content: "";
  position: absolute;
  background-color: var(--bg-white);
  transition: 0.3s ease;
}

/* 横線 */
.toggle_icon::before {
  /* 後ほど確認ヘッダー部と統合？ */
  width: 10px;
  height: 1px;
}

/* 縦線（⊕の状態） */
.toggle_icon::after {
  /* 後ほど確認ヘッダー部と統合？ */
  width: 1px;
  height: 10px;
}

/* アイコン切り替え（⊕ → ⊖） */
.active.toggle_icon::after {
  display: none;
  /* 縦線を消して「⊖」に変更 */
}

/* フッターのトグルコンテンツ */
.dropdown_content {
  /* 後ほど確認後ヘッダーー部と統合？ */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* 開いたとき */
.open .dropdown_content {
  max-height: 500px;
  /* 適切な高さを指定 */
  opacity: 1;
}

.people_img {
  padding-top: 17px !important;
}

.sp_menu_list {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  border-bottom: var(--border-width) var(--border-style) var(--border-color1);
  margin: 10px -20px 0px;
}

.sp_menu_list li {
  flex-basis: 50%;
  max-width: 50%;
  border-top: var(--border-width) var(--border-style) var(--border-color1);
  border-right: var(--border-width) var(--border-style) var(--border-color1);
}

.sp_menu_list a {
  width: 100%;
  height: 100%;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 10px;
}

.en_btn {
  margin: 30px 0 0;
  text-align: center;
}

.en_btn a {
  display: inline-block;
  padding: 10px 0;
  border: var(--border-width) var(--border-style) var(--border-white);
  color: #fff;
  border-radius: 25px;
  width: 68vw;
}

footer {
  padding: 30px 0;
  background: var(--bg-color-support2);
}

.sp_footer_box {
  padding: 0 15px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

/* sp, Tablet (485px ~ 767px)*/
@media (min-width:485px) and (max-width:767px) {
  .logo {
    padding-top: 0.1vh;
    /* 後ほど調整 */
  }
}

/* -------------------------------------------- */
/* ▼タブレット用デザインとして付け足すデザイン *768~1023/
/* -------------------------------------------- */
@media (min-width: 768px) {

  .service_item_1,
  .contact_box,
  .pc_search_container,
  .sp_h_area_box,
  .sp_f_area_box,
  .sp_menu,
  .sp_footer_box,
  .sns_box,
  .spt_title {
    display: none;
  }

  .toggle_btn {
    /* タブレット以上トグル無効化 */
    display: none;
  }

  .pc_nav_header {
    display: none;
  }

  .toggle_icon {
    display: none;
  }

  #header {
    padding: 0 4vw 0;
    /* 後ほど確認 */
  }

  #header,
  .hamburger {
    height: 70px;
  }

  .head_block {
    height: 70px;
    padding: 0;
  }

  .head_logo {
    display: flex;
    height: 70px;
  }

  .head_logo img {
    padding: 0;
  }

  .logo {
    padding: 15px 0 7px;
    margin-right: auto;
    height: 70px;
  }

  .logo_img {
    max-width: 240px;
  }

  /* 
hamburger
=================================== */

  .hamburger {
    width: 55px;
  }

  .hamburger__line {
    width: 25px;
  }

  /* 
hamburger(ハンバーガーアイコン) span位置
=================================== */
  .hamburger__line_1 {
    top: 26px;
  }

  .hamburger__line_2 {
    top: 32px;
  }

  .hamburger__line_3 {
    top: 38px;
  }

  .open .hamburger__line_1 {
    transform: rotate(-45deg);
    top: 32px;
  }

  .open .hamburger__line_2 {
    opacity: 0;
  }

  .open .hamburger__line_3 {
    transform: rotate(45deg);
    top: 32px;
  }

  .nav_group {
    width: calc(100% - 55px);
    height: 45%;
  }

  .open .nav_group {
    top: 70px;
  }

  .header_block {
    padding: 60px 0 50px;
  }

  .header_wrap,
  .footer_wrap {
    margin: 0 5%;
  }

  .header_upper_box,
  .footer_upper_box {
    margin-bottom: 45px;
  }

  .h_info_box.f_info_box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .header_white,
  .footer_white {
    /* 仮*/
    width: 100%;
  }

  .header_white img,
  .footer_white img {
    width: 66vw;
  }

  .header_white a,
  .footer_white a {
    display: block;
  }

  .hc_contact,
  .pch_sns_box {
    display: block;
  }

  .hc_contact,
  .fc_contact {
    display: block;
    text-align: left;
    margin-bottom: 20px;
    color: #fff;
  }

  .hc_item1,
  .fc_item1 {
    display: inline-block;
    margin: -10px 0 10px 0;
  }

  .hc_item1::before {
    content: "";
    background-image: url(../img/index/footer_call_icon.png);
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 4px;
  }

  .hc_item2,
  .fc_item2 {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
  }

  .pch_sns_box,
  .pcf_sns_box {
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    color: var(--text-white);
  }

  .pch_sns_box ul,
  .pcf_sns_box ul {
    width: 100%;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
  }

  .pch_sns_box li,
  .pcf_sns_box li {
    margin-right: 12px;
    width: calc(100% / 9);
  }

  .pch_sns_box li:nth-child(3) img,
  .pcf_sns_box li:nth-child(3) img {
    border-radius: 15px;
  }

  .pch_sns_box li:nth-child(5),
  .pcf_sns_box li:nth-child(5) {
    margin: 0;
  }

  .pch_sns_box li:nth-child(3) img,
  .pcf_sns_box li:nth-child(3) img {
    border-radius: 7px;
  }

  .pch_sns_box a,
  .pcf_sns_box a {
    display: inline-block;
  }

  .pch_sns_box a,
  .pcf_sns_box a {
    display: inline-block;
    text-align: center;
  }

  .h_sns_icon,
  .f_sns_icon {
    margin-bottom: 20px;
  }

  .jp_en_button li {
    margin-right: 0;
  }

  .jp_en_button li:nth-child(2) {
    margin-left: 5px;
  }

  .jp_en_button li:nth-child(3) img {
    margin-left: -17px;
  }

  .jp_en_button img:first-child {
    border-radius: 15px;
  }

  .header_center_line,
  .footer_center_line {
    display: inline-block;
    width: 1px;
    height: 12px;
    border-left: var(--border-width) var(--border-style) var(--border-white);
    vertical-align: bottom;
  }

  .h_area_box,
  .f_area_box {
    display: block;
    width: 100%;
    border: none;
  }

  .h_dropdown_title.dropdown_title {
    display: block !important;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }

  .pc_dropdown_title {
    display: block !important;
    color: var(--text-white);
    margin-bottom: 8px;
  }

  .h_dropdown_content {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
  }

  /* 
hamburger(アイテム）※後ほど削除か確認
=================================== */
  .pc_nav {
    /* ※後ほど削除か確認 */
    display: block;
    color: var(--text-white);
  }

  .menu_inner {
    /* ※後ほど削除か確認 */
    margin: 0 5%;
    /* 仮 */
  }

  .pc_menu_box {
    /* ※後ほど削除か確認 */
    display: flex;
  }

  /* 
hamburger(アイテム）※後ほど削除か確認
=================================== */
  .global_nav {
    display: flex;
    align-items: center;
    font-size: 12px;
    padding: 10px 0;
    margin-left: auto;
    width: 50%;
    max-width: 374px;
    /* 仮 */
  }

  .global_nav img {
    width: 20%;
  }

  .global_nav img:first-child {
    width: 25%;
  }

  .global_nav img:last-child {
    width: 40%;
  }

  .head_nav_line {
    margin-right: 15px;
    width: 20%;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
  }

  .head_nav_line:first-child {
    font-size: 1em;
    /* 後ほど調整 */
    margin-right: 20px;
    /* 後ほど調整 */
  }

  .head_nav_line:last-child {
    width: 40%;
    padding: 0;
  }

  .help_item {
    padding-left: 5px;
  }

  .center_line {
    color: var(--line-color);
  }

  .first_line {
    font-size: 14px;
  }

  .first_line::before {
    content: "";
    background-image: url(../img/index/call.icon.png);
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 4px;
    vertical-align: middle;
  }

  .second_line {
    font-size: 10px;
    white-space: nowrap;
    margin-left: 17%;
    /*仮*/
  }

  /* 
footer *768~1023
=================================== */
  .footer_block {
    padding: 60px 0 50px;
  }

  .fc_item1 {
    display: inline-block;
    margin: -10px 0 10px 0;
    font-size: 18px;
  }

  .fc_item1::before {
    /* 後ほど統合か削除 */
    content: "";
    background-image: url(../img/index/footer_call_icon.png);
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 4px;
  }

  .fc_item2 {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 12px;
  }

  .fc_item2 {
    font-size: 14px;
  }

  .f_sns_icon {
    margin-bottom: 20px;
  }

  .jp_en_button li {
    /* 後ほど統合か削除 */
    margin-right: 0;
  }

  .jp_en_button li:nth-child(2) {
    /* 後ほど統合か削除 */
    margin-left: 5px;
  }

  .jp_en_button img:first-child {
    /* 後ほど統合か削除 */
    border-radius: 15px;
  }

  .jp_en_button li:nth-child(3) img {
    /* 後ほど統合か削除 */
    margin-left: -17px;
  }

  .f_area_box {
    display: block;
    width: 100%;
    border: none;
  }

  .dropdown_content {
    display: block !important;
    max-height: none !important;
    opacity: 1 !important;
  }

  footer {
    padding: 30px 0 35px;
  }

  .pc_nav_footer {
    display: block;
  }

  .footer_box {
    padding: 0 15px;
  }

  .footer_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .footer_menu li {
    position: relative;
  }

  .footer_menu li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 60%;
    /* 高さ調整 */
    background-color: #fff;
    transform: translateY(-50%);
  }

  .footer_menu li:last-child::after {
    content: none;
  }

  .footer_menu a {
    padding: 0 20px;
    color: #fff;
  }

  .pc_copyright {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #fff;
    opacity: .8;
  }

}

@media (min-width: 768px) and (max-width: 1023px) {

  /* ハンバーガーメニュー*/
  .header_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3列構成 */
    grid-template-rows: auto auto;
    /* 2行 */
    gap: 30px;
    /* 20pxから一時的に変更 */
    max-width: 1000px;
    margin: auto;
    align-items: start;
  }

  .h_info_box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  /* 上段左 */
  .header_domestic {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .header_overseas {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .header_genre {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .header_category {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer_container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* 3列構成 */
    grid-template-rows: auto auto;
    /* 2行 */
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    align-items: start;
  }

  .f_info_box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  /* 上段左 */
  .footer_domestic {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .footer_overseas {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .footer_genre {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .footer_category {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
}

/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン *1024~ / 
/* ------------------------------------ */
@media (min-width: 1024px) {

  .sp_search_container,
  .service_item_1 {
    display: none;
  }

  .head_block {
    height: 70px;
    padding: 0;
  }

  .head_logo .pc_nav {
    display: block;
  }

  .logo {
    margin-right: auto;
  }

  .logo_img {
    width: 68vw;
    max-width: 255px;
  }

  .nav_group {
    width: calc(100% - 55px);
    height: 65%;
  }

  .header_upper_box,
  .footer_upper_box {
    display: flex;
  }

  .header_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5列レイアウト */
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .header_white,
  .footer_white {
    width: 100%;
  }

  .h_area_box {
    margin-left: 20px;
  }

  .header_domestic {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  /* ハンバーガーメニュー*/
  .header_overseas {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .header_genre {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .header_category {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .sns_box {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
  }

  /* SNSアイコン右端*/

  .open .black-bg {
    background: var(--bg-color-support1);
    /* 仮 */
  }

  .pc_search_container {
    padding: 20px 10px 20px 0;
    margin-left: auto;
  }

  /* search-form（PC以上 header検索窓部分） */
  .search_form_3 {
    width: 240px;
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 1px solid #777;
    border-radius: 40px;
  }

  .search_form_3 input {
    width: 250px;
    height: 45px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
  }

  .search_form_3 input::placeholder {
    color: #777;
  }

  .search_form_3 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: transparent;
    cursor: pointer;
  }

  .search_form_3 button::after {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23777777'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
  }

  /* （↑ PC以上 header検索窓部分 ここまで）*/

  .global_nav {
    margin-left: 2%;
    width: 30%;
    padding: 10px 30px 10px 0;
    min-width: 390px;
  }

  .head_nav_line {
    margin-right: 20px;
    display: inline-block;
  }

  .head_nav_line:last-child {
    text-align: left;
    margin-left: 5%;
  }

  .first_line {
    font-size: clamp(0.938rem, 0.474rem + 0.72vw, 1.125rem);
    /* 仮置き　変更するかも？ */
    white-space: nowrap;
  }

  .first_line::before {
    width: 20px;
    height: 20px;
  }

  /* 
footer *1024~
=================================== */

  .footer_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5列レイアウト */
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }

  .footer_domestic {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .footer_overseas {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .footer_genre {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .footer_category {
    grid-column: 5 / 6;
    grid-row: 1 / 2;
  }

  .sns_box {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .f_area_box {
    margin-left: 50px;
    /*仮置き*/
  }


  .footer_white {
    width: 100%;
    margin: 0 auto;
  }

  /* btn-primaryの色を#01B5B4で上書き */
  .btn-primary {
    background-color: #01B5B4 !important;
    border-color: #01B5B4 !important;
  }

  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary:active:focus,
  .btn-primary:active:hover {
    background-color: #019695 !important;
    /* 好みで濃く */
    border-color: #019695 !important;
  }


  /* footer icon for youtube */
  .sns_youtube_center {
    text-align: center;
    margin: 20px 0;
  }

  .sns_youtube_center img {
    width: 80px;
    height: auto;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
  }

  .required-mark {
    display: inline-block;
    width: 40px;
    height: 20px;
    line-height: 20px;
    vertical-align: middle;
    margin-left: 8px;
    background: url('data:image/svg+xml;utf8,<svg width="40" height="20" viewBox="0 0 40 20" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="40" height="20" rx="8" fill="%23E00"/><text x="20" y="14" text-anchor="middle" font-size="13" font-family="sans-serif" fill="white" font-weight="bold">%E5%BF%85%E9%A0%88</text></svg>') no-repeat center center;
    background-size: contain;
    color: transparent;
    /* テキストを見えなくする */
    font-size: 0;
  }
  
.text-primary
  {
    color: #01B5B4;;
    /* テキストの色を変える */
  }
}