@charset "UTF-8";
/******************************************************************
Theme Name: mizushimarinkai-theme ver.2025
Theme URI: https://mizushimarinkai.co.jp/
Description: 水島臨海興業様用テーマです。
Version: 1.0.0
******************************************************************/
/* =============================================================
基本設定
================================================================ */
:root {
  --black: #1e1e1e;
  --primary: #0a507d;
  --secondary: #217dbb;
  --key: #c42a2a;
  --light: #f0f0f0;
  --pink: #f86f64;
  --pink02: #fd5392;
}

html {
  overflow-x: hidden;
}

body {
  color: var(--black);
  background-color: var(--light);
  font-family: "Zen Kaku Gothic New", Hiragino Kaku Gothic Pro, Hiragino Sans, Meiryo, メイリオ, sans-serif;
  font-size: clamp(10px, 2vw, 15px);
  font-weight: 500;
  letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  word-wrap: break-word;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding-top: 55px;
}
.fs-6 {
  font-size: clamp(10px, 2vw, 15px) !important;
}
.number-font {
  font-family: Arial, Helvetica, sans-serif;
}

a:hover {
  opacity: .75;
}
.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 5rem;
}
#breadcrumb {
  font-size: 60%;
  margin: 7px auto 0;
}

#breadcrumb ol {
  display: flex;
  align-items: center;
  max-width: calc(100%);
  list-style: none;
  overflow: auto;
  white-space: nowrap;
  padding-left: 0;
}

#breadcrumb ol li {
  margin-left: 0.5em;
}

#breadcrumb ol li:first-child {
  margin-left: 0;
}

#breadcrumb ol li a::after {
  color: var(--black);
  content: "＞";
  display: inline-block;
  line-height: 1.7;
  margin-left: 5px;
}

#breadcrumb ol li a:hover {
  opacity: .5;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
}

#breadcrumb li a {
  text-decoration: none;
}

button {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input[type="submit"] {
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input[type="text"] {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  background-color: var(--bs-white);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--black);
}

input[type="email"] {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  background-color: var(--bs-white);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--black);
}

input[type="url"] {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  background-color: var(--bs-white);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--black);
}

textarea {
  display: block;
  padding: 10px 2%;
  font-size: 1em;
  color: var(--black);
  background-color: var(--bs-white);
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid var(--black);
  resize: vertical;
}

select {
  width: auto;
  border: 1px solid var(--black);
  background-color: var(--bs-white);
  padding: 10px 30px 10px 2%;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(./library/images/material/select-arrow.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 18px 13px;
  border: 1px solid var(--black);
}

input[type="search"] {
  display: block;
  padding: 10px 2%;
  font-size: 16px;
  -webkit-transition: background-color .24s ease-in-out;
  transition: background-color .24s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
  width: calc(100% - 70px);
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--black);
}

.searchform button {
  height: 40px;
  width: 50px;
  cursor: pointer;
  position: relative;
  border: none;
  border-radius: 4px;
  background: var(--black);
}

