@charset "UTF-8";
* {
  word-break: break-word;
  box-sizing: border-box;
}

body {
  line-height: 1.8;
  color: #fff;
  background: #23243A;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "Yu Gothic", "YuGothic", sans-serif;
}

p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  color: #fff;
}

a {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  color: #fff;
}
a:hover {
  cursor: pointer;
}

a:hover {
  opacity: 0.7;
}

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

ul,
ol,
li {
  list-style: none;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

table {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

dd,
dt {
  list-style: none;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

.pc-block {
  display: block;
}
@media (max-width: 820px) {
  .pc-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media (max-width: 820px) {
  .sp-block {
    display: block;
  }
}

.follow-bar {
  position: fixed;
  right: 0;
  top: 300px;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  width: 56px;
  height: 200px;
  background: rgb(181, 42, 42);
  padding: 46px 20px 0;
  border-radius: 8px 0 0 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  cursor: pointer;
}
.follow-bar img {
  height: 104px;
}
.follow-bar.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 820px) {
  .follow-bar {
    display: none;
  }
}

.follow-bar-sp {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgb(181, 42, 42);
  color: #fff;
  z-index: 90;
  text-align: center;
  padding: 18px;
}
.follow-bar-sp img {
  width: 100px;
}
@media (max-width: 820px) {
  .follow-bar-sp {
    display: block;
  }
}

.breadcrumbs-wrap__content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 12px 0;
  font-size: 11px;
}

.pager-wrap {
  margin: 40px 0 80px;
  text-align: center;
  padding: 0 12px;
}
@media (max-width: 820px) {
  .pager-wrap {
    margin: 24px 0 60px;
  }
}

.link-arrow {
  position: relative;
  margin: 0 24px 0 0;
}
.link-arrow::after {
  content: url(../img/top/arrow.png);
  position: absolute;
  right: -33px;
  position: absolute;
  transition: transform 0.3s ease;
  top: 50%;
  transform: translateY(-50%) scale(0.5);
}
.link-arrow:hover::after {
  transform: translateX(4px) translateY(-50%) scale(0.5);
}

/* ▼ 下からフェードイン */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.fade-in-up.action {
  opacity: 1;
  transform: translateY(0);
}

/* ▼ 右からフェードイン */
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.7s ease;
  transition-delay: 0.2s;
}
.fade-in-right.action {
  opacity: 1;
  transform: translateX(0);
}

/* ▼ 左からフェードイン */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.7s ease;
  transition-delay: 0.2s;
}
.fade-in-left.action {
  opacity: 1;
  transform: translateX(0);
}

/* ▼ 拡大しながらフェードイン */
.fade-in-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-zoom.action {
  opacity: 1;
  transform: scale(1);
}

.fade-in-js-side {
  opacity: 0;
  /* 透明 */
  transform: translateY(30px);
  /* 少し下にずらしておく（任意） */
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.fade-in-js-side.action {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置に */
}

.fade-in-onload {
  opacity: 0;
  animation: fadeInOnLoad 0.8s ease forwards;
  animation-delay: 2.5s;
  /* 表示されてから1秒待つ */
}

@keyframes fadeInOnLoad {
  to {
    opacity: 1;
  }
}
.fade-in-onload02 {
  opacity: 0;
  animation: fadeInOnLoad02 1.5s ease forwards;
  animation-delay: 2.8s;
  /* 表示されてから1秒待つ */
}

@keyframes fadeInOnLoad02 {
  to {
    opacity: 1;
  }
}
.page-style__block {
  margin: 0 0 40px;
}
.page-style .aligncenter {
  display: block;
  margin: 0 auto;
}
.page-style .alignright {
  float: right;
}
.page-style .alignleft {
  float: left;
}
.page-style img {
  width: auto;
}
.page-style p {
  margin: 0 0 24px;
}
.page-style h1 {
  position: relative;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 12px;
}
@media (max-width: 820px) {
  .page-style h1 {
    font-size: 20px;
  }
}
.page-style h1:after {
  content: "";
  width: 110px;
  height: 3px;
  display: inline-block;
  background-color: #2A52BE;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.page-style h2 {
  font-size: 22px;
  margin: 24px 0 8px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .page-style h2 {
    font-size: 20px;
  }
}
.page-style h3 {
  font-size: 20px;
  margin: 24px 0 4px;
}
@media (max-width: 520px) {
  .page-style h3 {
    font-size: 18px;
  }
}
.page-style a {
  text-decoration: underline;
}
.page-style ol {
  margin: 0 0 12px 24px;
  line-height: 24px;
}
.page-style ol li {
  list-style: decimal;
}
.page-style ul {
  margin: 0 0 12px 24px;
  line-height: 24px;
}
.page-style ul li {
  list-style: disc;
}

/* 画面固定のオーバーレイ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #23243A;
  /* 好みで変更可 */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}
