@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;
}

/* ============================================================
// 初期共通設定（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;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.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;
}

.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;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 150px;
  padding: 0 20px;
  background: #ffffff;
  z-index: 500;
}
header .header-wrap .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-wrap .logo img {
  height: 55px;
}
header .header-wrap .gnav-list {
  display: flex;
  justify-content: center;
}
header .header-wrap .gnav-list li a {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  color: #231815;
  line-height: 1;
  padding: 0 1.5em 2px;
  border-left: 1px solid #231815;
  transition: 0.3s;
}
header .header-wrap .gnav-list li a:last-child {
  border-right: 1px solid #231815;
}
header .header-wrap .gnav-list li a.current, header .header-wrap .gnav-list li a:hover {
  color: #0081cc;
}
@media print, screen and (max-width: 991px) {
  header .header-wrap .gnav-list li a {
    font-size: 16px;
    padding: 0 1em;
  }
}
@media print, screen and (max-width: 767px) {
  header .header-wrap {
    height: 100px;
  }
  header .header-wrap .gnav-list {
    display: none;
  }
}
header .header-space {
  height: 150px;
}
@media print, screen and (max-width: 767px) {
  header .header-space {
    height: 100px;
  }
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
/* ------------------------------------------------------------
// ハンバーガーメニューアイコン
------------------------------------------------------------ */
.hamburger {
  display: none;
}
@media print, screen and (max-width: 767px) {
  .hamburger {
    cursor: pointer;
    position: fixed;
    top: 25px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    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: 14px;
  }
  .hamburger span:nth-child(2) {
    top: 23px;
  }
  .hamburger span:nth-child(3) {
    top: 32px;
  }
  .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;
  }
}

/* ------------------------------------------------------------
// 全画面ナビゲーション
------------------------------------------------------------ */
.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  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;
}
.fullscreen-nav ul li {
  margin: 25px 0;
}
.fullscreen-nav ul li a {
  font-size: 24px;
  text-decoration: none;
  color: #111;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.fullscreen-nav ul li a:hover {
  color: #999999;
}
.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: 400px;
}

/* 縦幅が小さいとき：中央→上部表示に切り替え */
@media (max-height: 500px) {
  .nav-inner {
    align-items: flex-start;
    padding-top: 60px;
  }
}
/* 縦幅がさらに狭くて項目多い場合：左右2列に切り替え */
@media (max-height: 400px) {
  .fullscreen-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .fullscreen-nav ul li {
    width: 45%;
    margin: 15px 5px;
  }
}
body.noscroll {
  overflow: hidden;
  scrollbar-width: none; /* Firefox用 */
}

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

/* ============================================================
// footer（フッター共通 + ナビゲーション + コピーライト）
============================================================ */
footer .footer-wrap {
  padding: 60px 20px;
  background: #003477;
}
footer .footer-wrap .footer-box {
  width: 100%;
  max-width: 1014px;
  margin: 0 auto;
}
footer .footer-wrap .footer-box p {
  font-size: 21px;
  color: #ffffff;
  text-align: center;
}
footer .footer-wrap .footer-box .tel {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
footer .footer-wrap .footer-box .tel a,
footer .footer-wrap .footer-box .tel span {
  color: #ffffff;
}
footer .footer-wrap .footer-box .tel a:hover,
footer .footer-wrap .footer-box .tel span:hover {
  color: #ffffff;
}
footer .footer-wrap .footer-box .tel-pic {
  font-size: 19px;
  color: #ffffff;
  text-align: center;
  margin: -10px 0 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-box p {
    font-size: 16px;
  }
  footer .footer-wrap .footer-box .tel-pic {
    font-size: 16px;
  }
}
footer .footer-wrap .footer-logo-nav-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1014px;
  margin: 0 auto;
  padding: 140px 0 130px;
}
footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap {
  display: flex;
  align-items: flex-end;
  padding-bottom: 8px;
}
footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap ul {
  display: flex;
  justify-content: center;
}
footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap ul li a {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  padding: 0 1.5em 2px;
  border-left: 1px solid #ffffff;
  transition: 0.3s;
}
footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap ul li a:last-child {
  border-right: 1px solid #ffffff;
}
footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap ul li a.current, footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap ul li a:hover {
  color: #0081cc;
}
@media screen and (max-width: 991px) {
  footer .footer-wrap .footer-logo-nav-box {
    flex-direction: column;
    padding: 120px 0;
  }
  footer .footer-wrap .footer-logo-nav-box .footer-logo {
    display: flex;
    justify-content: center;
  }
  footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap {
    justify-content: center;
  }
  footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap ul li a {
    font-size: 16px;
    padding: 0 1em;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-logo-nav-box {
    padding: 60px 0;
  }
  footer .footer-wrap .footer-logo-nav-box .footer-nav-wrap {
    display: none;
  }
}
footer .copyright {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #231815;
  line-height: 1.8;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

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

/* ------------------------------------------------------------
// only
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

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

/* ------------------------------------------------------------
// text
------------------------------------------------------------ */
.txt-red {
  color: #d62828;
}

.txt-blue {
  color: #499edf;
}

.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;
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-base {
  width: 100%;
  border-bottom: 1px solid #231815;
}
.table-base tr {
  display: grid;
  grid-template-columns: 330px auto;
}
.table-base tr th,
.table-base tr td {
  text-align: left;
  vertical-align: top;
  padding: 1.5em 0.5em;
  border-top: 1px solid #231815;
}
@media screen and (max-width: 767px) {
  .table-base tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-base tr th,
  .table-base tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .table-base tr th {
    font-weight: 500;
    padding: 0.6em 0.5em;
    background: #fafafa;
  }
  .table-base tr td {
    padding: 1em 0.5em 2em;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-wrap {
  width: 100%;
  max-width: 1356px;
  margin: 0 auto;
  padding: 60px 20px 90px;
}

.content-box {
  padding: 60px 0;
}
@media print, screen and (max-width: 767px) {
  .content-box {
    padding: 30px 0;
  }
}

.page-ttl-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 270px;
  background: url(../images/common/content-top-bg.png) no-repeat center center/cover;
}
.page-ttl-img .page-ttl h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
.page-ttl-img .page-ttl .pankuzu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.page-ttl-img .page-ttl .pankuzu li {
  font-size: 19px;
  color: #ffffff;
}
.page-ttl-img .page-ttl .pankuzu li a {
  transition: 0.3s;
}
.page-ttl-img .page-ttl .pankuzu li a:hover {
  color: #499edf;
}
@media print, screen and (max-width: 767px) {
  .page-ttl-img {
    height: 180px;
  }
  .page-ttl-img .page-ttl h2 {
    font-size: 42px;
  }
  .page-ttl-img .page-ttl .pankuzu {
    gap: 5px;
  }
  .page-ttl-img .page-ttl .pankuzu li {
    font-size: 16px;
  }
}

.content-subttl {
  text-align: center;
  margin-bottom: 60px;
}
.content-subttl .txt-en {
  font-size: 23px;
  color: #003477;
  line-height: 1;
}
.content-subttl .txt-jp {
  font-size: 35px;
  font-weight: 500;
  color: #003477;
}
@media print, screen and (max-width: 767px) {
  .content-subttl {
    margin-bottom: 40px;
  }
  .content-subttl .txt-en {
    font-size: 18px;
  }
  .content-subttl .txt-jp {
    font-size: 26px;
  }
}