.searchform button::before {
  content: " ";
  background-image: url(./library/images/icon/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 23px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media print, screen and (min-width: 768px) {
  #breadcrumb {
    font-size: 70%;
    margin: 1em auto 0;
  }
}
@media print, screen and (min-width: 1200px) {
  body {
    padding-top: 80px;
  }
}
/* =============================================================
カラー設定
================================================================ */
.bg-primary {
  background-color: var(--primary);
}

.text-primary {
  color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.text-secondary {
  color: var(--secondary);
}

.bg-secondary-2 {
  background-color: #196090;
  color: var(--bs-white);
}

.text-secondary-2 {
  color: #196090;
}

.bg-secondary-3 {
  background-color: #124364;
  color: var(--bs-white);
}

.text-secondary-3 {
  color: #124364;
}

.bg-secondary-4 {
  background-color: #0a2639;
  color: var(--bs-white);
}

.text-secondary-4 {
  color: #0a2639;
}

.bg-secondary-5 {
  background-color: #02090e;
  color: var(--bs-white);
}

.text-secondary-5 {
  color: #02090e;
}

.bg-secondary-tint-1 {
  background-color: #5faee3;
  color: #000;
}

.text-secondary-tint-1 {
  color: #5faee3;
}

.bg-secondary-tint-2 {
  background-color: #8bc4ea;
  color: #000;
}

.text-secondary-tint-2 {
  color: #8bc4ea;
}

.bg-secondary-analogous-1 {
  background-color: #34dbcb;
  color: var(--bs-white);
}

.text-secondary-analogous-1 {
  color: #34dbcb;
}

.bg-secondary-analogous-2 {
  background-color: #3445db;
  color: var(--bs-white);
}

.text-secondary-analogous-2 {
  color: #3445db;
}

.bg-secondary-complementary {
  background-color: #db7734;
  color: var(--bs-white);
}

.text-secondary-complementary {
  color: #db7734;
}

.bg-secondary-triad-1 {
  background-color: #db3498;
  color: var(--bs-white);
}

.text-secondary-triad-1 {
  color: #db3498;
}

.bg-secondary-triad-2 {
  background-color: #98db34;
  color: var(--bs-white);
}

.text-secondary-triad-2 {
  color: #98db34;
}

.bg-key-complement {
  background-color: #db7734;
  color: var(--bs-white);
}

.text-key-complement {
  color: #db7734;
}

.bg-key-analogous-1 {
  background-color: #34dbcb;
  color: var(--bs-white);
}

.text-key-analogous-1 {
  color: #34dbcb;
}

.bg-key-analogous-2 {
  background-color: #3445db;
  color: var(--bs-white);
}

.text-key-analogous-2 {
  color: #3445db;
}

.bg-key-triad-1 {
  background-color: #db3498;
  color: var(--bs-white);
}

.text-key-triad-1 {
  color: #db3498;
}

.bg-key-triad-2 {
  background-color: #98db34;
  color: var(--bs-white);
}

.text-key-triad-2 {
  color: #98db34;
}

.bg-key-shade-1 {
  background-color: #217dbb;
  color: var(--bs-white);
}

.text-key-shade-1 {
  color: #217dbb;
}

.bg-key-tint-1 {
  background-color: #5faee3;
  color: #000;
}

.text-key-tint-1 {
  color: #5faee3;
}
/* =============================================================
ボタン設定
================================================================ */
.primary-btn01 {
  padding: 10px 50px;
  background: var(--primary);
  color: var(--bs-white);
  border-radius: 0;
  min-width: 200px;
  cursor: pointer;
  border: none;
  font-size: clamp(12.5px, 2vw, 1em);
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .primary-btn01 {
    padding: 10px 60px;
    font-size: 1.4em;
    min-width: 240px;
  }
}

/* =============================================================
テーブル設定
================================================================ */
table {
  border-collapse: collapse;
}
table th, table td {
  width: 100%;
  display: inline-block;
  padding: .85em 0;
  text-align: left;
}
table th + td {
  padding-top: 0;
}
table td {
  border-bottom: 1px solid var(--bs-gray-400);
}

@media print, screen and (min-width: 768px) {
  table th, table td {
    display: table-cell;
    width: auto;
  }
  table tr {
    border-bottom: 1px solid var(--bs-gray-400);
  }
  table th + td {
    padding-top: .85em;
  }
  table td {
    border-bottom: none;
  }
}
/* =============================================================
フォーム設定
================================================================ */
.asterisk {
  color: var(--bs-red);
}
table.form {
  margin-top: -15px;
}

table.form tr th {
  vertical-align: text-top;
  padding: 15px 0 0;
}

table.sp-block-table tr th {
  display: block;
  width: 100%;
  text-align: left;
}

table.sp-block-table tr td {
  display: block;
  width: 100%;
  text-align: left;
}

.contact-btn-flex-box {
  display: flex;
  justify-content: center;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.contact-btn-flex-box button {
  margin: 0 7.5px;
}

@media print, screen and (min-width: 768px) {
  table.sp-block-table tr th {
    display: table-cell;
    width: auto;
  }
  table.sp-block-table tr td {
    display: table-cell;
    width: auto;
  }
  table.form.sp-block-table tr th {
    padding: 20px 10px 20px 0;
    font-size: 20px;
    line-height: 1.2;
    width: 280px;
  }
}
input, input[type=checkbox], textarea {
  padding: 8px 10px;
  line-height: 1.6;
  overflow: hidden;
  max-width: 100%;
  color: var(--black);
  background: #9cd1ff;
}

#formArea table tr, #formArea table td {
  border-bottom: none;
}
#formArea textarea {
  width: 100%;
  overflow: auto;
  resize: none;
  height: 160px;
  max-height: 165px;
  margin-top: 10px;
}
#formArea textarea:placeholder-shown {
  background: var(--bs-white);
}
select {
  width: 100%;
  padding: 12px 20px 12px 10px;
  margin-right: 5px;
  line-height: 1.6;
}
select:invalid {
  color: #b4b4b4;
}

