@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* 基本的なスタイル */
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: #000000;
  line-height: 1.6;
  background-color: #FFF;
  font-family: "Noto Serif JP", sans-serif;
  font-optical-sizing: auto;
}
body * {
  box-sizing: border-box;
}

h1, h2, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: #182578;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-word;
  color: #182578;
}
@media screen and (max-width: 1000px) {
  p {
    font-size: 0.98em;
  }
}
@media screen and (max-width: 767px) {
  p {
    font-size: 15.5px;
  }
}

li::marker {
  content: none;
}

/* コンテナー */
section {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*カスタム値を指定する場合
section .クラス名 {
@include section-padding((
  'pt': 100px,
  'pb': 80px,
  'sm-pt': 60px,
  'sm-pb': 40px
));
}
*/
/* コンテナー */
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .blContainer {
    width: 90%;
  }
}

/* フォントサイズ */
.title_ptjp {
  font-size: 40px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  .title_ptjp {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .title_ptjp {
    font-size: 30px;
  }
}

/* Utility Classes */
.d-none {
  display: none !important;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

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

/* 非表示*/
.sp_only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}
/* --------------------------------------------
 * 　ボタン
 * -------------------------------------------- */
.button {
  display: flex; /* flexboxを使用して矢印を配置 */
  align-items: center;
  justify-content: center;
  gap: 8px; /* テキストと矢印の間隔 */
  min-width: 167px;
  padding: 16px 40px;
  border: solid 1px #182578;
  border-radius: 22px;
  width: 205px;
  height: 43px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  position: relative; /* 矢印の位置決めの基準点 */
  transition: all 0.3s ease;
  /* 矢印の追加 */
  /* ホバー時のアニメーション */
}
@media screen and (max-width: 575px) {
  .button {
    width: 167px;
    font-size: 14px;
    height: 35px;
    padding: 16px 30px;
  }
}
.button::after {
  position: absolute;
  right: 30px; /* 右からの位置を指定 */
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #182578;
  border-right: 1px solid #182578;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 575px) {
  .button::after {
    right: 20px;
  }
}
.button:hover {
  background-color: #fff;
}
.button:hover::after {
  transform: translateX(7px) rotate(45deg);
}

/* --------------------------------------------
 * 　各ページのタイトル箇所
 * -------------------------------------------- */
.page-title {
  position: relative;
  height: 350px;
  margin-top: 100px;
  /* バスのラッパー追加 */
  /*top用のバス*/
}
@media screen and (max-width: 1000px) {
  .page-title {
    height: 240px;
    margin-top: 30px;
  }
}
.page-title__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.page-title__content {
  position: absolute;
  left: 0;
  bottom: -150px;
  background: rgba(245, 111, 119, 0.8);
  padding: 40px 0px 40px 145px;
  z-index: 2;
  width: 63%;
  height: 220px;
}
@media screen and (max-width: 1000px) {
  .page-title__content {
    padding: 20px 40px;
    width: 80%;
    bottom: -70px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .page-title__content {
    padding: 20px 20px;
    width: 80%;
    bottom: -50px;
    height: auto;
  }
}
.page-title__text {
  color: #fff;
  margin: 0;
}
.page-title__text-en {
  display: block;
  font-size: 52px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1300px) {
  .page-title__text-en {
    font-size: 34px;
  }
}
@media screen and (max-width: 1080px) {
  .page-title__text-en {
    font-size: 34px;
  }
}
@media screen and (max-width: 575px) {
  .page-title__text-en {
    font-size: 24px;
    letter-spacing: 0em;
  }
}
.page-title__text-ja {
  display: block;
  font-size: 24px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1000px) {
  .page-title__text-ja {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .page-title__text-ja {
    font-size: 18px;
  }
}
.page-title__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 226px;
  background-image: url("../img/top/pagetitle_bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .page-title__image {
    width: 70%;
    height: 140px;
  }
}
.page-title__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 111, 119, 0.8);
}
.page-title__bus-wrapper {
  position: absolute;
  right: 0;
  bottom: -140px;
  width: 370px;
  height: auto;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .page-title__bus-wrapper {
    bottom: -170px;
    width: 270px;
  }
}
.page-title__bus {
  position: relative;
  width: 100%;
  height: auto;
  transform: translateX(100%);
  -webkit-animation: busSlideIn 1s ease-out forwards;
          animation: busSlideIn 1s ease-out forwards;
}
.page-title__bus-wrapper2 {
  position: absolute;
  right: 0;
  bottom: 120px;
  max-width: 680px;
  width: 50%;
  height: auto;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .page-title__bus-wrapper2 {
    width: 100%;
    right: -90px;
    bottom: 120px;
  }
}
.page-title__bus2 {
  position: relative;
  width: min(100%, 1270px);
  height: auto;
  transform: translateX(100%);
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes busSlideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes busSlideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
html {
  scroll-behavior: smooth;
}

#usage {
  scroll-margin-top: 200px;
}
@media screen and (max-width: 575px) {
  #usage {
    scroll-margin-top: 100px;
  }
}

.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.bgappearTrigger::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

