@charset "UTF-8";
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th {
  font-weight: normal;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

button,
input {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1440px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.row {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

[class*=col] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ------------------------------------------------------------
// photo-ofi
------------------------------------------------------------ */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------
// paging
------------------------------------------------------------ */
.paging {
  text-align: center;
}
.paging .current,
.paging .paging-text {
  overflow: hidden;
  display: inline-block;
  color: #333333;
  margin: 0px 2px;
  zoom: 1;
}
.paging .current a,
.paging .paging-text a {
  display: block;
  padding: 3px 8px;
  border: 1px solid #cccccc;
  transition: 0.3s;
}
.paging .current a:hover,
.paging .paging-text a:hover {
  color: #ffffff;
  background: #0066ff;
  border: 1px solid #0066ff;
  cursor: pointer;
}
.paging .current {
  color: #ffffff;
  padding: 3px 8px;
  background: #003380;
  border: 1px solid #003380;
  cursor: pointer;
}

/* ============================================================
// 初期共通設定（common.scss）
// 全プロジェクトで共通利用するベーススタイル
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.google-maps iframe {
  vertical-align: bottom;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.clickable {
  cursor: pointer;
}

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  transform: translateY(100px);
  opacity: 0;
  z-index: 10;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .pagetop a img {
    width: 40px;
    height: 40px;
  }
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
[data-aos] {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

[data-aos=fade-up] {
  transform: translateY(20px);
}

[data-aos=fade-down] {
  transform: translateY(-20px);
}

[data-aos=fade-left] {
  transform: translateX(-20px);
}

[data-aos=fade-right] {
  transform: translateX(20px);
}

[data-aos=zoom-in] {
  transform: scale(0.9);
}

[data-aos=zoom-out] {
  transform: scale(1.1);
}

/* ============================================================
// header（ヘッダー共通 + ハンバーガーメニュー + 全画面ナビ）
============================================================ */
header .header-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 80px;
  margin: 20px auto 0;
  background: #ffffff;
  z-index: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header .header-wrap .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  width: 100%;
  max-width: 293px;
  height: 100%;
  margin-left: 20px;
}
header .header-wrap nav {
  flex: 1;
}
header .header-wrap .gnav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  height: 80px;
}
header .header-wrap .gnav ul li {
  min-width: 80px;
}
header .header-wrap .gnav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 20px;
  transition: 0.3s;
}
header .header-wrap .gnav ul li a .txt-jp,
header .header-wrap .gnav ul li a .txt-en {
  display: block;
  text-align: center;
}
header .header-wrap .gnav ul li a .txt-jp {
  font-size: 16px;
}
header .header-wrap .gnav ul li a .txt-en {
  font-size: 12px;
  color: #cccccc;
}
header .header-wrap .gnav ul li a.current .txt-jp, header .header-wrap .gnav ul li a:hover .txt-jp {
  color: #005bad;
}
header .header-wrap .gnav ul li:last-child a {
  background: #005bad;
}
header .header-wrap .gnav ul li:last-child a .txt-jp {
  color: #ffffff;
}
header .header-wrap .gnav ul li:last-child a.current, header .header-wrap .gnav ul li:last-child a:hover {
  background: #003462;
}
header .header-wrap .gnav ul li:last-child a.current .txt-jp, header .header-wrap .gnav ul li:last-child a:hover .txt-jp {
  color: #ffffff;
}
@media print, screen and (max-width: 991px) {
  header .header-wrap {
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    background: #ffffff;
  }
  header .header-wrap .logo {
    max-width: 200px;
    margin: 0;
    padding: 0 20px;
  }
  header .header-wrap .gnav {
    display: none;
  }
}
header .header-spacer {
  height: 80px;
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
/* ------------------------------------------------------------
// ハンバーガーメニューアイコン
------------------------------------------------------------ */
.hamburger {
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 48px;
  height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  background-color: transparent;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #111;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 15px;
}
.hamburger span:nth-child(2) {
  top: 23px;
}
.hamburger span:nth-child(3) {
  top: 31px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 23px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
}
@media print, screen and (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  z-index: 999;
  overflow-y: auto; /* 縦スクロールを許可 */
  overflow-x: hidden; /* 横スクロールは禁止 */
  -webkit-overflow-scrolling: touch; /* iOS滑らかスクロール */
}
.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.fullscreen-nav ul li {
  width: 100%;
}
.fullscreen-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #121212;
  letter-spacing: 0.05em;
  padding: 30px 15px;
  transition: 0.6s;
}
.fullscreen-nav ul li a.current, .fullscreen-nav ul li a:hover {
  color: #ffffff;
  background: #003462;
  border-radius: 50px;
  text-shadow: none;
}
.fullscreen-nav.active {
  opacity: 1;
  visibility: visible;
}