select option {
  color: #494949;
  background: var(--bs-white);
}

select.select {
  background: #9cd1ff;
  width: 100%;
}
label {
  font-size: 16px;
  margin-right: 5px;
}
.color-label {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #066eb5;
  font-size: clamp(12px, 2vw, 1em);
  font-weight: bold;
}
.contact {
  margin-left: auto;
  margin-right: auto;
}
.contact-type label {
  display: flex;
  margin: 0;
  cursor: pointer;
}
.contact-type input[type="checkbox"] {
  width: 24px;
  margin-right: 10px;
  margin-left: 16px;
}
.flex-week {
  display: flex;
  align-items: center;
}

.flex-week label {
  width: calc(100% / 5);
  display: flex;
  margin: 0;
  cursor: pointer;
}

.flex-week input[type="checkbox"] {
  width: 40px;
}

.flex-time {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -10px;
}

.flex-time label {
  width: calc(100% / 3);
  display: flex;
  margin: 0;
  margin-top: 10px;
  cursor: pointer;
}

.flex-time input[type="checkbox"] {
  width: 40px;
}

.division {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.division:before,
.division:after {
  display: table;
  content: " ";
}

.division:after {
  clear: both;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-grid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flex-m-column {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  align-items: center;
}
.flex-grid span.required {
  padding-left: 1em;
}
.flex-grid span:first-child {
  min-width: 120px;
  text-align: justify;
  text-align-last: justify;
}
.contact-table {
  width: 100%;
  max-width: 1110px;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  border-spacing: 0 10px;
}
.contact-table ::placeholder {
  color: #b4b4b4;
  font-size: clamp(10px, 2vw, 15px);
  font-weight: 500;
}
select.is-empty {
  color: #b4b4b4;
}
.contact-table thead th {
  background-color: #00a0e8;
  color: var(--bs-white);
  padding: 10px;
  text-align: center;
}
.contact-table tbody tr th {
  color: var(--primary);
  padding: 20px;
  width: 230px;
  font-size: clamp(10px, 2vw, 15px);
  vertical-align: text-top;
}
.contact-table tr td {
  padding: 20px;
}
.contact-table tbody tr th + td {
  padding: 0 10px 10px 10px;
}
.contact-table input {
  width: 100%;
}
.contact-table input:placeholder-shown {
  background: var(--bs-white);
}
.contact-table input:focus-visible {
  background: #9cd1ff !important;
  outline-color: #494949;
}

.contact-table input[type="radio"] {
  width: auto;
  position: relative;
  left: -1px;
}

.contact-table .birth-td label select {
  margin-right: 5px;
}

.contact-table .delivery-td label {
  margin-right: 15px;
}
.formCheck {
  position: relative;
  background-color: var(--bs-white);
  padding: 40px;
  border-radius: 5px;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  max-width: calc(100% - 240px);
  width: 100%;
}

.mask {
  display: none;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.checkBtnArea {
  display: none;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.checkBtn, .completeBtn {
  padding: 10px 50px;
  background: var(--primary);
  color: var(--bs-white);
  border-radius: 0;
  min-width: 200px;
  cursor: pointer;
  border: none;
  font-size: clamp(12.5px, 2vw, 1em);
}

.backBtn {
  padding: 10px 50px;
  background: #616161;
  color: var(--bs-white);
  border-radius: 0;
  border: 0;
  cursor: pointer;
  min-width: 200px;
  margin: 0 10px;
  font-size: clamp(16px, 2vw, 1em);
  line-height: 1.6;
}

.checkMessage {
  display: none;
  color: #F44336;
  font-weight: bold;
}

#sendBtn {
  padding: 10px 30px;
  background: var(--main);
  color: var(--bs-white);
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  min-width: 180px;
  margin: 0 10px;
  font-size: clamp(16px, 2vw, 1.2em);
  font-family: inherit;
}
.required {
  color: var(--key);
  line-height: 1;
}

.not-required {
  color: #646464;
  line-height: 1;
}

.notEntered {
  border: 1px solid #cc0000 !important;
  background-color: #ffdada !important;
  position: relative;
  overflow: initial;
}

.notEntered::before {
  content: "";
  border: 2px solid #cc0000;
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.nameError,
.emailError,
.emailConfirmError,
.detailsError,
.telError,
.telTypeError,
.remarksError {
  display: none;
  color: #cc0000;
  margin-top: 0;
  font-weight: bold;
}
/* モーダル用 */
.formComplete {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
}
.mask {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  display: none;
}
.mask.active {
  display: block;
}
/* 確認画面用設定 */
.formCheck .checkArea {
  pointer-events: none;
}

.formCheck .checkBtnArea {
  display: flex;
}

.formCheck .checkMessage {
  display: block;
}
@media only screen and (max-width: 767px) {
  .grid-td label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
  }

  .print-num tr td {
    display: table-cell;
    border: 1px solid #cccccc;
  }

  .contact-table tbody tr th {
    width: 100%;
    display: block;
    padding: 10px 10px 8px;
  }

  .contact-table tr td {
    display: block;
    width: 100%;
  }
  .required, .not-required {
    font-size: 12px;
    padding-left: 1em;
  }

  .formCheck {
    padding: 40px 0;
    margin: 0 auto;
    max-width: calc(100% - 80px);
  }

  #sendBtn {
    min-width: 100px;
  }

  .backBtn {
    min-width: 150px;
  }
}

@media print, screen and (min-width: 768px) {
  .contact-table tbody tr th {
    padding: 20px 0 20px 20px;
    width: 245px;
    vertical-align: middle;
  }
  .contact-table tbody tr th.baseline {
    vertical-align: baseline;
  }
  .contact-table tbody tr th + td {
    padding: 20px 20px 20px 15px;
  }
  .contact-type input[type="checkbox"] {
    margin-left: 0;
  }
  .flex-grid {
    justify-content: space-between;
  }
  .flex-grid span:first-child {
    min-width: 150px;
  }
  .flex-grid span.required {
    padding-left: 1em;
  }
  .flex-grid span:last-child {
    margin-right: 10px;
  }
  .checkBtn, .completeBtn {
    padding: 10px 60px;
    font-size: 1.5em;
    min-width: 240px;
  }

  #formArea textarea {
    margin-top: 0px;
  }

}
@media print, screen and (min-width: 992px) {
  .contact-table input.width-m-middle {
    width: 50%;
  }
}
@media print, screen and (min-width: 1200px) {
  .checkBtn, .completeBtn {
    padding: 10px 80px;
  }
}
/* =============================================================
404設定
================================================================ */
#not-found {
  border: 1px solid var(--primary);
  padding: 40px 20px;
  border-radius: 20px;
}

