@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 600px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}
a {
  color: #333333;
}

a:hover {
  cursor: pointer;
  opacity: 0.5;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

ul,
ol,
li {
  list-style: none;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  line-height: 1.8;
}

th,
td {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.flex-1 {
  display: flex;
}

@media (max-width: 600px) {
  .pd-1 {
    padding: 0 1em;
  }
}
/* アニメーション----------- */
/* ホバーで拡大する共通クラス */
.hover-scale {
  display: inline-block; /* 必要に応じて調整 */
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05); /* 少し拡大 */
}

/* 共通スクロールアニメーション */
/* 左からイン */
.left-in {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

/* 右からイン */
.right-in {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

/* 下からイン */
.up-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

/* 表示時 */
.left-in.show,
.right-in.show,
.up-in.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.inner-200 {
  width: min(100%, 200px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-300 {
  width: min(100%, 300px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-400 {
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-500 {
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-600 {
  width: min(100%, 600px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-700 {
  width: min(100%, 700px);
  margin: 0 auto;
  padding: 0 1em;
}

@media (max-width: 600px) {
  .inner-700 {
    padding: 0;
  }
}
.inner-800 {
  width: min(100%, 800px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-900 {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 1em;
}

@media (max-width: 600px) {
  .inner-900 {
    padding: 0;
  }
}
.inner-1000 {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-1100 {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-1200 {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 1em;
}

@media (max-width: 600px) {
  .inner-1000 {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .inner-1200 {
    padding: 0;
  }
}
.inner-1300 {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-1350 {
  width: min(100%, 1350px);
  margin: 0 auto;
  padding: 0 1em;
}

.inner-1600 {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0 1em;
}

.w-100 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
}

.w-95 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0 2%;
}

@media (max-width: 768.98px) {
  .w-95 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 0;
  }
}
.w-90 {
  width: 90% !important;
  max-width: 90% !important;
  margin: 0 auto;
}

.w-80 {
  width: 80% !important;
  max-width: 80% !important;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .w-80 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
}

.w-50 {
  width: 50% !important;
  max-width: 50% !important;
  margin: 0 auto;
}

/* === デバイス別ミックスイン === */
/*　iPad　*/
/*　iPad Air 縦　820px*/
/*　iPad Pro　*/
/*　Galaxy Fold　*/
/* === デバイス別表示用クラス === */
.sp-only,
.tab-only,
.pc-only {
  display: none;
}

@media (max-width: 620px) {
  .sp-only {
    display: block;
  }
  .tab-only,
  .pc-only {
    display: none;
  }
}
@media (min-width: 621px) and (max-width: 1023px) {
  .tab-only {
    display: block;
  }
  .sp-only,
  .pc-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .pc-only {
    display: block;
  }
  .sp-only,
  .tab-only {
    display: none;
  }
}
body #to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #333;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #to-top::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
}
body #to-top::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background-color: #fff;
}
body #to-top.show {
  opacity: 1;
  pointer-events: auto;
}
body #to-top:hover {
  background: #555;
  transform: translateY(-4px);
}

/* ベース */
table.table {
  width: 100%;
  text-align: left;
  border-spacing: 10px;
  background-color: #fff;
}
table.table th {
  padding: 1em 0 1em 4em;
  border: 1px #727171 dotted;
  border-width: 1px 0;
  line-height: 1.8;
  text-align: center;
  vertical-align: top;
  font-size: 16px;
  font-weight: normal;
  width: 35%;
}
table.table th a {
  text-decoration: none;
  color: #333;
}
table.table td {
  padding: 1em 0;
  border: 1px #727171 dotted;
  border-width: 1px 0;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
  background-color: #fff;
  word-break: break-all;
  font-size: 16px;
}

/* ----------------------
   データ用
---------------------- */
.table--data th {
  background-color: #1f426a;
  color: #fff;
}
@media (max-width: 768px) {
  .table--data {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ----------------------
   フォーム用
---------------------- */
.table--form th {
  text-align: right;
  vertical-align: middle;
  background-color: #f9f9f9;
}
.table--form td {
  background-color: #fff;
}
.table--form input,
.table--form textarea,
.table--form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #727171;
  border-radius: 4px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .table--form th,
  .table--form td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .table--form th {
    margin-top: 10px;
    background: none;
  }
}

@keyframes textOutlineAnime {}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: background-color 0.1s ease;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
@media (max-width: 400px) {
  header {
    padding: 0 10px;
  }
}
header.scrolled {
  background-color: rgb(255, 255, 255);
}
header .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
header .logo {
  width: 30%;
  padding-left: 100px;
}
@media (max-width: 1200px) {
  header .logo {
    padding-left: 10px;
  }
}
@media (max-width: 400px) {
  header .logo {
    width: 80%;
    padding-left: 0 !important;
  }
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
@media (max-width: 400px) {
  header .logo img {
    max-width: 230px;
  }
}
@media (max-width: 768.98px) {
  header .logo {
    padding-left: 20px;
  }
}

#menubar {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  padding: 30px 100px 0 0;
}
@media (max-width: 1200px) {
  #menubar {
    padding: 30px 10px 0 0;
  }
}
@media (max-width: 768.98px) {
  #menubar {
    padding: 30px 20px 0 0;
  }
}
#menubar ul {
  display: flex;
}
#menubar ul li a {
  position: relative;
  display: block;
  padding: 10px 15px;
  color: #1f426a;
  font-weight: bold;
  text-decoration: none;
}
#menubar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #f84a2a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#menubar ul li a.is-active::after {
  transform: scaleX(1);
}

.header-contact {
  margin-left: 20px;
}
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #f84a2a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-contact.is-active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
}

@media (max-width: 1023.98px) {
  #menubar {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .hamburger {
    display: flex;
  }
  .hamburger .menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 16px;
  }
  .hamburger .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1f426a;
    margin: 4px 0;
    transition: all 0.3s;
    transform-origin: center;
  }
  .hamburger input[type=checkbox]:checked + .menu-icon span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .hamburger input[type=checkbox]:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .hamburger input[type=checkbox]:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hamburger .sp-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 200px;
    background-color: #1f426a;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 999;
  }
  .hamburger .sp-menu ul {
    list-style: none;
  }
  .hamburger .sp-menu ul li {
    border-bottom: 1px solid #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .hamburger .sp-menu ul li a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }
  .hamburger .sp-menu ul li a:hover {
    opacity: 0.8;
  }
  .hamburger input[type=checkbox]:checked ~ .sp-menu {
    max-height: 500px;
  }
  .hamburger input[type=checkbox]:checked ~ .sp-menu li {
    opacity: 1;
    transform: translateY(0);
  }
  .hamburger input[type=checkbox] {
    display: none;
  }
}
.link-section {
  margin-top: 50px;
}

.link-box {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 400px) {
  .link-box {
    flex-direction: column;
    padding: 20px;
    margin-top: 15px;
  }
}
.link-box h4 {
  text-align: left;
  margin-top: 10px;
}
@media (max-width: 768.98px) {
  .link-box h4 {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.link-box .flex-1 {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.link-box .flex-1.show {
  opacity: 1;
  transform: translateY(0);
}
.link-box .flex-1 a img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.link-box .flex-1 a:hover img {
  transform: scale(1.05) translateY(-5px);
}

.link-content .box-ttl {
  text-align: left;
  margin-top: 10px;
  padding: 0 1em;
}

.wave-line {
  margin-top: 30px;
  overflow: hidden;
  display: inline-block;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 768.98px) {
  .wave-line {
    margin-top: 0;
  }
}

.wave-line img {
  display: block;
  animation: wave 3s ease-in-out infinite;
  /*   animation: wave 3s ease-in-out 1;  */
}

/* 波のようにゆらゆら */
@keyframes wave {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.waveStrong img {
  display: block;
  width: 100%;
  animation: waveSmooth 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
  transform-origin: center bottom;
}

@keyframes waveSmooth {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  50% {
    transform: rotate(6deg) translateY(-12px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}
footer {
  color: #fff;
  text-align: center;
  margin-top: 80px;
}
footer .footer-logo {
  margin-top: 25px;
}
footer .footer-logo img {
  width: 90%;
  max-width: 560px;
  margin: 0 auto 20px;
}
footer .footer-in {
  padding: 50px 0;
}
@media (max-width: 400px) {
  footer .footer-in {
    padding: 1em;
  }
}
footer .footer-in .footer-nav,
footer .footer-in .footer-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
@media (max-width: 400px) {
  footer .footer-in .footer-nav,
  footer .footer-in .footer-info {
    gap: 15px;
    margin-top: 20px;
  }
}
footer .footer-in .footer-nav--link,
footer .footer-in .footer-info--link {
  margin-top: 10px;
}
@media (max-width: 400px) {
  footer .footer-in .footer-nav--link,
  footer .footer-in .footer-info--link {
    margin-top: 20px;
  }
}
footer .footer-in .footer-nav a,
footer .footer-in .footer-info a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 3px;
}
footer .footer-in .footer-nav a:hover,
footer .footer-in .footer-info a:hover {
  color: #029fd4;
  opacity: 0.8;
}
footer .footer-in .footer-nav p,
footer .footer-in .footer-info p {
  color: #333;
}
footer small {
  display: block;
  color: #333;
}
@media (max-width: 400px) {
  footer small {
    margin-top: 30px;
  }
}
footer .copy-right {
  font-size: 16px;
  margin-top: 50px;
  background-color: #029fd4;
  padding: 20px 10px;
}
@media (max-width: 400px) {
  footer .copy-right {
    margin-top: 10px;
  }
}

.mv {
  position: relative;
  width: 100%;
}
.mv .mv-wrap {
  position: relative;
  width: 100%;
}
@media (max-width: 400px) {
  .mv .mv-wrap {
    margin-top: 5.2rem;
  }
}
.mv .mv-wrap img {
  width: 100%;
  display: block;
  margin-top: 5.2rem;
}
@media (max-width: 400px) {
  .mv .mv-wrap img {
    margin-top: 3.2rem;
  }
}
.mv .mv-wrap h2 {
  position: absolute;
  right: 5%;
  max-width: 600px;
  font-size: clamp(26px, 3.5vw, 60px);
  line-height: 1.3;
  font-weight: bold;
  color: #fff;
  text-align: right;
  word-break: break-word;
  z-index: 2;
  padding: 0 20px;
  display: inline-block;
  box-sizing: border-box;
  animation: textOutlineAnime 2s forwards;
  /* 下からスムーズに上に動くための設定 */
  transform: translateY(30px);
  /* 初期は下にずらす */
  opacity: 0;
  /* 初期非表示 */
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.mv .mv-wrap h2.is-animated {
  transform: translateY(0);
  /* 最終位置 */
  opacity: 1;
}
@media (max-width: 400px) {
  .mv .mv-wrap h2 img {
    width: 70%;
    margin-left: auto;
  }
}

section.company,
section.business,
section.recruit,
section.tanker {
  padding: 60px 0;
  max-width: 1920px;
  margin: 100px auto 0;
}
@media (max-width: 400px) {
  section.company,
  section.business,
  section.recruit,
  section.tanker {
    padding: 30px 0;
  }
}

section.company,
section.tanker {
  color: #fff;
  background-color: #1f426a;
}

@media (max-width: 400px) {
  section.business,
  section.recruit,
  section.tanker {
    margin: 40px auto 0;
  }
}

section.contact {
  padding: 50px 0;
  color: #fff;
  background-color: #1f426a;
}

.table-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
}
@media (max-width: 768.98px) {
  .table-wrapper {
    gap: 30px;
  }
}
@media (max-width: 400px) {
  .table-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 400px) {
  section.business {
    margin: 60px auto;
  }
}

@media (max-width: 400px) {
  section.recruit {
    margin: 70px auto;
  }
}

@media (max-width: 400px) {
  section.tanker {
    margin: 80px auto;
  }
}

.news {
  padding: 30px 20px;
  margin-top: 50px;
}
@media (max-width: 400px) {
  .news {
    padding: 0 1em;
  }
}
.news .news-list {
  width: 65%;
}
@media (max-width: 400px) {
  .news .news-list {
    width: 100%;
  }
}
.news .news-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 400px) {
  .news .news-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 0;
  }
}
.news .news-list li .date {
  width: 140px;
  font-size: 16px;
  color: #999;
  flex-shrink: 0;
}
@media (max-width: 400px) {
  .news .news-list li .date {
    width: 100%;
    margin-bottom: 5px;
    font-size: 15px;
  }
}
.news .news-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 400px) {
  .news .news-list li a {
    width: 100%;
    font-size: 15px;
  }
}
.news .news-list li a .arrow {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.news .news-list li a .arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
@media (max-width: 400px) {
  .news .news-list li a .arrow {
    margin-left: 0;
    margin-top: 5px;
  }
}
.news .news-list li a:hover {
  color: #007BFF;
}
.news .news-list li a:hover .arrow::before {
  transform: translateX(4px);
}

.btn-box {
  text-align: center;
  margin-top: 50px;
}

.company .flex-1,
.tanker .flex-1 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 400px) {
  .company .flex-1,
  .tanker .flex-1 {
    gap: 20px;
  }
}
@media (max-width: 1023.98px) {
  .company .flex-1,
  .tanker .flex-1 {
    flex-direction: column;
    align-items: center;
  }
}
.company .flex-1 .img-box,
.tanker .flex-1 .img-box {
  width: 60%;
}
@media (max-width: 1023.98px) {
  .company .flex-1 .img-box,
  .tanker .flex-1 .img-box {
    width: 100%;
  }
}
.company .flex-1 .text-box,
.tanker .flex-1 .text-box {
  width: 40%;
}
@media (max-width: 1023.98px) {
  .company .flex-1 .text-box,
  .tanker .flex-1 .text-box {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .company .flex-1 .text-box,
  .tanker .flex-1 .text-box {
    padding: 0 1em;
  }
}
.company .flex-1 .text-box--in,
.tanker .flex-1 .text-box--in {
  width: 70%;
  min-height: 27vw;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1025px) {
  .company .flex-1 .text-box--in,
  .tanker .flex-1 .text-box--in {
    width: 100%;
  }
}
@media (max-width: 798.98px) {
  .company .flex-1 .text-box--in,
  .tanker .flex-1 .text-box--in {
    padding: 0 1em;
  }
}
@media (max-width: 400px) {
  .company .flex-1 .text-box--in,
  .tanker .flex-1 .text-box--in {
    padding: 0;
  }
}
.company .flex-1 .text-box h3,
.tanker .flex-1 .text-box h3 {
  font-size: 40px;
}
@media (max-width: 1200px) {
  .company .flex-1 .text-box h3,
  .tanker .flex-1 .text-box h3 {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .company .flex-1 .text-box h3,
  .tanker .flex-1 .text-box h3 {
    font-size: 25px;
  }
}
.company .flex-1 .text-box p,
.tanker .flex-1 .text-box p {
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .company .flex-1 .text-box p,
  .tanker .flex-1 .text-box p {
    line-height: 1.7;
  }
}
@media (max-width: 400px) {
  .company .flex-1 .text-box p,
  .tanker .flex-1 .text-box p {
    letter-spacing: 0.02em;
  }
}
.company .flex-1 .text-box .btn-box,
.tanker .flex-1 .text-box .btn-box {
  margin-top: auto;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .company .flex-1 .text-box .btn-box,
  .tanker .flex-1 .text-box .btn-box {
    margin: 50px auto 0;
  }
}

.business .flex-1 {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  margin-top: 50px;
}
@media (max-width: 1023.98px) {
  .business .flex-1 {
    flex-direction: column;
  }
}
@media (max-width: 400px) {
  .business .flex-1 {
    gap: 20px;
  }
}
.business .flex-1 .img-box {
  width: 55%;
}
@media (max-width: 1023.98px) {
  .business .flex-1 .img-box {
    order: 1;
    width: 100%;
  }
}
.business .flex-1 .text-box {
  width: 27%;
}
@media (max-width: 1200px) {
  .business .flex-1 .text-box {
    width: 40%;
  }
}
@media (max-width: 1023.98px) {
  .business .flex-1 .text-box {
    order: 2;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .business .flex-1 .text-box {
    padding: 0 1em;
  }
}
.business .flex-1 .text-box--in {
  width: 100%;
  min-height: 26.5vw;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1025px) {
  .business .flex-1 .text-box--in {
    width: 100%;
  }
}
@media (max-width: 798.98px) {
  .business .flex-1 .text-box--in {
    padding: 0 1em;
  }
}
@media (max-width: 400px) {
  .business .flex-1 .text-box--in {
    padding: 0;
  }
}
.business .flex-1 .text-box--in h3 {
  font-size: 40px;
}
@media (max-width: 1200px) {
  .business .flex-1 .text-box--in h3 {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .business .flex-1 .text-box--in h3 {
    font-size: 25px;
  }
}
.business .flex-1 .text-box--in p {
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media (max-width: 1200px) {
  .business .flex-1 .text-box--in p {
    line-height: 1.7;
  }
}
.business .flex-1 .text-box--in .btn-box {
  margin-top: auto;
  text-align: left;
}
@media (max-width: 1023.98px) {
  .business .flex-1 .text-box--in .btn-box {
    margin: 50px auto 0;
  }
}

.recruit .img-box {
  position: relative;
  text-align: center;
}
@media (max-width: 400px) {
  .recruit .img-box {
    padding: 0 1em;
  }
}
.recruit .img-box .img-ttl {
  position: absolute;
  top: 10%;
  left: 15%;
  color: #029fd4;
  font-family: "Noto Serif JP", "Sawarabi Mincho", serif;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 400px) {
  .recruit .img-box .img-ttl {
    top: 25%;
    font-size: 30px;
  }
}
.recruit .line {
  border-bottom: 1px solid #1f426a;
  padding-bottom: 20px;
}
.recruit .btn-box {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 400px) {
  .recruit .btn-box {
    text-align: center;
  }
}

.contact .flex-1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .contact .flex-1 {
    gap: 30px;
    padding: 0 2em;
  }
}
@media (max-width: 1023.98px) {
  .contact .flex-1 {
    flex-direction: column;
  }
}
.contact .flex-1 .section-ttl {
  border-right: 1px solid #ccc;
  padding-right: 50px;
}
@media (max-width: 400px) {
  .contact .flex-1 .section-ttl {
    width: 100%;
    text-align: left;
    border-right: 0px solid #ccc;
    padding-right: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
  }
}
.contact .flex-1 .section-ttl p {
  color: #fff;
}
.contact .text-box {
  width: 70%;
  margin-left: 50px;
}
@media (max-width: 1023.98px) {
  .contact .text-box {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .contact .text-box {
    margin-left: 0;
  }
}
.contact .text-box .flex-2 {
  display: flex;
}
@media (max-width: 400px) {
  .contact .text-box .flex-2 {
    flex-direction: column;
  }
}
.contact .text-box .flex-2 h3 {
  font-size: 30px;
}
@media (max-width: 1200px) {
  .contact .text-box .flex-2 h3 {
    font-size: 25px;
  }
}
@media (max-width: 1023.98px) {
  .contact .text-box .flex-2 h3 {
    font-size: 35px;
    text-align: center;
    margin-top: 15px;
  }
}
@media (max-width: 400px) {
  .contact .text-box .flex-2 h3 {
    font-size: 25px;
  }
}
.contact .text-box .flex-2 h3:last-of-type {
  margin-left: 20px;
}
@media (max-width: 400px) {
  .contact .text-box .flex-2 h3:last-of-type {
    margin-left: 0;
  }
}
.contact .text-box .btn-box {
  text-align: left;
  margin-top: 0;
}
.contact .text-box .btn-box a {
  font-size: 20px;
  padding: 10px 80px;
  margin-top: 30px;
}
@media (max-width: 400px) {
  .contact .text-box .btn-box a {
    padding: 15px;
    width: 100%;
    justify-content: center;
  }
}

.wave-up {
  margin-bottom: -5px;
}

.wave-down {
  margin-top: -5px;
}

main {
  padding: 0;
}
main section {
  margin: 0;
}

.section-ttl {
  text-align: center;
}
.section-ttl h3 {
  font-family: "Roboto", sans-serif;
  color: #c7d0da;
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 400px) {
  .section-ttl h3 {
    font-size: 30px;
  }
}
.section-ttl h3::first-letter {
  color: #8fa0b5;
  font-size: 100px;
  font-weight: 600;
  line-height: 0.9;
  vertical-align: bottom;
}
@media (max-width: 400px) {
  .section-ttl h3::first-letter {
    font-size: 55px;
  }
}
.section-ttl p {
  font-size: 36px;
  text-align: left;
  color: #1f426a;
  font-weight: bold;
  margin: 10px 0 0;
  line-height: 1.4;
}
@media (max-width: 400px) {
  .section-ttl p {
    font-size: 20px;
  }
}
.section-ttl.pages {
  font-size: 45px;
}
@media (max-width: 400px) {
  .section-ttl.pages {
    font-size: 32px;
  }
}

.box-ttl {
  font-size: 36px;
}
@media (max-width: 400px) {
  .box-ttl {
    font-size: 24px;
  }
}
.box-ttl.primary {
  color: #1f426a;
}
.box-ttl.secondary {
  color: #029fd4;
}
.box-ttl.accent {
  color: #f84a2a;
}
.box-ttl.lg {
  font-size: 45px;
}
@media (max-width: 400px) {
  .box-ttl.lg {
    font-size: 32px;
  }
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  color: #333;
}
.btn-arrow .arrow {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.btn-arrow .arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
.btn-arrow:hover .arrow::before {
  transform: translateX(4px);
}
.btn-arrow:active {
  transform: translateY(1px);
}

.btn-arrow--primary {
  background-color: #1f426a;
  color: #fff !important;
}
.btn-arrow--primary:hover {
  background-color: #004080;
}

.btn-arrow--secondary {
  background-color: #fff;
  color: #1f426a;
}
.btn-arrow--secondary:hover {
  background-color: #fff;
  opacity: 0.8;
}

.btn-arrow--accent {
  background-color: #f84a2a;
  color: #fff;
}
.btn-arrow--accent:hover {
  opacity: 0.8;
}

.btn-arrow--accent--alt {
  background-color: #f84a2a;
  color: #1f426a;
  padding: 30px 60px;
  font-size: 36px;
  border-radius: 10px;
}
.btn-arrow--accent--alt:hover {
  opacity: 1;
  color: #fff;
}

.btn-arrow--large {
  padding: 20px 60px;
  font-size: 1.2rem;
}

.btn-arrow--small {
  padding: 10px 25px;
  font-size: 0.9rem;
}

.single {
  padding: 80px 20px;
  background-color: #fafafa;
}
.single .inner-800 {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 600px) {
  .single .inner-800 {
    padding: 20px;
  }
}
.single .single-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  border-bottom: 2px solid #0078d7;
  padding-bottom: 10px;
}
@media (max-width: 600px) {
  .single .single-title {
    font-size: 16px;
  }
}
.single .single-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}
.single .single-category {
  margin-bottom: 20px;
}
.single .single-category a {
  display: inline-block;
  background-color: #0078d7;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.single .single-category a:hover {
  background-color: #005fa3;
}
.single .single-thumb {
  margin-bottom: 30px;
}
.single .single-thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.single .single-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
}
.single .single-content h2,
.single .single-content h3 {
  margin-top: 2em;
  font-weight: bold;
  color: #0078d7;
}
.single .single-content p {
  margin-bottom: 1.5em;
}
.single .single-content a {
  color: #0078d7;
  text-decoration: underline;
}
.single .single-content a:hover {
  color: #005fa3;
}
.single .post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 0.9rem;
}
.single .post-navigation a {
  color: #0078d7;
  text-decoration: none;
}
.single .post-navigation a:hover {
  text-decoration: underline;
}
.single .back-link {
  margin-top: 40px;
  text-align: center;
}
.single .back-link a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #0078d7;
  color: #0078d7;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.single .back-link a:hover {
  background-color: #0078d7;
  color: #fff;
}

.news-archive {
  background-color: #fafafa;
  padding: 80px 20px;
}
.news-archive .inner-1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.news-archive .section-ttl {
  text-align: center;
  margin-bottom: 50px;
}
.news-archive .section-ttl h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0078d7;
  margin-bottom: 8px;
}
.news-archive .section-ttl p {
  font-size: 0.95rem;
  color: #555;
  letter-spacing: 0.05em;
}
.news-archive .news-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
}
.news-archive .news-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  font-size: 1rem;
  transition: 0.2s;
}
.news-archive .news-list li:last-child {
  border-bottom: none;
}
.news-archive .news-list li:hover {
  transform: translateX(3px);
  background-color: #f9fcff;
}
.news-archive .news-list li .date {
  font-size: 0.9rem;
  color: #999;
  flex-shrink: 0;
  margin-right: 20px;
  width: 100px;
}
.news-archive .news-list li a {
  flex-grow: 1;
  color: #222;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-archive .news-list li a:hover {
  color: #0078d7;
}
.news-archive .news-list li a .arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #0078d7;
  border-right: 2px solid #0078d7;
  transform: rotate(45deg);
  margin-left: 10px;
}
.news-archive .pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.news-archive .pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #0078d7;
  border-radius: 4px;
  text-decoration: none;
  color: #0078d7;
  font-size: 0.9rem;
  transition: 0.3s;
}
.news-archive .pagination .page-numbers:hover {
  background-color: #0078d7;
  color: #fff;
}
.news-archive .pagination .page-numbers.current {
  background-color: #0078d7;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 768px) {
  .news-archive {
    padding: 50px 15px;
  }
  .news-archive .news-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-archive .news-list li .date {
    margin-bottom: 5px;
  }
  .news-archive .news-list li a {
    justify-content: flex-start;
  }
  .news-archive .news-list li a .arrow {
    display: none;
  }
}
.error-404 {
  text-align: center;
  padding: 100px 20px;
}
.error-404 .page-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.error-404 p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.error-404 .error-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.error-404 .error-btns .btn {
  display: inline-block;
  background-color: #f84a2a;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.error-404 .error-btns .btn:hover {
  opacity: 0.8;
}
@media (max-width: 600px) {
  .error-404 .page-title {
    font-size: 22px;
  }
}

