@charset "utf-8";
/* CSS Document */

html{
  font-size: 62.5%;
  width: 100%;
  transition: .2s;  /*変化する時の速度*/
  scroll-behavior: smooth;
}

body{
  display: block;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  transition: .2s;
  line-height: 2.4rem;
  text-align: left;
  background-color: #ffffff;
  font-weight: 400;
  margin: 0;
  padding: 0 30px;
}

html, body {	
overflow-x: hidden;	
max-width: 100%;	
}


/* 遷移先のページに追加 */
body {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

main{
  margin: 150px auto 0;
}

.font-mochiy{
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
}

/* ホバーアニメーション */
.hover-style {
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hover-style:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.fade-in-text {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: calc(var(--delay) * 0.1s);
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:1000px){
  html, body {
    overflow-x: hidden;
  }
  body{
    padding: 0 15px;
  }
  main{
    margin: 50px auto 0;
  }
  .fade-in-text.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
}

/* ===================================
   ヘッダー CSS
   =================================== */

header {
  position: fixed;
  z-index: 99999;
  inset: 0;
  margin: 0 auto;
  width: 100%;
  height: 90px;
}

.header_content {
  height: 90px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2C33BD;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}

.header_content h1 {
  font-size: 25px;
  height: auto;
  width: 140px;
  margin: 0;
}

.header_content nav a {
  color: #fff;
  font-size: 14px;
}

li {
  list-style: none;
}

.header__navigation ul {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

/* PC版ではハンバーガーメニューを非表示 */
.open-btn,
.sp-entry-btn {
  display: none;
}
/* PC版: エントリーボタンに背景色 */
.header__navigation ul li:last-child a {
  background-color: #FF6600;
  padding: 10px 26px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.header__navigation ul li:last-child a:hover {
  background-color: #E55529;
}

/* ===================================
   SP版レイアウト (1070px以下)
   =================================== */

@media (max-width: 1070px) {
  header {
    height: 50px;
  }

  .header_content {
    height: 50px;
    padding: 0;
    display: block;
    background-color: transparent;
    box-shadow: none;
    position: relative;
    z-index: 10000;
  }

  /* ロゴエリア */
  .header_content h1 {
    width: 66%;
    padding: 0 15px;
    margin: 0;
    background-color: #2C33BD;
    display: flex;
    align-items: center;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }

  .header_content h1 img {
    width: 70px;
    height: auto;
  }
  
  /* SP版用エントリーボタン */
  .sp-entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 50px;
    width: auto;
    height: 50px;
    padding: 0 20px;
    background-color: #FF6633;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    z-index: 10000;
    transition: background-color 0.3s ease;
  }

  .sp-entry-btn:active {
    background-color: #E55529;
  }

  /* エントリーボタンエリア(常にヘッダー固定表示) */
  .header__navigation ul li:last-child {
    margin: 0;
    background-color: #FF6633;
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    right: 50px;
    z-index: 10000;
  }

  .header__navigation ul li:last-child a {
    padding: 0 25px;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 50px;
  }

  /* ハンバーガーメニューボタン */
  .open-btn {
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
  }

  .open-btn span,
  .open-btn span::before,
  .open-btn span::after {
    position: absolute;
    content: "";
    transition: all 0.4s;
    background-color: #2C33BD;
    width: 20px;
    height: 2px;
    border-radius: 2px;
  }

  .open-btn span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .open-btn span::before {
    top: -10px;
    left: 0;
  }

  .open-btn span::after {
    top: 10px;
    left: 0;
  }

  /* ハンバーガーメニューがアクティブ時(×印) */
  .open-btn.active span {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .open-btn.active span::before {
    opacity: 0;
  }

  .open-btn.active span::after {
    top: 0;
    transform: rotate(90deg);
  }

  /* ナビゲーションメニュー */
  .header__navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #ffffff;
    overflow: hidden;
    z-index: 9999;
    transition: height 0.4s ease;
  }

  .header__navigation.active {
    height: 100vh;
    overflow-y: auto;
  }

  .header__navigation ul {
    display: flex;
    flex-direction: column;
    padding: 60px 0 0 0;
    margin: 0;
    column-gap: 0;
  }

  .header__navigation ul li {
    width: 100%;
    padding: 0  15px;
  }

  /* 通常のメニュー項目 */
  .header__navigation ul li:not(:last-child) a {
    display: flex;
    justify-content: space-between;
     align-items: center; 
    padding: 20px 15px 20px 0;
    color: #2C33BD;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid;
    position: relative;
  }

  /* 右矢印アイコン */
  .header__navigation ul li:not(:last-child) a::after {
    content: "›";
    font-size: 28px;
    color: #2C33BD;
    font-weight: normal;
  }

  .header__navigation ul li:not(:last-child) a:active {
    background-color: #f5f5f5;
  }

  /* メインコンテンツの上部余白確保 */
  body {
    padding-top: 50px;
  }

  /* メニューが開いている時のbody固定 */
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }
}


.section{
  scroll-margin-top: 150px;
}

.section-wrapper{
  max-width: 1300px;
  padding: 70px 50px 150px;
  margin: 0 auto;
  position: relative;
}

@media(max-width:1000px){
  .section-wrapper{
    padding: 40px 0 30px;
  }
  .padding-none{
    padding: 0 0 30px;
  }
}
  


/* ======================
   フッター
   ====================== */

/* フッター全体 */
.footer {
  background-color: #E6EDEE;
  padding: 60px 100px 40px;
  margin: 0 -30px;
}

/* フッターコンテナ */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 270px;
  padding-bottom: 40px;
}


/* ======================
   左側エリア - ブランド
   ====================== */

.footer-brand {
  flex-shrink: 0;
  width: 300px;
}

.footer-brand-wrapper {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

/* ロゴ */
.logo-subtitle {
  font-size: 1.8rem;
  color: #002E73;
  margin: 10px 0 0;
}

/* SNSアイコン */
.brand-icon {
  width: 70px;
  height: 70px;
  background-color: #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon img {
  width: 61%;
  height: auto;
}

.brand-icon:hover{
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* コーポレートサイトボタン */
.corporate-button {
  display: inline-block;
  padding: 16px 100px 16px 30px;
  background-color: transparent;
  border: 2px solid #0C3779;
  border-radius: 50px;
  color: #0C3779;
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  position: relative;
}

/* 矢印を追加 */
.corporate-button::after {
  content: '';
  position: absolute;
  right: 30px; /* ボタン右端からの距離 */
  top: 50%;
  transform: translateY(-50%) rotate(45deg); /* 中央配置＋45度回転 */
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #0C3779; /* 矢印の線の太さと色 */
  border-right: 1.5px solid #0C3779;
  transition: all 0.3s ease;
}

.corporate-button:hover {
  background-color: #0C3779;
  color: white;
}

/* hover時に矢印の色も変更 */
.corporate-button:hover::after {
  border-top-color: white;
  border-right-color: white;
}

/* ======================
   右側エリア - ナビゲーション
   ====================== */

.footer-nav-wrapper {
  display: flex;
  gap: 60px;
  flex: 1;
}

/* 共通リンクスタイル */
.footer-nav,
.footer-staff,
.footer-info {
  flex: 1;
}

.footer-nav ul,
.footer-staff ul,
.footer-info ul {
  list-style: none;
}

.footer-nav ul li,
.footer-info ul li {
  margin-bottom: 30px;
}

.footer-nav a,
.footer-info a,
.footer-staff > a {
  display: block;
  color: #002E73;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-nav a:hover,
.footer-info a:hover,
.footer-staff a:hover {
  opacity: 0.5;
}

/* 社員紹介エリア */
.footer-staff > a {
  margin-bottom: 10px;
}

.staff-list li {
  margin-bottom: 8px;
}

.staff-list a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #002E73;
}

/* コピーライト */
.copyright {
  font-size: 1.4rem;
  color: #5A5A5A;
  padding-top: 20px;
  border-top: 1px solid #707070;
}

.link-icon{
  margin-left: 10px;
  vertical-align: middle;
}

.link-icon img{
  width: 15px;
}

/* ======================
   レスポンシブ対応
   ====================== */

@media (max-width: 1000px) {
  /* フッター調整 */
  .footer {
    padding: 45px 15px 15px;
    margin: 0 -15px;
  }
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand-wrapper{
    gap: 20px;
  }
  .footer-logo{
    max-width: 150px;
  }
  
  .brand-icon{
    width: 50px;
    height: 50px;
  }
  
  /* ブランドエリア */
  .footer-brand {
    width: 100%;
  }
  .corporate-button {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  /* ナビゲーションエリア - 縦一列レイアウト */
  .footer-nav-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  /* 配置指定をリセット（自動的に縦並びになる） */
  .footer-nav,
  .footer-info,
  .footer-staff {
    grid-column: auto;
    grid-row: auto;
  }
  /* リンクサイズ調整 */
  .footer-nav ul li,
  .footer-info ul li {
    margin-bottom: 15px;
  }
  .footer-nav a,
  .footer-info a,
  .footer-staff > a {
    font-size: 1.4rem;
    font-weight: 500;
  }
}


.sp-br{
  display: none;
}

.pc-none{
  display: none;
}

.sp-none{
  display: block;
}

@media(max-width:1000px){
  .sp-br{
    display: block;
  }
  .pc-none{
    display: block;
    margin: 0 auto;
  }
  .sp-none{
    display: none;
  }
}  



/*エントリー*/
.entry-wrapper{
  background-color: #fff678;
  background-image: radial-gradient(circle, #f7fea1 7.5px, transparent 7.5px), radial-gradient(circle, #f7fea1 7.5px, transparent 7.5px);
  background-position: 0 0, 25px 25px;
  background-size: 50px 50px;
  margin: 0 -30px;
  padding: 0 30px;
  text-align: center;
}

.entry-contents{
  padding: 70px 50px 50px!important;
}

.entry_title{
  font-size: 7.0rem;
  color: #2C33BD;
  font-family: "Jost", sans-serif;
  margin: 20px 0 50px;
}

.entry-subtitle{
  font-size: 2.0rem;
  margin-bottom: 30px;
}

.entry-button {
  display: inline-block;
  align-items: center;
  justify-content: space-between;
  padding: 50px 140px;
  background: #FF6600;
  border-radius: 18px;
  font-size: 4.0rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  min-width: 280px;
  position: relative;
}

.entry-button:hover {
  transform: translateY(-5px);
}

.entry-button:active {
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.arrow {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin-left: 16px;
  transform: translateY(-80%);
  right: 30px;
}

.arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #ff6b35;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
}

@media(max-width:800px){
  .entry-wrapper{
    margin: 0 -15px;
    padding: 0 15px;
  }
  .entry-contents{
    padding: 30px 0px 50px!important;
  }
  .entry_title{
    font-size: 5rem;
    margin: 0px 0 10px;
  }
  .entry-subtitle{
    font-size: 1.6rem;
  }
  .entry-button{
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 2.5rem;
  }
  .arrow{
    width: 20px;
    height: 20px;
    transform: translateY(-100%);
    right: 15px;
  }
  .arrow::after{
    border-left: 4px solid #ff6b35;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
  }
}




/* ホバー時にarrowの色も変わるように */
.entry-button:hover .arrow::after {
  border-left-color: #ff5722;
}


/* 管理バー用のスタイル（最後に追加） */
body.admin-bar {
  margin-top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    margin-top: 46px !important;
  }
}

/* ヘッダーも管理バーの分ずらす */
body.admin-bar header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar header {
    top: 46px;
  }
}





