/**
 * File: base.css
 * Usage: 全ページ共通のスタイルを定義します。レイアウト、モジュールなど。
 * Example: ly_header, ly_footer, el_btn, el_gradientGold, el_subpTtl, el_normalTtl
*/

@charset "UTF-8";

/* ================================================  
 リセットの記述
================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================================================  
 ログイン時に出るWordPress管理画面のツールバーを非表示
================================================ */
#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

/* ================================================  
 フォントの読み込み
================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ================================================  
 スタイルの適用(モバイルファーストで記述)
================================================ */
body {
  background-color: #fff;
  color: #333;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'NotoSansJp', sans-serif;
  overscroll-behavior: none;
  letter-spacing: 0.05em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
}

h4 {
  font-size: 1.12em;
}

.clearfix::after {
  clear: both;
}

li {
  list-style: none;
}

/* メディアクエリ用の表示・非表示 */
.sm_only {
  display: block !important;
}

.md_only,
.lg_only {
  display: none !important;
}

/* ================================================  
  レイアウト
================================================ */
/* 全体のレイアウト */
.ly_cont {
  padding-inline: 20px;
}

.bl_secBgBlue {
  color: #fff;
  position: relative;
  background: url(../img/top/bg-blue.webp) no-repeat center/cover;
}

.bl_secBgBlue::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #086dcd;
  opacity: 0.4;
  z-index: 0;
}

/* ヘッダー */
.ly_header {
  position: sticky;
  top: 10px;
  width: calc(100% - 20px);
  margin-inline: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  background: #ffffff;
  z-index: 1000;
  padding-inline: 10px;
}

/* フッター */
.ly_footer {
  background: #20405c;
  color: white;
  padding: 40px 20px 180px;
  position: relative;
  overflow: clip;
}

.bl_footer_cont strong {
  font-weight: 700;
  font-size: 24px;
  line-height: 60px;
  letter-spacing: 0.1em;
}

.bl_footer_cont p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}

.bl_footer_links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 32px;
}

.bl_footer_links a {
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  position: relative;
}

.bl_footer_links a:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 16px;
  background: #fff;
  display: inline-block;
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
}