.grecaptcha-badge iframe {
  margin-top: 0;
}

.pages-contents p {
  letter-spacing: -0.05em;
}

.kv-wrap {
  position: relative;
}
.kv-wrap img {
  width: 100%;
  display: block;
  margin-top: 5.3rem;
}
@media (max-width: 400px) {
  .kv-wrap img {
    margin-top: 6rem;
  }
}
.kv-wrap .page-ttl {
  position: absolute;
  top: 35%;
  left: 18%;
  transform: translateY(30px);
  text-align: left;
  z-index: 2;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
@media (max-width: 800px) {
  .kv-wrap .page-ttl {
    top: 50%;
    left: 10%;
  }
}
.kv-wrap .page-ttl.is-animated {
  transform: translateY(-50%);
  opacity: 1;
}
.kv-wrap .page-ttl h3 {
  color: #c7d0da;
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0;
  max-width: 1000px;
}
@media (max-width: 800px) {
  .kv-wrap .page-ttl h3 {
    font-size: 50px;
  }
}
@media (max-width: 600px) {
  .kv-wrap .page-ttl h3 {
    font-size: 25px;
  }
}
.kv-wrap .page-ttl::first-letter {
  color: #8fa0b5;
  font-size: 100px;
  font-weight: 600;
  line-height: 0.9;
  vertical-align: bottom;
}
@media (max-width: 400px) {
  .kv-wrap .page-ttl::first-letter {
    font-size: 55px;
  }
}
.kv-wrap p {
  font-size: 36px;
  color: #1f426a;
  font-weight: bold;
  margin: 10px 0 0;
  max-width: 1000px;
}
@media (max-width: 800px) {
  .kv-wrap p {
    font-size: 27px;
  }
}
@media (max-width: 600px) {
  .kv-wrap p {
    font-size: 18px;
  }
}

#company .page-ttl h3,
#business .page-ttl h3,
#tanker .page-ttl h3 {
  color: #c7d0da;
}
#company .page-ttl h3::first-letter,
#business .page-ttl h3::first-letter,
#tanker .page-ttl h3::first-letter {
  color: #8fa0b4;
}
#company .page-ttl p,
#business .page-ttl p,
#tanker .page-ttl p {
  color: #fff;
}
#company .border-1,
#business .border-1,
#tanker .border-1 {
  text-align: center;
  font-size: 20px;
  border-width: 0 0 1px;
}
@media (max-width: 400px) {
  #company .border-1,
  #business .border-1,
  #tanker .border-1 {
    font-size: 18px;
    border-width: 0 0 0 0;
  }
}