#not-found ul {
  list-style-type: disc;
  margin-left: 15px;
}

#not-found ul::marker {
  color: var(--primary);
}

#not-found ul li a {
  text-decoration: underline;
}

#not-found h2 {
  font-size: 2em;
  line-height: 1.2;
}

#not-found h3 {
  border-bottom: 2px solid var(--bs-gray-400);
  color: var(--black);
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
  padding-bottom: 5px;
}

#not-found h3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: var(--bs-gray-600) transparent transparent transparent;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
  transform: translateY(-50%);
}

#post-not-found {
  border: 1px solid var(--primary);
  padding: 40px 20px;
  border-radius: 20px;
}

#post-not-found ul {
  list-style-type: disc;
  list-style-type: disc;
  list-style-type: disc;
  margin-left: 15px;
  margin-left: 15px;
  margin-left: 15px;
}

#post-not-found ul::marker {
  color: var(--primary);
}

#post-not-found ul li a {
  text-decoration: underline;
  text-decoration: underline;
  text-decoration: underline;
}

#post-not-found h2 {
  font-size: 2em;
  line-height: 1.2;
}

#post-not-found h3 {
  border-bottom: 2px solid var(--bs-gray-400);
  color: var(--black);
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
  padding-bottom: 5px;
}

#post-not-found h3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: var(--bs-gray-600) transparent transparent transparent;
  position: absolute;
  left: 0;
  top: calc(50% - 2.5px);
  transform: translateY(-50%);
}