.box {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールしてふわっと表示 */
.fadein, .fadeinleft, .fadeinright, .fadeinbig,
.fadeinbottom,
.fadeinbottom-count * {
  opacity: 0;
  transition: 1s;
}

.fadeinbottom,
.fadeinbottom-count * {
  transform: translateY(3rem);
}

.fadeinleft {
  transform: translateX(2em);
}

.fadeinright {
  transform: translateX(-2em);
}

.fadeinbig {
  transform: scale3d(1.05);
}

.fadein.scrollin, .fadeinleft.scrollin, .fadeinright.scrollin, .fadeinbig.scrollin,
.fadeinbottom.scrollin,
.fadeinbottom-count.scrollin * {
  opacity: 1;
  transform: translate(0);
}

.fadeinbottom-count.scrollin :nth-child(2) {
  transition-delay: 0.2s;
}

.fadeinbottom-count.scrollin :nth-child(3) {
  transition-delay: 0.4s;
}

@media (min-width: 769px) {
  .count2-pc.scrollin {
    transition-delay: 0.2s;
  }
  .count3-pc.scrollin {
    transition-delay: 0.4s;
  }
}
@-webkit-keyframes slideIn {
  0% {
    right: -250px;
  }
  100% {
    right: -50px;
  }
}
@keyframes slideIn {
  0% {
    right: -250px;
  }
  100% {
    right: -50px;
  }
}
@media (max-width: 769px) {
  @-webkit-keyframes slideIn {
    0% {
      right: -50px;
    }
    100% {
      right: 70px;
    }
  }
  @keyframes slideIn {
    0% {
      right: -50px;
    }
    100% {
      right: 70px;
    }
  }
}
@media (max-width: 575px) {
  @-webkit-keyframes slideIn {
    0% {
      right: -40px;
    }
    100% {
      right: 5px;
    }
  }
  @keyframes slideIn {
    0% {
      right: -40px;
    }
    100% {
      right: 5px;
    }
  }
}
/* --------------------------------------------
* 　ヘッダー
* -------------------------------------------- */
.header {
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 120px;
}
@media screen and (max-width: 1000px) {
  .header__inner {
    height: 80px;
    padding: 0 20px;
  }
}
.header__logo {
  margin: 0;
  margin-top: clamp(10px, 2vw, 20px);
  width: clamp(200px, 25vw, 330px);
}
@media screen and (max-width: 1000px) {
  .header__logo {
    margin: 0 auto 0;
    padding-left: 15px;
  }
}
.header__logo-link {
  display: block;
}
.header__logo-img {
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
}
.header__right {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
@media screen and (max-width: 1000px) {
  .header__right {
    display: block;
  }
}
.header__nav {
  padding-top: 10px;
}
.header__nav-list {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .header__nav-list {
    display: block;
    margin-bottom: 20px;
  }
  .header__nav-list li {
    margin-bottom: 20px;
  }
}
.header__nav-link {
  text-decoration: none;
}
.header__nav-link span {
  display: block;
  text-align: center;
}
.header__nav-ja {
  font-size: clamp(12px, 1.2vw, 18px);
  margin-bottom: 4px;
}
@media screen and (max-width: 1000px) {
  .header__nav-ja {
    font-size: 16px;
  }
}
.header__nav-en {
  font-size: clamp(12px, 1.2vw, 14px);
  color: #182578;
}
@media screen and (max-width: 1000px) {
  .header__nav-en {
    font-size: 14px;
  }
}
.header__contact {
  display: flex;
  /* アイコンのスタイルを追加 */
}
@media screen and (max-width: 1000px) {
  .header__contact {
    display: block;
  }
}
.header__contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .header__contact-link {
    width: 50%;
    min-width: 300px;
    margin: 0 auto;
  }
}
.header__contact-link--tell {
  background: #182578;
  /* アイコン画像の設定を追加 */
}
.header__contact-link--tell .header__contact-icon {
  background-image: url("../img/top/icon_tell.svg");
  z-index: 1000;
}
.header__contact-link--tell:hover {
  background-color: #10184e;
  transition: background-color 0.5s ease;
}
.header__contact-link--mail {
  background: #F56F77;
}
.header__contact-link--mail .header__contact-icon {
  background-image: url("../img/top/icon_mail.svg");
}
.header__contact-link--mail:hover {
  background-color: #f23f4a;
  transition: background-color 0.5s ease;
}
.header__contact-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header__contact-text {
  font-size: 14px;
  margin-bottom: 4px;
}
.header__contact-label {
  font-size: 13px;
}

/* --------------------------------------------
* 　キービジュアル(FV)
* -------------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: 100%;
  max-height: 600px;
  margin-top: 147px;
  padding: 0px;
  margin-bottom: 100px;
  /* ↓↓↓ スクロールボタンのスタイルを追加 ↓↓↓ */
  /* ↓↓↓ アニメーションを追加 ↓↓↓ */
  /* ↑↑↑ アニメーションを追加 ↑↑↑ */
}
.fv__slider {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.fv__img {
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fv img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .fv img {
    height: 400px !important;
    width: auto !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fv__content {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #182578;
  width: 100%;
  z-index: 2;
}
.fv__lead {
  font-size: 26px;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1080px) {
  .fv__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .fv__lead {
    font-size: 14px;
    letter-spacing: 0px;
  }
}
.fv__title {
  font-size: 48px;
  margin: 0 0 13px;
  position: relative;
  padding: 0 200px;
  font-weight: 600;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1080px) {
  .fv__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .fv__title {
    padding: 0px;
  }
}
@media screen and (max-width: 575px) {
  .fv__title {
    font-size: 24px;
  }
}
.fv__title::before, .fv__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 40px;
  background-size: cover;
  background-repeat: no-repeat;
}
.fv__title::before {
  left: -100px;
  width: 219px;
  height: 110px;
  background-image: url("../img/top/fv_orn01.svg");
}
.fv__title::after {
  right: -100px;
  width: 219px;
  height: 110px;
  background-image: url("../img/top/fv_orn02.svg");
}
@media screen and (max-width: 767px) {
  .fv__title::before {
    left: 50px;
    top: -125px;
    width: 108px;
    height: 55px;
  }
  .fv__title::after {
    right: 50px;
    top: 280px;
    width: 108px;
    height: 55px;
  }
}
.fv__en {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.207em;
}
@media screen and (max-width: 1080px) {
  .fv__en {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .fv__en {
    font-size: 12px;
  }
}
.fv__scroll {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fv__scroll-line {
  width: 1px;
  height: 110px;
  background-color: #182578;
  position: relative;
}
.fv__scroll-dot {
  width: 9px;
  height: 9px;
  background-color: #182578;
  border-radius: 50%;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-animation: scrollAnimation 2s infinite;
          animation: scrollAnimation 2s infinite;
}
@-webkit-keyframes scrollAnimation {
  0% {
    transform: translate(-50%, -50px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 50px);
    opacity: 0;
  }
}
@keyframes scrollAnimation {
  0% {
    transform: translate(-50%, -50px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 50px);
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    height: 400px;
    margin-top: 120px;
  }
}
/* --------------------------------------------
 * 　海外向けセクション
 * -------------------------------------------- */
.overseas {
  position: relative;
  padding: 100px 20px;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .overseas {
    padding: 40px 20px 0px;
  }
}
.overseas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/overseas_bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.overseas::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 126, 0.9);
  z-index: -1;
}
.overseas .arch {
  content: "";
  position: absolute;
  bottom: 0; /* topからbottomに変更 */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* 1366pxから画面幅に変更 */
  min-width: 1366px;
  min-height: 160px;
  background-image: url("../img/top/bg_glayarch.svg");
  background-position: center top; /* 追加 */
  background-size: cover; /* 100% 100%からcoverに変更 */
  background-repeat: no-repeat;
  z-index: 20;
  margin-top: -160px; /* -150pxから-160pxに変更して隙間をなくす */
}
@media screen and (max-width: 575px) {
  .overseas .arch {
    background-image: url("../img/top/bg_glayarch_sp.svg");
    width: 100vw;
    min-width: 350px;
    min-height: 70px;
    margin-top: -250px;
  }
}
.overseas__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 180px;
}
@media screen and (max-width: 575px) {
  .overseas__inner {
    padding-bottom: 120px;
  }
}
.overseas__title {
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .overseas__title {
    margin-bottom: 0px;
  }
}
.overseas__title-ja {
  display: block;
  font-size: 23px;
  margin-bottom: 16px;
  letter-spacing: 0.209em;
}
@media screen and (max-width: 575px) {
  .overseas__title-ja {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
.overseas__title-en {
  display: block;
  font-size: 32px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 575px) {
  .overseas__title-en {
    font-size: 16px;
  }
}
.overseas__text {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 575px) {
  .overseas__text {
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
}
.overseas__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.overseas__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
  width: 185px;
  height: 118px;
  background: #fff;
  color: #182578;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 575px) {
  .overseas__button {
    width: 90px;
    height: 80px;
    padding-top: 8px;
  }
}
.overseas__button::after {
  content: "▼";
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
}
@media screen and (max-width: 575px) {
  .overseas__button::after {
    bottom: 0px;
  }
}
.overseas__button:hover {
  transform: translateY(-4px);
}
.overseas__button-text {
  font-size: 18px;
  line-height: normal;
}
@media screen and (max-width: 575px) {
  .overseas__button-text {
    font-size: 12px;
  }
}
.overseas__button-sub {
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .overseas__button-sub {
    font-size: 12px;
  }
}

/* --------------------------------------------
* 　ご挨拶
* -------------------------------------------- */
.comfort {
  position: relative;
  background: #F2F2F2;
  padding: 20px 20px;
}
@media screen and (max-width: 575px) {
  .comfort {
    padding-top: 30px;
  }
}
.comfort__inner {
  position: relative;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}
.comfort__content {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .comfort__content {
    gap: 30px;
  }
}
.comfort__slider {
  position: relative;
  width: 50%;
  aspect-ratio: 4/3;
}
.comfort__slider .swiper {
  width: 100%;
  max-width: 516px;
  aspect-ratio: 516/499;
}
@media screen and (max-width: 575px) {
  .comfort__slider .swiper {
    max-width: 214px;
  }
}
.comfort__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comfort__decoration {
  position: absolute;
  right: -110px;
  bottom: -50px;
  width: 219px;
  height: 110px;
  background-image: url("../img/top/fv_orn01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 20;
}
@media screen and (max-width: 1080px) {
  .comfort__decoration {
    width: 153px;
    height: 77px;
    right: -40px;
  }
}
@media screen and (max-width: 575px) {
  .comfort__decoration {
    width: 92px;
    height: 46px;
    right: -10px;
    bottom: 0px;
  }
}
.comfort__text-block {
  width: 50%;
}
.comfort__title {
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #182578;
  margin-left: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 575px) {
  .comfort__title {
    font-size: 18px;
    margin-left: 0px;
    margin-bottom: 15px;
  }
}
.comfort__text {
  line-height: 2;
  margin-bottom: 40px;
  max-width: 475px;
  margin-left: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 575px) {
  .comfort__text {
    margin-bottom: 30px;
    font-size: 14px;
    margin-left: 0px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .comfort__content {
    flex-direction: column;
    gap: 40px;
  }
  .comfort__slider, .comfort__text-block {
    width: 100%;
  }
}
/* --------------------------------------------
* 　車両紹介
* -------------------------------------------- */
.vehicle {
  position: relative;
  background: #f2f2f2;
  padding: 120px 0px;
  overflow-x: hidden;
}
@media screen and (max-width: 575px) {
  .vehicle {
    padding: 80px 0px;
  }
}
.vehicle__inner {
  position: relative;
  margin: 0 auto;
}
.vehicle__content {
  position: relative;
  background: #fff;
  padding: 60px 140px;
  border-radius: 0px 40px 40px 0px;
  max-width: 1200px;
  width: 80%;
  margin-left: 0;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .vehicle__content {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .vehicle__content {
    padding: 60px 70px;
  }
}
@media screen and (max-width: 575px) {
  .vehicle__content {
    padding: 50px 20px 200px;
  }
}
.vehicle__title {
  margin-bottom: 20px;
}
.vehicle__title-ja {
  display: inline-block;
  color: #1a237e;
  margin-bottom: 5px;
}
@media screen and (max-width: 575px) {
  .vehicle__title-ja {
    font-size: 30px;
  }
}
.vehicle__title-en {
  display: inline-block;
  font-size: 21px;
  color: #1a237e;
  letter-spacing: 1.05px;
}
@media screen and (max-width: 575px) {
  .vehicle__title-en {
    font-size: 16px;
  }
}
.vehicle__text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.9px;
  margin-bottom: 40px;
  max-width: 540px;
  width: 110%;
}
@media screen and (max-width: 575px) {
  .vehicle__text {
    width: 125%;
    font-size: 14px;
  }
}
.vehicle__button .button {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .vehicle__content::after {
    right: -20px;
    bottom: -20px;
    width: 300px;
    height: 150px;
  }
}
/* --------------------------------------------
* 　安心安全への取り組み
* -------------------------------------------- */
.safety {
  position: relative;
  background: #F2F2F2;
  padding: 20px 20px;
}
@media screen and (max-width: 575px) {
  .safety {
    padding-bottom: 50px;
  }
}
.safety::after {
  content: "";
  position: absolute;
  bottom: -160px; /* topからbottomに変更 */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* 1366pxから画面幅に変更 */
  min-width: 1366px;
  min-height: 160px;
  background-image: url("../img/top/bg_glayarch02.svg");
  background-position: center top; /* 追加 */
  background-size: cover; /* 100% 100%からcoverに変更 */
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 575px) {
  .safety::after {
    background-image: url("../img/top/bg_glayarch02_sp.svg");
    width: 100vw;
    min-width: 350px;
    min-height: 70px;
    bottom: -70px; /* topからbottomに変更 */
  }
}
.safety__inner {
  position: relative;
  max-width: 950px;
  width: 85%;
  margin: 0 auto;
  z-index: 1;
}
.safety__content {
  display: flex;
  gap: 60px;
  align-items: center;
}
.safety__text-block {
  width: 50%;
}
.safety__title {
  margin-bottom: 24px;
}
.safety__title-ja {
  display: block;
  font-size: 28px;
  color: #182578;
  margin-bottom: 16px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 575px) {
  .safety__title-ja {
    margin-bottom: 10px;
    font-size: 28px;
    letter-spacing: 0px;
  }
}
.safety__title-en {
  display: block;
  font-size: 20px;
  color: #182578;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 575px) {
  .safety__title-en {
    font-size: 16px;
  }
}
.safety__text {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  max-width: 400px;
  width: 100%;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 575px) {
  .safety__text {
    font-size: 14px;
  }
}
.safety__button .button {
  margin-left: 0px;
}
@media screen and (max-width: 575px) {
  .safety__button .button {
    margin: 0 auto;
  }
}
.safety__slider {
  position: relative;
  width: 50%;
  aspect-ratio: 4/3;
}
.safety__slider .swiper {
  max-width: 516px;
  aspect-ratio: 516/499;
}
@media screen and (max-width: 575px) {
  .safety__slider .swiper {
    width: 260px;
  }
}
.safety__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.safety__decoration {
  position: absolute;
  left: -110px;
  bottom: -50px;
  width: 219px;
  height: 110px;
  background-image: url("../img/top/fv_orn02.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 20;
}
@media screen and (max-width: 1080px) {
  .safety__decoration {
    width: 153px;
    height: 77px;
    left: -40px;
  }
}
@media screen and (max-width: 575px) {
  .safety__decoration {
    width: 117px;
    height: 80px;
    left: -20px;
  }
}

@media screen and (max-width: 767px) {
  .safety__content {
    flex-direction: column;
    gap: 40px;
  }
  .safety__text-block, .safety__slider {
    width: 100%;
  }
}
/* --------------------------------------------
* 　利用例
* -------------------------------------------- */
.usage {
  position: relative;
  padding: 250px 20px 140px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .usage {
    padding: 130px 20px 100px;
  }
}
.usage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/bg-usage.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.usage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(245, 111, 119, 0.9);
  z-index: -1;
}
.usage__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.usage__title {
  margin-bottom: 60px;
}
@media screen and (max-width: 575px) {
  .usage__title {
    margin-bottom: 40px;
  }
}
.usage__title-ja {
  display: block;
  font-size: clamp(34px, 2vw, 42px);
  margin-bottom: 7px;
  letter-spacing: 2.1px;
}
@media screen and (max-width: 575px) {
  .usage__title-ja {
    margin-bottom: 5px;
    font-size: 28px;
    letter-spacing: 0px;
  }
}
.usage__title-en {
  display: block;
  font-size: 21px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 575px) {
  .usage__title-en {
    font-size: 16px;
  }
}
.usage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 0px;
  margin-bottom: 60px;
}
.usage__item {
  position: relative;
}
.usage__img {
  max-width: 320px;
  aspect-ratio: 320/174;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 575px) {
  .usage__img {
    width: 162px;
  }
}
.usage__label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 4px 8px;
  font-size: 19px;
  border-radius: 22px;
  width: 200px;
  height: 37px;
  display: block;
}
@media screen and (max-width: 575px) {
  .usage__label {
    line-height: 11px;
    top: -11px;
    font-size: 12px;
    width: 118px;
    height: 23px;
  }
}
.usage__button .button {
  color: #fff;
  border: solid 1px #fff;
  /* 矢印の追加 */
}
.usage__button .button::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.usage__button .button:hover {
  background-color: #F56F77;
}

@media screen and (max-width: 767px) {
  .usage__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
/* --------------------------------------------
* 　フッター
* -------------------------------------------- */
.contact {
  padding: 100px 20px;
  background: #fff;
  text-align: center;
}
.contact__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.contact__title {
  font-size: 30px;
  color: #1a237e;
}
.contact__image {
  margin-bottom: 13px;
}
.contact__image img {
  width: 294px;
  height: auto;
}
@media screen and (max-width: 575px) {
  .contact__image img {
    width: 161px;
  }
}
.contact__links {
  display: flex;
  justify-content: center;
  gap: 0px;
  margin-bottom: 22px;
}
.contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 120px;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.3s ease;
}
.contact__link--tell {
  background: #182578;
}
.contact__link--mail {
  background: #F56F77;
}
.contact__link:hover {
  opacity: 0.8;
}
.contact__icon {
  width: 27px;
  height: 27px;
  margin-bottom: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact__link--tell .contact__icon {
  background-image: url("../img/top/icon_tell.svg");
}
.contact__link--mail .contact__icon {
  background-image: url("../img/top/icon_mail.svg");
}
.contact__text {
  font-size: 13px;
  margin-bottom: 1px;
}
.contact__label {
  font-size: 13px;
}
.contact__nav-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 110px 0px 0px;
}
.contact__nav-item a {
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
.contact__nav-item a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 70px 20px 50px;
  }
  .contact__links {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .contact__nav-list {
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
  }
}
.copyright {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
  background-color: #182578;
  font-size: 13px;
}
@media screen and (max-width: 575px) {
  .copyright {
    font-size: 8px;
  }
}

.floating-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  padding: 0px;
}

.floating-banner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* 横の隙間をなくす */
}

.floating-banner__item {
  width: 100%;
}

.floating-banner__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像比率を保持 */
}

