/*
 Theme Name: 金子メッキ
 Description:
 Theme URI:
 Author: I'LL inc.
 Author URI:
 Version:
 License:
 License URI:
*/
@charset "UTF-8";
/* CSS Document */

@media (max-width: 767px){
  .u-only--pc{display:none !important}
}
@media (min-width: 768px){
  .u-only--sp{display:none !important}
}
.u-display--none{
  display: none !important;
}
.is-hide {
  display: none !important;
}

/* reset
=================================================================*/
*,:after,:before{box-sizing:border-box;background-repeat:no-repeat;min-height:0}html{box-sizing:border-box;-webkit-text-size-adjust:100%;word-break:normal}body{margin:0;padding:0}h1,h2,h3,h4,h5,h6{line-height:1}h1,h2,h3,h4,h5,h6,p{margin:0;padding:0;display:block;margin-block-start:0;margin-block-end:0;margin-inline-start:0;margin-inline-end:0}pre{white-space:pre-wrap}hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}audio,canvas,embed,iframe,object,video{display:block;vertical-align:middle;max-width:100%}img,svg{vertical-align:middle}canvas,img,svg,video{height:auto}audio{width:100%}img{border-style:none}svg{overflow:hidden}a,article,aside,div,figcaption,figure,footer,header,main,nav,section,span{margin:0;padding:0;color:inherit}a:hover{color:inherit}dd,dl,dt,li,ol,ul{list-style:none;margin:0;padding:0;margin-block-start:0;margin-block-end:0;margin-inline-start:0;margin-inline-end:0;padding-inline-start:0;padding-inline-end:0}table{text-indent:initial;border-spacing:0}table,td,th,tr{margin:0;padding:0;border:0}address{text-decoration:none;font-style:normal}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}:after,:before{text-decoration:inherit;vertical-align:inherit}input,textarea{margin:0;padding:0;border:0}input[type=button],input[type=submit]{border-radius:0;-webkit-box-sizing:content-box;-webkit-appearance:button;appearance:button;border:0;box-sizing:border-box;cursor:pointer}input[type="button"]::-webkit-search-decoration,input[type="submit"]::-webkit-search-decoration{display:none}input[type="button"]::focus,input[type="submit"]::focus{outline-offset:-2px}

/* Font preset
=================================================================*/
html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}
body,input,textarea{
  font-family :var(--font-main);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px){
  body{
    font-size: 1.6rem;
    line-height: 2.5;
  }
}
:root{
  --font-main: "Noto Sans JP", sans-serif;
  --font-serif: 'Zen Old Mincho', serif;
  --font-eng: "Roboto", sans-serif;
}

/* Color preset
=================================================================*/
:root{
  --color-black:  #2E2E2E;
  --color-white:  #FFFFFF;
  --color-gray1:  #F6F6F6;
  --color-gray2:  #EEEEEE;
  --color-gray3:  #636363;
  --color-gray4:  #404040;
  --color-point:  #499E45;
}

.u-point{
  color: var(--color-point);
}

/* Base
=================================================================*/
body{
  width:100%;
  min-width: 375px;
  background-color: var(--color-white);
  color: var(--color-black);
}
@media screen and (min-width: 768px){
  body{
    min-width: 1200px;
  }
}
img{
  max-width: 100%;
  backface-visibility: hidden;
}
address{
  white-space: nowrap;
}