@media print, screen and (min-width: 768px) {
  #not-found {
    padding: 40px;
  }
  #not-found h2 {
    font-size: 2.5em;
  }
  #post-not-found {
    padding: 40px;
  }
  #post-not-found h2 {
    font-size: 2.5em;
  }
}

/* =============================================================
header設定
================================================================ */
html.open {
  overflow: hidden;
}

html.open body {
  overflow: hidden;
}
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bs-white);
  z-index: 2;
}
.header {
  height: 55px;
}

.header-hamburger-btn {
  height: 55px;
  cursor: pointer;
  width: 65px;
  background: var(--primary);
  border: none;
  padding: 18px;
  position: relative;
  right: 0;
  top: 0;
  z-index: 11;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.open .header-hamburger-btn {
  position: absolute;
  background: transparent;
  top: 0;
  right: 260px;
  left: auto;
  padding: 18px 18px 18px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.header-logo {
  padding-left: 1rem;
}
.header-logo img {
  height: 35px;
}

.header-hamburger-btn-line {
  height: 3px;
  width: 100%;
  background: var(--bs-white);
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.header-hamburger-btn-line:nth-child(1) {
  top: calc(50% + -11px);
}

.header-hamburger-btn-line:nth-child(2) {
  top: 50%;
}

.header-hamburger-btn-line:nth-child(3) {
  top: calc(50% + 11px);
}
.open .header-hamburger-btn-line {
  background: var(--primary);
}
.open .header-hamburger-btn-line:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.open .header-hamburger-btn-line:nth-child(2) {
  width: 0;
  left: 50%;
}

.open .header-hamburger-btn-line:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.header-hamburger-nav {
  position: fixed;
  right: -769px;
  z-index: 10;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  box-shadow: -1px 0px 1px 1px rgba(0, 0, 0, 0.07);
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.header-hamburger-nav::-webkit-scrollbar {
  display: none;
}

.header-hamburger-nav-logo {
  height: 60px;
  display: flex;
  align-items: center;
  padding-right: 24px;
  justify-content: flex-end;
}

.header-hamburger-nav-logo img {
  height: 30px;
}

.header-hamburger-nav-inner ul {
  list-style: none;
}

.header-hamburger-nav-inner ul:not(.sub-menu) {
  padding: 0 15px 15px;
}

.header-hamburger-nav-inner ul:not(.sub-menu) li {
  position: relative;
}

.header-hamburger-nav-inner a {
  color: var(--primary);
  display: block;
  font-size: 15px;
  padding: 15px 50px 15px 15px;
  line-height: 1.2;
  border-bottom: 1px solid var(--primary);
}

.header-hamburger-nav-inner .accordion_icon {
  transition: all .4s;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  top: 0;
  z-index: 11;
  cursor: pointer;
  margin: 5px 0;
}

.header-hamburger-nav-inner .accordion_icon::after {
  content: "";
  position: absolute;
  top: -2.5px;
  bottom: 0;
  right: 12.5px;
  width: 7px;
  height: 7px;
  margin: auto 5px;
  border-top: 2px solid var(--bs-white);
  border-right: 2px solid var(--bs-white);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.header-hamburger-nav-inner .accordion_icon.sp-menu-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all .3s;
  transition: all .3s;
  top: 2.5px;
}

.header-hamburger-nav-inner .sub-menu {
  display: none;
  padding-left: 0;
}

.header-hamburger-nav-inner .sub-menu a {
  padding: 10px 10px 10px 20px;
  font-weight: normal;
  position: relative;
}

.header-hamburger-nav-inner .sub-menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media print, screen and (max-width: 576px) {
  .open .header-hamburger-btn {
    left: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
    background: transparent;
  }
}
@media print, screen and (min-width: 576px) {
  .header-hamburger-nav {
    width: 320px;
  }
  .open .header-hamburger-btn {
    right: 248px;
  }
}

@media print, screen and (min-width: 1200px) {
  .header {
    height: 80px;
  }
  .header-logo img {
    height: 40px;
  }
  .header-global-nav ul {
    display: flex;
    margin-bottom: 0;
    padding-right: 1rem;
    padding-left: 0;
  }
  .header-global-nav ul li {
    padding: 0 10px;
    position: relative;
    list-style: none;
  }
  .header-global-nav ul li:last-child {
    padding-right: 0;
  }
  .header-global-nav ul li a {
    color: var(--primary);
  }
  .header-global-nav ul:not(.sub-menu) li:hover .sub-menu {
    display: block;
    width: 250px;
  }
  .header-global-nav ul.sub-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 2;
    padding-top: 10px;
  }
  .header-global-nav ul.sub-menu li {
    padding: 0;
  }
  .header-global-nav ul.sub-menu li a {
    padding: 10px;
    border: 1px solid var(--bs-gray-100);
    display: block;
    line-height: 1;
    margin-top: -1px;
    background: var(--bs-white);
  }
  .header-global-nav ul.sub-menu li a:hover {
    background: var(--primary);
    color: var(--bs-white);
    opacity: 1;
  }
  .header-global-nav a.is-current {
  position: relative;
}

.header-global-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

}
@media print, screen and (min-width: 1400px) {
  .header-fixed {
    padding: 0 4vw;
  }
  .header-global-nav ul li {
    padding: 0 15px;
  }
}
@media print, screen and (min-width: 1600px) {
  .header-global-nav {
    padding-right: 4vw;
  }
  .header-global-nav ul li {
    padding: 0 24px;
  }
}
/* =============================================================
footer設定
================================================================ */
#page-top {
  right: 10px;
  z-index: 1;
  cursor: pointer;
}

#page-top img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.2);
}
.footer-logo img {
  height: 35px;
}

.footer-menu ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-menu li {
  width: calc(100% / 2);
}

.footer-menu li a {
  font-size: clamp(0.95rem, 1.5vw, 1rem);
}

.policy-menu ul {
  list-style: none;
  padding-left: 0;
}

.policy-menu li a {
  font-weight: 400;
  font-size: 14px;
}

.footer-copy {
  font-size: clamp(10px, 1vw, 12px);
}

@media print, screen and (min-width: 768px) {
  #page-top {
    right: 48px;
  }
  #page-top img {
    height: 50px;
    width: 50px;
  }
  .footer-logo img {
    height: 40px;
  }
  .footer-menu ul {
    flex-wrap: nowrap;
    justify-content: center;
    justify-content: space-between;
    font-weight: bold;
  }
  .footer-menu li {
    width: auto;
  }
  .policy-menu.footer-menu ul {
    justify-content: flex-start;
  }
  .policy-menu.footer-menu ul li:not(:last-child) {
    padding-right: 30px;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
  }
}