.sdgs01 {
  padding: 80px 20px;
  background: #fff;
  margin-top: 100px;
}
.sdgs01__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.sdgs01__title {
  text-align: center;
  margin-bottom: 40px;
}
.sdgs01__title-main {
  display: inline-block;
  font-size: 32px;
  color: #000;
  position: relative;
  padding-bottom: 16px;
  letter-spacing: 6.4px;
}
.sdgs01__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.9px;
}

@media screen and (max-width: 767px) {
  .sdgs01 {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) {
  .sdgs01__title {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .sdgs01__title-main {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .sdgs01__text {
    font-size: 14px;
  }
}
.sdgs02 {
  padding: 80px 20px;
  background: #fff;
}
.sdgs02__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.sdgs02__heading {
  text-align: center;
  font-size: 32px;
  letter-spacing: 6.4px;
  color: #000;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding: 0 60px;
  margin: 0 auto;
  margin-top: -70px;
  background-color: #fff;
}
.sdgs02__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border: 3px solid #182578;
  padding: 40px;
  border-radius: 30px;
  justify-content: center;
}
.sdgs02__item {
  width: calc(50% - 20px);
  background: #f2f2f2;
  padding: 30px;
  border-radius: 20px;
}
.sdgs02__title {
  font-size: 24px;
  color: #fff;
  background: #525D9A;
  padding: 13px 2px;
  width: 345px;
  height: 65px;
  margin: 10px auto 5px;
  border-radius: 20px;
  letter-spacing: 2.4px;
  font-weight: normal;
  text-align: center;
}
.sdgs02__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  padding: 10px;
}
.sdgs02__subcontent {
  background-color: #fff;
  margin-bottom: 30px;
  height: 135px;
}
.sdgs02__subtitle {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: #525D9A;
  padding: 3px 14px;
  border-radius: 20px;
  width: 140px;
  top: -15px;
  margin-left: 25px;
  text-align: center;
}
.sdgs02__subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 0px 30px 15px;
}
.sdgs02__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.sdgs02__icon {
  width: 95px;
  height: 95px;
}
.sdgs02__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .sdgs02 {
    padding: 60px 20px;
  }
  .sdgs02__heading {
    font-size: 20px;
    letter-spacing: 0;
    padding: 0 10px;
    margin-top: -40px;
  }
  .sdgs02__grid {
    padding: 20px;
    gap: 25px;
  }
  .sdgs02__item {
    width: 100%;
    padding: 16px;
  }
  .sdgs02__title {
    font-size: 18px;
    width: 255px;
    height: 50px;
    margin: 0 auto;
  }
  .sdgs02__text {
    font-size: 16px;
  }
  .sdgs02__subcontent {
    height: 120px;
  }
  .sdgs02__subtitle {
    margin-left: 10px;
  }
  .sdgs02__subtext {
    font-size: 13px;
    padding: 0px 10px 15px;
  }
  .sdgs02__icon {
    width: 90px;
    height: 90px;
  }
}
.sdgs03 {
  margin-top: 10px;
  padding: 0px;
}
.sdgs03__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: #f2f2f2;
  padding: 30px;
  border-radius: 20px;
}
.sdgs03__content {
  display: flex;
  gap: 25px;
  align-items: center;
}
.sdgs03__image {
  width: 45%;
}
.sdgs03__image img {
  width: 100%;
  height: auto;
}
.sdgs03__text-block {
  width: 55%;
}
.sdgs03__title {
  font-size: 18px;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.6;
}
.sdgs03__text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.sdgs03__text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .sdgs03 {
    padding: 0px 20px;
  }
  .sdgs03__content {
    flex-direction: column;
    gap: 40px;
  }
  .sdgs03__image, .sdgs03__text-block {
    width: 100%;
  }
  .sdgs03__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .sdgs03__text p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