#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader .preloader__logo {
  width: clamp(120px, 20vw, 140px);
  height: auto;
  display: block;
}

/* ローディング中はスクロールを止めたい場合 */
html.preload-lock,
body.preload-lock {
  overflow: hidden;
}

/* 低速アニメーション無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  #preloader {
    transition: none;
  }
}
/* =================================
header
 ================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: background-color 0.4s ease;
}
.header.header-scroll-js {
  background-color: transparent;
}
.header.header-scroll-js.scrolled {
  background-color: rgba(197, 46, 46, 0.9);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 12px;
  max-width: 1240px;
  margin: 0 auto;
}
.header__ttl-wrap {
  max-width: 300px;
}
@media (max-width: 1120px) {
  .header__ttl-wrap {
    max-width: 240px;
  }
}
@media (max-width: 820px) {
  .header__ttl-wrap {
    max-width: 200px;
    margin: 10px 0 0;
  }
}
.header__center-logo {
  max-width: 100px;
}
@media (max-width: 820px) {
  .header__center-logo {
    display: none;
  }
}
@media (max-width: 820px) {
  .header__menu-wrap {
    display: none;
  }
}
.header__menu-inner {
  display: flex;
  gap: 24px;
}
@media (max-width: 1120px) {
  .header__menu-inner {
    gap: 12px;
  }
}
.header__menu {
  font-weight: 700;
  font-size: 14px;
}
.header__btn-wrap {
  display: none;
}
@media (max-width: 820px) {
  .header__btn-wrap {
    display: block;
    cursor: pointer;
    z-index: 99;
    top: 14px;
    right: 12px;
    position: absolute;
    width: 24px;
  }
}

.header-sp {
  opacity: 0;
  transition: all 0.3s;
  transform: translate(100%, 0);
  z-index: 101;
  position: fixed;
  top: -4px;
  right: 0;
  padding: 80px 12px 0 40px;
  background: #23243A;
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
}
.header-sp.active {
  opacity: 1;
  transition: all 0.3s;
  transform: translate(0, 3px);
  z-index: 100;
}
.header-sp__btn-img {
  width: 24px;
  display: block;
  cursor: pointer;
  z-index: 99;
  top: 14px;
  right: 12px;
  position: absolute;
}
.header-sp__menu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.header-sp__menu-item--margin {
  margin: 0 0 24px;
}

/* =================================
メインビジュアル
 ================================= */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 820px) {
  .main-visual {
    height: auto;
    min-height: 700px;
  }
}
@media (max-width: 520px) {
  .main-visual {
    min-height: 500px;
  }
}
.main-visual__movie-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 820px) {
  .main-visual__movie-wrap {
    position: relative;
    height: auto;
  }
}
.main-visual__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 820px) {
  .main-visual__movie {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.main-visual__lead {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.main-visual__dec {
  position: absolute;
  bottom: -1px;
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .main-visual__dec {
    bottom: -50px;
  }
}
.main-visual__dec-sp {
  position: absolute;
  bottom: -1px;
  width: 100%;
}
.main-visual__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: 200px;
  animation: floatY 2s ease-in-out infinite;
}
@media screen and (max-width: 1300px) {
  .main-visual__scroll {
    width: 180px;
  }
}
@media (max-width: 1120px) {
  .main-visual__scroll {
    width: 100px;
    transform: translate(-50%, 2%);
  }
}
@media (max-width: 820px) {
  .main-visual__scroll {
    width: 120px;
    transform: translate(-50%, 50%);
    z-index: 2;
  }
}
@keyframes floatY {
  0% {
    bottom: 5%;
    opacity: 1;
  }
  50% {
    bottom: 6.5%;
    opacity: 0.6;
  }
  100% {
    bottom: 5%;
    opacity: 1;
  }
}

/* =================================
お知らせ
 ================================= */
.top-info {
  padding: 40px 12px 160px;
}
@media (max-width: 820px) {
  .top-info {
    padding: 40px 12px;
  }
}
.top-info__inner {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 12px;
}
@media (max-width: 820px) {
  .top-info__inner {
    padding: 32px 16px;
  }
}
.top-info__ttl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 24px;
  padding: 0 4px;
}
@media (max-width: 820px) {
  .top-info__ttl-wrap {
    justify-content: center;
  }
}
.top-info__ttl {
  max-width: 460px;
}
@media (max-width: 820px) {
  .top-info__ttl {
    max-width: 180px;
  }
}
@media (max-width: 820px) {
  .top-info__link {
    display: none;
  }
}
.top-info__link-sp {
  display: none;
}
@media (max-width: 820px) {
  .top-info__link-sp {
    display: block;
    text-align: right;
    margin: 0 27px 0 0;
  }
}
@media (max-width: 820px) {
  .top-info__article-wrap {
    margin: 0 0 12px;
  }
}
.top-info__article {
  border-bottom: #43445F 1px solid;
  padding: 18px 4px 18px 4px;
  position: relative;
}
.top-info__article:first-of-type {
  border-top: #43445F 1px solid;
}
@media (max-width: 820px) {
  .top-info__article {
    padding: 12px 4px 12px 4px;
  }
}
.top-info__article-link {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 820px) {
  .top-info__article-link {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.top-info__date {
  white-space: nowrap;
  color: #C52E2E;
}
.top-info__article-ttl {
  flex: 1;
  line-height: 1.2;
}
@media (max-width: 820px) {
  .top-info__article-ttl {
    flex: none;
    width: 100%;
  }
}
.top-info__arrow {
  margin-left: auto;
  width: 24px;
}

/* =================================
事業内容
 ================================= */
.top-business {
  margin: 0 0 120px;
}
@media (max-width: 820px) {
  .top-business {
    margin: 0 0 60px;
  }
}
.top-business__flex {
  display: flex;
}
@media (max-width: 820px) {
  .top-business__flex {
    justify-content: center;
  }
}
.top-business__img {
  width: 60%;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-business__img {
    display: none;
  }
}
.top-business__img-sp {
  display: none;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-business__img-sp {
    display: block;
  }
}
.top-business__ttl {
  max-width: 260px;
  margin: 0 0 80px 40px;
}
@media (max-width: 820px) {
  .top-business__ttl {
    max-width: 200px;
    margin: 0 auto 32px;
  }
}
.top-business__content {
  background: rgba(35, 36, 58, 0.9);
  margin: 0 0 0 -140px;
  padding: 12px 80px 12px 80px;
  border-radius: 24px 0 0 24px;
}
@media (max-width: 820px) {
  .top-business__content {
    margin: 0 auto;
    max-width: 400px;
    padding: 12px 12px 12px 12px;
  }
}
.top-business__content-text {
  position: relative;
  padding: 32px 0 32px 100px;
  border-bottom: #43445F 1px solid;
  max-width: 400px;
}
.top-business__content-text:last-of-type {
  border-bottom: none;
}
@media (max-width: 820px) {
  .top-business__content-text {
    padding: 32px 0 32px 60px;
  }
}
.top-business__content-text::before {
  content: url(../img/top/business_1.png);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.35);
}
@media (max-width: 820px) {
  .top-business__content-text::before {
    transform: scale(0.3);
    left: -12px;
  }
}
.top-business__content-text--2::before {
  content: url(../img/top/business_2.png);
}
.top-business__content-text--3::before {
  content: url(../img/top/business_3.png);
}

/* =================================
選ばれる理由
 ================================= */
.top-strengths {
  margin: 0 0 120px;
}
@media (max-width: 820px) {
  .top-strengths {
    margin: 0 0 60px;
  }
}
.top-strengths__flex {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 820px) {
  .top-strengths__flex {
    justify-content: center;
  }
}
.top-strengths__img {
  width: 60%;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-strengths__img {
    display: none;
  }
}
.top-strengths__img-sp {
  display: none;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-strengths__img-sp {
    display: block;
    margin: 0 0 18px 18px;
  }
}
.top-strengths__text-wrap {
  position: relative;
  margin: 0 -140px 0 0;
}
@media (max-width: 820px) {
  .top-strengths__text-wrap {
    margin: 0;
    margin: -40px 0 0 0;
  }
}
.top-strengths__ttl {
  max-width: 400px;
  margin: 0 0 80px;
}
@media (max-width: 820px) {
  .top-strengths__ttl {
    max-width: 280px;
    margin: 0 auto 32px;
  }
}
.top-strengths__content {
  background: rgba(35, 36, 58, 0.9);
  padding: 12px 80px 12px 0;
  border-radius: 0 24px 24px 0;
}
@media (max-width: 820px) {
  .top-strengths__content {
    width: 95%;
    margin: -64px 0 0 0;
    padding: 24px 12px 40px 12px;
    position: relative;
  }
}
.top-strengths__content-lead {
  font-size: 24px;
  margin: 0 0 24px;
}
.top-strengths__content-text {
  max-width: 400px;
}
@media (max-width: 820px) {
  .top-strengths__content-text {
    max-width: 700px;
  }
}

/* =================================
造船実績
 ================================= */
.top-achievement__flex {
  display: flex;
  margin: 0 0 40px;
}
@media (max-width: 820px) {
  .top-achievement__flex {
    justify-content: center;
  }
}
.top-achievement__img {
  width: 60%;
  overflow: hidden;
}
@media (max-width: 820px) {
  .top-achievement__img {
    display: none;
    overflow: hidden;
  }
}
.top-achievement__img-sp {
  display: none;
}
@media (max-width: 820px) {
  .top-achievement__img-sp {
    display: block;
    margin: 0 18px 0 0;
  }
}
.top-achievement__ttl {
  max-width: 260px;
  margin: 0 0 80px 40px;
}
@media (max-width: 820px) {
  .top-achievement__ttl {
    max-width: 200px;
    margin: 0 auto 32px;
  }
}
.top-achievement__content {
  background: rgba(35, 36, 58, 0.9);
  margin: 0 0 0 -140px;
  padding: 20px 80px 20px 100px;
  border-radius: 24px 0 0 24px;
}
@media (max-width: 820px) {
  .top-achievement__content {
    width: 95%;
    margin: -64px 0 0 auto;
    padding: 24px 12px 40px 12px;
    position: relative;
  }
}
.top-achievement__content-text {
  font-size: 20px;
  text-align: right;
  padding: 16px 0 16px 40px;
  border-bottom: #43445F 1px solid;
  max-width: 400px;
}
@media (max-width: 820px) {
  .top-achievement__content-text {
    text-align: left;
    padding: 8px 0;
  }
}
.top-achievement__content-text:last-of-type {
  border-bottom: none;
}
.top-achievement__content-text span {
  font-size: 14px;
}
@media (max-width: 1120px) {
  .top-achievement__content-text span {
    display: block;
  }
}

/* =================================
会社概要
 ================================= */
.top-profile {
  padding: 8px 12px 500px;
  background-color: #fff;
  background-image: url(../img/top/profile-bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: relative;
}
@media (max-width: 820px) {
  .top-profile {
    padding: 8px 12px 350px;
    background-image: url(../img/top/profile-bg-sp.jpg);
  }
}
@media (max-width: 520px) {
  .top-profile {
    padding: 8px 12px 200px;
  }
}
.top-profile__inner {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 12px;
}
@media (max-width: 820px) {
  .top-profile__inner {
    padding: 32px 16px;
  }
}
.top-profile__ttl {
  max-width: 460px;
  margin: 0 0 80px;
}
@media (max-width: 820px) {
  .top-profile__ttl {
    max-width: 180px;
    margin: -40px auto 40px;
  }
}
.top-profile__list {
  margin: 0;
  padding: 0;
}
.top-profile__row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 820px) {
  .top-profile__row {
    gap: 8px;
  }
}
.top-profile__label {
  flex: 0 0 10em;
  max-width: 10em;
  font-weight: 700;
  color: #111;
}
@media (max-width: 820px) {
  .top-profile__label {
    flex: 0 0 5em;
  }
}
.top-profile__value {
  flex: 1 1 auto;
  color: #111;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.top-profile__dec {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* =================================
Googleマップ
 ================================= */
.top-map {
  background-color: #C52E2E;
  padding: 0 12px 0;
}
@media (max-width: 820px) {
  .top-map {
    padding: 0 12px 0;
  }
}
.top-map__ttl {
  max-width: 240px;
  margin: -40px auto 64px;
  position: relative;
}
@media (max-width: 820px) {
  .top-map__ttl {
    max-width: 180px;
    margin: 0px auto 40px;
  }
}
.top-map__map-wrap {
  max-width: 1040px;
  margin: 0 auto;
}
.top-map__map {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 40.25%;
  overflow: hidden;
}
.top-map__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
@media (max-width: 820px) {
  .top-map__map iframe {
    border-radius: 12px;
  }
}

/* =================================
footer
 ================================= */
.footer {
  position: relative;
  background-color: #C52E2E;
  padding: 80px 16px 0;
}
@media (max-width: 820px) {
  .footer {
    padding: 40px 16px 80px;
  }
}
.footer__logo {
  max-width: 100px;
  margin: 0 auto 32px;
  display: block;
}
.footer__ttl {
  max-width: 300px;
  margin: 0 auto 4px;
}
.footer__text {
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 820px) {
  .footer__text {
    margin: 0 0 24px;
  }
}
.footer__text span {
  display: inline-block;
  margin: 0 0 0 12px;
}
@media (max-width: 820px) {
  .footer__text span {
    display: block;
    margin: 0;
  }
}
.footer__link-wrap {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 0 0 80px;
}
@media (max-width: 820px) {
  .footer__link-wrap {
    margin: 0 0 64px;
  }
}
.footer__bottom {
  font-size: 12px;
  text-align: center;
  padding: 12px;
  background-color: #C52E2E;
  color: #fff;
}

/* =================================
下層共通
 ================================= */
.subpage.main {
  margin: 90px 0 0;
}
@media (max-width: 820px) {
  .subpage.main {
    margin: 50px 0 0;
  }
}
.subpage__inner {
  padding: 80px 16px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .subpage__inner {
    padding: 40px 16px;
  }
}
.subpage__ttl-wrap {
  padding: 40px 16px;
  border-bottom: #43445F 1px solid;
}
.subpage__ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .subpage__ttl {
    font-size: 26px;
    text-align: center;
  }
}
.subpage__ttl span {
  display: block;
  color: #141414;
  font-size: 24px;
}
@media (max-width: 520px) {
  .subpage__ttl span {
    font-size: 14px;
  }
}
.subpage__date {
  max-width: 960px;
  margin: 0 auto;
  display: block;
  font-size: 14px;
  padding: 0 4px;
}
.subpage__main {
  padding: 40px 12px 80px;
}
@media (max-width: 820px) {
  .subpage__main {
    padding: 24px 12px 40px;
  }
}
.subpage__content {
  max-width: 880px;
  margin: 0 auto;
}
.subpage__btn {
  display: block;
  width: 200px;
  margin: 0 auto 80px;
  background-color: #fff;
  border: #C52E2E 2px solid;
  padding: 10px 20px;
  border-radius: 24px;
}
.subpage__btn a {
  color: #141414;
  display: block;
}

/* =================================
お問い合わせ
 ================================= */
.page-contact__form-wrap {
  max-width: 600px;
  margin: 0 auto;
  /* チェックボックス用の label はインライン表示に戻す */
}
.page-contact__form-wrap label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.page-contact__form-wrap label span {
  display: inline-block;
  background: #2A52BE;
  color: #fff;
  font-size: 12px;
  padding: 0px 6px;
  border-radius: 3px;
  margin-right: 6px;
}
.page-contact__form-wrap input[type=text],
.page-contact__form-wrap input[type=tel],
.page-contact__form-wrap input[type=email],
.page-contact__form-wrap textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 24px;
}
.page-contact__form-wrap textarea {
  height: 120px;
  resize: vertical;
}
.page-contact__form-wrap a {
  color: #2A52BE;
  text-decoration: underline;
}
.page-contact__form-wrap input[type=checkbox] + label {
  display: inline;
  font-weight: normal;
  margin-left: 4px;
}
.page-contact__form-wrap input[type=submit] {
  display: block;
  border: #C52E2E 3px solid;
  background-color: #fff;
  padding: 12px;
  border-radius: 24px;
  width: 200px;
  text-align: center;
  margin: 60px auto 0;
  color: #141414;
}
.page-contact__form-wrap .checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 24px 0;
  justify-content: center;
}
.page-contact__form-wrap .checkbox-wrap label {
  margin: 0;
}
.page-contact__form-wrap .checkbox-text {
  margin: 24px 0 0;
  text-align: center;
  line-height: 2;
}
.page-contact__form-group {
  margin: 0 0 24px;
}
.page-contact__note {
  font-size: 12px;
  color: #c5c5c5;
}/*# sourceMappingURL=style.css.map */