@media (max-width: 400px) {
  #tanker .kv-wrap .page-ttl {
    top: 60%;
  }
  #tanker .kv-wrap .page-ttl h3 {
    font-size: 22px;
  }
}
#tanker .kv-wrap p {
  margin: 0;
}

@media (max-width: 800px) {
  #recruit .kv-wrap .page-ttl h3 {
    font-size: 38px;
  }
}
@media (max-width: 400px) {
  #recruit .kv-wrap .page-ttl h3 {
    font-size: 22px;
    margin-top: 0;
  }
}
#recruit .kv-wrap .page-ttl p.lead {
  color: #1f426a;
  font-family: "Noto Serif JP", "Sawarabi Mincho", serif;
  font-size: 100px;
  letter-spacing: 0.05em;
}
@media (max-width: 1100px) {
  #recruit .kv-wrap .page-ttl p.lead {
    line-height: 1.5;
  }
}
@media (max-width: 800px) {
  #recruit .kv-wrap .page-ttl p.lead {
    font-size: 40px;
  }
}
@media (max-width: 400px) {
  #recruit .kv-wrap .page-ttl p.lead {
    font-size: 20px;
  }
}
#recruit .kv-wrap .page-ttl p.sub {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 1200px) {
  #recruit .kv-wrap .page-ttl p.sub {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  #recruit .kv-wrap .page-ttl p.sub {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  #recruit .kv-wrap .page-ttl p.sub {
    font-size: 14px;
    margin-top: 0;
    line-height: 1.3;
  }
}