/* -------------------------------------------- 
 * 　ご挨拶
 * -------------------------------------------- */
.greeting {
  position: relative;
  padding: 80px 20px;
  margin-top: 100px;
  overflow-x: hidden;
}
.greeting__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  z-index: 1;
}
.greeting__content {
  display: flex;
  gap: 60px;
  align-items: center;
}
.greeting__image-block {
  position: relative;
  width: 50%;
}
.greeting__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.greeting__decoration {
  position: absolute;
  right: -110px;
  bottom: -50px;
  width: 219px;
  height: 110px;
  background-image: url("../img/top/fv_orn01.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 20;
}
@media screen and (max-width: 575px) {
  .greeting__decoration {
    width: 117x;
    height: 60px;
    right: -130px;
    bottom: -30px;
  }
}
.greeting__text-block {
  width: 50%;
  padding-right: 30px;
}
@media screen and (max-width: 575px) {
  .greeting__text-block {
    padding-right: 0px;
  }
}
.greeting__title {
  font-size: 32px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #182578;
  letter-spacing: 6.4px;
}
.greeting__text {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 2;
  margin-bottom: 40px;
  width: 475px;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 575px) {
  .greeting__text {
    font-size: 14px;
  }
}
.greeting__signature {
  font-size: 18px;
  text-align: right;
  margin-right: 20px;
  letter-spacing: 0.9px;
}
.greeting__signature span {
  font-size: 28px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 575px) {
  .greeting__signature span {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .greeting {
    padding: 50px 20px 30px;
    margin-top: 120px;
  }
  .greeting__content {
    flex-direction: column;
    gap: 40px;
  }
  .greeting__image-block, .greeting__text-block {
    width: 100%;
  }
  .greeting__title {
    font-size: 24px;
  }
  .greeting__text {
    width: 100%;
    margin-bottom: 20px;
  }
  .greeting__signature {
    font-size: 14px;
  }
}
/* -------------------------------------------- 
 * 　会社概要
 * -------------------------------------------- */
.company {
  padding: 70px 20px 30px;
}
.company__inner {
  max-width: 950px;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .company__inner {
    width: 95% !important;
  }
}
.company__block {
  position: relative;
  background: #f2f2f2;
  padding: 0;
  margin-bottom: 40px;
}
.company__block:last-child {
  margin-bottom: 0;
}
.company__title {
  display: block;
  position: absolute;
  font-size: 24px;
  color: #fff;
  background: #1a237e;
  text-align: center;
  width: 288px;
  height: 66px;
  left: -20px;
  margin-top: 30px;
  line-height: 66px;
}
.company__content {
  display: flex;
}
.company__info {
  width: 50%;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.company__list {
  width: 100%;
}
.company__item {
  display: flex;
  padding: 5px 0;
  align-items: flex-end;
}
.company__item:first-child {
  padding-top: 0;
}
.company__item:last-child {
  border-bottom: none;
}
.company__label {
  width: 50px;
  color: #182578;
  font-weight: bold;
  margin-left: 80px;
}
@media screen and (max-width: 575px) {
  .company__label {
    margin-left: 0px;
  }
}
.company__data {
  flex: 1;
  line-height: 1.4;
  color: #182578;
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .company__data {
    font-size: 16px;
  }
}
.company__map {
  width: 52%;
  height: 280px;
}
.company__map iframe {
  filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .company {
    padding: 40px 20px;
  }
  .company__content {
    flex-direction: column;
    padding: 20px;
  }
  .company__info {
    width: 100%;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .company__map {
    width: 100%;
    height: 250px;
  }
  .company__title {
    font-size: 18px;
    letter-spacing: 0;
    padding: 10px 20px;
    width: 250px;
    line-height: 30px;
    height: 50px;
  }
}
.vehicleintroductionpage .page-title__content {
  background: rgba(41, 54, 130, 0.8);
}
.vehicleintroductionpage .page-title__image::after {
  background: rgba(41, 54, 130, 0.8);
}

.vehiclepg {
  padding: 100px 20px 300px;
  margin-top: 100px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .vehiclepg {
    margin-bottom: 80px;
  }
}
.vehiclepg::after {
  content: "";
  position: absolute;
  bottom: -50px; /* topからbottomに変更 */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* 500pxから画面幅に変更 */
  min-width: 500px;
  min-height: 160px;
  background-image: url("../img/vehicleintroduction/bg_pink01.svg");
  background-position: center top; /* 追加 */
  background-size: cover; /* 100% 100%からcoverに変更 */
  background-repeat: no-repeat;
  z-index: 20;
  margin-top: -160px; /* -150pxから-160pxに変更して隙間をなくす */
}
@media screen and (max-width: 575px) {
  .vehiclepg::after {
    background-image: url("../img/vehicleintroduction/bg_pink01_sp.svg");
    width: 100vw;
    min-width: 350px;
    min-height: 70px;
    bottom: -80px;
  }
}
.vehiclepg__inner {
  max-width: 1080px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__inner {
    margin: 0 auto 60px;
  }
  .vehiclepg__inner.is-after-match {
    margin-bottom: 40px;
  }
}
.vehiclepg__content {
  background: #f2f2f2;
  border-radius: 40px;
  padding: 60px;
  position: relative;
}
.vehiclepg__header {
  margin-bottom: 24px;
}
.vehiclepg__title {
  position: absolute;
  display: inline-block;
  background: #1a237e;
  color: #fff;
  font-size: 42px;
  padding: 8px 24px;
  border-radius: 15px;
  margin-top: -100px;
}
.vehiclepg__title span {
  font-size: 28px;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__title span {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .vehiclepg__title {
    margin-top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    text-align: center;
  }
}
.vehiclepg__text p {
  font-size: 18px;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__text p {
    font-size: 14px;
  }
}
.vehiclepg__subtitle {
  font-size: 28px;
  letter-spacing: 1.4px;
  color: #1a237e;
  margin-bottom: 25px;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__subtitle {
    margin-bottom: 5px;
    font-size: 20px;
  }
}
.vehiclepg__body {
  padding: 40px 20px;
}
.vehiclepg__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__main {
    display: block;
  }
}
.vehiclepg__text {
  width: 60%;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__text {
    width: 100%;
  }
}
.vehiclepg__features {
  margin-top: -50px;
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__features {
    width: 100%;
    margin-top: 0px;
    margin-bottom: 30px;
    text-align: center;
  }
}
.vehiclepg__features-image {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .vehiclepg__features-image {
    max-width: 500px;
    text-align: center;
  }
}
.vehiclepg__text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.vehiclepg__features-image {
  width: 100%;
  height: auto;
}
.vehiclepg__images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vehiclepg__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pdfbutton {
  text-align: center;
}

.triangle-button {
  display: inline-flex;
  align-items: center;
  background-color: #1a237e;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  position: relative;
  transition: all 0.3s ease;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.triangle-button .triangle-left,
.triangle-button .triangle-right {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transition: transform 0.3s ease;
}
.triangle-button .triangle-left {
  border-left: 12px solid #fff;
  margin-left: 15px;
  margin-right: 10px;
}
.triangle-button .triangle-right {
  border-right: 12px solid #fff;
  margin-right: 15px;
  margin-left: 10px;
}
.triangle-button:hover .triangle-left {
  transform: translateX(5px);
}
.triangle-button:hover .triangle-right {
  transform: translateX(-5px);
}

@media screen and (max-width: 500px) {
  .vehiclepg {
    padding: 40px 20px;
    margin-top: 150px;
  }
  .vehiclepg__content {
    padding: 24px;
  }
  .vehiclepg__title {
    font-size: 20px;
    padding: 8px 16px;
  }
  .vehiclepg__body {
    flex-direction: column;
    gap: 24px;
  }
  .vehiclepg__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
.usagepg {
  position: relative;
  padding: 0px;
  background-color: #F57A82;
  color: #333;
  margin-bottom: 150px;
}
@media screen and (max-width: 575px) {
  .usagepg {
    margin-bottom: 50px;
  }
}
.usagepg::after {
  content: "";
  position: absolute;
  bottom: -160px; /* topからbottomに変更 */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* 500pxから画面幅に変更 */
  min-width: 500px;
  min-height: 160px;
  background-image: url("../img/vehicleintroduction/bg_pink02.svg");
  background-position: center top; /* 追加 */
  background-size: cover; /* 100% 100%からcoverに変更 */
  background-repeat: no-repeat;
  z-index: 20;
}
@media screen and (max-width: 575px) {
  .usagepg::after {
    background-image: url("../img/vehicleintroduction/bg_pink02_sp.svg");
    width: 100vw;
    min-width: 350px;
    min-height: 70px;
    bottom: -70px; /* topからbottomに変更 */
  }
}
.usagepg__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.usagepg__title {
  text-align: center;
  color: #fff;
  font-size: 42px;
  letter-spacing: 2.1px;
  margin-bottom: 8px;
  font-weight: normal;
}
.usagepg__subtitle {
  text-align: center;
  color: #fff;
  font-size: 21px;
  letter-spacing: 1.05px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.usagepg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.usagepg__item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.usagepg__item-title {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 4px 8px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 22px;
  width: 200px;
  height: 37px;
  display: block;
  text-align: center;
}
.usagepg__image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0px 0px;
  margin-bottom: 16px;
}
.usagepg__text {
  padding: 0px 20px 20px;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 1.8;
  color: #000;
}

@media screen and (max-width: 767px) {
  .usagepg {
    padding: 10px 0;
  }
  .usagepg__inner {
    padding: 0 16px;
  }
  .usagepg__title {
    font-size: 24px;
    margin-bottom: 0px;
  }
  .usagepg__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .usagepg__grid {
    grid-template-columns: 1fr;
    gap: 40px 20px;
  }
  .usagepg__item {
    padding: 16px;
  }
  .usagepg__item-title {
    font-size: 18px;
  }
  .usagepg__text {
    font-size: 14px;
    padding: 0px 0px 20px;
  }
}
.contactpage .page-title__content {
  background: rgba(41, 54, 130, 0.8);
}
.contactpage .page-title__image::after {
  background: rgba(41, 54, 130, 0.8);
}

.contact-form {
  padding: 80px 20px;
  margin-top: 100px;
  background: #fff;
}
.contact-form__inner {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__text {
  text-align: center;
  margin-bottom: 8px;
}
.contact-form__tel {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 575px) {
  .contact-form__tel {
    margin-bottom: 30px;
  }
}

.form__group {
  margin-bottom: 24px;
}
.form__row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.form__label {
  display: flex;
  align-items: center;
  width: 250px;
  flex-shrink: 0;
  color: #182578;
  letter-spacing: 0.9px;
}
.form__required {
  display: inline-block;
  background: #1a237e;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  margin-left: 16px;
  border-radius: 2px;
}
.form__optional {
  display: inline-block;
  background: #757575;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  margin-left: 16px;
  border-radius: 2px;
}
.form__input {
  width: 100%;
  height: 43px;
  padding: 0 16px;
  border: 1px solid #182578;
  font-size: 16px;
}
.form__input:focus {
  outline: none;
  border-color: #1a237e;
}
.form__textarea {
  width: 100%;
  height: 200px;
  padding: 16px;
  border: 1px solid #182578;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical;
}
.form__textarea:focus {
  outline: none;
  color: #182578;
}
.form__button {
  text-align: center;
  margin-top: 40px;
}
.form__submit {
  display: flex; /* flexboxを使用して矢印を配置 */
  align-items: center;
  justify-content: center;
  gap: 8px; /* テキストと矢印の間隔 */
  min-width: 200px;
  padding: 16px 40px;
  border: solid 1px #182578;
  border-radius: 22px;
  width: 205px;
  height: 43px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  position: relative; /* 矢印の位置決めの基準点 */
  transition: all 0.3s ease;
  background-color: #fff;
  color: #182578;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 16px;
  /* 矢印の追加 */
  /* ホバー時のアニメーション */
}
.form__submit::after {
  position: absolute;
  right: 30px; /* 右からの位置を指定 */
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #182578;
  border-right: 1px solid #182578;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.form__submit:hover {
  background-color: #fff;
}
.form__submit:hover::after {
  transform: translateX(7px) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 40px 20px;
  }
  .form__row {
    flex-direction: column;
    gap: 8px;
  }
  .form__label {
    width: 100%;
  }
  .form__submit {
    width: 100%;
  }
}
/* --------------------------------------------
 * 　404
 * -------------------------------------------- */
.page404 {
  text-align: center;
  padding-top: 30svh;
  padding-bottom: 30svh;
}

/* ハンバーガーメニュー */
.header__hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #182578;
  position: absolute;
  transition: all 0.3s;
}

.header__hamburger span:nth-child(1) {
  top: 0;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニューオープン時 */
.header__hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media screen and (max-width: 1000px) {
  .header__hamburger {
    display: block;
  }
  .header__nav {
    padding-top: 0px;
  }
  .header__nav-ja {
    margin-bottom: 0px;
  }
  .header__nav-list li {
    margin-bottom: 10px;
  }
  .header__right {
    position: fixed;
    top: 80px; /* ヘッダーの高さに応じて調整 */
    right: -100%;
    width: 100%;
    height: calc(100vh - 100px);
    background-color: #fff;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.4s ease-in-out;
  }
  .header__right.is-open {
    display: block;
    right: 0;
  }
}
/*# sourceMappingURL=style.css.map */