@charset "UTF-8";
/* CSS Document */
/* =============================================================================
 Reset
============================================================================= */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

nav ul, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

ins {
  text-decoration: none; }

ins, mark {
  background-color: #ff9;
  color: #000; }

mark {
  font-style: italic;
  font-weight: 700; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

*, :after, :before {
  box-sizing: border-box; }

button, input[type=button] {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer; }

/* =============================================================================
 variable
============================================================================= */
:root {
  /* .ai */
  --color-base: #5D6970;
  --color-blue: #1A96D5;
  --color-black: #000;
  --color-white: #fff;
  --window-width: 100vw;
  --pc-lr: max(30px,calc(50% - 765px));
  /* 1530 */
  --fs-pc: 1.6rem;
  --fs-sp: 1.4rem;
  --transition-op: opacity ease .3s,visibility ease .3s;
  --transition-trf: transform ease .3s;
  --transition-all: all ease .3s; }

/* =============================================================================
 Fonts
============================================================================= */
html {
  font-size: 62.5%; }

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: var(--fs-pc);
  color: var(--color-base); }

@media screen and (max-width: 767px) {
  body {
    font-size: var(--fs-sp); } }
/* =============================================================================
 Elements
============================================================================= */
/* color setting */
/* link setting */
a {
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

/* image setting */
img {
  max-width: 100%;
  vertical-align: top; }

@media screen and (max-width: 767px) {
  img {
    width: 100%; } }
/* box */
*, *:before, *:after {
  box-sizing: border-box; }

/* cursor */
button {
  cursor: pointer; }

/* =============================================================================
 Responsive Class
============================================================================= */
@media screen and (min-width: 768px) {
  .only-sp {
    display: none; } }
@media screen and (max-width: 767px) {
  .only-pc {
    display: none; } }
/* =============================================================================
 Animation
============================================================================= */
@keyframes pageTitleSlide {
  0% {
    transform: translateX(-120%); }
  100% {
    transform: translateX(0); } }
@keyframes fadeInPageTitle {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes secSlideLeft {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(0); } }
@keyframes secSlideRight {
  0% {
    transform: translateX(100%); }
  100% {
    transform: translateX(0); } }
@keyframes secIsShow {
  0% {
    opacity: 0;
    transform: translateY(3%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
/* =============================================================================
 Base Layout
============================================================================= */
@media screen and (min-width: 768px) {
  #mainArea {
    /*  padding-top: 210px;*/
    padding-top: 160px;
    /*  padding-bottom: 100px;*/
    padding-bottom: 40px; } }
@media screen and (max-width: 767px) {
  #mainArea {
    position: relative;
    z-index: 0;
    padding-top: 90px;
    padding-bottom: 50px; } }

.home #mainArea {
  overflow: hidden; }
  @media screen and (max-width: 767px) {
    .home #mainArea {
      padding-bottom: 30px; } }

@media screen and (min-width: 768px) {
  .anchor {
    margin-top: -160px;
    padding-top: 160px; } }
@media screen and (max-width: 767px) {
  .anchor {
    margin-top: -90px;
    padding-top: 90px; } }

/* =============================================================================
 common header
============================================================================= */
#header {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8); }

#header .headerInner {
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative; }

#header .siteLogo {
  width: 150px; }

#header .colorBtn {
  font-size: 1.6rem;
  text-decoration: none;
  text-align: center; }

@media screen and (min-width: 1111px) {
  #header .headerInner {
    padding: 0;
    align-items: flex-end; } }
@media screen and (min-width: 768px) {
  #header {
    padding: 0 var(--pc-lr);
    height: 210px;
    height: 160px; }

  #header .headerInner {
    align-items: flex-end;
    height: 110px;
    column-gap: calc(10 / 153* 100%); }

  #header .colorBtn {
    padding: 0.75em 1em;
    min-width: 14rem; } }
@media screen and (max-width: 767px) {
  #header {
    height: 90px; }

  #header.naviOpen {
    background-color: white; }

  #header .headerInner {
    position: relative;
    align-items: center;
    padding: 0 calc(20/400*100vw); }

  #header .siteLogo {
    width: 76px; }

  #header .linkContact {
    width: calc(350/390*100vw);
    margin: 0 auto;
    text-align: center; }

  #header .colorBtn {
    padding: 0.8em 0.8em;
    font-size: 1.4rem;
    text-decoration: none;
    width: 100%; }

  #globalNav {
    z-index: 100;
    width: 100vw;
    height: calc(100vh - 90px);
    position: absolute;
    top: 90px;
    left: 0;
    display: none;
    background-color: white; }

  .naviOpen #globalNav {
    display: block; } }
/* navi */
.naviBtn {
  position: absolute;
  right: 0;
  top: 0; }

.naviBtn .naviBtnInner {
  width: 90px;
  height: 90px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer; }

.naviBtn .naviBtnInner {
  position: relative; }

.hamburger-menu__bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #5C686F;
  position: absolute;
  left: 50%;
  transition: all .3s linear;
  transform: translateX(-50%); }

.hamburger-menu__bar:first-child {
  top: 32px; }

.hamburger-menu__bar:nth-child(2) {
  top: 44px; }

.hamburger-menu__bar:last-child {
  top: 56px; }

.naviOpen .hamburger-menu__bar {
  top: 50%; }

.naviOpen .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg); }

.naviOpen .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg); }

.naviOpen .hamburger-menu__bar:nth-child(2) {
  display: none; }

.mainNav a {
  font-size: 16px;
  font-weight: 500;
  color: #5D6970;
  border: none;
  text-decoration: none;
  line-height: 1.46; }

@media (hover: hover) {
  .mainNav a:hover {
    border-bottom: #5D6970 1px solid; } }
@media screen and (min-width: 768px) {
  #globalNav {
    flex: 1;
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 2em; }

  #globalNav .globalNavInner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }

  .mainNav {
    display: flex;
    gap: 0 2em;
    flex: 1;
    flex-wrap: wrap;
    position: relative;
    line-height: 2;
    align-items: flex-end;
    font-size: 1.6rem; }

  .mainNav li {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500; }

  .addNav {
    width: 190px;
    display: flex;
    justify-content: space-between; }

  .addNav .linkInsta {
    width: 25px;
    align-items: center;
    display: flex; }

  .addNav .linkContact {
    width: 140px;
    text-align: right; } }
@media screen and (max-width: 767px) {
  .mainNav {
    width: calc(350/390*100vw);
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7em 0; }

  .mainNav li {
    text-align: left; }

  .mainNav a {
    padding: 0.4em 0 0.8em;
    display: block;
    font-size: 1.4rem; }

  #header .mainNav a {
    padding: 0.4em 0 0.6em;
    border-bottom: #238DC6 1px solid;
    font-size: 1.3rem;
    font-weight: 400; }

  .addNav {
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 4em; }

  .linkInsta {
    width: calc(28/375*100vw);
    position: absolute;
    top: -60px;
    right: 100px; } }
/* =============================================================================
 common footer
============================================================================= */
#footer {
  padding: 80px var(--pc-lr) 0;
  position: relative; }

.footerInner {
  padding: 50px 0;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  border-top: 1px solid #7b848a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 120px; }

.footLogo {
  width: 130px;
  margin-bottom: 18px; }

.footAdress {
  font-size: 12px;
  font-weight: 400;
  color: #5C686F;
  line-height: 1.64; }

.copyright {
  margin-top: 15px;
  line-height: 1.5;
  color: #5C686F;
  font-size: 12px;
  text-align: right; }

@media screen and (min-width: 768px) {
  .footerInner {
    align-items: flex-start; }

  #footNav .mainNav {
    padding-top: 35px; } }
@media screen and (max-width: 767px) {
  #footer {
    padding: 0 calc(20/390*100vw) 30px;
    position: relative; }

  .footerInner {
    padding: 2rem 0;
    margin: 0 auto;
    border-top: 1px #5D6970 solid;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: calc(40/390*100vw) 0; }

  .footerInner .mainNav {
    padding-top: 0;
    gap: 0;
    justify-content: flex-start; }

  .footerInner .mainNav li {
    text-align: left;
    font-size: calc(13/375*100vw); }

  .footerInner .mainNav li a {
    padding: 1rem 0; }

  .footLogo {
    width: calc(108/390*100vw);
    margin-bottom: calc(16/390*100vw); }

  .footAdress {
    font-size: calc(12/390*100vw); }

  .footAdress a {
    color: #5C686F !important;
    text-decoration: underline !important; }

  .copyright {
    position: absolute;
    bottom: 25px;
    left: calc(20/390*100vw);
    font-size: calc(10/390*100vw); } }
@media screen and (min-width: 768px) {
  .pageTopLink {
    display: none !important; } }
@media screen and (max-width: 767px) {
  .pageTopLink {
    display: block;
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    z-index: 200; } }

.pageTopBtn {
  width: 35px;
  height: 35px;
  background: url("../images/pagetoplink.svg") center center no-repeat;
  background-size: 35px auto; }