.recruit-btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
  color: #333;
}
.recruit-btn .btn-arrow .arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.recruit-btn .btn-arrow .arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 12px;
  border-color: transparent transparent transparent currentColor;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: transform 0.3s ease;
}
.recruit-btn .btn-arrow:hover .arrow::before {
  transform: translateX(4px);
}
.recruit-btn .btn-arrow:active {
  transform: translateY(1px);
}

.pages-news {
  padding: 30px 20px;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media (max-width: 400px) {
  .pages-news {
    padding: 0 1em;
  }
}
.pages-news .news-list {
  width: 100%;
}
.pages-news .news-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 400px) {
  .pages-news .news-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 0;
  }
}
.pages-news .news-list li .date {
  width: 140px;
  font-size: 16px;
  color: #999;
  flex-shrink: 0;
}
@media (max-width: 400px) {
  .pages-news .news-list li .date {
    width: 100%;
    margin-bottom: 5px;
    font-size: 15px;
  }
}
.pages-news .news-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 400px) {
  .pages-news .news-list li a {
    width: 100%;
    font-size: 15px;
  }
}
.pages-news .news-list li a .arrow {
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
@media (max-width: 400px) {
  .pages-news .news-list li a .arrow {
    margin-left: 0;
    margin-top: 5px;
  }
}
.pages-news .news-list li a:hover {
  color: #007BFF;
}
.pages-news .news-list li a:hover .arrow::before {
  transform: translateX(4px);
}

.pages-company .img-wrap img,
.pages-business .img-wrap img,
.pages-tanker .img-wrap img {
  margin-top: 100px;
}
@media (max-width: 800px) {
  .pages-company .img-wrap img,
  .pages-business .img-wrap img,
  .pages-tanker .img-wrap img {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .pages-company .img-wrap img,
  .pages-business .img-wrap img,
  .pages-tanker .img-wrap img {
    margin-top: 50px;
  }
}
.pages-company .flex-1,
.pages-business .flex-1,
.pages-tanker .flex-1 {
  display: flex;
  align-items: flex-end;
  margin-top: 50px;
}
.pages-company .flex-1 p,
.pages-business .flex-1 p,
.pages-tanker .flex-1 p {
  width: 80%;
  color: #1f426a;
  font-size: 22px;
}
@media (max-width: 400px) {
  .pages-company .flex-1 p,
  .pages-business .flex-1 p,
  .pages-tanker .flex-1 p {
    font-size: 17px;
  }
}
.pages-company .flex-1 .img-box,
.pages-business .flex-1 .img-box,
.pages-tanker .flex-1 .img-box {
  width: 20%;
}
.pages-company .flex-1 .img-box img,
.pages-business .flex-1 .img-box img,
.pages-tanker .flex-1 .img-box img {
  width: 100%;
  max-width: 120px;
}
.pages-company .description,
.pages-business .description,
.pages-tanker .description {
  background-color: #e7f1f5;
  padding: 40px 0 100px;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 800px) {
  .pages-company .description,
  .pages-business .description,
  .pages-tanker .description {
    padding: 40px 16px 100px;
  }
}
@media (max-width: 600px) {
  .pages-company .description,
  .pages-business .description,
  .pages-tanker .description {
    margin-top: 50px;
  }
}
.pages-company .description-small,
.pages-business .description-small,
.pages-tanker .description-small {
  padding: 0;
}
.pages-company .frame,
.pages-business .frame,
.pages-tanker .frame {
  background-color: #fff;
  padding: 50px 80px;
  margin-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1100px) {
  .pages-company .frame,
  .pages-business .frame,
  .pages-tanker .frame {
    padding: 50px;
  }
}
@media (max-width: 800px) {
  .pages-company .frame,
  .pages-business .frame,
  .pages-tanker .frame {
    padding: 30px;
  }
}
@media (max-width: 400px) {
  .pages-company .frame,
  .pages-business .frame,
  .pages-tanker .frame {
    padding: 20px;
  }
}
.pages-company .frame-small,
.pages-business .frame-small,
.pages-tanker .frame-small {
  padding: 20px 40px;
}
.pages-company table,
.pages-business table,
.pages-tanker table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}
.pages-company table th,
.pages-company table td,
.pages-business table th,
.pages-business table td,
.pages-tanker table th,
.pages-tanker table td {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding: 20px;
  text-align: left;
}
.pages-company table td,
.pages-business table td,
.pages-tanker table td {
  width: 70%;
}
@media (max-width: 400px) {
  .pages-company table td,
  .pages-business table td,
  .pages-tanker table td {
    width: 100%;
    display: block;
    padding: 10px 0 30px;
    border-bottom: 0px solid #ccc;
  }
}
.pages-company table th,
.pages-business table th,
.pages-tanker table th {
  width: 30%;
  font-weight: bold;
}
@media (max-width: 400px) {
  .pages-company table th,
  .pages-business table th,
  .pages-tanker table th {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
}
.pages-company tr:first-child th,
.pages-company tr:first-child td,
.pages-business tr:first-child th,
.pages-business tr:first-child td,
.pages-tanker tr:first-child th,
.pages-tanker tr:first-child td {
  border-top: 1px solid #ccc;
}
.pages-company .description .box-ttl,
.pages-business .description .box-ttl,
.pages-tanker .description .box-ttl {
  margin-top: 70px;
}
@media (max-width: 400px) {
  .pages-company .description .box-ttl,
  .pages-business .description .box-ttl,
  .pages-tanker .description .box-ttl {
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
  }
}
.pages-company .desc,
.pages-business .desc,
.pages-tanker .desc {
  line-height: 3;
}
.pages-company .table-small th,
.pages-business .table-small th,
.pages-tanker .table-small th {
  width: 30%;
}
@media (max-width: 800px) {
  .pages-company .table-small th,
  .pages-business .table-small th,
  .pages-tanker .table-small th {
    width: 45% !important;
  }
}

.iframe-wrap {
  margin-bottom: -70px;
}
@media (max-width: 1500px) {
  .iframe-wrap {
    margin-bottom: -60px;
  }
}
@media (max-width: 1200px) {
  .iframe-wrap {
    margin-bottom: -38px;
  }
}
@media (max-width: 768.98px) {
  .iframe-wrap {
    margin-bottom: -30px;
  }
}
@media (max-width: 600px) {
  .iframe-wrap {
    margin-bottom: -26px;
  }
}

iframe {
  margin-top: 20px;
}

#company.waveup {
  margin-top: -70px;
}

/* 船員募集 */
#recruit .kv-wrap .page-ttl {
  top: 50%;
}

