@charset "UTF-8";
/********************************************
 * modules
*********************************************/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	全体のベースとなるscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- 電話番号ボタン（サービス料金／フッターで共通） --- */
.c-tel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 33rem;
}
.c-tel-btn__label {
  color: #353535;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
.c-tel-btn__label--light {
  color: #fff;
}
.c-tel-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.6rem;
  border-radius: 0.5rem;
  background-color: #013593;
  color: #fff831;
  font-family: "Lato", sans-serif, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

.delayTime02 {
  animation-delay: 0.2s;
}

.delayTime04 {
  animation-delay: 0.4s;
}

.delayTime06 {
  animation-delay: 0.6s;
}

.delayTime08 {
  animation-delay: 0.8s;
}

/* --- fadeUp --- */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- fadeLeft --- */
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  opacity: 0;
  animation-name: fadeLeftAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* --- fadeRight --- */
.fadeRightTrigger {
  opacity: 0;
}

.fadeRight {
  opacity: 0;
  animation-name: fadeRighttAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}

@keyframes fadeRighttAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	ヘッダーのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #013593;
  transition: box-shadow 0.3s ease;
}
.general__header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 78rem;
  height: 6.4rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.general__header__logo img {
  display: block;
  width: 12.1rem;
  height: auto;
}
.general__header__hamburger {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
}
.general__header__hamburger__bar {
  position: absolute;
  top: 0.6rem;
  left: 0.3rem;
  width: 1.8rem;
  height: 0.2rem;
  background-color: #fff;
  border-radius: 0.1rem;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.general__header__hamburger__bar:nth-child(2) {
  top: 1.1rem;
}
.general__header__hamburger__bar:nth-child(3) {
  top: 1.6rem;
}
.general__header__hamburger.active .general__header__hamburger__bar:nth-child(1) {
  top: 1.1rem;
  transform: rotate(45deg);
}
.general__header__hamburger.active .general__header__hamburger__bar:nth-child(2) {
  opacity: 0;
}
.general__header__hamburger.active .general__header__hamburger__bar:nth-child(3) {
  top: 1.1rem;
  transform: rotate(-45deg);
}
.general__header.headerBgColorScroll {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* --- グローバルナビ --- */
.general__nav {
  position: fixed;
  top: 6.4rem;
  left: 0;
  z-index: 99;
  width: 100%;
  max-height: calc(100% - 6.4rem);
  overflow-y: auto;
  background-color: #013593;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.general__nav.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.general__nav__list {
  max-width: 78rem;
  margin: 0 auto;
}
.general__nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.general__nav__item a {
  display: block;
  padding: 1.6rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (min-width: 1025px) {
  .general__header__inner {
    height: auto;
    padding: 2rem 1.6rem;
  }
  .general__header__hamburger {
    display: none;
  }
  .general__nav {
    position: static;
    z-index: auto;
    width: auto;
    max-height: none;
    overflow: visible;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: none;
  }
  .general__nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: none;
    margin: 0;
  }
  .general__nav__item {
    border-bottom: none;
  }
  .general__nav__item a {
    padding: 0;
    font-size: 1.4rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	フッターのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__footer {
  background-color: #212121;
}
.general__footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 78rem;
  gap: 4rem;
  margin: 0 auto;
  padding: 4rem 0;
}
.general__footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.general__footer__title {
  padding: 1.6rem;
}
.general__footer__title img {
  display: block;
  height: 2.3rem;
  width: auto;
}
.general__footer__nav {
  width: 100%;
  max-width: 35.6rem;
  margin: 0 auto;
  border-top: 1px solid #404040;
}
.general__footer__nav__item {
  border-bottom: 1px solid #404040;
}
.general__footer__nav__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
}
.general__footer__nav__item a img {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
}
.general__footer__tel-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  padding: 0 1.6rem;
}
.general__footer__copyright {
  padding: 2rem 1.6rem;
  border-top: 1px solid #404040;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 700px) {
  .general__footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 3.2rem;
  }
  .general__footer__block {
    width: auto;
    flex: 1 1 0;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	パンくずのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.general__breadcrumb__inner {
  list-style: none;
  width: 100%;
  margin: 0.5rem 0 0 0;
  padding: 1rem;
  overflow: hidden;
  background: #f4f4f4;
  color: #474747;
  font-size: 1.2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.general__breadcrumb__inner li {
  display: inline;
  list-style: none;
  margin: 0 0.5rem;
}
.general__breadcrumb__inner a {
  border-bottom: none !important;
  color: #474747;
  text-decoration: none;
}
.general__breadcrumb__inner a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 600px) {
  .general__breadcrumb {
    max-width: 780px;
    margin: 0 auto;
  }
  .general__breadcrumb__inner {
    margin: 1rem 0 0 0;
    padding: 2rem;
    font-size: 1.8rem;
  }
  .general__breadcrumb__inner li {
    margin: 0 1rem;
  }
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	フォーム
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/********************************************
 * pages
*********************************************/
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*
*	トップページのscss
*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.front {
  overflow: hidden;
}

/* --- セクション共通の内側ラッパー --- */
.front__section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 4rem 0;
}

/* --- セクション見出し共通 --- */
.front__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
}
.front__title__en {
  color: #013593;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.front__title__ja {
  color: #353535;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.front__title__ja--lg {
  font-size: 3rem;
}

.front__hero {
  position: relative;
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
}
.front__hero__figure {
  aspect-ratio: 390/446;
  overflow: hidden;
}
.front__hero__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front__hero__btn {
  position: absolute;
  top: 83.5%;
  left: 4.9%;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1rem;
  background-color: rgba(255, 252, 0, 0.9);
  color: #000;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}
.front__hero__btn__icon {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  transform: rotate(-90deg);
}
.front__hero__btn__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.front__area {
  background-color: #f5f5f5;
}
.front__area__figure {
  width: 100%;
  aspect-ratio: 390/260;
}
.front__area__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front__area__text {
  width: 100%;
  padding: 1.6rem;
  color: #353535;
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
}
.front__area__link {
  display: block;
  width: 100%;
  padding: 2.4rem 1.6rem;
  color: #236fba;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  text-decoration: underline;
  text-underline-position: from-font;
}

.front__about {
  background-color: #fff;
}
.front__about__heading {
  width: 100%;
  padding: 1.6rem;
  color: #013593;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.front__about__text {
  width: 100%;
  max-width: 33rem;
  padding: 1.6rem;
  color: #353535;
  font-size: 1.5rem;
  line-height: 1.75;
}
.front__about__text strong {
  color: #013593;
}
.front__about__figure {
  width: 100%;
  max-width: 32.6rem;
  aspect-ratio: 331/225;
  margin: 0 auto;
  padding: 0 3.2rem;
}
.front__about__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front__divider {
  background-color: #fff;
}
.front__divider img {
  display: block;
  width: 100%;
  max-width: 78rem;
  height: auto;
  margin: 0 auto;
}

.front__service {
  background-color: #f5f5f5;
}
.front__service__heading {
  width: 100%;
  padding: 1.6rem;
  color: #353535;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.front__service__text {
  width: 100%;
  max-width: 33rem;
  padding: 1.6rem;
  color: #353535;
  font-size: 1.5rem;
  line-height: 1.75;
}
.front__service__text strong {
  font-weight: 700;
}
.front__service__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  padding: 1.6rem;
}
.front__service__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  max-width: 33rem;
  aspect-ratio: 330/225;
  padding: 1.6rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #c4c4c4;
  background-position: center;
  background-size: cover;
}
.front__service__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.41) 30%, rgba(102, 102, 102, 0.11) 100%);
}
.front__service__item--construction {
  background-image: url(../images/front/service-construction.png);
}
.front__service__item--vessel {
  background-image: url(../images/front/service-vessel.png);
}
.front__service__item__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.75;
}