.nav-inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  /* 基本：縦中央配置 */
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-inner ul {
  width: 100%;
  max-width: calc(100% - 160px);
}

@media print, screen and (max-width: 767px) {
  .nav-inner ul {
    gap: 5px;
    max-width: calc(100% - 60px);
  }
  .nav-inner ul li a {
    font-size: 16px;
    padding: 15px;
  }
}
/* 縦幅が小さいとき：中央→上部表示に切り替え */
@media (max-height: 500px) {
  .nav-inner {
    align-items: flex-start;
    padding-top: 80px;
  }
}
body.noscroll {
  overflow: hidden;
  scrollbar-width: none; /* Firefox用 */
}

body.noscroll::-webkit-scrollbar {
  display: none; /* Chrome・Safari・Edge */
}

/* ============================================================
// footer（フッター共通 + ナビゲーション + コピーライト）
============================================================ */
.footer-wrap {
  padding: 60px 0;
  border-top: 5px solid #005bad;
}
.footer-wrap .logo {
  width: 100%;
  max-width: 240px;
}
.footer-wrap .footer-address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 30px;
}
.footer-wrap .footer-address .box {
  display: flex;
}
.footer-wrap .footer-address .box span {
  font-weight: 500;
  min-width: 110px;
}
.footer-wrap .footer-address .box a {
  color: #005bad;
  margin-left: 1em;
  transition: 0.3s;
}
.footer-wrap .footer-address .box a:hover {
  color: #003462;
}
@media screen and (max-width: 767px) {
  .footer-wrap .footer-address {
    gap: 15px;
  }
  .footer-wrap .footer-address .box {
    display: block;
  }
  .footer-wrap .footer-address .box span {
    display: block;
  }
}

.copyright-wrap {
  padding: 20px 0;
  background: #005bad;
}
.copyright-wrap .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright-wrap .box ul {
  display: flex;
  gap: 2em;
}
.copyright-wrap .box ul li a {
  font-size: 14px;
  color: #ffffff;
  transition: 0.3s;
}
.copyright-wrap .box ul li a.current, .copyright-wrap .box ul li a:hover {
  color: #cccccc;
}
.copyright-wrap .box .copyright {
  font-size: 12px;
  color: #ffffff;
  text-align: right;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 575px) {
  .copyright-wrap .box ul {
    display: none;
  }
  .copyright-wrap .box .copyright {
    text-align: center;
    width: 100%;
  }
}

/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  body {
    font-size: 12pt;
  }
  a {
    text-decoration: none !important;
  }
  table,
  p {
    page-break-inside: avoid !important;
  }
  .hamburger {
    position: absolute !important;
  }
  .pagetop {
    display: none !important;
  }
  .header-wrap {
    position: static !important;
  }
  .header-space {
    display: none !important;
  }
}
/* ------------------------------------------------------------
// Body
------------------------------------------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 575px) {
  body {
    font-size: 15px;
  }
}

/* ------------------------------------------------------------
// Spacer
------------------------------------------------------------ */
.spacer {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .spacer {
    height: 60px;
  }
}

.content-ttl-spacer {
  width: 100%;
  height: 340px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .content-ttl-spacer {
    height: 180px;
  }
}

/* ------------------------------------------------------------
// Display On or Off
------------------------------------------------------------ */
.br-pc {
  display: none;
}
@media screen and (max-width: 575px) {
  .br-pc {
    display: inline;
  }
}

.br-sp {
  display: inline;
}
@media screen and (max-width: 575px) {
  .br-sp {
    display: none;
  }
}

