@charset "UTF-8";

/*normalize: http://necolas.github.io/normalize.css/*/

/* Box sizing rules */

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

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
ul,
ol,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol{
  list-style: none;
}

/* Set core root defaults */

/* html:focus-within {
  scroll-behavior: smooth;
} */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

:root {
  --text-color:#000000;
  --prevNext-loupeScale: 0;
  --prevNext-loupeX: 0;
  --prevNext-loupeY: 0;
  --wp--preset--color--base:#fff;
}

/* ==========================================================================
  アニメーション
========================================================================== */

@keyframes menuFadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes menuFadeOut {
  0%{
    opacity: 1;
  }
  99%{
    opacity: 0;
  }
  100%{
    opacity: 0;
    display: none;
  }
}

@keyframes menuIn {
  0%{
    display: grid;
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

@keyframes fadeOut {
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

/*左から表示*/

.rollX {
  position: relative;
}

.rollX::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #932323;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left top;
    z-index: 10;
  }

.rollX >*{
    opacity: 0;
    transition: opacity .2s linear;
    transition-delay: .8s;
  }

.animeAction.rollX::before {
    animation: rollX 1.2s 1 .2s cubic-bezier(0.5, 0, 0, 1) forwards;
  }

.animeAction.rollX >*{
    opacity: 1;
  }

@keyframes rollX{
  0%{
    transform: scaleX(0);
    transform-origin: left top;
  }
  50%{
    transform: scaleX(1);
    transform-origin: left top;
  }
  51%{
    transform: scaleX(1);
    transform-origin: right top;
  }
  100%{
    transform: scaleX(0);
    transform-origin: right top;
  }
}

/*ぺらっと文字*/

.textRoll{
  display: inline-flex;
  justify-content: flex-start;
  overflow: hidden;
}

.textRoll .wall{
    overflow: hidden;
    transform: translate3d(-101%, 0, 0);
    transition: transform 1.6s cubic-bezier(0.5, 0, 0, 1);
  }

.textRoll .wall .text{
      transform: translate3d(101%, 0, 0);
      transition: transform 1.6s cubic-bezier(0.5, 0, 0, 1);
    }

.animeAction.textRoll .wall{
    transform: translate3d(0, 0, 0);
  }

.animeAction.textRoll .wall .text{
      transform: translate3d(0, 0, 0);
    }

.animeAction.homeMVchara1,
.animeAction.sp_homeMVchara1{
  animation-delay: 1.9s;
}

.animeAction.homeMVchara2,
.animeAction.sp_homeMVchara2{
  animation-delay: 2.8s;
}

.animeAction.homeMVchara3{
  animation-delay: 3.7s;
}

/* ページタイトルアニメーション */

.markAnimeBox .text1{
    opacity: 0;
  }

.markAnimeBox .mark{
    opacity: 0;
  }

.markAnimeBox .text2{
    opacity: 0;
  }

.markAnimeBox.markAnimeAction .text1{
    animation: fadeInLeft .8s 1 0s ease-in-out forwards;
  }

.markAnimeBox.markAnimeAction .mark{
    animation: rotate2 .8s 1 0s ease-out forwards;
  }

.markAnimeBox.markAnimeAction .text2{
    animation: fadeInLeft .8s 1 0s ease-in-out forwards;
  }

/* triangleTitleアニメーション */

.triangleTitle .triangle{
    opacity: 0;
  }

.triangleTitle .text{
    opacity: 0;
  }

.triangleTitle h2{
    opacity: 0;
  }

.triangleTitle.triangleTitleAction .triangle{
    animation: rotate1 .6s 1 0s ease-in-out forwards;
    transform-origin: center;
  }

.triangleTitle.triangleTitleAction .text{
    animation: fadeIn .8s 1 .7s ease-in-out forwards;
  }

.triangleTitle.triangleTitleAction h2{
    animation: fadeIn .8s 1 .7s ease-in-out forwards;
  }

@keyframes fadeInLeft{
  0%{
    transform: translate(-40px,0);
    opacity: 0;
  }
  80%{
    opacity: 1;
  }
  100%{
    transform: translate(0,0);
    opacity: 1;
  }
}

@keyframes rotate1{
  0%{
    rotate: 0deg;
    opacity: 0;
  }
  100%{
    rotate: -360deg;
    opacity: 1;
  }
}

@keyframes rotate2{
  0%{
    rotate: 0deg;
    opacity: 0;
  }
  100%{
    rotate: 720deg;
    opacity: 1;
  }
}

/* endCtaアニメーション */

.endCtaBox h2{
    opacity: 0;
  }

.endCtaBox .text1{
    opacity: 0;
  }

.endCtaBox .text2{
    opacity: 0;
  }

.endCtaBox .obj{
    opacity: 0;
  }

.endCtaBox.endCtaBoxAction h2{
    animation: scale .8s 1 .2s ease forwards;
  }

.endCtaBox.endCtaBoxAction .text1{
    animation: fadeInLeft2 .8s 1 .2s ease-in-out forwards;
  }

.endCtaBox.endCtaBoxAction .text2{
    animation: fadeInLeft2 .8s 1 .2s ease-in-out forwards;
  }

.endCtaBox.endCtaBoxAction .obj{
    animation: scale .6s 1 1s ease forwards;
  }

@keyframes scale{
  0%{
    scale: .8;
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    scale: 1;
    opacity: 1;
  }
}

@keyframes fadeInLeft2{
  0%{
    transform: translate(-60px,0);
    opacity: 0;
  }
  80%{
    opacity: 1;
  }
  100%{
    transform: translate(0,0);
    opacity: 1;
  }
}

/* ==========================================================================
   ajaロード関連
========================================================================== */

.ajaxFade{
  animation: fadeInAjax .6s 1 0s ease forwards;
}

@keyframes fadeInAjax {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.loading{
  position: relative;
}

.loading::before{
    position: absolute;
    left:50%;
    margin:50px 0 0 -25px;
    width: 50px;
    height: 50px;
    content: '';
    animation: loader .8s infinite linear;
    border: 5px solid #000;
    border-top-color: #ddd;
    border-radius: 50%;
  }

@keyframes loader{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   フォーム
========================================================================== */

.formWall{
  background: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
}

.formWall .wpcf7-form{
    display: grid;
    grid-template-columns: 100%;
    gap:20px 0;
  }

.formWall select,
  .formWall input[type="text"],
  .formWall input[type="date"],
  .formWall input[type="tel"],
  .formWall input[type="url"],
  .formWall input[type="email"]{
    padding: 0 1em;
    height: 40px;
    line-height: 40px;
    width: 100%;
    border:1px solid #BBBBBB;
    font-size: 1.6rem;
    border-radius: 2px;
  }

.formWall textarea{
    width: 100%;
    padding: 1em;
    height: 140px;
    border:1px solid #BBBBBB;
    font-size: 1.6rem;
    border-radius: 2px;
  }

.formWall select{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: url('../../img/select_arrow.svg') no-repeat calc(100% - 16px) center / 13px auto;
    background-color: #fff;
    padding-right: 60px;
  }

.formWall .inputRow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

.formWall .formBox .inputTitle{
      line-height: 1;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 17px;
    }

.formWall .formBox .required{
      color: #ED025C;
      padding-left: .4em;
    }

.formWall .privacy{
    text-align: justify;
    line-height: 1.2;
    border: 1px solid #BBBBBB;
    border-radius: 2px;
    padding: 12px 10px 5px 0;
    font-size: 1.3rem;
    line-height: 2;
  }

.formWall .privacy .inner{
      padding: 0 10px 0 10px;
      height: 80px;
      overflow-y: auto;
      overscroll-behavior-y: none;
    }

.formWall .privacy .inner::-webkit-scrollbar{
        width: 1px;
        background: #CCCCCC;
      }

.formWall .privacy .inner::-webkit-scrollbar-thumb{
        background-color: #0D5BB1;
      }

.formWall .privacy h2{
      font-size: 1.3rem;
      font-weight: 700;
    }

.formWall .privacy h3{
      font-size: 1.3rem;
      font-weight: 700;
    }

.formWall .accept{
    line-height: 1;
  }

.formWall .accept span{
      display: block;
    }

.formWall .accept .wpcf7-list-item{
      margin: 0;
    }

.formWall .accept label{
      display: flex;
      align-items: center;
    }

.formWall .accept label input{
        width: 25px;
        height: 25px;
        margin:0 15px 0 0;
        accent-color: #0D5BB1;
      }

.formWall .notice{
    font-size: 1.3rem;
    line-height: 2;
    color: #333333;
    text-box-trim: trim-both;
  }

.formWall .send{
    margin-top: 10px;
  }

.formWall .send input{
      width: 182px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: url('../../img/send_arrow.svg') no-repeat 21px 9px / 26px auto;
      background-color:#0D5BB1;
      border-radius: 40px;
      color: #fff;
      font-size: 1.5rem;
      letter-spacing: -.02em;
      font-weight: 700;
      margin: 0 auto;
      border: none;
      cursor: pointer;
    }

.formWall .send input:disabled{
        opacity: .5;
      }

@media (hover:hover){
        .formWall .send input:hover{
          opacity: .8;
        }
        .formWall .send input:disabled{
          opacity: .5;
        }
          .formWall .send input:disabled:hover{
            opacity: .5;
          }
      }

.formWall .send .wpcf7-spinner{
      display: block;
      margin: 5px auto 0;
    }

.formWall .wpcf7-not-valid-tip{
    padding: .3em;
    font-size: 1.4rem;
  }

.formWall .wpcf7-response-output{
    margin: -20px 0 0  !important;
    font-size: 1.4rem;
    padding: 1em !important;
    text-align: center;
  }

@media only screen and (max-width: 767px) {
  .formWall{
    border-radius: calc(calc(20/390) * 100vw);
    padding: calc(calc(20/390) * 100vw);
  }
    .formWall .wpcf7-form{
      gap:calc(calc(20/390) * 100vw) 0;
    }
    .formWall select,
    .formWall input[type="text"],
    .formWall input[type="date"],
    .formWall input[type="tel"],
    .formWall input[type="url"],
    .formWall input[type="email"]{
      height: calc(calc(40/390) * 100vw);
      line-height: calc(calc(40/390) * 100vw);
      border-radius: calc(calc(2/390) * 100vw);
      border:calc(calc(1/390) * 100vw) solid #BBBBBB;
      font-size: 16px;
    }
    .formWall textarea{
      height: calc(calc(140/390) * 100vw);
      border:calc(calc(1/390) * 100vw) solid #BBBBBB;
      font-size: 16px;
      border-radius: calc(calc(2/390) * 100vw);
    }
    .formWall select{
      background: url('../../img/select_arrow.svg') no-repeat calc(100% - calc(calc(16/390) * 100vw)) center / calc(calc(13/390) * 100vw) auto;
      background-color: #fff;
      padding-right: calc(calc(40/390) * 100vw);
    }
    .formWall .inputRow{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: calc(calc(14/390) * 100vw);
    }
      .formWall .inputRow:has([type="email"]) .formBox{
        grid-column: 1 / 3;
        gap: calc(calc(20/390) * 100vw) 0; 
      }
      .formWall .formBox .inputTitle{
        margin-bottom: calc(calc(16/390) * 100vw);
      }

    .formWall .privacy{
      border: calc(calc(1/390) * 100vw) solid #BBBBBB;
      border-radius: calc(calc(2/390) * 100vw);
      padding: calc(calc(12/390) * 100vw) calc(calc(10/390) * 100vw) calc(calc(5/390) * 100vw) 0;
    }
      .formWall .privacy .inner{
        padding: 0 calc(calc(10/390) * 100vw) 0 calc(calc(10/390) * 100vw);
        height: calc(calc(80/390) * 100vw);
      }
        .formWall .privacy .inner::-webkit-scrollbar{
          width: calc(calc(1/390) * 100vw);
        }
        .formWall .accept label input{
          width: calc(calc(25/390) * 100vw);
          height: calc(calc(25/390) * 100vw);
          margin:0 calc(calc(15/390) * 100vw) 0 0;
        }
    .formWall .send{
      margin-top: calc(calc(10/390) * 100vw);
    }
      .formWall .send input{
        width: calc(calc(182/390) * 100vw);
        height: calc(calc(50/390) * 100vw);
        background: url('../../img/send_arrow.svg') no-repeat calc(calc(21/390) * 100vw) calc(calc(9/390) * 100vw) / calc(calc(26/390) * 100vw) auto;
        background-color:#0D5BB1;
        border-radius: calc(calc(40/390) * 100vw);
      }
      .formWall .send .wpcf7-spinner{
        margin: calc(calc(5/390) * 100vw) auto 0;
      }
    .formWall .wpcf7-response-output{
      margin: calc(-1 * calc(calc(20/390) * 100vw)) 0 0  !important;
    }

}

@font-face {
 font-family: "YuGothic M";
 src: local("Yu Gothic Medium"),
      local("Yu Gothic");
 font-weight: 500;
}

/* ==========================================================================
   游ゴシック
========================================================================== */

.fontYuGo{
  font-family: '游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .fontYuGo{
    font-family: '游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,"Noto Sans JP", "Hiragino Kaku Gothic ProN",YuGothic,'Yu Gothic',"メイリオ", sans-serif;
    font-weight: 400;
  }
}

/* ==========================================================================
   Futura PT
========================================================================== */

.fontFP{
  font-family: "futura-pt", sans-serif;
  font-style: normal;
}

/* ==========================================================================
   Montserrat Alternates
========================================================================== */

.fontMA {
  font-family: "Montserrat Alternates", sans-serif;
  font-style: normal;
}

/* ==========================================================================
   下層共通
========================================================================== */

.pageContent{
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .pageContent{
    padding-bottom: calc(calc(70/390) * 100vw);
  }
}

/* ==========================================================================
   下層ページタイトル
========================================================================== */

.pageHeader{
  max-width: 1100px;
  min-height: 243px;
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: 1fr 365px;
  align-items: center;
  gap:0 60px;
}

.pageHeader .pageTitle{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    color: #111;
  }

.pageHeader .pageTitle::before{
      content: attr(data-en);
      text-transform: capitalize;
      display: block;
      font-family: "futura-pt", sans-serif;
      font-size: 7rem;
      font-weight: 600;
      margin-bottom: 14px;
    }

.pageHeader .markAnimeBox{
    display: flex;
    flex-flow: column;
    gap: 25px 0;
    width: 365px;
    translate: 48px 0;
  }

@media (max-width: 1230px) {

.pageHeader .markAnimeBox{
      translate: 0
  }
    }

.pageHeader .markAnimeBox .text1{
      font-size: 4.9rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1;
      display: block;
      color: #333333;
      rotate: -10deg;
    }

.pageHeader .markAnimeBox .mark{
      width: 91px;
      margin-inline: auto;
    }

.pageHeader .markAnimeBox .text2{
      font-size: 4.5rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1;
      text-align: right;
      display: block;
      color: #333333;
      rotate: -5deg;
    }

@media (max-width: 767px) {
  .pageHeader{
    max-width: calc(calc(330/390) * 100vw);
    min-height: calc(calc(354/390) * 100vw);
    margin: calc(calc(48/390) * 100vw) auto 0;
    grid-template-columns: 100%;
    grid-template-rows: 1fr calc(calc(200/390) * 100vw);
    gap:calc(calc(30/390) * 100vw) 0;
  }
    .pageHeader .pageTitle{
      grid-row: 1;
      align-self: start;
    }
      .pageHeader .pageTitle::before{
        margin-bottom: calc(calc(14/390) * 100vw);
      }
    .pageHeader .markAnimeBox{
      grid-row: 2;
      align-self: end;
      justify-self: center;
      gap: calc(calc(18/390) * 100vw) 0;
      width: calc(calc(303/390) * 100vw);
    }
      .pageHeader .markAnimeBox .text1{
        font-size: 4.2rem;
      }
      .pageHeader .markAnimeBox .mark{
        width: calc(calc(78/390) * 100vw);
      }
      .pageHeader .markAnimeBox .text2{
        font-size: 3.8rem;
      }
}

/* ==========================================================================
   投稿系詳細ページ
========================================================================== */

.pageHeader .pageSingleTitle{
    font-size: 3.5rem;
    font-weight: 500;
  }

.pageHeader .pageSingleTitle::before{
      display: none;
    }

@media (max-width: 767px) {
    .pageHeader .pageSingleTitle{
      line-height: 1.05;
      align-self: start;
    }
}

/* ==========================================================================
   パンくず
========================================================================== */

.pankuzu{
  margin-top: 60px;
  background: #F9F9F9;
  min-height: 30px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.pankuzu ol{
    flex: 0 1 1100px;
    margin-inline: auto;
    display: flex;
    color: #777777;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1em;
  }

.pankuzu ol a{
      color: #777777;
    }

.pankuzu ol li:not(:last-child)::after{
        content: '/';
        padding: 0 1em;
      }

.pankuzu ol li:last-child{
      text-transform: capitalize;
    }

@media (max-width: 767px) {
  .pankuzu{
    margin-top: calc(calc(81/390) * 100vw);
    min-height: calc(calc(30/390) * 100vw);
    padding: calc(calc(5/390) * 100vw) 0;
  }
    .pankuzu ol{
      flex: 0 1 calc(calc(350/390) * 100vw);
      letter-spacing: .5em;
    }
      .pankuzu ol a{
        color: #777777;
      }
        .pankuzu ol li:not(:last-child)::after{
          content: '/';
          padding: 0 1em;
        }
      .pankuzu ol li:last-child{
        text-transform: capitalize;
      }
}

/* ==========================================================================
   backList
========================================================================== */

.backList{
  margin-top: 60px;
  background: #F9F9F9;
  min-height: 30px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.backList p{
    flex: 0 1 1100px;
    margin-inline: auto;
    display: flex;
    color: #777777;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1em;
  }

.backList p a{
      color: #777777;
      display: inline-flex;
      align-items: center;
    }

.backList p a::before{
        content: '';
        background: url('../../img/back_list_arrow.svg') no-repeat center center / contain;
        width: 13px;
        height: 13px;
        flex-shrink: 0;
        margin-right: 19px;
      }

@media (max-width: 767px) {
  .backList{
    margin-top: calc(calc(81/390) * 100vw);
    min-height: calc(calc(30/390) * 100vw);
    padding: calc(calc(5/390) * 100vw) 0;
    display: flex;
    align-items: center;
  }
    .backList p{
      flex: 0 1 calc(calc(350/390) * 100vw);
    }
        .backList p a::before{
          width: calc(calc(13/390) * 100vw);
          height: calc(calc(13/390) * 100vw);
          margin-right: calc(calc(17/390) * 100vw);
        }
}

/* ==========================================================================
   三角形付きタイトル
========================================================================== */

.triangleTitle{
  text-align: center;
  position: relative;
}

.triangleTitle .markBox{
    display: block;
    position: relative;
    width: 51px;
    margin-inline: auto;
  }

.triangleTitle .markBox .triangle{
      width: 51px;
      height: 51px;
      clip-path: polygon(100% 0, 0% 100%, 100% 100%);
      display: block;
      position: relative;
      
    }

.triangleTitle .markBox .text{
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      translate: calc(-1 * calc(50% + .9em)) calc(-1 * calc(50% + .9em));
      transform-origin: center;
      rotate: -45deg;
      font-size: 1.6rem;
      letter-spacing: -0.03em;
      line-height: 1;
      font-weight: 400;
      width: -moz-max-content;
      width: max-content;
    }

.triangleTitle h2{
    font-family: "futura-pt", sans-serif;
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: -.02em;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    display: block;
    margin-top: 9px;
  }

@media (max-width: 767px) {
    .triangleTitle .markBox{
      width: calc(calc(51/390) * 100vw);
    }
      .triangleTitle .markBox .triangle{
        width: calc(calc(51/390) * 100vw);
        height: calc(calc(51/390) * 100vw);
      }
    .triangleTitle h2{
      font-size: 5rem;
      margin-top: calc(calc(9/390) * 100vw);
    }
}

/* ==========================================================================
   ページ送り
========================================================================== */

.pagenation{
  margin-top: 50px;
}

.pagenation ul{
    display: flex;
    justify-content: center;
    gap:0 18px
  }

.pagenation li{
    width: 57px;
  }

.pagenation a,.pagenation span{
    width: 100%;
    height: 57px;
    display: grid;
    place-content: center;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #111111;
    border-radius: 50%;
  }

.pagenation .current{
    background: #932323;
    color: #fff;
  }

.pagenation li:has(.dots){
    width: auto;
  }

@media (max-width: 767px) {
  .pagenation{
    margin-top: calc(calc(50/390) * 100vw);
  }
    .pagenation ul{
      display: flex;
      justify-content: center;
      gap:calc(calc(14/390) * 100vw)
    }
    .pagenation li{
      width: calc(calc(45/390) * 100vw);
    }
    .pagenation a,.pagenation span{
      height: calc(calc(45/390) * 100vw);
      font-size: 1.3rem;
    }
}

/* ==========================================================================
   works　post
========================================================================== */

.worksPost{
  display: grid;
  grid-template-columns: 100%;
}

.worksPost .tm{
    grid-row: 1;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    overflow: hidden;
  }

.worksPost h2{
    grid-row: 2;
    margin-top: 11px;
    font-size: 2rem;
    letter-spacing: -.03em;
    font-weight: 700;
  }

.worksPost:has(a) a{
    display: grid;
    grid-template-columns: 100%;
  }

.worksPost:has(a) h2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    padding-right: 12px;
  }

.worksPost:has(a) h2::after{
      content: '';
      width: 9px;
      height: 9px;;
      background: url('../../img/works_arrow.svg') no-repeat center center / contain;
      flex-shrink: 0;
    }

@media (max-width: 767px) {
    .worksPost .tm{
      border: calc(calc(1/390) * 100vw) solid #EEEEEE;
      border-radius: calc(calc(5/390) * 100vw);
    }
    .worksPost h2{
      font-size: 1.7rem;
      padding-right: calc(calc(12/390) * 100vw);
    }
      .worksPost h2::after{
        width: calc(calc(9/390) * 100vw);
        height: calc(calc(9/390) * 100vw);
      }
}

/* ==========================================================================
   ニュース ＆　ブログ共通　一覧ボックス
========================================================================== */

.singularPostBox{
  display: contents;
}

.singularPostBox a{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap:0;
    border: 1px solid #D8D8D8;
    border-radius: 7px;
    padding: 10px 10px 20px;
  }

.singularPostBox .tm{
    grid-column: 1;
    grid-row: 1;
    margin-left: -10px;
    border-radius: 0 5px 5px 0;
    overflow: hidden;
  }

.singularPostBox header{
    grid-column: 1;
    grid-row: 2;
    margin-top: 22px;
  }

.singularPostBox header .data{
      display: flex;
      flex-flow: row wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

.singularPostBox header .cat{
      border-radius: 15px;
      min-height: 30px;
      padding: 2px 31px;
      display: grid;
      place-content: center;
      text-align: center;
      color: #fff;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: -.03em;
    }

.singularPostBox header time{
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: -.03em;
      color: #707070;
    }

.singularPostBox header h2{
      margin-top: 14px;
      font-size: 1.9rem;
      line-height: 1.63;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

.singularPostBox .discription{
    grid-column: 1;
    grid-row: 3;
    margin-top: 6px;
  }

.singularPostBox .discription p{
      font-size: 1.5rem;
      letter-spacing: -.03em;
      color: #777777;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      text-align:left;
    }

@media (max-width: 767px) {
    .singularPostBox a{
      border: calc(calc(1/390) * 100vw) solid #D8D8D8;
      border-radius: calc(calc(7/390) * 100vw);
      padding: calc(calc(10/390) * 100vw) calc(calc(10/390) * 100vw) calc(calc(20/390) * 100vw);
    }
    .singularPostBox .tm{
      margin-left: calc(-1 * calc(calc(10/390) * 100vw));
      border-radius: 0 calc(calc(5/390) * 100vw) calc(calc(5/390) * 100vw) 0;
      overflow: hidden;
    }
    .singularPostBox header{
      margin-top: calc(calc(22/390) * 100vw);
    }
      .singularPostBox header .data{
        gap: calc(calc(14/390) * 100vw);
      }
      .singularPostBox header .cat{
        border-radius: calc(calc(15/390) * 100vw);
        min-height: calc(calc(30/390) * 100vw);
        padding: calc(calc(2/390) * 100vw) calc(calc(31/390) * 100vw);
      }
      .singularPostBox header h2{
        margin-top: calc(calc(14/390) * 100vw);
      }
    .singularPostBox .discription{
      margin-top: calc(calc(6/390) * 100vw);
    }
}

/* ==========================================================================
   end
========================================================================== */

.is-layout-constrained,.is-root-container {
	letter-spacing: -.03em;
	line-height: 1.6;
	color: #111111;
	font-weight: 300;
}

.is-layout-constrained >*:not(.wp-block-image),.is-root-container >*:not(.wp-block-image){
		max-width: 930px;
		margin-inline: auto;
	}

.is-layout-constrained h2,.is-root-container h2{
		font-size: 24px;
		font-weight: 500;
		line-height: 1.5;
		font-family: '游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
		font-weight: 700;
	}

.is-layout-constrained h3,.is-root-container h3{
		font-size: 20px;
		line-height: 1.5;
		color: #555555;
		font-family: '游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
		font-weight: 700;
	}

.is-layout-constrained h4,.is-root-container h4{
		font-size: 17px;
		font-weight: 700;
		line-height: 1.5;
		font-family: '游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,'Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
		font-weight: 700;
	}

.is-layout-constrained >h3 + *,
	.is-layout-constrained >h4 + *,
	.is-root-container >h3 + *,
	.is-root-container >h4 + *{
		margin-top: 1.13em;
	}

.is-layout-constrained ol,.is-layout-constrained ul,.is-root-container ol,.is-root-container ul{
		list-style: inherit;
		padding-left: 1.5em;
	}

.is-layout-constrained a,.is-root-container a{
		text-decoration: underline;
	}

.is-layout-constrained .wp-block-button a,.is-root-container .wp-block-button a{
			text-decoration: none;
		}

/* end .entry-content */

@media only screen and (max-width: 767px) {
		.is-layout-constrained h2,.is-root-container h2{
			font-size: 2.4rem;
		}
		.is-layout-constrained h3,.is-root-container h3{
			font-size: 2rem;
		}
		.is-layout-constrained h4,.is-root-container h4{
			font-size: 1.7rem;
		}
		.is-layout-constrained .wp-block-media-text,.is-root-container .wp-block-media-text{
			grid-template-areas:"media-text-media" "media-text-content";
			grid-template-columns:1fr;
		}
			.is-layout-constrained .wp-block-media-text .wp-block-media-text__media,.is-root-container .wp-block-media-text .wp-block-media-text__media{
				grid-area: media-text-media;
			}
			.is-layout-constrained .wp-block-media-text .wp-block-media-text__content,.is-root-container .wp-block-media-text .wp-block-media-text__content{
				grid-area: media-text-content;
				padding: 1em 0 0;
			}
	.wp-block-columns.is-not-stacked-on-mobile{
		gap:0 .5em;
	}
}

@media only screen and (max-width: 767px){
		.is-layout-constrained .wp-block-media-text .wp-block-media-text__media,.is-root-container .wp-block-media-text .wp-block-media-text__media{
    -ms-grid-row: 1;
    -ms-grid-column: 1;
		}
		.is-layout-constrained .wp-block-media-text .wp-block-media-text__content,.is-root-container .wp-block-media-text .wp-block-media-text__content{
    -ms-grid-row: 2;
    -ms-grid-column: 1;
		}
}

/* ==========================================================================
   共通設定
========================================================================== */

html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
	overflow-y:scroll;
}

body {
	font-family: 'Noto Sans','Noto Sans JP','Noto Sans CJK JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','游ゴシック','游ゴシック体', 'YuGothic M', YuGothic,'メイリオ',Meiryo,sans-serif;
	font-feature-settings : 'pkna';
	color:#000000;
	color:var(--text-color);
	text-align: justify;
	width:100%;
  min-width: 1130px;
	font-size: 1.5rem;
	line-height: 1.5;
	overflow: hidden;
}

img{
	vertical-align:bottom;
	max-width: 100%;
	height: auto;
  backface-visibility: hidden;
}

a{
	color:#000000;
	color:var(--text-color);
	text-decoration: none;
  display: inline-block;
}

a:hover{
  opacity: .8;
}

.spShow{
	display: none;
}

.pcShow{
	display: inline-block;
}

.container{
	display: grid;
	min-height: 100vh;
	grid-template-columns: 100%;
  grid-template-rows: 90px 1fr auto auto;
}

.header{
	grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 3;
}

.pageContainer{
	grid-column: 1;
  grid-row: 2;
  position: relative;
  z-index: 1;
}

.endCtaBox{
	grid-column: 1;
  grid-row: 3;
  z-index: 2;
}

.footer{
	grid-column: 1;
  grid-row: 4;
  z-index: 2;
}

button{
  background: none;
  border: none;
  padding: 0;
  outline: none;
  color: #000000;
  color: var(--text-color);
}

button:focus{
    outline: none;
  }

button:disabled{
    opacity:1;
    color: #000000;
    color: var(--text-color);
  }

/* ==========================================================================
   ヘッダー
========================================================================== */

.header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(20px,1fr) 237px minmax(500px,975px) minmax(20px,1fr);
  min-width: 1100px;
  height: 90px;
  background: #fff;
}

.header::before{
    content: '';
    grid-column: 1;
  }

.header::after{
    content: '';
    grid-column: 4;
  }

.header .logo{
    grid-column: 2;
    align-self: center;
    line-height: 1;
  }

.header .logo a{
      display: block;
    }

.header .gNav{
    grid-column: 3;
    justify-self: end;
    align-self: center;
  }

/* ==========================================================================
   グローバルナビ
========================================================================== */

.gNav .pageLink{
    display: flex;
    align-items: center;
    gap:0 76px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
  }

/* ==========================================================================
   footer
========================================================================== */

.footer{
  background: #111111;
  padding: 40px 0;
  color: #fff;
  position: relative;
}

.footer a{
    color: #fff;
  }

.footer .inner{
    container-type: inline-size;
    width: min(calc(100% - 40px),1400px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: center;
  }

.footer h2{
    padding-left: calc(calc(56/1400) * 100cqw);
  }

.footer .footerNav{
    padding-left: calc(calc(141/1400) * 100cqw);
  }

.footer .footerNav ul{
      font-size: 1.8rem;
      line-height: 1.27;
      font-weight: 400;
    }

.footer .footerNav ul li + li{
        margin-top: 12px;
      }

.footer .sns{
    padding-left: calc(calc(120/1400) * 100cqw);
    display: flex;
    align-items: center;
    gap: 0 25px;
  }

@media (max-width:1250px){

.footer .sns{
      padding-left: calc(calc(20/1400) * 100cqw)
  }
    }

.footer .copyright{
    padding-right: calc(calc(65/1400) * 100cqw);
    font-size: 1.3rem;
    letter-spacing: -.03em;
    text-align: right;
    color: #AAAAAA;
  }

@media (max-width:1250px){

.footer .copyright{
      padding-right: calc(calc(20/1400) * 100cqw)
  }
    }

.footer .pagetop{
    display: none;
    position: fixed;
    z-index: 990;
    width: 98px;
    height: 98px;
    bottom: 20px;
    right:40px;
  }

.footer .stopBtn{
    position: absolute;
    bottom: auto;
    top: -49px;
  }

/* ==========================================================================
   cta
========================================================================== */

.endCtaBox{
  height: 409px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.endCtaBox::before{
    content: '';
    width: 2463px;
    height: 1457px;
    background: url('../../img/cta_bk.svg') no-repeat center center / contain;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    opacity: .91;
  }

.endCtaBox::after{
    content: '';
    width: 2463px;
    height: 1457px;
    background: url('../../img/cta_bk2.webp') no-repeat center top / auto 100%;
    z-index: -2;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }

.endCtaBox h2{
    width: -moz-max-content;
    width: max-content;
    font-size: 11rem;
    letter-spacing: -.02em;
    line-height: 1;
    font-weight: 700;
    color: rgba(242,242,242,.11);
    position: absolute;
    top: 155px;
    left: 50%;
    translate: -50% 0;
    rotate: -5deg;
    z-index: 2;
  }

.endCtaBox .text1{
    width: -moz-max-content;
    width: max-content;
    font-size: 8rem;
    line-height: 1;
    font-weight: 600;
    color: rgba(242,242,242,.81);
    position: absolute;
    top: 76px;
    left: 50%;
    translate: -570px 0;
    rotate: -5deg;
    z-index: 2;
  }

.endCtaBox .text2{
    width: -moz-max-content;
    width: max-content;
    font-size: 7rem;
    line-height: 1;
    font-weight: 600;
    color: rgba(242,242,242,.78);
    position: absolute;
    top: 282px;
    left: 50%;
    translate: 210px 0;
    rotate: -5deg;
    z-index: 2;
  }

.endCtaBox .goContact{
    margin:247px auto 0;
    width: 266px;
    height: 74px;
    background-color: #fff;
    border-radius: 40px;
    position: relative;
    z-index: 5;
    font-size: 2.4rem;
    letter-spacing:-.02em;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.endCtaBox .goContact span{
      display: flex;
      align-items: center;
    }

.endCtaBox .goContact span::before{
        content: '';
        width: 30px;
        height: 30px;
        background: url('../../img/contac_arrow.svg') no-repeat center center / contain;
        flex-shrink: 0;
        margin-right: 12px;
      }

.endCtaBox .obj{
    position: absolute;
    left: 50%;
    z-index: 1;
  }

.endCtaBox .obj1{
    width: 44px;
    height: 44px;
    top: 171px;
    translate: -687px 0;
  }

.endCtaBox .obj2{
    width: 54px;
    height: 54px;
    top: 115px;
    translate: -267px 0;
  }

.endCtaBox .obj3{
    width: 48px;
    height: 48px;
    top: 47px;
    translate: -165px 0;
  }

.endCtaBox .obj4{
    width: 81px;
    height: 81px;
    top: 50px;
    translate: 167px 0;
  }

.endCtaBox .obj5{
    width: 30px;
    height: 30px;
    top: 368px;
    translate: -527px 0;
  }

.endCtaBox .obj6{
    width: 68px;
    height: 68px;
    top: 305px;
    translate: -281px 0;
  }

.endCtaBox .obj7{
    width: 48px;
    height: 48px;
    top: 314px;
    translate: 34px 0;
  }

.endCtaBox .obj8{
    width: 68px;
    height: 68px;
    top: 275px;
    translate: 575px 0;
  }

/* ==========================================================================
   会社概要
========================================================================== */

.companyPage .pageHeader .pageTitle::before{
        margin-bottom: 5px;
      }

.companyPage .member{
    max-width: 1090px;
    margin: 84px auto 0;
  }

.companyPage .member .triangleTitle{
      margin-bottom: 63px;
    }

.companyPage .member .triangleTitle .triangle{
        background: #932323;
      }

.companyPage .member .memberBox{
      display: grid;
      grid-template-columns: 533px 1fr;
      grid-template-rows: auto 1fr;
      gap: 0 40px;
      
    }

.companyPage .member .memberBox header{
        grid-column: 2;
        grid-row: 1;
        padding-top: 5px;
      }

.companyPage .member .memberBox header h2{
          font-size: 1.9rem;
          font-weight: 700;
          letter-spacing: -0.03em;
          line-height: 1.63;
        }

.companyPage .member .memberBox header .position{
          margin-top: 2px;
          font-size: 1.4rem;
          font-weight: 300;
          line-height: 1;
          letter-spacing: -.03em;
        }

.companyPage .member .memberBox .textBox{
        grid-column: 2;
        grid-row: 2;
        margin-top: 20px;
        height: 220px;
        overflow-y: auto;
        padding-right: 15px;
      }

.companyPage .member .memberBox .textBox::-webkit-scrollbar{
          width: 1px;
          background-color: #CBCBCB;
        }

.companyPage .member .memberBox .textBox::-webkit-scrollbar-thumb{
          background-color: #932323;
        }

.companyPage .member .memberBox .textBox p{
          font-weight: 300;
          line-height: 1.46;
        }

.companyPage .member .memberBox .imgBox{
        grid-column: 1;
        grid-row: 1 / 3;
        filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.16));
      }

.companyPage .member .memberBox .imgBox figure{
          aspect-ratio: 530/300;
          clip-path: polygon(100% 0, 100% 90%, 94.33% 100%, 0 100%, 0 0);
        }

.companyPage .member .memberBox + .memberBox{
       margin-top: 70px;
    }

.companyPage .companyInfo{
    max-width: 816px;
    margin: 115px auto 0;
  }

.companyPage .companyInfo .triangleTitle{
      margin-bottom: 70px;
    }

.companyPage .companyInfo .triangleTitle .triangle{
        background: #164E26;
      }

.companyPage .companyInfo .profileDl{
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 73px 0;
      font-size: 1.5rem;
      font-weight: 300;
      letter-spacing: -.03em;
      line-height: 1.6;
    }

.companyPage .companyInfo .profileDl dt{
        border-right: 1px solid #707070;
        display: flex;
        align-items: center;
      }

.companyPage .companyInfo .profileDl dd{
        padding-left: 70px;
      }

.companyPage .companyInfo .profileDl dd li{
          display: flex;
        }

.companyPage .companyInfo .profileDl dd li::before{
            content: '-';
            flex-shrink: 0;
            margin-right: .2em;
          }

.companyPage .companyInfo .profileDl dt:not(:nth-last-of-type(1)){
        position: relative;
      }

.companyPage .companyInfo .profileDl dt:not(:nth-last-of-type(1))::before{
          content: '';
          width: 816px;
          height: 1px;
          background: #707070;
          position: absolute;
          bottom: -33px;
          left: 0;
        }

/* ==========================================================================
   詳細ページ
========================================================================== */

.singularPage .singularMain{
    margin-top: 100px;
  }

.singularPage .singularMain .date{
      max-width: 988px;
      margin-inline: auto;
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -.03em;
    }

.singularPage .singularMain .date span{
        font-size: 1.7rem;
        font-weight: 500;
        color: #999999;
        flex-shrink: 0;
        margin-right: 20px;
      }

.singularPage .singularMain .singleEdit{
      margin-top: 26px;
    }

.singularPage .singularMain .singlePrevNext{
      width: min(calc(100% - 40px),1220px);
      margin: 100px auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

.singularPage .singularMain .singlePrevNext .linkBox{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: auto;
        height: 337px;
        overflow: hidden;
        cursor: pointer;
        border-radius: 10px;
      }

.singularPage .singularMain .singlePrevNext .linkBtn{
        grid-column: 1;
        grid-row: 1;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-image: -webkit-image-set(
          url('../../img/nextprev_bk.jpg') 1x,
          url('../../img/nextprev_bk@2x.jpg') 2x
        );
        background-image: image-set(
          url('../../img/nextprev_bk.jpg') 1x,
          url('../../img/nextprev_bk@2x.jpg') 2x
        );
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        opacity: .16;
      }

.singularPage .singularMain .singlePrevNext .linkBtn:hover{
          opacity: .16;
        }

.singularPage .singularMain .singlePrevNext .prevNextOverlay{
        grid-column: 1;
        grid-row: 1;
        z-index: 2;
        pointer-events: none;
        display: none;
        width: 100%;
        height: 100%;
        clip-path: circle(calc(8rem * 0) at calc(0 * 1px) calc(0 * 1px));
        clip-path: circle(calc(8rem * var(--prevNext-loupeScale)) at calc(var(--prevNext-loupeX) * 1px) calc(var(--prevNext-loupeY) * 1px));
        will-change: clip-path;
        transform: translate3d(0, 0, 0);
      }

.singularPage .singularMain .singlePrevNext .prevNextOverlay .bk{
          width: 100%;
          height: 100%;
          background-image: -webkit-image-set(
            url('../../img/nextprev_bk.jpg') 1x,
            url('../../img/nextprev_bk@2x.jpg') 2x
          );
          background-image: image-set(
            url('../../img/nextprev_bk.jpg') 1x,
            url('../../img/nextprev_bk@2x.jpg') 2x
          );
          background-repeat: no-repeat;
          background-position: center center;
          background-size: contain;
        }

.singularPage .singularMain .singlePrevNext .text{
        grid-column: 1;
        grid-row: 1;
        z-index: 3;
        display: grid;
        place-content: center;
        pointer-events: none;
        font-size: 2.4rem;
        letter-spacing: -.03em;
        font-weight: 800;
      }

/* ==========================================================================
   投稿一覧ページ
========================================================================== */

.archivePage .main{
    max-width: 987px;
    margin: 81px auto 0;
  }

.archivePage .triangleTitle{
    margin-bottom: 70px;
  }

.archivePage .catList{
    margin-bottom: 30px;
  }

.archivePage .catList ul{
      display: flex;
      flex-flow: row wrap;
      gap: 20px;
    }

.archivePage .catList li{
      min-width: 100px;
    }

.archivePage .catList li a{
        width: 100%;
        min-height: 30px;
        padding: 3px 30px;
        border-radius: 15px;
        border: 1px solid #707070;
        background: #fff;
        display: grid;
        place-content: center;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: -.03em;
        color: #002578;
      }

.archivePage .singularRow{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px 18px;
  }

.newsArchivePage .triangleTitle .triangle{
      background: #932323;
    }

.newsArchivePage .pagenation .current{
      background: #932323;
    }

.newsArchivePage .rollX::before{
      background: #932323;
    }

.blogArchivePage .triangleTitle .triangle{
      background: #002578;
    }

.blogArchivePage .pagenation .current{
      background: #002578;
    }

.blogArchivePage .rollX::before{
      background: #002578;
    }

/* ==========================================================================
   works
========================================================================== */

.worksArchivePage .rollX::before{
      background: #BC8229;
    }

.worksArchivePage .main{
    max-width: 987px;
    margin: 88px auto 0;
  }

.worksArchivePage .catList ul{
      display: flex;
      flex-flow: row wrap;
    }

.worksArchivePage .catList a{
      color: #152A9F;
    }

.worksArchivePage .catList li{
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -.03em;
    }

.worksArchivePage .catList li:not(:last-child)::after{
        content: '|';
        margin: 0 2em;
        color: #777777;
      }

.worksArchivePage .catList .current{
      color: #777777;
      position: relative;
    }

.worksArchivePage .catList .current::before{
        content: '';
        background: url('../../img/current_arrow.svg') no-repeat center center / contain;
        width: 16px;
        height: 10px;
        position: absolute;
        top: -18px;
        left: 50%;
        translate: -50% 0;
      }

.worksArchivePage .postListSection{
    margin-top: 60px;
  }

.worksArchivePage .postListSection .termTitle{
      font-size: 2.4rem;
      letter-spacing: -.03em;
      font-weight: 700;
      margin-bottom: 65px;
    }

.worksArchivePage .postListSection .description{
      margin-bottom: 45px;
      background: #F5F5F5;
      border-radius: 10px;
      padding: 30px 20px;
    }

.worksArchivePage .postListSection .description p{
        font-size: 1.5rem;
        letter-spacing: -.03em;
        line-height: 1.6;
      }

.worksArchivePage .postListSection:has(.description) .termTitle{
      margin-bottom: 25px;
    }

.worksArchivePage .row{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0 15px;
    margin-top: -67px;
  }

.worksArchivePage .worksPost{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap:0;
    margin-top: 67px;
  }

.worksArchivePage .pagenation .current{
      background: #184E26;
    }

/* ==========================================================================
   サービス
========================================================================== */

.servicePage .rollX::before{
      background: #164E26;
    }

.servicePage .main{
    max-width: 988px;
    margin: 87px auto 0;
  }

.servicePage .serviceSec .secTitle{
      font-size: 2.4rem;
      letter-spacing: -0.03em;
      font-weight: 700;
      line-height: 1.25;
    }

.servicePage .serviceSec .toptextBox{
      margin-top: 25px;
      font-size: 1.5rem;
      font-weight: 300;
      line-height: 1.6;
      letter-spacing: -0.03em;
    }

.servicePage .serviceSec .toptextBox >* + *{
        margin-top: 1.5em;
      }

.servicePage .serviceSec .toptextBox .innerSec h2{
          font-size: 1.5rem;
          font-weight: 700;
          letter-spacing: -0.03em;
          line-height: 1.6;
        }

.servicePage .serviceSec .toptextBox .innerSec >* + *{
          margin-top: 1.5em;
        }

.servicePage .serviceSec .toptextBox .innerSec >h2 + *{
          margin-top: 1em;
        }

.servicePage .serviceSec + .serviceSec{
    margin-top: 67px;
  }

.servicePage .secContent{
    margin-top: 29px;
  }

.servicePage .gootsupport{
    height: 472px;
    background-image: -webkit-image-set(
      url('../../img/service_gs_bk.jpg') 1x,
      url('../../img/service_gs_bk@2x.jpg') 2x
    );
    background-image: image-set(
      url('../../img/service_gs_bk.jpg') 1x,
      url('../../img/service_gs_bk@2x.jpg') 2x
    );
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    padding-left: 44px;
    overflow: hidden;
  }

.servicePage .gootsupport h2{
      font-size: 6.6rem;
      line-height: 1;
      color: #fff;
      font-weight: 400;
    }

.servicePage .gootsupport p{
      margin-top: 10px;
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.24;
      color: #fff;
    }

.servicePage .gootsupport figure{
      margin-top: -9px;
    }

.servicePage .slideContent .parts{
      margin-top: 27px;
      display: grid;
      grid-template-columns: 22px 22px 1fr;
      align-items: center;
      gap: 0 10px;
    }

.servicePage .slideContent .parts .swiper-pagination,
      .servicePage .slideContent .parts .swiper-button-next,
      .servicePage .slideContent .parts .swiper-button-prev{
        position: static;
        margin: 0;
      }

.servicePage .slideContent .parts .swiper-button-next,
      .servicePage .slideContent .parts .swiper-button-prev{
        width: 22px;
        height: 22px;
        background: url('../../img/slide_arrow.svg') no-repeat center center / contain;
      }

.servicePage .slideContent .parts .swiper-button-next::after,.servicePage .slideContent .parts .swiper-button-prev::after{
          display: none;
        }

.servicePage .slideContent .parts .swiper-button-next{
        rotate:-180deg;
      }

.servicePage .slideContent .parts .swiper-pagination{
        background: #D5D5D5;
        height: 2px;
      }

.servicePage .slideContent .parts .swiper-pagination-progressbar-fill{
        background: #002578;
      }

/* ==========================================================================
   home
========================================================================== */

.home .container{
    grid-template-rows: 0 1fr auto auto;
  }

.homePage{
  padding-bottom: 0;
}

.homePage .fvMovie{
    position: relative;
		width: 100%;
		height: 100vh; /* ビューポートの高さいっぱい */
		min-height: 750px;
		overflow: hidden;
  }

.homePage .fvMovie .movie{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			-o-object-fit: cover;
			   object-fit: cover; /* アスペクト比を保ちながら領域を埋める */
			z-index: -1; /* 他のコンテンツの背後に配置 */
		}

.homePage .mission{
    background: #F5F5F5;
    padding: 116px 0 100px;
  }

.homePage .mission .triangleTitle{
      margin-bottom: 50px;
    }

.homePage .mission .triangleTitle .triangle{
        background: #002578;
      }

.homePage .mission .typewriter{
      position: relative;
    }

.homePage .mission .typewriter .cursor {
        display: inline-block;
        width: 8px;
        height: 1em;
        background-color: #111111;
        margin: 0 0 .2em -8px;
        animation: blink 0.7s infinite;
        vertical-align: middle;
      }

.homePage .mission .typewriter1{
      font-size: 3rem;
      line-height: 1.6;
      font-weight: 700;
      letter-spacing: -.03em;
      text-align: center;
      margin-bottom: 75px;
    }

.homePage .mission .text{
      font-size: 1.8rem;
      line-height: 1.55;
      font-weight: 300;
      letter-spacing: -.03em;
      text-align: center;
    }

.homePage .mission .text + .text{
      margin-top: 1.5em;
    }

.homePage .mission .typewriter2{
      margin-top: 81px;
      font-size: 3rem;
      line-height: 1.6;
      font-weight: 700;
      letter-spacing: -.03em;
      text-align: center;
    }

.homePage .mission .typewriter2 strong{
        font-size: 4rem;
      }

.homePage .works{
    max-width: 1063px;
    margin: 104px auto 0;
  }

.homePage .works .triangleTitle{
      margin-bottom: 50px;
    }

.homePage .works .triangleTitle .triangle{
        background: #BC8229;
      }

.homePage .works .rollX::before{
        background: #BC8229;
      }

.homePage .works .worksHome{
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-rows: auto;
      gap: 17px;
    }

.homePage .works .worksHome::before{
        content: '';
        width: 100vw;
        min-width: 1200px;
        height: 290px;
        background: #F5F5F5;
        position: absolute;
        bottom: 0;
        z-index: -1;
      }

.homePage .works .worksHome .type{
        grid-row: 1;
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 75px;
      }

.homePage .works .worksHome .type::before{
          content: '';
          width: 2px;
          height: 100%;
          background: #707070;
        }

.homePage .works .worksHome .type span{
          writing-mode: sideways-lr;
          font-size: 1.6rem;
          font-weight: 700;
          line-height: 1;
          letter-spacing: -.03em;
          flex-shrink: 0;
        }

.homePage .works .worksHome header{
        grid-row: 1;
        align-self: center;
        line-height: 1.6;
        letter-spacing: -.03em;
      }

.homePage .works .worksHome header h2{
          font-size: 2rem;
          font-weight: 700;
        }

.homePage .works .worksHome header p{
          font-size: 1.5rem;
          font-weight: 300;
          margin-top: 10px;
        }

.homePage .works .worksHome .img{
        grid-row: 1;
        border: 1px solid #AAAAAA;
      }

.homePage .works .worksHome .img1{
        grid-column: 2;
      }

.homePage .works .worksHome .img2{
        grid-column: 3;
      }

.homePage .works .worksHome .img4{
        grid-column: 4;
      }

.homePage .works .worksHome:nth-child(even){
      grid-template-columns: auto auto auto auto 1fr;
    }

.homePage .works .worksHome:nth-child(even)::before{
        right: 80px;
      }

.homePage .works .worksHome:nth-child(even) .type{
        grid-column: 1;
      }

.homePage .works .worksHome:nth-child(even) header{
        grid-column: 5;
        padding-left: 12px;
      }

.homePage .works .worksHome:nth-child(odd){
      grid-template-columns: 1fr auto auto auto auto;
      
    }

.homePage .works .worksHome:nth-child(odd)::before{
        left: 80px;
      }

.homePage .works .worksHome:nth-child(odd) .type{
        grid-column: 5;
      }

.homePage .works .worksHome:nth-child(odd) header{
        grid-column: 1;
        padding-right: 12px;
        text-align: right;
      }

.homePage .works .worksHome + .worksHome{
      margin-top: 42px;
    }

.homePage .clients{
    margin: 116px auto 0;
    max-width: 986px;
  }

.homePage .clients .triangleTitle{
      margin-bottom: 64px;
    }

.homePage .clients .triangleTitle .triangle{
        background: #932323;
      }

.homePage .clients .rollX::before{
        background: #932323;
      }

.homePage .clients .swiper-slide{
      height: auto;
    }

.homePage .clients .clientsInner{
      height: 100%;
      border: 1px solid #D8D8D8;
      border-radius: 5px;
      padding: 10px;
    }

.homePage .clients .clientsInner .logo{
        height: 45px;
        width: 90%;
      }

.homePage .clients .clientsInner .logo img{
          -o-object-fit: contain;
             object-fit: contain;
          width: 100%;
          height: 100%;
        }

.homePage .clients .clientsInner .text{
        margin-top: 7px;
        font-size: 1.6rem;
        letter-spacing: -.03em;
        line-height: 1.5;
        text-align: center;
      }

.homePage .clients .clientsInner .img{
        margin-top: 9px;
      }

.homePage .clients .slideWall .parts{
        margin-top: 15px;
        display: grid;
        grid-template-columns: 22px 22px 1fr;
        align-items: center;
        gap: 0 10px;
      }

.homePage .clients .slideWall .parts .swiper-pagination,
        .homePage .clients .slideWall .parts .swiper-button-next,
        .homePage .clients .slideWall .parts .swiper-button-prev{
          position: static;
          margin: 0;
        }

.homePage .clients .slideWall .parts .swiper-button-next,
        .homePage .clients .slideWall .parts .swiper-button-prev{
          width: 22px;
          height: 22px;
          background: url('../../img/slide_arrow.svg') no-repeat center center / contain;
        }

.homePage .clients .slideWall .parts .swiper-button-next::after,.homePage .clients .slideWall .parts .swiper-button-prev::after{
            display: none;
          }

.homePage .clients .slideWall .parts .swiper-button-next{
          rotate:-180deg;
        }

.homePage .clients .slideWall .parts .swiper-pagination{
          background: #D5D5D5;
          height: 2px;
        }

.homePage .clients .slideWall .parts .swiper-pagination-progressbar-fill{
          background: #932323;
        }

.homePage .clients .spClientsList{
      display: none;
    }

.homePage .grayWrapper{
    margin-top: 100px;
    background: #F5F5F5;
    padding-bottom: 513px;
  }

.homePage .products{
    padding-top: 85px;
  }

.homePage .products .triangleTitle{
      margin-bottom: 57px;
    }

.homePage .products .triangleTitle .triangle{
        background: #164E26;
      }

.homePage .products .list li + li{
        margin-top: 29px;
      }

.homePage .products .list .num{
        width: min(100% - 40px,1170px);
        margin-inline: auto;
      }

.homePage .products .list .num span{
          width: 180px;
          height: 42px;
          border-radius: 5px 5px 0 0;
          background: #fff;
          display: grid;
          place-content: center;
          text-align: center;
          font-size: 3.5rem;
          letter-spacing: -.03em;
          line-height: 1;
          font-weight: 600;
          border: 1px solid #707070;
          border-bottom: none;
        }

.homePage .products .cleanStep{
      height: 590px;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      color: #fff;
    }

.homePage .products .cleanStep .inner{
        padding-top: 59px;
        height: 100%;
        width: min(calc(100% - 40px),1180px);
        margin-inline: auto;
        display: flex;
        justify-content: space-between;
      }

.homePage .products .cleanStep .leftBox{
        order: 1;
        padding-top: 37px;
      }

.homePage .products .cleanStep .leftBox .text1{
          width: 460px;
          font-size: 4rem;
          line-height: 1.25;
          letter-spacing: -.03em;
          font-weight: 700;
          text-align: center;
        }

.homePage .products .cleanStep .leftBox .text1 span{
            font-size: 2rem;
            padding-bottom: 10px;
          }

.homePage .products .cleanStep .leftBox .text2{
          margin-top: 117px;
          font-size: 2.7rem;
          line-height: 1.22;
          letter-spacing: -.03em;
          text-align: center;
          position: relative;
        }

.homePage .products .cleanStep .leftBox .text2::before{
            content: '';
            width: 151px;
            height: 113px;
            background-image: -webkit-image-set(
              url('../../img/home_clean_step_illu1.png') 1x,
              url('../../img/home_clean_step_illu1@2x.png') 2x
            );
            background-image: image-set(
              url('../../img/home_clean_step_illu1.png') 1x,
              url('../../img/home_clean_step_illu1@2x.png') 2x
            );
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            position: absolute;
            left: 50%;
            translate: -50% 0;
            top: -106px;
          }

.homePage .products .cleanStep .leftBox .text2::after{
            content: '';
            width: 85px;
            height: 85px;
            background-image: -webkit-image-set(
              url('../../img/home_clean_step_illu2.png') 1x,
              url('../../img/home_clean_step_illu2@2x.png') 2x
            );
            background-image: image-set(
              url('../../img/home_clean_step_illu2.png') 1x,
              url('../../img/home_clean_step_illu2@2x.png') 2x
            );
            background-repeat: no-repeat;
            background-position: center center;
            background-size: contain;
            position: absolute;
            left: 50%;
            translate: -50% 0;
            bottom: -63px;
          }

.homePage .products .cleanStep .rightBox{
        width: 384px;
        order: 2;
      }

.homePage .products .cleanStep .rightBox header{
          text-align: center;
          margin-bottom: 22px;
        }

.homePage .products .cleanStep .rightBox header h2{
            font-size: 6.9rem;
            line-height: 1.2;
            font-weight: 400;
          }

.homePage .products .cleanStep .rightBox header p{
            font-size: 2.9rem;
            letter-spacing: .3em;
            font-weight: 700;
          }

.homePage .products .cleanStep .rightBox .textBox p{
            font-size: 1.5rem;
            line-height: 1.46;
            letter-spacing: -.03em;
          }

.homePage .products .cleanStep .rightBox .textBox p + p{
            margin-top: 1.5em;
          }

.homePage .products .cleanStep .rightBox .more{
          width: 200px;
          height: 40px;
          margin: 29px auto 0;
          border-radius: 30px;
          border: 1px solid #707070;
          background: url('../../img/more_arrow.svg') no-repeat calc(100% - 20px) center / 14px auto;
          background-color:#fff;
          display: grid;
          place-content: center;
          text-align: center;
          font-size: 1.5rem;
          font-weight: 500;
          letter-spacing: -.03em;
        }

.homePage .products .cleanStep1{
      background-image: -webkit-image-set(
        url('../../img/home_clean_step_bk.jpg') 1x,
        url('../../img/home_clean_step_bk@2x.jpg') 2x
      );
      background-image: image-set(
        url('../../img/home_clean_step_bk.jpg') 1x,
        url('../../img/home_clean_step_bk@2x.jpg') 2x
      );
    }

.homePage .products .cleanStep1 .mon{
        display: inline-block;
      }

.homePage .products .cleanStep1 .grandma{
        display: none;
      }

.homePage .products .cleanStep2{
      background-image: -webkit-image-set(
        url('../../img/home_clean_step_bk2.jpg') 1x,
        url('../../img/home_clean_step_bk2@2x.jpg') 2x
      );
      background-image: image-set(
        url('../../img/home_clean_step_bk2.jpg') 1x,
        url('../../img/home_clean_step_bk2@2x.jpg') 2x
      );
    }

.homePage .products .cleanStep2 .mom{
        display: none;
      }

.homePage .products .cleanStep2 .grandma{
        display: inline-block;
      }

.homePage .products .gootSupport{
      height: 590px;
      background-image: -webkit-image-set(
        url('../../img/home_goot_support_bk.jpg') 1x,
        url('../../img/home_goot_support_bk@2x.jpg') 2x
      );
      background-image: image-set(
        url('../../img/home_goot_support_bk.jpg') 1x,
        url('../../img/home_goot_support_bk@2x.jpg') 2x
      );
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      color: #fff;
    }

.homePage .products .gootSupport .inner{
        height: 100%;
        width: min(calc(100% - 40px),1139px);
        margin-inline: auto;
        display: flex;
        align-items: center;
      }

.homePage .products .gootSupport .leftBox{
        width: 440px;
        order: 1;
        margin-right: 14px;
      }

.homePage .products .gootSupport .leftBox header{
          margin-bottom: 18px;
        }

.homePage .products .gootSupport .leftBox header h2{
            text-align: center;
            font-size: 6.6rem;
            line-height: 1.2;
            font-weight: 400;
          }

.homePage .products .gootSupport .leftBox header p{
            font-size: 2.5rem;
            font-weight: 700;
          }

.homePage .products .gootSupport .leftBox .textBox p{
            font-size: 1.5rem;
            line-height: 1.46;
            letter-spacing: -.03em;
          }

.homePage .products .gootSupport .leftBox .textBox p + p{
            margin-top: 1.5em;
          }

.homePage .products .gootSupport .leftBox .more{
          width: 200px;
          height: 40px;
          margin: 24px auto 0;
          border-radius: 30px;
          border: 1px solid #707070;
          background: url('../../img/more_arrow.svg') no-repeat calc(100% - 20px) center / 14px auto;
          background-color:#fff;
          display: grid;
          place-content: center;
          text-align: center;
          font-size: 1.5rem;
          font-weight: 500;
          letter-spacing: -.03em;
        }

.homePage .products .gootSupport .rightBox{
        order: 2;
      }

.homePage .homeSingular .inner{
      max-width: 987px;
      margin-inline:auto;
      position: relative;
    }

.homePage .homeSingular .inner .goListPage{
        position: absolute;
        top: 9px;
        right: 0;
        font-size: 1.6rem;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -.03em;
        color: #707070;
        display: inline-flex;
        align-items: center;
      }

.homePage .homeSingular .inner .goListPage::after{
          content: '';
          width: 14px;
          height: 14px;
          background: url('../../img/view_all.svg') no-repeat center center / contain;
          flex-shrink: 0;
          margin-left: 9px;
        }

.homePage .homeSingular .singularRow{
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 0 18px;
    }

.homePage .homeSingular .singularRow .noPost{
        grid-column: 1 / 4;
        text-align: center;
        font-weight: 700;
        margin-top: 2em;
      }

.homePage .homeSingular .singularPostBox a{
        background: #fff;
      }

.homePage .newsSec{
    padding-top: 110px;
  }

.homePage .newsSec .triangleTitle{
      margin-bottom: 27px;
    }

.homePage .newsSec .triangleTitle .triangle{
        background: #932323;
      }

.homePage .newsSec .catList{
      margin-bottom: 15px;
    }

.homePage .newsSec .catList ul{
        display: flex;
        flex-flow: row wrap;
        gap: 20px;
      }

.homePage .newsSec .catList li{
        min-width: 100px;
      }

.homePage .newsSec .catList li button{
          width: 100%;
          min-height: 30px;
          padding: 3px 30px;
          border-radius: 15px;
          border: 1px solid #707070;
          background: #fff;
          display: grid;
          place-content: center;
          text-align: center;
          font-size: 1.3rem;
          font-weight: 700;
          letter-spacing: -.03em;
          color: #002578;
          transition: background-color .2s;
          cursor: pointer;
        }

@media (hover:hover){
            .homePage .newsSec .catList li button:hover{
              background-color: transparent;
            }
          }

.homePage .newsSec .catList li .current{
          background-color: transparent;
          pointer-events: none;
        }

.homePage .newsSec .singularRow{
      min-height: 300px;
    }

.homePage .blogSec{
    margin-top: 70px;
  }

.homePage .blogSec .triangleTitle{
      margin-bottom: 70px;
    }

.homePage .blogSec .triangleTitle .triangle{
        background: #002578;
      }

.homePage .blogSec .rollX::before{
        background: #002578;
      }

.homePage .blogSec .inner .goListPage{
        top: -34px;
      }

.homePage .blogSec .inner .goListPage::after{
          background: url('../../img/view_all2.svg') no-repeat center center / contain;
        }

.home .endCtaBox{
    margin-top: -409px;
  }

/* ==========================================================================
   ご相談・お問い合わせ
========================================================================== */

.container:has(.contactPage){
  background: #F9F9F9;
}

.container:has(.contactPage) .pankuzu{
    margin-top: 0;
  }

.contactPage .main{
    max-width: 988px;
    margin: 90px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 40px;
  }

.contactPage .contactHeader{
    grid-column: 1;
    grid-row: 1;
  }

.contactPage .contactHeader .pageTitle{
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1;
      color: #111;
    }

.contactPage .contactHeader .pageTitle::before{
        content: attr(data-en);
        text-transform: capitalize;
        display: block;
        font-family: "futura-pt", sans-serif;
        font-size: 7rem;
        font-weight: 600;
        margin-bottom: 5px;
      }

.contactPage .leftBox{
    grid-column: 1;
    grid-row: 2;
    margin-top: 28px;
  }

.contactPage .leftBox >p{
      font-size: 1.5rem;
      line-height: 1.6;;
      letter-spacing: -0.03em;
    }

.contactPage .leftBox .markBox{
      margin-top: 39px;
      background: #FFF;
      border-radius: 20px;
      height: 373px;
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: center;
      gap:26px;
    }

.contactPage .leftBox .markBox::before{
        content: '';
        width: 140px;
        height: 139px;
        background: url('../../img/contact_mark.svg') no-repeat center center /contain;
      }

.contactPage .leftBox .markBox p{
        font-size: 2.5rem;
        letter-spacing: -0.03em;
        font-weight: 700;
        line-height: 1.4;
        text-align: center;
      }

.contactPage .formWall{
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: start;
  }

/* ==========================================================================
   end
========================================================================== */

@media (max-width: 767px) {
  html{
    font-size: calc(100vw / 39);
  }
body {
  min-width: 0;
	width:100%;
}
img{
	width: 100%;
}
.spShow{
	display: inline-block;
}
.pcShow{
	display: none;
}
.container{
  grid-template-rows: calc(calc(90/390) * 100vw) 1fr auto auto;
}
/* ==========================================================================
   ヘッダー
========================================================================== */
.header{
  display: grid;
  grid-template-columns: calc(calc(20/390) * 100vw) calc(calc(237/390) * 100vw) 1fr calc(calc(20/390) * 100vw);
  min-width: 0;
  height: calc(calc(90/390) * 100vw);
  transition: backgound .4s linear;
}
  .header .logo{
    position: relative;
    z-index: 1000;
  }
  .header .menuBtn{
    grid-column: 3;
    justify-self: end;
    align-self: center;
    position: relative;
    z-index: 1000;
  }
    .header .menuBtn button{
      width: calc(calc(49/390) * 100vw);
      height: calc(calc(49/390) * 100vw);
      background: #959595;
      border-radius: 50%;
      display: grid;
      place-content: center;
    }
    .header .menuBtn .lineBox{
      width: calc(calc(27/390) * 100vw);
      height: calc(calc(10/390) * 100vw);
      display: grid;
      grid-template-columns: 100%;
      grid-template-rows: auto;
      gap: calc(calc(8/390) * 100vw);
    }
    .header .menuBtn .line{
      height: calc(calc(2/390) * 100vw);
      background: #fff;
      transition: rotate .2s linear;
    }
  .header .menuBtnOpen{
    gap:0;
  }
    .header .menuBtnOpen .line{
      grid-column: 1;
      align-self: center;
    }
    .header .menuBtnOpen .line1{
      grid-row: 1;
      rotate: 20deg;
    }
    .header .menuBtnOpen .line2{
      grid-row: 1;
      rotate: -20deg;
    }
.header:has(.navOpen){
  background: transparent
}
/* ==========================================================================
   グローバルナビ
========================================================================== */
.gNav{
  display: none;
  position: fixed;
  top: calc(calc(90/390) * 100vw);
  left: 0;
  z-index: 999;
  width: 100%;
}
  .gNav::before{
    content: '';
    background: #F9F9F9;
    width: 100%;
    height: 100svh;
    position: absolute;
    top: calc(-1 * calc(calc(90/390) * 100vw));
    left: 0;
    z-index: -1;
  }
  .gNav .inner{
    height: calc(100svh - calc(calc(90/390) * 100vw));
    overflow-y: auto;
    overscroll-behavior-y: none;
    padding: calc(calc(57/390) * 100vw) calc(calc(37/390) * 100vw);
  }
  .gNav .pageLink{
    flex-flow: column;
    align-items: flex-start;
    gap: calc(calc(28/390) * 100vw) 0;
    font-size: 2.2rem;
  }
    .gNav .pageLink .home{
      width: calc(calc(19/390) * 100vw);
    }
  .gNav .sns{
    margin-top: calc(calc(57/390) * 100vw);
    display: flex;
    justify-content: center;
    gap: 0 calc(calc(25/390) * 100vw);
  }
    .gNav .sns li{
      flex: 0 1 calc(calc(20/390) * 100vw);
    }
.navOpen{
  display: block;
  animation: menuFadeIn .4s 1 0s linear forwards;
}
.navClose{
  animation: menuFadeOut .4s 1 0s linear forwards;
}
/* ==========================================================================
   footer
========================================================================== */
.footer{
  padding: calc(calc(50/390) * 100vw) 0 calc(calc(10/390) * 100vw);
}
  .footer .inner{
    width: calc(calc(330/390) * 100vw);
    grid-template-columns: 100%;
    align-items: start;
    gap: calc(calc(50/390) * 100vw) 0;
  }
  .footer h2{
    padding-left: 0;
    justify-self: center;
    width: calc(calc(237/390) * 100vw);
  }
  .footer .footerNav{
    padding-left: 0;
  }
      .footer .footerNav ul li + li{
        margin-top: calc(calc(12/390) * 100vw);
      }
  .footer .sns{
    padding-left: 0;
    justify-content: center;
    gap: 0 calc(calc(25/390) * 100vw);
  }
    .footer .sns li{
      flex: 0 1 calc(calc(29/390) * 100vw);
    }
  .footer .copyright{
    padding-right: 0;
    text-align: center;
  }
  .footer .pagetop{
    width: calc(calc(80/390) * 100vw);
    height: calc(calc(80/390) * 100vw);
    bottom: calc(calc(20/390) * 100vw);
    right:calc(calc(20/390) * 100vw);
    outline: none;
  }
    .footer .pagetop:hover{
      opacity: 1;
    }
  .footer .stopBtn{
    position: absolute;
    bottom: auto;
    top: calc(-1 * calc(calc(40/390) * 100vw));
    
  }
/* ==========================================================================
   cta
========================================================================== */
.endCtaBox{
  height: calc(calc(504/390) * 100vw);
}
  .endCtaBox::before{
    width: 100%;
    height: 100%;
    background: url('../../img/sp_cta_bk.png') no-repeat center center / contain;
    opacity: 1;
  }
  .endCtaBox::after{
    display: none;
  }
  .endCtaBox h2{
    font-size: 6rem;
    letter-spacing: -.02em;
    line-height: 1.16;
    text-align: center;
    top: calc(calc(137/390) * 100vw);
    left: calc(calc(10/390) * 100vw);
    translate: 0;
  }
  .endCtaBox .text1{
    font-size: 6rem;
    top: calc(calc(63/390) * 100vw);
    left: calc(calc(13/390) * 100vw);
    translate: 0;
  }
  .endCtaBox .text2{
    font-size: 5rem;
    top: calc(calc(401/390) * 100vw);
    left: calc(calc(58/390) * 100vw);
    translate: 0;
  }
  .endCtaBox .goContact{
    margin:calc(calc(304/390) * 100vw) auto 0;
    width: calc(calc(266/390) * 100vw);
    height: calc(calc(74/390) * 100vw);
    border-radius: calc(calc(40/390) * 100vw);
  }
      .endCtaBox .goContact span::before{
        width: calc(calc(30/390) * 100vw);
        height: calc(calc(30/390) * 100vw);
        margin-right: calc(calc(12/390) * 100vw);
      }
  .endCtaBox .obj1{
    width: calc(calc(49/390) * 100vw);
    height: calc(calc(49/390) * 100vw);
    top: calc(calc(20/390) * 100vw);
    left: calc(calc(71/390) * 100vw);
    translate: 0;
  }
  .endCtaBox .obj2{
    width: calc(calc(39/390) * 100vw);
    height: calc(calc(39/390) * 100vw);
    top: calc(calc(143/390) * 100vw);
    translate: 0;
    left: calc(calc(20/390) * 100vw);
  }
  .endCtaBox .obj3{
    display: none;
  }
  .endCtaBox .obj4{
    width: calc(calc(59/390) * 100vw);
    height: calc(calc(59/390) * 100vw);
    top: calc(calc(52/390) * 100vw);
    translate: 0;
    left: calc(calc(295/390) * 100vw);
  }
  .endCtaBox .obj5{
    display: none;
  }
  .endCtaBox .obj6{
    width: calc(calc(55/390) * 100vw);
    height: calc(calc(55/390) * 100vw);
    top: calc(calc(381/390) * 100vw);
    translate: 0;
    left: calc(calc(6/390) * 100vw);
  }
  .endCtaBox .obj7{
    display: none;
  }
  .endCtaBox .obj8{
    width: calc(calc(49/390) * 100vw);
    height: calc(calc(49/390) * 100vw);
    top: calc(calc(284/390) * 100vw);
    translate: 0;
    left: calc(calc(324/390) * 100vw);
  }
/* ==========================================================================
   会社概要
========================================================================== */
      .companyPage .pageHeader .pageTitle::before{
        margin-bottom: calc(calc(5/390) * 100vw);
      }
  .companyPage .member{
    max-width: calc(calc(360/390) * 100vw);
    margin: calc(calc(70/390) * 100vw) auto 0;
  }
    .companyPage .member .triangleTitle{
      margin-bottom: calc(calc(39/390) * 100vw);
    }
    .companyPage .member .memberBox{
      display: grid;
      grid-template-columns: 100%;
      grid-template-rows: auto auto 1fr;
      gap: 0;
      
    }
      .companyPage .member .memberBox header{
        grid-column: 1;
        grid-row: 2;
        padding-top: calc(calc(27/390) * 100vw);
      }
        .companyPage .member .memberBox header .position{
          margin-top: calc(calc(2/390) * 100vw);
        }
      .companyPage .member .memberBox .textBox{
        grid-column: 1;
        grid-row: 3;
        margin-top: calc(calc(20/390) * 100vw);
        height: auto;
        overflow-y: auto;
        padding-right: 0;
      }
      .companyPage .member .memberBox .imgBox{
        grid-column: 1;
        grid-row: 1;
        filter: drop-shadow(0px calc(calc(1/390) * 100vw) calc(calc(1/390) * 100vw) rgba(0, 0, 0, 0.16));
      }
        .companyPage .member .memberBox .imgBox figure{
          aspect-ratio: 360/330;
          clip-path: polygon(100% 0, 100% 91.66%, 90.90% 100%, 0 100%, 0 0);
        }

    .companyPage .member .memberBox + .memberBox{
       margin-top: calc(calc(49/390) * 100vw);
    }
  .companyPage .companyInfo{
    max-width: calc(calc(360/390) * 100vw);
    margin: calc(calc(116/390) * 100vw) auto 0;
  }
    .companyPage .companyInfo .triangleTitle{
      margin-bottom: calc(calc(50/390) * 100vw);
    }
    .companyPage .companyInfo .profileDl{
      grid-template-columns: calc(calc(80/390) * 100vw) 1fr;
      gap: calc(calc(73/390) * 100vw) 0;
    }
      .companyPage .companyInfo .profileDl dt{
        border-right: calc(calc(1/390) * 100vw) solid #707070;
      }
      .companyPage .companyInfo .profileDl dd{
        padding-left: calc(calc(30/390) * 100vw);
      }
      .companyPage .companyInfo .profileDl dt:not(:nth-last-of-type(1)){
        position: relative;
      }
        .companyPage .companyInfo .profileDl dt:not(:nth-last-of-type(1))::before{
          width: calc(calc(360/390) * 100vw);
          height: calc(calc(1/390) * 100vw);
          bottom: calc(-1 * calc(calc(33/390) * 100vw));
        }
/* ==========================================================================
   詳細ページ
========================================================================== */
  .singularPage .singularMain{
    margin-top: calc(calc(70/390) * 100vw);
  }
    .singularPage .singularMain .date{
      max-width: calc(calc(360/390) * 100vw);
    }
      .singularPage .singularMain .date span{
        margin-right: calc(calc(20/390) * 100vw);
      }
    .singularPage .singularMain .singleEdit{
      max-width: calc(calc(360/390) * 100vw);
      margin: calc(calc(29/390) * 100vw) auto 0;
    }
    .singularPage .singularMain .singlePrevNext{
      width: calc(calc(360/390) * 100vw);
      margin: calc(calc(50/390) * 100vw) auto 0;
      display: grid;
      grid-template-columns: 100%;
      gap: calc(calc(30/390) * 100vw);
    }
      .singularPage .singularMain .singlePrevNext .linkBox{
        height: calc(calc(202/390) * 100vw);
        border-radius: calc(calc(10/390) * 100vw);
      }
      .singularPage .singularMain .singlePrevNext .linkBtn{
        background-image: url('../../img/sp_nextprev_bk.jpg');
      }
      .singularPage .singularMain .singlePrevNext .prevNextOverlay{
        display: none;
      }
    .singularPage .singularMain .linkBox:not(:has(.linkBtn)){
      display: none;
    }
/* ==========================================================================
   投稿一覧ページ
========================================================================== */
  .archivePage .main{
    max-width: none;
    margin: calc(calc(65/390) * 100vw) auto 0;
  }
  .archivePage .triangleTitle{
    margin-bottom: calc(calc(45/390) * 100vw);
  }
  .archivePage .catList{
    width: calc(calc(370/390) * 100vw);
    margin: 0 auto calc(calc(30/390) * 100vw);
  }
    .archivePage .catList ul{
      gap: calc(calc(10/390) * 100vw);
    }
    .archivePage .catList li{
      min-width: calc(calc(100/390) * 100vw);
    }
      .archivePage .catList li a{
        min-height: calc(calc(30/390) * 100vw);
        padding: calc(calc(3/390) * 100vw) calc(calc(33/390) * 100vw);
        border-radius: calc(calc(15/390) * 100vw);
        border: calc(calc(1/390) * 100vw) solid #707070;
      }
  .archivePage .singularRow{
    width: calc(calc(317/390) * 100vw);
    margin-inline: auto;
    grid-template-columns: 100%;
    gap: calc(calc(30/390) * 100vw);
  }
/* ==========================================================================
   works
========================================================================== */
  .worksArchivePage .main{
    max-width: calc(calc(370/390) * 100vw);
    margin: calc(calc(70/390) * 100vw) auto 0;
  }
    .worksArchivePage .catList ul{
      flex-flow: column;
      gap: calc(calc(30/390) * 100vw) 0;
      text-align: center;
    }
    .worksArchivePage .catList li{
      line-height: 1;
    }
      .worksArchivePage .catList li:not(:last-child)::after{
        display: none;
      }
    .worksArchivePage .catList .current{
      display: inline-flex;
      align-items: center;
      gap: 0 calc(calc(12/390) * 100vw);
    }
      .worksArchivePage .catList .current::before{
        rotate: -90deg;
        width: calc(calc(16/390) * 100vw);
        height: calc(calc(10/390) * 100vw);
        position: static;
        translate: 0;
        flex-shrink: 0;
        margin-bottom: .2em;
      }
  .worksArchivePage .postListSection{
    margin-top: calc(calc(44/390) * 100vw);
  }
    .worksArchivePage .postListSection .termTitle{
      margin-bottom: calc(calc(26/390) * 100vw);
    }
    .worksArchivePage .postListSection .description{
      margin-bottom: calc(calc(30/390) * 100vw);
      border-radius: calc(calc(10/390) * 100vw);
      padding: calc(calc(30/390) * 100vw) calc(calc(20/390) * 100vw) calc(calc(44/390) * 100vw);
    }
      .worksArchivePage .postListSection .description p{
        font-size: 1.5rem;
      }
    .worksArchivePage .postListSection:has(.description) .termTitle{
      margin-bottom: calc(calc(16/390) * 100vw);
    }
  .worksArchivePage .row{
    grid-template-columns: repeat(2,1fr);
    gap: 0 calc(calc(10/390) * 100vw);
    margin-top: calc(-1 * calc(calc(30/390) * 100vw));
  }
  .worksArchivePage .worksPost{
    gap:0;
    margin-top: calc(calc(30/390) * 100vw);
  }

/* ==========================================================================
   サービス
========================================================================== */
  .servicePage .main{
    max-width: none;
    margin: calc(calc(67/390) * 100vw) auto 0;
  }
    .servicePage .serviceSec >header{
      width: calc(calc(360/390) * 100vw);
      margin-inline: auto;
    }
    .servicePage .serviceSec .toptextBox{
      width: calc(calc(360/390) * 100vw);
      margin: calc(calc(15/390) * 100vw) auto 0;
    }
  .servicePage .secContent{
    margin-top: calc(calc(29/390) * 100vw);
  }
  .servicePage .gootsupport{
    width: calc(calc(360/390) * 100vw);
    margin-inline: auto;
    height: calc(calc(600/390) * 100vw);
    background-image: url('../../img/sp_service_gs_bk.jpg');
    background-size: cover;
    flex-flow: column;
    align-items: center;
    padding:calc(calc(72/390) * 100vw) 0 0 0;
    overflow: hidden;
  }
    .servicePage .gootsupport h2{
      font-size: 5.1rem;
    }
    .servicePage .gootsupport p{
      margin-top: calc(calc(10/390) * 100vw);
      font-size: 2rem;
    }
    .servicePage .gootsupport figure{
      margin-top:0;
      width: calc(calc(390/390) * 100vw);
    }
  .servicePage .slideContent{
    background: #F5F5F5;
    padding: calc(calc(20/390) * 100vw) calc(calc(10/390) * 100vw) calc(calc(17/390) * 100vw);
  }
    .servicePage .slideContent .parts{
      margin-top: calc(calc(19/390) * 100vw);
      grid-template-columns: calc(calc(22/390) * 100vw) calc(calc(22/390) * 100vw) 1fr;
      gap: 0 calc(calc(10/390) * 100vw);
    }
      .servicePage .slideContent .parts .swiper-button-next,
      .servicePage .slideContent .parts .swiper-button-prev{
        width: calc(calc(22/390) * 100vw);
        height: calc(calc(22/390) * 100vw);
      }
      .servicePage .slideContent .parts .swiper-pagination{
        height: calc(calc(2/390) * 100vw);
      }
/* ==========================================================================
   home
========================================================================== */
  .homePage .fvMovie{
		height: 100svh;
		min-height: 0;
  }
  .homePage .mission{
    padding: calc(calc(70/390) * 100vw) 0 calc(calc(64/390) * 100vw);
  }
    .homePage .mission .triangleTitle{
      margin-bottom: calc(calc(63/390) * 100vw);
    }
    .homePage .mission .typewriter{
      position: relative;
    }
      .homePage .mission .typewriter .cursor {
        display: inline-block;
        width: calc(calc(8/390) * 100vw);
        margin-left: calc(-1 * calc(calc(8/390) * 100vw));
      }
    .homePage .mission .typewriter1{
      font-size: 2.7rem;
      line-height: 1.62;
      margin-bottom: calc(calc(57/390) * 100vw);
    }
    .homePage .mission .typewriter2{
      margin-top: calc(calc(44/390) * 100vw);
    }
  .homePage .works{
    max-width: calc(calc(370/390) * 100vw);
    margin: calc(calc(67/390) * 100vw) auto 0;
  }
    .homePage .works .triangleTitle{
      margin-bottom: calc(calc(55/390) * 100vw);
    }
    .homePage .works .worksHome{
      padding: calc(calc(20/390) * 100vw) 0;
      grid-template-rows: auto 1fr;
      gap: calc(calc(10/390) * 100vw);
    }
      .homePage .works .worksHome::before{
        width: calc(calc(290/390) * 100vw);
        min-width: 0;
        height: 100%;
        bottom: 0;
      }
      .homePage .works .worksHome .type{
        height: calc(calc(260/390) * 100vw);
        position: absolute;
        top: calc(-1 * calc(calc(20/390) * 100vw));
        right: calc(calc(192/390) * 100vw);
        gap: calc(calc(8/390) * 100vw);
        padding-bottom: calc(calc(25/390) * 100vw);
      }
        .homePage .works .worksHome .type::before{
          width: calc(calc(2/390) * 100vw);
        }
        .homePage .works .worksHome .type span{
          font-size: 1.5rem;
        }
        .homePage .works .worksHome header h2{
          font-size: 1.8rem;
          line-height: 1.44;
        }
        .homePage .works .worksHome header p{
          font-size: 1.4rem;
          line-height: 1.71;
          margin-top: calc(calc(5/390) * 100vw);
        }
      .homePage .works .worksHome .img1{
        grid-column: 2;
        grid-row: 1;
        border: calc(calc(1/390) * 100vw) solid #AAAAAA;
      }
      .homePage .works .worksHome .img2{
        grid-column: 1;
        grid-row: 2;
      }
      .homePage .works .worksHome .img3{
        grid-column: 2;
        grid-row: 2;
      }
    .homePage .works .worksHome:nth-child(even){
      grid-template-columns: 1fr 1fr;
    }
      .homePage .works .worksHome:nth-child(even)::before{
        right: 0;
      }
      .homePage .works .worksHome:nth-child(even) header{
        grid-column: 1;
        padding-left: 0;
        padding-right: calc(calc(24/390) * 100vw);
        text-align: right;
      }
    .homePage .works .worksHome:nth-child(odd){
      grid-template-columns: 1fr 1fr;
      
    }
      .homePage .works .worksHome:nth-child(odd)::before{
        left: auto;
        right: 0;
      }
      .homePage .works .worksHome:nth-child(odd) header{
        grid-column: 1;
        padding-right: calc(calc(24/390) * 100vw);
        text-align: right;
      }
    .homePage .works .worksHome + .worksHome{
      margin-top: calc(calc(50/390) * 100vw);
    }
  .homePage .clients{
    margin: 116px auto 0;
    max-width: 986px;
  }
    .homePage .clients .triangleTitle{
      margin-bottom: 64px;
    }
      .homePage .clients .triangleTitle .triangle{
        background: #932323;
      }
    .homePage .clients .slideWall{
      display: none;
    }
    .homePage .clients .spClientsList{
      width: calc(calc(317/390) * 100vw);
      margin-inline: auto;
      display: block;
    }
      .homePage .clients .spClientsList .clientsInner{
        height: auto;
        border: calc(calc(1/390) * 100vw) solid #D8D8D8;
        border-radius: calc(calc(5/390) * 100vw);
        padding: calc(calc(10/390) * 100vw);
      }
        .homePage .clients .spClientsList .clientsInner .logo{
          height: calc(calc(45/390) * 100vw);
        }
        .homePage .clients .spClientsList .clientsInner .text{
          margin-top: calc(calc(7/390) * 100vw);
        }
        .homePage .clients .spClientsList .clientsInner .img{
          margin-top: calc(calc(9/390) * 100vw);
        }
      .homePage .clients .spClientsList .clientsInner + .clientsInner{
        margin-top: calc(calc(30/390) * 100vw);
      }
      .homePage .clients .spClientsList .hideBox{
        display: none;
        margin-top: calc(calc(30/390) * 100vw);
      }
      .homePage .clients .spClientsList .more{
        margin: calc(calc(30/390) * 100vw) auto 0;
        width: calc(calc(200/390) * 100vw);
        height: calc(calc(40/390) * 100vw);
        border-radius: calc(calc(30/390) * 100vw);
        border: calc(calc(1/390) * 100vw) solid #707070;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: -.03em;
        display: grid;
        place-content: center;
        background: url('../../img/slide_down_arrow.svg') no-repeat calc(100% - calc(calc(19/390) * 100vw)) center / calc(calc(12/390) * 100vw) auto;
        background-color: #fff;
      }
  .homePage .grayWrapper{
    margin-top: calc(calc(70/390) * 100vw);
    padding-bottom: calc(calc(70/390) * 100vw);
    background: #fff;
  }
  .homePage .products{
    background: #F5F5F5;
    padding: calc(calc(89/390) * 100vw) 0 calc(calc(70/390) * 100vw);
  }
    .homePage .products .triangleTitle{
      margin-bottom: calc(calc(50/390) * 100vw);
    }
      .homePage .products .list li + li{
        margin-top: calc(calc(70/390) * 100vw);
      }
      .homePage .products .list .num{
        width: calc(calc(180/390) * 100vw);
        margin-inline: auto;
      }
        .homePage .products .list .num span{
          width: 100%;
          height: calc(calc(42/390) * 100vw);
          border-radius: calc(calc(5/390) * 100vw) calc(calc(5/390) * 100vw) 0 0;
          border: calc(calc(1/390) * 100vw) solid #707070;
        }
    .homePage .products .cleanStep{
      height: auto;
      background: none;
    }
      .homePage .products .cleanStep .inner{
        padding-top: 0;
        height: auto;
        width: 100%;
        margin-inline: auto;
        flex-flow: column;
      }
      .homePage .products .cleanStep .leftBox{
        order: 1;
        height: calc(calc(590/390) * 100vw);
        padding: calc(calc(25/390) * 100vw) 0 calc(calc(14/390) * 100vw);
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        border-radius: calc(calc(20/390) * 100vw);
        overflow: hidden;
      }
        .homePage .products .cleanStep .leftBox .text1{
          width: 100%;
          font-size: 3.4rem;
        }
          .homePage .products .cleanStep .leftBox .text1 span{
            padding-bottom: calc(calc(11/390) * 100vw);
          }
        .homePage .products .cleanStep .leftBox .text2{
          margin-top: 0;
        }
          .homePage .products .cleanStep .leftBox .text2::before{
            width: calc(calc(132/390) * 100vw);
            height: calc(calc(99/390) * 100vw);
            background-image: url('../../img/home_clean_step_illu1@2x.png');
            top: calc(-1 * calc(calc(99/390) * 100vw));
          }
          .homePage .products .cleanStep .leftBox .text2::after{
            width: calc(calc(85/390) * 100vw);
            height: calc(calc(85/390) * 100vw);
            background-image: url('../../img/home_clean_step_illu2@2x.png');
            translate: calc(calc(7/390) * 100vw) 0;
            bottom: calc(calc(48/390) * 100vw);
          }
      .homePage .products .cleanStep .rightBox{
        width: 100%;
        order: 2;
        color: #111;
        margin-top: calc(calc(15/390) * 100vw);
      }
        .homePage .products .cleanStep .rightBox header{
          margin-bottom: calc(calc(14/390) * 100vw);
        }
          .homePage .products .cleanStep .rightBox header h2{
            font-size: 6.6rem;
          }
        .homePage .products .cleanStep .rightBox .textBox{
          width: calc(calc(350/390) * 100vw);
          margin-inline: auto;
        }
        .homePage .products .cleanStep .rightBox .more{
          width: calc(calc(200/390) * 100vw);
          height: calc(calc(40/390) * 100vw);
          margin: calc(calc(29/390) * 100vw) auto 0;
          border-radius: calc(calc(30/390) * 100vw);
          border: calc(calc(1/390) * 100vw) solid #707070;
          background: url('../../img/more_arrow.svg') no-repeat calc(100% - calc(calc(20/390) * 100vw)) center / calc(calc(14/390) * 100vw) auto;
          background-color:#fff;
        }
    .homePage .products .cleanStep1{
      background: none;
    }
      .homePage .products .cleanStep1 .leftBox{
        background: url('../../img/sp_home_clean_step_bk.jpg') no-repeat center center / cover;
      }
      .homePage .products .cleanStep1 .mom{
        display: inline-block;
      }
      .homePage .products .cleanStep1 .mon{
        display: inline-block;
      }
      .homePage .products .cleanStep1 .grandma{
        display: none;
      }
    .homePage .products .cleanStep2{
      background: none;
    }
      .homePage .products .cleanStep2 .leftBox{
        background: url('../../img/sp_home_clean_step_bk2.jpg') no-repeat center center / cover;
      }
      .homePage .products .cleanStep2 .mom{
        display: none;
      }
      .homePage .products .cleanStep2 .grandma{
        display: inline-block;
      }
    .homePage .products .gootSupport{
      height: auto;
      background:none;
      color: #111;
    }
      .homePage .products .gootSupport .inner{
        height:auto;
        width: 100%;
        flex-flow: column;
      }
      .homePage .products .gootSupport .leftBox{
        width: calc(calc(366/390) * 100vw);
        margin: calc(calc(15/390) * 100vw) auto 0;
        order: 2;
      }
        .homePage .products .gootSupport .leftBox header{
          margin-bottom: calc(calc(16/390) * 100vw);
        }
          .homePage .products .gootSupport .leftBox header h2{
            font-size: 5.3rem;
          }
          .homePage .products .gootSupport .leftBox header p{
            font-size: 2rem;
            margin-top: calc(calc(12/390) * 100vw);
          }
        .homePage .products .gootSupport .leftBox .more{
          width: calc(calc(200/390) * 100vw);
          height: calc(calc(40/390) * 100vw);
          margin: calc(calc(29/390) * 100vw) auto 0;
          border-radius: calc(calc(30/390) * 100vw);
          border: calc(calc(1/390) * 100vw) solid #707070;
          background: url('../../img/more_arrow.svg') no-repeat calc(100% - calc(calc(20/390) * 100vw)) center / calc(calc(14/390) * 100vw) auto;
          background-color:#fff;
        }
      .homePage .products .gootSupport .rightBox{
        order: 1;
        background: url('../../img/sp_home_goot_support_bk.jpg') no-repeat center center / cover;
        height: calc(calc(590/390) * 100vw);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: calc(calc(20/390) * 100vw);
        overflow: hidden;
      }
        .homePage .products .gootSupport .rightBox figure{
          width: calc(calc(410/390) * 100vw);
        }
    .homePage .homeSingular .inner{
      max-width: calc(calc(370/390) * 100vw);
    }
      .homePage .homeSingular .inner .goListPage{
        position: static;
        display: flex;
        width: -moz-fit-content;
        width: fit-content;
        margin: calc(calc(18/390) * 100vw) calc(calc(26/390) * 100vw) 0 auto;
      }
        .homePage .homeSingular .inner .goListPage::after{
          width: calc(calc(14/390) * 100vw);
          height: calc(calc(14/390) * 100vw);
          margin-left: calc(calc(9/390) * 100vw);
        }
    .homePage .homeSingular .singularRow{
      width: calc(calc(317/390) * 100vw);
      margin-inline: auto;
      display: grid;
      grid-template-columns: 100%;
      gap: calc(calc(30/390) * 100vw) 0;
    }
  .homePage .newsSec{
    padding-top: calc(calc(84/390) * 100vw);
  }
    .homePage .newsSec .triangleTitle{
      margin-bottom: calc(calc(45/390) * 100vw);
    }
    
    .homePage .newsSec .catList{
      margin-bottom: calc(calc(30/390) * 100vw);
    }
      .homePage .newsSec .catList ul{
        gap: calc(calc(10/390) * 100vw);
      }
      .homePage .newsSec .catList li{
        min-width: calc(calc(100/390) * 100vw);
      }
        .homePage .newsSec .catList li a{
          min-height: calc(calc(30/390) * 100vw);
          padding: calc(calc(3/390) * 100vw) calc(calc(33/390) * 100vw);
          border-radius: calc(calc(15/390) * 100vw);
          border: calc(calc(1/390) * 100vw) solid #707070;
        }
    .homePage .newsSec .singularRow{
      min-height: calc(calc(200/390) * 100vw);
    }
  .homePage .blogSec{
    margin-top: calc(calc(47/390) * 100vw);
  }
    .homePage .blogSec .triangleTitle{
      margin-bottom: calc(calc(44/390) * 100vw);
    }
  .home .endCtaBox{
    margin-top: 0;
  }
/* ==========================================================================
   ご相談・お問い合わせ
========================================================================== */
  .contactPage .main{
    max-width: calc(calc(350/390) * 100vw);
    margin: calc(calc(50/390) * 100vw) auto 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto 1fr;
    gap: 0;
  }
    .contactPage .contactHeader .pageTitle{
      color: #111;
    }
      .contactPage .contactHeader .pageTitle::before{
        margin-bottom: calc(calc(5/390) * 100vw);
      }
  .contactPage .leftBox{
    grid-column: 1;
    grid-row: 2;
    margin-top: calc(calc(28/390) * 100vw);
  }
    .contactPage .leftBox >p{
      letter-spacing: 0;
    }
    .contactPage .leftBox .markBox{
      margin-top: calc(calc(41/390) * 100vw);
      border-radius: calc(calc(20/390) * 100vw);
      height: calc(calc(330/390) * 100vw);
      gap:26px;
    }
      .contactPage .leftBox .markBox::before{
        width: calc(calc(140/390) * 100vw);
        height: calc(calc(139/390) * 100vw);
      }
  .contactPage .formWall{
    grid-column: 1;
    grid-row: 3;
    margin-top: calc(calc(30/390) * 100vw);
  }
/*end*/
}