.front__price {
  background-color: #fff;
}
.front__price__heading {
  width: 100%;
  padding: 1.6rem;
  color: #013593;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.front__price__text {
  width: 100%;
  max-width: 33rem;
  padding: 1.6rem;
  color: #353535;
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
}
.front__price__tel-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 33rem;
  padding: 0 1.6rem;
}

.front__contact {
  background-color: #fff;
}
.front__contact__company {
  width: 100%;
  padding: 1.6rem;
  color: #353535;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
}
.front__contact__rows {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}
.front__contact__row {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.front__contact__row-heading {
  padding: 0 1.6rem;
  color: #013593;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.front__contact__row-text {
  padding: 0 1.6rem;
  color: #353535;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
}
.front__contact__map {
  display: block;
  width: 100%;
  padding: 0 1.6rem;
}
.front__contact__map img {
  display: block;
  width: 100%;
  aspect-ratio: 310/264;
  object-fit: cover;
}

@media screen and (min-width: 600px) {
  .front__area__text,
  .front__about__text,
  .front__service__text,
  .front__price__text,
  .front__contact__company,
  .front__contact__row-text {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .front__section-inner {
    padding: 6rem 1.6rem;
  }
  .front__title__ja {
    font-size: 3.4rem;
  }
  .front__title__ja--lg {
    font-size: 3.6rem;
  }
  .front__about__text,
  .front__service__text,
  .front__price__text {
    max-width: 60rem;
  }
  .front__about__figure {
    max-width: 60rem;
  }
  .front__service__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .front__service__item {
    width: calc(50% - 0.8rem);
  }
  .front__price__tel-list {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  .front__contact__rows {
    flex-direction: row;
    justify-content: center;
  }
  .front__contact__row {
    flex: 1;
  }
}

/*# sourceMappingURL=common.css.map */
