@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  background: #fff;
  color: var(--color-black);
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  cursor: pointer;
  text-decoration: none;
}

ul {
  margin: 0;
}

p {
  margin: 0;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-lite-gray: #F3F5F7;
  --color-navy: #163760;
}

.container {
  /* padding: 0 135px; */
  padding: 0 8.4375vw;
}

@media (max-width:768px) {
  .container {
    padding: 0 20px;
  }
}

.container_sub {
  /* padding: 0 200px 0 205px; */
  padding: 0 12.5vw 0 12.812499999999998vw;
}

@media (max-width:768px) {
  .container_sub {
    padding: 0 20px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

/* ==================ヘッダー========================- */
.site_header {
  width: 100%;

  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;

}

.site_header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 24px 52px 24px 48px; */
  padding: 22px min(3.25vw, 52px) min(1.5vw, 24px) min(3vw, 48px);
}

@media (max-width:768px) {
  .site_header_container {
    padding: 16px 24px 16px 21px;
  }
}

.site_header_logo {
  max-width: 252px;
  transition: opacity .3s ease;
}

@media (max-width:768px) {
  .site_header_logo {
    max-width: 139px;
  }
}

.site_header_logo:hover {
  opacity: 0.6;
}

.site_header_logo img {
  max-width: 252px;
}

@media (max-width:768px) {
  .site_header_logo img {
    max-width: 139px;
  }
}

.site_header_right {
  display: flex;
  align-items: center;
  gap: 58px;
  gap: clamp(36px, 3.6249999999999996vw, 58px);
}

.pc_header_nav {
  padding: 0;
  display: flex;
  align-items: center;
  /* gap: 42px; */
  gap: clamp(16px,
      2.625vw, 42px);
}

@media (max-width:1020px) {
  .pc_header_nav {
    display: none;
  }
}

.pc_header_nav_list_item {
  list-style: none;
}

.pc_header_nav_list_link {
  color: var(--color-black);
  /* font-size: 14px; */
  font-size: clamp(12px, 0.8750000000000001vw, 14px);
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
}

.pc_header_nav_list_link::after {
  background-color: var(--color-black);
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform .3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
.pc_header_nav_list_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.global_nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s linear;
  z-index: 999;
}

/* 開閉アニメーション */
.global_nav.is-active {
  pointer-events: auto;
  opacity: 1;
}

.global_nav_overlay {
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  overflow: auto;
  transition: opacity .3s linear;
}



/* 開閉アニメーション */
.global_nav_overlay.is-open {
  opacity: 1;
  background-color: var(--color-white);
  pointer-events: auto;
}

/* ハンバーガー */
.global_nav_toggle {
  background-color: transparent;
  border-color: transparent;
  position: relative;
  z-index: 9999;

  width: 48px;
  height: 33px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  /* ズーム防止 */
  touch-action: manipulation;
}

@media (max-width:768px) {
  .global_nav_toggle {
    width: 32px;
    height: 25px;
    gap: 10px;
  }
}

.global_nav_toggle_bar {
  max-width: 48px;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  position: relative;
  transition: transform .3s ease;
  display: block;
flex: 0 0 1px;
}

.global_nav_toggle .global_nav_toggle_bar-top {
  top: 0;
}

.global_nav_toggle .global_nav_toggle_bar-btm {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.global_nav_toggle.is-active {
  transform: translateX(0);
}

.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  top: 11px;
  transform: rotate(150deg);
}

@media (max-width:768px) {
  .global_nav_toggle.is-active .global_nav_toggle_bar-top {
    top: 8px;
  }
}

.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;

}

.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  top: -19px;
  transform: rotate(-150deg);
}

@media (max-width:768px) {
  .global_nav_toggle.is-active .global_nav_toggle_bar-btm {
    top: -14px;
  }
}

/* ハンバーガーメニュー中身 */
.global_nav_container {
  background-color: var(--color-white);
  display: flex;
  /* padding: min(14.3125vw, 229px) 80px min(16.125vw, 258px); */
  padding: 80px;
  margin: auto;
  justify-content: center;
  gap: min(13.3125vw, 213px);
  /* gap: 13%; */
  width: 100%;
}

@media (max-width:1024px) {
  .global_nav_container {
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
    gap: 28px;
  }
}

@media (max-width:1024px) {
  .global_nav_container {
    flex-direction: column;
    align-items: baseline;
    justify-content: flex-start;
    padding: 49px 35px 144px;
    gap: 0;
  }
}

@media (max-width:1024px) {
  .global_nav_left {
    display: contents;
  }
}