/* =============================================================================
 Common Block Styles
============================================================================= */
/* side navi */
/* pagetop */
.js-fadeIn {
  opacity: 0;
  transition: 2s; }

.js-fadeIn.is-show {
  opacity: 1; }

/* =============================================================================
 Slick (TAB)
============================================================================= */
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 40px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center; }

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-base);
  border-radius: 50%;
  content: '';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black; }

.tabmain__list.slick-initialized {
  position: relative; }

.c-tabarea .slide-arrow {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 100rem;
  position: absolute;
  top: calc( 50% - 22px );
  z-index: 1; }
  @media screen and (max-width: 767px) {
    .c-tabarea .slide-arrow {
      width: 30px;
      height: 30px;
      top: calc( 50% - 15px ); } }
.c-tabarea .prev-arrow {
  left: 0;
  background: url("../images/arrow_left.png") center center no-repeat;
  background-size: 44px auto; }
  @media screen and (max-width: 767px) {
    .c-tabarea .prev-arrow {
      background-size: 30px auto; } }
.c-tabarea .next-arrow {
  right: 0;
  background: url("../images/arrow_right.png") center center no-repeat;
  background-size: 44px auto; }
  @media screen and (max-width: 767px) {
    .c-tabarea .next-arrow {
      background-size: 30px auto; } }
@media screen and (max-width: 767px) {
  .c-tabarea .tabmain__list.slick-initialized .prev-arrow {
    left: -15px; } }
@media screen and (max-width: 767px) {
  .c-tabarea .tabmain__list.slick-initialized .next-arrow {
    right: -15px; } }

/* =============================================================================
 Page Common
============================================================================= */
.pageHeader {
  margin-top: 20px;
  margin-bottom: 45px;
  position: relative; }
  @media screen and (max-width: 767px) {
    .pageHeader {
      margin-top: calc(40/750*100vw);
      margin-bottom: calc(40/750*100vw); } }

@media screen and (min-width: 768px) {
  .c-pagetitleBlock {
    padding-left: var(--pc-lr);
    padding-right: var(--pc-lr); } }
@media screen and (max-width: 767px) {
  .c-pagetitleBlock {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw); } }

.c-pagetitle {
  color: var(--color-blue);
  font-weight: 500; }
  @media screen and (max-width: 767px) {
    .c-pagetitle {
      font-size: 1.4rem; } }

.c-pagetitle .en {
  margin-bottom: 0;
  display: block;
  font-size: 3rem;
  line-height: 1.2;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .c-pagetitle .en {
      padding-left: 0;
      display: inline-block;
      /*    margin-bottom: 0.2em;*/
      margin-bottom: 0;
      font-size: 1.8rem; } }

.c-pagetitle .ja {
  display: block;
  font-size: 1.8rem;
  line-height: 2;
  opacity: 0; }
  @media screen and (max-width: 767px) {
    .c-pagetitle .ja {
      padding-left: 0;
      font-size: 1rem;
      line-height: 1.5; } }

.is-inview .c-pagetitle {
  /*      animation: pageTitleSlide 0.9s ease-out 0.3s forwards;*/ }

.is-inview .c-pagetitle .en,
.is-inview .c-pagetitle .ja {
  animation: fadeInPageTitle 0.6s ease-out 0.3s forwards; }

.pageHeaderVisual img {
  width: 100%; }

.pageContents {
  opacity: 0; }

.pageContents.is-show {
  opacity: 1; }

body.scrolling .pageContents {
  opacity: 1; }

.pageHeader.is-inview + .pageContents {
  /*    animation: secIsShow 1.2s ease-out 1.8s forwards;*/
  animation: secIsShow 0.9s ease-out 0.3s forwards; }

.pageContents .article, .pageContents .section {
  padding: 0 var(--pc-lr); }
  @media screen and (max-width: 767px) {
    .pageContents .article, .pageContents .section {
      padding-left: calc(20 / 375* 100vw);
      padding-right: calc(20 / 375* 100vw); } }

/* --------------------------------------------
GRID
-------------------------------------------- */
.section__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10rem calc(50 / 1530* 100%); }
  @media screen and (max-width: 767px) {
    .section__grid {
      flex-direction: column;
      gap: calc(50 / 750* 100vw) 0; } }
  .section__grid > * {
    width: calc(740 / 1530* 100%); }
    @media screen and (max-width: 767px) {
      .section__grid > * {
        width: 100%; } }

/* --------------------------------------------
ARTICLE
-------------------------------------------- */
.article section {
  margin-bottom: 9rem; }
  @media screen and (max-width: 767px) {
    .article section {
      margin-bottom: 3rem; } }
  .article section:last-of-type {
    margin-bottom: 0; }
.article .section__title {
  margin: 3rem 0;
  padding: 0 0 1rem;
  border-bottom: 1px var(--color-blue) solid;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-blue); }
  @media screen and (max-width: 767px) {
    .article .section__title {
      margin: 1rem 0;
      padding: 0 0 1rem;
      font-size: 1.6rem; } }
.article p {
  font-size: 1.6rem;
  line-height: 2; }
  @media screen and (max-width: 767px) {
    .article p {
      font-size: 1.4rem;
      line-height: 2; } }
.article td {
  font-size: 1.6rem;
  line-height: 2; }
  @media screen and (max-width: 767px) {
    .article td {
      font-size: 1.4rem;
      line-height: 2; } }
.article ul, .article ol {
  font-size: 1.6rem;
  line-height: 2; }
  @media screen and (max-width: 767px) {
    .article ul, .article ol {
      font-size: 1.4rem;
      line-height: 2; } }
.article ol {
  padding-left: 1.25em; }
.article p + ul,
.article p + ol {
  margin-top: 2em; }
.article .c-ol--a {
  list-style: lower-alpha; }

/* --------------------------------------------
BTN
-------------------------------------------- */
.c-btn--text {
  padding: 0.7em 1em;
  /*  font-size: 1.6rem;*/
  font-weight: 600;
  text-align: left;
  display: inline-block;
  background: linear-gradient(120deg, #7ac3e7 0%, #238dc6 100%);
  color: #fff;
  text-decoration: none;
  transition: .2s;
  border-radius: 0.7rem; }
  .c-btn--text:hover {
    opacity: 0.8;
    text-decoration: none; }

.c-btn.--blank:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 20px;
  height: 16px;
  background: url("../images/ico_blank.svg") left top no-repeat;
  background-size: 20px auto; }
  @media screen and (max-width: 767px) {
    .c-btn.--blank:after {
      width: 17px;
      height: 14px;
      background-size: 17px auto; } }

/* --------------------------------------------
MV
-------------------------------------------- */
.mvArea {
  max-width: 168rem;
  margin: 0 auto; }
  .mvArea .mv {
    position: relative; }
  @media screen and (min-width: 768px) {
    .mvArea .mv__headline {
      display: none; } }
  @media screen and (max-width: 767px) {
    .mvArea .mv__headline {
      position: absolute;
      bottom: 10px;
      right: 10px;
      color: #fff;
      font-size: 1.8rem;
      line-height: 1.5; } }

/* --------------------------------------------
PAGEVISUAL
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .c-pagevisual {
    padding-left: var(--pc-lr);
    padding-right: var(--pc-lr); } }
.c-pagevisual img {
  width: 100%; }

/* --------------------------------------------
TAB MODULE
-------------------------------------------- */
.c-tabarea {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  justify-content: space-between; }
  @media screen and (min-width: 768px) {
    .c-tabarea {
      flex-direction: row;
      column-gap: calc( 5 / 138 * 100% ); } }
  @media screen and (max-width: 767px) {
    .c-tabarea {
      flex-direction: column; } }

@media screen and (min-width: 768px) {
  .c-tabmain {
    width: calc( 57 / 138 * 100% ); } }
@media screen and (max-width: 767px) {
  .c-tabmain {
    margin-bottom: 2rem; } }

.c-tabmenu {
  /*  flex: 1;*/ }
  @media screen and (min-width: 768px) {
    .c-tabmenu {
      width: calc(76 / 138 * 100%); } }
  .c-tabmenu .slick-list {
    height: auto !important; }
  .c-tabmenu .slick-track {
    height: auto !important;
    transform: unset !important; }
  .c-tabmenu .slick-slide {
    margin-bottom: 3rem;
    width: 100% !important;
    font-size: 1.8rem;
    transition: all .3s;
    line-height: 1; }
    @media screen and (max-width: 767px) {
      .c-tabmenu .slick-slide {
        margin-bottom: 2rem;
        font-size: 1.4rem; } }
    .c-tabmenu .slick-slide.slick-current {
      font-size: 2.4rem;
      font-weight: 500;
      color: var(--color-blue); }
      @media screen and (max-width: 767px) {
        .c-tabmenu .slick-slide.slick-current {
          font-size: 2rem; } }
    @media screen and (max-width: 767px) {
      .c-tabmenu .slick-slide:last-of-type {
        margin-bottom: 0; } }
  .c-tabmenu .btnArea {
    margin-top: 2rem !important; }

@media screen and (min-width: 768px) {
  .tabmain__list--equipment .slide-arrow {
    display: none !important; } }