/* =============================================================
固定ページ設定
================================================================ */
.top-news-link {
  right: 2rem;
}
.primary-ttl-img {
  position: relative;
  padding-bottom: 1.25rem;
}
.primary-ttl-img img {
  height: 20px;
}
.primary-ttl-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  width: 2.25em;
  height: 1px;
}
.primary-ttl02 {
  height: 20px;
}
.border-bottom-primary {
  border-bottom: 1px solid var(--primary);
}
.archives-news {
  margin-top: 30px;
  padding-bottom: 30px;
}
.archives-news:first-child {
  padding-top: 30px;
  border-top: 1px solid var(--primary);
}
.archives-news-list {
  gap: 10px 40px;
}
.category-name {
  padding: .2em .5em;
  opacity: .9;
  filter: alpha(opacity=90);
  -ms-filter: "alpha(opacity=90)";
  font-size: 65%;
}
.policy ul {
  list-style: none;
  padding-left: 0;
}

.policy ul li {
  position: relative;
  padding-left: 25px;
}

.policy ul li span {
  position: absolute;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .mt-md-6 {
    margin-top: 5rem !important;
  }
  .company-table th {
    width: 40%;
  }
  .top-news-link {
    right: 5rem;
  }
  .primary-ttl02, .primary-ttl-img img {
    height: 3vw;
  }
  .primary-ttl-img {
    padding-right: 2rem;
    padding-bottom: 0;
  }
  .primary-ttl-img::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: inherit;
    right: 1px;
    background-color: var(--primary);
    width: 1px;
    height: 100%;
  }
  .primary-ttl01 h2 {
    
  }
  
}
@media print, screen and (min-width: 992px) {
  .mt-md-6 {
    margin-top: 6rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .mt-md-6 {
    margin-top: 8rem !important;
  }
}
@media print, screen and (min-width: 1600px) {
  .top-news-link {
    right: 17vw;
  }
}