@charset "UTF-8";
/* 
Version: 2021
Build Time: November 11, 2020
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  vertical-align: baseline;
  -webkit-text-size-adjust: 100% !important;
  -ms-text-size-adjust: 100% !important;
      text-size-adjust: 100% !important;
  -moz-text-size-adjust: 100% !important;
}

select,
button,
input,
textarea,
button {
  border: 1px solid #333;
}

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

table,
td,
th {
  border: 1px solid #333;
}

td,
th {
  line-height: 1.5;
  padding: 0.3em 0.4em;
}

th {
  font-size: 1.05em;
}

html {
  font-size: 100%;
  word-break: break-word;
}

body {
  color: #333;
  -webkit-font-smoothing: antialiased;
  font: normal normal normal 14px/1.4 "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
  background-color: #ffffff;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

hr {
  overflow: visible;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 1em 0;
  height: 0;
  border-top: 1px solid #ccc;
}

button:disabled {
  cursor: default;
}

a,
a:active,
a:link,
a:visited {
  text-decoration: none;
  color: #333;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  display: inline-block;
  vertical-align: middle;
}

[hidden],
dialog:not([open]),
template {
  display: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

input,
select {
  vertical-align: middle;
}

button {
  vertical-align: inherit;
  line-height: inherit;
  cursor: pointer;
}

button,
select {
  text-transform: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: 1em;
}

mark {
  background-color: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 70%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

ul {
  list-style: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
  border-style: none;
}

/* all */
:root {
  --color-black: #000;
  --color-white: #fff;
  --font-Poppins: "Poppins", sans-serif;
  --font-Noto: "Noto Sans JP", sans-serif;
  --font-Montserrat: "Montserrat", sans-serif;
  --box-shaow: #c9c9c969;
}

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

.Poppins {
  font-family: var(--font-Poppins);
}

.Noto {
  font-family: var(--font-Noto);
}

.Montserrat {
  font-family: var(--font-Montserrat);
}

img {
  display: block;
  margin: 0 auto;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--color-black);
  text-decoration: none;
}

.red {
  color: #d60000;
}

.small {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

.big {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

.bg-photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-photo img {
  display: none;
}

.ws-fade {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.ws-fade.show {
  opacity: 1;
}

/* sample css */
.visible {
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: cubic-bezier(0.15, 1.36, 0.5, 1), -webkit-transform 0.4s ease;
  transition: cubic-bezier(0.15, 1.36, 0.5, 1), -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, cubic-bezier(0.15, 1.36, 0.5, 1);
  transition: transform 0.4s ease, cubic-bezier(0.15, 1.36, 0.5, 1), -webkit-transform 0.4s ease;
}
.visible.normalanimate {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}

.visible-text {
  opacity: 0;
}
.visible-text ._text {
  -webkit-clip-path: inset(0% 0% 0% 100%);
          clip-path: inset(0% 0% 0% 100%);
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.visible-text ._text:nth-child(1) {
  -webkit-transition-delay: 0.03s;
          transition-delay: 0.03s;
}
.visible-text ._text:nth-child(2) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}
.visible-text ._text:nth-child(3) {
  -webkit-transition-delay: 0.09s;
          transition-delay: 0.09s;
}
.visible-text ._text:nth-child(4) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}
.visible-text ._text:nth-child(5) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.visible-text ._text:nth-child(6) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}
.visible-text ._text:nth-child(7) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}
.visible-text ._text:nth-child(8) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}
.visible-text ._text:nth-child(9) {
  -webkit-transition-delay: 0.27s;
          transition-delay: 0.27s;
}
.visible-text ._text:nth-child(10) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.visible-text ._text:nth-child(11) {
  -webkit-transition-delay: 0.33s;
          transition-delay: 0.33s;
}
.visible-text ._text:nth-child(12) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
.visible-text ._text:nth-child(13) {
  -webkit-transition-delay: 0.39s;
          transition-delay: 0.39s;
}
.visible-text ._text:nth-child(14) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}
.visible-text ._text:nth-child(15) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.visible-text ._text:nth-child(16) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.visible-text ._text:nth-child(17) {
  -webkit-transition-delay: 0.51s;
          transition-delay: 0.51s;
}
.visible-text ._text:nth-child(18) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}
.visible-text ._text:nth-child(19) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}
.visible-text ._text:nth-child(20) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.visible-text ._text:nth-child(21) {
  -webkit-transition-delay: 0.63s;
          transition-delay: 0.63s;
}
.visible-text ._text:nth-child(22) {
  -webkit-transition-delay: 0.66s;
          transition-delay: 0.66s;
}
.visible-text ._text:nth-child(23) {
  -webkit-transition-delay: 0.69s;
          transition-delay: 0.69s;
}
.visible-text ._text:nth-child(24) {
  -webkit-transition-delay: 0.72s;
          transition-delay: 0.72s;
}
.visible-text ._text:nth-child(25) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.visible-text ._text:nth-child(26) {
  -webkit-transition-delay: 0.78s;
          transition-delay: 0.78s;
}
.visible-text ._text:nth-child(27) {
  -webkit-transition-delay: 0.81s;
          transition-delay: 0.81s;
}
.visible-text ._text:nth-child(28) {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}
.visible-text ._text:nth-child(29) {
  -webkit-transition-delay: 0.87s;
          transition-delay: 0.87s;
}
.visible-text ._text:nth-child(30) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.visible-text ._text:nth-child(31) {
  -webkit-transition-delay: 0.93s;
          transition-delay: 0.93s;
}
.visible-text ._text:nth-child(32) {
  -webkit-transition-delay: 0.96s;
          transition-delay: 0.96s;
}
.visible-text ._text:nth-child(33) {
  -webkit-transition-delay: 0.99s;
          transition-delay: 0.99s;
}
.visible-text ._text:nth-child(34) {
  -webkit-transition-delay: 1.02s;
          transition-delay: 1.02s;
}
.visible-text ._text:nth-child(35) {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
.visible-text ._text:nth-child(36) {
  -webkit-transition-delay: 1.08s;
          transition-delay: 1.08s;
}
.visible-text ._text:nth-child(37) {
  -webkit-transition-delay: 1.11s;
          transition-delay: 1.11s;
}
.visible-text ._text:nth-child(38) {
  -webkit-transition-delay: 1.14s;
          transition-delay: 1.14s;
}
.visible-text ._text:nth-child(39) {
  -webkit-transition-delay: 1.17s;
          transition-delay: 1.17s;
}
.visible-text ._text:nth-child(40) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.visible-text ._text:nth-child(41) {
  -webkit-transition-delay: 1.23s;
          transition-delay: 1.23s;
}
.visible-text ._text:nth-child(42) {
  -webkit-transition-delay: 1.26s;
          transition-delay: 1.26s;
}
.visible-text ._text:nth-child(43) {
  -webkit-transition-delay: 1.29s;
          transition-delay: 1.29s;
}
.visible-text ._text:nth-child(44) {
  -webkit-transition-delay: 1.32s;
          transition-delay: 1.32s;
}
.visible-text ._text:nth-child(45) {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.visible-text ._text:nth-child(46) {
  -webkit-transition-delay: 1.38s;
          transition-delay: 1.38s;
}
.visible-text ._text:nth-child(47) {
  -webkit-transition-delay: 1.41s;
          transition-delay: 1.41s;
}
.visible-text ._text:nth-child(48) {
  -webkit-transition-delay: 1.44s;
          transition-delay: 1.44s;
}
.visible-text ._text:nth-child(49) {
  -webkit-transition-delay: 1.47s;
          transition-delay: 1.47s;
}
.visible-text ._text:nth-child(50) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.visible-text.normalanimate {
  opacity: 1;
}
.visible-text.normalanimate ._text {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

/* scroll */
.ws-goto-top {
  cursor: pointer;
  position: fixed;
  z-index: 20;
  margin: 0;
  padding: 0 0 2px;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 10px;
  width: clamp(30px, 5vw, 60px);
  height: clamp(30px, 5vw, 60px);
  background: #000;
  font-size: clamp(15px, 2.5vw, 30px);
  color: #fff;
  text-decoration: none;
  border-radius: clamp(15px, 2.5vw, 30px);
  opacity: 0;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: scale(0.01, 0.01);
      -ms-transform: scale(0.01, 0.01);
          transform: scale(0.01, 0.01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 1s;
  transition: 1s;
  font-size: 16px;
}

.ws-goto-top.ws-scroll-show {
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 0.9;
}

@media (hover: hover) {
  .ws-goto-top:hover {
    opacity: 0.5;
  }
}
.btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn_wrap .btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.btn_wrap .btn:before,
.btn_wrap .btn_link:before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  background: #0c0e13;
  -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  left: 24px;
}
.btn_wrap .btn:before {
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn_wrap .btn_link {
  min-width: 190px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 0;
  color: #0c0e13;
  letter-spacing: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #e4e4e9;
  padding: 20px 56px 20px 62px;
  border-radius: 50px;
  background-color: #fff;
}
.btn_wrap .btn_link_txt {
  text-align: center;
  font-family: var(--font-Poppins);
  font-weight: 400;
  color: inherit;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  font-size: 16px;
  line-height: 16px;
}
@media (hover: hover) {
  .btn_wrap .btn:hover:before {
    -webkit-transform: scale(20);
        -ms-transform: scale(20);
            transform: scale(20);
  }
  .btn_wrap .btn:hover:before {
    opacity: 0;
  }
  .btn_wrap .btn_link:hover {
    color: #fff;
  }
  .btn_wrap .btn_link:hover:before {
    -webkit-transform: scale(80);
        -ms-transform: scale(80);
            transform: scale(80);
  }
}
@media screen and (min-width: 767px) {
  .btn_wrap .btn_link {
    padding: 0.9vw 2.1vw 0.9vw 2.5vw;
  }
}

#toggle-btn {
  padding: 20px;
  white-space: nowrap;
  width: 54px;
  color: #fff;
  text-align: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 103;
  display: none;
}
#toggle-btn .bar {
  position: relative;
  width: 100%;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#toggle-btn .bar:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
          transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
  top: 0px;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
#toggle-btn .bar:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
          transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
  bottom: 0px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.nav-opened #toggle-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav-opened #toggle-btn .bar span {
  opacity: 0;
}

.nav-opened #toggle-btn .bar:before {
  background-color: #000;
  -webkit-transform: rotate(45deg) translate(2px, 2px);
      -ms-transform: rotate(45deg) translate(2px, 2px);
          transform: rotate(45deg) translate(2px, 2px);
}

.nav-opened #toggle-btn .bar:after {
  background-color: #000;
  -webkit-transform: rotate(-45deg) translate(14px, -14px);
      -ms-transform: rotate(-45deg) translate(14px, -14px);
          transform: rotate(-45deg) translate(14px, -14px);
}