.tabmain__list--equipment .image img {
  border-radius: 30px; }
  @media screen and (max-width: 767px) {
    .tabmain__list--equipment .image img {
      border-radius: 15px; } }

/* --------------------------------------------
CATALOG
-------------------------------------------- */
.c-cataloglist a {
  color: #5D6970; }
.c-cataloglist .caption {
  margin-top: 1em; }
.c-cataloglist img {
  width: 100%;
  border-radius: 15px; }
  @media screen and (max-width: 767px) {
    .c-cataloglist img {
      border-radius: 10px; } }

@media screen and (max-width: 767px) {
  .c-cataloglist__item {
    width: 165px; } }

.c-cataloglist > .c-cataloglist__item {
  width: min(calc((287 / 1424) * (100vw - 176px)), 287px); }

.c-cataloglist > .c-cataloglist__item:nth-child(n+2) {
  display: none; }

/* --------------------------------------------

-------------------------------------------- */
.c-media {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  column-gap: calc(50 / 1530 * 100%);
  margin-bottom: 5rem; }
  @media screen and (max-width: 767px) {
    .c-media {
      flex-direction: column; } }
  .c-media:last-child {
    margin-bottom: 0; }

@media screen and (min-width: 768px) {
  .c-media__thumbnail {
    width: calc(565 / 1530 * 100%); } }
@media screen and (max-width: 767px) {
  .c-media__thumbnail {
    margin-bottom: 1.5rem; } }

.c-media__content {
  flex: 1; }

/* --------------------------------------------

-------------------------------------------- */
@media screen and (min-width: 768px) {
  .c-cards .slick-list {
    overflow: visible; } }

@media screen and (min-width: 768px) {
  .c-card {
    margin-right: 5rem;
    max-width: 74rem;
    width: calc(740 / 1530 * 100vw); } }

@media screen and (max-width: 767px) {
  .c-card__image {
    margin-bottom: 1rem; } }

.c-card__label {
  position: relative;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(75/30); }
  @media screen and (max-width: 767px) {
    .c-card__label {
      font-size: 1.8rem;
      line-height: calc(38/18); } }
  .c-card__label:before {
    transition: all .5s;
    content: '';
    display: inline-block;
    vertical-align: -6px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    background: url("../images/btn_arrow--blue.svg") left top no-repeat;
    background-size: 100% auto; }
    @media screen and (max-width: 767px) {
      .c-card__label:before {
        vertical-align: -6px;
        width: 26px;
        height: 26px;
        background-size: 100% auto; } }

.c-card.open .c-card__label:before {
  transform: rotate(180deg); }

.c-card__text {
  line-height: calc(38/18); }

/* --------------------------------------------
NEWS MODULE
-------------------------------------------- */
ul.newsList {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px 50px; }

ul.newsList li {
  width: 100%; }

dl.newsLead {
  width: 100%;
  padding-bottom: 0.6em;
  border-bottom: #3e9bcd 1px solid;
  position: relative; }

dl.newsLead:after {
  content: "";
  width: 14px;
  height: 14px;
  margin: auto 0;
  display: block;
  border-top: #3e9bcd 1px solid;
  border-right: #3e9bcd 1px solid;
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  transform: rotate(135deg);
  transition: all .3s; }

.open dl.newsLead:after {
  top: 1em;
  transform: rotate(-45deg); }

dl.newsLead dt.date {
  margin-bottom: 0.6em;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-blue); }

dl.newsLead dd.summary {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.64;
  color: var(--color-base); }

@media screen and (max-width: 767px) {
  ul.newsList {
    margin-bottom: calc(36/375*100vw);
    gap: calc(30/375*100vw) 0; }

  dl.newsLead {
    padding-bottom: 0.6em; }

  dl.newsLead:after {
    width: 10px;
    height: 10px;
    right: 4px; }

  dl.newsLead dt.date {
    margin-bottom: 0.5em;
    font-size: 1.4rem; }

  dl.newsLead dd.summary {
    font-size: 1.2rem; } }
/* --------------------------------------------
ARTICLE VISUAL
-------------------------------------------- */
.c-visual--article {
  position: relative; }
  @media screen and (min-width: 768px) {
    .c-visual--article {
      margin-bottom: 8rem;
      min-height: calc(554/1530*100%); } }
  @media screen and (max-width: 767px) {
    .c-visual--article {
      margin-bottom: 4rem;
      min-height: calc(400/1530*100%); } }
  .c-visual--article .c-visual__headline {
    line-height: 1.5;
    padding: 45px 50px;
    background: #fff;
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 99.97%); }
    @media screen and (min-width: 768px) {
      .c-visual--article .c-visual__headline {
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0; } }
    @media screen and (max-width: 767px) {
      .c-visual--article .c-visual__headline {
             /*
position: relative;
z-index: 2;
padding: 15px 20px;*/
        min-height: calc(554/1530*100%);
        padding: 10px 10px;
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0; } }
    .c-visual--article .c-visual__headline h2 {
      font-size: 3rem;
      font-weight: normal; }
      @media screen and (max-width: 767px) {
        .c-visual--article .c-visual__headline h2 {
          font-size: 1.2rem; } }
    @media screen and (min-width: 768px) {
      .c-visual--article .c-visual__headline p {
        line-height: inherit; } }
    @media screen and (max-width: 767px) {
      .c-visual--article .c-visual__headline p {
        font-size: 1rem;
        line-height: 2; } }
  @media screen and (max-width: 767px) {
    .c-visual--article .c-visual__image {
      /*    position: absolute;
          z-index: 1;
          top: 0;
          left: 0;*/ } }

/* --------------------------------------------
HEADLINE SECTION
-------------------------------------------- */
.c-heading--headline {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  font-size: 3rem;
  font-weight: normal;
  line-height: calc(8/4); }
  @media screen and (max-width: 767px) {
    .c-heading--headline {
      margin-top: 1em;
      margin-bottom: 1.5rem;
      font-size: 2rem;
      line-height: calc(33 / 20); } }

/* --------------------------------------------
CARD TILE
-------------------------------------------- */
.c-card--tile__label {
  position: relative;
  margin-top: 0.6em;
  margin-bottom: 0.4em;
  font-size: 2rem;
  font-weight: 500;
  line-height: calc(36/24); }
  @media screen and (max-width: 767px) {
    .c-card--tile__label {
      font-size: 1.8rem; } }

/* --------------------------------------------
CARD ACCORDION
-------------------------------------------- */
.c-card--acc .c-card--tile__label {
  margin-bottom: 0; }
  .c-card--acc .c-card--tile__label:before {
    transition: all .5s;
    content: '';
    display: inline-block;
    vertical-align: -10px;
    margin-right: 10px;
    width: 45px;
    height: 45px;
    background: url("../images/btn_arrow--blue.svg") left top no-repeat;
    background-size: 100% auto; }
    @media screen and (max-width: 767px) {
      .c-card--acc .c-card--tile__label:before {
        width: 34px;
        height: 34px;
        background-size: 100% auto; } }

.c-card--acc.open .c-card--tile__label:before {
  transform: rotate(180deg); }

.c-card--tile__content.c-card--acc__content {
  padding: 5rem; }
  @media screen and (max-width: 767px) {
    .c-card--tile__content.c-card--acc__content {
      padding: 2rem; } }

/* MATERIALS */
.c-cards--secondary {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  column-gap: calc( 50 / 637 * 100% );
  row-gap: 5rem; }
  @media screen and (max-width: 767px) {
    .c-cards--secondary {
      gap: 1rem; } }
  @media screen and (min-width: 768px) {
    .c-cards--secondary .c-card--secondary {
      width: calc( 50% - calc( 25 / 637 * 100% ) ); } }
  @media screen and (max-width: 767px) {
    .c-cards--secondary .c-card--secondary {
      padding: 1rem 0;
      width: calc( 25% - calc( 1rem * 3 / 4 ) ); } }
  .c-cards--secondary .c-card--secondary .c-card--secondary__label {
    margin-top: .75em; }

/* --------------------------------------------
PAGER
-------------------------------------------- */
.pagenation {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 0.5em; }

.pagenation a,
.pagenation span {
  width: 1.8em;
  height: 1.8em;
  border-radius: 5px;
  text-align: center;
  line-height: 1.8em;
  display: inline-block;
  font-size: 1.8rem;
  color: #5C686F;
  background-color: #f7f7f8;
  position: relative;
  text-decoration: none; }