.global_nav_logo {
  width: 100%;
  max-width: 240px;
  display: block;
}

.global_nav_logo img {
  width: 100%;
}

@media (max-width:768px) {
  .global_nav_logo {
    max-width: 174px;
    order: 1;
  }
}

.global_nav_box_container {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
}

@media (max-width:768px) {
  .global_nav_box_container {
    display: none;
  }
}


.global_nav_box {
  color: var(--color-black);
  /* min-width: 140px; */
  width: min(8.75vw, 140px);
  /* min-height: 140px; */
  height: min(8.75vw, 140px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color .3s ease;
}

.global_nav_box.box_01 {
  background: var(--color-navy);
}

.global_nav_box:hover.global_nav_box.box_01 {
  background-color: #02142B;
}

.global_nav_box.box_02 {
  background: #E3E3E3;
}

.global_nav_box:hover.global_nav_box.box_02 {
  background-color: #9B9B9B;
}

.global_nav_box_main {
  display: flex;
  flex-direction: column;
  align-items: center;
}



.global_nav_box_img.box_01 {
  /* max-width: 50px; */
  width: min(3.125vw, 50px);
}

.global_nav_box_img.box_01 img {
  /* max-width: 50px; */
  width: min(3.125vw, 50px);
}

.global_nav_box_img.box_02 {
  /* max-width: 52px; */
  width: min(3.25vw, 52px);
}

.global_nav_box_img.box_02 img {
  max-width: 52px;
  width: min(3.25vw, 52px);
}

.global_nav_box_text {
  /* font-size: 17px; */
  font-size: clamp(10px, 1.0625vw, 17px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.global_nav_box_text.box_01 {
  color: var(--color-white);
}

.global_nav_box_arrow {
  /* max-width: 12px; */
  width: clamp(8px, 0.5vw, 12px);
  position: absolute;
  /* bottom: 10px; */
  bottom: 7%;
  /* right: 9px; */
  right: 7%;
}

@media (max-width:920px) {
  .global_nav_box_arrow {
    bottom: 1%;
  }
}

@media (max-width:1024px) {
  .global_nav_left_text {
    order: 3;
  }
}

.global_nav_left_textTop {
  margin-top: 66px;
}

@media (max-width:1024px) {
  .global_nav_left_textTop {
    margin-top: 27px;
  }

}

.global_nav_company {
  /* font-size: 19px; */
  font-size: clamp(14px, 1.1875vw, 19px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1px;
}

@media (max-width:768px) {
  .global_nav_company {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}

.global_nav_address {
  color: var(--color-black);
  /* font-size: 14px; */
  font-size: clamp(10px, 0.8750000000000001vw, 14px);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 1px;
  border: none;
  pointer-events: none;
}

@media (max-width:768px) {
  .global_nav_address {
    font-size: 10px;
    letter-spacing: 0.01em;
  }
}

.global_nav_left_textBottom {
  margin-top: 12px;
}

.global_nav_tel {
  color: var(--color-black);
  /* font-size: 26px; */
  font-size: clamp(15px, 1.625vw, 26px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: none;
  pointer-events: none;
}

@media (max-width:768px) {
  .global_nav_tel {
    font-size: 22px;
    line-height: 1.2;
  }
}

.global_nav_businessHours {
  /* font-size: 14px; */
  font-size: clamp(12px, 0.8750000000000001vw, 14px);
  line-height: 2.1;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width:1090px) {
  .global_nav_businessHours {
    font-size: 10px;
    line-height: 2;
    letter-spacing: 0.01em;
  }
}

@media (max-width:768px) {
  .global_nav_businessHours {
    font-size: 10px;
    line-height: 2;
    letter-spacing: 0.01em;
  }
}

.global_nav_snsLink {
  display: flex;
  align-items: center;
  /* gap: 30px; */
  gap: clamp(12px, 1.875vw, 30px);
  padding: 0;
  margin-top: 40px;
}

.global_nav_snsLink_list {
  list-style: none;
}

.global_nav_snsLink_item {
  max-width: 30px;
  transition: opacity .3s ease;
}

.global_nav_snsLink_item:hover {
  opacity: 0.6;
}

.global_nav_snsLink_item img {
  max-width: 30px;
}

.global_nav_list_item {
  list-style: none;
}

.global_nav_right {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: 11px;
  justify-content: space-between;
}
@media (max-width:1024px) {
  .global_nav_right {
    align-items: baseline;
    margin-top: 32px;
  }
}


@media (max-width:768px) {
  .global_nav_right {
    order: 2;
    padding-bottom: 26px;
    border-bottom: 1px solid hsla(213, 63%, 23%, .25);
    width: 100%;
    margin-top: 31px;
  }
}

.global_nav_list_container {
  display: flex;
  /* gap: 69px; */
  gap: min(4.3125vw, 69px);
}

@media (max-width:1090px) {
  .global_nav_list_container {
    gap: 24px;
  }
}

@media (max-width:768px) {
  .global_nav_list_container {
    flex-direction: column;
    gap: 25px;
  }
}

.global_nav_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}

@media (max-width:768px) {
  .global_nav_list {
    gap: 25px;
  }
}

.global_nav_list_link {
  color: var(--color-black);
  /* font-size: 20px; */
  font-size: clamp(14px, 1.25vw, 20px);
  letter-spacing: 0.05em;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

@media (max-width:768px) {
  .global_nav_list_link {
    font-size: 16px;
  }
}

.global_nav_list_link::after {
  background-color: var(--color-black);
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform .3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

.global_nav_list_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.global_nav_list_link_sub_list {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.global_nav_list_link_sub {
  color: #414141;
  /* font-size: 16px; */
  font-size: clamp(12px, 1vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.05em;
  font-weight: 400;
  position: relative;
  padding-left: 23px;
}

@media (max-width:768px) {
  .global_nav_list_link_sub {
    font-size: 14px;
    line-height: 2.5;
  }
}

.global_nav_list_link_sub::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  background-color: #414141;
  width: 14px;
  height: 1px;
}

.global_nav_bottomLink_container {
  display: flex;
  flex-wrap: wrap;
  /* gap: 24px; */
  gap: 0 clamp(16px, 1.5vw, 24px);
  /* margin-top: 59px; */
  /* margin-top: clamp(20px, 4.25vw, 68px); */
  margin-top: 68px;
}

@media (max-width:768px) {
  .global_nav_bottomLink_container {
max-width: 259px;
    gap: 0 24px;
    margin-top: 31px;
  }
}

.outLink_img {
  display: inline-block;
  padding-right: 6px;
}

.outLink_img img {
  max-width: 12px;
}

.global_nav_bottomLink {
  color: var(--color-black);
  font-size: 12px;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 1px;
  display: block;
  position: relative;
}

.global_nav_bottomLink::after {
  background-color: var(--color-black);
  /* 下線の色 */
  bottom: -2px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform .3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */

}

.global_nav_bottomLink:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

/* ==================フッター========================- */
/* スライドの動き等速 */
.swiper_loop {
  overflow: hidden;
}

.swiper-wrapper.loop {
  transition-timing-function: linear;
}

/* 画像のサイズ調整 */
.swiper_loop>.swiper-slide img {
  height: auto;
  width: 100%;
}

.site_footer_main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 132px 5px 138px;
  position: relative;
}

@media (max-width:1300px) {
  .site_footer_main {
    padding: 54px 82px 5px 72px;
  }
}

@media (max-width:1020px) {
  .site_footer_main {
    flex-direction: column;
    padding: 101px 38px 124px 20px;
    gap: 0;
  }
}

.site_footer_logo {
  max-width: 274px;
  transition: opacity .3s ease;
}

@media (max-width:1020px) {
  .site_footer_logo {
max-width: 196px;
  }
}

.site_footer_logo:hover {
  opacity: 0.6;
}

.site_footer_leftMiddle {
  margin-top: 29px;
}

@media (max-width:768px) {
  .site_footer_leftMiddle {
    margin-top: 18px;
  }
}

.company_name,
.company_address {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width:768px) {

  .company_name,
  .company_address {
    font-size: 13px;
    letter-spacing: 0.01em;
  }
}

.company_address {
  color: var(--color-black);
  pointer-events: none;
  /* font-size: 14px; */
  font-size: clamp(12px, 0.8750000000000001vw, 14px);
  line-height: 1.6;
  letter-spacing: 1px;
  display: block;
}

@media (max-width:768px) {
  .company_address {
    font-size: 10px;
    letter-spacing: 0.01em;
  }
}

.site_footer_leftBottom {
  margin-top: 22px;
}

@media (max-width:768px) {
  .site_footer_leftBottom {
    margin-top: 24px;
  }
}

.company_tel {
  color: var(--color-black);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  pointer-events: none;
  border: none;
}

@media (max-width:1300px) {
  .company_tel {
    font-size: 20px;
  }
}

@media (max-width:830px) {
  .company_tel {
    font-size: 18px;
  }
}

@media (max-width:768px) {
  .company_tel {
    font-size: 22px;
    line-height: 1.17;
  }
}

.company_businessHours {
  font-size: 14px;
  line-height: 2.1;
  font-weight: 400;
  letter-spacing: 1px;
}

@media (max-width:768px) {
  .company_businessHours {
    font-size: 10px;
    line-height: 2;
    letter-spacing: 0.01em;
  }
}

.site_footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 104px;
  margin-top: 72px;
}

@media (max-width:1020px) {
  .site_footer_right {
    align-items: baseline;
    gap: 23px;
    margin-top: 55px;
  }
}

.site_footer_rightTop {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 35px;
}

.site_footer_list {
  display: flex;
  gap: 4px;
  justify-content: end;
}

.site_footer_list {
  padding: 0;
  display: flex;
  align-items: center;
  /* gap: 25px; */
  gap: clamp(12px, 1.5625vw, 25px);
}


@media (max-width:1020px) {
  .site_footer_list {
    display: none;
  }
}

.site_footer_list_item {
  list-style: none;
}

.site_footer_list_link {
  color: var(--color-black);
  /* font-size: 14px; */
  font-size: clamp(12px, 0.8750000000000001vw, 14px);
  letter-spacing: 0.1em;
  font-weight: 400;
  display: inline-block;
  position: relative;
}

.site_footer_list_link::after {
  background-color: var(--color-black);
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform .3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}

/* リンクにホバーした際の下線の表示 */
.site_footer_list_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
  /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.sns_link_container {
  display: flex;
  gap: 30px;
}

@media (max-width:768px) {
  .sns_link_container {
    gap: 17px;
  }
}

.sns_link {
  max-width: 30px;
  max-height: 30px;
  transition: opacity .3s ease;
}

@media (max-width:768px) {
  .sns_link {
    max-width: 25px;
    max-height: 25px;
  }
}

.sns_link:hover {
  opacity: 0.6;
}

.sns_link.youtube {
  max-width: 39px;
  max-height: 27px;
}

@media (max-width:768px) {
  .sns_link.youtube {
    max-width: 33px;
    max-height: 22px;
  }
}

.copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1px;
}

@media (max-width:768px) {
  .copyright {
    font-size: 8px;
    line-height: 3;
  }
}

.page_top_link {
  position: absolute;
  top: 33px;
  right: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (max-width:1020px) {
  .page_top_link {
    position: absolute;
    top: 46px;
    right: 20px;
  }
}

.page_top_arrowImg {
  max-width: 6px;
  max-height: 54px;
}

.page_top_text {
  color: var(--color-black);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
}

/* ==================追従CTA============================- */
.fixed_menu {
  display: flex;
  flex-direction: column;
  max-width: 50px;
  position: fixed;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media (max-width:768px) {
  .fixed_menu {
    flex-direction: row;
    top: inherit;
    bottom: 0;
    left: 0;
    max-width: none;
    max-height: 116px;
    z-index: 999;
    transform: none;
  }
}

.fixed_menu_link {
  transition: background-color .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 185px;
}

@media (max-width:768px) {
  .fixed_menu_link {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: inherit;
    width: auto;
    height: auto;
  }
}


.fixed_menu_link.blue {
  background: #163760;
  /* padding: 44px 0; */
}

.fixed_menu_link:hover.fixed_menu_link.blue {
  background-color: #02142B;
}

.fixed_menu_link.gray {
  background: #E3E3E3;
  /* padding: 22px 0; */
}

.fixed_menu_link:hover.fixed_menu_link.gray {
  background-color: #9B9B9B;
}

.fixed_menu_link.black {
  background: #707070;
  /* padding: 17px 0; */
}

.fixed_menu_link:hover.fixed_menu_link.black {
  background-color: #404040;
}

@media (max-width:768px) {

  .fixed_menu_link.blue,
  .fixed_menu_link.gray,
  .fixed_menu_link.black {
    padding: 10px 11px 9px;
  }
}

.fixed_btn_img {
  display: none;
}

@media (max-width:768px) {
  .fixed_btn_img {
    display: block;
  }

  .fixed_btn_img.img-01 {
    max-width: 29px;
  }

  .fixed_btn_img.img-02 {
    max-width: 29px;
  }

  .fixed_btn_img.img-03 {
    max-width: 36px;
  }
}

.fixed_menu_link_inner {
  color: var(--color-white);
  font-size: 17px;
  line-height: 1.4;
  writing-mode: vertical-rl;
  font-weight: 400;
  letter-spacing: 0.45em;
}

@media (max-width:768px) {
  .fixed_menu_link_inner {
    writing-mode: inherit;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

.fixed_menu_link_inner.gray {
  color: var(--color-black);
}