.nav-opened .head .ghost-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* html */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--color-black);
  line-height: 1.6;
  opacity: 1;
  position: relative;
}

main {
  z-index: 1 !important;
}

.wraper-content {
  position: relative;
}

.nowrap {
  display: inline-block;
}

.head {
  position: fixed;
  left: 0;
  right: 0;
  top: -1px;
  z-index: 100;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .logo {
  padding: 24px 34px;
}
.head .logo a {
  height: 60px;
  display: block;
  width: 100%;
  width: 210px;
  background-image: url(../img/logo-white.webp);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .ghost-nav {
  width: 100%;
  width: calc(100% - 210px);
}
.head .ghost-nav .wrap {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .ghost-nav .logo a {
  background-image: none !important;
}
.head .ghost-nav .main_nav {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.head .ghost-nav .main_nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .ghost-nav .main_nav ul li a {
  white-space: nowrap;
  padding: 0 clamp(10px, 5.5414px + 1.2739vw, 30px);
  font-family: var(--font-Poppins);
  font-weight: 600;
  font-size: clamp(12px, 10.2716px + 0.4938vw, 16px);
  display: block;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .ghost-nav .main_nav ul li a:hover {
  text-decoration: none;
  color: #0193d0;
}
.head .ghost-nav .main_nav ul li a.active {
  text-decoration: none;
  color: #0193d0;
}
.head .header__right-lang {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.head .header__right-lang .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.head .header__right-lang .icon svg {
  fill: #fff;
  visibility: visible;
}
.head .header__right-lang .lang-name {
  position: relative;
  font-weight: 600;
}
.head .header__right-lang span {
  cursor: pointer;
  text-transform: uppercase;
  min-width: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.head .header__right-lang span:after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  content: "";
  display: block;
  background-image: url(../img/icon-down.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.head .header__right-lang .sele {
  text-align: left;
  width: 106%;
  top: 100%;
  left: -3%;
  display: block;
  height: auto;
  position: absolute;
  opacity: 0;
  margin-top: -5px;
  -webkit-transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
  visibility: hidden;
}
.head .header__right-lang .sele.language_isOpen {
  opacity: 1;
  margin-top: 0px;
  visibility: visible;
}
.head .header__right-lang a {
  color: #fff;
  padding: 1px 0px;
  white-space: nowrap;
  text-transform: uppercase;
  min-width: 40px;
  font-size: 14px;
  position: relative;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .btn {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-right: clamp(10px, -1.1465px + 3.1847vw, 60px);
  color: #fff;
}
.head .btn a {
  width: 100%;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: clamp(10px, 8px + 0.625vw, 20px) clamp(20px, 16px + 1.25vw, 40px);
  white-space: nowrap;
  color: #fff;
  position: relative;
  border-radius: 50px;
  line-height: 1;
  font-size: 20px;
  font-size: clamp(16px, 14.2716px + 0.4938vw, 20px);
  font-family: var(--font-Poppins);
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  overflow: hidden;
  z-index: 0;
}
.head .btn a:before {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.head .btn a .icon {
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 15px;
  position: relative;
  z-index: 20;
}
.head .btn a .icon svg {
  fill: #fff;
  display: block;
}
.head .btn a span {
  display: block;
  position: relative;
  z-index: 20;
}
.head .btn a:hover {
  color: #0193d0;
}
.head .btn a:hover svg {
  fill: #0193d0;
}
.head .btn a:hover:before {
  opacity: 0;
}
.head.show {
  background-color: rgba(255, 255, 255, 0.9411764706);
  -webkit-box-shadow: 0px 3px 6px var(--box-shaow);
          box-shadow: 0px 3px 6px var(--box-shaow);
}
.head.show .logo a {
  background-image: url(../img/logo.webp);
  padding-top: 0;
  padding-bottom: 0;
  height: 40px;
}
.head.show .ghost-nav .main_nav ul li a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head.show .ghost-nav .main_nav ul li a:hover {
  text-decoration: none;
  color: #0193d0;
}
.head.show .ghost-nav .main_nav ul li a.active {
  text-decoration: none;
  color: #0193d0;
}
.head.show .header__right-lang {
  border-bottom: 1px solid #000;
  color: #000;
}
.head.show .header__right-lang a {
  color: #000;
}
.head.show .header__right-lang span {
  color: #000;
}
.head.show .header__right-lang span:after {
  background-image: url(../img/icon-down-black.svg);
}
.head.show .header__right-lang .icon svg {
  fill: #000;
}
.head.show #toggle-btn .bar:before {
  background-color: #000;
}
.head.show #toggle-btn .bar::after {
  background-color: #000;
}

.hero {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 420px;
  position: relative;
  margin: 0 auto;
  z-index: 5;
}
.hero .hero-video {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero .hero-video video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.hero .hero-video .bg-color {
  position: absolute;
  height: 100%;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(19, 46, 62, 0.5);
}
.hero .hero-inner {
  position: relative;
  z-index: 3;
  max-width: calc(100% - clamp(20px, -39.2994px + 16.9427vw, 286px));
  margin: 0 auto;
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero .hero-inner .en {
  font-family: var(--font-Poppins);
  position: relative;
  font-weight: 600;
  font-size: clamp(36px, 14.5987px + 6.1146vw, 132px);
  font-style: italic;
  line-height: 0.7em;
  opacity: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.hero .hero-inner .en ._text {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(80%);
      -ms-transform: translateY(80%);
          transform: translateY(80%);
  -webkit-clip-path: inset(0% 0% 0% 100%);
          clip-path: inset(0% 0% 0% 100%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.hero .hero-inner .en ._text:nth-child(1) {
  -webkit-transition-delay: 1.43s;
          transition-delay: 1.43s;
}
.hero .hero-inner .en ._text:nth-child(2) {
  -webkit-transition-delay: 1.46s;
          transition-delay: 1.46s;
}
.hero .hero-inner .en ._text:nth-child(3) {
  -webkit-transition-delay: 1.49s;
          transition-delay: 1.49s;
}
.hero .hero-inner .en ._text:nth-child(4) {
  -webkit-transition-delay: 1.52s;
          transition-delay: 1.52s;
}
.hero .hero-inner .en ._text:nth-child(5) {
  -webkit-transition-delay: 1.55s;
          transition-delay: 1.55s;
}
.hero .hero-inner .en ._text:nth-child(6) {
  -webkit-transition-delay: 1.58s;
          transition-delay: 1.58s;
}
.hero .hero-inner .en ._text:nth-child(7) {
  -webkit-transition-delay: 1.61s;
          transition-delay: 1.61s;
}
.hero .hero-inner .en ._text:nth-child(8) {
  -webkit-transition-delay: 1.64s;
          transition-delay: 1.64s;
}
.hero .hero-inner .en .smll {
  margin-top: 20px;
  line-height: 0.7em;
  font-size: clamp(28px, 13.2866px + 4.2038vw, 94px);
}
.hero .hero-inner .en .svg-txt {
  width: 22vw;
  max-width: 300px;
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 1.25em;
  opacity: 0;
  -webkit-transform: translateY(80%);
      -ms-transform: translateY(80%);
          transform: translateY(80%);
  -webkit-clip-path: inset(0% 0% 0% 100%);
          clip-path: inset(0% 0% 0% 100%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.hero .hero-inner .en .svg-txt svg {
  width: 100%;
}
.hero .hero-inner .en.jsup {
  opacity: 1;
}
.hero .hero-inner .en.jsup ._text {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.hero .hero-inner .en.jsup .svg-txt {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
.hero .hero-inner .text {
  position: relative;
  z-index: 4;
  font-family: var(--font-Noto);
  font-weight: 400;
  font-size: clamp(14px, 11.7707px + 0.6369vw, 24px);
  margin-top: clamp(10px, 7.7707px + 0.6369vw, 20px);
  line-height: 1.8;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s;
  transition: -webkit-clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s;
  transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s;
  transition: clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s, -webkit-clip-path 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s;
}
.hero .hero-inner .text.jsup {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.sec-ttl-sub {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: clamp(16px, 15.1083px + 0.2548vw, 20px);
  font-family: var(--font-Noto);
  font-weight: 400;
}
.sec-ttl-sub::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  margin-right: 25px;
}
.sec-ttl-sub span {
  display: inline-block;
}

.sec-title {
  white-space: nowrap;
  font-size: clamp(28px, 20.8662px + 2.0382vw, 60px);
  font-family: var(--font-Poppins);
  font-weight: 400;
  line-height: 1.4;
}
.sec-title span {
  display: inline-block;
}

.sp {
  display: none;
}

/*sec01*/
.sec01 {
  background-image: url(../img/bg01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: clamp(40px, 22.1656px + 5.0955vw, 120px) 0 clamp(40px, 11.0191px + 8.2803vw, 170px);
  position: relative;
  overflow: hidden;
}
.sec01 .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec01 .sec-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  margin-right: 25px;
}
.sec01 .bg-text {
  width: 100vw;
  font-family: var(--font-Poppins);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  background-image: url(../img/text-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.6588235294);
  font-size: clamp(60px, -1.3057px + 17.5159vw, 335px);
  text-align: center;
  opacity: 0.3;
}
.sec01 .bg-text span {
  display: inline-block;
}
.sec01 .sec-ttl-sub {
  max-width: calc(100% - clamp(20px, -39.2994px + 16.9427vw, 286px));
  margin: 0 auto 0;
  margin-bottom: 20px;
  color: #fff;
}
.sec01 .sec-title {
  color: #fff;
  max-width: calc(100% - clamp(20px, -39.2994px + 16.9427vw, 286px));
  max-width: calc(100% - clamp(20px, -39.2994px + 16.9427vw, 286px));
  margin: 0 auto 0;
}
.sec01 .sec01-wrapper {
  position: relative;
  margin: 0 auto;
}
.sec01 .sec01-wrapper > .btn_wrap {
  top: 0;
  right: calc(clamp(20px, -39.2994px + 16.9427vw, 286px) / 2);
  position: absolute;
}
.sec01 .sec01-wrapper > .btn_wrap .btn_link_txt {
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .sec01 .sec01-wrapper > .btn_wrap .btn_link {
    padding: 1.1vw 3.8vw 1.1vw 4.2vw;
  }
}
.sec01 .sec01-wrapper > .btn_wrap a {
  border: 1px solid transparent;
  background-color: transparent;
}
.sec01 .sec01-wrapper > .btn_wrap a:after {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.sec01 .sec01-wrapper > .btn_wrap .btn:before,
.sec01 .sec01-wrapper > .btn_wrap .btn_link:before {
  background-color: #fff;
  left: 36px;
}
.sec01 .sec01-wrapper > .btn_wrap:hover .btn_link_txt {
  color: #0193d0;
}
.sec01 .swiper-box {
  overflow: hidden;
  max-width: calc(100% - clamp(20px, -39.2994px + 16.9427vw, 286px));
  max-width: 1470px;
  margin: 0 auto;
}
.sec01 .sec01-slider {
  margin-top: clamp(40px, 28.8535px + 3.1847vw, 90px);
  overflow: visible;
  position: static;
  margin-top: 180px;
  margin-top: 380px;
}
.sec01 .cols-item {
  margin: 0 auto;
}
.sec01 .cols-item .col {
  text-align: center;
  position: relative;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(280px);
      -ms-transform: translateY(280px);
          transform: translateY(280px);
}
.sec01 .cols-item .col.swiper-slide-prev {
  -webkit-transform: translateY(-140px);
      -ms-transform: translateY(-140px);
          transform: translateY(-140px);
}
.sec01 .cols-item .col.swiper-slide-next {
  -webkit-transform: translateY(-140px);
      -ms-transform: translateY(-140px);
          transform: translateY(-140px);
}
.sec01 .cols-item .col.swiper-slide-active {
  -webkit-transform: translateY(-280px);
      -ms-transform: translateY(-280px);
          transform: translateY(-280px);
}
.sec01 .cols-item .col a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.sec01 .cols-item .col .title {
  font-family: var(--font-Poppins);
  font-weight: 400;
  margin-top: 10px;
  font-size: clamp(18px, 15.3248px + 0.7643vw, 30px);
}
.sec01 .cols-item .col p {
  margin-top: 10px;
  font-family: var(--font-Noto);
  font-weight: 400;
  font-size: clamp(12px, 11.5541px + 0.1274vw, 14px);
  margin-top: 10px;
}
.sec01 .cols-item .col p:last-child {
  margin-bottom: 0;
}
.sec01 .cols-item .col .btn_wrap {
  margin-top: 20px;
}
.sec01 .cols-item .col .btn_wrap .btn {
  cursor: pointer;
}
.sec01 .cols-item .col:hover .btn_wrap .btn:before {
  opacity: 0;
}
.sec01 .cols-item .col:hover .btn_wrap .btn_link:before {
  -webkit-transform: scale(80);
  -ms-transform: scale(80);
      transform: scale(80);
}
.sec01 .cols-item .col:hover .btn_wrap .btn_link {
  color: #fff;
}
.sec01 .swiper-button-next,
.sec01 .swiper-button-prev {
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../img/right-w.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec01 .swiper-button-next::after,
.sec01 .swiper-button-prev::after {
  display: none;
}
.sec01 .swiper-button-prev {
  left: clamp(20px, 15.5414px + 1.2739vw, 40px);
}
.sec01 .swiper-button-next {
  right: clamp(20px, 15.5414px + 1.2739vw, 40px);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*sec02*/
.sec02 {
  background-image: url(../img/bg02.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: clamp(40px, 33.3121px + 1.9108vw, 70px) clamp(20px, 8.8535px + 3.1847vw, 70px);
  padding-top: clamp(40px, 26.6242px + 3.8217vw, 100px);
  position: relative;
}
.sec02 .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.sec02 .sec-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  margin-right: 25px;
}
.sec02 .text-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec02::before {
  top: 0;
  right: 0;
  position: absolute;
  content: "";
  display: block;
  width: 43%;
  height: 100%;
  background-color: #003175;
  mix-blend-mode: multiply;
}
.sec02 .sec02-wrapper {
  position: relative;
  z-index: 2;
}
.sec02 .btn_wrap {
  position: absolute;
  bottom: 10%;
  left: calc(67% + clamp(20px, 2.1656px + 5.0955vw, 100px));
}
.sec02 .btn_wrap .btn_link_txt {
  font-family: var(--font-Noto);
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .sec02 .btn_wrap .btn_link {
    padding: 1.1vw 3.8vw 1.1vw 4.2vw;
  }
}
.sec02 .sec-ttl-sub {
  color: #fff;
}
.sec02 .sec-ttl-sub::before {
  background: #fff;
}
.sec02 .sec-title {
  color: #fff;
}
.sec02 .sec02-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.sec02 .sec02-wrapper .right {
  width: 33%;
  padding: 40px clamp(10px, -32.3567px + 12.1019vw, 200px) 0 clamp(20px, 2.1656px + 5.0955vw, 100px);
}
.sec02 .sec02-wrapper .sec02-cols-box {
  width: 67%;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols {
  width: 77%;
  margin: 0 auto;
  margin-right: 0;
  margin-bottom: clamp(20px, 14.4268px + 1.5924vw, 45px);
  padding-top: 40px;
  position: relative;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols:hover {
  opacity: 0.7;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .sub {
  font-family: var(--font-Poppins);
  font-weight: 700;
  position: absolute;
  z-index: 2;
  font-size: clamp(40px, 32.8662px + 2.0382vw, 72px);
  line-height: 1;
  top: 0px;
  left: 0px;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .sub .line {
  width: 1px;
  height: 2.75em;
  position: absolute;
  background-color: #fff;
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
  right: -54px;
  top: 15%;
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con {
  background-color: #0a1a2d;
  width: 96%;
  margin: 0 auto 0;
  margin-right: 0;
  padding: clamp(20px, 11.0828px + 2.5478vw, 60px) clamp(20px, 15.5414px + 1.2739vw, 40px) clamp(20px, 11.0828px + 2.5478vw, 60px) clamp(20px, 13.3121px + 1.9108vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .left {
  padding-right: clamp(10px, 1.0828px + 2.5478vw, 50px);
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .ttl {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .ttl .en {
  font-family: var(--font-Poppins);
  margin-right: clamp(10px, 0.1911px + 2.8025vw, 54px);
  font-weight: 400;
  font-size: clamp(26px, 21.0955px + 1.4013vw, 48px);
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .ttl .jp {
  font-family: var(--font-Noto);
  font-weight: 900;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
}
.sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols:nth-child(2n) {
  margin-left: 0;
}
.sec02 .sec02-wrapper .sec02-cols-box .cols:last-child {
  margin-bottom: 0;
}

/*sec03*/
.sec03 {
  background-color: #001635;
  padding: clamp(40px, 14.586px + 7.2611vw, 154px) 0px clamp(40px, 26.6242px + 3.8217vw, 100px);
}
.sec03 .sec-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec03 .sec-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  margin-right: 25px;
}
.sec03 .sec03-wrapper {
  max-width: calc(100% - clamp(20px, -39.2994px + 16.9427vw, 286px));
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec03 .sec03-wrapper .left {
  width: 250px;
}
.sec03 .sec03-wrapper .btn_wrap {
  position: absolute;
  left: 0;
  bottom: 10%;
}
.sec03 .sec03-wrapper .btn_wrap .btn_link_txt {
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .sec03 .sec03-wrapper .btn_wrap .btn_link {
    padding: 1.1vw 3.8vw 1.1vw 4.2vw;
  }
}
.sec03 .sec03-wrapper .btn_wrap a {
  border: 1px solid transparent;
  background-color: transparent;
}
.sec03 .sec03-wrapper .btn_wrap a:after {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(94.5deg, #0193d0, #00579e);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.sec03 .sec03-wrapper .btn_wrap .btn:before,
.sec03 .sec03-wrapper .btn_wrap .btn_link:before {
  background-color: #fff;
  left: 36px;
}
.sec03 .sec03-wrapper .btn_wrap:hover .btn_link_txt {
  color: #0193d0;
}
.sec03 .sec-ttl-sub {
  margin-top: 40px;
  color: #fff;
}
.sec03 .sec-title {
  color: #fff;
}
.sec03 .cols-item {
  width: 76%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, -1.1465px + 3.1847vw, 60px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: calc(100% - 250px);
  margin-left: 8%;
}
.sec03 .cols-item .col {
  background-color: #0c213e;
  color: #fff;
  position: relative;
  width: 33.333333%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sec03 .cols-item .col a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.sec03 .cols-item .col .img {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.sec03 .cols-item .col .img .bg-photo {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec03 .cols-item .col figure {
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec03 .cols-item .col figure::before {
  content: "";
  display: block;
  padding-top: 68%;
}
.sec03 .cols-item .col figure img {
  width: 100%;
}
.sec03 .cols-item .col .col-con {
  height: 47%;
  padding: 18px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec03 .cols-item .col .mete-box {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec03 .cols-item .col .mete-box .tag {
  padding: 1px 10px;
  font-size: 12px;
  color: #0c213e;
  font-family: var(--font-Noto);
  font-weight: 400;
  background-color: #fff;
}
.sec03 .cols-item .col .mete-box .date {
  font-size: 12px;
  color: #fff;
  font-family: var(--font-Noto);
  font-weight: 400;
}
.sec03 .cols-item .col .title {
  margin-bottom: 10px;
  font-size: clamp(14px, 12.2166px + 0.5096vw, 22px);
  font-family: var(--font-Noto);
  font-weight: 400;
  line-height: 1.4;
}
.sec03 .cols-item .col p {
  margin-top: auto;
  font-family: var(--font-Noto);
  font-weight: 400;
  font-size: 12px;
}
.sec03 .cols-item .col:nth-child(2n) {
  background-color: #07101c;
}
.sec03 .cols-item .col:hover .img .bg-photo {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

footer {
  overflow: hidden;
  background-color: #0a1a2d;
}
footer .foot-wrap {
  max-width: 1440px;
  padding: 20px 20px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .foot-wrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  width: 100vw;
  height: 1px;
  background-color: #404040;
}
footer .foot-wrap .foot-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .foot-wrap .foot-nav ul li a {
  white-space: nowrap;
  margin-left: 40px;
  text-transform: uppercase;
  color: #fff;
  font-family: var(--font-Poppins);
  font-weight: 400;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer .foot-wrap .foot-nav ul li a:hover {
  text-decoration: none;
  color: #0193d0;
}
footer .foot-wrap .foot-nav ul li a.active {
  text-decoration: none;
  color: #0193d0;
}
footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .social a {
  margin-left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
footer .social a:hover {
  text-decoration: none;
  color: #0193d0;
}
footer .social.sp {
  display: none;
}
footer .foot-bom {
  max-width: 1440px;
  padding: 20px 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .foot-bom .copy {
  color: #cbcbcb;
  font-family: var(--font-Noto);
  font-weight: 200;
  font-size: 12px;
}

@media (max-width: 1300px) {
  .head .logo {
    padding: 20px 20px;
  }
  .head .btn {
    margin-right: 20px;
  }
  .sec02 .sec02-wrapper .right {
    width: 300px;
    padding: 40px 0 0 clamp(20px, 2.1656px + 5.0955vw, 100px);
  }
  .sec02 .sec02-wrapper .sec02-cols-box {
    width: calc(100% - 300px);
  }
  .sec02 .btn_wrap {
    bottom: 10%;
    left: calc(100% - 300px + clamp(20px, 2.1656px + 5.0955vw, 100px));
  }
  .sec02::before {
    width: 400px;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols {
    width: 88%;
  }
  .sec03 .cols-item .col .col-con {
    height: auto !important;
  }
}
@media (max-width: 940px) {
  .head .ghost-nav {
    width: calc(100% - 6rem);
    max-width: 40rem;
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    z-index: 101;
    background-color: #dff3fb;
    -webkit-transition: 0.35s linear;
    transition: 0.35s linear;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    padding: 50px 20px;
    border-radius: 0px 0 10px 10px;
  }
  .head .ghost-nav .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .head .ghost-nav .wrap .logo {
    display: block;
  }
  .head .ghost-nav .main_nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .head .ghost-nav .main_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0px;
  }
  .head .ghost-nav .main_nav ul li {
    width: 100%;
  }
  .head .ghost-nav .main_nav ul li a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #018fcc;
  }
  .head .header__right-lang {
    color: #000;
  }
  .head .header__right-lang a {
    color: #000;
  }
  .head .ghost-nav .main_nav ul li a {
    color: #000;
  }
  .head .header__right-lang span:after {
    display: none;
  }
  .head .header__right-lang {
    margin-right: 0;
    background-color: #dff3fb;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    border-bottom: 0px solid #000 !important;
  }
  .head .header__right-lang span {
    width: auto;
    min-width: auto;
    background-color: #0193d0;
    padding: 0px 10px;
    color: #fff !important;
  }
  .head .header__right-lang .sele {
    width: auto;
    position: static;
    opacity: 1;
    margin-top: 0px;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
  }
  .head .header__right-lang a {
    padding: 0px 10px;
    width: auto;
    min-width: auto;
  }
  .head .header__right-lang .icon {
    display: block;
  }
  .head .header__right-lang .icon svg {
    fill: #000;
  }
  .head .header__right-lang .lang-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .head .ghost-nav .main_nav {
    margin-top: 20px;
  }
  #toggle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .head .btn {
    margin-top: 40px;
    margin-right: 0px;
  }
  .sec02 .sec02-wrapper {
    display: block;
  }
  .sec02 .sec02-wrapper .right {
    width: 100%;
    padding: 0;
  }
  .sec02 .sec-title br {
    display: none;
  }
  .sec02 .sec02-wrapper .sec02-cols-box {
    width: 100%;
    margin-top: 40px;
  }
  .sec02 .btn_wrap {
    position: static;
    margin-top: 40px;
  }
  .sec03 .sec03-wrapper .left {
    width: 220px;
  }
  .sec03 .cols-item {
    max-width: calc(100% - 220px);
    display: block;
    margin-left: 0;
  }
  .sec03 .cols-item .col {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 40px;
  }
  .sec03 .cols-item .col:last-child {
    margin-bottom: 0;
  }
  .sec03 .cols-item .col .img {
    width: 30%;
  }
  .sec03 .cols-item .col figure {
    width: 100%;
    height: 100%;
  }
  .sec03 .cols-item .col .col-con {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .head .header__right-lang .icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }
  .btn_wrap .btn_link {
    padding: 14px 56px 14px 62px;
  }
  .btn_wrap .btn_link_txt {
    font-size: 14px;
    line-height: 14px;
  }
  .sp {
    display: block;
  }
  .head .logo {
    padding: 14px 20px;
  }
  .head .logo a {
    width: 172px;
  }
  .head .ghost-nav {
    width: 100%;
  }
  #toggle-btn {
    width: 36px;
  }
  .nav-opened #toggle-btn .bar:before {
    -webkit-transform: rotate(45deg) translate(2px, 2px);
        -ms-transform: rotate(45deg) translate(2px, 2px);
            transform: rotate(45deg) translate(2px, 2px);
  }
  .nav-opened #toggle-btn .bar:after {
    -webkit-transform: rotate(-45deg) translate(14px, -14px);
        -ms-transform: rotate(-45deg) translate(14px, -14px);
            transform: rotate(-45deg) translate(14px, -14px);
  }
  .hero .hero-inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 40px;
  }
  .sec01 .sec01-slider {
    margin-top: 40px;
    width: 90%;
  }
  .sec01 .cols-item .col.swiper-slide-active {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .sec01 .cols-item .col.swiper-slide-prev {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .sec01 .cols-item .col.swiper-slide-next {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .sec01 .swiper-button-next,
  .sec01 .swiper-button-prev {
    top: 88%;
    width: 42px;
    height: 42px;
  }
  .sec01 .cols-item .con p {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .sec01 .sec01-wrapper > .btn_wrap {
    margin-top: 40px;
    position: static;
  }
  .sec01 .cols-item .col .btn_wrap {
    display: none;
  }
  .sec02 {
    padding: clamp(40px, 33.3121px + 1.9108vw, 70px) 0;
  }
  .sec02 .sec02-wrapper .right {
    padding: 0 clamp(20px, 8.8535px + 3.1847vw, 70px);
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols {
    width: calc(100% - clamp(20px, 8.8535px + 3.1847vw, 70px) * 2);
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con {
    width: 100%;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .sub {
    top: 15px;
    left: -20px;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .sub .line {
    right: -30px;
    top: 32%;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con {
    display: block;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .ttl {
    display: block;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .ttl .jp {
    display: block;
    margin: 0px 0 10px;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .left {
    padding-right: 0;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols .cols-con .btn {
    width: 40px;
    margin: 0 auto;
    margin-right: 0;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols:nth-child(2n) .sub {
    right: -20px;
    left: auto;
  }
  .sec02 .sec02-wrapper .sec02-cols-box .cols:nth-child(2n) .sub .line {
    right: auto;
    top: 32%;
    left: -30px;
    -webkit-transform: rotate(-40deg);
        -ms-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
  .sec02::before {
    display: none;
  }
  .sec03 .sec03-wrapper {
    display: block;
  }
  .sec03 .sec03-wrapper .left {
    width: 100%;
    margin-bottom: 40px;
  }
  .sec03 .sec-ttl-sub {
    margin-top: 0px;
  }
  .sec03 .cols-item {
    max-width: 100%;
    width: 100%;
  }
  .sec03 .cols-item .col {
    margin-bottom: 20px;
  }
  .sec03 .cols-item .col .img {
    width: 45%;
  }
  .sec03 .cols-item .col .col-con {
    width: 55%;
  }
  .sec03 .cols-item .col p {
    display: none;
  }
  .sec03 .sec03-wrapper .btn_wrap {
    position: static;
    margin-top: 40px;
  }
  footer .foot-wrap {
    padding: 40px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .social.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer .social.sp a {
    margin: 0 10px;
  }
  footer .foot-wrap .foot-nav {
    margin: 20px 0;
  }
  footer .foot-wrap .foot-nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .foot-wrap .foot-nav ul li a {
    margin-left: 0px;
    padding: 0 10px;
    font-size: 12px;
  }
  footer .foot-bom {
    display: block;
  }
  footer .foot-bom .copy {
    text-align: center;
  }
  footer .foot-bom .social {
    display: none;
  }
}
/* page */
.getheadheight {
  padding-top: 108px;
}
@media (max-width: 1300px) {
  .getheadheight {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .getheadheight {
    padding-top: 88px;
  }
}

.page {
  background-color: #001635;
}

.navigation {
  color: #fff;
  margin: 0 auto clamp(20px, 16px + 1.25vw, 40px);
  font-weight: bold;
  padding: 0 clamp(20px, 12px + 2.5vw, 60px);
}
.navigation .layout {
  border-top: 1px solid #fff;
  padding: 20px 0;
  max-width: 100%;
}
.navigation .layout a {
  color: #fff;
  font-weight: normal;
}
.navigation .layout a:hover {
  text-decoration: underline;
}

/* /page */
/* about */
.about {
  background: #001635 url(../img/about/about-part1bg.jpg) top center/100% auto no-repeat;
}
.about .h2nav {
  margin-bottom: clamp(20px, 16px + 1.25vw, 40px);
}
.about section.about-part1 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px) 10%;
}
.about section.about-part1 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about section.about-part1 .ttl {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.about section.about-part1 .ttl .en {
  font-family: var(--font-Poppins);
  margin-right: clamp(10px, 0.1911px + 2.8025vw, 54px);
  font-weight: 600;
  font-size: clamp(28px, 20.8662px + 2.0382vw, 60px);
}
.about section.about-part1 .ttl .jp {
  font-family: var(--font-Noto);
  font-weight: 900;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
}
.about section.about-part1 p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
.about section.about-part2 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px) 30%;
  background: url(../img/about/about-part2bg.jpg) bottom center/100% auto no-repeat;
}
.about section.about-part2 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about section.about-part2 .layout .left .sec-ttl-sub {
  color: #fff;
  font-family: var(--font-Poppins);
  font-weight: bold;
}
.about section.about-part2 .layout .left .sec-ttl-sub::before {
  display: none;
}
.about section.about-part2 .layout .left .sec-title {
  color: #fff;
  font-family: var(--font-Noto);
  font-weight: bold;
}
.about section.about-part2 .layout .left p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
  margin: 2em auto;
}
.about section.about-part2 .layout .left dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  margin-top: 0.5em;
}
.about section.about-part2 .layout .left dl dt {
  padding: 0 1em;
  border-bottom: 2px solid #fff;
  white-space: nowrap;
}
.about section.about-part2 .layout .left dl dd {
  padding: 0 1em;
  border-bottom: 2px solid #2f6594;
}
.about section.about-part2 .layout .right {
  font-family: var(--font-Montserrat);
  font-size: clamp(50px, 8px + 13.125vw, 260px);
  color: #fff;
  font-weight: 200;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  .about section.about-part2 .layout {
    position: relative;
  }
  .about section.about-part2 .layout .right {
    position: absolute;
    top: -10%;
    right: 0;
    line-height: 1;
  }
}
.about section.about-part3 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px);
}
.about section.about-part3 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.about section.about-part3 .layout .hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about section.about-part3 .layout .hero-inner .en {
  font-family: var(--font-Poppins);
  position: relative;
  font-weight: 600;
  font-size: clamp(36px, 14.5987px + 6.1146vw, 132px);
  font-style: italic;
  line-height: 0.7em;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.about section.about-part3 .layout .hero-inner .en ._text {
  display: inline-block;
  -webkit-transform: translateY(80%);
      -ms-transform: translateY(80%);
          transform: translateY(80%);
  -webkit-clip-path: inset(0% 0% 0% 100%);
          clip-path: inset(0% 0% 0% 100%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-clip-path 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.about section.about-part3 .layout .hero-inner .en .smll {
  margin-top: 20px;
  line-height: 0.7em;
  font-size: clamp(28px, 13.2866px + 4.2038vw, 94px);
}
.about section.about-part3 .layout .hero-inner .en .svg-txt {
  width: 22vw;
  max-width: 300px;
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 1.25em;
}
.about section.about-part3 .layout .hero-inner .en .svg-txt svg {
  width: 100%;
}
.about section.about-part3 .layout .hero-inner .text {
  position: relative;
  z-index: 4;
  font-family: var(--font-Noto);
  font-weight: 400;
  font-size: clamp(14px, 11.7707px + 0.6369vw, 24px);
  margin-top: clamp(10px, 7.7707px + 0.6369vw, 20px);
  line-height: 1.8;
}
.about section.about-part3 .layout .hero-inner p {
  max-width: 600px;
  margin-top: 2em;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
.about section.about-part4 {
  padding: clamp(40px, 32px + 2.5vw, 80px) clamp(20px, 12px + 2.5vw, 60px);
}
.about section.about-part4 .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.about section.about-part4 .layout figure::after {
  display: block;
  content: "";
  padding-top: 65%;
}
.about section.about-part4 .layout figure:first-child {
  width: calc(40% - clamp(20px, 8px + 3.75vw, 80px));
  -webkit-transform: translateY(20%);
      -ms-transform: translateY(20%);
          transform: translateY(20%);
}
.about section.about-part4 .layout figure:last-child {
  width: 60%;
}
.about section.about-part5 {
  padding: clamp(60px, 22px + 11.875vw, 250px) clamp(20px, 12px + 2.5vw, 60px) 0;
  background: url(../img/about/about-part5bg.jpg) center center no-repeat;
}
.about section.about-part5 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about section.about-part5 .layout .left .sec-ttl-sub {
  color: #fff;
  font-family: var(--font-Poppins);
  font-weight: bold;
}
.about section.about-part5 .layout .left .sec-ttl-sub::before {
  display: none;
}
.about section.about-part5 .layout .left .sec-title {
  color: #fff;
  font-family: var(--font-Noto);
  font-weight: bold;
}
.about section.about-part5 .layout .left p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
  margin-top: 2em;
}
.about section.about-part5 .layout .left p big {
  font-weight: bold;
  margin-bottom: 0.3em;
  display: block;
}
.about section.about-part5 .layout .right {
  font-family: var(--font-Montserrat);
  font-size: clamp(50px, 8px + 13.125vw, 260px);
  color: #fff;
  font-weight: 200;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
.about section.about-part5 .layout:nth-child(3) {
  margin-top: 4em;
  display: block;
}
.about section.about-part5 .layout:nth-child(3) .sec-ttl-sub {
  display: block;
  color: #fff;
  text-align: center;
}
.about section.about-part5 .layout:nth-child(3) .sec-ttl-sub::before {
  display: none;
}
.about section.about-part5 .layout:nth-child(3) .table {
  overflow-x: auto;
}
.about section.about-part5 .layout:nth-child(3) .table table {
  min-width: 600px;
  color: #fff;
  border: solid #2f6594;
  border-width: 0 0 1px 1px;
}
.about section.about-part5 .layout:nth-child(3) .table th {
  background-color: #2f6594;
}
.about section.about-part5 .layout:nth-child(3) .table th, .about section.about-part5 .layout:nth-child(3) .table td {
  border: solid #2f6594;
  border-width: 1px 1px 0 0;
  color: #fff;
  padding: 1em;
  vertical-align: middle;
}
.about section.about-part5 .layout:nth-child(3) .table th a, .about section.about-part5 .layout:nth-child(3) .table td a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  text-decoration: none;
}
.about section.about-part5 .layout:nth-child(3) .table th a > img, .about section.about-part5 .layout:nth-child(3) .table td a > img {
  margin: 0 1em 0 0;
  width: 35%;
}
.about section.about-part5 .layout:nth-child(3) .table th a span, .about section.about-part5 .layout:nth-child(3) .table td a span {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about section.about-part5 .layout:nth-child(3) .table th a span img, .about section.about-part5 .layout:nth-child(3) .table td a span img {
  width: 1em;
  height: 1em;
  margin-left: 1em;
  display: inline-block;
}
.about section.about-part5 .layout:nth-child(4) {
  margin-top: 4em;
  display: block;
}
.about section.about-part5 .layout:nth-child(4) .sec-ttl-sub {
  display: block;
  color: #fff;
  text-align: center;
}
.about section.about-part5 .layout:nth-child(4) .sec-ttl-sub::before {
  display: none;
}
.about section.about-part5 .layout:nth-child(4) .table {
  overflow-x: auto;
}
.about section.about-part5 .layout:nth-child(4) .table table {
  min-width: 600px;
  color: #fff;
  border: solid #2f6594;
  border-width: 1px 1px 0 0;
}
.about section.about-part5 .layout:nth-child(4) .table th {
  background-color: #2f6594;
  width: 20%;
}
.about section.about-part5 .layout:nth-child(4) .table th, .about section.about-part5 .layout:nth-child(4) .table td {
  border: solid #2f6594;
  border-width: 0 0 1px 1px;
  color: #fff;
  padding: 1em;
  vertical-align: middle;
}
.about section.about-part5 .layout:nth-child(4) .table th a, .about section.about-part5 .layout:nth-child(4) .table td a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #fff;
  text-decoration: none;
}
.about section.about-part5 .layout:nth-child(4) .table th a > img, .about section.about-part5 .layout:nth-child(4) .table td a > img {
  margin: 0 1em 0 0;
  width: 35%;
}
.about section.about-part5 .layout:nth-child(4) .table th a span, .about section.about-part5 .layout:nth-child(4) .table td a span {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about section.about-part5 .layout:nth-child(4) .table th a span img, .about section.about-part5 .layout:nth-child(4) .table td a span img {
  width: 1em;
  height: 1em;
  margin-left: 1em;
  display: inline-block;
}
@media (max-width: 767px) {
  .about section.about-part5 .layout:nth-child(1) {
    position: relative;
  }
  .about section.about-part5 .layout:nth-child(1) .right {
    position: absolute;
    top: -10%;
    right: 0;
    line-height: 1;
  }
}
.about section.about-part6 {
  width: 100%;
  margin: 0 auto clamp(40px, 18px + 6.875vw, 150px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about section.about-part6::after {
  width: 100%;
  content: "";
  display: block;
  padding-top: 30%;
  background: url(../img/about/about-part6bg.jpg) center center/cover no-repeat;
}
@media (max-width: 767px) {
  .about section.about-part6::after {
    padding-top: 70%;
  }
}
.about section.about-part6 .play {
  position: absolute;
  width: clamp(40px, 24px + 5vw, 120px);
  height: clamp(40px, 24px + 5vw, 120px);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about section.about-part6 .play svg {
  width: 100%;
  height: 100%;
}
.about section.about-part6 .play:hover {
  -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
          transform: scale(0.85);
}
.about .video-ce {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.95);
}
.about .video-ce .layout {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
}
.about .video-ce .layout .bgclose {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.about .video-ce .layout video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  position: relative;
  z-index: 10;
}
.about .video-ce .close {
  position: absolute;
  width: 50px;
  height: 50px;
  padding: 10px;
  top: 40px;
  right: 40px;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
.about .video-ce .close svg {
  fill: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about .video-ce .close:hover {
  background-color: #fff;
}
.about .video-ce .close:hover svg {
  fill: #000;
}
.about section.about-part7 {
  padding: clamp(40px, 18px + 6.875vw, 150px) 0;
}
.about section.about-part7 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 clamp(20px, 12px + 2.5vw, 60px);
}
.about section.about-part7 .layout .left .sec-ttl-sub {
  color: #fff;
  font-family: var(--font-Poppins);
  font-weight: bold;
}
.about section.about-part7 .layout .left .sec-ttl-sub::before {
  display: none;
}
.about section.about-part7 .layout .left .sec-title {
  color: #fff;
  font-family: var(--font-Noto);
  font-weight: bold;
}
.about section.about-part7 .layout .left p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
  margin-top: 2em;
}
.about section.about-part7 .layout .left p big {
  font-weight: bold;
  margin-bottom: 0.3em;
  display: block;
}
.about section.about-part7 .layout .right {
  font-family: var(--font-Montserrat);
  font-size: clamp(50px, 8px + 13.125vw, 260px);
  color: #fff;
  font-weight: 200;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
}
.about section.about-part7 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(40px, 18px + 6.875vw, 150px);
}
.about section.about-part7 .content .bg-photo {
  width: 50%;
}
.about section.about-part7 .content .bg-photo::after {
  display: block;
  content: "";
  padding-top: 65%;
}
.about section.about-part7 .content .text {
  width: 50%;
  max-width: 600px;
  color: #fff;
  padding-left: clamp(20px, 8px + 3.75vw, 80px);
  padding-right: clamp(20px, 12px + 2.5vw, 60px);
}
.about section.about-part7 .content .text h3 {
  font-size: clamp(16px, 12.8px + 1vw, 32px);
}
.about section.about-part7 .content .text p {
  margin-top: 1em;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
}
@media (max-width: 767px) {
  .about section.about-part7 {
    padding: clamp(40px, 18px + 6.875vw, 150px) clamp(20px, 12px + 2.5vw, 60px);
  }
  .about section.about-part7 .layout:nth-child(1) {
    position: relative;
    padding: 0;
  }
  .about section.about-part7 .layout:nth-child(1) .right {
    position: absolute;
    top: -10%;
    right: 0;
    line-height: 1;
  }
  .about section.about-part7 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about section.about-part7 .content > * {
    width: 100% !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  .about section.about-part7 .content .text {
    margin-top: 2em;
  }
}

/* contact us */
.contact .h2nav {
  margin-bottom: clamp(20px, 16px + 1.25vw, 40px);
}
.contact section.contact-part1 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px);
}
.contact section.contact-part1 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.contact section.contact-part1 .ttl {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.contact section.contact-part1 .ttl .en {
  font-family: var(--font-Poppins);
  margin-right: clamp(10px, 0.1911px + 2.8025vw, 54px);
  font-weight: 600;
  font-size: clamp(28px, 20.8662px + 2.0382vw, 60px);
}
.contact section.contact-part1 .ttl .jp {
  font-family: var(--font-Noto);
  font-weight: 900;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
}
.contact section.contact-part1 p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
.contact section.contact-part2 {
  padding: clamp(40px, 18px + 6.875vw, 150px) clamp(20px, 12px + 2.5vw, 60px);
}
.contact section.contact-part2 .layout {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.contact section.contact-part2 .layout .table {
  color: #fff;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.contact section.contact-part2 .layout .table .item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-start;
      -ms-flex-align: self-start;
          align-items: self-start;
  padding: 0;
}
.contact section.contact-part2 .layout .table .item:not(:first-child) {
  margin-top: clamp(20px, 14px + 1.875vw, 50px);
}
.contact section.contact-part2 .layout .table .item:last-child .control {
  width: 100% !important;
}
@media (max-width: 600px) {
  .contact section.contact-part2 .layout .table .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact section.contact-part2 .layout .table .item .title {
    width: 100%;
    margin-bottom: 1em;
  }
  .contact section.contact-part2 .layout .table .item .control {
    width: 100% !important;
  }
}
.contact section.contact-part2 .layout .table .item .title {
  width: 30%;
  font-size: clamp(14px, 13.2px + 0.25vw, 18px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 210px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact section.contact-part2 .layout .table .item .title span {
  font-size: 10px;
  padding: 5px;
  background-color: #dbdbdb;
  color: #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  border-radius: 5px;
  margin-right: 5px;
}
.contact section.contact-part2 .layout .table .item .title span.must {
  background-color: #eb0303;
  color: #fff;
}
.contact section.contact-part2 .layout .table .item .control {
  width: 70%;
}
.contact section.contact-part2 .layout .table .item .control input,
.contact section.contact-part2 .layout .table .item .control textarea {
  width: 100%;
  padding: 15px 10px;
  background-color: #102542;
  border: none;
  color: #fff;
	font-size:16px;
}
.contact section.contact-part2 .layout .table .item .control textarea {
  min-height: 200px;
}
.contact section.contact-part2 .layout .table .item .control .opeform-submit {
  min-width: 190px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 0;
  color: #0c0e13;
  letter-spacing: 0;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  height: 100%;
  border: 1px solid #e4e4e9;
  padding: 20px 56px 20px 62px;
  border-radius: 50px;
  background-color: #fff;
}
.contact section.contact-part2 .layout .table .item .control .opeform-submit span {
  text-align: center;
  font-family: var(--font-Poppins);
  font-weight: 400;
  color: inherit;
  position: relative;
  z-index: 1;
  -webkit-transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  font-size: 16px;
  line-height: 16px;
}
.contact section.contact-part2 .layout .table .item .control .opeform-submit:hover {
  opacity: 0.8;
}
.contact section.contact-part2 .layout .table .item .control .opeform-submit[data-action=prev] {
  background-color: #00518f;
  border-color: #00518f;
  color: #fff;
}
.contact section.contact-part2 .layout .table .item .control .has-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  padding-bottom: 40px;
}
.contact section.contact-part2 .layout .table .item .control .has-checkbox label span {
  margin-left: 0.5em;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contact section.contact-part2 .layout .table .item .control .has-checkbox label > div {
  position: absolute !important;
  width: 300px;
  -webkit-transform: translate(-50%, 70%);
  -ms-transform: translate(-50%, 70%);
  transform: translate(-50%, 0%);
  opacity: 1 !important;
  top: 60% !important;
  left: 50% !important;
  right: auto !important;
  margin-top: 0 !important;
}
.contact section.contact-part2 .layout .table .item.policy {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact section.contact-part2 .layout .table .item.policy .title {
  padding: 0;
  width: 100%;
  text-align: center;
  display: block;
  font-weight: bold;
}
.contact section.contact-part2 .layout .table .item.policy .control {
  width: 100%;
  text-align: center;
}
.contact section.contact-part2 .layout .table .item.policy .control > p {
  margin: 1em auto;
}
.contact section.contact-part2 .layout .table .item.policy .control .opeform-item {
  display: inline-block;
  width: auto;
}
.contact section.contact-part2 .layout .table .item.policy .control a {
  color: #fff;
  text-decoration: underline;
}
.contact section.contact-part2 .layout .table .item.policy .control a:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .contact section.contact-part2 .layout .table dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact section.contact-part2 .layout .table dl > * {
    width: 100% !important;
  }
  .contact section.contact-part2 .layout .table dl dt {
    margin-bottom: 10px;
  }
}

.form-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.back_top_btn {
  background: #353535;
  border: none;
  color: #fff !important;
  border-radius: 5px;
  font-size: 18px !important;
  line-height: 1;
  font-weight: 600;
  width: calc(50% - 20px) !important;
  min-width: 200px;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  display: block;
  margin: 2em auto;
  text-align: center;
}
.back_top_btn:hover {
  opacity: 0.8;
}

.form-btn input, .form-btn input[type=button] {
  background: #353535;
  border: none;
  color: #fff;
  border-radius: 5px;
  font-size: 18px !important;
  line-height: 1;
  font-weight: 600;
  width: calc(50% - 20px) !important;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
  margin: 10px auto;
}
.form-btn input:hover, .form-btn input[type=button]:hover {
  opacity: 0.8;
}

/* products */
.products {
  background: #001635 url(../img/products/products-bg.jpg) top center/100% auto no-repeat;
}
.products.productsdetail {
  background: #001635 url(../img/products/products-bg3.jpg) top center/100% auto no-repeat;
}
.products .h2nav {
  margin-bottom: clamp(20px, 16px + 1.25vw, 40px);
}
.products section.products-part1 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px) 20%;
}
.products section.products-part1 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.products section.products-part1 .ttl {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.products section.products-part1 .ttl .en {
  font-family: var(--font-Poppins);
  margin-right: clamp(10px, 0.1911px + 2.8025vw, 54px);
  font-weight: 600;
  font-size: clamp(28px, 20.8662px + 2.0382vw, 60px);
}
.products section.products-part1 .ttl .jp {
  font-family: var(--font-Noto);
  font-weight: 900;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
}
.products section.products-part1 p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
.products section.products-part2 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px) clamp(40px, 18px + 6.875vw, 150px);
}
.products section.products-part2 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.products section.products-part2 .layout .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}
.products section.products-part2 .layout .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.products section.products-part2 .layout .item .pic {
  width: 50%;
  position: relative;
}
.products section.products-part2 .layout .item .pic img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products section.products-part2 .layout .item .text {
  width: 50%;
  color: #fff;
}
.products section.products-part2 .layout .item .text .sec-title {
  font-weight: bold;
  text-transform: uppercase;
}
.products section.products-part2 .layout .item .text .sec-ttl-sub::before {
  display: none;
}
.products section.products-part2 .layout .item .text p {
  font-size: clamp(12px, 11.5541px + 0.1274vw, 14px);
}
.products section.products-part2 .layout .item:not(:first-child) {
  margin-top: clamp(60px, 42px + 5.625vw, 150px);
}
.products section.products-part2 .layout .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.products section.products-part2 .layout .item:nth-child(2n) .pic::after {
  top: 40px;
  left: 40px;
  -webkit-transform: rotate(-330deg);
      -ms-transform: rotate(-330deg);
          transform: rotate(-330deg);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.products section.products-part2 .layout .item:hover .pic img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 767px) {
  .products section.products-part2 .layout {
    overflow: hidden;
  }
  .products section.products-part2 .layout .item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .products section.products-part2 .layout .item > * {
    width: 100% !important;
  }
}
.products section.products-part3 {
  background: url(../img/products/products-bg2.jpg) center center/cover no-repeat;
  padding: clamp(40px, 18px + 6.875vw, 150px) clamp(20px, 12px + 2.5vw, 60px);
}
.products section.products-part3 .layout .title {
  color: #fff;
  margin-bottom: clamp(20px, 12px + 2.5vw, 60px);
}
.products section.products-part3 .layout .title .sec-ttl-sub::before {
  background: #fff;
}
.products section.products-part3 .layout .title .sec-title {
  font-weight: bold;
}
.products section.products-part3 .layout .content .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products section.products-part3 .layout .content .items .item {
  width: calc(33.3333333333% - clamp(20px, 12px + 2.5vw, 60px));
}
.products section.products-part3 .layout .content .items .item .box {
  background-color: #0a1a2d;
  padding: clamp(20px, 12px + 2.5vw, 60px);
  position: relative;
  color: #fff;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products section.products-part3 .layout .content .items .item .box:hover {
  background-color: #07101c;
}
.products section.products-part3 .layout .content .items .item .box a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.products section.products-part3 .layout .content .items .item .box .subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.products section.products-part3 .layout .content .items .item .box .subtitle::before {
  content: attr(data-num);
  display: block;
  font-size: clamp(20px, 17.6px + 0.75vw, 32px);
  font-family: var(--font-Montserrat);
  font-weight: bold;
  padding-right: 0.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.products section.products-part3 .layout .content .items .item .box .subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(305deg);
      -ms-transform: rotate(305deg);
          transform: rotate(305deg);
}
.products section.products-part3 .layout .content .items .item .box .subtitle .ttl {
  padding-left: 1em;
}
.products section.products-part3 .layout .content .items .item .box .subtitle .ttl .en {
  font-size: clamp(20px, 17.6px + 0.75vw, 32px);
  font-weight: bold;
}
.products section.products-part3 .layout .content .items .item .box .subtitle .ttl .jp {
  font-size: clamp(14px, 13.2px + 0.25vw, 18px);
}
.products section.products-part3 .layout .content .items .item .box p {
  margin-top: 1em;
  font-size: clamp(12px, 11.5541px + 0.1274vw, 14px);
}
.products section.products-part3 .layout .content .items .item .box .btn {
  text-align: right;
}
.products section.products-part3 .layout .content .items .item .box .btn img {
  display: inline-block;
  width: 40px;
}
@media (max-width: 1120px) {
  .products section.products-part3 .layout .content .items .item {
    width: calc(50% - clamp(20px, 12px + 2.5vw, 60px));
  }
  .products section.products-part3 .layout .content .items .item:nth-child(3) {
    margin-top: calc(clamp(20px, 12px + 2.5vw, 60px) * 2);
  }
}
@media (max-width: 767px) {
  .products section.products-part3 .layout .content .items .item {
    width: 100%;
  }
  .products section.products-part3 .layout .content .items .item:nth-child(2), .products section.products-part3 .layout .content .items .item:nth-child(3) {
    margin-top: calc(clamp(20px, 12px + 2.5vw, 60px) * 1);
  }
}
.products section.products-detail {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px);
}
.products section.products-detail .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.products section.products-detail .layout .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products section.products-detail .layout .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
.products section.products-detail .layout .item .pic {
  width: 49%;
  position: relative;
  padding-left: clamp(20px, 16px + 1.25vw, 40px);
}
.products section.products-detail .layout .item .text {
  width: 51%;
  color: #fff;
}
.products section.products-detail .layout .item .text .sec-title {
  white-space: break-spaces;
  font-weight: bold;
  text-transform: uppercase;
  font-size: clamp(50px, 36px + 4.375vw, 120px);
}
.products section.products-detail .layout .item .text .sec-title.small {
  font-size: clamp(50px, 36px + 4.375vw, 80px);
}
.products section.products-detail .layout .item .text .sec-ttl-sub {
  white-space: break-spaces;
  font-size: clamp(20px, 16px + 1.25vw, 40px);
  font-weight: bold;
}
.products section.products-detail .layout .item .text .sec-ttl-sub::before {
  display: none;
}
.products section.products-detail .layout .item .text p {
  font-size: clamp(16px, 15.2px + 0.25vw, 20px);
}
@media (max-width: 767px) {
  .products section.products-detail .layout .item > * {
    width: 100% !important;
  }
}
.products section.products-other {
  padding: clamp(40px, 36px + 1.25vw, 60px) 0 clamp(80px, 72px + 2.5vw, 120px);
}
.products section.products-other .layout {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.products section.products-other .layout .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products section.products-other .layout .items .item {
  width: 50%;
  padding: clamp(20px, 12px + 2.5vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.products section.products-other .layout .items .item:nth-child(1)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #4d5c72;
  right: 0;
  top: 0;
}
.products section.products-other .layout .items .item:nth-child(1)::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #4d5c72;
  left: 0;
  bottom: 0;
}
.products section.products-other .layout .items .item:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #4d5c72;
  right: 0;
  bottom: 0;
}
.products section.products-other .layout .items .item:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 80px);
  background-color: #4d5c72;
  right: 0;
  top: 40px;
}
.products section.products-other .layout .items .item:nth-child(3)::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #4d5c72;
  left: 0;
  bottom: 0;
}
.products section.products-other .layout .items .item:nth-child(5)::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #4d5c72;
  right: 0;
  bottom: 0;
}
.products section.products-other .layout .items .item:nth-child(6)::before {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: calc(100% - 40px);
  background-color: #4d5c72;
  right: 0;
  top: 0;
}
.products section.products-other .layout .items .item .pic {
  background-color: #fff;
  width: 40%;
}
.products section.products-other .layout .items .item .text {
  color: #fff;
  padding-left: clamp(20px, 16px + 1.25vw, 40px);
  width: 60%;
}
.products section.products-other .layout .items .item .text h3 {
  font-size: clamp(20px, 16.8px + 1vw, 36px);
  line-height: 1;
}
.products section.products-other .layout .items .item .text p {
  margin-top: 1em;
  font-size: clamp(12px, 11.5541px + 0.1274vw, 14px);
}
.products section.products-other .layout .items .item.item-border-not::before {
  display: none;
}
@media (max-width: 767px) {
  .products section.products-other .layout .items .item {
    width: 100%;
  }
  .products section.products-other .layout .items .item::after, .products section.products-other .layout .items .item::before {
    display: none !important;
  }
  .products section.products-other .layout .items .item:not(:first-child) {
    border-top: 1px solid #4d5c72;
  }
}
.products section.products-category {
  background: #001635 url(../img/products/products-bg4.jpg) top center/100% auto no-repeat;
  padding: clamp(80px, 72px + 2.5vw, 120px) clamp(20px, 12px + 2.5vw, 60px);
}
.products section.products-category .layout {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
.products section.products-category .layout .title .sec-title {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5em;
}
.products section.products-category .layout .content .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.products section.products-category .layout .content .items .item {
  width: 16.6666666667%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #011d44;
}
.products section.products-category .layout .content .items .item:nth-child(2n) {
  background-color: #07101c;
}
.products section.products-category .layout .content .items .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
@media (max-width: 1360px) {
  .products section.products-category .layout .content .items .item {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .products section.products-category .layout .content .items .item {
    width: 50%;
  }
}
.products section.products-category .layout .content .items .item:not(:first-child) {
  border-left: 3px solid #011d44;
}
.products section.products-category .layout .content .items .item .pic {
  overflow: hidden;
}
.products section.products-category .layout .content .items .item .pic .bg-photo {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-size: contain;
}
.products section.products-category .layout .content .items .item .pic .bg-photo:before {
  content: "";
  display: block;
  padding-top: 68%;
}
.products section.products-category .layout .content .items .item .text {
  padding: clamp(10px, 8px + 0.625vw, 20px);
}
.products section.products-category .layout .content .items .item .text h3 {
  font-size: clamp(14px, 13.6px + 0.125vw, 16px);
  color: #fff;
}
.products section.products-category .layout .content .items .item .text .btn {
  text-align: right;
}
.products section.products-category .layout .content .items .item .text .btn img {
  display: inline-block;
  width: 40px;
}
.products section.products-category .layout .content .items .item:hover .pic .bg-photo {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/*category*/
.h2nav {
  border-top: 1px solid #fff;
  width: calc(100% - 34px - clamp(10px, -1.1465px + 3.1847vw, 60px));
  margin-left: 34px;
  margin-right: clamp(10px, -1.1465px + 3.1847vw, 60px);
  padding: 20px 0;
}

.h2nav .pagetitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
}

.h2nav .pagetitle span {
  font-family: var(--font-Poppins);
  font-weight: 600;
  margin: 0 10px;
}

.h2nav .pagetitle a {
  color: #fff;
  font-family: var(--font-Poppins);
  font-weight: 400;
  font-size: 14px;
  margin: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h2nav .pagetitle a:nth-child(1) {
  margin-left: 0;
}

.h2nav .pagetitle a:hover {
  opacity: 0.7;
}

.loading-post {
  position: relative;
  z-index: 6;
  width: 100%;
  height: 0;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loading-post img {
  width: 50px;
  height: auto;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
      transform: translateY(10px);
  opacity: 0;
}

.loading-post.loading img {
  opacity: 0.4;
}

.loading-post.loading + .item-main {
  opacity: 0.4;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.web-main-page {
  background-color: #001635;
  overflow: hidden;
}
.web-main-page .web-main-page-inner {
  width: 100%;
  max-width: 1240px;
  padding: clamp(20px, 16px + 1.25vw, 40px) 20px clamp(40px, 7.0588px + 9.4118vw, 120px);
  margin: auto;
}
.web-main-page .btn_wrap .btn_link_txt {
  font-family: var(--font-Noto);
  font-weight: 400;
}
.web-main-page .page-head {
  width: 100%;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.web-main-page .page-head h1 {
  margin: auto;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.web-main-page .page-head h1 .en {
  font-family: var(--font-Poppins);
  font-weight: 600;
  font-size: clamp(28px, 14.8235px + 3.7647vw, 60px);
  display: inline-block;
  margin-right: 30px;
}
.web-main-page .page-head h1 .jp {
  font-family: var(--font-Noto);
  font-weight: 700;
  font-size: clamp(16px, 15.1765px + 0.2353vw, 18px);
}
.web-main-page .page-head p {
  max-width: 520px;
  margin-top: 20px;
  font-size: clamp(12px, 10.3529px + 0.4706vw, 16px);
}

.iscategory-inner {
  max-width: 1120px;
  margin: auto;
  color: #fff;
}

.iscategory-inner nav ul {
  margin-top: clamp(30px, 21.7647px + 2.3529vw, 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.iscategory-inner nav ul li {
  white-space: nowrap;
  cursor: pointer;
  display: block;
  margin: 0px 25px;
  line-height: 1;
  color: #fff;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  font-family: var(--font-Noto);
  font-weight: 200;
  padding: 10px 0;
  position: relative;
}
.iscategory-inner nav ul li::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 0;
}

.iscategory-inner nav ul li:hover {
  font-weight: 900;
}
.iscategory-inner nav ul li:hover::after {
  opacity: 1;
}

.iscategory-inner nav ul li.selected {
  font-weight: 900;
}
.iscategory-inner nav ul li.selected::after {
  opacity: 1;
}

.iscategory-inner .item-main {
  margin-top: clamp(20px, 7.6471px + 3.5294vw, 50px);
}

.iscategory-inner .item-main .nothing {
  text-align: center;
  padding: 10px;
}

.iscategory-inner .item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(10px, -1.1465px + 3.1847vw, 60px) 0;
}
.iscategory-inner .item-main .col {
  background-color: #0c213e;
  color: #fff;
  position: relative;
  width: 33.333333%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.iscategory-inner .item-main .col a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.iscategory-inner .item-main .col figure {
  height: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.iscategory-inner .item-main .col figure::before {
  content: "";
  display: block;
  padding-top: 68%;
}
.iscategory-inner .item-main .col figure img {
  width: 100%;
}
.iscategory-inner .item-main .col .col-con {
  height: 47%;
  padding: 18px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.iscategory-inner .item-main .col .mete-box {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.iscategory-inner .item-main .col .mete-box .tag {
  padding: 1px 10px;
  font-size: 12px;
  color: #0c213e;
  font-family: var(--font-Noto);
  font-weight: 400;
  background-color: #fff;
}
.iscategory-inner .item-main .col .mete-box .date {
  font-size: 12px;
  color: #fff;
  font-family: var(--font-Noto);
  font-weight: 400;
}
.iscategory-inner .item-main .col .title {
  margin-bottom: 10px;
  font-size: clamp(14px, 12.2166px + 0.5096vw, 22px);
  font-family: var(--font-Noto);
  font-weight: 400;
  line-height: 1.4;
}
.iscategory-inner .item-main .col p {
  margin-top: auto;
  font-family: var(--font-Noto);
  font-weight: 400;
  font-size: 12px;
}
.iscategory-inner .item-main .col:nth-child(2n) {
  background-color: #07101c;
}
.iscategory-inner .item-main .col:hover {
  opacity: 0.7;
}

.single {
  color: #fff;
}
.single .btn_wrap .btn_link_txt {
  font-family: var(--font-Noto);
  font-weight: 400;
}

.pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-Noto);
  font-weight: 700;
  font-size: clamp(12px, 9.5294px + 0.7059vw, 18px);
}

.pagination a.page-numbers,
.pagination span.page-numbers {
  margin: 0 10px;
  width: 14px;
  padding: 10px 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  position: relative;
}
.pagination a.page-numbers::after,
.pagination span.page-numbers::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
}

.pagination span.page-numbers::after {
  opacity: 1;
}

.pagination a.page-numbers:hover::after,
.pagination span.page-numbers:hover::after {
  opacity: 1;
}

.pagination .prev.page-numbers {
  display: none;
}

.pagination .next.page-numbers {
  display: none;
}

/*single*/
.single-content .post-img img {
  width: 100%;
}
.single-content .single-con {
  max-width: 760px;
  margin: clamp(20px, -0.5882px + 5.8824vw, 70px) auto clamp(20px, -12.9412px + 9.4118vw, 100px);
}
.single-content .post-mete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.single-content .post-mete .post-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-content .post-mete .post-cat span {
  display: inline-block;
  padding: 1px 10px;
  font-size: 12px;
  color: #0c213e;
  font-family: var(--font-Noto);
  font-weight: 400;
  background-color: #e4e4e4;
  margin-right: 20px;
}
.single-content .post-mete .post-date {
  color: #fff;
  font-size: 12px;
  font-family: var(--font-Noto);
  font-weight: 400;
}
.single-content .post-ttl {
  margin-bottom: 10px;
  font-family: var(--font-Noto);
  font-weight: 400;
  font-size: clamp(16px, 7.7647px + 2.3529vw, 36px);
}
.single-content .wp-block-social-links {
  margin-bottom: 20px;
}
.single-content p {
  margin-bottom: 20px;
  font-size: clamp(12px, 10.3529px + 0.4706vw, 16px);
}
.single-content p:last-child {
  margin-bottom: 0;
}
.single-content .wp-block-image {
  margin-bottom: 20px;
  font-size: clamp(12px, 11.1765px + 0.2353vw, 14px);
}
.single-content .wp-block-image:last-child {
  margin-bottom: 0;
}

@media (max-width: 1300px) {
  .h2nav {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
@media (max-width: 940px) {
  .iscategory-inner {
    max-width: 720px;
  }
  .iscategory-inner .item-main .col {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .web-main-page .page-head h1 .en {
    margin-right: 10px;
  }
  .iscategory-inner nav ul li {
    margin: 0px 5px;
  }
  .iscategory-inner {
    max-width: 370px;
  }
  .iscategory-inner .item-main .col {
    width: 100%;
  }
}
/* policy us */
.policy .h2nav {
  margin-bottom: clamp(20px, 16px + 1.25vw, 40px);
}
.policy section.policy-part1 {
  padding: 0 clamp(20px, 12px + 2.5vw, 60px);
}
.policy section.policy-part1 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.policy section.policy-part1 .ttl {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.policy section.policy-part1 .ttl .en {
  font-family: var(--font-Poppins);
  margin-right: clamp(10px, 0.1911px + 2.8025vw, 54px);
  font-weight: 600;
  font-size: clamp(28px, 20.8662px + 2.0382vw, 60px);
}
.policy section.policy-part1 .ttl .jp {
  font-family: var(--font-Noto);
  font-weight: 900;
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
}
.policy section.policy-part1 p {
  font-size: clamp(12px, 11.1083px + 0.2548vw, 16px);
  font-family: var(--font-Noto);
  font-weight: 400;
  color: #fff;
}
.policy section.policy-part2 {
  padding: clamp(40px, 18px + 6.875vw, 150px) clamp(20px, 12px + 2.5vw, 60px);
}
.policy section.policy-part2 .layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}
.policy section.policy-part2 .layout .summary p,
.policy section.policy-part2 .layout .summary dt,
.policy section.policy-part2 .layout .summary ol,
.policy section.policy-part2 .layout .summary address {
  margin-top: 20px;
}
.policy section.policy-part2 .layout .summary p:first-child,
.policy section.policy-part2 .layout .summary dt:first-child,
.policy section.policy-part2 .layout .summary ol:first-child,
.policy section.policy-part2 .layout .summary address:first-child {
  margin-top: 40px;
}
.policy section.policy-part2 .layout .summary dd {
  padding-left: 10px;
}
.policy section.policy-part2 .layout .summary address,
.policy section.policy-part2 .layout .summary .end {
  text-align: right;
}
.policy section.policy-part2 .layout .summary a {
  color: #fff;
  text-decoration: underline;
}
.policy section.policy-part2 .layout .summary a:hover {
  opacity: 0.8;
}