.pagenation .current {
  background: #7ac3e7;
  background: linear-gradient(120deg, #7ac3e7 0%, #238dc6 100%);
  color: #fff; }

.pagenation .prev,
.pagenation .next {
  text-indent: -9999em;
  background-color: inherit; }

.pagenation .prev:after {
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  display: block;
  border-top: #5C686F 1px solid;
  border-right: #5C686F 1px solid;
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.pagenation .next:after {
  content: '';
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  display: block;
  border-top: #5C686F 1px solid;
  border-right: #5C686F 1px solid;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

@media (hover: hover) {
  .pagenation a:hover {
    opacity: .6;
    text-decoration: none; } }
@media screen and (max-width: 767px) {
  .pagenation {
    margin-top: calc(100/750*100vw); }

  .pagenation a {
    font-size: 1.6rem; } }
.newsList + .pagenation {
  margin-top: 10rem; }

@media screen and (max-width: 767px) {
  .newsList + .pagenation {
    margin-top: 5rem; } }
/* =============================================================================
Page Styles
============================================================================= */
/* --------------------------------------------
ABOUT
-------------------------------------------- */
.article--about .c-heading--headline {
  color: #1A96D5;
  font-weight: 500; }
  @media screen and (min-width: 768px) {
    .article--about .c-heading--headline {
      margin: 12rem 0;
      font-size: 3.2rem;
      line-height: calc(46/37); } }
  @media screen and (max-width: 767px) {
    .article--about .c-heading--headline {
      margin: 3.5rem 0;
      font-size: 2.2rem;
      line-height: calc(30/24); } }
  .article--about .c-heading--headline span {
    display: block; }
  .article--about .c-heading--headline .ja {
    margin-top: 1rem; }
    @media screen and (min-width: 768px) {
      .article--about .c-heading--headline .ja {
        font-size: 2.2rem; } }
    @media screen and (max-width: 767px) {
      .article--about .c-heading--headline .ja {
        font-size: 1.5rem; } }

/* --------------------------------------------
COMPANY
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .article--company {
    /*    margin-top: 18rem;*/ } }
@media screen and (max-width: 767px) {
  .article--company {
    margin-top: 3.5rem; } }
.article--company .section__title {
  color: var(--color-base); }
  @media screen and (min-width: 768px) {
    .article--company .section__title {
      margin-bottom: 5rem; } }
.article--company p {
  margin-bottom: 2em; }
  @media screen and (max-width: 767px) {
    .article--company p {
      margin-bottom: 1em; } }
.article--company span {
  font-weight: 500; }
@media screen and (max-width: 767px) {
  .article--company a {
    color: #5C686F;
    text-decoration: underline; } }
@media screen and (max-width: 767px) {
  .article--company a:hover {
    text-decoration: none; } }

.c-mapblock {
  margin-bottom: 3rem; }
  .c-mapblock:last-child {
    margin-bottom: 0; }
  .c-mapblock .map {
    position: relative;
    width: 100%;
    padding-top: 37.43%;
    height: 0; }
    @media screen and (max-width: 767px) {
      .c-mapblock .map {
        padding-top: 50%; } }
  .c-mapblock .map iframe {
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .c-mapblock .caption {
    margin-top: 1rem;
    color: #5D6970;
    font-size: 1.4rem; }

/* --------------------------------------------
PRODUCTS
-------------------------------------------- */
@media screen and (max-width: 767px) {
  .pageHeader--products {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 0;
    box-sizing: content-box; } }

.catNav {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  line-height: 2;
  align-items: flex-end;
  font-size: 1.6rem; }
  @media screen and (min-width: 768px) {
    .catNav {
      gap: 0 1.2em;
      padding-right: 1em;
      position: absolute;
      right: var(--pc-lr);
      bottom: 0; } }
  @media screen and (max-width: 767px) {
    .catNav {
      /*  position: absolute;
        left: calc(20 / 375* 100vw);
        bottom: 0;*/
      margin-top: 4rem;
      padding-left: calc(20 / 375 * 100vw);
      padding-right: calc(20 / 375 * 100vw);
      gap: 0 1em;
      font-size: 1.2rem; } }
  .catNav li {
    margin: 0;
    font-weight: 500;
    line-height: 1.46; }
    @media screen and (min-width: 768px) {
      .catNav li {
        font-size: 1.6rem; } }
    @media screen and (max-width: 767px) {
      .catNav li {
        font-size: 1.2rem; } }
  .catNav a {
    color: var(--color-base);
    border: none;
    text-decoration: none; }
  .catNav .current a,
  .catNav a:hover {
    border-bottom: #5D6970 1px solid; }

.c-products {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; }
  @media screen and (min-width: 768px) {
    .c-products {
      gap: 50px calc(50 / 1530* 100%); } }
  @media screen and (max-width: 767px) {
    .c-products {
      gap: 35px calc(40/750*100vw); } }

@media screen and (min-width: 768px) {
  .c-products__item {
    width: calc(265 / 1530* 100%); } }
@media screen and (max-width: 767px) {
  .c-products__item {
    width: calc( 50% - calc(20/750*100vw) ); } }
.c-products__item a, .c-products__item a:hover, .c-products__item a:active {
  color: var(--color-base);
  text-decoration: none;
  transition: 0.4s; }
.c-products__item a:hover {
  opacity: 0.6; }
.c-products__item span {
  display: block; }
.c-products__item .label {
  margin-top: 1em; }
.c-products__item img {
  border-radius: 10px; }

.section.manufacturer {
  background: linear-gradient(135deg, rgba(198, 199, 200, 0.1) 0%, rgba(136, 135, 135, 0.1) 41.53%, rgba(83, 79, 79, 0.1) 81.02%, rgba(62, 58, 57, 0.1) 100%);
  opacity: 0; }
  .section.manufacturer.is-inview {
    animation: secIsShow 0.6s ease-out 0.3s forwards; }
  @media screen and (min-width: 768px) {
    .section.manufacturer {
      margin-top: 5rem;
      padding-top: 5rem;
      padding-bottom: 5rem; } }
  @media screen and (max-width: 767px) {
    .section.manufacturer {
      margin-top: 4rem;
      padding-top: 2rem;
      padding-bottom: 2rem; } }
  .section.manufacturer .c-heading--headline {
    color: #1A96D5;
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .section.manufacturer .c-heading--headline {
        margin: 0 0 3rem 0;
        font-size: 3.2rem;
        line-height: calc(46/37); } }
    @media screen and (max-width: 767px) {
      .section.manufacturer .c-heading--headline {
        margin: 2rem 0 4rem 0;
        font-size: 1.8rem;
        line-height: calc(30/24); } }
    .section.manufacturer .c-heading--headline span {
      display: block; }
    .section.manufacturer .c-heading--headline .ja {
      margin-top: 1rem; }
      @media screen and (min-width: 768px) {
        .section.manufacturer .c-heading--headline .ja {
          font-size: 2rem; } }
      @media screen and (max-width: 767px) {
        .section.manufacturer .c-heading--headline .ja {
          font-size: 1.2rem; } }
    @media screen and (min-width: 768px) {
      .section.manufacturer .c-heading--headline .ja small {
        font-size: 1.6rem; } }
  .section.manufacturer .c-note {
    margin-bottom: 5rem;
    color: #1A96D5;
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .section.manufacturer .c-note {
        font-size: 2.2rem; } }
    @media screen and (max-width: 767px) {
      .section.manufacturer .c-note {
        display: none; } }
  .section.manufacturer .c-manufacturer {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px; }
    @media screen and (max-width: 767px) {
      .section.manufacturer .c-manufacturer {
        gap: 20px; } }
    .section.manufacturer .c-manufacturer > * {
      position: relative;
      display: flex;
      align-items: center;
      background: #fff;
      color: var(--color-base);
      text-decoration: none;
      transition: 0.4s; }
      @media screen and (min-width: 768px) {
        .section.manufacturer .c-manufacturer > * {
          border-radius: 10px;
          justify-content: center;
          padding: 1em;
          width: calc(20% - calc( 80px / 5 ) );
          aspect-ratio: 29/6;
          font-size: 1.6rem; } }
      @media screen and (max-width: 767px) {
        .section.manufacturer .c-manufacturer > * {
          border-radius: 8px;
          justify-content: flex-start;
          padding: 1.5em 1em;
          width: calc(50% - calc( 25px / 2 ) );
          font-size: 1.2rem; } }
      .section.manufacturer .c-manufacturer > * span {
        padding-right: 15px; }
    .section.manufacturer .c-manufacturer > a:hover {
      opacity: 0.6; }
    .section.manufacturer .c-manufacturer > a:after {
      content: "";
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
      @media screen and (min-width: 768px) {
        .section.manufacturer .c-manufacturer > a:after {
          right: 15px;
          width: 10px;
          height: 13px;
          background: url("../images/product/arrow.svg") center center no-repeat;
          background-size: 10px auto; } }
      @media screen and (max-width: 767px) {
        .section.manufacturer .c-manufacturer > a:after {
          right: 10px;
          width: 10px;
          height: 13px;
          background: url("../images/product/arrow.svg") center center no-repeat;
          background-size: 10px auto; } }

/* --------------------------------------------
PRODUCTS DETAIL
-------------------------------------------- */
@media screen and (min-width: 768px) {
  .pageContents--productDetail {
    margin-top: 2rem; } }
@media screen and (max-width: 767px) {
  .pageContents--productDetail {
    margin-top: 4rem; } }
.pageContents--productDetail .section__title {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 500; }
.pageContents--productDetail .btnArea {
  margin: 10rem auto 5rem;
  display: flex;
  justify-content: center; }
  @media screen and (max-width: 767px) {
    .pageContents--productDetail .btnArea {
      margin: 5rem auto 5rem; } }
.pageContents--productDetail .colorBtn {
  width: 34.5rem;
  text-align: center;
  color: #fff;
  text-decoration: none; }
  @media screen and (max-width: 767px) {
    .pageContents--productDetail .colorBtn {
      padding: 0.9em 1em;
      width: 50%; } }

.c-product-detail {
  margin-bottom: 5rem;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  column-gap: calc(50 / 1530 * 100%); }
  @media screen and (max-width: 767px) {
    .c-product-detail {
      flex-direction: column; } }

.c-product-detail__image {
  width: calc(575 / 1530 * 100%); }
  @media screen and (max-width: 767px) {
    .c-product-detail__image {
      margin-bottom: 3rem;
      width: 100%;
      text-align: center; } }
  .c-product-detail__image img {
    border-radius: 20px; }

.c-product-detail__main {
  flex: 1;
  position: relative; }
  @media screen and (min-width: 768px) {
    .c-product-detail__main {
      padding-bottom: 5.5rem; } }
  .c-product-detail__main h1 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #1A96D5;
    font-weight: 500; }
    @media screen and (max-width: 767px) {
      .c-product-detail__main h1 {
        font-size: 1.6rem; } }
  .c-product-detail__main p {
    font-size: 1.6rem;
    line-height: calc(32/16); }
    @media screen and (max-width: 767px) {
      .c-product-detail__main p {
        font-size: 1.4rem; } }
  .c-product-detail__main div a {
    color: #1A96D5;
    text-decoration: underline; }
    .c-product-detail__main div a:hover {
      text-decoration: none; }
  @media screen and (min-width: 768px) {
    .c-product-detail__main .btnArea {
      margin: 0;
      position: absolute;
      bottom: 0;
      right: 0; } }
  @media screen and (min-width: 768px) {
    .c-product-detail__main .colorBtn {
      width: 24.5rem; } }
  .c-product-detail__main .back {
    margin-top: 4.5rem;
    font-size: 1.8rem;
    text-align: right; }
    @media screen and (max-width: 767px) {
      .c-product-detail__main .back {
        font-size: 1.4rem; } }
  .c-product-detail__main .back a {
    color: var(--color-base);
    display: inline-block;
    text-decoration: none;
    padding-bottom: 1rem;
    border-bottom: 1px var(--color-base) solid;
    transition: 0.2s; }
    .c-product-detail__main .back a:hover {
      border-bottom: none;
      text-decoration: none; }

/* --------------------------------------------
NEWS
-------------------------------------------- */
.newsCont {
  padding-top: 40px;
  display: flex;
  gap: 0 calc(50/1530*100%); }

.newsCont .text {
  width: 100%; }

.newsCont .text p {
  font-size: 1.6rem;
  line-height: calc(40/16);
  font-weight: 400; }

.newsCont .text a {
  color: #1A96D5; }

.newsCont .text p > a {
  border: none;
  text-decoration: underline; }

.newsCont .text p > a:hover {
  text-decoration: none; }

.newsCont .img {
  width: 100%;
  max-width: 520px; }

.newsCont .img img {
  border-radius: 25px; }

@media screen and (max-width: 767px) {
  .newsCont {
    padding-top: calc(24/750*100vw);
    flex-direction: column;
    gap: calc(12/750*100vw) 0; }

  .newsCont .text p {
    font-size: 1.2rem; }

  .newsCont .img {
    max-width: none; }

  .newsCont .img img {
    border-radius: 15px; } }
/* --------------------------------------------
TOP
-------------------------------------------- */
/* CONTENT AREA
-------------------- */
.container.--home {
  padding-left: var(--pc-lr);
  padding-right: var(--pc-lr); }
  @media screen and (max-width: 767px) {
    .container.--home {
      padding-left: calc(20 / 375* 100vw);
      padding-right: calc(20 / 375* 100vw); } }

/* SECTION HOME
-------------------- */
.section.--home {
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: var(--pc-lr);
  padding-right: var(--pc-lr); }
  @media screen and (max-width: 767px) {
    .section.--home {
      padding-top: 3rem;
      padding-bottom: 3rem;
      padding-left: calc(20 / 375* 100vw);
      padding-right: calc(20 / 375* 100vw); } }
  .section.--home .section__area {
    position: relative;
    z-index: 1; }
  .section.--home .c-heading {
    color: var(--color-blue);
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .section.--home .c-heading {
        margin-top: -0.5rem;
        margin-bottom: 2.5rem;
        font-size: 3.2rem;
        line-height: 4.5rem; } }
    @media screen and (max-width: 767px) {
      .section.--home .c-heading {
        margin-bottom: 2.5rem;
        font-size: 2.4rem;
        line-height: calc(60/42); } }
    .section.--home .c-heading span {
      display: block; }
    .section.--home .c-heading .ja {
      display: block; }
      @media screen and (min-width: 768px) {
        .section.--home .c-heading .ja {
          /*      margin-top: 1rem;*/
          font-size: 2rem;
          line-height: 1.2; } }
      @media screen and (max-width: 767px) {
        .section.--home .c-heading .ja {
          font-size: 1.4rem;
          line-height: 1.2; } }
  .section.--home .c-heading--content {
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .section.--home .c-heading--content {
        margin-bottom: 2.4rem;
        font-size: 2.4rem;
        line-height: calc(55/30); } }
    @media screen and (max-width: 767px) {
      .section.--home .c-heading--content {
        margin-bottom: 1rem;
        font-size: 2rem;
        line-height: 1.5; } }
  .section.--home .section__content p {
    line-height: 2;
    letter-spacing: 0; }
    @media screen and (max-width: 767px) {
      .section.--home .section__content p {
        font-size: 1.4rem; } }
  .section.--home .section__content .btnArea {
    margin-top: 2rem; }
    @media screen and (max-width: 767px) {
      .section.--home .section__content .btnArea {
        margin-top: 1.5rem;
        text-align: right; } }
  @media screen and (max-width: 767px) {
    .section.--home .section__content .c-tabmenu__list.slick-initialized + .btnArea {
      margin-top: 0; } }

/* CATALOG (2509)
-------------------- */
.container.--home.catalog {
  text-align: right; }
  @media screen and (min-width: 768px) {
    .container.--home.catalog {
      margin-bottom: calc( 5 / 153 * 100vw ); } }
  @media screen and (min-width: 1600px) {
    .container.--home.catalog {
      margin-bottom: 50px; } }
  @media screen and (max-width: 767px) {
    .container.--home.catalog {
      margin-bottom: 40px; } }

.section.--home.catalog {
  position: relative; }
  @media screen and (min-width: 768px) {
    .section.--home.catalog {
      /*    min-height: 998px;*/
      display: flex;
      align-items: center;
      /*    margin-bottom: calc( 57 / 153 * 100vw );*/
      margin-bottom: calc( 5 / 153 * 100vw ); } }
  @media screen and (max-width: 767px) {
    .section.--home.catalog {
      padding-top: calc( 10 / 390 * 100vw );
      padding-bottom: 20px; } }
  .section.--home.catalog .secInner {
    width: 100%; }
    @media screen and (min-width: 768px) {
      .section.--home.catalog .secInner {
        /*      padding-bottom: 100px;*/ } }
  .section.--home.catalog .bgImg {
    position: absolute;
    z-index: -1;
    transform: translateX(-100%);
    background: linear-gradient(135deg, rgba(133, 203, 191, 0.3) 0%, #85cbbf 100%);
    opacity: 0.2;
    border-radius: 0px 9999em 9999em 0px;
    /*    @media screen and (min-width: 1240px) {
          left: -5rem;
          width: calc(116.5rem);
        }
        @media screen and (min-width: 1600px) {
          right: -50vw; 
          width: calc(50vw + 73%);
        }*/ }
    @media screen and (max-width: 767px) {
      .section.--home.catalog .bgImg {
        top: 0;
        left: calc(20 / 390 * -1 * 100vw);
        width: calc( 285 / 390 * 100vw );
        height: calc( 195 / 390 * 100vw ); } }
    @media screen and (min-width: 768px) {
      .section.--home.catalog .bgImg {
        top: 0;
        bottom: 0;
        left: 0;
        width: calc( 50vw + 370px ); } }
    @media screen and (min-width: 1600px) {
      .section.--home.catalog .bgImg {
        width: calc( 50vw + 370px ); } }
  .section.--home.catalog.is-inview .bgImg {
    animation: secSlideLeft 1.2s ease-out 0.1s forwards; }
  .section.--home.catalog.is-inview .section__area {
    animation: secIsShow 1.2s ease-out 1.8s forwards; }
  .section.--home.catalog .section__area {
    opacity: 0; }
  @media screen and (max-width: 767px) {
    .section.--home.catalog .section__content {
      order: 2; } }
  @media screen and (max-width: 767px) {
    .section.--home.catalog .btnArea {
      order: 3; } }
  @media screen and (max-width: 767px) {
    .section.--home.catalog .c-headingblock {
      margin-top: 2rem; } }
  @media screen and (min-width: 768px) {
    .section.--home.catalog .c-heading {
      margin-bottom: 2.5rem; } }
  @media screen and (min-width: 768px) {
    .section.--home.catalog .c-aboutusMessage {
      margin-bottom: 9.5rem; } }
  @media screen and (max-width: 767px) {
    .section.--home.catalog .c-aboutusMessage {
      margin-bottom: 3.5rem; } }

.c-itemslider .slide-arrow {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: calc( 50% - 25px );
  z-index: 1;
  border-radius: 100rem; }
  @media screen and (max-width: 767px) {
    .c-itemslider .slide-arrow {
      width: 30px;
      height: 30px;
      top: calc( 50% - 15px ); } }
.c-itemslider .slide-arrow.slick-disabled {
  opacity: 0.2; }
.c-itemslider .prev-arrow {
  left: 0;
  background: url("../images/arrow_left.png") center center no-repeat;
  background-size: 50px auto; }
  @media screen and (max-width: 767px) {
    .c-itemslider .prev-arrow {
      background-size: 30px auto; } }
.c-itemslider .next-arrow {
  right: 0;
  background: url("../images/arrow_right.png") center center no-repeat;
  background-size: 50px auto; }
  @media screen and (max-width: 767px) {
    .c-itemslider .next-arrow {
      background-size: 30px auto; } }
@media screen and (min-width: 768px) {
  .c-itemslider.slick-initialized .prev-arrow {
    left: -80px; } }
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .c-itemslider.slick-initialized .prev-arrow {
    left: 10px; } }
@media screen and (max-width: 767px) {
  .c-itemslider.slick-initialized .prev-arrow {
    left: -15px; } }
@media screen and (min-width: 768px) {
  .c-itemslider.slick-initialized .next-arrow {
    right: -80px; } }
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .c-itemslider.slick-initialized .next-arrow {
    right: 10px; } }
@media screen and (max-width: 767px) {
  .c-itemslider.slick-initialized .next-arrow {
    right: -15px; } }
.c-itemslider .slick-list {
  overflow: visible;
  margin: 0 -12px; }
.c-itemslider .slick-slide {
  margin: 0 12px; }

/* SERVICE (2509)
-------------------- */
.section.--home.service {
  background: linear-gradient(125deg, rgba(242, 250, 254, 0.15) 0%, rgba(54, 161, 216, 0.15) 100%);
  opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.service {
      /*    margin-bottom: 40rem;*/
      margin-bottom: 5rem;
      /*    padding-top: 19.5rem;*/
      padding-top: 4.5rem;
      /*    padding-bottom: 19.5rem;*/
      padding-bottom: 5rem; } }
  @media screen and (max-width: 767px) {
    .section.--home.service {
      margin-bottom: 4rem; } }
  .section.--home.service .section__area {
    opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.service .c-headingblock {
      margin-bottom: 5rem; } }
  @media screen and (max-width: 767px) {
    .section.--home.service .c-headingblock {
      margin-bottom: 2rem; } }
  .section.--home.service .c-headingblock p {
    line-height: calc(32/18); }
    @media screen and (max-width: 767px) {
      .section.--home.service .c-headingblock p {
        display: none; } }
  @media screen and (min-width: 768px) {
    .section.--home.service .c-heading {
      /*    margin-bottom: 9.5rem;*/
      margin-bottom: 2.5rem; } }
  @media screen and (max-width: 767px) {
    .section.--home.service .c-heading {
      margin-bottom: 2rem; } }
  .section.--home.service.is-inview {
    animation: secIsShow 0.6s ease-out 0.3s forwards; }
    .section.--home.service.is-inview .section__area {
      animation: secIsShow 0.6s ease-out 1.3s forwards; }
  .section.--home.service .c-servicecard {
    display: -webkit-flex;
    display: flex; }
    @media screen and (min-width: 768px) {
      .section.--home.service .c-servicecard {
        column-gap: calc(20/1530*100%); } }
    @media screen and (max-width: 767px) {
      .section.--home.service .c-servicecard {
        flex-direction: column;
        row-gap: 2rem; } }
  .section.--home.service .c-servicecard__item {
    background: #fff; }
    @media screen and (min-width: 768px) {
      .section.--home.service .c-servicecard__item {
        border-radius: 3rem;
        flex: 1;
        padding: 4.5rem 5rem; } }
    @media screen and (max-width: 767px) {
      .section.--home.service .c-servicecard__item {
        border-radius: 1.5rem;
        padding-bottom: 1.5rem; } }
    @media screen and (min-width: 768px) {
      .section.--home.service .c-servicecard__item .image {
        display: none; } }
    @media screen and (max-width: 767px) {
      .section.--home.service .c-servicecard__item .image {
        margin-bottom: .5rem; } }
    .section.--home.service .c-servicecard__item h3 {
      color: var(--color-blue);
      font-weight: 500; }
      @media screen and (min-width: 768px) {
        .section.--home.service .c-servicecard__item h3 {
          margin-bottom: 1.5rem;
          font-size: 2.4rem; } }
      @media screen and (max-width: 767px) {
        .section.--home.service .c-servicecard__item h3 {
          margin-bottom: 1rem;
          padding-top: 2rem;
          padding-left: 2rem;
          padding-right: 2rem;
          font-size: 1.6rem; } }
    .section.--home.service .c-servicecard__item h4 {
      color: var(--color-blue);
      font-weight: 500; }
      @media screen and (min-width: 768px) {
        .section.--home.service .c-servicecard__item h4 {
          margin-bottom: 3rem;
          font-size: 1.6rem; } }
      @media screen and (max-width: 767px) {
        .section.--home.service .c-servicecard__item h4 {
          margin-bottom: 1.2rem;
          padding-top: 0;
          padding-left: 2rem;
          padding-right: 2rem;
          font-size: 1.2rem; } }
      @media screen and (max-width: 767px) {
        .section.--home.service .c-servicecard__item h4.nbsp {
          display: none; } }
    .section.--home.service .c-servicecard__item p {
      font-size: 1.4rem;
      line-height: 2; }
      @media screen and (max-width: 767px) {
        .section.--home.service .c-servicecard__item p {
          margin: 1.2rem 0;
          font-size: 1.2rem;
          padding-left: 2rem;
          padding-right: 2rem; } }

/* PRODUCTS→EQUIPMENT
-------------------- */
.section.--home.equipment {
  position: relative; }
  @media screen and (min-width: 768px) {
    .section.--home.equipment {
      box-sizing: border-box;
      margin-bottom: 10rem;
      display: flex;
      align-items: center; } }
  @media screen and (max-width: 767px) {
    .section.--home.equipment {
      padding-top: calc( 40 / 390 * 100vw ); } }
  .section.--home.equipment .bgImg {
    position: absolute;
    z-index: -1;
    transform: translateX(100%);
    background: linear-gradient(135deg, rgba(126, 206, 244, 0.4) 0.02%, rgba(126, 206, 244, 0.41) 1.77%, #7ecef4 100%);
    opacity: 0.2;
    border-radius: 9999em 0px 0px 9999em;
    /*    @media screen and (min-width: 1240px) {
          left: -5rem;
          width: calc(116.5rem);
        }
        @media screen and (min-width: 1600px) {
          right: -50vw; 
          width: calc(50vw + 73%);
        }*/ }
    @media screen and (max-width: 767px) {
      .section.--home.equipment .bgImg {
        top: 0;
        right: calc(20 / 390 * -1 * 100vw);
        width: calc( 285 / 390 * 100vw );
        height: calc( 195 / 390 * 100vw ); } }
    @media screen and (min-width: 768px) {
      .section.--home.equipment .bgImg {
        top: 0;
        bottom: 0;
        right: 0;
        width: calc( 50vw + 370px ); } }
    @media screen and (min-width: 1600px) {
      .section.--home.equipment .bgImg {
        width: calc( 50vw + 370px ); } }
  .section.--home.equipment.is-inview .bgImg {
    animation: secSlideRight 1.2s ease-out 0.1s forwards; }
  .section.--home.equipment.is-inview .section__area {
    animation: secIsShow 1.2s ease-out 1.8s forwards; }
  .section.--home.equipment .secInner {
    width: 100%; }
  .section.--home.equipment .section__area {
    opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.equipment .c-heading {
      margin-bottom: 3rem; } }
  @media screen and (min-width: 768px) {
    .section.--home.equipment .section__content .btnArea {
      margin-top: 7.5rem !important; } }
  @media screen and (min-width: 768px) {
    .section.--home.equipment .c-tabarea {
      margin-left: auto;
      margin-right: 0;
      max-width: 138rem;
      min-height: 43rem; } }
  .section.--home.equipment .c-tabmain {
    position: relative; }
    @media screen and (min-width: 768px) {
      .section.--home.equipment .c-tabmain .c-tabmain__inner {
        position: absolute;
        left: 0;
        bottom: -100px;
        width: 100%; } }

/* NEWS
-------------------- */
.section.--home.news {
  background: rgba(62, 58, 57, 0.05);
  background: linear-gradient(45deg, rgba(200, 201, 202, 0.15) 100%, rgba(62, 58, 57, 0.15) 100%);
  opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.news {
      padding: 50px var(--pc-lr) 50px; } }
  .section.--home.news .section__area {
    opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.news .c-heading {
      margin-bottom: 2.5rem; } }
  .section.--home.news .section__content {
    /*    .newsList li:nth-child(n+4) {
          display: none;
        }*/ }
    .section.--home.news .section__content .newsList {
      display: flex;
      gap: 30px 50px; }
      @media screen and (min-width: 768px) {
        .section.--home.news .section__content .newsList {
          display: grid;
          grid-auto-flow: column;
          grid-template-rows: repeat(3, auto);
          grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); } }
      @media screen and (max-width: 767px) {
        .section.--home.news .section__content .newsList {
          margin-bottom: 0;
          padding: calc(0 / 375* 100vw) 0 calc(10 / 375* 100vw); } }
    .section.--home.news .section__content .newsLead:after {
      content: none; }
    .section.--home.news .section__content .newsList li {
      width: 100%; }
    @media screen and (max-width: 767px) {
      .section.--home.news .section__content .newsList li:nth-child(n+4) {
        display: none; } }
    .section.--home.news .section__content .newsList li a {
      text-decoration: none; }
    .section.--home.news .section__content .btnArea {
      text-align: right; }
  .section.--home.news.is-inview {
    animation: secIsShow 0.6s ease-out 0.3s forwards; }
    .section.--home.news.is-inview .section__area {
      animation: secIsShow 0.6s ease-out 1.3s forwards; }

/* COMPANY
-------------------- */
.section.--home.company {
  opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.company {
      margin-bottom: 30rem;
      padding-top: 19.5rem;
      padding-bottom: 19.5rem; } }
  .section.--home.company .section__area {
    position: relative;
    opacity: 0; }
  @media screen and (min-width: 768px) {
    .section.--home.company .c-heading {
      margin-bottom: 10rem; } }
  .section.--home.company .section__content .styled {
    line-height: calc(40/18); }
  .section.--home.company .section__content span {
    font-weight: 500; }
  .section.--home.company .section__image {
    position: absolute;
    right: 0;
    bottom: -300px; }
    @media screen and (min-width: 768px) {
      .section.--home.company .section__image {
        max-width: 50%; } }
    @media screen and (max-width: 767px) {
      .section.--home.company .section__image {
        display: none; } }
  @media screen and (min-width: 768px) {
    .section.--home.company .btnArea {
      margin-top: 10rem; } }
  .section.--home.company .bgImg {
    position: absolute;
    z-index: -1;
    background: linear-gradient(135deg, rgba(242, 250, 254, 0.15) 0%, rgba(54, 161, 216, 0.15) 100%);
    /*    @media screen and (min-width: 1240px) {
          left: -5rem;
          width: calc(116.5rem);
        }
        @media screen and (min-width: 1600px) {
          right: -50vw; 
          width: calc(50vw + 73%);
        }*/ }
    @media screen and (max-width: 767px) {
      .section.--home.company .bgImg {
        top: 0;
        bottom: 0;
        left: 0;
        width: 100vw; } }
    @media screen and (min-width: 768px) {
      .section.--home.company .bgImg {
        top: 0;
        bottom: 0;
        left: 0;
        width: calc( 50vw + 370px ); } }
    @media screen and (min-width: 1600px) {
      .section.--home.company .bgImg {
        width: calc( 50vw + 370px ); } }
  .section.--home.company.is-inview {
    animation: secIsShow 0.6s ease-out 0.3s forwards; }
    .section.--home.company.is-inview .section__area {
      animation: secIsShow 0.6s ease-out 1.3s forwards; }

/* =============================================================================
 JS Styles
============================================================================= */
.lity-active, .lity-active body {
  overflow: hidden;
  overscroll-behavior-y: none; }

.lity-inline {
  background: rgba(215, 215, 215, 0.7); }
  .lity-inline .lity-wrap {
    /*    margin: 20px auto; */
    margin: 0 auto;
    background: #fff;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%); }
    @media screen and (min-width: 768px) {
      .lity-inline .lity-wrap {
        max-width: 960px;
        transform: translateY(calc(-50% + 50px)); } }
    @media screen and (max-width: 767px) {
      .lity-inline .lity-wrap {
        max-width: calc(100vw - 80px);
        max-height: calc(100dvh - 80px);
        transform: translateY(calc(-50% + 40px)); } }
  .lity-inline .lity-wrap:before {
    display: none; }
  .lity-inline .lity-container {
    position: static;
    display: block;
    overflow-y: hidden; }
  .lity-inline .lity-content {
    overflow-y: auto; }
  .lity-inline .lity-content:after {
    box-shadow: none; }
  .lity-inline .lity-close {
    border-radius: 9999em;
    position: absolute;
    color: #5C686F;
    background: #fff;
    font-size: 45px;
    text-indent: -9999em; }
    @media screen and (min-width: 768px) {
      .lity-inline .lity-close {
        right: -100px;
        top: -100px;
        width: 100px;
        height: 100px; } }
    @media screen and (max-width: 767px) {
      .lity-inline .lity-close {
        right: 0;
        top: -70px;
        width: 50px;
        height: 50px; } }
  .lity-inline .lity-close:hover, .lity-inline .lity-close:focus, .lity-inline .lity-close:active, .lity-inline .lity-close:visited {
    color: #5C686F; }
  .lity-inline .lity-close:before, .lity-inline .lity-close:after {
    content: "";
    display: inline-block;
    width: 55%;
    background: #5C686F;
    position: absolute;
    left: 50%;
    transition: all .3s linear;
    transform: translateX(-50%); }
    @media screen and (min-width: 768px) {
      .lity-inline .lity-close:before, .lity-inline .lity-close:after {
        height: 2px; } }
    @media screen and (max-width: 767px) {
      .lity-inline .lity-close:before, .lity-inline .lity-close:after {
        height: 1px; } }
  .lity-inline .lity-close:before {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg); }
  .lity-inline .lity-close:after {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg); }
  .lity-inline .modal {
    /*    height: 100vh;*/
    /*    height: calc( 100vh - 40px );*/
    /*    overflow-y: auto;*/ }
    @media screen and (min-width: 768px) {
      .lity-inline .modal {
        max-height: calc(100vh - 120px) !important;
        overflow-y: auto; } }
    @media screen and (max-width: 767px) {
      .lity-inline .modal {
        max-height: 100vh !important;
        max-height: calc(100dvh - 80px) !important; } }
  .lity-inline .modal__content {
    padding: 0 0 3vh;
    /*16.363636%*/ }
  @media screen and (min-width: 768px) {
    .lity-inline .modal__main {
      padding: min(calc(80 / 960 * 100%), 80px) min(calc(100 / 960 * 100%), 100px); } }
  @media screen and (max-width: 767px) {
    .lity-inline .modal__main {
      padding: calc(20 / 375* 100vw) calc(20 / 375* 100vw) 0; } }
  .lity-inline .modal__heading {
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .lity-inline .modal__heading {
        margin-bottom: 3rem;
        font-size: 2.6rem; } }
    @media screen and (max-width: 767px) {
      .lity-inline .modal__heading {
        margin-bottom: 1.5rem;
        font-size: 1.6rem; } }
  .lity-inline .modal__text {
    line-height: 2; }
  @media screen and (min-width: 768px) {
    .lity-inline .modal__related {
      padding: 0 min(calc(100 / 960 * 100%), 100px) min(calc(60 / 960 * 100%), 60px); } }
  @media screen and (max-width: 767px) {
    .lity-inline .modal__related {
      padding: calc(30 / 375* 100vw) calc(20 / 375* 100vw) 0; } }
  .lity-inline .modal__related h3 {
    font-weight: 500; }
    @media screen and (min-width: 768px) {
      .lity-inline .modal__related h3 {
        font-size: 2.6rem;
        margin-bottom: 1.5em; } }
    @media screen and (max-width: 767px) {
      .lity-inline .modal__related h3 {
        margin-bottom: 1em; } }
  .lity-inline .modal__related__list {
    display: -webkit-flex;
    display: flex;
    gap: 25px;
    flex-wrap: wrap; }
    @media screen and (max-width: 767px) {
      .lity-inline .modal__related__list {
        gap: 20px 10px; } }
    .lity-inline .modal__related__list .list__item {
      width: calc( calc(100% / 2) - calc(25px / 2) ); }
      @media screen and (max-width: 767px) {
        .lity-inline .modal__related__list .list__item {
          /*      width: calc( calc(100% / 2) - calc(10px / 2) );*/
          width: calc( calc(100% / 2) - calc(10px / 2) ); } }
      .lity-inline .modal__related__list .list__item a, .lity-inline .modal__related__list .list__item a:hover {
        text-decoration: none; }
      .lity-inline .modal__related__list .list__item .item__label {
        display: block;
        color: var(--color-base); }
        @media screen and (min-width: 768px) {
          .lity-inline .modal__related__list .list__item .item__label {
            margin-top: 1em; } }
        @media screen and (max-width: 767px) {
          .lity-inline .modal__related__list .list__item .item__label {
            margin-top: 0.5em; } }

/* =============================================================================
 Contact Styles
============================================================================= */
.colorBtn {
  padding: 0.9em 1em;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
  background: #7ac3e7;
  background: linear-gradient(120deg, #7ac3e7 0%, #238dc6 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 0.7rem; }

.colorBtnGray {
  padding: 0.9em 1em;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-block;
  background: #5c686f;
  background: linear-gradient(120deg, #bdc2c5 0%, #5c686f 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 0.7rem; }

@media (hover: hover) {
  .colorBtn:hover,
  .colorBtnGray:hover {
    text-decoration: none;
    opacity: .7; } }
@media screen and (max-width: 767px) {
  .colorBtn,
  .colorBtnGray {
    padding: 0.5em 0.8em;
    font-size: calc(14/390*100vw);
    font-weight: 500; } }
ul.contactFlow {
  margin-bottom: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1; }

ul.contactFlow li {
  width: calc(344/1530*100%);
  padding: 0.6em 0;
  background: #5c686f;
  background: linear-gradient(120deg, #bdc2c5 0%, #5c686f 100%);
  color: #fff;
  font-weight: 400;
  text-align: center;
  position: relative; }

ul.contactFlow li.current {
  background: #238dc6;
  background: linear-gradient(120deg, #7ac3e7 0%, #238dc6 100%);
  color: #fff;
  font-weight: 400; }

ul.contactFlow li:after {
  content: "";
  width: 1.6em;
  height: 1.6em;
  margin: auto 0;
  display: block;
  border-top: #5C686F 1px solid;
  border-right: #5C686F 1px solid;
  transform: rotate(45deg);
  position: absolute;
  right: -40%;
  top: 0;
  bottom: 0; }

ul.contactFlow li:last-of-type:after {
  content: none; }

.tellNum a {
  font-size: 30px;
  font-weight: 600;
  text-decoration: underline;
  color: #5C686F; }

.contactForm {
  margin-top: 5rem;
  font-size: 16px; }

.formBlock {
  margin-bottom: 2.5rem; }

.formBlock .subject {
  margin-bottom: 0.8em;
  display: inline-block;
  position: relative;
  line-height: 1; }

.formBlock .subject strong {
  font-weight: normal;
  color: #D32D25;
  margin-left: 1em; }

.formBlock.required .subject:after {
  content: "必須";
  padding: 0.4em;
  margin-left: 1.6em;
  font-size: 16px;
  display: inline-block;
  position: relative;
  background: #5c686f;
  background: linear-gradient(120deg, #bdc2c5 0%, #5c686f 100%);
  color: #fff;
  font-weight: 400;
  border-radius: 5px; }

.formBlock .field {
  width: 100%;
  display: flex;
  gap: 1em 2em; }

.formBlock .field.dashed {
  border: 1px var(--color-base) dashed; }

.formBlock .field > div {
  position: relative;
  width: 100%; }

.formBlock .field.div2 div {
  display: inline-block; }

.mw_wp_form_input .formBlock .field.div2 {
  width: 100%;
  display: flex;
  gap: 1em 2em; }

.formBlock .field input,
.formBlock .field textarea {
  width: 100%;
  padding: 1.5em;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  background-color: rgba(92, 104, 111, 0.05); }

.formBlock .check {
  margin-left: 0.5em; }

.formBlock .check a {
  color: var(--color-base);
  border-bottom: var(--color-base) 1px solid;
  line-height: 1.5; }
  .formBlock .check a:hover {
    border-bottom: none;
    text-decoration: none; }

.formBtnArea {
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
  gap: 0 3em; }

.formBtnArea .formBtn {
  width: 100%;
  max-width: calc(340/1530*100%);
  text-align: center; }

.formBtnArea .formBtn a {
  display: block;
  font-size: 6;
  font-weight: 400; }

.filledBlock .subject {
  margin-bottom: 1em;
  border-bottom: #238DC6 1px solid; }

.filledBlock + .filledBlock {
  margin-top: 2.4em; }

.filledBlock .filled {
  font-size: 16px;
  font-weight: 400;
  color: #5C686F;
  line-height: 1.64; }

.leadText .strong {
  margin-bottom: 5rem;
  font-size: 180%;
  font-weight: 600;
  display: block; }

.leadText .goTopLink {
  color: var(--color-base);
  margin-top: 2.5rem;
  display: inline-block;
  text-decoration: none;
  border-bottom: var(--color-base) 1px solid;
  line-height: 1.5; }
  .leadText .goTopLink:hover {
    border-bottom: none; }

@media screen and (max-width: 767px) {
  ul.contactFlow {
    margin-bottom: calc(90/750*100vw); }

  ul.contactFlow li {
    width: calc(110/375*100%);
    font-size: 1.1rem; }

  ul.contactFlow li:after {
    width: 1em;
    height: 1em;
    right: -13%; }

  ul.contactFlow li:last-of-type:after {
    content: none; }

  .leadText {
    font-size: 1.4rem; }

  .tellNum a {
    font-size: 1.6rem; }

  .contactForm {
    margin-top: 4rem;
    font-size: calc(26/750*100vw); }

  .formBlock {
    margin-bottom: 2.5em; }

  .filledBlock .subject {
    font-size: 1.1rem; }

  .formBlock.required .subject:after {
    font-size: 0.8rem; }

  .formBlock p {
    font-size: 1.1rem; }

  .formBlock .field {
    gap: 0.6em 1em; }

  .formBlock .field input,
  .formBlock .field textarea {
    padding: 1em;
    font-size: 1.1rem; }

  .formBlock .check {
    margin-left: 0.3em; }

  .formBtnArea {
    margin: 3rem auto 0;
    justify-content: space-between;
    gap: 0 1em; }

  .formBtnArea .formBtn {
    max-width: none;
    width: calc(170/375*100vw);
    margin: 0 auto; }

  .formBtnArea .formBtn a {
    padding: 0.8em 0.8em;
    font-size: 1.2rem; }

  .filledBlock + .filledBlock {
    margin-top: 1.6em; }

  .filledBlock .filled {
    font-size: 1.4rem; }

  .leadText {
    line-height: 2;
    letter-spacing: -0.04em; }

  .leadText .strong {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.46;
    display: inline; } }
/* =============================================================================
 ADD FORM PLUGIN
============================================================================= */
.pageHeader + .mw_wp_form .section:first-of-type {
  opacity: 0; }

.pageHeader.is-inview + .mw_wp_form .section:first-of-type {
  animation: secFadeUp 1.2s ease-out 1.8s forwards; }

.mw_wp_form_input ul.contactFlow li.input,
.mw_wp_form_confirm ul.contactFlow li.confirm,
.mw_wp_form_complete ul.contactFlow li.complete {
  background: #238dc6;
  background: linear-gradient(120deg, #7ac3e7 0%, #238dc6 100%);
  color: #fff;
  font-weight: 400; }

.contactInputMessage,
.contactConfirmMessage,
.contactCompleteMessage {
  display: none; }

.mw_wp_form_input .contactInputMessage,
.mw_wp_form_confirm .contactConfirmMessage,
.mw_wp_form_complete .contactCompleteMessage {
  display: block; }

.mw_wp_form_input .formBtnArea .formBtn:first-of-type {
  display: none; }

.mw_wp_form_confirm .formBlock .subject {
  margin-bottom: 1em;
  border-bottom: #238DC6 1px solid;
  display: block;
  font-size: 1.4rem;
  line-height: 2.2; }

.mw_wp_form_confirm .formBlock + .formBlock {
  margin-top: 2.4em; }

.mw_wp_form_confirm .formBlock .field {
  font-size: 18px;
  font-weight: 400;
  color: #5C686F;
  line-height: 1.64; }

.mw_wp_form_confirm .formBlock.required .subject:after {
  display: none; }

.mw_wp_form_confirm .formBlock.name br {
  display: none; }

.mw_wp_form_confirm .formBlock.acceptance {
  display: none; }

.mw_wp_form_confirm .formBtnArea {
  margin-top: 5rem; }

.formBtnArea .formBtn input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.formBtnArea .formBtn input:hover {
  opacity: .7; }

.formBtnArea .formBtn input[type="submit"] {
  display: block;
  width: 100%;
  padding: 0.6em 0.9em;
  font-size: 1.6rem;
  font-weight: 600;
  background: #7ac3e7;
  background: linear-gradient(120deg, #7ac3e7 0%, #238dc6 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 0.7rem; }

.formBtnArea .formBtn input[name="submitBack"] {
  background: #5c686f;
  background: linear-gradient(120deg, #bdc2c5 0%, #5c686f 100%); }

@media screen and (max-width: 767px) {
  .formBtnArea .formBtn input[type="submit"],
  .formBtnArea .formBtn input[name="submitBack"] {
    padding: 0.8em 0.8em;
    font-size: 1.2rem; } }