.recruit-catch {
  position: relative;
}
.recruit-catch img {
  position: absolute;
  top: -400px;
  right: 17%;
  width: 40%;
  max-width: 500px;
  transform: translateY(100px);
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.8s;
}
@media (max-width: 1600px) {
  .recruit-catch img {
    top: -300px;
    max-width: 450px;
  }
}
@media (max-width: 1400px) {
  .recruit-catch img {
    top: -220px;
    max-width: 380px;
  }
}
@media (max-width: 1300px) {
  .recruit-catch img {
    right: 13%;
  }
}
@media (max-width: 1200px) {
  .recruit-catch img {
    top: -280px;
    right: 8%;
    width: 30%;
  }
}
@media (max-width: 1023.98px) {
  .recruit-catch img {
    top: -200px;
  }
}
@media (max-width: 800px) {
  .recruit-catch img {
    top: -63px;
  }
}
@media (max-width: 400px) {
  .recruit-catch img {
    top: 8px;
    width: 40%;
  }
}

.slide-up {
  transform: translate3d(0, 100px, 0);
  /* ← 2D → 3D変換 */
  opacity: 0;
  will-change: transform, opacity;
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes slideUp {
  to {
    transform: translate3d(0, 0, 0);
    /* 同様に3D */
    opacity: 1;
  }
}
.pages-recruit .img-wrap img {
  margin-top: 50px;
}
.pages-recruit .img-wrap .box-ttl {
  margin-top: 70px;
}
@media (max-width: 400px) {
  .pages-recruit .img-wrap .box-ttl {
    padding: 0 16px;
  }
}
.pages-recruit .img-wrap .box-ttl.lg {
  font-size: 45px;
}
@media (max-width: 400px) {
  .pages-recruit .img-wrap .box-ttl.lg {
    font-size: 28px;
    border-width: 0 0 0 0;
  }
}

.info {
  margin-top: 50px;
}
.info p {
  color: #1f426a;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 400px) {
  .info p {
    font-size: 18px;
  }
}

.system,
.environment,
.voice {
  margin-top: 100px;
}
.system .flex-1,
.environment .flex-1,
.voice .flex-1 {
  align-items: center;
  gap: 40px;
}
.system .flex-1 .img-box,
.environment .flex-1 .img-box,
.voice .flex-1 .img-box {
  width: 60%;
}
@media (max-width: 800px) {
  .system .flex-1 .img-box,
  .environment .flex-1 .img-box,
  .voice .flex-1 .img-box {
    width: 50%;
  }
}
.system .section-ttl,
.environment .section-ttl,
.voice .section-ttl {
  width: 40%;
  text-align: left;
}
@media (max-width: 1100px) {
  .system .section-ttl h3,
  .environment .section-ttl h3,
  .voice .section-ttl h3 {
    font-size: 50px;
  }
}
@media (max-width: 800px) {
  .system .section-ttl h3,
  .environment .section-ttl h3,
  .voice .section-ttl h3 {
    font-size: 40px;
  }
}
.system .section-ttl p,
.environment .section-ttl p,
.voice .section-ttl p {
  margin: 0;
  line-height: 1;
}
@media (max-width: 1100px) {
  .system .section-ttl p,
  .environment .section-ttl p,
  .voice .section-ttl p {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .system .section-ttl p,
  .environment .section-ttl p,
  .voice .section-ttl p {
    font-size: 25px;
    text-align: center;
  }
}
.system .section-ttl img,
.environment .section-ttl img,
.voice .section-ttl img {
  margin-top: 150px;
}
@media (max-width: 1100px) {
  .system .section-ttl img,
  .environment .section-ttl img,
  .voice .section-ttl img {
    width: 90%;
  }
}
@media (max-width: 400px) {
  .system .section-ttl img,
  .environment .section-ttl img,
  .voice .section-ttl img {
    margin-top: 120px;
  }
}
.system .details,
.environment .details,
.voice .details {
  width: 100%;
  display: flex;
  gap: 20px;
  background-color: #1f426a;
  padding: 160px 25px 50px;
  margin-top: -100px;
}
@media (max-width: 800px) {
  .system .details,
  .environment .details,
  .voice .details {
    flex-direction: column;
  }
}
.system .details .item,
.environment .details .item,
.voice .details .item {
  padding: 10px;
}
@media (max-width: 800px) {
  .system .details .item,
  .environment .details .item,
  .voice .details .item {
    padding: 30px;
  }
}
.system .details .item h4,
.environment .details .item h4,
.voice .details .item h4 {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
@media (max-width: 800px) {
  .system .details .item h4,
  .environment .details .item h4,
  .voice .details .item h4 {
    white-space: nowrap;
  }
}
.system .details .item h4 .num,
.environment .details .item h4 .num,
.voice .details .item h4 .num {
  font-size: 80px;
  color: #8fa0b4;
  margin-right: 6px;
}
.system .details .item h4 .title,
.environment .details .item h4 .title,
.voice .details .item h4 .title {
  font-size: 30px;
  color: #c7d0da;
  line-height: 1.4;
}
.system .point,
.environment .point,
.voice .point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  min-height: 200px;
}
.system .point .flex-1,
.environment .point .flex-1,
.voice .point .flex-1 {
  align-items: flex-start;
  gap: 10px;
}
.system .point .flex-1 img,
.environment .point .flex-1 img,
.voice .point .flex-1 img {
  width: 10%;
  max-width: 26px;
  margin-top: 10px;
}
.system .point .flex-1 p,
.environment .point .flex-1 p,
.voice .point .flex-1 p {
  width: 90%;
  font-size: 22px;
}
@media (max-width: 1100px) {
  .system .point .flex-1 p,
  .environment .point .flex-1 p,
  .voice .point .flex-1 p {
    font-size: 17px;
  }
}

.system,
.environment {
  margin-top: 100px;
}
@media (max-width: 400px) {
  .system,
  .environment {
    margin-top: 50px;
  }
}
.system .flex-1,
.environment .flex-1 {
  align-items: center;
  gap: 60px;
}
@media (max-width: 400px) {
  .system .flex-1,
  .environment .flex-1 {
    flex-direction: column;
    gap: 10px;
  }
}
.system .flex-1 .img-box,
.environment .flex-1 .img-box {
  width: 60%;
}
@media (max-width: 400px) {
  .system .flex-1 .img-box,
  .environment .flex-1 .img-box {
    width: 100%;
    margin-top: 50px;
  }
}
.system .section-ttl,
.environment .section-ttl {
  width: 40%;
  text-align: left;
}
@media (max-width: 400px) {
  .system .section-ttl,
  .environment .section-ttl {
    width: 80%;
  }
}
.system .section-ttl p,
.environment .section-ttl p {
  margin: 0;
  line-height: 1.3;
}
.system .details,
.environment .details {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #1f426a;
  padding: 160px 25px 50px;
  margin-top: -100px;
}
@media (max-width: 400px) {
  .system .details,
  .environment .details {
    padding: 100px 16px 50px;
  }
}
.system .details .item,
.environment .details .item {
  width: 33.3333333333%;
  padding: 10px;
}
@media (max-width: 800px) {
  .system .details .item,
  .environment .details .item {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 400px) {
  .system .details .item,
  .environment .details .item {
    padding: 0;
    margin-top: 30px;
  }
}
.system .details .item h4,
.environment .details .item h4 {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.system .details .item h4 .num,
.environment .details .item h4 .num {
  font-size: 80px;
  color: #8fa0b4;
  margin-right: 6px;
}
@media (max-width: 400px) {
  .system .details .item h4 .num,
  .environment .details .item h4 .num {
    font-size: 40px;
  }
}
.system .details .item h4 .title,
.environment .details .item h4 .title {
  font-size: 30px;
  color: #c7d0da;
  line-height: 1.4;
}
@media (max-width: 400px) {
  .system .details .item h4 .title,
  .environment .details .item h4 .title {
    font-size: 22px;
  }
}
.system .point,
.environment .point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  min-height: 250px;
}
@media (max-width: 400px) {
  .system .point,
  .environment .point {
    padding: 15px;
    min-height: 150px;
  }
}
.system .point .flex-1,
.environment .point .flex-1 {
  gap: 10px;
}
@media (max-width: 400px) {
  .system .point .flex-1,
  .environment .point .flex-1 {
    flex-direction: row;
  }
}
.system .point .flex-1 img,
.environment .point .flex-1 img {
  width: 10%;
  max-width: 26px;
}
@media (max-width: 400px) {
  .system .point .flex-1 img,
  .environment .point .flex-1 img {
    max-width: 17px;
  }
}
.system .point .flex-1 p,
.environment .point .flex-1 p {
  width: 90%;
  font-size: 22px;
}
@media (max-width: 400px) {
  .system .point .flex-1 p,
  .environment .point .flex-1 p {
    font-size: 15px;
  }
}

.environment .item.wide {
  width: 57%;
}
@media (max-width: 800px) {
  .environment .item.wide {
    width: 100%;
  }
}

.item.narrow {
  width: 43%;
}
@media (max-width: 800px) {
  .item.narrow {
    width: 100%;
  }
}

.voice {
  margin-top: 100px;
}
@media (max-width: 400px) {
  .voice {
    padding: 0 1em;
  }
}

.talk {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-top: 70px;
}
@media (max-width: 400px) {
  .talk {
    flex-direction: column;
    gap: 20px;
  }
}
.talk .talk-left {
  width: 20%;
}
@media (max-width: 400px) {
  .talk .talk-left {
    width: 100%;
  }
}
.talk .talk-left .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-align: center;
}
.talk .talk-right {
  width: 80%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 400px) {
  .talk .talk-right {
    width: 100%;
  }
}
.talk .talk-right .balloon {
  position: relative;
  display: inline-block;
  margin: 0 0 10px 10px;
  padding: 20px;
  min-width: 120px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #029fd4;
  border-radius: 20px;
}
.talk .talk-right .balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -28px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #029fd4;
}
.talk .talk-right p {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 400px) {
  .talk .talk-right p {
    font-size: 15px;
  }
}
.talk .writer {
  margin-left: 20px;
  font-size: 20px;
}
@media (max-width: 400px) {
  .talk .writer {
    margin-left: 0;
    font-size: 15px;
    text-align: center;
  }
}

.voice .flex-1 .section-ttl {
  width: 100%;
  border-bottom: 1px solid #666;
  padding-bottom: 50px;
}
@media (max-width: 400px) {
  .voice .flex-1 .section-ttl {
    text-align: center;
  }
}

.talk:last-of-type {
  padding-bottom: 50px;
  border-bottom: 1px solid #666;
}

.job {
  background-color: #1f426a;
  margin-top: 100px;
  padding: 100px 0;
}
@media (max-width: 400px) {
  .job {
    padding: 100px 16px 30px;
  }
}
.job .section-ttl {
  text-align: left;
}
.job .section-ttl p {
  color: #fff;
}
.job table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
}
.job table th,
.job table td {
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding: 20px;
  text-align: left;
}
@media (max-width: 400px) {
  .job table th,
  .job table td {
    font-size: 15px;
    display: block;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .job table td {
    padding: 20px 5px;
    border-width: 0;
  }
}
.job table th {
  width: 30%;
  font-weight: bold;
}
@media (max-width: 400px) {
  .job table th {
    white-space: nowrap;
    font-size: 15px;
    display: block;
    width: 100%;
    padding: 30px 5px 5px;
  }
}

.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-2 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent-3 {
  padding-left: 1em;
  text-indent: -1em;
}

.indent-4 {
  padding-left: 1em;
  text-indent: -1em;
}

@media (max-width: 400px) {
  .indent-1 {
    padding-left: 0em;
    text-indent: 0em;
  }
  .indent-2 {
    padding-left: 0em;
    text-indent: 0em;
  }
  .indent-4 {
    padding-left: 0em;
    text-indent: 0em;
  }
}
@media screen and (max-width: 600px) {
  .indent-text {
    text-indent: 1em;
    display: block;
  }
}
.blue-box {
  width: 100%;
  background: #1f426a;
  position: relative;
}

.triangle {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 60px solid #1f426a;
}

.recruit-btn {
  margin-top: 130px;
  margin-bottom: 100px;
}
.recruit-btn .btn-in {
  background-color: #1f426a;
  border-radius: 20px;
  padding: 60px 160px;
}
@media (max-width: 800px) {
  .recruit-btn .btn-in {
    padding: 50px;
  }
}
@media (max-width: 400px) {
  .recruit-btn .btn-in {
    padding: 50px 10px;
  }
}
.recruit-btn .btn-box {
  margin-top: 30px;
}
@media (max-width: 400px) {
  .recruit-btn .btn-box .btn-arrow--accent--alt {
    padding: 30px 20px;
    font-size: 25px;
  }
}
.recruit-btn p {
  color: #fff;
}
.recruit-btn .call {
  margin-top: 40px;
}
.recruit-btn .tel-number {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
@media (max-width: 400px) {
  .recruit-btn .tel-number {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .p-01 {
    padding: 0 1em;
  }
}
/*contact-step*/
#contact-1,
#contact-2,
#contact-3 {
  margin-bottom: 100px;
}

@media (max-width: 400px) {
  .pages-contact .img-wrap {
    margin-top: 35px;
  }
}

.contact-table-wrap {
  padding: 20px 50px;
  background: #e7f1f5;
  margin: 50px auto 0;
}
@media (max-width: 400px) {
  .contact-table-wrap {
    padding: 20px 16px;
  }
}

.table-contact-1 {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 400px) {
  .table-contact-1 {
    max-width: 100%;
  }
}

.table-contact-1 th,
.table-contact-1 td {
  padding: 1rem;
  border-width: 1px 0;
  vertical-align: top;
  text-align: left;
}

.table-contact-1 span.required {
  color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #f84a2a;
  padding: 5px;
  margin-right: 15px;
  white-space: nowrap;
  letter-spacing: 0.2em;
  background-color: #f84a2a;
}

.table-contact-1 span {
  display: inline-block;
  margin-top: 3px;
}

.table-contact-1 .narrow-th {
  width: 30%;
}
@media (max-width: 400px) {
  .table-contact-1 .narrow-th {
    display: block;
    width: 100%;
    padding: 0 10px 10px;
    margin-top: 20px;
  }
}

.table-contact-1 .middle-th {
  width: 30%;
}
@media (max-width: 400px) {
  .table-contact-1 .middle-th {
    display: block;
    width: 100%;
  }
}

.table-contact-1 .wide-td {
  width: 70%;
}
@media (max-width: 400px) {
  .table-contact-1 .wide-td {
    display: block;
    width: 100%;
    padding: 0 10px 20px;
  }
}

.table-contact-1 .wider-td {
  width: 70%;
}
@media (max-width: 400px) {
  .table-contact-1 .wider-td {
    display: block;
    width: 100%;
    padding: 0 10px 20px;
  }
}

.table-contact-2 {
  width: 100%;
  margin: 0 auto;
  background: #e7f1f5;
}

.table-contact-2 th,
.table-contact-2 td {
  padding: 1rem;
  border-width: 1px 0;
  vertical-align: top;
  text-align: left;
}

.table-contact-2 .middle-th {
  width: 30%;
}
@media (max-width: 400px) {
  .table-contact-2 .middle-th {
    display: block;
    width: 100%;
  }
}

.table-contact-2 .wide-td {
  width: 60%;
}

.table-contact-2 .wider-td {
  width: 80%;
}
@media (max-width: 400px) {
  .table-contact-2 .wider-td {
    display: block;
    width: 100%;
    padding: 0 10px 20px;
  }
}

.table-contact-1 input[type=text] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.table-contact-1 input[type=email],
.table-contact-1 input[type=tel] {
  width: 90%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media (max-width: 400px) {
  .table-contact-1 input[type=email],
  .table-contact-1 input[type=tel] {
    width: 100%;
  }
}

.table-contact-1 textarea {
  width: 75%;
}

.table-contact-2 input[type=text],
.table-contact-2 textarea {
  width: 75%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
@media (max-width: 400px) {
  .table-contact-2 input[type=text],
  .table-contact-2 textarea {
    width: 100%;
  }
}

.textarea-1 {
  width: 100%;
  max-width: 600px;
  height: 150px;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
}

/* 入力欄とテキストエリアの横幅を統一 */
.wider-td input[type=text],
.wider-td input[type=email],
.wider-td input[type=tel] {
  width: 100%;
  max-width: 400px;
  /* 必要に応じて調整（inputと同じ） */
  box-sizing: border-box;
}

/* テキストエリアの高さを調整 */
.wider-td textarea {
  width: 400px;
  height: 120px;
  padding: 8px;
}
@media (max-width: 400px) {
  .wider-td textarea {
    max-width: 300px;
  }
}

.table-flex-1 {
  display: flex;
  gap: 10px;
}

.table-flex-2 {
  display: flex;
  flex-direction: column;
}

.table-flex-2 label {
  padding-left: 0.5rem;
}

.table-txt {
  color: #f84a2a;
  background-color: #e7f1f5;
  padding: 0 1em 0;
}
@media (max-width: 400px) {
  .table-txt {
    padding: 0;
  }
}

.table-dot span {
  width: 100%;
  display: inline-block;
}

.table-dot span:after {
  background: radial-gradient(circle farthest-side, #f84a2a, #f84a2a 40%, transparent 40%, transparent);
  background-size: 10px;
  content: "";
  display: inline-block;
  height: 10px;
  width: 100%;
}

.type-1 {
  margin-top: 50px;
}

.type-2 {
  margin-bottom: 50px;
}

@media (max-width: 400px) {
  .privacy-cnt {
    margin-top: 15px;
  }
}

@media (max-width: 281px) {
  .privacy-cnt p {
    font-size: 14px;
  }
}
.privacy-check {
  margin-top: 50px;
  margin-left: 0;
}
@media (max-width: 600px) {
  .privacy-check .privacy-check {
    margin-bottom: 100px;
  }
}
@media (max-width: 400px) {
  .privacy-check {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

@media (max-width: 281px) {
  .privacy-check {
    padding: 0;
  }
}
@media (max-width: 281px) {
  .privacy-check label {
    font-size: 14px;
  }
}
.submit-row {
  text-align: center;
  padding: 1em;
  margin-top: 50px;
  margin-bottom: 0;
  line-height: 0;
}

@media (max-width: 281px) {
  .submit-row {
    padding: 20px 0;
  }
}
.submit-btn {
  display: block;
  margin: 0 auto 30px;
  width: 420px;
  position: relative;
  color: #fff;
  font-size: 20px;
  border: 1px solid #ddd;
  padding: 30px;
  margin-bottom: 0;
  background-color: #f84a2a;
  transition: 0.3s;
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .submit-btn {
    width: 100%;
  }
}

/* 無効状態 */
.submit-btn.inactive {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* 有効状態 */
.submit-btn.active {
  color: #1a1a1a;
  border: 1px solid #000;
  background-color: #fff;
}

/* 矢印装飾 */
.submit-btn::after {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.5s;
}

.submit-btn.active::after {
  border-top-color: #000;
  border-right-color: #000;
}

.submit-btn.active:hover::after {
  right: 15px;
}

@media (max-width: 600px) {
  .submit-btn {
    width: 100%;
  }
}
.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0;
  border-style: none !important;
  text-align: center;
}

.wpcf7-list-item {
  display: block;
  margin-bottom: 0.5em;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  /* 項目の間隔 */
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
}

/* 生年月日などの共通input幅 */
.date-input {
  width: 10em;
  margin-bottom: 5px;
  text-align: center;
  box-sizing: border-box;
}

/* フレックス構成を整える */
.table-flex-1 {
  display: flex;
  gap: 1em;
  align-items: center;
  flex-wrap: wrap;
}

/* 2カラム（氏名・フリガナ）用 */
.table-flex-2 {
  flex: 1;
  min-width: 120px;
}

/* ラジオボタン縦並び */
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 0;
}

/* ▼ 確認画面：テキスト入力・メール・電話だけ編集不可 */
#contact-2 .wpcf7-form-control.wpcf7-text,
#contact-2 .wpcf7-form-control.wpcf7-email,
#contact-2 .wpcf7-form-control.wpcf7-tel,
#contact-2 .wpcf7-form-control.wpcf7-textarea {
  pointer-events: none;
  background-color: #fafafa;
  color: #555;
  border: 1px solid #ddd;
}

/* ▼ ラジオ・チェックボックスは見た目だけ固定 */
#contact-2 input[type=radio],
#contact-2 input[type=checkbox] {
  pointer-events: none;
  opacity: 0.8;
}

/* ▼ 戻るボタン・送信ボタンは有効化 */
#contact-2 .wpcf7-previous,
#contact-2 input[type=submit],
#contact-2 .submit-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
}

/* ▼ Multi-step が必要とする hidden フィールド */
#contact-2 input[name=_wpcf7_step] {
  pointer-events: auto !important;
}

#contact-2 .date-input {
  pointer-events: none;
  background-color: #fafafa;
  color: #555;
  border: 1px solid #ddd;
}

#contact-2 input[type=radio],
#contact-2 input[type=radio]:hover,
#contact-2 input[type=checkbox],
#contact-2 input[type=checkbox]:hover {
  pointer-events: none !important;
  opacity: 0.8;
  cursor: default !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: inherit !important;
}