/* Animation
=====================================================================*/
@keyframes fadein{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.u-fade{
  opacity: 0;
}
.is-fadein{
  animation-name: fadein;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeout{
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Common Parts
=================================================================*/
/* layout */
.l-center{
  display: grid;
  justify-content: center;
}
.c-center{
  text-align: center;
}
.u-point{
  color: var(--color-point);
}
.u-txt-right{
  text-align: right;
}
.c-pc-center{
  text-align: left !important;
}
/*paragraph*/
.c-txt{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.c-txt p{
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.c-txt a{
  display: inline-block;
  color: var(--color-point);
  text-decoration: underline;
}
@media screen and (min-width:768px){
  .c-txt{
    gap: 25px;
  }
  .c-txt p{
    font-size: 1.5rem;
    line-height: 2;
  }
  .c-pc-center{
    text-align: center !important;
  }
}
/*Plane Image*/
.c-img{
  width: 100%;
  margin: 0 0 30px;
}
.c-img img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width:767px){
  .c-img-spfull{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
  }
}
/*button*/
.c-button > *{
  display: inline-grid;
  place-content: center;
  min-width: 210px;
  height: 50px;
  padding: 0 50px;
  background-color: var(--color-black);
  border-radius: 30px;
  color: var(--color-white);
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width:767px){
  .c-button{
    display: grid;
    place-content: center;
  }
  .c-button a:hover{
    color: var(--color-white);
  }
}
@media screen and (min-width:768px){
  .c-button > *{
    min-width: 250px;
    height: 60px;
    padding: 0 70px;
    border: 2px solid var(--color-black);
    border-radius: 35px;
    text-align: center;
    transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  }
  .c-button > *:hover{
    background-color: var(--color-white);
    border: 2px solid var(--color-point);
    color: var(--color-point);
  }
}
.c-arrowlink a{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin: 20px 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2.7;
  text-decoration: none;
}
.c-arrowlink a::after{
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/ico-arrow.svg);
  background-repeat: no-repeat;
}
@media screen and (min-width:768px){
  .c-arrowlink a{
    justify-content: flex-start;
    margin-top: 30px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  .c-arrowlink a::after{
    content: none;
  }
  .c-arrowlink a::before{
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(./img/common/ico-arrow.svg);
    background-repeat: no-repeat;
  }
  .c-arrowlink a:hover{
    transform: translateX(15px);
  }
}
/* scroll*/
.l-scrollarea{
  overflow-x: auto;
  white-space: nowrap;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-scrollarea::-webkit-scrollbar{
  display: none;
}
@media screen and (max-width:767px){
  .l-sp-scrollarea{
    overflow-x: auto;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-sp-scrollarea::-webkit-scrollbar{
    display: none;
  }
}

/* header
=================================================================*/
.l-header{
  width: 100%;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
}
.c-header{
  width: 100%;
  height: 70px;
  background-color: var(--color-white);
  z-index: 40;
}
.c-header-main{
  position: relative;
}
.c-logo{
  width: 126px;
  height: 34px;
}
.c-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width:767px){
  .c-header.is-spnav-show{
    background-color: var(--color-black);
  }
  .c-header-nav,
  .c-header-read-txt,
  .c-gnav{
    display: none;
  }
  .c-logo{
    position: absolute;
    top: 18px;
    left: 20px;
    z-index: 20;
  }
  .is-spnav-show .c-logo{
    background: url(./img/common/logo-w.svg) 0 0 no-repeat;
    background-size: contain;
  }
  .is-spnav-show .c-logo img{
    opacity: 0;
  }
  .c-spnav-btn{
    display: block;
    position: absolute;
    z-index: 20;
    height: 70px;
    width: 70px;
    margin: 0;
    top: 0;
    right: 0;
    left: auto;
    cursor: pointer;
  }
  .c-spnav-btn span,
  .c-spnav-btn::before,
  .c-spnav-btn::after {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 27px;
    height: 2px;
    margin: auto;
    background-color: var(--color-black);
  }
  .c-spnav-btn span{
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .c-spnav-btn::before,
  .c-spnav-btn::after {
    content: "";
    transition: background-color 0.3s ease;
    z-index: 2;
  }
  .c-spnav-btn::before{
    transform: translate(0, -7px);
  }
  .c-spnav-btn::after{
    transform: translate(0, 7px);
  }
  .c-spnav-btn.is-spnav-on span{
    opacity: 0;
  }
  .is-spnav-on::before,
  .is-spnav-on::after{
    width: 30px;
    background-color: var(--color-white);
  }
  .c-spnav-btn.is-spnav-on::after{
    transform: rotate(-30deg);
    left: 0;
  }
  .c-spnav-btn.is-spnav-on::before{
    transform: rotate(30deg);
    left: 0;
  }
  .c-spnav{
    display: block;
    padding: 30px 38px;
    width: 100%;
    transition: opacity 0.3s ease;
    height: calc(100vh - 70px);
    overflow-y: scroll;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 70px;
    visibility: hidden;
    z-index: -1;
  }
  .is-spnav-show .c-spnav{
    pointer-events: initial;
    visibility: visible;
    z-index: 20;
    opacity: 1;
    transition: opacity 0.3s ease;
    background-color: var(--color-black);
  }
  .c-spnav a{
    display: block;
    color: var(--color-white);
    font-size: 1.4rem;
    line-height: 1.9;
    text-decoration: none;
  }
  .c-spnav-list{
    border-top: 1px solid var(--color-gray4);
  }
  .c-spnav-list > li{
    border-bottom: 1px solid var(--color-gray4);
  }
  .c-spnav-list > li > a{
    display: block;
    padding: 20px 0;
    text-decoration: none;
  }
  .c-spnav-toggle{
    position: relative;
  }
  .c-spnav-toggle::before,
  .c-spnav-toggle::after{
    content: '';
    display: block;
    width: 12px;
    height: 1px;
    background-color: var(--color-point);
    position: absolute;
    top: 50%;
    right: 0;
  }
  .c-spnav-toggle::after{
    transform: rotate(90deg);
  }
  .is-active.c-spnav-toggle::after{
    display: none;
  }
  .c-spnav-child-list{
    display: none;
    gap: 15px;
    padding: 0 0 20px 20px;
  }
  .is-active.c-spnav-child-list{
    display: grid;
  }
  .c-spnav-child-list li a{
    display: block;
    padding: 5px 0 5px 20px;
    position: relative;
    text-decoration: none;
  }
  .c-spnav-child-list li a::before{
    content: '';
    display: block;
    width: 8px;
    height: 1px;
    background-color: var(--color-gray4);
    position: absolute;
    top: 50%;
    left: 0;
  }
}
@media screen and (min-width:768px){
  .c-header{
    height: 110px;
    background-color: var(--color-white);
    transition: background-color 0.3s ease;
  }
  .is-top-on .c-header{
    background-color: transparent;
  }
  .c-spnav-btn,
  .c-spnav{
    display: none;
  }
  .l-header-navarea{
    background-color: var(--color-black);
  }
  .c-header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    min-width: calc(1100px + 3.5%);
    margin: 0 auto;
    height: 30px;
    padding: 0 3.5%;
  }
  .c-header-nav-news a,
  .c-header-nav-news .c-header-nav-news-line{
    display: flex;
    align-items: center;
    gap: 15px;
    height: 30px;
    font-size: 1.1rem;
    line-height: 2.4;
    text-decoration: none;
  }
  .c-header-navlist{
    display: flex;
    gap: 20px;
    font-size: 1.1rem;
    line-height: 2.4;
  }
  .c-header-navlist a{
    display: grid;
    place-content: center;
    height: 30px;
    text-decoration: none;
  }
  .c-header-main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: calc(1100px + 3.5%);
    height: 80px;
    padding: 0 3.5%;
  }
  .l-header-logoalea{
    display: flex;
    gap: 17px;
    align-items: flex-end;
    padding: 0 30px 0 0;
  }
  .c-logo{
    width: 152px;
    height: 42px;
  }
  .c-header-read-txt{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
  }
  .c-gnav-list{
    display: flex;
    gap: 30px;
  }
  .c-gnav-list li a{
    display: grid;
    place-content: center;
    height: 80px;
    font-size: 1.4rem;
    line-height: 1.9;
    white-space: nowrap;
    text-decoration: none;
  }
}

/* Contact
=================================================================*/
.c-footer-contact{
  padding: 100px 20px;
  background: url(./img/common/footer-sp.jpg);
  background-position: 50% 50%;
  background-size: cover;
  color: var(--color-white);
  text-align: center;
  position: relative;
}
.c-footer-contact--title{
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.c-footer-contact--txt{
  font-size: 1.2rem;
  line-height: 1;
  margin: 0 0 30px;
}
.c-footer-contact-tel{
  width: 242px;
  padding: 0 0 0 40px;
  margin: 0 auto 20px;
  position: relative;
  text-align: left;
}
.c-footer-contact-tel::before{
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url(./img/common/ico-tel.svg);
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}
.c-footer-contact-tel--link{
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.c-footer-contact-tel--txt{
  font-size: 1.1rem;
  line-height: 2.4;
}
.c-footer-contact-button{
  width: 240px;
  margin: 0 auto;
}
.c-footer-contact-button a{
  display: grid;
  place-content: center;
  width: 100%;
  height: 53px;
  background-color: #49AB44;
  border-radius: 27px;
  font-size: 1.4rem;
  line-height: 2.3;
  text-decoration: none;
}
@media screen and (min-width:768px){
  .c-footer-contact{
    padding: 95px 130px;
    background: url(./img/common/footer-pc.jpg);
    background-position: 50% 50%;
    background-size: cover;
  }
  .c-footer-contact--title{
    font-size: 3.5rem;
    letter-spacing: 0.04em;
  }
  .c-footer-contact--txt{
    font-size: 1.5rem;
    margin: 0 0 40px;
  }
  .l-footer-contact-address{
    display: flex;
    justify-content: center;
    width: 610px;
    gap: 35px;
    margin: 0 auto;
  }
  .c-footer-contact-tel{
    width: auto;
    padding: 0 0 0 45px;
    margin: 0;
  }
  .c-footer-contact-tel::before{
    width: 32px;
    height: 32px;
  }
  .c-footer-contact-tel--link{
    font-size: 3.5rem;
    line-height: 1;
  }
  .c-footer-contact-tel--link a{
    pointer-events: none;
    text-decoration: none;
  }
  .c-footer-contact-tel--txt{
    font-size: 1.3rem;
  }
  .c-footer-contact-button{
    width: 290px;
    margin: 0;
  }
  .c-footer-contact-button a{
    height: 60px;
    border: 2px solid var(--color-point);
    border-radius: 35px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .c-footer-contact-button a:hover{
    background-color: var(--color-white);
    color: var(--color-point);
  }
}

/* Footer
=================================================================*/
.c-footer{
  background-color: var(--color-black);
  padding: 60px 20px 15px;
  border-bottom: 7px solid var(--color-point);
  color: var(--color-white);
}
.l-footer-logoarea{
  padding: 0 0 40px;
  border-bottom: 1px solid var(--color-gray4);
}
.c-footer-logo{
  width: 180px;
  height: 50px;
  margin: 0 0 25px;
}
.c-footer-logo img{
  width: 100%;
  object-fit: contain;
}
.c-footer-address{
  font-size: 1.1rem;
  line-height: 2.5;
}
.l-footer-navarea{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 35px 0 35px;
}
.c-footernav-list{
  margin: 0 0 20px;
}
.c-footernav-list > li{
  font-size: 1.2rem;
  line-height: 1.8;
}
.c-footernav-list > li > a{
  display: block;
  text-decoration: none;
  padding: 5px 0;
}
.c-footernav-child-list li{
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-footernav-child-list li a{
  display: flex;
  position: relative;
  gap: 10px;
  padding: 5px 0;
  text-decoration: none;
}
.c-footernav-child-list li a::before{
  content: '－';
  display: block;
  color: var(--color-white);
  color: #6D6D6D;
}
.c-copyright{
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.7;
}
@media screen and (min-width:768px){
  .c-footer{
    padding: 80px 0 70px;
    position: relative;
  }
  .c-footer-inner{
    display: flex;
    justify-content: space-between;
    width: 93%;
    min-width: 1100px;
    margin: 0 auto;
  }
  .l-footer-logoarea{
    border-bottom: none;
  }
  .c-footer-logo{
    width: 246px;
    height: 68px;
  }
  .c-footer-address{
    font-size: 1.3rem;
  }
  .l-footer-navarea{
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    padding: 0;
  }
  .c-footernav-list{
    margin-bottom: 10px;
  }
  .c-footernav-list > li{
    font-size: 1.4rem;
    line-height: 2.3;
  }
  .c-footernav-child-list li{
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .c-footernav-child-list li a{
    display: flex;
    position: relative;
    gap: 10px;
  }
  .c-copyright{
    width: 93%;
    min-width: 1100px;
    margin: 0 auto;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2.7;
  }
}

/* Contents
=================================================================*/
.l-contents{
  padding-top: 70px;
}
.c-sec-inner,
.c-sec-small-inner{
  padding: 0 20px;
  position: relative;
}
.c-sec-title{
  margin: 0 0 35px;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
.c-contents-body{
  padding: 0 0 100px;
  overflow-x: clip;
}
.c-contents-body:not(:last-child){
  padding: 0 0 60px;
}
@media screen and (max-width:767px){
  .c-sec-title{
    text-align: center;
  }
}
@media screen and (min-width:768px){
  .l-contents{
    padding-top: 110px;
  }
  .c-sec-inner{
    width: calc(1100px + 7%);
    padding: 0 3.5%;
    margin: 0 auto;
  }
  .c-sec-small-inner{
    width: calc(800px - 7%);
    padding: 0 3.5%;
    margin: 0 auto;
  }
  .c-sec-title{
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 70px;
  }
  .c-contents-body{
    padding-bottom: 120px;
  }
  .c-contents-body:not(:last-child){
    padding-bottom: 100px;
  }
}

/* Toppage
=================================================================*/
.c-top-intro{
  background-color: var(--color-white);
  background: url(./img/common/bg.jpg) 0 0 repeat;
  position: relative;
  overflow: hidden;
}
.l-top-mvarea{
  width: 100%;
}
.c-top-mv,
.c-top-mv-thumb{
  line-height: 0;
}
.slick-track{
  display: flex;
}
.slick-track::before,
.slick-track::after{
  content: none;
}
.slick-slide{
  float: none;
  height: auto;
}
@media screen and (max-width:767px){
  .l-top-contents{
    padding-top: 70px;
  }
  .l-top-mvarea{
    height: calc(100vh - 70px);
    position: relative;
  }
  .c-top-intro--title{
    display: grid;
    align-items: end;
    width: 100%;
    height: 135px;
    padding: 0 20px 20px;
    background: linear-gradient(0deg, #2e2e2e, rgba(0, 0, 18, 0.0));
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    position: absolute;
    bottom: 103px;
    left: 0px;
    z-index: 10;
    pointer-events: none;
  }
  .c-top-mv{
    width: 100%;
    height: calc(100vh - 173px);
  }
  .c-top-mv img{
    width: 100%;
    height: calc(100vh - 173px);
    object-fit: cover;
    vertical-align: bottom;
    cursor: pointer;
  }
  .c-top-mv li{
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-top-mv-thumb{
    margin: 3px 0 0;
    width: 100%;
    height: 100px;
  }
  .c-top-mv-thumb li img{
    width: 100%;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    vertical-align: bottom;
  }
}
@media screen and (min-width:768px){
  .c-top-intro{
    height: 100vh;
    padding: 180px 0 0;
    position: relative;
    max-height: 1200px;
  }
  .c-top-mv-thumb{
    display: none;
  }
  .c-top-intro--title{
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 600;
    margin: 0 0 70px;
    line-height: 1.5;
    text-align: center;
  }
  .c-top-mv{
    width: 100%;
    height: calc(100vh - 320px);
    max-height: 1200px;
  }
  .c-top-mv .slick-slide{
    width: auto;
  }
  .c-top-mv .slick-slide img{
    width: 100%;
    height: calc(100vh - 320px);
    object-fit: cover;
    max-height: 1200px;
  }
}
.c-top-flexible{
  padding: 60px 0 70px;
  background-color: var(--color-white);
  background: url(./img/common/bg.jpg) 0 0 repeat;
}
.c-top-flexible--img{
  margin: 0 0 30px;
}
.c-top-flexible--txt{
  margin: 0 0 45px;
}
.c-top-img{
  width: 100%;
  height: 550px;
}
.c-top-img::before{
  content: '';
  display: block;
  position: fixed;
  top: 70px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - 70px);
  background: url(./img/top/bg-sp.jpg);
  background-size: cover;
}
.c-top-processing{
  background-color: var(--color-white);
  padding: 60px 0 60px;
}
.c-top-prosessing-txt{
  margin: 0 0 45px;
}
.l-top-prosessing-imgarea{
  margin: 30px 0 0;
  overflow: hidden;
}
.l-top-prosessing-imgarea img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.c-top-prosessing-imglist{
  width: 100%;
  height: 150px;
}
@media screen and (max-width:767px){
  .c-spgallery{
    line-height: 0;
  }
  .c-spgallery .slick-slide img{
    width: auto;
    height: 150px;
    object-fit: contain;
  }
}
.c-top-assignment{
  padding: 60px 0 70px;
  background-color: var(--color-white);
  background: url(./img/common/bg.jpg) 0 0 repeat;
}
.c-top-assignment .c-sec-title{
  margin-bottom: 20px;
}
.c-top-assignment-txt{
  margin: 0 0 30px;
  text-align: center;
}
.c-top-assignment-list{
  display: grid;
  gap: 10px;
  margin: 0 0 45px;
}
.c-top-assignment-list li{
  background-color: var(--color-white);
  padding: 10px 15px 10px 40px;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative
}
.c-top-assignment-list li::before{
  content: '';
  display: block;
  width: 13px;
  height: 15px;
  background: url(./img/common/ico-checkmark.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 15px;
  left: 15px;
}
.c-top-casestudy{
  padding: 60px 0 101px;
  background-color: var(--color-white);
  overflow: hidden;
}
.l-casestudy-listarea{
  margin: 0 0 40px;
  position: relative;
}
.l-casestudy-listarea .slide-arrow{
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  position: absolute;
  top: -70px;
  cursor: pointer;
}
.l-casestudy-listarea .prev-arrow{
  background: url(./img/common/ico-arrow-white-prev.svg);
  right: 60px;
}
.l-casestudy-listarea .next-arrow{
  background: url(./img/common/ico-arrow-white-next.svg);
  right: 0;
}
.l-casestudy-listarea .slick-list{
  overflow: visible !important;
}
.l-casestudy-listarea .slick-track{
  gap: 30px;
}
.c-casestudy-list a{
  display: block;
  text-decoration: none;
}
.c-casestudy--img{
  width: 270px;
  margin: 0 0 15px;
}
.c-casestudy--img img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-categorylist > li{
  border-radius: 15px;
  background-color: var(--color-gray2);
  padding: 5px 10px;
  font-size: 1.1rem;
  line-height: 1;
}
.c-categorylist{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.c-casestudy .c-sec-title{
  margin-bottom: 35px;
  text-align: center;
}
.l-contents .c-casestudy .c-button{
  display: none !important;
}
.c-casestudy--txt{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px;
}
.c-casestudy--txt::before{
  order: 2;
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: url(./img/common/ico-arrow-case-next.svg) no-repeat 0 0;
  background-size: 22px;
}
.c-casestudy--txt p{
  font-size: 1.4rem;
}
@media screen and (max-width:767px){
  .l-casestudy-listarea .slide-arrow{
    display: none !important;
  }
}
@media screen and (min-width:768px){
  .c-top-flexible{
    padding: 120px 0;
  }
  .c-top-flexible .c-sec-inner{
    padding: 0 0 0 50px;
  }
  .c-top-flexible--img{
    margin: 0;
    width: 600px;
    height: 420px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .c-top-flexible--img img{
    object-fit: cover;
  }
  .c-top-flexible--txt{
    width: 470px;
    margin-bottom: 70px;
  }
  .c-top-img{
    width: 100%;
    height: 600px;
    background: url(./img/top/bg-pc.jpg) center top no-repeat;
    background-attachment: fixed;
    background-size: cover;
  }
  .c-top-img::before{
    content: none;
  }
  .c-top-processing{
    padding: 120px 0 130px;
    width: 100%;
    min-width: 1200px;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
  }
  .c-top-processing .c-sec-inner{
    width: 580px;
    padding: 0;
    position: absolute;
    top: 140px;
    left: calc(50% + 20px);
  }
  .c-top-prosessing-txt{
    margin: 0 0 70px;
  }
  .l-top-prosessing-imgarea{
    width: calc(50% - 150px);
    margin: 0;
    min-width: 530px;
  }
  .c-top-prosessing-imglist{
    display: grid;
    grid-template-columns: 251fr 272fr;
    grid-template-rows: 355fr 297fr;
    gap: 10px;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .c-top-prosessing-imglist li:nth-of-type(1){
    grid-area: 1 / 1 / 2 / 3;
  }
  .c-top-prosessing-imglist li:nth-of-type(2){
    grid-area: 2 / 1 / 3 / 2;
  }
  .c-top-prosessing-imglist li:nth-of-type(3){
    grid-area: 2 / 2 / 3 / 3;
  }
  .c-top-prosessing-imglist li img{
    height: auto;
  }
  .c-top-assignment{
    padding: 90px 0 100px;
  }
  .c-top-assignment .c-sec-title{
    text-align: center;
  }
  .c-top-assignment-txt{
    margin-bottom: 50px;
  }
  .c-top-assignment-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
  .c-top-assignment-list li{
    padding: 20px 25px 20px 55px;
    font-size: 1.6rem;
  }
  .c-top-assignment-list li::before{
    width: 17px;
    height: 17px;
    top: 25px;
    left: 25px;
  }
  .c-top-assignment .c-button{
    display: grid;
    place-content: center;
  }
  .c-top-casestudy{
    padding: 110px 0 120px;
  }
  .c-casestudy .c-sec-title{
    text-align: left;
    margin: 0 0 40px;
  }
  .l-casestudy-listarea{
    margin-bottom: 50px;
  }
  .l-casestudy-listarea .slide-arrow{
    top: -80px;
  }
  .l-casestudy-listarea .slick-list{
    display: flex;
    gap: 25px;
  }
  .l-casestudy-listarea .slick-slide{
    width: 300px;
  }
  .c-casestudy--img{
    width: 100%;
  }
  .c-categorylist > li{
    padding: 7px 13px;
    font-size: 1rem;
  }
  .c-casestudy--txt::before{
    width: 25px;
    height: 25px;
    top: 0;
    right: 0;
  }
  .c-casestudy--txt::after{
    width: 7px;
    height: 7px;
    top: 9px;
    right: 10px;
  }
  .c-top-casestudy .c-button{
    display: grid;
    place-content: center;
  }
}
.c-top-txt{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.c-top-txt p{
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (min-width:768px){
  .c-top-txt{
    gap: 25px;
  }
  .c-top-txt p{
    font-size: 1.6rem;
    line-height: 2.2;
  }
}

/* Contents Header
=================================================================*/
.c-contents-header{
  display: grid;
  place-content: center;
  height: 250px;
  margin: 0 10px;
  background-color: var(--color-black);
  background-image: url(./img/common/logomark.svg);
  background-repeat: no-repeat;
  background-size: 96px 125px;
  background-position: right 10px bottom 0;
}
.c-contents--title{
  margin: 0 0 5px;
  padding: 20px 0 0;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}
.c-contents--subtitle{
  color: var(--color-point);
  font-family: var(--font-eng);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  line-height: 2.2;
  text-align: center;
}
@media screen and (min-width:768px){
  .c-contents-header{
    width: 93%;
    min-width: 1100px;
    margin: 0 3.5%;
    height: 310px;
    background-size: 187px 245px;
    background-position: right 42px bottom 0;
  }
  .c-contents--title{
    padding-top: 11px;
    font-size: 3rem;
  }
  .c-contents--subtitle{
    font-size: 1.2rem;
  }
}

/* Breadscrumb
=================================================================*/
.c-breadscrumb{
  margin: 10px 20px 60px;
}
.c-breadscrumb-list{
  display: flex;
  flex-wrap: wrap;
}
.c-breadscrumb-list li{
  display: flex;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2.7;
  opacity: 0.6;
}
.c-breadscrumb-list li:has(a){
  opacity: 1;
}
.c-breadscrumb-list li:has(a)::after{
  content: '';
  display: block;
  width: 7px;
  height: 1px;
  background-color: var(--color-black);
  margin: 0 8px;
}
.c-breadscrumb-list li a{
  text-decoration: none;
}
@media screen and (min-width:768px){
  .c-breadscrumb{
    width: 93%;
    margin: 10px 3.5% 60px;
  }
}

/* Post
=================================================================*/
.c-post{
  padding: 0 20px 60px;
  margin: 0 0 40px;
  position: relative;
}
.c-post::after{
  content: '';
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  background-color: var(--color-gray2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-post > h1,
.c-post--title{
  margin: 0 0 41px;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.7;
  text-align: center;
}
.c-post > h2,
.c-post-title-1{
  margin: 0 0 26px;
  padding: 0 0 0 20px;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
}
.c-post > h2{
  margin-top: 60px
}
.c-post > h2::before,
.c-post-title-1::before{
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  background-color: var(--color-point);
  position: absolute;
  top: 14px;
  left: 0;
}
.c-post > h3,
.c-post-title-2{
  margin: 0 0 25px;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.c-post > h3{
  margin-top: 50px;
}
.c-post > p{
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin: 30px 0;
}
.c-post > p:last-child{
  margin-bottom: 0;
}
.c-post > img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 30px 0;
}
.c-post > a,
.c-post-link a{
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.c-post > a:not(:last-child),
.c-post-link a:not(:last-child){
  margin-bottom: 10px;
}
.c-post > a::before,
.c-post-link a::before{
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/ico-arrow-green-next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-post-intro{
  padding: 0 0 50px;
  border-bottom: 1px solid #D8D8D8;
}
.c-post-intro p{
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.c-post-section{
  padding: 40px 0;
}
.c-post-mainimg{
  margin-bottom: 50px;
}
.c-post-mainimg img{
  width: 100%;
  height: auto;
}
.c-post-img{
  margin: 30px 0;
}
.c-post-img:last-child{
  margin-bottom: 0;
}
.c-post-img img{
  width: 100%;
  height: auto;
}
.c-post-column{
  margin: 43px 0 0;
}
.c-post-link{
  font-size: 1.5rem;
  margin-top: 30px;
}
.c-grid-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 17px;
  margin: 18px 0 0;
}
.c-grid-list--txt{
  margin: 0 0 5px;
}
.c-grid-list--txt p{
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 2.26;
}
.c-grid-list--img img{
  width: 100%;
  height: auto;
}
.c-post > table,
.c-post-table{
}
.c-post > table{
  margin: 25px 0;
  overflow-x: scroll;
}
.c-post > table th,
.c-post-table th{
  background-color: var(--color-gray3);
  min-height: 39px;
  padding: 5px 10px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: left;
  border-right: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.c-post > table th:last-of-type,
.c-post-table th:last-of-type{
  border-right: none;
}
.c-post > table td,
.c-post-table td{
  padding: 10px;
  border-right: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  white-space: wrap;
}
.c-post > table td:first-of-type,
.c-post-table td:first-of-type{
  border-left: 1px solid #D8D8D8;
}
.c-post > table td:last-of-type,
.c-post-table td:last-of-type{
  border-left: none;
}
.c-post-button{
  display: grid;
  place-content: center;
  margin-top: 40px;
}
@media screen and (min-width:768px){
  .c-post{
    width: 890px;
    padding: 0 45px 80px;
    margin: 0 auto;
  }
  .c-post::after{
    width: calc(100% - 90px);
  }
  .c-post > h1,
  .c-post--title{
    font-size: 3.8rem;
    letter-spacing: 0.05em;
  }
  .c-post > h2,
  .c-post-title-1{
    margin-bottom: 41px;
    padding-left: 30px;
    font-size: 2.4rem;
    letter-spacing: 0.04em;
    line-height: 1.1;
  }
  .c-post > h2{
    margin-top: 60px;
  }
  .c-post > h2::before,
  .c-post-title-1::before{
    width: 15px;
  }
  .c-post > h3,
  .c-post-title-2{
    margin-bottom: 30px;
    font-size: 2rem;
    line-height: 1.4;
  }
  .c-post > h3{
    margin-top: 60px;
  }
  .c-post > p{
    font-size: 1.5rem;
    line-height: 2;
  }
  .c-post > a,
  .c-post-link a{
    font-size: 1.5rem;
  }
  .c-post > a:hover,
  .c-post-link a:hover{
    transform: translateX(15px);
  }
  .c-post-intro{
    padding-bottom: 61px;
    text-align: center;
  }
  .c-post-intro p{
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    line-height: 2;
  }
  .c-post-section{
    padding: 40px 0px;
  }
  .c-post-section:first-of-type{
    padding-top: 60px;
  }
  .c-post-mainimg{
    margin-bottom: 30px;
  }
  .c-post-img{
    margin: 30px 0;
  }
  .c-post-img:last-child{
    margin-bottom: 0;
  }
  .c-post-column{
    margin: 61px 0 0;
  }
  .c-post-link{
    margin-top: 30px;
  }
  .c-grid-list{
    grid-template-columns: repeat(6, 1fr);
    gap: 21px 15px;
    margin-top: 62px;
  }
  .c-post > table,
  .c-post-table{
    width: 100%;
  }
  .c-post > table{
    margin: 30px 0;
  }
  .c-post > table th,
  .c-post-table th{
    min-height: 40px;
    padding: 10px 20px;
    font-size: 1.4rem;
  }
  .c-post > table td,
  .c-post-table td{
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .c-post-button{
    margin-top: 60px;
  }
}
.l-post-works-titlearea{
  padding: 0 0 40px;
  border-bottom: 1px solid #D8D8D8;
  margin: 0 0 60px;
}
.c-post-works--title{
  margin: 0 0 21px;
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}
.c-post-categorylist{
  display: flex;
  gap: 10px;
  justify-content: center;
}
.c-post-item .c-post-categorylist li{
  display: grid;
  place-content: center;
  width: auto;
  height: 25px;
  padding: 0 10px;
  background-color: #E9E9E9;
  border-radius: 13px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}
.l-post-works-titlearea .c-post-categorylist li a{
  display: grid;
  place-content: center;
  width: auto;
  height: 25px;
  padding: 0 10px;
  background-color: #E9E9E9;
  border-radius: 13px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}
.c-post-gray-table{
  width: 100%;
}
.c-post-gray-table{
  margin: 22px 0 0;
}
.c-post-gray-table th,
.c-post-gray-table td{
  padding: 15px 20px;
  background-color: #F3F3F3;
  border-bottom: 1px solid var(--color-white);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 2.3;
  text-align: left;
}
.c-post-gray-table th{
  width: 90px;
}
.c-casestudy{
  background-color: #F3F3F3;
  padding: 61px 0 100px;
  overflow: hidden;
}
.c-casestudy .c-categorylist li{
  background-color: var(--color-white);
}
.c-casestudy .c-button{
  display: grid;
  place-content: center;
}
@media screen and (min-width:768px){
  .l-post-works-titlearea{
    padding-bottom: 60px;
  }
  .c-post-works--title{
    margin-bottom: 31px;
    font-size: 3.7rem;
  }
  .c-post-gray-table{
    margin-top: 61px;
  }
  .c-post-gray-table th,
  .c-post-gray-table td{
    padding: 15px 20px;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 2.3;
    text-align: left;
  }
  .c-post-gray-table th{
    width: 120px;
  }
}
.l-post-galleryarea{
  width: 100%;
  overflow: hidden;
}
.c-post-gallery img,
.c-post-thumb img{
  display: block;
  height: auto;
  width: 100%;
  cursor: pointer;
}
.c-post-gallery img{
  height: auto;
  /*
  height: calc(223 * 100 / 375 * 1vw);
  object-fit: cover;
  */
}
.c-post-thumb .slick-track {
  transform: unset !important;
  width: 100% !important;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  gap: 10px;
}
.c-post-thumb .slick-slide{
  display: block!important;
  float: none !important;
  flex: 0 0 13%;
}
.c-post-thumb .slick-slide img{
  /*
  height: 70px;
  object-fit: cover;
  */
}
@media screen and (min-width:768px){
  .c-post-gallery{
    margin: 0 0 15px;
  }
  .c-post-gallery img{
    /*
    height: 533px;
    object-fit: cover;
    */
  }
}
.c-post-category-list{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  margin: 0 0 50px;
}
.c-post-category-list li a{
  padding: 7px 15px 7px 30px;
  border: 1px solid #D8D8D8;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 2.5;
  position: relative;
}
.c-post-category-list li a::after{
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background-color: #D8D8D8;
  position: absolute;
  top: 13px;
  left: 15px;
}
.c-post-category-list .is-active a::after{
  background-color: var(--color-point);
}
.l-post-gridarea{
  display: grid;
  gap: 40px;
  margin: 0 0 49px;
}
.c-post-item a{
  text-decoration: none;
}
.c-post-item--img{
  margin: 0 0 20px;
}
.c-post-item--title{
  margin: 0 0 15px;
  font-size: 1.5rem;
  font-weight: 400px;
  letter-spacing: 0.03em;
}
.c-post-item--img img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.c-post-item .c-post-categorylist{
  justify-content: start;
}
.c-pagenation{
  display: grid;
  place-content: center;
}
.c-pagenation .wp-pagenavi{
  display: flex;
  gap: 3px;
  align-items: center;
}
.c-pagenation .previouspostslink,
.c-pagenation .nextpostslink{
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.c-pagenation .previouspostslink{
  background-image: url(./img/common/ico-arrow-prev.svg);
}
.c-pagenation .nextpostslink{
  background-image: url(./img/common/ico-arrow-next.svg);
}
.wp-pagenavi .pages {
  display: none;
}
.c-pagenation .page
.c-pagenation .current{
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.c-pagenation .page{
  text-decoration: none;
}
.c-pagenation a {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.c-pagenation a.first,
.c-pagenation a.last {
  width: auto;
  font-size: 1.3rem;
}
.c-pagenation .current{
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 100%;
}
@media screen and (min-width:768px){
  .c-post-category-list{
    margin-bottom: 68px;
  }
  .c-post-category-list li a{
    padding: 8px 18px 8px 33px;
    font-size: 1.5rem;
  }
  .c-post-category-list li a::after{
    top: 15px;
  }
  .l-post-gridarea{
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
    margin-bottom: 80px;
  }
  .c-post-item--title{
    margin-bottom: 5px;
  }
  .c-pagenation .wp-pagenavi{
    gap: 10px;
  }
  .c-post-item--img{
    overflow: hidden;
  }
  .c-post-item--img img{
    transition: transform 0.3s ease;
  }
  .c-post-item--img img:hover{
    transform: scale(1.05);
  }
}

/* Article / Section
=================================================================*/
.c-article-intro{
  padding: 0 0 50px;
  border-bottom: 1px solid #D8D8D8;
  position: relative;
}
.c-article-intro--title{
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
.c-article-intro--img{
  margin: 30px 0;
}
.c-article-intro--img img{
  width: 100%;
  height: auto;
}
.c-section{
  padding: 50px 0;
  border-bottom: 1px solid #D8D8D8;
  position: relative;
}
.c-section:last-child{
  padding-bottom: 0;
  border-bottom: none;
}
.c-section-title{
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.c-section--img{
  margin: 30px 0;
}
.c-section--img img{
  width: 100%;
  height: auto;
}
@media screen and (min-width:768px){
  .c-article-intro{
    padding-bottom: 100px;
  }
  .c-article-intro--title{
    margin-bottom: 45px;
    font-size: 3rem;
  }
  .c-article-intro--img{
    margin: 0;
  }
  .c-section{
    padding: 80px 0;
  }
  .c-section-title{
    margin-bottom: 40px;
    font-size: 2.6rem;
    letter-spacing: 0.05em;
  }
  .c-section--img{
    margin: 0;
  }
}

/* About
=================================================================*/
.c-about-num{
  color: #EEEEEE;
  font-family: var(--font-eng);
  font-size: 5rem;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: -10;
}
.c-about-section--title:first-letter{
  color: var(--color-point);
}
@media screen and (min-width:768px){
  .c-about-intro{
    padding: 60px 0 100px 650px;
    min-height: 800px;
  }
  .c-article-intro--title{
    text-align: left;
  }
  .c-about-intro .c-article-intro--img{
    width: 570px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .c-about-num{
    font-size: 7rem;
    top: 40px;
    left: 0;
  }
  .c-about-section{
    padding-right: 550px;
    min-height: 500px;
  }
  .c-about-section .c-section--img{
    width: 450px;
    position: absolute;
    top: 80px;
    right: 0;
  }
}
.c-tab-menu {
  cursor: pointer;
}
.c-tab-content{
    display: none;
    opacity: 0;
}
.c-tab-content.is-tab-active{
    display: block;
    animation-name: fadein;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 1;
}
.c-plating-intro{
  border-bottom: none;
}
.c-plating-intro .c-article-intro--title{
  text-align: left;
}
.c-plating-main{
  background-color: #F3F3F3;
}
.c-contents-body:has(.c-plating-main){
  padding-bottom: 0;
}
.c-plating-menu{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.c-plating-menu-tab{
  display: grid;
  justify-content: center;
  align-items: center;
  height: 50px;
  background-color: #E9E9E9;
  color: #AEAEAE;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 2.5;
  transition: color 0.3s ease, background-color 0.3s ease;
  position: relative;
}
.c-plating-menu-tab.is-tab-active{
  background-color: var(--color-point);
  color: var(--color-white);
}
.c-plating-menu-tab.is-tab-active::after{
  content: '';
  display: block;
  width:0;
  height:0;
  border-style: solid;
  border-width: 0 6px 8px 6px;
  border-color: transparent transparent #F3F3F3 transparent;
  position: absolute;
  bottom: 0;
  left: calc(50% - 6px);
}
.c-plating-content{
  padding: 30px 20px 0;
}
.c-plating-info{
  background-color: var(--color-white);
  padding: 25px 25px 30px;
  margin: 0 0 45px;
}
.c-plating-info--title{
  margin: 0 0 16px;
  color: var(--color-point);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.67;
}
.c-plating-main-section{
  padding: 50px 0 45px;
}
.c-plating-main-section:first-of-type{
  border-top: 1px solid var(--color-white);
}
.c-plating-main-section:not(:last-child){
  border-bottom: 1px solid var(--color-white);
}
.l-num-titlearea{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.c-plating-section--num{
  color: var(--color-point);
  font-family: var(--font-eng);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.c-plating-section--title{
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.c-plating-section--img{
  margin: 0 0 30px;
}
.c-plating-section--img img{
  width: 100%;
  height: auto;
}
@media screen and (min-width:768px){
  .c-plating-intro{
    position: relative;
    padding-left: 660px;
  }
  .c-article-intro--img{
    width: 565px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-plating-tabarea{
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    width: calc(1100px + 7%);
    padding: 0 3.5%;
    margin: 0 auto;
  }
  .l-tab-menuarea{
    position: relative;
  }
  .c-plating-menu{
    grid-template-columns: 1fr;
    padding-top: 60px;
    position: sticky;
    top: 160px;
    left: 0;
  }
  .l-tab-menuarea{
    position: relative;
  }
  .c-plating-menu-tab{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 20px;
    background-color: var(--color-white);
    font-size: 1.6rem;
    margin: 0 0 2px;
  }
  .c-plating-menu-tab.is-tab-active::after{
    display: none;
  }
  .c-plating-menu-tab.is-tab-active{
    color: var(--color-point);
    background-color: var(--color-white);
  }
  .c-plating-menu-tab.is-tab-active::before{
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--color-point);
  }
  .c-plating-content{
    padding: 60px 0 0;
  }
  .c-plating-info{
    background-color: var(--color-white);
    padding: 40px 40px;
    margin-bottom: 55px;
  }
  .c-plating-info--title{
    margin-bottom: 26px;
    font-size: 2.1rem;
  }
  .c-plating-main{
    padding-bottom: 120px;
  }
  .c-plating-main-section{
    padding: 50px 0;
    padding-left: 360px;
    position: relative;
    min-height: 330px;
  }
  .c-plating-main-section:last-child{
    padding-bottom: 0;
    min-height: 280px;
  }
  .l-num-titlearea{
    display: block;
    margin-bottom: 30px;
  }
  .c-plating-section--num{
    margin: 0 0 5px;
    font-size: 1.2rem;
  }
  .c-plating-section--title{
    font-size: 2.4rem;
  }
  .c-plating-section--img{
    width: 310px;
    margin: 0;
    position: absolute;
    top: 50px;
    left: 0;
  }
}

/* Simple Style
=================================================================*/
.l-chap-inner{
  padding: 0 20px;
  position: relative;
}
.c-chapter{
  position: relative;
}
.c-chapter:not(:last-child){
  margin: 0 0 70px;
}
.c-chapter-title{
  display: block;
  margin: 0 0 30px;
  padding: 0 0 0 13px;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}
.c-chapter-title::before{
  content: '';
  display: block;
  width: 3px;
  height: 26px;
  background-color: var(--color-point);
  position: absolute;
  top: 6px;
  left: 0;
}
@media screen and (min-width:768px){
  .l-chap-inner{
    width: calc(850px + 7%);
    padding: 0 3.5%;
    margin: 0 auto;
  }
  .c-chapter:not(:last-child){
    margin-bottom: 100px;
  }
  .c-chapter-title{
    margin-bottom: 40px;
    padding-left: 17px;
    font-size: 2.6rem;
  }
  .c-chapter-title::before{
    height: 37px;
    top: 4px;
    left: 0;
  }
}
.c-faq{
  padding: 20px;
  border-radius: 2px;
  background-color: var(--color-gray1);
}
.c-faq:not(:last-child){
  margin-bottom: 20px;
}
.c-faq-title{
  margin: 0 0 20px;
  color: var(--color-point);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.9;
}
.c-faq--txt{
  display: grid;
  gap: 20px;
  padding: 0 0 0 20px;
  border-left: 1px solid #BFBFBF;
}
.c-faq--txt p{
  font-size: 1.3rem;
  letter-spacing: 0.4;
  line-height: 1.8;
}
.c-faq--txt a{
  display: inline-block;
  color: var(--color-point);
}
.c-faq--img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width:768px){
  .c-faq{
    padding: 30px;
  }
  .c-faq:not(:last-child){
    margin-bottom: 30px;
  }
  .c-faq-title{
    font-size: 1.5rem;
  }
  .c-faq--txt{
    padding-left: 26px;
  }
  .c-faq--txt p{
    font-size: 1.5rem;
  }
  .c-faq--img{
    width: auto;
  }
}
.l-pagenavarea{
  margin: 0 0 70px;
}
.c-pagenav{
  width: 300px;
  margin: 0 auto;
}
.c-pagenav li a{
  display: grid;
  align-items: center;
  width: 100%;
  padding: 20px 35px 15px 0;
  border-bottom: 1px solid #D8D8D8;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-decoration: none;
  position: relative;
}
.c-pagenav li a::after{
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(./img/common/ico-arrow-down.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
}
@media screen and (min-width:768px){
  .l-pagenavarea{
    margin-bottom: 90px;
    position: relative;
  }
  .c-pagenav{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
    padding: 0;
  }
  .c-pagenav li{
    height: 100%;
  }
  .c-pagenav li a{
    height: 100%;
    padding: 0 35px 20px 0;
    font-size: 1.5rem;
  }
  .c-pagenav li a::after{
    top: calc(50% - 20px);
  }
}
.c-company-table{
  width: 100%;
}
.c-company-table tr:nth-of-type(odd){
  background-color: var(--color-gray1);
}
.c-company-table th,
.c-company-table td{
  padding: 20px 15px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.c-company-table th{
  width: 90px;
  text-align: left;
  font-weight: 400;
  vertical-align: top;
}
.c-company-table td > a{
  display: block;
  color: var(--color-point);
  margin: 10px 0 0;
}
@media screen and (min-width:768px){
  .l-company-pagenavarea{
    position: sticky;
    top: 160px;
    left: 0;
  }
  .c-pagenav.c-company-pagenav{
    display: block;
  }
  .c-pagenav.c-company-pagenav a{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    height: 70px;
    padding: 0 20px;
    background-color: #F3F3F3;
    color: #AEAEAE;
    font-size: 1.6rem;
    margin: 0 0 2px;
    border: none;
  }
  .c-pagenav a.is-now{
    color: var(--color-point);
  }
  .c-pagenav a.is-now:before{
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    background-color: var(--color-point);
  }
  .c-pagenav.c-company-pagenav a::after{
    content: none;
  }
  .c-equip-pagenav{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .c-company-table th,
  .c-company-table td{
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
  }
  .c-company-table th{
    width: 155px;
    padding: 20px 15px 20px 30px;
  }
  .c-company-table td{
    padding: 20px 15px;
  }
}
.c-article-intro.c-equip-intro{
  padding-bottom: 70px;
  border-bottom: none;
}
.c-equip-table{
  width: 100%;
  margin: 30px 0 0;
}
.c-equip-table th,
.c-equip-table td{
  padding: 20px 0;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
  border-bottom: 1px solid #D8D8D8;
}
.c-equip-table tr:first-of-type th,
.c-equip-table tr:first-of-type td{
  border-top: 1px solid #D8D8D8;
}
.c-equip-table th{
  font-weight: 400;
  text-align: left;
}
.c-equip-table td{
  width: 50px;
  text-align: right;
}
@media screen and (min-width:768px){
  .c-article-intro.c-equip-intro{
    padding-bottom: 100px;
  }
}
@media screen and (min-width:768px){
  .c-equip-table{
    margin-top: 50px;
  }
  .c-equip-table tbody{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
  }
  .c-equip-table tr{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 60px;
    white-space: nowrap;
  }
  .c-equip-table th,
  .c-equip-table td{
    font-size: 1.5rem;
  }
  .c-equip-table tr:nth-of-type(-n+3) th,
  .c-equip-table tr:nth-of-type(-n+3) td{
    border-top: 1px solid #D8D8D8;
  }
}
.c-gallery{
  line-height: 0;
}
.c-gallery .slick-slide img{
  width: auto;
  height: 144px;
  object-fit: contain;
}
@media screen and (min-width:768px){
  .c-gallery .slick-slide img{
    height: 314px;
  }
  .c-gallery.c-company-gallery{
  width: 820px;
  }
  .c-company-gallery .slick-slide{
    height: 214px;
  }
  .c-company-gallery .slick-slide img{
    width: 100%;
    height: 214px;
  }
}

/* Contact / Form
=================================================================*/
.c-contact-box{
  background-color: var(--color-gray1);
  border-radius: 2px;
  padding: 20px;
}
.c-contact-box--table{
  width: 100%;
}
.c-contact-box--table th{
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 2;
  text-align: left;
  width: 60px;
  vertical-align: top;
}
.c-contact-box--table tr:not(:last-of-type) td{
  padding-bottom: 16px;
}
.c-contact-box--table td a{
  display: block;
  margin: 0 0 4px;
  color: var(--color-point);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.c-contact-time{
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.l-contact-box-2col{
  display: grid;
  gap: 40px;
  counter-reset: contact 0;
}
.c-contact-box-col{
  position: relative;
}
.c-contact-box-col:nth-of-type(odd)::after{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D8D8D8;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.c-contact-ship--title{
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.c-contact-ship--title::before{
  content: counter(contact)'.';
  counter-increment: contact 1;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-contact-ship--txt{
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.c-dl-link a{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-point);
  text-decoration: underline;
}
.c-dl-link a::after{
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background: url(./img/common/ico-download.svg) 0 0 no-repeat;
  background-size: contain;
}
@media screen and (min-width:768px){
  .c-contact-box{
    padding: 30px 40px 35px;
  }
  .c-contact-box--table th{
    font-size: 1.4rem;
    width: 80px;
  }
  .c-contact-box--table td a{
    display: inline-block;
    font-size: 2.2rem;
    margin-right: 20px;
  }
  .c-tellink{
    text-decoration: none;
    cursor: initial;
    pointer-events: none;
  }
  .c-contact-time{
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
  }
  .l-contact-box-2col{
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    align-items: center;
  }
  .c-contact-box-col:nth-of-type(odd)::after{
    width: 1px;
    height: 100%;
    bottom: 0;
    left: calc(100% + 35px);
  }
  .c-contact-ship--title{
    margin-bottom: 25px;
    font-size: 1.5rem;
  }
  .c-contact-ship--title::before{
    font-size: 1.5rem;
  }
}
.c-form-table{
  width: 100%;
}
.c-form-table th{
  margin: 0 0 8px;
  font-weight: 400;
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.c-form-table td{
  margin: 0 0 30px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.c-form-table .must{
  color: var(--color-point);
  margin-left: 8px;
  font-size: 1.1rem;
}
.c-form-table input[type=text],
.c-form-table input[type=email]{
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid #D8D8D8;
  border-radius: 2px;
  min-height: 40px;
  padding: 5px 10px;
}
.c-form-table textarea{
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid #D8D8D8;
  border-radius: 2px;
  min-height: 120px;
  padding: 5px 10px;
}
.c-form-table select{
  width: 100%;
  background-color: #F6F6F6;
  border: 1px solid #D8D8D8;
  border-radius: 2px;
  min-height: 40px;
  padding: 5px 10px;
  appearance: none;
}
.c-form-select{
  position: relative;
}
.c-form-select::after{
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: url(./img/common/ico-miniarrow-down.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  top: 18px;
  right: 10px;
  pointer-events: none;
}
.c-form-table{
  padding-bottom: 30px;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 50px;
}
.c-form-table .checkbox-half{
  display: grid;
  gap: 8px;
}
.c-form-table .horizontal-item{
  display: block;
}
.c-form--txt{
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 2.1;
}
.c-form--txt a{
  color: var(--color-point);
}
.c-small-txt{
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.form-file{
  margin: 0 0 8px;
}
.c-form-longtxt{
  width: 100%;
  height: 250px;
  padding: 20px;
  overflow-y: scroll;
  border: 1px solid #D8D8D8;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.c-form-numlist{
  display: grid;
  gap: 20px;
  counter-reset: longtxt 0;
  margin: 20px 0 0;
}
.c-form-numlist li{
  display: flex;
  gap: 8px;
  align-items: start;
}
.c-form-numlist li::before{
  content: counter(longtxt)'.';
  counter-increment: longtxt 1;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.form-submit{
  margin: 40px;
}
.form-submit input{
  display: grid;
  place-content: center;
  min-width: 210px;
  height: 60px;
  margin: 0 auto;
  padding: 0 50px;
  line-height: 1.5;
  background-color: var(--color-black);
  border-radius: 30px;
  color: var(--color-white);
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
}
.form-submit input.btn-back {
  margin-top: 30px;
  background-color: #666;
}
.recaptcha_policy{
  font-size: 1.1rem;
  text-align: center;
}
.c-form input[type=checkbox]{
  display: none;
}
.mwform-checkbox-field{
  position: relative;
}
.c-form .mwform-checkbox-field-text::before{
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 17px;
  height: 17px;
  background-color: #F6F6F6;
  border: 1px solid #D8D8D8;
  margin: 0 10px 0 0;
  padding: 0;
  cursor: pointer;
}
.c-form .mwform-checkbox-field-text::after{
  content: '';
  display: none;
  width: 6px;
  height: 12px;
  border: 2px solid var(--color-point);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 6px;
}
.c-form input[type=checkbox]:checked + .mwform-checkbox-field-text::after{
  display: block;
}
.c-form-notice-txt{
  margin-bottom: 20px;
}
.c-form .form-file{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
}
.c-form .form-file:not(:last-child){
  margin-bottom: 10px;
}
.c-form ::file-selector-button{
  margin: 0 20px 0 0;
  padding: 5px 10px;
  background-color: #F6F6F6;
  border: 1px solid #D8D8D8;
  border-radius: 2px;
  min-height: 40px;
  appearance: none;
  position: relative;
  text-align: left;
}
.c-form .mwform-file-delete{
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
@media screen and (max-width:767px){
  .c-form-table tr,
  .c-form-table th,
  .c-form-table td{
    display: block;
  }
}
@media screen and (min-width:768px){
  .c-form-table th,
  .c-form-table td{
    margin: 0;
    vertical-align: top;
  }
  .c-form-table th{
    width: 240px;
    position: relative;
    font-size: 1.5rem;
    padding: 15px 30px 15px 0;
    vertical-align: top;
  }
  .c-form-table td{
    font-size: 1.5rem;
    padding: 15px 0;
  }
  .c-form-table .must{
    font-size: 1.2rem;
    float: right;
  }
  .c-form-table select{
    width: 220px;
    background-color: #F6F6F6;
    border: 1px solid #D8D8D8;
    border-radius: 2px;
    min-height: 40px;
    padding: 5px 10px;
    appearance: none;
  }
  .c-form-select{
    width: 220px;
    position: relative;
  }
  .c-form-table{
    padding-bottom: 45px;
    margin-bottom: 60px;
  }
  .c-form-table .checkbox-half{
    display: flex;
    gap: 30px;
  }
  .c-form--txt{
    display: grid;
    gap: 20px;
    font-size: 1.5rem;
  }
  .c-small-txt{
    font-size: 1.1rem;
  }
  .form-file{
    margin-bottom: 10px;
  }
  .c-form-longtxt{
    font-size: 1.3rem;
  }
  .c-form-numlist li::before{
    font-size: 1.2rem;
  }
  .form-submit{
    width: 250px;
    margin: 50px auto;
  }
  .form-submit input{
    width: 250px;
    font-size: 1.4rem;
  }
}


.only-confirm,
.mw_wp_form_confirm .confirm-hidden,
.mw_wp_form_confirm .form-txt,
.mw_wp_form_confirm .c-form-select::after {
  display: none !important;
}
.mw_wp_form_confirm .only-confirm {
  display: block;
}

.c-flow-table th{
  width: 115px;
}
.c-flow-box{
  display: grid;
  gap: 50px;
  background-color: #F3F3F3;
  padding: 30px 15px;
  margin: 30px 0 0;
}
.c-flow-step{
  position: relative;
}
.c-flow-step-num{
  color: var(--color-point);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.c-flow-step-num--txt{
  font-family: var(--font-eng);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 0;
  text-align: center;
}
.c-flow-step-num{
  font-family: var(--font-eng);
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
}
.c-flow-step--title{
  padding: 0 0 13px 40px;
  margin: 5px 0 30px;
  border-bottom: 1px solid var(--color-point);
  color: var(--color-point);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
.c-flow-step--txt{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.c-flow-step--txt p{
  font-size: 1.3rem;
}
.c-flow-link a{
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.c-flow-link a::before{
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/ico-arrow-green-next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-flow-contact{
  margin: 30px 0 0;
  background-color: var(--color-white);
  padding: 25px;
  text-align: center;
}
.c-flow-contact-tel{
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 12px;
  margin: 0 0 15px;
}
.c-flow-contact-tel::before{
  content: '';
  display: block;
  width: 25px;
  height: 25px;
  background: url(./img/common/ico-tel-black.svg) 0 0 no-repeat;
  background-size: contain;
}
.c-flow-contact-tel a{
  display: flex;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-decoration: none;
}
.c-flow-contact-time{
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 3;
}
.c-flow-step-col2{
  display: grid;
  gap: 20px;
  margin: 30px 0 0;
}
.c-flow-step-col{
  padding: 20px 15px;
  background-color: var(--color-white);
}
.c-flow-step-col--title{
  margin: 0 0 15px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.c-dotlist li{
  display: flex;
  align-items: start;
  gap: 5px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
.c-dotlist li::before{
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--color-point);
  border-radius: 100%;
  margin-top: 11px;
}
@media screen and (min-width:768px){
  .c-flow-table th{
    width: 220px;
  }
  .c-company-table.c-flow-table > a{
    display: flex;
    margin-top: -15px !important;
  }
  .c-flow-box{
    display: grid;
    gap: 50px;
    padding: 40px 60px 40px 145px;
    margin-top: 50px;
  }
  .c-flow-step::after{
    content: '';
    display: block;
    width: 1px;
    height: calc(100% - 85px);
    background-color: var(--color-point);
    position: absolute;
    top: 85px;
    left: -60px;
  }
  .c-flow-step-num{
    top: 15px;
    left: -77px;
  }
  .c-flow-step-num--txt{
    font-size: 1.5rem;
  }
  .c-flow-step-num{
    font-size: 5rem;
  }
  .c-flow-step--title{
    padding: 0;
    margin: 0 0 30px;
    border-bottom: none;
    color: var(--color-point);
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    line-height: 2;
  }
  .c-flow-step--txt p{
    font-size: 1.4rem;
  }
  .c-flow-contact{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    width: 516px;
    text-align: left;
  }
  .c-flow-contact-tel{
    margin: 10px 0 0;
  }
  .c-flow-contact-tel a{
    display: block;
    font-size: 2.3rem;
  }
  .c-flow-contact-time{
    font-size: 1rem;
  }
  .c-flow-contact-button a{
    min-width: 220px;
    padding: 0;
    font-size: 1.4rem;
  }
  .c-flow-step-col2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 680px;
    margin: 50px 0 0;
  }
  .c-flow-step-col{
    padding: 20px;
  }
  .c-flow-step-col--title{
    font-size: 1.5rem;
  }
  .c-flow-link a{
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .c-flow-link a:hover{
    transform: translateX(15px);
  }
}
.l-flow-strengtharea{
  display: grid;
  gap: 20px;
}
.c-flow-strength{
  display: grid;
  place-content: center;
  width: 100%;
  height: 160px;
  background-color: var(--color-black);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.c-flow-strength::after{
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  background: url(./img/common/ico-plus.svg);
  position: absolute;
  left: calc(50% - 14px);
  bottom: 30px;
}
.c-flow-strength--num{
  color: #393939;
  font-family: var(--font-eng);
  font-style: italic;
  font-weight: 700;
  font-size: 9.8rem;
  letter-spacing: -0.05em;
  line-height: 1;
  position: absolute;
  bottom: -10px;
  right: 0;
}
.c-flow-strength--title{
  color: var(--color-white);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-bottom: 40px;
}
.c-flow-strength--title .c-small-txt{
  display: block;
  font-size: 1.3rem;
}
.c-popup-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 100;
}
.l-popuparea{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 150;
}
.c-strengh-example{
  background-color: var(--color-white);
  margin: 0 auto;
  padding: 40px 20px;
  width: calc(100% - 40px);
  height: calc(100% - 180px);
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 200;
  overflow-y: scroll;
}
.c-close-btn{
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 50px;
  left: calc(50% - 20px);
  z-index: 300;
}
.c-close-btn::after{
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url(./img/common/ico-close.svg);
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.c-popup--title{
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.c-strengh-ex--txt{
  margin: 40px 0 15px;
}
.c-strength-listbox{
  background-color: #F3F3F3;
  padding: 20px;
}
.c-strength-list{
  display: grid;
  gap: 15px;
}
.c-strength-list li{
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}
.c-strength-listbox li::before{
  content: '';
  display: block;
  width: 20px;
  height: 17px;
  background: url(./img/common/ico-check.svg) 0 0 no-repeat;
  object-fit: contain;
  margin-top: 5px;
}
.c-company-table-link a{
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.c-company-table-link a::before{
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(./img/common/ico-arrow-green-next.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-strength-gallery-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}
.c-strength-gallery-list li{
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}
.c-strength-gallery-lis li img{
  display: block;
}
.c-strength-gallery-lis li img:not(:last-child){
  margin: 0 0 5px;
}
.c-strengh-ex--box{
  background-color: #F3F3F3;
  padding: 20px 15px;
  font-size: 1.3rem;
  margin: 0 0 40px;
}
.c-company-contact{
  margin: 15px 0;
}
.c-company-contact li{
  display: flex;
  gap: 10px;
}
.c-company-contact--title{
  width: 55px;
}
.c-company-table.c-flow-table a{
  display: inline-block;
}
.c-company-table-link a{
  display: flex !important;
}
@media screen and (min-width:768px){
  .l-flow-strengtharea{
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .c-flow-strength{
    height: 195px;
  }
  .c-flow-strength::after{
    bottom: 40px;
  }
  .c-flow-strength--num{
    font-size: 11.8rem;
  }
  .c-flow-strength--title{
    font-size: 1.8rem;
  }
  .c-flow-strength--title .c-small-txt{
    display: block;
    font-size: 1.5rem;
  }
  .c-strengh-example{
    background-color: var(--color-white);
    margin: 0 auto;
    padding: 50px 160px;
    width: 1100px;
    height: auto;
    position: fixed;
    top: 80px;
  }
  .c-close-btn{
    width: 50px;
    height: 50px;
    position: fixed;
    top: 100px;
    bottom: auto;
    left: calc(50% + 470px);
    right: 20px;
    z-index: 1000;
  }
  .c-close-btn::after{
    width: 50px;
    height: 50px;
    background: url(./img/common/ico-close-black.svg);
  }
  .c-popup--title{
    margin-bottom: 40px;
    font-size: 2.6rem;
    text-align: center;
  }
  .c-strength-listbox{
    padding: 25px;
  }
  .c-strength-list li{
    font-size: 1.5rem;
  }
  .c-strength-listbox li::before{
    margin-top: 10px;
  }
  .c-strength-gallery-list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .c-strength-gallery-list li{
    font-size: 1.5rem;
  }
  .c-strengh-ex--box{
    background-color: #F3F3F3;
    padding: 15px 20px;
    font-size: 1.5rem;
  }
  .c-company-contact{
    display: flex;
    margin: 0;
  }
  .c-company-contact li{
    display: flex;
    align-items: center;
    gap: 0;
  }
  .c-company-contact li:not(:last-of-type)::after{
    content: '/';
    margin: 0 15px;
    display: block;
  }
  .c-company-contact--title{
    display: flex;
    align-items: center;
    width: auto;
  }
  .c-company-contact--title::after{
    content: '：';
    display: block;
  }
  .c-flow-table .u-tel{
    color: initial;
    text-decoration: none;
    pointer-events: none;
  }
}

/* JavaScriptが有効な場合、対象を隠す */
html.enable-javascript .slick-slider{
  visibility: hidden;
}
/* 画像すべてを読み終えたら、対象を表示する */
html.enable-javascript.window-load .slick-slider{
  visibility: visible;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}