@charset "UTF-8";
:root {
  --vw: 1vw;
}

/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

/* ============================================
  Setting
============================================ */
* {
  word-break: break-all;
}
*:focus, *:active {
  outline: none;
}
*:hover {
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
}

img,
svg {
  image-rendering: -webkit-optimize-contrast;
}
@media only screen and (max-width: 767px) {
  img,
  svg {
    image-rendering: auto;
  }
}
_::-webkit-full-page-media,
_:future, :root img,
:root svg {
  image-rendering: auto;
}

@-moz-document url-prefix() {
  img,
  svg {
    image-rendering: auto;
  }
}
@media all and (-ms-high-contrast: none) {
  img,
  svg {
    image-rendering: auto;
  }
}
img,
svg {
  vertical-align: top;
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

.cf::after {
  content: "";
  display: block;
  clear: both;
}

sup {
  font-size: 56%;
}

.container {
  overflow: hidden;
}

/* ============================================
  Custom Property
============================================ */
:root {
  --vw: 1vw;
  --vh: 1vh;
}

/* ============================================
  Animation
============================================ */
.fade-in {
  position: relative;
  visibility: visible;
  opacity: 1;
  top: 0;
  transition: opacity 0.5s 0.3s, top 0.5s 0.3s;
}

.fade-out {
  opacity: 0;
  visibility: hidden;
  top: calc(2.8571428571 * var(--vw));
}

.slide-in {
  opacity: 1;
  visibility: visible;
  top: 0;
}

/* ============================================
  Common
============================================ */
.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.flr {
  float: right;
}

.fll {
  float: left;
}

.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

/* ============================================
  Link
============================================ */
a,
button {
  color: inherit;
  text-decoration: none;
  transition: all 300ms;
}

.textLink-blue, .textLink {
  position: relative;
  text-decoration: underline;
}
.textLink-blue:hover, .textLink:hover {
  opacity: 1;
  text-decoration: none;
}

.textLink-blue {
  color: #003f9d;
}

.exLink {
  position: relative;
  display: inline-block;
  padding-right: calc(2.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .exLink {
    padding-right: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .exLink {
    padding-right: calc(4.2666666667 * var(--vw));
  }
}
.exLink::after {
  content: "";
  position: absolute;
  top: calc(0.1428571429 * var(--vw));
  right: 0;
  background: url(../img/common/ico_exlink_01.svg) no-repeat 0 0/100% auto;
  width: calc(1.2142857143 * var(--vw));
  height: calc(1.2142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .exLink::after {
    top: 2px;
    width: 17px;
    height: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .exLink::after {
    top: calc(0.5333333333 * var(--vw));
    width: calc(3.4 * var(--vw));
    height: calc(3.4 * var(--vw));
  }
}

.over {
  transition: all 300ms;
}
.over:hover {
  opacity: 0.65;
  text-decoration: none;
}

/* ============================================
  Base
============================================ */
html,
body {
  height: 100%;
}

@media only screen and (min-width: 768px) {
  html {
    font-size: calc(0.9259259259 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  html {
    font-size: calc(0.5208333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) and (max-width: 1399px) {
  html {
    font-size: calc(0.7142857143 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: calc(1.3333333333 * var(--vw));
  }
}

body {
  position: relative;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #323333;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.4rem;
  }
}
body.loaded {
  opacity: 1;
}
body.openMenu {
  overflow: hidden;
  width: 100%;
}

/* ============================================
  Switch
============================================ */
.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ============================================
  Fonts
============================================ */
.f-serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}

/* ============================================
  Wrapper
============================================ */
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: auto;
}

/* ============================================
  Header
============================================ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  max-width: 100vw;
  margin: 0 auto;
  height: 90px;
}
@media only screen and (max-width: 767px) {
  .header {
    width: 100%;
    height: calc(18 * var(--vw));
  }
}
.header_logo {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .header_logo {
    top: calc(3.1481481481 * var(--vh));
    left: calc(5.7407407407 * var(--vh));
    width: calc(18.1481481481 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .header_logo {
    top: calc(1.7708333333 * var(--vw));
    left: calc(3.2291666667 * var(--vw));
    width: calc(10.2083333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header_logo {
    top: calc(4 * var(--vw));
    left: calc(4 * var(--vw));
    width: calc(26.1333333333 * var(--vw));
  }
}

/* ============================================
  G-Navi
============================================ */
.gnavi {
  position: fixed;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all 500ms;
}
@media only screen and (min-width: 768px) {
  .gnavi {
    top: calc(4.6296296296 * var(--vh));
    right: calc(16.2037037037 * var(--vh));
    height: calc(4.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .gnavi {
    top: calc(2.6041666667 * var(--vw));
    right: calc(9.1145833333 * var(--vw));
    height: calc(2.6041666667 * var(--vw));
  }
}
.gnavi .gnaviList {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .gnavi .gnaviList {
    display: none;
  }
}
.gnavi .gnaviList li {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .gnavi .gnaviList li + li {
    margin-left: calc(4.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .gnavi .gnaviList li + li {
    margin-left: calc(2.6041666667 * var(--vw));
  }
}
.gnavi .gnaviList li a {
  position: relative;
  display: block;
  perspective: 300px;
}
.gnavi .gnaviList li a::before {
  content: attr(data-caption);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all 500ms;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .gnavi .gnaviList li a::before {
    font-size: 1.7rem;
    font-size: calc(1.5740740741 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .gnavi .gnaviList li a::before {
    font-size: calc(0.8854166667 * var(--vw));
  }
}
.gnavi .gnaviList li a img {
  transition: all 250ms;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .gnavi .gnaviList li a img {
    height: calc(1.6666666667 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .gnavi .gnaviList li a img {
    height: calc(0.9375 * var(--vw));
  }
}
.gnavi .gnaviList li a:hover::before {
  opacity: 1;
  text-decoration: none;
}
.gnavi .gnaviList li a:hover img {
  opacity: 0;
  visibility: hidden;
}
.gnavi .gnaviList li a.exLink {
  position: relative;
}
.gnavi .gnaviList li a.exLink::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  background: url(../img/common/ico_exlink_01.svg) no-repeat center/cover;
}
@media only screen and (min-width: 768px) {
  .gnavi .gnaviList li a.exLink::after {
    right: calc(-2.3148148148 * var(--vh));
    width: calc(1.6666666667 * var(--vh));
    height: calc(1.6666666667 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .gnavi .gnaviList li a.exLink::after {
    right: calc(-1.3020833333 * var(--vw));
    width: calc(0.9375 * var(--vw));
    height: calc(0.9375 * var(--vw));
  }
}

.sec_in {
  max-width: calc(1100px + 2.1428571429 * var(--vw) * 2);
  margin: 0 auto;
  padding: 0 calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .sec_in {
    padding: 0 30px;
    max-width: 1160px;
  }
}
@media only screen and (max-width: 767px) {
  .sec_in {
    padding: 0 calc(5.3333333333 * var(--vw));
    max-width: 100%;
  }
}
.sec_in.sec_in_bg {
  padding: fluid(120, 60) fluid(30, 20);
}

.topic-path {
  display: flex;
  margin-bottom: calc(2.5 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .topic-path {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .topic-path {
    margin-bottom: calc(4.6666666667 * var(--vw));
    flex-wrap: wrap;
    width: 50%;
  }
}
.topic-path li {
  font-size: 1.2rem;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topic-path li {
    font-size: 2.2rem;
  }
}
.topic-path li:before {
  content: "";
  display: inline-block;
  height: 1px;
  margin: 0 calc(0.7142857143 * var(--vw));
  background-color: #323333;
  width: calc(3.4285714286 * var(--vw));
  top: calc(50% - 2.5px);
  left: 0;
  vertical-align: middle;
}
@media only screen and (min-width: 1400px) {
  .topic-path li:before {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .topic-path li:before {
    margin: 0 calc(1.3333333333 * var(--vw));
  }
}
.topic-path li:first-child {
  padding-left: 0;
}
.topic-path li:first-child:before {
  display: none;
}
.topic-path li a {
  display: inline-block;
}
.topic-path li a:hover {
  text-decoration: underline;
}

.u-kv {
  margin-bottom: calc(4.2857142857 * var(--vw));
  border-bottom: 1px solid #7f8080;
  height: calc(20.2857142857 * var(--vw));
  position: relative;
}
@media only screen and (min-width: 768px) {
  .u-kv {
    margin-top: calc(11.1111111111 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .u-kv {
    margin-top: calc(6.25 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  .u-kv {
    height: 284px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .u-kv {
    height: calc(41.8666666667 * var(--vw));
    margin: calc(10.6666666667 * var(--vw)) 0 calc(10.6666666667 * var(--vw));
  }
}
.u-kv__in {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  max-width: calc(1100px + 2.1428571429 * var(--vw) * 2);
  margin: 0 auto;
  padding: 0 calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .u-kv__in {
    padding: 0 30px;
    max-width: 1160px;
  }
}
@media only screen and (max-width: 767px) {
  .u-kv__in {
    padding: 0 calc(5.3333333333 * var(--vw));
    max-width: 100%;
  }
}
.u-kv__in h2 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .u-kv__in h2 {
    font-size: 2.4rem;
  }
}
.u-kv__in h2 .en-txt {
  font-size: 8rem;
  line-height: 1;
  color: #54c3f1;
  display: block;
  font-family: "minion-pro", serif;
  font-weight: 400;
  margin-bottom: calc(1.4285714286 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .u-kv__in h2 .en-txt {
    font-size: 5rem;
    margin-bottom: calc(2.6666666667 * var(--vw));
    margin-right: calc(2 * var(--vw));
  }
}
.u-kv__in h2 .en-txt span {
  display: inline-block;
  font-size: 5rem;
  margin-left: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .u-kv__in h2 .en-txt span {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .u-kv__in h2 .en-txt span {
    font-size: 3.6rem;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .u-kv__in-box {
    width: 100%;
  }
}
.u-kv .kv-img {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .u-kv .kv-img {
    right: calc(-18.6666666667 * var(--vw));
  }
}

/* ============================================
  Hamburger Menu
============================================ */
.btn-hamburger {
  position: fixed;
  background: #4d4d4d;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .btn-hamburger {
    top: calc(4.6296296296 * var(--vh));
    right: calc(4.6296296296 * var(--vh));
    width: calc(4.6296296296 * var(--vh));
    height: calc(4.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .btn-hamburger {
    top: calc(2.6041666667 * var(--vw));
    right: calc(2.6041666667 * var(--vw));
    width: calc(2.6041666667 * var(--vw));
    height: calc(2.6041666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .btn-hamburger {
    top: calc(4 * var(--vw));
    right: calc(4 * var(--vw));
    pointer-events: auto;
    width: calc(10 * var(--vw));
    height: calc(10 * var(--vw));
  }
}
.btn-hamburger span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: all 300ms;
  width: 40%;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .btn-hamburger span {
    height: calc(0.2314814815 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .btn-hamburger span {
    height: calc(0.1302083333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .btn-hamburger span {
    height: calc(0.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  .btn-hamburger span:nth-of-type(1) {
    transform: translateY(calc(-0.7407407407 * var(--vh)));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .btn-hamburger span:nth-of-type(1) {
    transform: translateY(calc(-0.4166666667 * var(--vw)));
  }
}
@media only screen and (max-width: 767px) {
  .btn-hamburger span:nth-of-type(1) {
    transform: translateY(calc(-1.0666666667 * var(--vw)));
  }
}
@media only screen and (min-width: 768px) {
  .btn-hamburger span:nth-of-type(3) {
    transform: translateY(calc(0.7407407407 * var(--vh)));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .btn-hamburger span:nth-of-type(3) {
    transform: translateY(calc(0.4166666667 * var(--vw)));
  }
}
@media only screen and (max-width: 767px) {
  .btn-hamburger span:nth-of-type(3) {
    transform: translateY(calc(1.0666666667 * var(--vw)));
  }
}
.openMenu .btn-hamburger span:nth-of-type(1) {
  transform: translateY(0) rotate(405deg);
}
.openMenu .btn-hamburger span:nth-of-type(2) {
  opacity: 0;
}
.openMenu .btn-hamburger span:nth-of-type(3) {
  transform: translateY(0) rotate(495deg);
}

.btn-contact {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  .btn-contact {
    top: calc(4.6296296296 * var(--vh));
    right: calc(4.6296296296 * var(--vh));
    width: calc(4.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .btn-contact {
    top: calc(2.6041666667 * var(--vw));
    right: calc(2.6041666667 * var(--vw));
    width: calc(2.6041666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .btn-contact {
    top: calc(4 * var(--vw));
    right: calc(16 * var(--vw));
    width: calc(10 * var(--vw));
  }
}
.btn-contact:hover {
  opacity: 0.65;
}

/* ============================================
  Overlay Menu
============================================ */
.overlayMenu {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 500ms;
  width: 100%;
  height: 100%;
}
.overlayMenu .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
}
.overlayMenu .gnaviList-overlay {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay {
    padding: calc(18.5185185185 * var(--vh)) 0 0 calc(33.3333333333 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay {
    padding: calc(10.4166666667 * var(--vw)) 0 0 calc(18.75 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay {
    padding: calc(26.6666666667 * var(--vw)) calc(8.6666666667 * var(--vw)) 0;
  }
}
.overlayMenu .gnaviList-overlay li {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li + li {
    margin-top: calc(4.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li + li {
    margin-top: calc(2.6041666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li + li {
    margin-top: calc(6.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li.is-privacypolicy a::after {
    font-size: calc(1.2962962963 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li.is-privacypolicy a::after {
    font-size: calc(0.7291666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li.is-privacypolicy a::after {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li.is-privacypolicy a img {
    height: calc(2.037037037 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li.is-privacypolicy a img {
    height: calc(1.1458333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li.is-privacypolicy a img {
    height: calc(3.2 * var(--vw));
  }
}
.overlayMenu .gnaviList-overlay li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.overlayMenu .gnaviList-overlay li a::after {
  content: attr(data-caption);
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all 500ms;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li a::after {
    font-size: calc(1.8518518519 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li a::after {
    font-size: calc(1.0416666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li a::after {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li a .inner {
    width: calc(31.1111111111 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li a .inner {
    width: calc(17.5 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li a .inner {
    width: calc(44.8 * var(--vw));
  }
}
.overlayMenu .gnaviList-overlay li a .inner > span {
  position: relative;
  display: inline-block;
}
.overlayMenu .gnaviList-overlay li a .inner > span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  background: #4d4d4d;
  transition: transform 300ms;
  transform: scale(0, 1);
  transform-origin: right top;
  width: calc(100% + 10px);
  margin-left: -5px;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li a .inner > span::before {
    height: calc(0.0925925926 * var(--vh));
    margin-top: calc(0.9259259259 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li a .inner > span::before {
    height: calc(0.0925925926 * var(--vh));
    margin-top: calc(0.5208333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li a .inner > span::before {
    height: calc(0.1333333333 * var(--vw));
    margin-top: calc(1.3333333333 * var(--vw));
  }
}
.overlayMenu .gnaviList-overlay li a img {
  transition: all 250ms;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li a img {
    height: calc(3.2407407407 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li a img {
    height: calc(1.8229166667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li a img {
    height: calc(4.8 * var(--vw));
  }
}
.overlayMenu .gnaviList-overlay li a:hover {
  text-decoration: none;
}
.overlayMenu .gnaviList-overlay li a:hover .inner > span::before {
  transform: scale(1, 1);
  transform-origin: left top;
}
.overlayMenu .gnaviList-overlay li a:hover::before {
  text-decoration: none;
}
.overlayMenu .gnaviList-overlay li a.text {
  position: relative;
  display: inline-flex;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li a.text {
    font-size: calc(2.7777777778 * var(--vh));
    padding-right: calc(5.2777777778 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li a.text {
    font-size: calc(1.5625 * var(--vw));
    padding-right: calc(2.96875 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li a.text {
    font-size: 4rem;
    line-height: 1.4;
    padding-right: calc(7.6 * var(--vw));
  }
}
.overlayMenu .gnaviList-overlay li a.text::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../img/common/ico_exlink_01.svg) no-repeat center/cover;
  margin: auto 0;
}
@media only screen and (min-width: 768px) {
  .overlayMenu .gnaviList-overlay li a.text::before {
    width: calc(2.962962963 * var(--vh));
    height: calc(2.962962963 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .overlayMenu .gnaviList-overlay li a.text::before {
    width: calc(1.6666666667 * var(--vw));
    height: calc(1.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .overlayMenu .gnaviList-overlay li a.text::before {
    bottom: calc(1.0666666667 * var(--vw));
    width: calc(4.2666666667 * var(--vw));
    height: calc(4.2666666667 * var(--vw));
  }
}
.openMenu .overlayMenu {
  opacity: 1;
  pointer-events: auto;
}

.header {
  width: 100%;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
}
@media only screen and (min-width: 768px) {
  .header {
    height: calc(11.1111111111 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .header {
    height: calc(6.25 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: calc(10.6666666667 * var(--vw));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.header .header_in {
  margin: 0 auto;
  padding: 0 calc(2.1428571429 * var(--vw));
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 1400px) {
  .header .header_in {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in {
    padding: 0 calc(4 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  .header .header_in h1 {
    width: calc(34.2592592593 * var(--vh));
    margin-left: calc(9.2592592593 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .header .header_in h1 {
    width: calc(19.2708333333 * var(--vw));
    margin-left: calc(5.2083333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in h1 {
    width: calc(34.6666666667 * var(--vw));
    margin-left: 0;
  }
}
.header .header_in h1 img {
  display: block;
  top: 0;
}
@media only screen and (min-width: 768px) {
  .header .header_in nav {
    margin-right: calc(9.2592592593 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .header .header_in nav {
    margin-right: calc(5.2083333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav {
    width: 100%;
    position: absolute;
    top: calc(10.6666666667 * var(--vw));
    left: 0;
    right: 0;
  }
}
.header .header_in nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .header .header_in nav ul {
    gap: 0 calc(3.7037037037 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .header .header_in nav ul {
    gap: 0 calc(2.0833333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul {
    gap: 0;
    display: none;
    background: #222;
    height: 100vh;
  }
}
.header .header_in nav ul li a {
  transition: 0.2s;
  font-size: 1.7rem;
  position: relative;
  display: inline-block;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .header .header_in nav ul li a {
    font-size: calc(1.5740740741 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  .header .header_in nav ul li a {
    font-size: calc(0.8854166667 * var(--vw));
  }
}
.header .header_in nav ul li a::before {
  content: "";
  background-color: #54c3f1;
  position: absolute;
  display: block;
  bottom: -1px;
  height: 1px;
  transition: 0.3s;
  width: 0;
}
@media only screen and (min-width: 1400px) {
  .header .header_in nav ul li a::before {
    bottom: -1px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in nav ul li a::before {
    bottom: calc(-0.1333333333 * var(--vw));
  }
}
.header .header_in nav ul li a:hover {
  opacity: 0.6;
}
.header .header_in nav ul li a:hover::before {
  width: 100%;
}
.header .header_in .contact {
  position: absolute;
  width: calc(3.5714285714 * var(--vw));
  height: calc(3.5714285714 * var(--vw));
  right: calc(2.1428571429 * var(--vw));
  background-color: #323333;
  border-radius: 5px;
}
@media only screen and (min-width: 1400px) {
  .header .header_in .contact {
    right: 30px;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in .contact {
    display: none;
  }
}
.header .header_in .contact::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(1.7857142857 * var(--vw));
  height: calc(1.4285714286 * var(--vw));
  top: calc(1.0714285714 * var(--vw));
  right: calc(0.9285714286 * var(--vw));
  background-image: url("../../assets/img/common/icon_mail.svg");
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1400px) {
  .header .header_in .contact::before {
    width: 25px;
    height: 20px;
    top: 15px;
    right: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .header .header_in .contact::before {
    width: calc(3.3333333333 * var(--vw));
    height: calc(2.6666666667 * var(--vw));
    top: calc(2 * var(--vw));
    right: calc(1.7333333333 * var(--vw));
  }
}

.nav_toggle {
  position: absolute;
  width: calc(3.5714285714 * var(--vw));
  height: calc(3.5714285714 * var(--vw));
  left: calc(2.1428571429 * var(--vw));
  top: 50%;
  transform: translateY(-50%);
  background-color: #323333;
  border-radius: 5px;
  z-index: 9999;
}
@media only screen and (min-width: 1400px) {
  .nav_toggle {
    left: 30px;
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle {
    right: calc(2.6666666667 * var(--vw));
    width: calc(6.6666666667 * var(--vw));
    height: calc(6.6666666667 * var(--vw));
    left: auto;
    top: calc(2 * var(--vw));
    transform: unset;
    position: fixed;
  }
}
.nav_toggle div {
  width: calc(1.7857142857 * var(--vw));
  height: calc(1.7857142857 * var(--vw));
  position: relative;
  left: calc(0.9285714286 * var(--vw));
  top: calc(1.0714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .nav_toggle div {
    left: 13px;
    top: 15px;
    width: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle div {
    left: calc(1.6 * var(--vw));
    top: calc(2.1333333333 * var(--vw));
    width: calc(3.3333333333 * var(--vw));
    height: calc(3.3333333333 * var(--vw));
  }
}
.nav_toggle div span {
  display: block;
  height: calc(0.1428571429 * var(--vw));
  background: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 1400px) {
  .nav_toggle div span {
    height: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle div span {
    height: calc(0.2666666667 * var(--vw));
  }
}
.nav_toggle div span:nth-child(1) {
  top: 0;
}
.nav_toggle div span:nth-child(2) {
  top: calc(0.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .nav_toggle div span:nth-child(2) {
    top: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle div span:nth-child(2) {
    top: calc(1.0666666667 * var(--vw));
  }
}
.nav_toggle div span:nth-child(3) {
  top: calc(1.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .nav_toggle div span:nth-child(3) {
    top: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle div span:nth-child(3) {
    top: calc(2.1333333333 * var(--vw));
  }
}
.nav_toggle {
  /*開閉ボタンopen時*/
}
.nav_toggle.open span:nth-child(1) {
  top: calc(0.7142857143 * var(--vw));
  transform: rotate(135deg);
}
@media only screen and (min-width: 1400px) {
  .nav_toggle.open span:nth-child(1) {
    top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle.open span:nth-child(1) {
    top: calc(1.2 * var(--vw));
  }
}
.nav_toggle.open span:nth-child(2) {
  width: 0;
  left: 50%;
}
.nav_toggle.open span:nth-child(3) {
  top: calc(0.7142857143 * var(--vw));
  transform: rotate(-135deg);
}
@media only screen and (min-width: 1400px) {
  .nav_toggle.open span:nth-child(3) {
    top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .nav_toggle.open span:nth-child(3) {
    top: calc(1.2 * var(--vw));
  }
}

.header-menu {
  width: 100%;
  height: 100vh;
  position: absolute;
  background-color: #fff;
  z-index: 99;
  top: 0;
  display: none;
}
@media only screen and (max-width: 767px) {
  .header-menu {
    width: 100%;
    margin-bottom: calc(8 * var(--vw));
  }
}
.header-menu__in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header-menu__in {
    width: 100%;
    position: static;
    transform: none;
    padding: calc(18.6666666667 * var(--vw)) calc(5.3333333333 * var(--vw)) calc(5.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  .header-menu__in dl + dl {
    margin-left: calc(14.1428571429 * var(--vw));
  }
  .header-menu__in dl:nth-of-type(3) {
    margin-left: calc(10 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  .header-menu__in dl + dl {
    margin-left: 198px;
  }
  .header-menu__in dl:nth-of-type(3) {
    margin-left: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__in dl {
    width: 50%;
  }
  .header-menu__in dl:first-of-type {
    width: 100%;
  }
  .header-menu__in dl:last-of-type {
    margin-top: calc(-8 * var(--vw));
  }
}
.header-menu__in dl dt a,
.header-menu__in dl dd a {
  position: relative;
  display: inline-block;
}
.header-menu__in dl dt a::before,
.header-menu__in dl dd a::before {
  content: "";
  background-color: #323333;
  position: absolute;
  display: block;
  bottom: calc(-1.0714285714 * var(--vw));
  width: calc(1.4285714286 * var(--vw));
  height: 1px;
  transition: 0.3s;
  width: 0;
}
@media only screen and (min-width: 1400px) {
  .header-menu__in dl dt a::before,
  .header-menu__in dl dd a::before {
    bottom: -1px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__in dl dt a::before,
  .header-menu__in dl dd a::before {
    bottom: calc(-0.1333333333 * var(--vw));
  }
}
.header-menu__in dl dt a:hover,
.header-menu__in dl dd a:hover {
  opacity: 0.6;
}
.header-menu__in dl dt a:hover::before,
.header-menu__in dl dd a:hover::before {
  width: 100%;
}
.header-menu__in dl dt {
  font-size: 2.1rem;
  margin-bottom: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .header-menu__in dl dt {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__in dl dt {
    margin-bottom: calc(2 * var(--vw));
    font-size: 2.4rem;
  }
}
.header-menu__in dl dt a {
  font-weight: bold;
}
.header-menu__in dl dd {
  font-size: 1.8rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header-menu__in dl dd {
    font-size: 2.2rem;
  }
}
.header-menu__in dl dd ul li {
  position: relative;
  margin-bottom: calc(0.9285714286 * var(--vw));
  padding-left: calc(0.9285714286 * var(--vw));
}
.header-menu__in dl dd ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.3571428571 * var(--vw));
  height: calc(0.3571428571 * var(--vw));
  top: calc(0.5 * var(--vw));
  left: 0;
  background-size: contain;
  vertical-align: middle;
  border-top: 1px solid #323333;
  border-right: 1px solid #323333;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1400px) {
  .header-menu__in dl dd ul li::before {
    top: 7px;
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__in dl dd ul li::before {
    top: calc(1.6 * var(--vw));
    width: calc(0.6666666667 * var(--vw));
    height: calc(0.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  .header-menu__in dl dd ul li {
    margin-bottom: 35px;
    padding-left: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .header-menu__in dl dd ul li {
    margin-bottom: calc(1.7333333333 * var(--vw));
    padding-left: calc(2.6666666667 * var(--vw));
  }
}

.footer {
  background: #e6e6e5;
  padding: calc(4.2857142857 * var(--vw)) 0;
  position: relative;
}
@media only screen and (min-width: 1400px) {
  .footer {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: calc(10.6666666667 * var(--vw)) 0;
  }
}
.footer .sec_in {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__logo {
  width: calc(23 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .footer__logo {
    width: 322px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 80%;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
.footer__navi {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .footer__navi {
    width: 100%;
    margin-bottom: calc(8 * var(--vw));
  }
}
.footer__navi dl {
  width: 33.3333%;
}
@media only screen and (max-width: 767px) {
  .footer__navi dl {
    width: 50%;
  }
  .footer__navi dl:first-of-type {
    width: 100%;
  }
  .footer__navi dl:last-of-type {
    margin-top: calc(-3.3333333333 * var(--vw));
  }
}
.footer__navi dl dt a,
.footer__navi dl dd a {
  position: relative;
  display: inline-block;
}
.footer__navi dl dt a::before,
.footer__navi dl dd a::before {
  content: "";
  background-color: #323333;
  position: absolute;
  display: block;
  bottom: -1px;
  width: calc(1.4285714286 * var(--vw));
  height: 1px;
  transition: 0.3s;
  width: 0;
}
@media only screen and (min-width: 1400px) {
  .footer__navi dl dt a::before,
  .footer__navi dl dd a::before {
    bottom: -1px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__navi dl dt a::before,
  .footer__navi dl dd a::before {
    bottom: calc(-0.1333333333 * var(--vw));
  }
}
.footer__navi dl dt a:hover,
.footer__navi dl dd a:hover {
  opacity: 0.6;
}
.footer__navi dl dt a:hover::before,
.footer__navi dl dd a:hover::before {
  width: 100%;
}
.footer__navi dl dt {
  font-size: 1.4rem;
  margin-bottom: calc(1.0714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .footer__navi dl dt {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__navi dl dt {
    margin-bottom: calc(2 * var(--vw));
    font-size: 2.4rem;
  }
}
.footer__navi dl dt a {
  font-weight: bold;
}
.footer__navi dl dd {
  font-size: 1.2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .footer__navi dl dd {
    font-size: 2.2rem;
  }
}
.footer__navi dl dd ul li {
  position: relative;
  margin-bottom: calc(0.9285714286 * var(--vw));
  padding-left: calc(0.9285714286 * var(--vw));
}
.footer__navi dl dd ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(0.3571428571 * var(--vw));
  height: calc(0.3571428571 * var(--vw));
  top: calc(0.5 * var(--vw));
  left: 0;
  background-size: contain;
  vertical-align: middle;
  border-top: 1px solid #323333;
  border-right: 1px solid #323333;
  transform: rotate(45deg);
}
@media only screen and (min-width: 1400px) {
  .footer__navi dl dd ul li::before {
    top: 7px;
    width: 5px;
    height: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__navi dl dd ul li::before {
    top: calc(1.6 * var(--vw));
    width: calc(0.6666666667 * var(--vw));
    height: calc(0.6666666667 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  .footer__navi dl dd ul li {
    margin-bottom: 13px;
    padding-left: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__navi dl dd ul li {
    margin-bottom: calc(1.7333333333 * var(--vw));
    padding-left: calc(2.6666666667 * var(--vw));
  }
}
.footer .copyright {
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: calc(-1.7857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .footer .copyright {
    margin-top: -25px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: getvwP(-25);
  }
}

.contact-area {
  width: 97%;
  margin: calc(12.8571428571 * var(--vw)) auto calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  .contact-area {
    margin: 180px auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-area {
    margin: calc(16 * var(--vw)) auto calc(4 * var(--vw));
  }
}
.contact-area a {
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 1.6rem;
  border: 8px solid #54c3f1;
  background-color: #54c3f1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  height: calc(17.1428571429 * var(--vw));
  transition: 0.6s;
}
@media only screen and (min-width: 1400px) {
  .contact-area a {
    height: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-area a {
    height: calc(32 * var(--vw));
  }
}
.contact-area a .txt {
  position: relative;
  z-index: 2;
}
.contact-area a .en-txt {
  font-size: 8rem;
  line-height: 1;
  width: 100%;
  font-family: "minion-pro", serif;
  display: block;
  margin-bottom: calc(1.4285714286 * var(--vw));
}
@media only screen and (max-width: 767px) {
  .contact-area a .en-txt {
    font-size: 6rem;
  }
}
.contact-area a::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: -150%;
  left: -50%;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  width: 200%;
  height: 400%;
  border-radius: 50%;
  /*アニメーション*/
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin: center;
}
.contact-area a:hover {
  color: #54c3f1;
}
.contact-area a:hover:before {
  transform: scale(1, 1);
}

.btn_top {
  width: calc(3.5714285714 * var(--vw));
  height: calc(3.5714285714 * var(--vw));
  position: fixed;
  display: none;
  right: calc(1.4285714286 * var(--vw));
  bottom: calc(1.4285714286 * var(--vw));
  cursor: pointer;
  z-index: 9;
  background-color: #54c3f1;
  border-radius: 5px;
}
@media only screen and (min-width: 1400px) {
  .btn_top {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_top {
    width: calc(10 * var(--vw));
    height: calc(10 * var(--vw));
    right: calc(5.3333333333 * var(--vw));
    bottom: calc(5.3333333333 * var(--vw));
  }
}
.btn_top:before {
  content: "トップページへ";
  position: absolute;
  width: calc(5.3571428571 * var(--vw));
}
@media only screen and (min-width: 768px) {
  .btn_top:before {
    top: calc(-2.5925925926 * var(--vh));
    left: calc(-1.4814814815 * var(--vh));
    width: 75px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_top:before {
    top: calc(-5.2083333333 * var(--vw));
    left: calc(-6.7708333333 * var(--vw));
    width: calc(22.6666666667 * var(--vw));
    transform: scale(0.8);
  }
}
.btn_top::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(0.7142857143 * var(--vw));
  height: calc(0.7142857143 * var(--vw));
  top: calc(50% - 0.7142857143 * var(--vw) / 2);
  left: calc(50% - 0.9285714286 * var(--vw) / 2);
  background-size: contain;
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1400px) {
  .btn_top::after {
    top: calc(50% - 5px);
    left: calc(50% - 6.5px);
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .btn_top::after {
    top: calc(50% - 2 * var(--vw) / 2);
    left: calc(50% - 2.8 * var(--vw) / 2);
    width: calc(2.4 * var(--vw));
    height: calc(2.4 * var(--vw));
  }
}

#TOP {
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #TOP {
    overflow: auto;
  }
}
#TOP article {
  white-space: nowrap;
  height: 100vh;
  position: relative;
  position: fixed;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #TOP article {
    position: static;
    display: block;
    height: auto;
    white-space: unset;
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
#TOP section {
  width: max-content;
  position: relative;
}
#TOP .kv,
#TOP .sec {
  position: relative;
}
@media only screen and (min-width: 768px) {
  #TOP .kv,
  #TOP .sec {
    width: calc(177.7777777778 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv,
  #TOP .sec {
    width: calc(100 * var(--vw));
    height: calc(56.25 * var(--vw));
  }
}
#TOP .kv {
  display: flex;
}
@media only screen and (max-width: 767px) {
  #TOP .kv {
    display: block;
    background: url("../../assets/img/top/kv_img1_sp.jpg") no-repeat center;
    background-size: cover;
    height: auto;
    padding-bottom: 59%;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  #TOP .kv__overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100vw;
    height: 100vh;
    margin: 0 calc(50% - 50vw);
  }
}
@media only screen and (min-width: 768px) {
  #TOP .kv__img {
    width: calc(107.5925925926 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv__img {
    width: calc(60.5208333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv__img {
    display: none;
  }
}
#TOP .kv__ttl {
  position: absolute;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  #TOP .kv__ttl {
    opacity: 0;
    left: 50vw;
    transform: translateX(-50%);
    transition: opacity 1s 1s, left 1s 2s, transform 1s 2s;
    margin-top: calc(32.4074074074 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv__ttl {
    margin-top: calc(18.2291666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv__ttl {
    top: calc(16 * var(--vw));
    right: calc(10.6666666667 * var(--vw));
  }
}
#TOP .kv__ttl h2 {
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #TOP .kv__ttl h2 {
    font-size: calc(3.7037037037 * var(--vh));
    margin: 0 0 calc(3.7037037037 * var(--vh)) 0;
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv__ttl h2 {
    font-size: calc(2.0833333333 * var(--vw));
    margin: 0 0 calc(2.0833333333 * var(--vw)) 0;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv__ttl h2 {
    font-size: calc(2.9333333333 * var(--vw));
  }
}
#TOP .kv__ttl h2 span {
  display: block;
  color: #54c3f1;
  color: inherit;
  font-family: "minion-pro", serif;
  font-weight: 400;
  letter-spacing: -0.05rem;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  #TOP .kv__ttl h2 span {
    color: #000;
    font-size: calc(9.2592592593 * var(--vh));
    transition: color 1s 2s ease-out;
    margin: calc(0.9259259259 * var(--vh)) 0 0 calc(-3.7037037037 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv__ttl h2 span {
    font-size: calc(5.2083333333 * var(--vw));
    margin: calc(0.5208333333 * var(--vw)) 0 0 calc(-2.0833333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv__ttl h2 span {
    font-size: calc(7.2 * var(--vw));
    margin: calc(2.6666666667 * var(--vw)) 0 0 calc(-5.3333333333 * var(--vw));
    color: #54c3f1;
  }
}
#TOP .kv .scrollguide {
  position: absolute;
  overflow: hidden;
  font-family: "minion-pro", serif;
}
@media only screen and (min-width: 768px) {
  #TOP .kv .scrollguide {
    bottom: calc(31.4814814815 * var(--vh));
    right: calc(24.2592592593 * var(--vh));
    width: calc(14.8148148148 * var(--vh));
    font-size: calc(1.6666666667 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv .scrollguide {
    bottom: calc(17.7083333333 * var(--vw));
    right: calc(13.6458333333 * var(--vw));
    width: calc(8.3333333333 * var(--vw));
    font-size: calc(0.9375 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv .scrollguide {
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    width: calc(21.3333333333 * var(--vw));
    margin: 0 auto;
  }
}
#TOP .kv .scrollguide::before, #TOP .kv .scrollguide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) {
  #TOP .kv .scrollguide::before, #TOP .kv .scrollguide::after {
    height: calc(0.1851851852 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv .scrollguide::before, #TOP .kv .scrollguide::after {
    height: calc(0.1041666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv .scrollguide::before, #TOP .kv .scrollguide::after {
    height: calc(0.5333333333 * var(--vw));
  }
}
#TOP .kv .scrollguide::before {
  background: #ccc;
  width: 100%;
}
#TOP .kv .scrollguide::after {
  background: #4d4d4d;
  width: 31.25%;
  animation: scroll_border 2.5s ease-in-out 3s infinite;
}
#TOP .kv .scrollguide a {
  display: block;
}
@media only screen and (min-width: 768px) {
  #TOP .kv .scrollguide a {
    padding-top: calc(0.9259259259 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv .scrollguide a {
    padding-top: calc(0.5208333333 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv .scrollguide a {
    padding-top: calc(1.3333333333 * var(--vw));
  }
}
#TOP .kv .scrollguide a:hover {
  opacity: 0.65;
}
@media only screen and (min-width: 768px) {
  #TOP .kv .scrollguide .text {
    width: calc(10 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .kv .scrollguide .text {
    width: calc(5.625 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .kv .scrollguide .text {
    width: calc(14.4 * var(--vw));
  }
}
@keyframes scroll_border {
  0%, 100%, 52% {
    left: 0;
    opacity: 1;
  }
  25% {
    left: 100%;
    opacity: 1;
  }
  26% {
    left: 100%;
    opacity: 0;
  }
  27% {
    left: -100%;
    opacity: 0;
  }
}
@media only screen and (min-width: 768px) {
  #TOP {
    opacity: 0;
    transition: opacity 1s;
  }
  #TOP .header,
  #TOP .bottom-menu,
  #TOP .scrollguide {
    opacity: 0;
    transition: 1s 2s;
  }
  #TOP .header {
    transform: translateY(-100%);
  }
  #TOP .bottom-menu {
    transform: translateY(100%);
  }
  #TOP section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    transition: 1s 2s;
    opacity: 1;
    width: 100%;
    height: 100%;
  }
  #TOP.is-loaded {
    opacity: 1;
  }
  #TOP.is-loaded .header,
  #TOP.is-loaded .bottom-menu,
  #TOP.is-loaded .scrollguide {
    opacity: 1;
    transform: translateY(0%);
  }
  #TOP.is-loaded section::before {
    opacity: 0;
  }
  #TOP.is-loaded .kv__ttl {
    opacity: 1;
    transform: translateX(0);
    left: calc(97.037037037 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP.is-loaded .kv__ttl {
    left: calc(54.5833333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP.is-loaded .kv__ttl h2 span {
    color: #54c3f1;
  }
}
@media only screen and (min-width: 768px) {
  #TOP .fade__txt {
    transition: clip-path 1s;
    clip-path: inset(0% 100% 0% 0%);
  }
  #TOP .fade__txt.is-active {
    clip-path: inset(0% 0% 0% 0%);
  }
}
@media only screen and (min-width: 768px) {
  #TOP .fade__img {
    position: relative;
    overflow: hidden;
  }
  #TOP .fade__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #54c3f1;
    transform: translateX(100%);
    transition: transform 1s, clip-path 1s 1s;
    width: 100%;
    height: 100%;
  }
  #TOP .fade__img img,
  #TOP .fade__img span {
    transition: clip-path 1s 1s;
  }
  #TOP .fade__img.sec01__img1 {
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
  #TOP .fade__img.sec01__img1::before {
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
  #TOP .fade__img.sec01__img1 img {
    clip-path: polygon(100% 0%, 100% 0%, 74% 100%, 74% 100%);
  }
  #TOP .fade__img.sec01__img2 {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  #TOP .fade__img.sec01__img2::before {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  #TOP .fade__img.sec01__img2 img {
    clip-path: polygon(100% 0%, 100% 0%, 80% 100%, 80% 100%);
  }
  #TOP .fade__img.sec02__orn {
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  }
  #TOP .fade__img.sec02__orn::before {
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  }
  #TOP .fade__img.sec02__orn span {
    clip-path: polygon(100% 0%, 100% 0%, 70% 100%, 70% 100%);
  }
  #TOP .fade__img.sec02__img1 {
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
  #TOP .fade__img.sec02__img1::before {
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
  #TOP .fade__img.sec02__img1 img {
    clip-path: polygon(100% 0%, 100% 0%, 74% 100%, 74% 100%);
  }
  #TOP .fade__img.sec02__img2 {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  #TOP .fade__img.sec02__img2::before {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  #TOP .fade__img.sec02__img2 img {
    clip-path: polygon(100% 0%, 100% 0%, 80% 100%, 80% 100%);
  }
  #TOP .fade__img.is-active::before {
    transform: translateX(0%);
  }
  #TOP .fade__img.is-active.sec01__img1 img {
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec01__img1::before {
    clip-path: polygon(26% 0%, 26% 0%, 0% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec01__img2 img {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec01__img2::before {
    clip-path: polygon(20% 0%, 20% 0%, 0% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec02__orn span {
    clip-path: polygon(30% 0%, 100% 0%, 70% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec02__orn::before {
    clip-path: polygon(30% 0%, 30% 0%, 0% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec02__img1 img {
    clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec02__img1::before {
    clip-path: polygon(26% 0%, 26% 0%, 0% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec02__img2 img {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  }
  #TOP .fade__img.is-active.sec02__img2::before {
    clip-path: polygon(20% 0%, 20% 0%, 0% 100%, 0% 100%);
  }
}
#TOP .sec01 {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #TOP .sec01__img1 {
    position: absolute;
    width: calc(122.4074074074 * var(--vh));
    left: calc(-35.462962963 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec01__img1 {
    position: absolute;
    width: calc(68.8541666667 * var(--vw));
    left: calc(-19.9479166667 * var(--vw));
  }
}
#TOP .sec01__img2 {
  position: absolute;
  bottom: calc(2.8571428571 * var(--vw));
}
@media only screen and (min-width: 768px) {
  #TOP .sec01__img2 {
    width: calc(72.7777777778 * var(--vh));
    left: calc(38.9814814815 * var(--vh));
    bottom: calc(16.2962962963 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec01__img2 {
    width: calc(40.9375 * var(--vw));
    left: calc(21.9270833333 * var(--vw));
    bottom: calc(9.1666666667 * var(--vw));
  }
}
#TOP .sec01__txt {
  position: absolute;
  letter-spacing: 0.3em;
  line-height: 1.75;
}
@media only screen and (min-width: 768px) {
  #TOP .sec01__txt {
    font-size: calc(3.7037037037 * var(--vh));
    left: calc(87.037037037 * var(--vh));
    top: calc(20 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec01__txt {
    font-size: calc(2.0833333333 * var(--vw));
    left: calc(48.9583333333 * var(--vw));
    top: calc(11.25 * var(--vw));
  }
}
#TOP .sec02 {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 {
    height: calc(56.25 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 {
    width: 100%;
    display: none;
  }
}
#TOP .sec02 .sec02__orn {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__orn {
    top: 0;
    left: calc(-67.5 * var(--vh));
    width: calc(106.5740740741 * var(--vh));
    height: calc(56.25 * var(--vw));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__orn {
    left: calc(-37.96875 * var(--vw));
    width: calc(59.9479166667 * var(--vw));
    height: calc(56.25 * var(--vw));
  }
}
#TOP .sec02 .sec02__orn > span {
  display: block;
  background: url("../../assets/img/top/sec02_bg.svg") no-repeat top;
  background-size: cover;
  width: 100%;
  height: 100%;
}
#TOP .sec02 .sec02__box1 {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__box1 {
    top: calc(32.4074074074 * var(--vh));
    left: calc(-41.4814814815 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__box1 {
    top: calc(18.2291666667 * var(--vw));
    left: calc(-23.3333333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__box1 .txt-img {
    width: calc(99.2592592593 * var(--vh));
    margin-bottom: calc(3.7037037037 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__box1 .txt-img {
    width: calc(55.8333333333 * var(--vw));
    margin-bottom: calc(2.0833333333 * var(--vw));
  }
}
#TOP .sec02 .sec02__box1-bottom {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__box1-bottom {
    width: calc(91.4814814815 * var(--vh));
    gap: 0 calc(9.2592592593 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__box1-bottom {
    width: calc(51.4583333333 * var(--vw));
    gap: 0 calc(5.2083333333 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__box1-bottom img {
    width: calc(30.3703703704 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__box1-bottom img {
    width: calc(17.0833333333 * var(--vw));
  }
}
#TOP .sec02 .sec02__box1-bottom p {
  letter-spacing: 0.3em;
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__box1-bottom p {
    font-size: calc(3.7037037037 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__box1-bottom p {
    font-size: calc(2.0833333333 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  #TOP .sec02 .sec02__box1-bottom p {
    top: 360px;
  }
}
#TOP .sec02 .sec02__img1 {
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__img1 {
    left: calc(52.962962963 * var(--vh));
    width: calc(132.1296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__img1 {
    left: calc(29.7916666667 * var(--vw));
    width: calc(74.3229166667 * var(--vw));
  }
}
#TOP .sec02 .sec02__img2 {
  position: absolute;
  width: calc(41.2857142857 * var(--vw));
  position: absolute;
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  #TOP .sec02 .sec02__img2 {
    top: calc(56.2037037037 * var(--vh));
    left: calc(-1.4814814815 * var(--vh));
    width: calc(53.5185185185 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .sec02 .sec02__img2 {
    top: calc(31.6145833333 * var(--vw));
    left: calc(-0.8333333333 * var(--vw));
    width: calc(30.1041666667 * var(--vw));
  }
}
#TOP .sec02 .sec02__img2 img {
  height: 100%;
}
#TOP .sec03 {
  display: none;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 {
    display: block;
    position: relative;
    display: block;
    background: url("../../assets/img/top/sec03_img1_sp.jpg") no-repeat center;
    background-size: cover;
    height: auto;
    padding-bottom: 67%;
    width: 100%;
  }
  #TOP .sec03__txt1, #TOP .sec03__txt2 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    line-height: 1.7;
  }
  #TOP .sec03__txt1 {
    position: absolute;
    top: calc(4 * var(--vw));
    left: calc(21.4285714286 * var(--vw));
  }
  #TOP .sec03__img1 {
    width: calc(35.7333333333 * var(--vw));
    position: absolute;
    top: calc(16 * var(--vw));
    right: calc(30.6666666667 * var(--vw));
  }
  #TOP .sec03__txt2-area {
    position: absolute;
    bottom: calc(14.6666666667 * var(--vw));
    left: calc(10.6666666667 * var(--vw));
  }
  #TOP .sec03__img2 {
    width: calc(20.2666666667 * var(--vw));
    margin-top: calc(1.3333333333 * var(--vw));
  }
}
#TOP .bottom-menu {
  position: fixed;
}
@media only screen and (min-width: 768px) {
  #TOP .bottom-menu {
    bottom: calc(-11.1111111111 * var(--vh));
    left: calc(1.8518518519 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .bottom-menu {
    bottom: calc(-6.25 * var(--vw));
    left: calc(1.0416666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .bottom-menu {
    position: static;
    padding: calc(4 * var(--vw));
  }
}
#TOP .bottom-menu ul {
  display: flex;
}
@media only screen and (min-width: 768px) {
  #TOP .bottom-menu ul {
    gap: 0 calc(2.7777777778 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .bottom-menu ul {
    gap: 0 calc(1.5625 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .bottom-menu ul {
    gap: 0 calc(4 * var(--vw));
  }
}
#TOP .bottom-menu ul li {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
  transition: 0.3s;
}
#TOP .bottom-menu ul li::before {
  transition: 0.3s;
  transform: translateY(10px);
  content: "";
  position: absolute;
  background-image: url("../../assets/img/top/fukidashi.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  #TOP .bottom-menu ul li::before {
    width: calc(33.5185185185 * var(--vh));
    height: calc(8.6111111111 * var(--vh));
    top: calc(-3.7037037037 * var(--vh));
    left: calc(2.7777777778 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .bottom-menu ul li::before {
    width: calc(18.8541666667 * var(--vw));
    height: calc(4.84375 * var(--vw));
    top: calc(-2.0833333333 * var(--vw));
    left: calc(1.5625 * var(--vw));
  }
}
@media only screen and (min-width: 768px) {
  #TOP .bottom-menu ul li {
    width: calc(55.5555555556 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .bottom-menu ul li {
    width: calc(31.25 * var(--vw));
  }
}
#TOP .bottom-menu ul li:hover {
  transform: translateY(-30px);
}
@media only screen and (max-width: 767px) {
  #TOP .bottom-menu ul li:hover {
    transform: translateY(0);
    opacity: 0.6;
  }
}
#TOP .bottom-menu ul li:hover::before {
  transform: translateY(0);
  opacity: 1;
}
#TOP .container {
  overflow: hidden;
}
#TOP .top-btn {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  #TOP .top-btn {
    right: calc(5.5555555556 * var(--vh));
    bottom: calc(29.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .top-btn {
    right: calc(3.125 * var(--vw));
    bottom: calc(16.6666666667 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #TOP .top-btn {
    display: none;
  }
}
#TOP .top-btn a {
  background-color: #54c3f1;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  #TOP .top-btn a {
    width: calc(4.6296296296 * var(--vh));
    height: calc(4.6296296296 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .top-btn a {
    width: calc(2.6041666667 * var(--vw));
    height: calc(2.6041666667 * var(--vw));
  }
}
#TOP .top-btn a:before {
  content: "トップページへ";
  position: absolute;
}
@media only screen and (min-width: 768px) {
  #TOP .top-btn a:before {
    top: calc(-2.5925925926 * var(--vh));
    left: calc(-1.4814814815 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .top-btn a:before {
    top: calc(-1.4583333333 * var(--vw));
    left: calc(-0.8333333333 * var(--vw));
  }
}
#TOP .top-btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% - 5px);
  right: 30px;
  background-size: contain;
  vertical-align: middle;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) {
  #TOP .top-btn a::after {
    top: calc(1.7592592593 * var(--vh));
    right: calc(1.3888888889 * var(--vh));
  }
}
@media only screen and (min-width: 768px) and (max-aspect-ratio: 16/9) {
  #TOP .top-btn a::after {
    top: calc(0.9895833333 * var(--vw));
    right: calc(0.78125 * var(--vw));
  }
}

#PRODUCT .product-top .sec01 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: calc(4.2857142857 * var(--vw)) 0;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-top .sec01 ul {
    gap: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-top .sec01 ul {
    gap: calc(8 * var(--vw)) 0;
  }
}
#PRODUCT .product-top .sec01 ul::after {
  content: "";
  display: block;
  width: 22.7%;
  height: 0;
}
#PRODUCT .product-top .sec01 ul::after {
  order: 1;
}
#PRODUCT .product-top .sec01 ul li {
  width: 22.7%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-top .sec01 ul li {
    width: 48%;
  }
}
#PRODUCT .product-top .sec01 ul li figure {
  overflow: hidden;
  margin-bottom: calc(0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-top .sec01 ul li figure {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-top .sec01 ul li figure {
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#PRODUCT .product-top .sec01 ul li figure img {
  transition: 0.3s;
}
#PRODUCT .product-top .sec01 ul li .ttl {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-top .sec01 ul li .ttl {
    font-size: 2.4rem;
  }
}
#PRODUCT .product-top .sec01 ul li .ttl span {
  font-size: 1.4rem;
  display: block;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-top .sec01 ul li .ttl span {
    font-size: 2rem;
  }
}
#PRODUCT .product-top .sec01 ul li .ttl::before {
  content: "";
  background-color: #323333;
  position: absolute;
  display: block;
  bottom: calc(-1.0714285714 * var(--vw));
  width: calc(1.4285714286 * var(--vw));
  height: 2px;
  transition: 0.3s;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-top .sec01 ul li .ttl::before {
    width: 20px;
    bottom: -15px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-top .sec01 ul li .ttl::before {
    width: calc(2.6666666667 * var(--vw));
    bottom: calc(-2 * var(--vw));
  }
}
#PRODUCT .product-top .sec01 ul li a:hover {
  text-decoration: none;
}
#PRODUCT .product-top .sec01 ul li a:hover img {
  transform: scale(1.1);
  opacity: 0.5;
}
#PRODUCT .product-top .sec01 ul li a:hover .ttl {
  transition: 0.3s;
}
#PRODUCT .product-top .sec01 ul li a:hover .ttl::before {
  width: 100%;
  transition: 0.3s;
}
#PRODUCT .product-details .u-kv__in h2 {
  font-weight: normal;
}
#PRODUCT .product-details .u-kv__in h2 .en-txt {
  font-size: 6.4rem;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .u-kv__in h2 .en-txt {
    font-size: 5rem;
  }
}
#PRODUCT .product-details .sec01 .sec_in {
  max-width: calc(60.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .sec_in {
    max-width: 850px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .sec_in {
    max-width: 100%;
  }
}
#PRODUCT .product-details .sec01 .sec-ttl {
  color: #fff;
  background-color: #54c3f1;
  font-size: 2.4rem;
  display: inline-block;
  line-height: 1.4;
  padding: calc(0.3571428571 * var(--vw)) calc(0.7142857143 * var(--vw)) calc(0.2142857143 * var(--vw));
  margin-bottom: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .sec-ttl {
    padding: 5px 10px 3px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .sec-ttl {
    padding: calc(0.6666666667 * var(--vw)) calc(1.3333333333 * var(--vw)) calc(0.4 * var(--vw));
    margin-bottom: calc(4 * var(--vw));
    font-size: 3.2rem;
  }
}
#PRODUCT .product-details .sec01__youtube-area {
  width: calc(42.8571428571 * var(--vw));
  box-sizing: border-box;
  margin: 0 auto calc(5.7142857143 * var(--vw));
  border: 4px solid #54c3f1;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__youtube-area {
    width: 600px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__youtube-area {
    width: 100%;
    margin-bottom: calc(10.6666666667 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__youtube-area .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#PRODUCT .product-details .sec01__youtube-area .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
#PRODUCT .product-details .sec01__flex-box {
  display: flex;
  margin-bottom: calc(5.7142857143 * var(--vw));
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.7rem;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__flex-box {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box {
    margin-bottom: calc(10.6666666667 * var(--vw));
    font-size: 2.4rem;
  }
}
#PRODUCT .product-details .sec01__flex-box.flex-start {
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box.flex-start > img {
    width: 30%;
  }
}
@media only screen and (min-width: 768px) {
  #PRODUCT .product-details .sec01__flex-box.flex-start > img + img {
    margin-left: calc(2.8571428571 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__flex-box.flex-start > img + img {
    margin-left: 40px;
  }
}
#PRODUCT .product-details .sec01__flex-box > p + p {
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__flex-box > p + p {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box > p + p {
    margin-top: calc(4 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__flex-box--info {
  width: 73%;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box--info {
    width: 100%;
  }
}
#PRODUCT .product-details .sec01__flex-box--info p + p {
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__flex-box--info p + p {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box--info p + p {
    margin-top: calc(4 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__flex-box img {
  width: 25%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box img {
    width: 60%;
    margin: calc(5.3333333333 * var(--vw)) auto 0;
  }
}
#PRODUCT .product-details .sec01__flex-box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#PRODUCT .product-details .sec01__flex-box2 img {
  width: calc(14.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__flex-box2 img {
    width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box2 img {
    width: 46%;
  }
}
#PRODUCT .product-details .sec01__flex-box2 p {
  font-size: 1.8rem;
  width: 53.434225844%;
  margin-left: 2.3282887078%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box2 p {
    width: 50%;
    font-size: 2.4rem;
  }
}
#PRODUCT .product-details .sec01__flex-box3--info {
  width: 63%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box3--info {
    width: 100%;
  }
}
#PRODUCT .product-details .sec01__flex-box3 img {
  width: 35%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__flex-box3 img {
    width: 60%;
  }
}
#PRODUCT .product-details .sec01 .bd-box {
  color: #54c3f1;
  border: 1px solid #54c3f1;
  padding: calc(1.0714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .bd-box {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .bd-box {
    padding: calc(2 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__box {
  margin-top: calc(5.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__box {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__box {
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__box--info {
  font-size: 1.7rem;
  line-height: 1.6;
}
#PRODUCT .product-details .sec01__box--info > * + * {
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__box--info > * + * {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__box--info > * + * {
    margin-top: calc(4 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__box--info ul {
  font-size: 1.4rem;
  line-height: 2;
}
#PRODUCT .product-details .sec01__box2 {
  margin-top: calc(3.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__box2 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__box2 {
    margin-top: calc(6.6666666667 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__capacity1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity1 {
    gap: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1 {
    gap: 0 calc(4 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__capacity1:not(:last-of-type) {
  margin-bottom: calc(2.8571428571 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity1:not(:last-of-type) {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1:not(:last-of-type) {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__capacity1 h4 {
  font-size: 1.8rem;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1 h4 {
    order: 1;
    font-size: 2.6rem;
  }
}
#PRODUCT .product-details .sec01__capacity1--img {
  margin-top: calc(-0.7142857143 * var(--vw));
  width: auto;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity1--img {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1--img {
    display: flex;
    align-items: center;
    width: auto;
    gap: 0 calc(2.6666666667 * var(--vw));
    order: 2;
  }
}
#PRODUCT .product-details .sec01__capacity1--img img {
  width: calc(3.5714285714 * var(--vw));
  padding-left: calc(0.7142857143 * var(--vw));
  margin-bottom: calc(-0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity1--img img {
    width: 50px;
    padding-left: 10px;
    margin-bottom: -10px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1--img img {
    order: 2;
    width: calc(9.3333333333 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__capacity1--table {
  font-size: 1.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1--table {
    font-size: 2.4rem;
    order: 3;
  }
  #PRODUCT .product-details .sec01__capacity1--table.scroll {
    width: 80%;
  }
}
#PRODUCT .product-details .sec01__capacity1--table::before {
  content: "";
  height: 1px;
  top: 50%;
  width: 100%;
  background-color: #333;
  position: absolute;
  display: inline-block;
}
#PRODUCT .product-details .sec01__capacity1--table th,
#PRODUCT .product-details .sec01__capacity1--table td {
  padding: calc(0.7142857143 * var(--vw));
  font-weight: normal;
  text-align: center;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity1--table th,
  #PRODUCT .product-details .sec01__capacity1--table td {
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1--table th,
  #PRODUCT .product-details .sec01__capacity1--table td {
    padding: calc(1.7333333333 * var(--vw)) calc(3.3333333333 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__capacity1--table .scroll-table {
  margin-inline: auto;
  overflow-x: auto;
  white-space: nowrap;
}
#PRODUCT .product-details .sec01__capacity1 .scroll-txt {
  display: none;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity1 .scroll-txt {
    display: block;
    margin-left: auto;
    margin-bottom: calc(-4.6666666667 * var(--vw));
    font-size: 2.2rem;
  }
}
#PRODUCT .product-details .sec01__capacity2--list {
  display: flex;
  gap: 0 calc(4.6428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity2--list {
    gap: 0 65px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity2--list {
    gap: 0;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: calc(4 * var(--vw)) 0;
  }
  #PRODUCT .product-details .sec01__capacity2--list::after {
    content: "";
    display: block;
    width: 31%;
    height: 0;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity2--list li {
    width: 31%;
  }
}
#PRODUCT .product-details .sec01__capacity2--list li img {
  width: calc(5.7142857143 * var(--vw));
  display: block;
  height: auto;
  margin: 0 auto calc(0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01__capacity2--list li img {
    width: 80px;
    margin: 0 auto 10px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity2--list li img {
    width: calc(16 * var(--vw));
    margin: 0 auto calc(1.3333333333 * var(--vw));
  }
}
#PRODUCT .product-details .sec01__capacity2--list li h4 {
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01__capacity2--list li h4 {
    font-size: 2.6rem;
  }
}
#PRODUCT .product-details .sec01__capacity2--list li h4 span {
  display: inline-block;
  font-size: 1.2rem;
}
#PRODUCT .product-details .sec01 .flow-box {
  margin-top: calc(8.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .flow-box {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .flow-box {
    margin-top: calc(16 * var(--vw));
  }
}
#PRODUCT .product-details .sec01 .flow-box .sec-ttl {
  background: #fff;
  color: #333;
  border: 1px solid #333;
}
#PRODUCT .product-details .sec01 .flow-box__img {
  margin-bottom: calc(2.8571428571 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .flow-box__img {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .flow-box__img {
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#PRODUCT .product-details .sec01 .flow-box__txt {
  color: #1e2973;
  font-size: 1.7rem;
  font-weight: 700;
}
#PRODUCT .product-details .sec01 .chart-box {
  text-align: center;
  margin-top: calc(5.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .chart-box {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .chart-box {
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
#PRODUCT .product-details .sec01 .chart-box__img {
  width: 79.2222222222%;
  margin: 0 auto;
}
#PRODUCT .product-details .sec01 .mB80 {
  margin-bottom: calc(5.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .mB80 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .mB80 {
    margin-bottom: calc(10.6666666667 * var(--vw));
  }
}
#PRODUCT .product-details .sec01 .top-m {
  margin-top: calc(-5 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .top-m {
    margin-top: -70px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .top-m {
    margin: calc(5.3333333333 * var(--vw)) auto 0;
  }
}
#PRODUCT .product-details .sec01 .desc {
  padding-left: calc(1.4285714286 * var(--vw));
  list-style-type: disc;
}
@media only screen and (min-width: 1400px) {
  #PRODUCT .product-details .sec01 .desc {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #PRODUCT .product-details .sec01 .desc {
    padding-left: calc(2.6666666667 * var(--vw));
  }
}

#COMPANY .sec {
  margin-bottom: calc(17.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec {
    margin-bottom: 240px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec {
    margin-bottom: calc(16 * var(--vw));
  }
}
#COMPANY .sec01 .sec_in {
  max-width: calc(830px + 2.1428571429 * var(--vw) * 2);
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec01 .sec_in {
    padding: 0 30px;
    max-width: 890px;
  }
}
#COMPANY .sec01 .sec_in p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec01 .sec_in p {
    font-size: 2.4rem;
  }
}
#COMPANY .sec01 .sec_in p + p {
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec01 .sec_in p + p {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec01 .sec_in p + p {
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#COMPANY .sec01 .sec_in .name {
  text-align: right;
  margin-top: calc(2.8571428571 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec01 .sec_in .name {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec01 .sec_in .name {
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#COMPANY .sec01 .sec_in .name span {
  display: block;
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec01 .sec_in .name span {
    font-size: 3.2rem;
  }
}
#COMPANY .sec01 .sec_in .youtube-area {
  max-width: calc(42.8571428571 * var(--vw));
  margin: calc(5.7142857143 * var(--vw)) auto 0;
  border: 5px solid #54c3f1;
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec01 .sec_in .youtube-area {
    margin: 80px auto 0;
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec01 .sec_in .youtube-area {
    margin: calc(10.6666666667 * var(--vw)) auto 0;
    max-width: 100%;
  }
}
#COMPANY .sec01 .sec_in .youtube-area .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#COMPANY .sec01 .sec_in .youtube-area .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
#COMPANY .sec02 .sec_in {
  max-width: calc(820px + 2.1428571429 * var(--vw) * 2);
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec02 .sec_in {
    padding: 0 30px;
    max-width: 880px;
  }
}
#COMPANY .sec02 .sec_in dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: calc(1.2142857143 * var(--vw));
  margin-bottom: calc(1.2142857143 * var(--vw));
  font-size: 1.8rem;
  line-height: 1.4;
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec02 .sec_in dl {
    padding-bottom: 17px;
    margin-bottom: 17px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec02 .sec_in dl {
    padding-bottom: calc(2.2666666667 * var(--vw));
    margin-bottom: calc(2.2666666667 * var(--vw));
    font-size: 2.4rem;
  }
}
#COMPANY .sec02 .sec_in dl:last-of-type {
  margin-bottom: 0;
}
#COMPANY .sec02 .sec_in dl dt {
  width: 20.5%;
  position: relative;
}
#COMPANY .sec02 .sec_in dl dt::before {
  content: "";
  width: 100%;
  background: #323333;
  height: 1px;
  position: absolute;
  bottom: calc(-1.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec02 .sec_in dl dt::before {
    bottom: -18px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec02 .sec_in dl dt::before {
    bottom: calc(-2.4 * var(--vw));
  }
}
#COMPANY .sec02 .sec_in dl dd {
  width: 75.5%;
}
#COMPANY .sec02 .sec_in dl dd ul li span {
  display: block;
  margin-left: calc(-0.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec02 .sec_in dl dd ul li span {
    margin-left: -8px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec02 .sec_in dl dd ul li span {
    margin-left: calc(-1.0666666667 * var(--vw));
  }
}
#COMPANY .sec02 .sec_in dl dd ul li:not(:last-child) {
  margin-bottom: calc(0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec02 .sec_in dl dd ul li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec02 .sec_in dl dd ul li:not(:last-child) {
    margin-bottom: calc(1.3333333333 * var(--vw));
  }
}
#COMPANY .sec03__h-list {
  max-width: calc(820px + 2.1428571429 * var(--vw) * 2);
  margin: 0 auto calc(4.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__h-list {
    padding: 0 30px;
    max-width: 880px;
    margin: 0 auto 60px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list {
    margin: 0 auto calc(8 * var(--vw));
  }
}
#COMPANY .sec03__h-list dl {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-left: calc(2.1428571429 * var(--vw));
  font-size: 1.8rem;
  margin-top: calc(-0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__h-list dl {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list dl {
    padding-left: calc(4 * var(--vw));
    font-size: 2.4rem;
  }
}
#COMPANY .sec03__h-list dl:not(:last-of-type) {
  padding-bottom: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__h-list dl:not(:last-of-type) {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list dl:not(:last-of-type) {
    padding-bottom: calc(4 * var(--vw));
  }
}
#COMPANY .sec03__h-list dl::before {
  content: "";
  width: 2px;
  background-color: #333;
  height: 100%;
  position: absolute;
  left: 0;
  top: calc(0.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__h-list dl::before {
    top: 6px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list dl::before {
    top: calc(0.8 * var(--vw));
  }
}
#COMPANY .sec03__h-list dl dt {
  width: 15%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list dl dt {
    width: 25%;
  }
}
#COMPANY .sec03__h-list dl dt::before {
  content: "";
  width: calc(0.7142857143 * var(--vw));
  height: calc(0.7142857143 * var(--vw));
  border: 2px solid #333;
  border-radius: 50px;
  background-color: #fff;
  position: absolute;
  left: calc(-2.5714285714 * var(--vw));
  top: calc(0.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__h-list dl dt::before {
    left: -36px;
    top: 6px;
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list dl dt::before {
    left: calc(-4.8 * var(--vw));
    top: calc(0.8 * var(--vw));
    width: calc(1.3333333333 * var(--vw));
    height: calc(1.3333333333 * var(--vw));
  }
}
#COMPANY .sec03__h-list dl dd {
  width: 85%;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__h-list dl dd {
    width: 75%;
  }
}
#COMPANY .sec03__box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 calc(2.8571428571 * var(--vw));
}
#COMPANY .sec03__info {
  width: 57%;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__info {
    width: 100%;
  }
}
#COMPANY .sec03__info-ttl {
  margin-bottom: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__info-ttl {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__info-ttl {
    margin-bottom: calc(4 * var(--vw));
  }
}
#COMPANY .sec03__info-ttl h3 {
  font-size: 2rem;
  margin-bottom: calc(0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__info-ttl h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__info-ttl h3 {
    margin-bottom: calc(1.3333333333 * var(--vw));
    font-size: 3rem;
  }
}
#COMPANY .sec03__info-ttl h3 + p {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__info-ttl h3 + p {
    font-size: 2.2rem;
  }
}
#COMPANY .sec03__info p {
  font-size: 1.8rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__info p {
    font-size: 2.4rem;
  }
}
#COMPANY .sec03__img {
  width: calc(10.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec03__img {
    width: 146px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec03__img {
    width: 40%;
    display: block;
    margin: calc(5.3333333333 * var(--vw)) auto 0;
  }
}
#COMPANY .sec04 .sec_in {
  max-width: 960px;
  margin: 0 auto calc(4.2857142857 * var(--vw));
  padding: 0 calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec04 .sec_in {
    padding: 0 30px;
    max-width: 960px;
    margin: 0 auto 60px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04 .sec_in {
    padding: 0 calc(5.3333333333 * var(--vw));
    max-width: 100%;
  }
}
#COMPANY .sec04__list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #808080;
  padding-bottom: calc(3.5714285714 * var(--vw));
  margin-bottom: calc(3.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec04__list li {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__list li {
    padding-bottom: calc(4 * var(--vw));
    margin-bottom: calc(4 * var(--vw));
  }
}
#COMPANY .sec04__list li:last-child {
  border-bottom: none;
}
#COMPANY .sec04__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 54.2%;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__box {
    width: 100%;
  }
}
#COMPANY .sec04__info {
  width: 52%;
}
#COMPANY .sec04__info h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__info h3 {
    font-size: 2.6rem;
  }
}
#COMPANY .sec04__info p {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__info p {
    font-size: 2.4rem;
  }
}
#COMPANY .sec04__img {
  width: 42.3%;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__img {
    width: 44.3%;
  }
}
#COMPANY .sec04__img img:not(:last-child) {
  margin-bottom: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec04__img img:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__img img:not(:last-child) {
    margin-bottom: calc(2.6666666667 * var(--vw));
  }
}
#COMPANY .sec04__img.half img {
  width: 50%;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04__img.half img {
    width: 60%;
  }
}
#COMPANY .sec04 iframe {
  width: 41.7%;
  height: calc(10 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #COMPANY .sec04 iframe {
    height: 140px;
  }
}
@media only screen and (max-width: 767px) {
  #COMPANY .sec04 iframe {
    height: calc(34.6666666667 * var(--vw));
    width: 100%;
    margin-top: calc(5.3333333333 * var(--vw));
  }
}

#QUALITY .sec {
  margin-bottom: calc(17.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec {
    margin-bottom: 240px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec {
    margin-bottom: calc(16 * var(--vw));
  }
}
#QUALITY .sec01__box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 calc(4.2857142857 * var(--vw));
  margin-bottom: calc(8.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec01__box {
    gap: 0 60px;
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec01__box {
    gap: 0 calc(8 * var(--vw));
    margin-bottom: calc(16 * var(--vw));
  }
}
#QUALITY .sec01__box p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec01__box p {
    font-size: 2.4rem;
    margin-bottom: calc(5.3333333333 * var(--vw));
  }
}
#QUALITY .sec01__box img {
  width: calc(17.8571428571 * var(--vw));
  height: 100%;
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec01__box img {
    width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec01__box img {
    width: 100%;
  }
}
#QUALITY .sec02__box1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 calc(4.2857142857 * var(--vw));
  margin-bottom: calc(8.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec02__box1 {
    gap: 0 60px;
    margin-bottom: 120px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box1 {
    gap: 0 calc(8 * var(--vw));
    margin-bottom: calc(16 * var(--vw));
  }
}
#QUALITY .sec02__box1-info {
  width: 44%;
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box1-info {
    width: 100%;
  }
}
#QUALITY .sec02__box1-info p {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box1-info p {
    font-size: 2.4rem;
  }
}
#QUALITY .sec02__box1-info p + p {
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec02__box1-info p + p {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box1-info p + p {
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#QUALITY .sec02__box1 img {
  width: calc(36.5714285714 * var(--vw));
  height: 100%;
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec02__box1 img {
    width: 512px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box1 img {
    width: 100%;
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#QUALITY .sec02__box2 {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box2 {
    justify-content: space-between;
  }
}
#QUALITY .sec02__box2 dl {
  width: 25%;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box2 dl {
    width: 48%;
    font-size: 2.4rem;
  }
}
#QUALITY .sec02__box2 dl dt {
  border: 1px solid #333;
  font-weight: bold;
  display: inline-block;
  padding: calc(0.3571428571 * var(--vw)) calc(0.7142857143 * var(--vw)) 0;
  margin-bottom: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #QUALITY .sec02__box2 dl dt {
    padding: 5px 10px 0;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box2 dl dt {
    padding: calc(0.6666666667 * var(--vw)) calc(1.3333333333 * var(--vw)) 0;
    margin-bottom: calc(4 * var(--vw));
  }
}
#QUALITY .sec02__box2 dl dd ul {
  list-style-type: disc;
  padding-left: calc(1.4285714286 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box2 dl dd ul {
    padding-left: calc(5.3333333333 * var(--vw));
  }
}
#QUALITY .sec02__box2 dl dd ul li > ul {
  padding-left: calc(1.4285714286 * var(--vw));
}
@media only screen and (max-width: 767px) {
  #QUALITY .sec02__box2 dl dd ul li > ul {
    padding-left: calc(5.3333333333 * var(--vw));
  }
}
#QUALITY .youtube-area {
  max-width: calc(42.8571428571 * var(--vw));
  margin: calc(8.5714285714 * var(--vw)) auto 0;
  border: 5px solid #54c3f1;
}
@media only screen and (min-width: 1400px) {
  #QUALITY .youtube-area {
    margin: 120px auto 0;
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  #QUALITY .youtube-area {
    margin: calc(16 * var(--vw)) auto 0;
    max-width: 100%;
  }
}
#QUALITY .youtube-area .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#QUALITY .youtube-area .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#TO_CONSUMERS .sec01 .sec_in {
  max-width: calc(64.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #TO_CONSUMERS .sec01 .sec_in {
    max-width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  #TO_CONSUMERS .sec01 .sec_in {
    max-width: 100%;
  }
}
#TO_CONSUMERS .sec01 .sec-ttl {
  color: #fff;
  background-color: #54c3f1;
  font-size: 2.4rem;
  display: inline-block;
  line-height: 1.4;
  padding: calc(0.3571428571 * var(--vw)) calc(0.7142857143 * var(--vw)) calc(0.2142857143 * var(--vw));
  margin-bottom: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #TO_CONSUMERS .sec01 .sec-ttl {
    padding: 5px 10px 3px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #TO_CONSUMERS .sec01 .sec-ttl {
    padding: calc(0.6666666667 * var(--vw)) calc(1.3333333333 * var(--vw)) calc(0.4 * var(--vw));
    margin-bottom: calc(4 * var(--vw));
    font-size: 3.2rem;
  }
}
#TO_CONSUMERS .sec01__youtube-area {
  width: calc(42.8571428571 * var(--vw));
  margin: 0 auto calc(5.7142857143 * var(--vw));
  border: 4px solid #54c3f1;
}
@media only screen and (min-width: 1400px) {
  #TO_CONSUMERS .sec01__youtube-area {
    width: 600px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #TO_CONSUMERS .sec01__youtube-area {
    width: 100%;
    margin-bottom: calc(10.6666666667 * var(--vw));
  }
}
#TO_CONSUMERS .sec01__youtube-area .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
#TO_CONSUMERS .sec01__youtube-area .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
#TO_CONSUMERS .sec01__flex-box {
  display: flex;
  margin-bottom: calc(5.7142857143 * var(--vw));
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.7rem;
}
@media only screen and (min-width: 1400px) {
  #TO_CONSUMERS .sec01__flex-box {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #TO_CONSUMERS .sec01__flex-box {
    margin-bottom: calc(10.6666666667 * var(--vw));
    font-size: 2.4rem;
  }
}
#TO_CONSUMERS .sec01__flex-box > p + p {
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #TO_CONSUMERS .sec01__flex-box > p + p {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TO_CONSUMERS .sec01__flex-box > p + p {
    margin-top: calc(4 * var(--vw));
  }
}

#PRIVACYPOLICY .sec01 {
  font-size: 1.7rem;
  line-height: 1.3;
  font-feature-settings: "palt";
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #PRIVACYPOLICY .sec01 {
    font-size: 2.4rem;
  }
}
#PRIVACYPOLICY .sec01 .sec_in {
  max-width: 1000px;
}
#PRIVACYPOLICY .sec01 h3 {
  font-size: 141.1764705882%;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.2em;
}
#PRIVACYPOLICY .sec01 h4 {
  position: relative;
  font-weight: 700;
  margin-bottom: 1.1764705882em;
  margin-left: -1.8em;
  padding-left: 1.8em;
}
#PRIVACYPOLICY .sec01 h4::before {
  content: counter(parentNum) ".";
  position: absolute;
  top: 0;
  left: 0;
}
#PRIVACYPOLICY .sec01 .parent-list {
  counter-reset: parentNum;
}
#PRIVACYPOLICY .sec01 .parent-list__item {
  position: relative;
  counter-increment: parentNum;
  margin-top: 2.3529411765em;
  padding-left: 1.8em;
}
#PRIVACYPOLICY .sec01 .child-list {
  counter-reset: childNum;
}
#PRIVACYPOLICY .sec01 .child-list__item {
  position: relative;
  counter-increment: childNum;
  padding-left: 2.5em;
}
#PRIVACYPOLICY .sec01 .child-list__item:not(:first-of-type) {
  margin-top: 1.3em;
}
#PRIVACYPOLICY .sec01 .child-list__item::before {
  content: "（" counter(childNum) "）";
  position: absolute;
  top: 0;
  left: 0;
}
#PRIVACYPOLICY .sec01 .dot-list__item {
  position: relative;
  padding-left: 0.5em;
}
#PRIVACYPOLICY .sec01 .dot-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
#PRIVACYPOLICY .sec01 .author-text {
  margin-top: 2.3529411765em;
  padding-bottom: 10.5882352941em;
}

#CONTACT .sec01 {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #CONTACT .sec01 {
    font-size: 2.4rem;
  }
}
#CONTACT .sec01 .sec_in {
  max-width: 1200px;
}
#CONTACT .table-contact {
  margin-top: 3.3333333333em;
}
@media only screen and (max-width: 767px) {
  #CONTACT .table-contact {
    margin-top: calc(8 * var(--vw));
  }
}
#CONTACT .table-contact__row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #323333;
}
@media only screen and (max-width: 767px) {
  #CONTACT .table-contact__row {
    flex-direction: column;
  }
}
#CONTACT .table-contact__title, #CONTACT .table-contact__data {
  position: relative;
  font-size: 2.8rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #CONTACT .table-contact__title, #CONTACT .table-contact__data {
    font-size: 3.2rem;
  }
}
#CONTACT .table-contact__title {
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  width: 40%;
  padding: 2.5% 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT .table-contact__title {
    width: auto;
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTACT .table-contact__title.is-required::after {
  content: "必　須";
  background: #54c3f1;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  width: 4.4444444444em;
  height: 1.5555555556em;
  margin: 0.4444444444em 0 0 auto;
}
@media only screen and (max-width: 767px) {
  #CONTACT .table-contact__title.is-required::after {
    font-size: 2rem;
    width: 4em;
    height: 1.4em;
    margin: 0.5em 0 0 calc(2.6666666667 * var(--vw));
  }
}
#CONTACT .table-contact__data {
  width: 60%;
  padding: 2.5%;
}
@media only screen and (max-width: 767px) {
  #CONTACT .table-contact__data {
    width: 100%;
    padding: 0 0 calc(2.6666666667 * var(--vw));
  }
}
#CONTACT input:not([type=radio]):not([type=checkbox]),
#CONTACT textarea,
#CONTACT select {
  display: inline-block;
  background: #e6e6e5;
  font-size: inherit;
  border: none;
  box-sizing: border-box;
  padding: 0.2142857143em 0.4285714286em;
}
@media only screen and (max-width: 767px) {
  #CONTACT input:not([type=radio]):not([type=checkbox]),
  #CONTACT textarea,
  #CONTACT select {
    padding: 0.75em;
  }
}
#CONTACT input:not([type=radio]):not([type=checkbox]),
#CONTACT select {
  width: 72.7272727273%;
  height: 1.7142857143em;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT input:not([type=radio]):not([type=checkbox]),
  #CONTACT select {
    height: 3em;
  }
}
#CONTACT select {
  background-image: url(../img/contact/select_ico.png);
  background-repeat: no-repeat;
  background-position: right 0.3571428571em center;
  background-size: 1em auto;
  appearance: none;
}
@media only screen and (max-width: 767px) {
  #CONTACT select {
    background-position: right 0.625em center;
    background-size: 1.75em auto;
  }
}
#CONTACT textarea {
  width: 100%;
  height: 8.8571428571em;
}
@media only screen and (max-width: 767px) {
  #CONTACT textarea {
    width: 100%;
    height: 15.5em;
  }
}
#CONTACT .agree-box {
  font-size: 2.4rem;
  border-top: 1px solid #323333;
  padding: 2.5em 0 0;
}
#CONTACT .agree-box a {
  display: inline;
  color: #54c3f1;
  font-weight: 700;
}
#CONTACT .agree-box a:hover {
  text-decoration: underline;
}
#CONTACT .agree-box__label {
  display: none;
}
#CONTACT .agree-box__checkbox {
  text-align: center;
  margin-top: 2.5em;
}
#CONTACT .agree-box__checkbox input[type=checkbox] {
  position: absolute;
  visibility: hidden;
}
#CONTACT .agree-box__checkbox input[type=checkbox] + .mwform-checkbox-field-text {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  color: #fff;
  font-size: 2.4rem;
  transition: 0.3s;
  border-radius: 1.4166666667em;
  width: 11.6666666667em;
  height: 2.8333333333em;
}
@media only screen and (max-width: 767px) {
  #CONTACT .agree-box__checkbox input[type=checkbox] + .mwform-checkbox-field-text {
    font-size: 3.2rem;
    border-radius: 1.0625em;
    width: 8.75em;
    height: 2.125em;
  }
}
#CONTACT .agree-box__checkbox input[type=checkbox] + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.25em;
  background: #fff;
  transition: 0.3s;
  border-radius: 50%;
  width: 2.25em;
  height: 2.25em;
  margin: auto 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT .agree-box__checkbox input[type=checkbox] + .mwform-checkbox-field-text::before {
    left: 0.1875em;
    width: 1.6875em;
    height: 1.6875em;
  }
}
#CONTACT .agree-box__checkbox input[type=checkbox]:checked + .mwform-checkbox-field-text {
  background: #54c3f1;
}
#CONTACT .agree-box__checkbox input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  left: 9.1666666667em;
}
@media only screen and (max-width: 767px) {
  #CONTACT .agree-box__checkbox input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
    left: 6.875em;
  }
}
#CONTACT .btn-box {
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  align-items: center;
  margin-top: 2.5em;
}
@media only screen and (max-width: 767px) {
  #CONTACT .btn-box {
    font-size: 3.2rem;
    margin-top: 1.875em;
  }
}
#CONTACT .btn {
  background: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: inherit;
  width: 50%;
  height: 3.3333333333em;
}
@media only screen and (max-width: 767px) {
  #CONTACT .btn {
    width: calc(80 * var(--vw));
    height: calc(16 * var(--vw));
  }
}
#CONTACT .btn:hover {
  opacity: 0.65;
}
#CONTACT .btn + .btn {
  margin-top: 2.5%;
}
@media only screen and (max-width: 767px) {
  #CONTACT .btn + .btn {
    margin-top: calc(8 * var(--vw));
  }
}
#CONTACT .btn--submit {
  background: #54c3f1;
  color: #fff;
}
#CONTACT .mw_wp_form .error {
  font-size: 1.8rem;
  margin-top: 0.2777777778em;
}
@media only screen and (max-width: 767px) {
  #CONTACT .mw_wp_form .error {
    font-size: 2.8rem;
    margin-top: 0.1785714286em;
  }
}
#CONTACT .mw_wp_form .agree-box .error {
  text-align: center;
}
#CONTACT .mw_wp_form_confirm .table-contact__title::after {
  display: none;
}
#CONTACT .mw_wp_form_confirm .table-contact__data {
  padding: 3.3333333333% 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT .mw_wp_form_confirm .table-contact__data {
    width: 100%;
    padding: 0 0 calc(2.6666666667 * var(--vw));
  }
}
#CONTACT .mw_wp_form_confirm .agree-box {
  display: flex;
  flex-wrap: wrap;
  font-size: 2.8rem;
  border-bottom: 1px solid #323333;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT .mw_wp_form_confirm .agree-box {
    flex-direction: column;
    font-size: 3.2rem;
  }
}
#CONTACT .mw_wp_form_confirm .agree-box__label {
  display: block;
  font-weight: 700;
  width: 40%;
  padding: 3.3333333333% 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT .mw_wp_form_confirm .agree-box__label {
    width: auto;
    padding: calc(2.6666666667 * var(--vw)) 0;
  }
}
#CONTACT .mw_wp_form_confirm .agree-box__text {
  display: none;
}
#CONTACT .mw_wp_form_confirm .agree-box__checkbox {
  text-align: left;
  width: 60%;
  margin-top: unset;
  padding: 3.3333333333% 0;
}
@media only screen and (max-width: 767px) {
  #CONTACT .mw_wp_form_confirm .agree-box__checkbox {
    width: 100%;
    padding: 0 0 calc(2.6666666667 * var(--vw));
  }
}
#CONTACT .mw_wp_form_complete .sec01 {
  text-align: center;
}

#R_AND_D .sec01 {
  text-align: center;
}
#R_AND_D .catch {
  color: #15a8a0;
  font-size: 6rem;
  line-height: 1.2;
  font-weight: 700;
}
#R_AND_D .lead {
  font-size: 2.5rem;
  line-height: 1.9;
  margin-top: calc(1.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #R_AND_D .lead {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #R_AND_D .lead {
    margin-top: calc(3.2 * var(--vw));
  }
}
#R_AND_D .link-box {
  margin-top: calc(3.8571428571 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #R_AND_D .link-box {
    margin-top: 54px;
  }
}
@media only screen and (max-width: 767px) {
  #R_AND_D .link-box {
    margin-top: calc(7.2 * var(--vw));
  }
}
#R_AND_D .link-box__heading {
  position: relative;
  display: inline-block;
  color: #54c3f1;
  font-size: 3rem;
  line-height: 1.8;
  padding: 0 calc(3.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #R_AND_D .link-box__heading {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  #R_AND_D .link-box__heading {
    padding: 0 calc(6.6666666667 * var(--vw));
  }
}
#R_AND_D .link-box__heading::before, #R_AND_D .link-box__heading::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #54c2f1 transparent transparent transparent;
  margin: auto 0;
}
@media only screen and (min-width: 768px) {
  #R_AND_D .link-box__heading::before, #R_AND_D .link-box__heading::after {
    border-width: calc(1.0714285714 * var(--vw)) calc(1.0714285714 * var(--vw)) 0 calc(1.0714285714 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  #R_AND_D .link-box__heading::before, #R_AND_D .link-box__heading::after {
    border-width: 15px 15px 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  #R_AND_D .link-box__heading::before, #R_AND_D .link-box__heading::after {
    border-width: calc(2 * var(--vw)) calc(2 * var(--vw)) 0 calc(2 * var(--vw));
  }
}
#R_AND_D .link-box__heading::before {
  left: 0;
}
#R_AND_D .link-box__heading::after {
  right: 0;
}
#R_AND_D .link-box__slider {
  position: relative;
  background: #54c3f1;
  box-sizing: border-box;
  width: 86.2068965517%;
  margin: calc(0.7142857143 * var(--vw)) auto 0;
  padding: calc(0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #R_AND_D .link-box__slider {
    margin-top: 10px;
    padding: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #R_AND_D .link-box__slider {
    width: 100%;
    margin-top: calc(1.3333333333 * var(--vw));
    padding: calc(1.3333333333 * var(--vw));
  }
}

#RECRUIT .sec01 .sec_in {
  max-width: 1200px;
}
#RECRUIT .sec__heading {
  font-size: 3rem;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .sec__heading {
    font-size: 3.2rem;
    line-height: 1.5;
  }
}
#RECRUIT .sec__text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: calc(2.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .sec__text {
    margin-top: 36px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .sec__text {
    font-size: 2.4rem;
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#RECRUIT .recruit-box {
  margin-top: calc(5.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-box {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-box {
    margin-top: calc(10.6666666667 * var(--vw));
  }
}
#RECRUIT .recruit-box .row + .row {
  border-top: calc(0.8571428571 * var(--vw)) solid #54C3F1;
  margin-top: calc(6.4285714286 * var(--vw));
  padding-top: calc(6.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-box .row + .row {
    border-top-width: 12px;
    margin-top: 90px;
    padding-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-box .row + .row {
    border-top-width: calc(1.6 * var(--vw));
    margin-top: calc(12 * var(--vw));
    padding-top: calc(12 * var(--vw));
  }
}
#RECRUIT .recruit-box .heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: calc(2.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-box .heading {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-box .heading {
    font-size: 3rem;
    margin-bottom: calc(4.2666666667 * var(--vw));
  }
}
#RECRUIT .recruit-box .text {
  font-size: 2.4rem;
  margin-top: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-box .text {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-box .text {
    font-size: 3rem;
    margin-top: calc(4 * var(--vw));
  }
}
#RECRUIT .recruit-box .textLink {
  display: inline-block;
  color: #54C3F1;
  font-weight: 700;
}
#RECRUIT .recruit-box .bnr {
  width: calc(23.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-box .bnr {
    width: 332px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-box .bnr {
    width: calc(44.2666666667 * var(--vw));
  }
}
#RECRUIT .recruit-list + .recruit-list {
  margin-top: calc(6.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-list + .recruit-list {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-list + .recruit-list {
    margin-top: calc(6.6666666667 * var(--vw));
  }
}
#RECRUIT .recruit-list__term {
  display: inline-flex;
  background: #54c3f1;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.1;
  font-weight: 700;
  padding: calc(0.4285714286 * var(--vw)) calc(1.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-list__term {
    padding: 6px 24px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-list__term {
    font-size: 3rem;
    line-height: 1.5;
    padding: calc(0.8 * var(--vw)) calc(3.2 * var(--vw));
  }
}
#RECRUIT .recruit-list__description {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: calc(2.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .recruit-list__description {
    margin-top: 34px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .recruit-list__description {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: calc(2.6666666667 * var(--vw));
  }
}
#RECRUIT .recruit-list__description > * + * {
  margin-top: 1.4em;
}
#RECRUIT .table {
  font-size: 1.8rem;
  line-height: 1.2;
  border-top: 1px solid #040000;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .table {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
#RECRUIT .table__row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #040000;
}
#RECRUIT .table__term, #RECRUIT .table__description {
  box-sizing: border-box;
  padding: calc(1.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #RECRUIT .table__term, #RECRUIT .table__description {
    padding: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .table__term, #RECRUIT .table__description {
    padding: calc(2.6666666667 * var(--vw));
  }
}
#RECRUIT .table__term {
  background: #eaf6fd;
  width: 15%;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .table__term {
    width: 100%;
  }
}
#RECRUIT .table__description {
  width: 85%;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .table__description {
    width: 100%;
  }
}
#RECRUIT .application__description {
  padding-left: 5em;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .application__description {
    padding: 0;
  }
}
#RECRUIT .address__description {
  padding-left: 6.3em;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .address__description {
    padding: 0;
  }
}
#RECRUIT .note-list__item {
  position: relative;
  padding-left: 1em;
}
#RECRUIT .note-list__item::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

#CSR .activity-list {
  width: 71.5517241379%;
}
@media only screen and (max-width: 767px) {
  #CSR .activity-list {
    width: 100%;
  }
}
#CSR .activity-list + .activity-list {
  margin-top: 7.4137931034%;
}
@media only screen and (max-width: 767px) {
  #CSR .activity-list + .activity-list {
    margin-top: calc(12 * var(--vw));
  }
}
#CSR .activity-list__term {
  display: inline-flex;
  align-items: center;
  background: #54c3f1;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
  padding: calc(0.5 * var(--vw)) calc(1 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #CSR .activity-list__term {
    padding: 7px 14px;
  }
}
@media only screen and (max-width: 767px) {
  #CSR .activity-list__term {
    font-size: 2.8rem;
  }
}
#CSR .activity-list__description {
  display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  line-height: 1.7;
  margin-top: calc(2 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #CSR .activity-list__description {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 767px) {
  #CSR .activity-list__description {
    font-size: 2.4rem;
    margin-top: calc(4 * var(--vw));
  }
}
#CSR .activity-list .column--text {
  position: relative;
  box-sizing: border-box;
  width: 62.6506024096%;
  padding: 0 3.6144578313% 0 0;
}
@media only screen and (max-width: 767px) {
  #CSR .activity-list .column--text {
    padding-bottom: calc(5.3333333333 * var(--vw));
  }
}
#CSR .activity-list .column--text .orn {
  position: absolute;
}
#CSR .activity-list .column--text .orn--01 {
  right: 8.6538461538%;
  bottom: -1%;
  width: 25.7692307692%;
}
#CSR .activity-list .column--text .orn--02 {
  right: 9.6153846154%;
  bottom: 2%;
  width: 26.5384615385%;
}
#CSR .activity-list .column--text .orn--03 {
  right: 6.7307692308%;
  bottom: -18%;
  width: 28.2692307692%;
}
#CSR .activity-list .column--img {
  width: 37.3493975904%;
}
#CSR .activity-list .column--img .img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  #NEWS .u-kv {
    margin-bottom: calc(12.8571428571 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  #NEWS .u-kv {
    margin-bottom: 180px;
  }
}
#NEWS .news-list {
  border-bottom: 1px solid #54C3F1;
}
#NEWS .news-list__item {
  border-top: 1px solid #54C3F1;
}
#NEWS .news-list__item:nth-of-type(even) {
  background: #EAF6FD;
}
#NEWS .news-list__item > a {
  position: relative;
  display: grid;
}
@media only screen and (min-width: 768px) {
  #NEWS .news-list__item > a {
    grid-template-columns: calc(18.5714285714 * var(--vw)) 1fr;
    align-items: center;
    padding: calc(3.5714285714 * var(--vw)) 0;
  }
}
@media only screen and (min-width: 1400px) {
  #NEWS .news-list__item > a {
    grid-template-columns: 260px 1fr;
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .news-list__item > a {
    padding: calc(4 * var(--vw)) calc(10.6666666667 * var(--vw)) calc(4 * var(--vw)) calc(2.6666666667 * var(--vw));
  }
}
#NEWS .news-list__item .date {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 3.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media only screen and (min-width: 768px) {
  #NEWS .news-list__item .date {
    padding: 0 calc(2.8571428571 * var(--vw));
  }
}
@media only screen and (min-width: 1400px) {
  #NEWS .news-list__item .date {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .news-list__item .date {
    padding-bottom: calc(1.3333333333 * var(--vw));
  }
}
#NEWS .news-list__item .txt {
  font-size: 2.8rem;
  line-height: 1.2142857143;
}
#NEWS .news-list__item .ico-arrow {
  position: absolute;
  top: 0;
  right: calc(2.8571428571 * var(--vw));
  bottom: 0;
  background: #54C3F1;
  aspect-ratio: 1;
  border-radius: calc(0.2142857143 * var(--vw));
  width: calc(2.2857142857 * var(--vw));
  margin: auto 0;
}
@media only screen and (min-width: 1400px) {
  #NEWS .news-list__item .ico-arrow {
    right: 40px;
    border-radius: 3px;
    width: 32px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .news-list__item .ico-arrow {
    right: calc(2.6666666667 * var(--vw));
    border-radius: calc(0.8 * var(--vw));
    width: calc(5.3333333333 * var(--vw));
  }
}
#NEWS .news-list__item .ico-arrow::before {
  content: "";
  position: absolute;
  top: calc(0.7142857143 * var(--vw));
  left: calc(0.5714285714 * var(--vw));
  aspect-ratio: 1;
  border-top: calc(0.1428571429 * var(--vw)) solid #fff;
  border-right: calc(0.1428571429 * var(--vw)) solid #fff;
  transform: rotate(45deg);
  width: calc(0.7142857143 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #NEWS .news-list__item .ico-arrow::before {
    top: 10px;
    left: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
    width: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .news-list__item .ico-arrow::before {
    top: calc(1.6 * var(--vw));
    left: calc(1.3333333333 * var(--vw));
    border-top-width: 2px;
    border-right-width: 2px;
    width: calc(1.3333333333 * var(--vw));
  }
}
#NEWS .pagenavi-box {
  text-align: center;
}
#NEWS .wp-pagenavi {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: calc(2.1428571429 * var(--vw));
  margin: calc(2.1428571429 * var(--vw)) auto 0;
  padding: 0 calc(4.2857142857 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #NEWS .wp-pagenavi {
    gap: 30px;
    margin: 30px auto 0;
    padding: 0 calc(4.2857142857 * var(--vw));
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .wp-pagenavi {
    gap: calc(4 * var(--vw));
    margin: calc(8 * var(--vw)) auto 0;
    padding: 0 calc(12 * var(--vw));
  }
}
#NEWS .wp-pagenavi a, #NEWS .wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 500;
  aspect-ratio: 1;
  width: calc(2.1428571429 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #NEWS .wp-pagenavi a, #NEWS .wp-pagenavi span {
    width: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .wp-pagenavi a, #NEWS .wp-pagenavi span {
    width: calc(8 * var(--vw));
  }
}
#NEWS .wp-pagenavi a {
  color: #B3B3B3;
}
#NEWS .wp-pagenavi .previouspostslink,
#NEWS .wp-pagenavi .nextpostslink {
  position: absolute;
  top: 0;
  font-size: 0;
}
#NEWS .wp-pagenavi .previouspostslink::before,
#NEWS .wp-pagenavi .nextpostslink::before {
  content: "";
  aspect-ratio: 1;
  border-top: 2px solid #4D4D4D;
  border-right: 2px solid #4D4D4D;
  width: calc(1.0714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #NEWS .wp-pagenavi .previouspostslink::before,
  #NEWS .wp-pagenavi .nextpostslink::before {
    width: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .wp-pagenavi .previouspostslink::before,
  #NEWS .wp-pagenavi .nextpostslink::before {
    width: calc(2 * var(--vw));
  }
}
#NEWS .wp-pagenavi .previouspostslink {
  left: 0;
}
#NEWS .wp-pagenavi .previouspostslink::before {
  transform: rotate(-135deg);
}
#NEWS .wp-pagenavi .nextpostslink {
  right: 0;
}
#NEWS .wp-pagenavi .nextpostslink::before {
  transform: rotate(45deg);
}
#NEWS .wp-pagenavi .current {
  text-decoration: underline;
}
#NEWS.NEWS-PAGE .article {
  max-width: 800px;
  margin: 0 auto;
}
#NEWS.NEWS-PAGE .article-title {
  color: #54C3F1;
  font-size: 4.2rem;
  line-height: 1.2142857143;
  font-weight: 700;
  text-align: center;
}
#NEWS.NEWS-PAGE .article-date {
  display: block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: calc(1.4285714286 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #NEWS.NEWS-PAGE .article-date {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS.NEWS-PAGE .article-date {
    margin-top: calc(5.3333333333 * var(--vw));
  }
}
#NEWS.NEWS-PAGE .article-content {
  font-size: 2.2rem;
  line-height: 1.8181818182;
  margin-top: calc(4.5714285714 * var(--vw));
}
@media only screen and (min-width: 1400px) {
  #NEWS.NEWS-PAGE .article-content {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS.NEWS-PAGE .article-content {
    margin-top: calc(8.5333333333 * var(--vw));
  }
}
#NEWS.NEWS-PAGE .article-content > * + * {
  margin-top: 1.8em;
}

.gt_float_switcher {
  position: relative !important;
  top: calc(5.7142857143 * var(--vw)) !important;
}
@media only screen and (min-width: 1400px) {
  .gt_float_switcher {
    top: 80px !important;
  }
}
@media only screen and (max-width: 767px) {
  .gt_float_switcher {
    top: calc(0.8 * var(--vw)) !important;
    right: calc(13.3333333333 * var(--vw)) !important;
  }
}

@media only screen and (max-width: 767px) {
  .gt_float_switcher .gt-selected .gt-current-lang {
    padding: calc(1.3333333333 * var(--vw)) calc(4 * var(--vw)) !important;
  }
}/*# sourceMappingURL=style.css.map */