/* ------------------------------------------------------------
// Text
------------------------------------------------------------ */
.f-bold {
  font-weight: 700;
}

.f-red {
  color: #d62828;
}

.f-yellow {
  color: #e4c600;
}

.f-gray {
  color: #666666;
}

.txt-area p:not(:last-child) {
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
// Link
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a img,
a:hover img,
a:visited img,
a:active img {
  transition: opacity 0.3s;
}

a:hover img {
  opacity: 0.8;
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  width: 100%;
  max-width: 280px;
  height: 46px;
  margin: 0 auto;
  padding-bottom: 2px;
  background: #005bad;
  border-radius: 23px;
  transition: 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2);
}
.link-btn i {
  position: absolute;
  right: 20px;
  font-size: 14px;
}
.link-btn:hover {
  background: #003462;
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 51, 128, 0.3);
}
@media screen and (max-width: 575px) {
  .link-btn {
    font-size: 16px;
    max-width: 240px;
    height: 44px;
    border-radius: 22px;
  }
  .link-btn i {
    font-size: 12px;
    right: 15px;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-wrap {
  margin-bottom: 160px;
}
@media print, screen and (max-width: 767px) {
  .content-wrap {
    margin-bottom: 80px;
  }
}

.content-box:not(:last-child) {
  margin-bottom: 120px;
}
@media print, screen and (max-width: 767px) {
  .content-box:not(:last-child) {
    margin-bottom: 60px;
  }
}

.page-ttl-img {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 0 120px;
  border-radius: 3px;
}
.page-ttl-img .page-ttl {
  position: absolute;
  top: calc(50% + 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 320px;
  height: 200px;
  padding: 20px;
  background: linear-gradient(to bottom right, #003462, #005bad);
  clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
}
.page-ttl-img .page-ttl h2 {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}
.page-ttl-img .page-ttl .en {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #ffffff;
}
@media print, screen and (max-width: 767px) {
  .page-ttl-img {
    height: 260px;
    margin-bottom: 60px;
  }
  .page-ttl-img .page-ttl {
    width: 280px;
    height: 120px;
  }
  .page-ttl-img .page-ttl h2 {
    font-size: 22px;
  }
  .page-ttl-img .page-ttl .en {
    font-size: 14px;
    margin-top: 12px;
    padding-top: 10px;
  }
}

.business-ttl-img {
  background: url(../images/business/page-ttl-img.png) no-repeat center center/cover;
}

.company-ttl-img {
  background: url(../images/company/page-ttl-img.png) no-repeat center center/cover;
}

.contact-ttl-img {
  background: url(../images/contact/page-ttl-img.png) no-repeat center center/cover;
}

.content-ttl {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 20px;
}
.content-ttl .txt-jp {
  font-size: 40px;
  font-weight: 500;
  color: transparent;
  line-height: 1.3;
  background: linear-gradient(90deg, #003462 20%, #005bad 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content-ttl .txt-en {
  font-size: 15px;
  background: linear-gradient(90deg, #cccccc 20%, #eeeeee 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media print, screen and (max-width: 575px) {
  .content-ttl {
    gap: 2px;
    margin-bottom: 15px;
  }
  .content-ttl .txt-jp {
    font-size: 23px;
  }
  .content-ttl .txt-en {
    font-size: 12px;
  }
}

.content-line {
  height: 1px;
  margin-bottom: 40px;
  background-image: linear-gradient(to right, #003462 0%, #005bad 100%);
  transform: skew(-15deg);
}
@media print, screen and (max-width: 575px) {
  .content-line {
    margin-bottom: 20px;
  }
}

.content-subttl {
  font-size: 30px;
  font-weight: 500;
  color: transparent;
  line-height: 1.3;
  margin-bottom: 30px;
  padding: 0 60px 5px 20px;
  background: linear-gradient(90deg, #005bad 20%, #1e79ca 80%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 2px solid #005bad;
  position: relative;
}
.content-subttl::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #003462;
  border-radius: 50%;
}
@media print, screen and (max-width: 575px) {
  .content-subttl {
    display: block;
    font-size: 20px;
    padding: 0 0 5px 20px;
  }
}