.bl_footer_copyright {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.bl_footer_copyright svg {
  width: 100vw;
  height: auto;
}

.bl_footer_title {
  margin: 0;
  color: #2C9FCA;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
}

.bl_footer_title_last {
  margin: 20px 0 0 0;
}

.bl_footer_row {
  width: 100%;
  max-width: 800px;
  margin: 0 0 0 auto;
}

.bl_footer_col {
  margin: 0 0 40px 0;
}

.bl_footer_col:last-child {
  margin: 0;
}

.bl_footer_list {
  display: flex;
  flex-wrap: wrap;
}

.bl_footer_item {}

.bl_footer_item a {
  font-size: 14px;
}

.bl_footer_item::after {
  content: '｜';
  margin: 0 10px;
}

.bl_footer_item:last-child::after {
  content: '';
  margin: 0;
}

/* ================================================  
 ブロックモジュール
================================================ */
/* ヘッダー */
.bl_headerCont {
  max-height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_header_logo {
  height: clamp(3.125rem, 2.2321rem + 4.4643vw, 6.25rem);
  max-height: 100%;
  width: auto;
}

.bl_header_logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.bl_header_nav {
  display: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05em;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  flex-grow: 1;
}

.bl_header_btns {
  display: none;
}

.bl_header_nav_links {
  display: flex;
  gap: 15px;
  scroll-margin-top: 40px;
}

.bl_header_nav_links a.el_linkToTop,
.bl_nav_ul_li .el_linkToTop {
  background: linear-gradient(180deg,
      rgba(56, 147, 235, 1) 0%,
      rgba(6, 94, 178, 1) 100%);
  display: block;
  padding: 4px 10px;
  color: #fff;
}

.bl_header_nav_links a {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.bl_header_nav_links a:hover {
  text-decoration: underline;
}

.bl_header_nav_links a:not(:last-child)::after {
  width: 1px;
  height: 16px;
  background: #086dcd;
  content: '';
  display: inline-block;
  margin-left: 15px;
}

/* 投稿 */
.bl_post {
  margin-block: 80px;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bl_postBack {
  margin-top: 80px;
}

.bl_postContent a {
  color: #086dcd;
  text-decoration: underline;
}

/* ================================================  
  エレメントモジュール
================================================ */
/* ボタン */
.el_btn {
  font-family: 'NotoSerifJP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 10px;
  max-width: 300px;
  height: 60px;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  margin-inline: auto;
  width: 100%;
  background: #fff;
  color: #086dcd;
  border: 1px solid #086dcd;
  transition: all 0.3s ease;
  cursor: pointer;
}

.el_btn svg path {
  stroke: #086dcd;
}

.el_btn_withIcon_img {
  transition: all 0.3s ease;
}

.el_btn.el_btnOrange {
  background: linear-gradient(90deg,
      rgba(239, 111, 29, 1) 0%,
      rgba(235, 170, 47, 1) 100%);
  color: #fff;
  border: none;
}

.el_btn.el_btnOrange svg path {
  stroke: #fff;
}

.el_btn.el_btnIconAbs svg {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.el_btn.el_btnTransparent {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.el_btn.el_btnTransparent svg path {
  stroke: #fff;
}

.el_btn.el_btnSmall {
  max-width: 200px;
  height: 40px;
  font-size: 14px;
}

.el_btn:hover,
.el_btn:focus {
  opacity: 0.8;
}

.el_btn:hover .el_btn_withIcon_img,
.el_btn:focus .el_btn_withIcon_img {
  border-color: #333;
  stroke: #333;
}

.el_btn_withIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bl_secHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.bl_secHeader.bl_secHeader_dark {
  color: #333;
}

.bl_secHeader p {
  font-size: clamp(2rem, 1.1429rem + 4.2857vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.bl_secHeader span {
  height: 1px;
  width: 50px;
  background: #fff;
  display: block;
  margin-block: 12px;
}

.bl_secHeader.bl_secHeader_dark span {
  background: #333;
}

.bl_secHeader h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ================================================  
 ハンバーガーメニュー
================================================ */

.el_humb {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 40px;
  height: 40px;
  background: #0857a2;
  border-radius: 4px;
}

.el_humb span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
}

/* ハンバーガーメニューのナビゲーション */
.bl_nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  user-select: none;
  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
  /* アニメーション */
  transition: all 0.3s ease;
  height: 100%;
  overflow: scroll;
  padding-bottom: 100px;
}

.bl_nav_logo {
  display: block;
  height: clamp(3.125rem, 2.2321rem + 4.4643vw, 6.25rem);
  width: auto;
}

.bl_nav_logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.bl_nav_ul {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.bl_nav_ul_li>a {
  font-weight: 700;
  font-size: 18px;
}

.bl_nav_ul_logo {
  width: 100%;
}

.bl_nav_ul_buttons {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.bl_nav_info {
  text-align: center;
  margin-top: 40px;
}

.el_nav_close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  z-index: 100000;
}

.el_nav_close span {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 999px;
  transform: rotate(45deg);
}

.el_nav_close span:nth-of-type(2) {
  transform: rotate(-45deg);
}

.bl_nav.is_open {
  opacity: 1;
  visibility: visible;
}

.bl_flow {
  padding-block: 25px 30px;
}

.bl_flowCont {
  padding-inline: 15px;
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bl_flowCont_img {
  margin-top: 40px;
  position: relative;
  z-index: 1;
  aspect-ratio: 480 / 355;
  min-height: 600px;
  width: auto;
}

.bl_flowContHint {
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center;
  flex-direction: column;
}

.bl_flowContHint svg {
  width: 50px;
  height: auto;
}

.ly_request {
  padding: 80px 40px;
}

.bl_request {
  border-radius: 20px;
  background: #086dcd;
  color: #fff;
  position: relative;
}

.bl_requestImg {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.bl_request>svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  transform: translate(-40%, -50%);
}

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

.ly_cta {
  padding: 60px 15px;
  background:
    linear-gradient(90deg,
      rgba(8, 87, 162, 0.85) 0%,
      rgba(8, 172, 211, 0.85) 100%),
    url(../img/cta.webp) no-repeat center/cover;
  color: #fff;
  text-align: center;
}

.bl_cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bl_cta h2 {
  font-weight: 700;
  font-size: clamp(1.4375rem, 0.9464rem + 2.4554vw, 2.125rem);
  letter-spacing: 0.1em;
  text-align: center;
}

.bl_cta p {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.6964rem + 0.8929vw, 1.125rem);
  line-height: 35px;
  letter-spacing: 0.05em;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.nextpostslink,
.previouspostslink {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #086dcd;
  border-radius: 50%;
}

.nextpostslink {
  margin-left: 20px;
}

.previouspostslink {
  margin-right: 20px;
}

.current {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  color: #086dcd;
}

.previouspostslink svg {
  transform: scaleX(-1);
}

/* ================================================  
 ヘルパー
================================================ */
/* 余白の調整 */
.hp_mt20 {
  margin-top: 20px;
}

.hp_mt40 {
  margin-top: 40px;
}

.hp_pb20 {
  padding-bottom: 20px;
}

.hp_pt40 {
  padding-top: 40px;
}

.hp_padX40 {
  padding-inline: 40px;
}

.hp_padY20 {
  padding-block: 20px;
}

.hp_wMax {
  width: max-content;
  margin-inline: auto;
}

/* 色の変更 */
.hp_bgBlack {
  background: #333;
}

.hp_txtAccent {
  color: #086dcd;
}

/* テキストの調整 */
.hp_txtCenter {
  text-align: center;
}

.hp_txtSerif {
  font-family: 'NotoSerifJp', serif;
}

.hp_txtEng {
  font-family: 'Cardo', serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .sm_only {
    display: none !important;
  }

  .md_only,
  .lg_only {
    display: block !important;
  }

  .ly_cont {
    max-width: 1080px;
    margin-inline: auto;
  }

  .ly_normalSec {
    padding-block: 80px;
  }

  /* ヘッダー */
  .ly_header {
    width: 100%;
    top: 0;
    margin-inline: 0;
    z-index: 1000;
    height: 80px;
  }

  .bl_headerCont {
    height: 100%;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .el_btn {
    max-width: 300px;
    height: 60px;
    font-weight: 600;
    font-size: 18px;
  }

  .el_secTtl {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .hp_borderBold {
    margin-top: 12px;
  }

  .hp_mt40 {
    margin-top: 80px;
  }

  .hp_pt40 {
    padding-top: 80px;
  }

  .bl_breadcrumb {
    padding-block: 40px;
  }

  .el_subpTtl {
    position: relative;
    padding-block: 20px 10px;
    border-bottom: #bb9402 2px solid;
    font-size: 2rem;
  }

  .el_subpTtl span {
    color: #fff;
    opacity: 0.05;
    position: absolute;
    top: -24px;
    left: -100px;
    z-index: 1;
    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: white;
    font-size: 72px;
    translate: -20px -20px;
  }

  .el_normalTtl {
    font-size: 1.5rem;
  }

  .ly_footer {
    padding-top: 80px;
  }

  .bl_footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1380px;
    margin-inline: auto;
    gap: 50px;
  }

  .bl_footer_cont {
    flex-shrink: 0;
    align-self: flex-start;
  }

  .bl_footer_cont p {
    margin-bottom: 0;
  }

  .bl_footerWrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }

  .bl_footer_links {
    justify-content: flex-end;
  }

  .bl_flow {
    padding-block: 80px;
  }

  .bl_flowCont {
    max-width: 1010px;
    margin-inline: auto;
  }

  .bl_flowCont_img {
    margin-top: 68px;
  }

  .ly_request {
    padding-block: 150px;
  }

  .bl_request {
    display: flex;
    flex-direction: row;
    max-width: 980px;
    margin-inline: auto;
  }

  .bl_requestImg {
    max-width: 375px;
    aspect-ratio: 375 / 240px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }

  .bl_requestText {
    padding: 40px;
    font-size: 20px;
  }

  .bl_requestText p {
    font-weight: 700;
    font-size: 20px;
    line-height: 34px;
  }

  .bl_request .el_btn {
    margin-inline: 0 auto;
  }

  .bl_request>svg {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
  }

  .ly_cta {
    padding-block: 80px;
  }

  .ly_cta .el_btn {
    height: 80px;
    width: 100%;
    max-width: 500px;
    border-radius: 80px;
  }
}

@media screen and (min-width: 1120px) {
  .ly_header {
    padding-inline: 0;
    height: 120px;
  }

  .bl_header_nav,
  .bl_header_btns {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .bl_header_btns {
    gap: 2px;
    margin-left: 30px;
  }

  .bl_header_btns a {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    aspect-ratio: 15 / 12;
    background: linear-gradient(90deg,
        rgba(239, 111, 29, 1) 0%,
        rgba(235, 170, 47, 1) 100%);
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
  }

  .bl_header_btns a:hover {
    opacity: 0.8;
  }

  .bl_header_btnRecruit a {
    aspect-ratio: 28 / 12;
  }

  .bl_header_humb,
  .bl_nav {
    display: none;
  }

  .bl_post {
    max-width: 1000px;
    margin-inline: auto;
    margin-block: 80px;
  }

  .bl_footer_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}