/* ▼ ラジオ・チェックボタンとその label を完全静止 */
#contact-2 input[type=radio],
#contact-2 input[type=checkbox],
#contact-2 label {
  pointer-events: none !important;
  cursor: default !important;
}

/* ▼ label:hover も無効化 */
#contact-2 label:hover {
  background-color: inherit !important;
  color: inherit !important;
  box-shadow: none !important;
  opacity: 1 !important;
  cursor: default !important;
}

#contact-2 .submit-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 0;
  flex-wrap: wrap;
  padding: 1em;
  width: 100%;
  box-sizing: border-box;
}
#contact-2 .submit-row p {
  width: 100%;
}
#contact-2 .submit-btn {
  display: inline-block;
  width: calc(50% - 30px);
  margin: 15px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  border: 1px solid #ddd;
  padding: 20px;
  background-color: #f84a2a;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}
#contact-2 .submit-btn:first-of-type {
  background-color: #f84a2a;
}
#contact-2 .submit-btn.inactive {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 600px) {
  #contact-2 .submit-btn {
    width: 100%;
    max-width: 300px;
  }
}

#access {
  padding: 60px 20px;
}
#access .inner-1000 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}
#access .access-map {
  width: 100%;
  overflow: hidden;
}
#access .access-map .map-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 10px;
}
#access .access-map .map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}
#access .access-info {
  margin-top: 40px;
}
#access .access-info h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
#access .access-info p {
  line-height: 1.6;
}
@media (max-width: 480px) {
  #access {
    padding: 40px 10px;
    overflow-x: hidden;
  }
  #access .inner-1000 {
    padding: 0;
  }
  #access .access-map {
    margin: 0 -10px;
  }
  #access .access-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .pages-contents .inner-1000 {
    width: 100%;
    padding: 0 1em;
    font-size: 15px;
  }
}

/* サイトマップ全体 */
.wsp-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.wsp-container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #3bb1d3;
}
.wsp-container ul.wsp-pages-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.wsp-container ul.wsp-pages-list li {
  margin-bottom: 12px;
  padding: 10px 15px;
  background: #f7fbfc;
  /* 薄い水色の背景 */
  border: 1px solid #e2edf1;
  border-radius: 8px;
  transition: 0.3s ease;
}
.wsp-container ul.wsp-pages-list li a {
  color: #333;
  text-decoration: none;
  font-size: 18px;
  display: block;
}
.wsp-container ul.wsp-pages-list li:hover {
  background: #e5f4f8;
  transform: translateX(5px);
}
.wsp-container ul.wsp-pages-list li.current_page_item {
  background: #dff2ff;
  border-color: #8ac7e9;
}
.wsp-container ul.wsp-pages-list li.current_page_item a {
  font-weight: bold;
  color: #1678aa;
}/*# sourceMappingURL=style.css.map */