@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

.blue {
  color: #1784c1;
}

.greenl {
  color: #1faa2c;
}

.redd {
  color: #db1221;
}

.white {
  color: #fff;
}

.news {
  background: #006eb2;
}

.info-do {
  background: #004098;
}

.info-plaza {
  background: #01645a;
}

.recruit02 {
  background: #e83929;
}

.recruit01 {
  background: #1faa2c;
}

.float1 {
  display: inline-block;
  animation: wave 2.5s infinite;
}

@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10%);
  }
}
.float2 {
  display: inline-block;
  animation: wave2 2s infinite;
}

@keyframes wave2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11%);
  }
}
.float3 {
  display: inline-block;
  animation: wave3 3s infinite;
}

@keyframes wave3 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6%);
  }
}
.float4 {
  display: inline-block;
  animation: wave4 5s infinite;
}

@keyframes wave4 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15%);
  }
}
.indexeye-h {
  background-image: linear-gradient(45deg, #6ed1d2 0%, #ffa955 50%, #f75a5a 90%);
  background-size: 400% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: gradationTextAnimation;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes gradationTextAnimation {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.gold {
  padding: 0.1rem 0.3rem;
  background: linear-gradient(45deg, #DAAF08 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #DAAF08 90% 100%);
  background-size: 800% 400%;
  animation: gradient 4s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.recruit-A {
  background: linear-gradient(-45deg, #0000bf, #116be2, #29abe2) fixed;
  background-size: 500% 500%;
  animation: Grad 10s ease infinite;
}

@keyframes Grad {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*--------------------------------------- max-width: 767px ----------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .drawer {
    margin-top: 0.3rem;
  }
  .drawer-hidden {
    display: none;
  }
  .drawer-open {
    display: flex;
    height: 40px;
    width: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    cursor: pointer;
  }
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
    content: "";
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
  }
  .drawer-open span:before {
    bottom: 10px;
  }
  .drawer-open span:after {
    top: 10px;
  }
  #drawer-check:checked ~ .drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer-check:checked ~ .drawer-open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer-check:checked ~ .drawer-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    z-index: 99;
    background: #fff;
    transition: 0.5s;
  }
  #drawer-check:checked ~ .drawer-content {
    left: 0;
  }
  header {
    padding-top: 1.5rem;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header h1 {
    width: 80%;
  }
  header nav ul {
    width: 85%;
    margin: 0 auto;
    margin: 8rem auto 0;
    text-align: center;
  }
  header nav ul li {
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.1;
  }
  header nav ul li a {
    text-decoration: none;
  }
  header nav ul li span {
    line-height: 0;
    font-size: 1rem;
  }
  /*---------------------*/
  /*------- footer ------*/
  /*---------------------*/
  footer {
    background: url(img/footer-bk.svg) no-repeat center;
    background-size: cover;
    padding: 2rem 0;
  }
  footer #foot-contents {
    width: 85%;
    margin: 0 auto;
  }
  footer #foot-contents #foot-left h2 {
    width: 90%;
  }
  footer #foot-contents #foot-left p {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
  }
  footer #foot-contents #foot-left p a {
    text-decoration: none;
    font-size: 0.8rem;
  }
  footer #foot-contents #foot-left #foot-adress {
    margin-top: 0.5rem;
  }
  footer #foot-contents #foot-right {
    margin-top: 1rem;
  }
  footer #foot-contents #foot-right nav ul {
    display: flex;
    justify-content: space-between;
  }
  footer #foot-contents #foot-right nav ul li {
    font-size: 0.8rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 0.8;
    color: #fff;
  }
  footer #foot-contents #foot-right nav ul li a {
    text-decoration: none;
    display: block;
  }
  footer #foot-contents #foot-right nav ul li .nav-s {
    font-size: 0.4rem;
  }
  /* スライダー全体 */
  .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  .slider-wrapper .slider {
    animation: scroll-left 40s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  .slider-wrapper .slide {
    width: 33.3333333333vw; /* 3はスライドの枚数 */
  }
  .slider-wrapper .slide img {
    display: block;
    width: 100%;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .slider-wrapper2 {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  .slider-wrapper2 .slider {
    animation: scroll-left 20s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  .slider-wrapper2 .slide {
    width: 35vw; /* 3はスライドの枚数 */
    margin-right: 1vw;
  }
  .slider-wrapper2 .slide img {
    display: block;
    width: 100%;
  }
  .slider-wrapper2 .slide:nth-child(even) {
    margin-top: 4rem;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #index-eye {
    position: relative;
    margin: 2.5rem 0 0 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 900;
  }
  #index-eye h2 {
    width: 90%;
    position: absolute;
    left: 5%;
    z-index: 10;
    font-size: 10vw;
    letter-spacing: 0.4vw;
    line-height: 1.6;
  }
  #index-eye h2 .indexeye-h {
    font-size: 10vw;
    letter-spacing: 0.4vw;
  }
  #index-eye h3 {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.3rem 0;
    position: absolute;
    z-index: 5;
    top: 38vh;
    left: 5%;
    font-size: 3vw;
    letter-spacing: 0.3vw;
  }
  #index-eye #index-eye-img {
    width: 85%;
    position: absolute;
    z-index: 1;
    top: 15vh;
    right: 0;
  }
  #index-eye #index-eye-img img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem 0 0 0.5rem;
  }
  #index-brand {
    margin: 65vh 0 5rem 0;
  }
  #index-brand h2 {
    font-size: 2.5rem;
    text-align: center;
    letter-spacing: 1.7vw;
  }
  #index-brand #index-brand-contents {
    margin-top: 1rem;
  }
  #index-brand #index-brand-contents .index-brand-box {
    padding-bottom: 2rem;
  }
  #index-brand #index-brand-contents .index-brand-box h3 {
    width: 50%;
    margin: 0 auto;
  }
  #index-brand #index-brand-contents .index-brand-box h4 {
    text-align: center;
    font-size: 4vw;
    letter-spacing: 0.05vw;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box p {
    margin-top: 3vh;
    font-size: 4vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1vw;
    line-height: 1.6;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop {
    width: 96%;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box {
    width: 32%;
    margin: 0 auto 2rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box img {
    border-radius: 0.5rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a {
    text-decoration: none;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a h5 {
    margin-top: 0.5rem;
    font-size: 3.5vw;
    letter-spacing: 0.1vw;
    text-align: center;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a .index-shop-adress {
    margin: 0.5rem 0 0 0;
    font-size: 3vw;
    font-weight: normal;
    text-align: center;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link-main {
    margin: 0.5rem 0 0;
    padding: 0.5rem 0;
    font-size: 3vw;
    border-radius: 0.2rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link-main a {
    display: block;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link {
    background: #004098;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link2 {
    background: #01645a;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link3 {
    background: #544030;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box ul {
    width: 70%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box ul li {
    width: 32%;
  }
  #index-brand #index-brand-contents #index-brand-house {
    background: url(img/index-house.jpg) no-repeat center;
  }
  #index-brand #index-brand-contents #index-brand-zoukai {
    background: url(img/index-zoukai.jpg) no-repeat center;
  }
  #index-tuyomi {
    background: url(img/index-tuyomi-bk.svg) no-repeat top right;
    background-size: 68%;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #index-tuyomi #index-tuyomi-img {
    width: 100%;
    order: 2;
  }
  #index-tuyomi #index-tuyomi-img img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
  }
  #index-tuyomi #index-tuyomi-contents {
    width: 100%;
    order: 1;
  }
  #index-tuyomi #index-tuyomi-contents h2 {
    text-align: center;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box {
    margin-top: 4vh;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl {
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 0.1rem solid #000;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dt {
    font-size: 5vw;
    letter-spacing: 0.1vw;
    font-weight: 500;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dt .index-tuyomi-no {
    color: #fff;
    letter-spacing: 0.5vw;
    -webkit-text-stroke: 0.07rem #ef5126;
    text-stroke: 0.07rem #ef5126;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dd {
    margin-top: 0.5rem;
    font-size: 3.5vw;
    letter-spacing: 0.05vw;
  }
  #index-after {
    background: url(img/index-after-bk.svg) no-repeat top center;
    background-size: 100%;
    margin-top: 3rem;
  }
  #index-after h2 {
    text-align: center;
  }
  #index-after #index-after-contents {
    width: 90%;
    margin: 0 auto;
    margin-top: 1rem;
    align-items: center;
  }
  #index-after #index-after-contents #index-after-left p {
    font-size: 0.9rem;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #index-after #index-after-contents #index-after-left #index-after-link {
    background: #004098;
    width: 60%;
    margin: 1rem auto 0;
    color: #fff;
    text-align: center;
    font-size: 1rem;
  }
  #index-after #index-after-contents #index-after-left #index-after-link a {
    padding: 0.3rem 0;
    display: block;
    text-decoration: none;
  }
  #index-after #index-after-contents #index-after-right {
    background: #1784c1;
    margin-top: 1rem;
    padding: 2rem 0;
    border-radius: 0.8rem;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents {
    width: 90%;
    margin: 0 auto;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left h3 {
    font-size: 1.2rem;
    letter-spacing: 0.1vw;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left #index-after-contact-time {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    font-size: 1rem;
    border-top: 0.1rem solid #fff;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right {
    background: #fff;
    margin-top: 1rem;
    padding: 1rem 0;
    border-radius: 0.8rem;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right ul {
    width: 96%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right p {
    width: 96%;
    margin: 1rem auto 0;
    font-size: 0.8rem;
    text-align: center;
    font-weight: 500;
  }
  #index-banner {
    width: 85%;
    margin: 0 auto;
    margin: 1.5rem auto;
  }
  #index-banner ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #index-banner ul li {
    width: 49%;
    margin-bottom: 2%;
  }
  #bottom-recruit {
    background: #e6e6e6;
    padding: 2rem 0;
    align-items: center;
  }
  #bottom-recruit #bottom-recruit-left {
    width: 85%;
    margin: 0 auto;
  }
  #bottom-recruit #bottom-recruit-left h2 {
    font-size: 2rem;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left h3 {
    font-size: 1.2rem;
    letter-spacing: 0.1vw;
    color: #ed2929;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left #bottom-recruit-descri {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2vw;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left #bottom-recruit-descri #bottom-recruit-nakam {
    margin: 1rem 0 0;
    font-size: 2rem;
    font-weight: 500;
    line-height: 0.9;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left #index-rec-co {
    background: #ef5526;
    margin-top: 2vh;
    font-size: 1rem;
    text-align: center;
    border-radius: 0.4rem;
    color: #fff;
  }
  #bottom-recruit #bottom-recruit-left #index-rec-co a {
    padding: 2vh 0;
    text-decoration: none;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2vw;
  }
  #bottom-recruit #bottom-recruit-left ul {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left ul li {
    width: 48%;
    border-radius: 0.4rem;
    font-size: 1rem;
  }
  #bottom-recruit #bottom-recruit-left ul #graduate {
    background-color: #62b735;
  }
  #bottom-recruit #bottom-recruit-left ul #career {
    background-color: #0071bc;
  }
  #bottom-recruit #bottom-recruit-left ul a {
    padding: 2vh 0;
    text-decoration: none;
    display: block;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1vw;
  }
  #bottom-recruit #bottom-recruit-right {
    margin-top: 2rem;
    overflow: hidden;
    /* スライダー全体 */
    /* CSSアニメーション */
  }
  #bottom-recruit #bottom-recruit-right ul {
    display: flex;
  }
  #bottom-recruit #bottom-recruit-right ul li {
    width: 400px;
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slider {
    animation: scroll-left 40s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slide {
    width: 33.3333333333vw; /* 3はスライドの枚数 */
    margin-left: 1rem;
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slide img {
    display: block;
    width: 100%;
  }
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #bottom-recruit-nakam {
    animation: poyopoyo 2.5s ease-out infinite;
    opacity: 1;
    display: block;
    margin: 0;
    padding: 0;
  }
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1);
    }
    50%, 70% {
      transform: scale(0.9);
    }
  }
  #index-infomation {
    width: 85%;
    margin: 0 auto;
    margin: 3rem auto;
  }
  #index-infomation h2 {
    font-size: 2rem;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  #index-infomation table {
    margin: 2rem auto 0;
    letter-spacing: 0.2vw;
  }
  #index-infomation table th {
    padding: 1rem 0 0.5rem 0;
    display: block;
    text-align: left;
  }
  #index-infomation table td {
    padding-bottom: 0.5rem;
    color: #fff;
    display: block;
  }
  #index-infomation table a {
    color: #000;
  }
  #index-infomation table .info-brand {
    padding: 0.1rem 0.8rem;
  }
  /*-----------------------------------------*/
  /*----------------- page ------------------*/
  /*-----------------------------------------*/
  #page {
    margin-top: 2rem;
  }
  #page #page-head {
    background-size: 80%;
  }
  #page #page-head-title {
    margin-left: 7.5%;
    padding: 0.5rem 0 1rem;
  }
  #page #page-head-title h2 {
    font-size: 10vw;
    letter-spacing: 0.7vw;
  }
  #page #page-head-title h3 {
    font-size: 3.5vw;
    letter-spacing: 0.3vw;
  }
  .staff-name dl {
    margin-top: 1rem;
    font-size: 4vw;
    letter-spacing: 0.1vw;
  }
  .staff-name dl dt {
    line-height: 1;
    font-size: 3vw;
    font-weight: 500;
  }
  .staff-name dl dd {
    margin-left: 2rem;
    font-weight: 600;
  }
  .staff-name dl .member-p {
    color: #01645a;
  }
  .staff-name dl .member-d {
    color: #004098;
  }
  /*-----------------------------------------*/
  /*----------------- about -----------------*/
  /*-----------------------------------------*/
  .aboutus {
    background: url(img/page-bk-about.png) top right no-repeat;
  }
  .about-subtitle {
    background-color: #1784c1;
    width: 100%;
    margin: 0 auto;
    padding: 0.4rem 0;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    color: #fff;
    font-weight: 500;
  }
  .about-subtitle2 {
    background-color: #1784c1;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 0 0.6rem;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.3vw;
    color: #fff;
  }
  #about-rinen {
    width: 90%;
    margin: 0 auto;
    margin-top: 2rem;
  }
  #about-rinen h3 {
    margin-top: 2.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
    text-align: center;
  }
  #about-rinen .about-ma {
    margin-top: 2rem;
    background-image: linear-gradient(70deg, rgb(51, 51, 51) 45%, #fff 50%, rgb(51, 51, 51) 55%);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 6s infinite;
  }
  @keyframes shine {
    0% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  #about-rinen #about-rinem-contents {
    width: 90%;
    margin: 0 auto;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #about-rinen #about-rinem-contents .about-rinen-box {
    width: 100%;
    margin-bottom: 2rem;
  }
  #about-rinen #about-rinem-contents .about-rinen-box h4 {
    font-size: 1.4rem;
    letter-spacing: 0.15vw;
    color: #1784c1;
    text-align: center;
  }
  #about-rinen #about-rinem-contents .about-rinen-box h5 {
    margin-top: 0.8rem;
    padding-left: 0.3rem;
    font-size: 1.2rem;
    border-left: 0.4rem solid #1784c1;
    letter-spacing: 0.1vw;
  }
  #about-rinen #about-rinem-contents .about-rinen-box ul {
    margin-top: 0.8rem;
    list-style: disc inside;
    font-size: 1rem;
  }
  #about-rinen #about-rinem-contents .about-rinen-box ul li {
    margin-bottom: 0.4rem;
    font-weight: 500;
  }
  #about-tuyomi {
    width: 85%;
    margin: 0 auto;
    margin-top: 3rem;
  }
  #about-tuyomi #about-tuyomi-contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box {
    width: 48%;
    margin-top: 1rem;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box h4 {
    margin: 0.6rem 0;
    text-align: center;
    color: #1784c1;
    font-size: 1.1rem;
    letter-spacing: 0.1vw;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box p {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #about-aisatu {
    width: 90%;
    margin: 0 auto;
    margin-top: 3rem;
  }
  #about-aisatu #about-aisatu-contents {
    margin-top: 2rem;
  }
  #about-aisatu #about-aisatu-contents p {
    font-size: 1rem;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left #about-presi {
    margin-bottom: 3rem;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left .about-pr {
    margin-top: 2rem;
    text-align: right;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left span {
    font-size: 1.2rem;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-right {
    margin-top: 1rem;
  }
  #about-company {
    width: 85%;
    margin: 0 auto;
    margin-top: 3rem;
  }
  #about-company #about-company-container {
    margin-top: 3rem;
  }
  #about-company #about-company-container .about-compnay-contents {
    margin-bottom: 1.5rem;
  }
  #about-company #about-company-container .about-compnay-contents h3 {
    text-align: center;
    color: #1784c1;
    font-size: 1.2rem;
    letter-spacing: 0.1vw;
  }
  #about-company #about-company-container .about-compnay-contents table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
    border: 0.1rem solid #000;
    font-size: 0.9rem;
  }
  #about-company #about-company-container .about-compnay-contents table td, #about-company #about-company-container .about-compnay-contents table th {
    border: 0.1rem solid #000;
    padding: 0.5rem 1rem;
    font-weight: normal;
  }
  #about-company #about-company-container .about-compnay-contents table th {
    text-align: left;
    background: #e1e1e1;
  }
  #about-bland {
    width: 90%;
    margin: 0 auto;
    margin-top: 3rem;
  }
  #about-bland h3 {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.4vw;
    color: #333333;
  }
  #about-bland #about-bland-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 1rem auto 0;
  }
  #about-bland #about-bland-container .about-bland-box {
    width: 100%;
    margin-bottom: 2rem;
  }
  #about-bland #about-bland-container .about-bland-box h4 {
    width: 70%;
    margin: 0 auto;
  }
  #about-bland #about-bland-container .about-bland-box h5 {
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    text-align: center;
    font-weight: 500;
  }
  #about-bland #about-bland-container .about-bland-box ul {
    margin-top: 1rem;
    text-align: center;
  }
  #about-bland #about-bland-container .about-bland-box ul li {
    margin-bottom: 0.5rem;
  }
  #about-privacy {
    width: 90%;
    margin: 0 auto;
    margin: 3rem auto;
  }
  #about-privacy a {
    text-decoration: none;
  }
  #about-privacy h2 {
    margin: 0 auto;
    padding: 1rem 0;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.2vw;
    color: #1784c1;
    border: 0.2rem solid #1784c1;
  }
  /*-----------------------------------------*/
  /*----------------- bland -----------------*/
  /*-----------------------------------------*/
  #blandsub {
    margin-top: 2.5rem;
    font-size: 2.1vw;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  .wave {
    animation: wave 2s infinite;
    text-align: center;
  }
  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15%);
    }
  }
  #brand-container {
    margin-top: 2rem;
  }
  #brand-container #brand-dd, #brand-container #brand-plaza {
    padding: 1rem 0;
  }
  #brand-container #brand-dd h2, #brand-container #brand-plaza h2 {
    width: 50%;
    margin: 0 auto;
  }
  #brand-container #brand-dd p, #brand-container #brand-plaza p {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05vw;
    text-align: center;
  }
  #brand-container #brand-dd h3, #brand-container #brand-plaza h3 {
    width: 90%;
    margin: 0 auto;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
  }
  #brand-container #brand-dd h4, #brand-container #brand-plaza h4 {
    margin-top: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.1vw;
    text-align: center;
    position: relative;
  }
  #brand-container #brand-dd #brand-box, #brand-container #brand-plaza #brand-box {
    width: 90%;
    margin: 0 auto;
    margin-top: 3rem;
    text-align: center;
  }
  #brand-container #brand-dd #brand-box dl, #brand-container #brand-plaza #brand-box dl {
    margin-bottom: 2rem;
  }
  #brand-container #brand-dd #brand-box dl dt, #brand-container #brand-plaza #brand-box dl dt {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1vw;
  }
  #brand-container #brand-dd #brand-box dl dd, #brand-container #brand-plaza #brand-box dl dd {
    font-size: 0.9rem;
    letter-spacing: 0.1vw;
  }
  #brand-container .brand-pic {
    width: 85%;
    margin: 0 auto;
  }
  #brand-container .brand-pic ul {
    display: flex;
    justify-content: space-between;
  }
  #brand-container .brand-pic ul li {
    width: 32%;
  }
  #brand-container .brand-shop {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
  }
  #brand-container .brand-shop .brand-shop-box {
    width: 32%;
    margin: 0 auto 2rem;
  }
  #brand-container .brand-shop .brand-shop-box img {
    border-radius: 0.5rem;
  }
  #brand-container .brand-shop .brand-shop-box a {
    text-decoration: none;
  }
  #brand-container .brand-shop .brand-shop-box a h5 {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #brand-container .brand-shop .brand-shop-box a .shop-adress {
    margin: 0.5rem 0 0 0;
    font-size: 3.5vw !important;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link-main {
    margin: 0.5rem 0 0;
    padding: 0.4rem 0;
    font-size: 0.8rem !important;
    border-radius: 0.2rem;
    color: #fff;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link-main a {
    display: block;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link {
    background: #004098;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link2 {
    background: #01645a;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link3 {
    background: #544030;
  }
  #brand-container .brand-shop .brand-shop-box ul {
    width: 90%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #brand-container .brand-shop .brand-shop-box ul li {
    width: 30%;
  }
  #brand-container #brand-dd {
    background: #b2ccea;
  }
  #brand-container #brand-dd h4:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 200px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0071bc;
    border-radius: 2px;
  }
  #brand-container #brand-dd dt {
    color: #0071bc;
  }
  #brand-container #brand-plaza {
    background: #94c4bd;
  }
  #brand-container #brand-plaza h4:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 200px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #01645a;
    border-radius: 2px;
  }
  #brand-container #brand-plaza dt {
    color: #01645a;
  }
  /*-----------------------------------------*/
  /*---------------- rectuit ----------------*/
  /*-----------------------------------------*/
  .recruit-sub-title h2 {
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 0.2vw;
    background: linear-gradient(90deg, #24a0ff 40%, #001eff 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }
  .recruit-sub-title h3 {
    margin-top: 0.5rem;
    text-align: center;
    letter-spacing: 0.2vw;
    font-size: 1.1rem;
    font-weight: 500;
  }
  #recruit-careers-title2 h2 {
    font-size: 4vw;
    letter-spacing: 0.2vw;
    color: #fff;
  }
  #recruit-careers-title2 h3 {
    margin-top: 0.5rem;
    font-size: 6vw;
    letter-spacing: 0.2vw;
    font-weight: 500;
    color: #fff;
  }
  #page-recruit-top {
    background: url(img/recruit-top-bk-sp.svg) top center no-repeat;
    background-size: 90%;
  }
  #page-recruit-top #top-recruit-top {
    width: 80%;
    margin: 0 auto;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title {
    padding-top: 5rem;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title #top-recruit-h {
    width: 50%;
    margin: 0 auto;
    border: 0.2rem solid #000;
    font-weight: normal;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title p {
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
  }
  #page-recruit-top #top-recruit-top h2 {
    margin-top: 2rem;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
    color: #1784c1;
    line-height: 1.6;
    letter-spacing: 0.2rem;
  }
  #page-recruit-top #top-recruit-top #recruit-anshin {
    font-size: 1rem;
    font-weight: 800;
  }
  #page-recruit-top #top-recruit-top #top-recruit-watashi {
    margin: 3rem 0 0;
    padding-bottom: 2rem;
    font-family: "Zen Kurenaido", sans-serif;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2vw;
  }
  #about-us {
    padding: 3rem 0;
  }
  #about-us #about-us-contents {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
  #about-us #about-us-contents #about-us-img {
    width: 50%;
  }
  #about-us #about-us-contents #about-us-main {
    width: 46%;
  }
  #about-us #about-us-contents #about-us-main h2 {
    font-size: 1.7rem;
    letter-spacing: 0.2vw;
  }
  #about-us #about-us-contents #about-us-main h3 {
    font-size: 0.8rem;
    letter-spacing: 0.1vw;
    font-weight: 400;
  }
  #about-us #about-us-contents #about-us-main ul {
    margin: 1rem 0 0 0;
  }
  #about-us #about-us-contents #about-us-main ul li {
    width: 100%;
    margin: 0 0 1rem 0;
    padding: 0 0 0.1rem 0.5rem;
    border-bottom: 0.1rem solid #fff;
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 0.1vw;
  }
  #about-us #about-us-contents #about-us-main ul li a {
    font-weight: 500;
    text-decoration: none;
    display: flex;
  }
  #about-us #about-us-contents #about-us-main ul li a img {
    margin: 0.2rem 0 0 0.4rem;
    width: 20px;
  }
  #feature {
    margin-top: 3rem;
  }
  #feature #feature-contents {
    margin-top: 2rem;
  }
  #feature #feature-contents .feature-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #feature #feature-contents .feature-box-img1 {
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  }
  #feature #feature-contents .feature-box-img1 img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #feature #feature-contents .feature-box-img2 {
    width: 100%;
    margin-top: 1rem;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    order: 1;
  }
  #feature #feature-contents .feature-box-img2 img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #feature #feature-contents .feature-box-contents {
    width: 90%;
    margin: 0 auto;
  }
  #feature #feature-contents .feature-box-contents-r {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 1rem;
    order: 2;
  }
  #feature #feature-contents .fbc {
    margin-top: 1rem;
  }
  #feature #feature-contents .fbc h4 {
    color: #ff5824;
    font-size: 6vw;
  }
  #feature #feature-contents .fbc p {
    font-size: 4vw;
    margin-top: 0.5rem;
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
  #r-interview {
    background: url(img/r-interview-bk-sp.svg) no-repeat center left;
    background-size: cover;
    margin-top: 3rem;
    padding: 3rem 0;
  }
  #r-interview #interview-member {
    margin-top: 3rem;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #r-interview #interview-member .interview-box {
    width: 47%;
  }
  #r-interview #interview-member .interview-box a {
    text-decoration: none;
  }
  #r-interview #interview-member .interview-box #interview-img {
    border-bottom: 0.1rem solid #000;
  }
  #r-interview #interview-member .interview-box #interview-img img {
    width: 100%;
    margin: 0 auto;
  }
  #r-interview #interview-member .interview-box h4 {
    margin-top: 1rem;
    font-size: 3.6vw;
    color: #fff;
  }
  #r-interview #interview-member .interview-box .interview-sub-p span {
    background: linear-gradient(transparent 0%, #01645a 0%);
    padding: 0.1rem;
  }
  #r-interview #interview-member .interview-box .interview-sub-d span {
    background: linear-gradient(transparent 0%, #004098 0%);
    padding: 0.1rem;
  }
  #recruit-prof {
    width: 85%;
    margin: 0 auto;
    margin: 3rem auto;
  }
  #recruit-prof #recruit-prof-top {
    margin-top: 2rem;
  }
  #recruit-prof .recruit-prof-box {
    background: #deefff;
    border-radius: 0.1rem;
  }
  #recruit-prof .recruit-prof-box h4 {
    font-size: 4.5vw;
    border-bottom: 0.1rem solid #ff0000;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents {
    width: 85%;
    margin: 0 auto;
    padding: 2rem 0;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box {
    width: 85%;
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-left {
    width: 55%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right {
    width: 35%;
    font-weight: 800;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right p {
    font-size: 10vw;
    letter-spacing: 0.2vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right .sub {
    font-size: 5vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recrutit-prof-title {
    margin-top: 4rem;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 {
    width: 65%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box {
    width: 49%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .recruit-prof-sex {
    margin-top: 1rem;
    font-size: 4vw;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .recruit-prof-no {
    font-size: 10vw;
    font-weight: 800;
    text-align: center;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .sub {
    font-size: 5vw;
  }
  #recruit-prof .recruit-prof-box {
    margin-bottom: 1%;
  }
  #recruit-careers {
    padding: 3rem 0;
  }
  #recruit-careers #recruit-careers-container {
    width: 85%;
    margin: 0 auto;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-title2 {
    text-align: center;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents {
    margin-top: 3rem;
    color: #fff;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
    font-size: 4vw;
    letter-spacing: 0.1vw;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-type {
    width: 30%;
    text-align: center;
    font-weight: 600;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-info-title {
    margin-left: 1rem;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-info-main {
    margin-top: 0.5rem;
  }
  #recruit-insta {
    margin: 3rem 0;
  }
  #recruit-insta h2 {
    width: 10%;
    margin: 0 auto;
  }
  /*-----------------------------------------*/
  /*--------------- interview ---------------*/
  /*-----------------------------------------*/
  .inter-situmon-title {
    font-size: 4.5vw;
    letter-spacing: 0.5vw;
    color: #003399;
  }
  #interview-top-container {
    width: 85%;
    margin: 0 auto;
  }
  #interview-top-container .inter-sub-title h2 {
    font-size: 10vw;
    letter-spacing: 1vw;
    background: linear-gradient(90deg, #24a0ff 40%, #001eff 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }
  #interview-top-container #int-top-container-left {
    margin-top: 3rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message {
    margin-top: 2rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 {
    color: #fff;
    font-size: 5.3vw;
    line-height: 1.7;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 span {
    background: linear-gradient(transparent 0%, #01645a 0%);
    padding: 0.1rem;
  }
  #interview-top-container #int-top-container-left #inter-top-name {
    margin-top: 1rem;
  }
  #interview-top-container #int-top-container-left #inter-top-name dl {
    display: flex;
    align-items: center;
  }
  #interview-top-container #int-top-container-left #inter-top-name dt {
    font-size: 4vw;
  }
  #interview-top-container #int-top-container-left #inter-top-name dd {
    margin-left: 7% !important;
    font-size: 4vw;
  }
  #interview-top-container #int-top-container-left p {
    margin-top: 6rem;
    text-align: center;
    font-size: 0.9vw;
    line-height: 1.9;
  }
  #interview-top-container #inter-top-container-right {
    width: 60%;
    margin: 1rem 0 0 auto;
  }
  #interview-top-container #inter-top-container-right img {
    width: 100%;
    border-radius: 0.5rem;
  }
  #interview-top-container #inter-douki {
    margin: 2rem 0 0 auto;
  }
  #interview-top-container #inter-douki p {
    margin-top: 0.5rem;
    font-size: 3.7vw;
    letter-spacing: 0.1vw;
  }
  .int-co-box {
    width: 85%;
    margin: 0 auto;
    margin-top: 2rem;
  }
  .int-co-left img {
    width: 100%;
  }
  .int-co-right {
    margin-top: 1rem;
  }
  .int-co-right .int-work-subt {
    margin-top: 3rem;
  }
  .int-co-right P {
    margin: 1rem 0;
    line-height: 1.6;
  }
  #int-challenge {
    background: #ef5526;
    margin-top: 3rem;
    padding: 2rem 0;
    color: #fff;
  }
  #int-challenge h2 {
    font-size: 6vw;
    letter-spacing: 0.2vw;
    text-align: center;
    position: relative;
  }
  #int-challenge h2:before {
    content: "";
    position: absolute;
    bottom: -12px;
    display: inline-block;
    width: 60px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 2px;
  }
  #int-challenge h3 {
    width: 85%;
    margin: 0 auto;
    margin-top: 2rem;
    font-size: 4vw;
    letter-spacing: 0.3vw;
    text-align: center;
    animation: blink 1.5s ease-in-out infinite alternate;
  }
  #int-challenge p {
    width: 70%;
    margin: 2rem auto 0;
    font-size: 3vw;
    text-align: center;
    letter-spacing: 0.1vw;
    line-height: 1.5;
  }
  /*-----------------------------------------*/
  /*---------------- customer ---------------*/
  /*-----------------------------------------*/
  #page-customer-discri {
    width: 85%;
    margin: 0 auto;
    margin-top: 5rem;
  }
  #page-customer-discri p {
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
  #page-customer-discri #page-customer-aten {
    margin-top: 1rem;
  }
  #page-customer-discri #page-customer-aten ul {
    margin: 1rem 0;
  }
  #page-customer-discri #page-customer-aten ul li {
    margin-bottom: 0.5rem;
    list-style: inside disc;
  }
  #page-customer-discri #page-customer-aten ul li.exce {
    list-style: inside circle;
  }
  #page-customer-discri #page-customer-aten #att {
    margin-top: 2rem;
  }
  #page-customer-af-container {
    width: 85%;
    margin: 0 auto;
    margin-top: 5rem;
  }
  #page-customer-af-container .page-customer-after-contents {
    margin-top: 0.5rem;
  }
  #page-customer-af-container .page-customer-after-contents ul {
    margin: 0.5rem 0;
    list-style: inside disc;
  }
  #page-customer-af-container .page-customer-after-contents ul li {
    margin-bottom: 0.23rem;
  }
  #page-customer-af-container #page-customer-land {
    margin-top: 2rem;
  }
  #page-customer-contact {
    width: 85%;
    margin: 0 auto;
    margin: 3rem auto;
  }
  #page-customer-contact #page-customer-contact-contents {
    background: #1784c1;
    margin-top: 1rem;
    padding: 1rem 0;
    border-radius: 1rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 1rem;
    color: #fff;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left h3 {
    font-size: 5vw;
    letter-spacing: 1vw;
    text-align: center;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time {
    margin-top: 1rem;
    padding-top: 1.3rem;
    font-size: 3.5vw;
    border-top: 0.1rem solid #fff;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress {
    text-align: center;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress h4 {
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress #adress {
    margin-top: 0.5rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress #open {
    margin-top: 0.5rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right {
    background: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 1rem 0;
    border-radius: 1rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right ul {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right ul li {
    width: 32%;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right p {
    width: 90%;
    margin: 0 auto;
    font-size: 3.5vw;
    text-align: center;
    font-weight: 600;
  }
  #page-customer-qa {
    width: 85%;
    margin: 0 auto;
    margin: 3rem auto;
  }
  #page-customer-qa .page-customer-qa-box {
    margin: 0.5rem auto 0 auto;
  }
  #page-customer-qa .page-customer-qa-box summary {
    background: #1784c1;
    padding: 1rem;
    font-size: 3.5vw;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    color: #fff;
  }
  #page-customer-qa .page-customer-qa-box p {
    padding: 1rem;
    font-size: 3.5vw;
    border: 0.2rem solid #1784c1;
  }
  /*-----------------------------------------*/
  /*----------------- single ----------------*/
  /*-----------------------------------------*/
  #single-head-title {
    margin-left: 7.5%;
    padding: 1rem 0;
  }
  #single-head-title h2 {
    background: #fff;
    font-size: 8vw;
    letter-spacing: 0.7vw;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    display: inline;
  }
  #single-head-title h3 {
    font-size: 3.5vw;
    letter-spacing: 0.3vw;
  }
  #single-contents {
    width: 90%;
    margin: 0 auto;
    margin: 2rem auto 5rem;
  }
  #single-contents #single-time {
    text-align: right;
  }
  #single-contents #single-box {
    margin-top: 1rem;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #single-contents #single-box P {
    margin-bottom: 2rem;
  }
  #single-contents #single-box table {
    margin-bottom: 1rem;
  }
  #single-contents #single-box table td, #single-contents #single-box table th {
    border: 0.1rem solid #000;
    padding: 0.5rem 1rem;
    font-weight: normal;
  }
  #single-contents #single-box table th {
    width: 30%;
    background: #1E90FF;
    color: #fff;
  }
}
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*--------------------------------------- max-width: 1279px ---------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .tb {
    display: none;
  }
  /*---------------------*/
  /*------- header ------*/
  /*---------------------*/
  header {
    padding-top: 3rem;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header h1 {
    width: 32%;
  }
  header h1 img {
    width: 100%;
  }
  header .drawer {
    width: 60%;
  }
  header .drawer ul {
    display: flex;
    justify-content: space-between;
  }
  header .drawer ul li {
    font-size: 2vw;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 0.8;
  }
  header .drawer ul li a {
    text-decoration: none;
    display: block;
  }
  header .drawer ul li .nav-s {
    font-size: 1vw;
  }
  /*---------------------*/
  /*------- footer ------*/
  /*---------------------*/
  footer {
    background: url(img/footer-bk.svg) no-repeat center;
    background-size: cover;
    padding: 6vh 0 10vh 0;
  }
  footer #foot-contents {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer #foot-contents #foot-left h2 {
    width: 250px;
  }
  footer #foot-contents #foot-left p {
    color: #fff;
    font-size: 1.6vw;
    letter-spacing: 0.05vw;
  }
  footer #foot-contents #foot-left p a {
    text-decoration: none;
    font-size: 1.6;
  }
  footer #foot-contents #foot-left #foot-adress {
    margin: 1.5vh 0 1vh 0;
  }
  footer #foot-contents #foot-right {
    width: 40%;
  }
  footer #foot-contents #foot-right nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer #foot-contents #foot-right nav ul li {
    width: 48%;
    margin-bottom: 2rem;
    font-size: 2.5vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 0.8;
    color: #fff;
  }
  footer #foot-contents #foot-right nav ul li a {
    text-decoration: none;
    display: block;
  }
  footer #foot-contents #foot-right nav ul li .nav-s {
    font-size: 1.2vw;
  }
  /* スライダー全体 */
  .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  .slider-wrapper .slider {
    animation: scroll-left 40s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  .slider-wrapper .slide {
    width: 20vw; /* 3はスライドの枚数 */
  }
  .slider-wrapper .slide img {
    display: block;
    width: 100%;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .slider-wrapper2 {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  .slider-wrapper2 .slider {
    animation: scroll-left 20s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  .slider-wrapper2 .slide {
    width: 17.5vw; /* 3はスライドの枚数 */
    margin-right: 1vw;
  }
  .slider-wrapper2 .slide img {
    display: block;
    width: 100%;
  }
  .slider-wrapper2 .slide:nth-child(even) {
    margin-top: 4rem;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /*-------------------------*/
  /*--------- index ---------*/
  /*-------------------------*/
  .index-co-title {
    font-size: 5vw;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: bold;
    letter-spacing: 0.25vw;
  }
  #index-eye {
    position: relative;
    width: 92%;
    margin: 5rem 0 0 auto;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 900;
  }
  #index-eye h2 {
    position: absolute;
    z-index: 10;
    font-size: 5.3vw;
    letter-spacing: 0.2vw;
    line-height: 1.8;
  }
  #index-eye h2 .indexeye-h {
    font-size: 6.2vw;
    letter-spacing: 0.6vw;
  }
  #index-eye h3 {
    position: absolute;
    z-index: 5;
    top: 27vh;
    font-size: 2.4vw;
    letter-spacing: 0.3vw;
  }
  #index-eye #index-eye-img {
    width: 72%;
    position: absolute;
    z-index: 1;
    top: 16vh;
    right: 0;
  }
  #index-eye #index-eye-img img {
    border-radius: 1rem 0 0 1rem;
    width: 100%;
    height: 320px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index-brand {
    margin: 55vh 0 5rem;
  }
  #index-brand h2 {
    position: relative;
    font-size: 6vw;
    text-align: center;
    letter-spacing: 1vw;
    z-index: 1;
  }
  #index-brand #index-brand-contents {
    display: flex;
    justify-content: space-between;
    margin-top: -1.5vh;
    z-index: 2;
  }
  #index-brand #index-brand-contents .index-brand-box {
    width: 50%;
    padding-bottom: 1vh;
    background-size: 100%;
  }
  #index-brand #index-brand-contents .index-brand-box h3 {
    width: 60%;
    margin: 3vh auto 0;
  }
  #index-brand #index-brand-contents .index-brand-box h4 {
    text-align: center;
    font-size: 1.8vw;
    font-weight: normal;
    letter-spacing: 0.05vw;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box p {
    margin-top: 3vh;
    font-size: 2vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1vw;
    line-height: 1.6;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop {
    width: 90%;
    margin: 3rem auto;
    display: flex;
    justify-content: space-between;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box {
    width: 32%;
    display: block;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box img {
    border-radius: 0.5rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box :hover {
    opacity: 0.7;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a {
    text-decoration: none;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a h5 {
    margin-top: 0.5rem;
    font-size: 1.8vw;
    letter-spacing: 0.1vw;
    text-align: center;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a .index-shop-adress {
    margin: 0.5rem 0;
    font-size: 1.4vw;
    font-weight: normal;
    text-align: center;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link-main {
    margin: 1rem 0 0;
    padding: 0.5rem 0;
    font-size: 1.4vw;
    border-radius: 0.2rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link-main a {
    display: block;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link {
    background: #004098;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link2 {
    background: #01645a;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link3 {
    background: #544030;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box ul {
    width: 70%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box ul li {
    width: 30%;
  }
  #index-brand #index-brand-contents #index-brand-house {
    background: url(img/index-house.jpg) no-repeat top;
  }
  #index-brand #index-brand-contents #index-brand-zoukai {
    background: url(img/index-zoukai.jpg) no-repeat top;
  }
  #index-tuyomi {
    background: url(img/index-tuyomi-bk.svg) no-repeat top right;
    background-size: 68%;
    margin-top: 1vh;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-tuyomi #index-tuyomi-img {
    width: 30%;
  }
  #index-tuyomi #index-tuyomi-img img {
    border-radius: 1rem;
  }
  #index-tuyomi #index-tuyomi-contents {
    width: 65%;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box {
    margin-top: 4vh;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl {
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 0.1rem solid #000;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dt {
    font-size: 2.5vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dt .index-tuyomi-no {
    color: #fff;
    -webkit-text-stroke: 0.07rem #ef5126;
    text-stroke: 0.07rem #ef5126;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dd {
    font-size: 1.5vw;
    letter-spacing: 0.05vw;
  }
  #index-after {
    background: url(img/index-after-bk.svg) no-repeat top center;
    background-size: 100%;
    width: 85%;
    margin: 0 auto;
    margin: 5vh auto 0;
  }
  #index-after h2 {
    padding-top: 3vh;
  }
  #index-after #index-after-contents {
    margin: 4vh auto 0;
  }
  #index-after #index-after-contents #index-after-left p {
    font-size: 2vw;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #index-after #index-after-contents #index-after-left #index-after-link {
    background: #004098;
    width: 60%;
    margin: 2vh auto 0;
    color: #fff;
    text-align: center;
    font-size: 1.8vw;
  }
  #index-after #index-after-contents #index-after-left #index-after-link a {
    padding: 0.8rem 0;
    display: block;
    text-decoration: none;
  }
  #index-after #index-after-contents #index-after-right {
    background: #1784c1;
    margin-top: 2rem;
    padding: 4vh 0;
    border-radius: 0.8rem;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents {
    width: 83%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left {
    width: 30%;
    text-align: center;
    color: #fff;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left h3 {
    font-size: 3vw;
    letter-spacing: 0.1vw;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left #index-after-contact-time {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    font-size: 2vw;
    border-top: 0.1rem solid #fff;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right {
    background: #fff;
    width: 65%;
    padding: 2rem 0;
    border-radius: 0.8rem;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right ul {
    width: 86%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right ul li {
    width: 32%;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right ul li img {
    width: 100%;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right p {
    width: 90%;
    margin: 1rem auto 0;
    font-size: 1.7vw;
    text-align: center;
    font-weight: 500;
  }
  #index-banner {
    width: 85%;
    margin: 0 auto;
    margin: 5vh auto;
  }
  #index-banner ul {
    display: flex;
    justify-content: space-between;
  }
  #index-banner ul li {
    width: 24%;
  }
  #bottom-recruit {
    background: #e6e6e6;
    padding: 4rem 0;
    align-items: center;
  }
  #bottom-recruit #bottom-recruit-left {
    width: 85%;
    margin: 0 auto;
  }
  #bottom-recruit #bottom-recruit-left h2 {
    font-size: 6vw;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left h3 {
    font-size: 2.5vw;
    letter-spacing: 0.1vw;
    color: #ed2929;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left #bottom-recruit-descri {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2vw;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left #bottom-recruit-descri #bottom-recruit-nakam {
    margin: 1rem 0 0;
    font-size: 5vw;
    font-weight: 500;
    line-height: 0.9;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left #index-rec-co {
    background: #ef5526;
    margin-top: 2vh;
    font-size: 1rem;
    text-align: center;
    border-radius: 0.4rem;
    color: #fff;
  }
  #bottom-recruit #bottom-recruit-left #index-rec-co a {
    padding: 2vh 0;
    text-decoration: none;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2vw;
    font-size: 2.5vw;
  }
  #bottom-recruit #bottom-recruit-left ul {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left ul li {
    width: 49%;
    border-radius: 0.4rem;
    font-size: 1rem;
  }
  #bottom-recruit #bottom-recruit-left ul #graduate {
    background-color: #62b735;
  }
  #bottom-recruit #bottom-recruit-left ul #career {
    background-color: #0071bc;
  }
  #bottom-recruit #bottom-recruit-left ul a {
    padding: 2vh 0;
    text-decoration: none;
    display: block;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1vw;
    font-size: 2.5vw;
  }
  #bottom-recruit #bottom-recruit-right {
    margin-top: 2rem;
    overflow: hidden;
    /* スライダー全体 */
    /* CSSアニメーション */
  }
  #bottom-recruit #bottom-recruit-right ul {
    display: flex;
  }
  #bottom-recruit #bottom-recruit-right ul li {
    width: 400px;
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slider {
    animation: scroll-left 40s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slide {
    width: 20vw; /* 3はスライドの枚数 */
    margin-left: 1rem;
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slide img {
    display: block;
    width: 100%;
  }
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #bottom-recruit-nakam {
    animation: poyopoyo 2.5s ease-out infinite;
    opacity: 1;
    display: block;
    margin: 0;
    padding: 0;
  }
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1);
    }
    50%, 70% {
      transform: scale(0.9);
    }
  }
  #index-infomation {
    width: 90%;
    margin: 0 auto;
    margin: 10vh auto;
  }
  #index-infomation h2 {
    font-size: 5vw;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  #index-infomation table {
    margin: 5vh auto 0;
    letter-spacing: 0.2vw;
    font-size: 2vw;
  }
  #index-infomation table th {
    padding-bottom: 2vh;
  }
  #index-infomation table td {
    padding: 0 0 2vh 1vw;
    color: #fff;
  }
  #index-infomation table a {
    color: #000;
  }
  #index-infomation table .info-brand {
    padding: 0.1rem 0.8rem;
  }
  /*-----------------------------------------*/
  /*----------------- page ------------------*/
  /*-----------------------------------------*/
  #page {
    margin-top: 80px;
  }
  #page #page-head {
    background-size: 78%;
  }
  #page #page-head-title {
    margin-left: 7.5%;
    padding: 3rem 0 4rem;
  }
  #page #page-head-title h2 {
    font-size: 5vw;
    letter-spacing: 0.7vw;
  }
  #page #page-head-title h3 {
    margin: 1rem 0 0 0.3%;
    font-size: 1.7vw;
    letter-spacing: 0.3vw;
  }
  .staff-name dl {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5vw;
    letter-spacing: 0.1vw;
  }
  .staff-name dl dt {
    line-height: 1;
    font-size: 2vw;
    font-weight: 500;
  }
  .staff-name dl dd {
    margin-left: 2rem;
    font-weight: 600;
  }
  .staff-name dl .member-p {
    color: #01645a;
  }
  .staff-name dl .member-d {
    color: #004098;
  }
  /*-----------------------------------------*/
  /*----------------- about -----------------*/
  /*-----------------------------------------*/
  .aboutus {
    background: url(img/page-bk-about.png) top right no-repeat;
  }
  .about-subtitle, .about-subtitle2 {
    background-color: #1784c1;
    width: 400px;
    margin: 0 auto;
    padding: 0.5rem 0 0.6rem;
    text-align: center;
    font-size: 3vw;
    letter-spacing: 0.3vw;
    color: #fff;
  }
  #about-rinen {
    margin-top: 5vh;
  }
  #about-rinen h3 {
    margin-top: 2.5rem;
    font-size: 3vw;
    letter-spacing: 0.4vw;
    line-height: 1.8;
    text-align: center;
  }
  #about-rinen .about-ma {
    background-image: linear-gradient(70deg, rgb(51, 51, 51) 45%, #fff 50%, rgb(51, 51, 51) 55%);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 6s infinite;
  }
  @keyframes shine {
    0% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  #about-rinen #about-rinem-contents {
    width: 90%;
    margin: 0 auto;
    margin: 4rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #about-rinen #about-rinem-contents .about-rinen-box {
    width: 48%;
    margin-bottom: 8%;
  }
  #about-rinen #about-rinem-contents .about-rinen-box h4 {
    font-size: 4vw;
    letter-spacing: 0.15vw;
    color: #1784c1;
    text-align: center;
  }
  #about-rinen #about-rinem-contents .about-rinen-box h5 {
    margin-top: 0.8rem;
    padding-left: 0.2vw;
    font-size: 2.5vw;
    border-bottom: 0.2rem solid #1784c1;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #about-rinen #about-rinem-contents .about-rinen-box ul {
    margin-top: 0.8rem;
    list-style: disc inside;
  }
  #about-rinen #about-rinem-contents .about-rinen-box ul li {
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 2vw;
  }
  #about-tuyomi {
    width: 85%;
    margin: 0 auto;
    margin-top: 7rem;
  }
  #about-tuyomi #about-tuyomi-contents {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box {
    width: 32%;
    margin-top: 2rem;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box h4 {
    margin: 1.3rem 0;
    text-align: center;
    color: #1784c1;
    font-size: 3vw;
    letter-spacing: 0.1vw;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box p {
    text-align: center;
    font-size: 2vw;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #about-aisatu {
    width: 85%;
    margin: 0 auto;
    margin-top: 7rem;
  }
  #about-aisatu #about-aisatu-contents {
    margin-top: 3rem;
  }
  #about-aisatu #about-aisatu-contents p {
    font-size: 2vw;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left #about-presi {
    margin-bottom: 3rem;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left .about-pr {
    margin-top: 2rem;
    text-align: right;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left span {
    font-size: 2vw;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-right {
    width: 58%;
    margin: 1rem 0 0 auto;
  }
  #about-company {
    width: 85%;
    margin: 0 auto;
    margin-top: 7rem;
  }
  #about-company #about-company-container {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
  }
  #about-company #about-company-container .about-compnay-contents {
    width: 48%;
  }
  #about-company #about-company-container .about-compnay-contents h3 {
    text-align: center;
    color: #1784c1;
    font-size: 2.5vw;
    letter-spacing: 0.1vw;
  }
  #about-company #about-company-container .about-compnay-contents table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
    border: 0.1rem solid #000;
  }
  #about-company #about-company-container .about-compnay-contents table td, #about-company #about-company-container .about-compnay-contents table th {
    border: 0.1rem solid #000;
    padding: 0.5rem 1rem;
    font-weight: normal;
  }
  #about-company #about-company-container .about-compnay-contents table th {
    text-align: left;
    background: #e1e1e1;
  }
  #about-bland {
    width: 85%;
    margin: 0 auto;
    margin-top: 7rem;
  }
  #about-bland h3 {
    margin-top: 2rem;
    text-align: center;
    font-size: 2vw;
    letter-spacing: 0.4vw;
    color: #333333;
  }
  #about-bland #about-bland-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem auto 0;
  }
  #about-bland #about-bland-container .about-bland-box {
    width: 46%;
    margin-bottom: 2rem;
  }
  #about-bland #about-bland-container .about-bland-box h4 {
    width: 60%;
    margin: 0 auto;
  }
  #about-bland #about-bland-container .about-bland-box h5 {
    font-size: 2vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #about-bland #about-bland-container .about-bland-box ul {
    margin-top: 1rem;
    text-align: center;
  }
  #about-bland #about-bland-container .about-bland-box ul li {
    margin-bottom: 1rem;
  }
  #about-privacy {
    width: 50%;
    margin: 7rem auto 10vh;
  }
  #about-privacy a {
    text-decoration: none;
  }
  #about-privacy h2 {
    margin: 0 auto;
    padding: 1rem 0;
    font-size: 2.5vw;
    text-align: center;
    letter-spacing: 0.2vw;
    color: #1784c1;
    border: 0.2rem solid #1784c1;
  }
  /*-----------------------------------------*/
  /*----------------- bland -----------------*/
  /*-----------------------------------------*/
  #blandsub {
    margin-top: 2.5rem;
    font-size: 2vw;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  .wave {
    animation: wave 2s infinite;
    text-align: center;
  }
  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15%);
    }
  }
  #brand-container {
    margin-top: 2rem;
  }
  #brand-container #brand-dd, #brand-container #brand-plaza {
    padding: 1rem 0 2rem;
  }
  #brand-container #brand-dd h2, #brand-container #brand-plaza h2 {
    width: 30%;
    margin: 0 auto;
  }
  #brand-container #brand-dd p, #brand-container #brand-plaza p {
    font-size: 2.3vw;
    font-weight: 500;
    letter-spacing: 0.05vw;
    text-align: center;
    font-weight: 600;
  }
  #brand-container #brand-dd h3, #brand-container #brand-plaza h3 {
    width: 95%;
    margin: 2rem auto 0;
    font-size: 2vw;
    font-weight: 500;
    text-align: center;
  }
  #brand-container #brand-dd h4, #brand-container #brand-plaza h4 {
    margin-top: 4rem;
    font-size: 2.3vw;
    letter-spacing: 0.1vw;
    text-align: center;
    position: relative;
  }
  #brand-container #brand-dd #brand-box, #brand-container #brand-plaza #brand-box {
    margin-top: 3rem;
    text-align: center;
  }
  #brand-container #brand-dd #brand-box dl, #brand-container #brand-plaza #brand-box dl {
    width: 90%;
    margin: 0 auto;
    margin: 0 auto 2rem;
  }
  #brand-container #brand-dd #brand-box dl dt, #brand-container #brand-plaza #brand-box dl dt {
    font-size: 2vw;
    font-weight: 700;
    letter-spacing: 0.1vw;
  }
  #brand-container #brand-dd #brand-box dl dd, #brand-container #brand-plaza #brand-box dl dd {
    font-size: 1.9vw;
    letter-spacing: 0.1vw;
  }
  #brand-container .brand-pic {
    width: 85%;
    margin: 0 auto;
    margin-top: 4rem;
  }
  #brand-container .brand-pic ul {
    display: flex;
    justify-content: space-between;
  }
  #brand-container .brand-pic ul li {
    width: 32%;
  }
  #brand-container .brand-shop {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
  }
  #brand-container .brand-shop .brand-shop-box {
    width: 31%;
  }
  #brand-container .brand-shop .brand-shop-box img {
    border-radius: 0.5rem;
  }
  #brand-container .brand-shop .brand-shop-box a {
    text-decoration: none;
  }
  #brand-container .brand-shop .brand-shop-box a h5 {
    margin-top: 0.5rem;
    font-size: 2vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #brand-container .brand-shop .brand-shop-box a .shop-adress {
    margin: 0.5rem 0 0 0;
    font-size: 1.8vw !important;
    font-weight: 400 !important;
    text-align: center;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link-main {
    margin: 1rem 0 0;
    padding: 0.4rem 0;
    font-size: 1.5vw !important;
    border-radius: 0.2rem;
    color: #fff;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link-main a {
    display: block;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link {
    background: #004098;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link2 {
    background: #01645a;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link3 {
    background: #544030;
  }
  #brand-container .brand-shop .brand-shop-box ul {
    width: 60%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #brand-container .brand-shop .brand-shop-box ul li {
    width: 30%;
  }
  #brand-container #brand-dd {
    background: #b2ccea;
  }
  #brand-container #brand-dd h4:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 200px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0071bc;
    border-radius: 2px;
  }
  #brand-container #brand-dd dt {
    color: #0071bc;
  }
  #brand-container #brand-plaza {
    background: #94c4bd;
  }
  #brand-container #brand-plaza h4:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 200px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #01645a;
    border-radius: 2px;
  }
  #brand-container #brand-plaza dt {
    color: #01645a;
  }
  /*-----------------------------------------*/
  /*---------------- rectuit ----------------*/
  /*-----------------------------------------*/
  .recruit-sub-title h2 {
    text-align: center;
    font-size: 6vw;
    letter-spacing: 0.2vw;
    background: linear-gradient(90deg, #24a0ff 40%, #001eff 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }
  .recruit-sub-title h3 {
    margin-top: 0.5rem;
    text-align: center;
    letter-spacing: 0.2vw;
    font-weight: 500;
  }
  #recruit-careers-title2 h2 {
    font-size: 6vw;
    letter-spacing: 0.2vw;
    color: #fff;
  }
  #recruit-careers-title2 h3 {
    margin-top: 0.5rem;
    letter-spacing: 0.2vw;
    font-weight: 500;
    color: #fff;
  }
  #page-recruit-top {
    background: url(img/recruit-top-bk.svg) top center no-repeat;
    background-size: 88%;
  }
  #page-recruit-top #top-recruit-top {
    width: 80%;
    margin: 0 auto;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title {
    padding-top: 12rem;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title #top-recruit-h {
    width: 40%;
    margin: 0 auto;
    border: 0.2rem solid #000;
    font-weight: normal;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title p {
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 6vw;
    font-weight: 600;
    text-align: center;
  }
  #page-recruit-top #top-recruit-top h2 {
    margin-top: 4rem;
    font-size: 2.25vw;
    text-align: center;
    font-weight: 500;
    color: #1784c1;
    line-height: 1.8;
    letter-spacing: 0.2rem;
  }
  #page-recruit-top #top-recruit-top #recruit-anshin {
    font-size: 2.5vw;
    font-weight: 800;
  }
  #page-recruit-top #top-recruit-top #top-recruit-watashi {
    margin: 3rem 0 0;
    padding-bottom: 5rem;
    font-family: "Zen Kurenaido", sans-serif;
    text-align: center;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2vw;
  }
  #about-us #about-us-contents {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    color: #fff;
  }
  #about-us #about-us-contents #about-us-img {
    width: 60%;
  }
  #about-us #about-us-contents #about-us-main {
    margin-left: 3rem;
  }
  #about-us #about-us-contents #about-us-main h2 {
    font-size: 4vw;
    letter-spacing: 0.2vw;
  }
  #about-us #about-us-contents #about-us-main h3 {
    font-size: 1.7vw;
    letter-spacing: 0.1vw;
  }
  #about-us #about-us-contents #about-us-main ul {
    margin: 2rem 0 0 2rem;
  }
  #about-us #about-us-contents #about-us-main ul li {
    width: 100%;
    margin: 0 0 1.5rem auto;
    padding-bottom: 0.1rem;
    border-bottom: 0.1rem solid #fff;
    text-align: right;
    font-size: 2vw;
    letter-spacing: 0.1vw;
  }
  #about-us #about-us-contents #about-us-main ul li a {
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: end;
  }
  #about-us #about-us-contents #about-us-main ul li a img {
    margin: 0.2rem 0 0 0.4rem;
    width: 15px;
  }
  #feature {
    margin-top: 3rem;
  }
  #feature #feature-contents {
    margin-top: 2rem;
  }
  #feature #feature-contents .feature-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #feature #feature-contents .feature-box-img1 {
    width: 100%;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  }
  #feature #feature-contents .feature-box-img1 img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #feature #feature-contents .feature-box-img2 {
    width: 100%;
    margin-top: 1rem;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 25% 100%);
    order: 1;
  }
  #feature #feature-contents .feature-box-img2 img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #feature #feature-contents .feature-box-contents {
    width: 90%;
    margin: 0 auto;
  }
  #feature #feature-contents .feature-box-contents-r {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 1rem;
    order: 2;
  }
  #feature #feature-contents .fbc {
    margin-top: 1rem;
  }
  #feature #feature-contents .fbc h4 {
    color: #ff5824;
    font-size: 3vw;
  }
  #feature #feature-contents .fbc p {
    font-size: 2vw;
    margin-top: 0.5rem;
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
  #r-interview {
    background: url(img/r-interview-bk.svg) no-repeat;
    background-size: cover;
    margin-top: 5rem;
    padding: 5rem 0;
  }
  #r-interview #interview-member {
    margin-top: 3rem;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #r-interview #interview-member .interview-box {
    width: 48%;
  }
  #r-interview #interview-member .interview-box a {
    text-decoration: none;
  }
  #r-interview #interview-member .interview-box #interview-img {
    border-bottom: 0.1rem solid #000;
  }
  #r-interview #interview-member .interview-box #interview-img img {
    width: 90%;
    margin: 0 auto;
  }
  #r-interview #interview-member .interview-box h4 {
    margin-top: 1rem;
    font-size: 3vw;
    letter-spacing: 0.1vw;
    color: #fff;
  }
  #r-interview #interview-member .interview-box .interview-sub-p span {
    background: linear-gradient(transparent 0%, #01645a 0%);
    padding: 0.1rem;
  }
  #r-interview #interview-member .interview-box .interview-sub-d span {
    background: linear-gradient(transparent 0%, #004098 0%);
    padding: 0.1rem;
  }
  #recruit-prof {
    width: 85%;
    margin: 0 auto;
    margin: 5rem auto;
  }
  #recruit-prof #recruit-prof-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5rem;
  }
  #recruit-prof .recruit-prof-box {
    background: #deefff;
    border-radius: 0.1rem;
  }
  #recruit-prof .recruit-prof-box h4 {
    font-size: 2.1vw;
    border-bottom: 0.1rem solid #ff0000;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents {
    width: 85%;
    margin: 0 auto;
    padding: 2rem 0;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box {
    width: 85%;
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-left {
    width: 35%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right {
    width: 55%;
    font-weight: 800;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right p {
    font-size: 6vw;
    letter-spacing: 0.2vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right .sub {
    font-size: 1.5vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recrutit-prof-title {
    margin-top: 4rem;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 {
    width: 65%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box {
    width: 49%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .recruit-prof-sex {
    margin-top: 1rem;
    font-size: 1.3vw;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .recruit-prof-no {
    font-size: 5vw;
    font-weight: 800;
    text-align: center;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .sub {
    font-size: 1.5vw;
  }
  #recruit-prof .recruit-prof-box:nth-child(-n+3) {
    width: 32%;
    margin-bottom: 1%;
  }
  #recruit-prof .recruit-prof-box:nth-child(n+4) {
    width: 48.5%;
  }
  #recruit-careers {
    padding: 4rem 0;
  }
  #recruit-careers #recruit-careers-container {
    width: 85%;
    margin: 0 auto;
    align-items: center;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents {
    margin-top: 4rem;
    color: #fff;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 2vw;
    letter-spacing: 0.1vw;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-type {
    width: 170px !important;
    text-align: center;
    font-weight: 600;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-info-title {
    width: 200px !important;
    margin-left: 1rem;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-info-main {
    width: 800px !important;
    margin: 0.5rem 0 0 186px;
  }
  #recruit-insta {
    margin: 5rem 0;
  }
  #recruit-insta h2 {
    width: 7%;
    margin: 0 auto;
  }
  /*-----------------------------------------*/
  /*--------------- interview ---------------*/
  /*-----------------------------------------*/
  .inter-situmon-title {
    font-size: 2.5vw;
    letter-spacing: 0.2vw;
    color: #003399;
  }
  #interview-top-container {
    width: 85%;
    margin: 0 auto;
  }
  #interview-top-container #inter-top-box {
    display: flex;
    justify-content: space-between;
  }
  #interview-top-container .inter-sub-title h2 {
    font-size: 6vw;
    letter-spacing: 0.2vw;
    background: linear-gradient(90deg, #24a0ff 40%, #001eff 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }
  #interview-top-container #int-top-container-left {
    width: 50%;
    margin-top: 4rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message {
    margin-top: 5rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 {
    color: #fff;
    font-size: 2.9vw;
    line-height: 1.7;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 span {
    background: linear-gradient(transparent 0%, #01645a 0%);
    padding: 0.1rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 .interview-dob {
    background: linear-gradient(transparent 0%, #004098 0%);
  }
  #interview-top-container #int-top-container-left #inter-top-name {
    margin-top: 4rem;
  }
  #interview-top-container #int-top-container-left #inter-top-name dt {
    font-size: 2vw;
  }
  #interview-top-container #int-top-container-left #inter-top-name dd {
    margin-left: 7% !important;
    font-size: 2vw;
  }
  #interview-top-container #int-top-container-left p {
    margin-top: 6rem;
    text-align: center;
    font-size: 0.9vw;
    line-height: 1.9;
  }
  #interview-top-container #inter-top-container-right {
    width: 48%;
  }
  #interview-top-container #inter-top-container-right img {
    width: 100%;
  }
  #interview-top-container #inter-douki {
    width: 90%;
    margin: 3rem 0 0 auto;
  }
  #interview-top-container #inter-douki p {
    margin-top: 0.5rem;
    font-size: 1.8vw;
    letter-spacing: 0.2vw;
    line-height: 1.5;
  }
  .int-co-box {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
  }
  .int-co-left {
    width: 46%;
  }
  .int-co-left img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .int-co-right {
    width: 52%;
  }
  .int-co-right .int-work-subt {
    margin-top: 3rem;
  }
  .int-co-right P {
    margin-top: 0.5rem;
    line-height: 1.5;
    font-size: 1.8vw;
    letter-spacing: 0.2vw;
  }
  #int-challenge {
    background: #ef5526;
    padding: 5rem 0;
    color: #fff;
  }
  #int-challenge h2 {
    font-size: 2.5vw;
    letter-spacing: 0.2vw;
    text-align: center;
    position: relative;
  }
  #int-challenge h2:before {
    content: "";
    position: absolute;
    bottom: -12px;
    display: inline-block;
    width: 60px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 2px;
  }
  #int-challenge h3 {
    margin-top: 4rem;
    font-size: 3.2vw;
    letter-spacing: 0.3vw;
    text-align: center;
    animation: blink 1.5s ease-in-out infinite alternate;
  }
  #int-challenge p {
    width: 90%;
    margin: 2rem auto 0;
    font-size: 2vw;
    text-align: center;
    letter-spacing: 0.1vw;
    line-height: 1.8;
  }
  /*-----------------------------------------*/
  /*---------------- customer ---------------*/
  /*-----------------------------------------*/
  #page-customer-discri {
    width: 85%;
    margin: 0 auto;
    margin-top: 5rem;
  }
  #page-customer-discri p {
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
  #page-customer-discri #page-customer-aten {
    margin-top: 1rem;
  }
  #page-customer-discri #page-customer-aten ul {
    margin: 1rem 0;
  }
  #page-customer-discri #page-customer-aten ul li {
    margin-bottom: 0.5rem;
    list-style: inside disc;
  }
  #page-customer-discri #page-customer-aten ul li.exce {
    list-style: inside circle;
  }
  #page-customer-discri #page-customer-aten #att {
    margin-top: 2rem;
  }
  #page-customer-af-container {
    width: 90%;
    margin: 0 auto;
    margin-top: 5rem;
  }
  #page-customer-af-container h2 {
    font-size: 4vw !important;
  }
  #page-customer-af-container .page-customer-after-contents {
    margin-top: 1rem;
  }
  #page-customer-af-container .page-customer-after-contents ul {
    margin: 1rem 0;
    list-style: inside disc;
  }
  #page-customer-af-container .page-customer-after-contents ul li {
    margin-bottom: 0.5rem;
  }
  #page-customer-af-container #page-customer-afterm {
    margin-bottom: 2rem;
  }
  #page-customer-contact {
    width: 90%;
    margin: 0 auto;
    margin: 5rem auto;
  }
  #page-customer-contact h2 {
    font-size: 4vw !important;
  }
  #page-customer-contact #page-customer-contact-contents {
    background: #1784c1;
    margin-top: 1rem;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left {
    width: 30%;
    margin-left: 2%;
    color: #fff;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left h3 {
    font-size: 3vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    font-size: 1.6vw;
    border-top: 0.1rem solid #fff;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress {
    text-align: center;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress h4 {
    font-size: 2vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress #adress {
    margin-top: 0.5rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress #open {
    margin-top: 2rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right {
    background: #fff;
    width: 60%;
    margin-right: 2rem;
    padding: 1rem 0;
    border-radius: 1rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right ul {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right ul li {
    width: 32%;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.5vw;
    text-align: center;
    font-weight: bold;
  }
  #page-customer-qa {
    width: 90%;
    margin: 0 auto;
    margin: 5rem auto;
  }
  #page-customer-qa h2 {
    font-size: 4vw !important;
  }
  #page-customer-qa .page-customer-qa-box {
    margin: 1rem auto 0 auto;
  }
  #page-customer-qa .page-customer-qa-box summary {
    background: #1784c1;
    padding: 1rem;
    font-size: 2vw;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    color: #fff;
  }
  #page-customer-qa .page-customer-qa-box p {
    padding: 1rem;
    font-size: 2vw;
    border: 0.1rem solid #1784c1;
  }
  /*-----------------------------------------*/
  /*----------------- single ----------------*/
  /*-----------------------------------------*/
  #single-head-title {
    margin-left: 7.5%;
    padding: 5rem 0 10rem;
  }
  #single-head-title h2 {
    background: #fff;
    padding-right: 2rem;
    font-size: 5vw;
    letter-spacing: 0.5vw;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    display: inline;
  }
  #single-head-title h3 {
    margin: 1rem 0 0 0.3%;
    font-size: 2vw;
    letter-spacing: 0.3vw;
  }
  #single-contents {
    width: 90%;
    margin: 0 auto;
    margin: 0 auto 5rem;
  }
  #single-contents #single-time {
    text-align: right;
  }
  #single-contents #single-box {
    letter-spacing: 0.1vw;
    line-height: 1.8;
  }
  #single-contents #single-box P {
    margin-bottom: 2rem;
  }
  #single-contents #single-box table {
    border-collapse: collapse;
    border: 0.1rem solid #000;
  }
  #single-contents #single-box table td, #single-contents #single-box table th {
    border: 0.1rem solid #000;
    padding: 0.5rem 1rem;
    font-weight: normal;
  }
  #single-contents #single-box table th {
    background: #1E90FF;
    color: #fff;
  }
}
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*--------------------------------------- min-width: 1281px ---------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 1280px) {
  .sp {
    display: none;
  }
  /*---------------------*/
  /*------- header ------*/
  /*---------------------*/
  header {
    padding-top: 3rem;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header h1 {
    width: 27%;
  }
  header h1 img {
    width: 100%;
  }
  header .drawer {
    width: 50%;
  }
  header .drawer ul {
    display: flex;
    justify-content: space-between;
  }
  header .drawer ul li {
    font-size: 1.5vw;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 0.8;
  }
  header .drawer ul li a {
    text-decoration: none;
    display: block;
  }
  header .drawer ul li .nav-s {
    font-size: 0.7vw;
  }
  /*---------------------*/
  /*------- footer ------*/
  /*---------------------*/
  footer {
    background: url(img/footer-bk.svg) no-repeat center;
    background-size: cover;
    padding: 6vh 0 10vh 0;
  }
  footer #foot-contents {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  footer #foot-contents #foot-left h2 {
    width: 440px;
  }
  footer #foot-contents #foot-left p {
    color: #fff;
    font-size: 0.9vw;
    letter-spacing: 0.05vw;
  }
  footer #foot-contents #foot-left p a {
    text-decoration: none;
    font-size: 0.9vw;
  }
  footer #foot-contents #foot-left #foot-adress {
    margin: 3vh 0 1vh 0;
  }
  footer #foot-contents #foot-right {
    width: 40%;
  }
  footer #foot-contents #foot-right nav ul {
    display: flex;
    justify-content: space-between;
  }
  footer #foot-contents #foot-right nav ul li {
    font-size: 1.3vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 0.8;
    color: #fff;
  }
  footer #foot-contents #foot-right nav ul li a {
    text-decoration: none;
    display: block;
  }
  footer #foot-contents #foot-right nav ul li .nav-s {
    font-size: 0.7vw;
  }
  /* スライダー全体 */
  .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  .slider-wrapper .slider {
    animation: scroll-left 40s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  .slider-wrapper .slide {
    width: 14.2857142857vw; /* 3はスライドの枚数 */
  }
  .slider-wrapper .slide img {
    display: block;
    width: 100%;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  .slider-wrapper2 {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  .slider-wrapper2 .slider {
    animation: scroll-left 20s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  .slider-wrapper2 .slide {
    width: 17.5vw; /* 3はスライドの枚数 */
    margin-right: 1vw;
  }
  .slider-wrapper2 .slide img {
    display: block;
    width: 100%;
  }
  .slider-wrapper2 .slide:nth-child(even) {
    margin-top: 4rem;
  }
  /* CSSアニメーション */
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  /*-------------------------*/
  /*--------- index ---------*/
  /*-------------------------*/
  .index-co-title {
    font-size: 2.5vw;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: bold;
    letter-spacing: 0.25vw;
  }
  #index-eye {
    position: relative;
    width: 92%;
    margin: 10rem 0 0 auto;
    font-family: "Sawarabi Gothic", sans-serif;
    font-weight: 900;
  }
  #index-eye h2 {
    position: absolute;
    z-index: 10;
    font-size: 5vw;
    letter-spacing: 0.4vw;
    line-height: 1.8;
  }
  #index-eye h2 .indexeye-h {
    font-size: 5.2vw;
    letter-spacing: 0.6vw;
  }
  #index-eye h3 {
    position: absolute;
    z-index: 5;
    top: 65vh;
    font-size: 1.7vw;
    letter-spacing: 0.3vw;
  }
  #index-eye #index-eye-img {
    width: 74%;
    position: absolute;
    z-index: 1;
    top: 40vh;
    right: 0;
  }
  #index-eye #index-eye-img img {
    border-radius: 1rem 0 0 1rem;
    width: 100%;
  }
  #index-brand {
    margin: 140vh 0 10rem;
  }
  #index-brand h2 {
    position: relative;
    font-size: 6vw;
    text-align: center;
    letter-spacing: 1vw;
    z-index: 1;
  }
  #index-brand #index-brand-contents {
    display: flex;
    justify-content: space-between;
    margin-top: -3vh;
    z-index: 2;
  }
  #index-brand #index-brand-contents .index-brand-box {
    width: 50%;
    padding-bottom: 1vh;
    background-size: 100%;
  }
  #index-brand #index-brand-contents .index-brand-box h3 {
    width: 40%;
    margin: 3vh auto 0;
  }
  #index-brand #index-brand-contents .index-brand-box h4 {
    text-align: center;
    font-size: 0.9vw;
    font-weight: normal;
    letter-spacing: 0.05vw;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box p {
    margin-top: 5vh;
    font-size: 2vw;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.1vw;
    line-height: 1.6;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop {
    width: 90%;
    margin: 3rem auto;
    display: flex;
    justify-content: space-between;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box {
    width: 31%;
    display: block;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box img {
    border-radius: 0.5rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box :hover {
    opacity: 0.7;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a {
    text-decoration: none;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a h5 {
    font-size: 1vw;
    letter-spacing: 0.1vw;
    text-align: center;
    color: #fff;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box a .index-shop-adress {
    margin: 0;
    font-size: 0.7vw;
    font-weight: normal;
    text-align: center;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link-main {
    margin: 1rem 0 0;
    padding: 0.5rem 0;
    font-size: 0.9vw;
    border-radius: 0.2rem;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link-main a {
    display: block;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link {
    background: #004098;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link2 {
    background: #01645a;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box .index-shop-link3 {
    background: #544030;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box ul {
    width: 70%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #index-brand #index-brand-contents .index-brand-box .index-brand-shop .index-brand-shop-box ul li {
    width: 30%;
  }
  #index-brand #index-brand-contents #index-brand-house {
    background: url(img/index-house.jpg) no-repeat top;
  }
  #index-brand #index-brand-contents #index-brand-zoukai {
    background: url(img/index-zoukai.jpg) no-repeat top;
  }
  #index-tuyomi {
    background: url(img/index-tuyomi-bk.svg) no-repeat top right;
    background-size: 68%;
    margin-top: 10vh;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  #index-tuyomi #index-tuyomi-img {
    width: 30%;
  }
  #index-tuyomi #index-tuyomi-img img {
    border-radius: 1rem;
  }
  #index-tuyomi #index-tuyomi-contents {
    width: 65%;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box {
    margin-top: 4vh;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl {
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 0.1rem solid #000;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dt {
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
    font-weight: 600;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dt .index-tuyomi-no {
    color: #fff;
    -webkit-text-stroke: 0.07rem #ef5126;
    text-stroke: 0.07rem #ef5126;
  }
  #index-tuyomi #index-tuyomi-contents #index-tuyomi-box dl dd {
    font-size: 0.9vw;
    letter-spacing: 0.05vw;
  }
  #index-after {
    background: url(img/index-after-bk.svg) no-repeat top center;
    background-size: 100%;
    margin: 10vh 0 0 7.5%;
  }
  #index-after h2 {
    padding-top: 10vh;
  }
  #index-after #index-after-contents {
    margin-top: 4vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-after #index-after-contents #index-after-left {
    width: 40%;
  }
  #index-after #index-after-contents #index-after-left p {
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #index-after #index-after-contents #index-after-left #index-after-link {
    background: #004098;
    width: 60%;
    margin: 4vh auto 0;
    color: #fff;
    text-align: center;
    font-size: 1vw;
  }
  #index-after #index-after-contents #index-after-left #index-after-link a {
    padding: 0.8rem 0;
    display: block;
    text-decoration: none;
  }
  #index-after #index-after-contents #index-after-right {
    width: 58.5%;
    background: #1784c1;
    padding: 4vh 0;
    border-radius: 0.8rem 0 0 0.8rem;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents {
    width: 83%;
    margin: 0 auto 0 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left {
    width: 27%;
    text-align: center;
    color: #fff;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left h3 {
    font-size: 1.3vw;
    letter-spacing: 0.1vw;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents #index-after-right-contents-left #index-after-contact-time {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    font-size: 0.8vw;
    border-top: 0.1rem solid #fff;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right {
    background: #fff;
    width: 70%;
    padding: 2rem 0;
    border-radius: 0.8rem 0 0 0.8rem;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right ul {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
  }
  #index-after #index-after-contents #index-after-right #index-after-right-contents-right p {
    margin-top: 1rem;
    font-size: 0.7vw;
    text-align: center;
    font-weight: 500;
  }
  #index-banner {
    width: 85%;
    margin: 0 auto;
    margin: 10vh auto;
  }
  #index-banner ul {
    display: flex;
    justify-content: space-between;
  }
  #index-banner ul li {
    width: 24%;
  }
  #bottom-recruit {
    background: #e6e6e6;
    padding: 7vh 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #bottom-recruit #bottom-recruit-left {
    width: 28%;
    margin-left: 7.5%;
  }
  #bottom-recruit #bottom-recruit-left h2 {
    font-size: 4vw;
    letter-spacing: 0.4vw;
  }
  #bottom-recruit #bottom-recruit-left h3 {
    margin-left: 0.2rem;
    font-size: 1.1vw;
    letter-spacing: 0.1vw;
    color: #ed2929;
  }
  #bottom-recruit #bottom-recruit-left #bottom-recruit-descri {
    margin-top: 4rem;
    font-size: 0.9vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2vw;
  }
  #bottom-recruit #bottom-recruit-left #bottom-recruit-descri #bottom-recruit-nakam {
    margin: 1rem 0 0;
    font-size: 4vw;
    font-weight: 500;
    line-height: 0.9;
  }
  #bottom-recruit #bottom-recruit-left #index-rec-co {
    background: #ef5526;
    margin-top: 2vh;
    font-size: 1.1vw;
    text-align: center;
    border-radius: 0.4rem;
    color: #fff;
  }
  #bottom-recruit #bottom-recruit-left #index-rec-co a {
    padding: 2vh 0;
    text-decoration: none;
    display: block;
    font-weight: 600;
    letter-spacing: 0.2vw;
  }
  #bottom-recruit #bottom-recruit-left ul {
    display: flex;
    justify-content: space-between;
    margin-top: 2vh;
    text-align: center;
  }
  #bottom-recruit #bottom-recruit-left ul li {
    width: 48%;
    border-radius: 0.4rem;
    font-size: 0.9vw;
  }
  #bottom-recruit #bottom-recruit-left ul #graduate {
    background-color: #62b735;
  }
  #bottom-recruit #bottom-recruit-left ul #career {
    background-color: #0071bc;
  }
  #bottom-recruit #bottom-recruit-left ul a {
    padding: 2vh 0;
    text-decoration: none;
    display: block;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.1vw;
  }
  #bottom-recruit #bottom-recruit-right {
    width: 60%;
    overflow: hidden;
    /* スライダー全体 */
    /* CSSアニメーション */
  }
  #bottom-recruit #bottom-recruit-right ul {
    display: flex;
  }
  #bottom-recruit #bottom-recruit-right ul li {
    width: 400px;
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper {
    display: flex; /* スライドのグループを横並び */
    overflow: hidden; /* はみ出たスライドを隠す */
    /* スライド */
    /* スライドの画像 */
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slider {
    animation: scroll-left 40s infinite linear 0.5s both;
    display: flex; /* スライド3枚を横並び */
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slide {
    width: 20vw; /* 3はスライドの枚数 */
    margin-left: 1rem;
  }
  #bottom-recruit #bottom-recruit-right .slider-wrapper .slide img {
    display: block;
    width: 100%;
  }
  @keyframes scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  #bottom-recruit-nakam {
    animation: poyopoyo 2.5s ease-out infinite;
    opacity: 1;
    display: block;
    margin: 0;
    padding: 0;
  }
  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1);
    }
    50%, 70% {
      transform: scale(0.9);
    }
  }
  #index-infomation {
    width: 85%;
    margin: 0 auto;
    margin: 10vh auto;
  }
  #index-infomation h2 {
    font-size: 3.2vw;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  #index-infomation table {
    margin: 5vh auto 0;
    letter-spacing: 0.2vw;
  }
  #index-infomation table th {
    padding-bottom: 3vh;
  }
  #index-infomation table td {
    padding: 0 0 3vh 1.5vw;
    color: #fff;
  }
  #index-infomation table a {
    color: #000;
  }
  #index-infomation table .info-brand {
    padding: 0.1rem 0.8rem;
  }
  /*-----------------------------------------*/
  /*----------------- page ------------------*/
  /*-----------------------------------------*/
  #page {
    margin-top: 140px;
  }
  #page #page-head {
    background-size: 78%;
  }
  #page #page-head-title {
    margin-left: 7.5%;
    padding: 12rem 0 4rem;
  }
  #page #page-head-title h2 {
    font-size: 5vw;
    letter-spacing: 0.7vw;
  }
  #page #page-head-title h3 {
    margin: 1rem 0 0 0.3%;
    font-size: 1.4vw;
    letter-spacing: 0.3vw;
  }
  .staff-name dl {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1vw;
    letter-spacing: 0.1vw;
  }
  .staff-name dl dt {
    line-height: 1;
    font-size: 0.9vw;
    font-weight: 500;
  }
  .staff-name dl dd {
    margin-left: 2rem;
    font-weight: 600;
  }
  .staff-name dl .member-p {
    color: #01645a;
  }
  .staff-name dl .member-d {
    color: #004098;
  }
  /*-----------------------------------------*/
  /*----------------- about -----------------*/
  /*-----------------------------------------*/
  .aboutus {
    background: url(img/page-bk-about.png) top right no-repeat;
  }
  .about-subtitle {
    background-color: #1784c1;
    width: 360px;
    margin: 0 auto;
    padding: 0.5rem 0 0.6rem;
    text-align: center;
    font-size: 2.1vw;
    letter-spacing: 0.3vw;
    color: #fff;
  }
  .about-subtitle2 {
    background-color: #1784c1;
    width: 30vw;
    margin: 0 auto;
    padding: 0.5rem 0 0.6rem;
    text-align: center;
    font-size: 2.1vw;
    letter-spacing: 0.3vw;
    color: #fff;
  }
  #about-rinen {
    margin-top: 8rem;
  }
  #about-rinen h3 {
    margin-top: 2.5rem;
    font-size: 2.1vw;
    letter-spacing: 0.4vw;
    line-height: 1.8;
    text-align: center;
  }
  #about-rinen .about-ma {
    background-image: linear-gradient(70deg, rgb(51, 51, 51) 45%, #fff 50%, rgb(51, 51, 51) 55%);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 6s infinite;
  }
  @keyframes shine {
    0% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  #about-rinen #about-rinem-contents {
    width: 70%;
    margin: 4rem auto 0;
    display: flex;
    justify-content: space-between;
  }
  #about-rinen #about-rinem-contents .about-rinen-box h4 {
    font-size: 1.6vw;
    letter-spacing: 0.15vw;
    color: #1784c1;
  }
  #about-rinen #about-rinem-contents .about-rinen-box h5 {
    margin-top: 0.8rem;
    padding-left: 0.2vw;
    font-size: 1vw;
    border-left: 0.4rem solid #1784c1;
    letter-spacing: 0.1vw;
  }
  #about-rinen #about-rinem-contents .about-rinen-box ul {
    margin-top: 0.8rem;
    list-style: disc inside;
  }
  #about-rinen #about-rinem-contents .about-rinen-box ul li {
    margin-bottom: 0.4rem;
    font-weight: 500;
  }
  #about-tuyomi {
    width: 85%;
    margin: 0 auto;
    margin-top: 200px;
  }
  #about-tuyomi #about-tuyomi-contents {
    display: flex;
    justify-content: space-between;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box {
    width: 15%;
    margin-top: 4rem;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box h4 {
    margin: 1.3rem 0;
    text-align: center;
    color: #1784c1;
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
  }
  #about-tuyomi #about-tuyomi-contents .about-tuyomi-box p {
    text-align: center;
    font-size: 0.8vw;
    letter-spacing: 0.1vw;
    line-height: 1.6;
  }
  #about-aisatu {
    width: 85%;
    margin: 0 auto;
    margin-top: 200px;
  }
  #about-aisatu #about-aisatu-contents {
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #about-aisatu #about-aisatu-contents p {
    font-size: 0.8vw;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left {
    width: 50%;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left #about-presi {
    margin-bottom: 3rem;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left .about-pr {
    margin-top: 2rem;
    text-align: right;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-left span {
    font-size: 1.2vw;
  }
  #about-aisatu #about-aisatu-contents #about-aisatu-right {
    width: 48%;
  }
  #about-company {
    width: 85%;
    margin: 0 auto;
    margin-top: 200px;
  }
  #about-company #about-company-container {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
  }
  #about-company #about-company-container .about-compnay-contents {
    width: 48%;
  }
  #about-company #about-company-container .about-compnay-contents h3 {
    text-align: center;
    color: #1784c1;
    font-size: 1.3vw;
    letter-spacing: 0.1vw;
  }
  #about-company #about-company-container .about-compnay-contents table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
    border: 0.1rem solid #000;
  }
  #about-company #about-company-container .about-compnay-contents table td, #about-company #about-company-container .about-compnay-contents table th {
    border: 0.1rem solid #000;
    padding: 0.5rem 1rem;
    font-weight: normal;
  }
  #about-company #about-company-container .about-compnay-contents table th {
    text-align: left;
    background: #e1e1e1;
  }
  #about-bland {
    width: 85%;
    margin: 0 auto;
    margin-top: 200px;
  }
  #about-bland h3 {
    margin-top: 4rem;
    text-align: center;
    font-size: 1.2vw;
    letter-spacing: 0.4vw;
    color: #333333;
  }
  #about-bland #about-bland-container {
    width: 80%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem auto 0;
  }
  #about-bland #about-bland-container .about-bland-box {
    width: 46%;
    margin-bottom: 2rem;
  }
  #about-bland #about-bland-container .about-bland-box h4 {
    width: 50%;
    margin: 0 auto;
  }
  #about-bland #about-bland-container .about-bland-box h5 {
    font-size: 1vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #about-bland #about-bland-container .about-bland-box ul {
    margin-top: 1rem;
    text-align: center;
  }
  #about-bland #about-bland-container .about-bland-box ul li {
    margin-bottom: 1rem;
  }
  #about-privacy {
    width: 30%;
    margin: 200px auto 10vh;
  }
  #about-privacy a {
    text-decoration: none;
  }
  #about-privacy h2 {
    margin: 0 auto;
    padding: 1rem 0;
    font-size: 1.5vw;
    text-align: center;
    letter-spacing: 0.2vw;
    color: #1784c1;
    border: 0.2rem solid #1784c1;
  }
  /*-----------------------------------------*/
  /*----------------- bland -----------------*/
  /*-----------------------------------------*/
  #blandsub {
    margin-top: 2.5rem;
    font-size: 2.1vw;
    letter-spacing: 0.4vw;
    text-align: center;
  }
  .wave {
    animation: wave 2s infinite;
    text-align: center;
  }
  @keyframes wave {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15%);
    }
  }
  #brand-container {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
  }
  #brand-container #brand-dd, #brand-container #brand-plaza {
    width: 50%;
    padding: 3rem 0;
  }
  #brand-container #brand-dd h2, #brand-container #brand-plaza h2 {
    width: 34%;
    margin: 0 auto;
  }
  #brand-container #brand-dd p, #brand-container #brand-plaza p {
    font-size: 0.9vw;
    font-weight: 500;
    letter-spacing: 0.05vw;
    text-align: center;
  }
  #brand-container #brand-dd h3, #brand-container #brand-plaza h3 {
    width: 83%;
    margin: 2rem auto 0;
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
    font-weight: 500;
    text-align: center;
  }
  #brand-container #brand-dd h4, #brand-container #brand-plaza h4 {
    margin-top: 4rem;
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
    text-align: center;
    position: relative;
  }
  #brand-container #brand-dd #brand-box, #brand-container #brand-plaza #brand-box {
    margin-top: 3rem;
    text-align: center;
  }
  #brand-container #brand-dd #brand-box dl, #brand-container #brand-plaza #brand-box dl {
    margin-bottom: 2rem;
  }
  #brand-container #brand-dd #brand-box dl dt, #brand-container #brand-plaza #brand-box dl dt {
    font-size: 1.05vw;
    font-weight: 700;
    letter-spacing: 0.1vw;
  }
  #brand-container #brand-dd #brand-box dl dd, #brand-container #brand-plaza #brand-box dl dd {
    font-size: 0.9vw;
    letter-spacing: 0.1vw;
  }
  #brand-container .brand-pic {
    width: 85%;
    margin: 0 auto;
  }
  #brand-container .brand-pic ul {
    display: flex;
    justify-content: space-between;
  }
  #brand-container .brand-pic ul li {
    width: 32%;
  }
  #brand-container .brand-shop {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
  }
  #brand-container .brand-shop .brand-shop-box {
    width: 31%;
  }
  #brand-container .brand-shop .brand-shop-box img {
    border-radius: 0.5rem;
  }
  #brand-container .brand-shop .brand-shop-box a {
    text-decoration: none;
  }
  #brand-container .brand-shop .brand-shop-box a h5 {
    margin-top: 0.5rem;
    font-size: 0.9vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #brand-container .brand-shop .brand-shop-box a .shop-adress {
    margin: 0;
    font-size: 0.8vw !important;
    font-weight: 400 !important;
    text-align: center;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link-main {
    margin: 1rem 0 0;
    padding: 0.4rem 0;
    font-size: 0.8vw !important;
    border-radius: 0.2rem;
    color: #fff;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link-main a {
    display: block;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link {
    background: #004098;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link2 {
    background: #01645a;
  }
  #brand-container .brand-shop .brand-shop-box .shop-link3 {
    background: #544030;
  }
  #brand-container .brand-shop .brand-shop-box ul {
    width: 70%;
    margin: 1rem auto 0;
    display: flex;
    justify-content: space-around;
  }
  #brand-container .brand-shop .brand-shop-box ul li {
    width: 30%;
  }
  #brand-container #brand-dd {
    background: #b2ccea;
  }
  #brand-container #brand-dd h4:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 200px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0071bc;
    border-radius: 2px;
  }
  #brand-container #brand-dd dt {
    color: #0071bc;
  }
  #brand-container #brand-plaza {
    background: #94c4bd;
  }
  #brand-container #brand-plaza h4:before {
    content: "";
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 200px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #01645a;
    border-radius: 2px;
  }
  #brand-container #brand-plaza dt {
    color: #01645a;
  }
  /*-----------------------------------------*/
  /*---------------- rectuit ----------------*/
  /*-----------------------------------------*/
  .recruit-sub-title h2 {
    text-align: center;
    font-size: 3.8vw;
    letter-spacing: 0.2vw;
    background: linear-gradient(90deg, #24a0ff 40%, #001eff 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }
  .recruit-sub-title h3 {
    margin-top: 0.5rem;
    text-align: center;
    letter-spacing: 0.2vw;
    font-weight: 500;
  }
  #recruit-careers-title2 h2 {
    font-size: 3.8vw;
    letter-spacing: 0.2vw;
    color: #fff;
  }
  #recruit-careers-title2 h3 {
    margin-top: 0.5rem;
    letter-spacing: 0.2vw;
    font-weight: 500;
    color: #fff;
  }
  #page-recruit-top {
    background: url(img/recruit-top-bk.svg) top center no-repeat;
    background-size: 76%;
  }
  #page-recruit-top #top-recruit-top {
    width: 76%;
    margin: 0 auto;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title {
    padding-top: 12rem;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title #top-recruit-h {
    width: 26%;
    margin: 0 auto;
    border: 0.2rem solid #000;
    font-weight: normal;
  }
  #page-recruit-top #top-recruit-top #top-recruit-top-title p {
    font-family: "Zen Kurenaido", sans-serif;
    font-size: 4vw;
    font-weight: 600;
    text-align: center;
  }
  #page-recruit-top #top-recruit-top h2 {
    margin-top: 5rem;
    font-size: 1.25vw;
    text-align: center;
    font-weight: 500;
    color: #1784c1;
    line-height: 3;
    letter-spacing: 0.2rem;
  }
  #page-recruit-top #top-recruit-top #recruit-anshin {
    font-size: 1.5vw;
    font-weight: 800;
  }
  #page-recruit-top #top-recruit-top #top-recruit-watashi {
    margin: 3rem 0 0;
    padding-bottom: 5rem;
    font-family: "Zen Kurenaido", sans-serif;
    text-align: center;
    font-size: 2.2vw;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2vw;
  }
  #about-us #about-us-contents {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    color: #fff;
  }
  #about-us #about-us-contents #about-us-main {
    margin-left: 3rem;
  }
  #about-us #about-us-contents #about-us-main h2 {
    font-size: 3.6vw;
    letter-spacing: 0.2vw;
  }
  #about-us #about-us-contents #about-us-main h3 {
    font-size: 0.9vw;
    letter-spacing: 0.1vw;
  }
  #about-us #about-us-contents #about-us-main ul {
    margin: 4rem 0 0 2rem;
  }
  #about-us #about-us-contents #about-us-main ul li {
    width: 100%;
    margin: 0 0 1.5rem auto;
    padding-bottom: 0.1rem;
    border-bottom: 0.1rem solid #fff;
    text-align: right;
    font-size: 1.2vw;
    letter-spacing: 0.1vw;
  }
  #about-us #about-us-contents #about-us-main ul li a {
    font-weight: 500;
    text-decoration: none;
    display: flex;
    justify-content: end;
  }
  #about-us #about-us-contents #about-us-main ul li a img {
    margin: 0.2rem 0 0 0.4rem;
    width: 30px;
  }
  #feature {
    margin-top: 5rem;
  }
  #feature #feature-contents {
    margin-top: 5rem;
  }
  #feature #feature-contents .feature-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #feature #feature-contents .feature-box-img1 {
    width: 55%;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  }
  #feature #feature-contents .feature-box-img2 {
    width: 55%;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 99%);
  }
  #feature #feature-contents .feature-box-contents {
    width: 40%;
    margin-right: 5%;
  }
  #feature #feature-contents .feature-box-contents-r {
    width: 40%;
    margin-left: 5%;
  }
  #feature #feature-contents .fbc h4 {
    color: #ff5824;
    font-size: 2vw;
  }
  #feature #feature-contents .fbc p {
    font-size: 0.8vw;
    margin-top: 2rem;
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
  #r-interview {
    background: url(img/r-interview-bk.svg) no-repeat;
    background-size: cover;
    padding: 5rem 0;
  }
  #r-interview #interview-member {
    margin-top: 3rem;
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  #r-interview #interview-member .interview-box {
    width: 24%;
  }
  #r-interview #interview-member .interview-box a {
    text-decoration: none;
  }
  #r-interview #interview-member .interview-box #interview-img {
    border-bottom: 0.1rem solid #000;
  }
  #r-interview #interview-member .interview-box #interview-img img {
    width: 90%;
    margin: 0 auto;
  }
  #r-interview #interview-member .interview-box h4 {
    margin-top: 1rem;
    font-size: 1.3vw;
    letter-spacing: 0.1vw;
    color: #fff;
  }
  #r-interview #interview-member .interview-box .interview-sub-p span {
    background: linear-gradient(transparent 0%, #01645a 0%);
    padding: 0.1rem;
  }
  #r-interview #interview-member .interview-box .interview-sub-d span {
    background: linear-gradient(transparent 0%, #004098 0%);
    padding: 0.1rem;
  }
  #recruit-prof {
    width: 85%;
    margin: 0 auto;
    margin: 5rem auto;
  }
  #recruit-prof #recruit-prof-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5rem;
  }
  #recruit-prof .recruit-prof-box {
    background: #deefff;
    border-radius: 0.1rem;
  }
  #recruit-prof .recruit-prof-box h4 {
    font-size: 1.1vw;
    border-bottom: 0.1rem solid #ff0000;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents {
    width: 85%;
    margin: 0 auto;
    padding: 2rem 0;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box {
    width: 85%;
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-left {
    width: 35%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right {
    width: 55%;
    font-weight: 800;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right p {
    font-size: 6vw;
    letter-spacing: 0.2vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents .recruit-prof-contens-box .recruit-prof-contents-right .sub {
    font-size: 1.5vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recrutit-prof-title {
    margin-top: 4rem;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 {
    width: 65%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box {
    width: 49%;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .recruit-prof-sex {
    margin-top: 1rem;
    font-size: 1.3vw;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1vw;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .recruit-prof-no {
    font-size: 5vw;
    font-weight: 800;
    text-align: center;
  }
  #recruit-prof .recruit-prof-box .recruit-prof-box-contents2 .recruit-prof-contens-box2 .recruit-prof-wm .recruit-prof-wm-box .sub {
    font-size: 1.5vw;
  }
  #recruit-prof .recruit-prof-box:nth-child(-n+3) {
    width: 32%;
    margin-bottom: 1%;
  }
  #recruit-prof .recruit-prof-box:nth-child(n+4) {
    width: 48.5%;
  }
  #recruit-careers {
    padding: 5rem 0;
  }
  #recruit-careers #recruit-careers-container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-title2 {
    width: 25%;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents {
    width: 70%;
    color: #fff;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl {
    display: flex;
    margin-bottom: 1.6rem;
    font-size: 0.9vw;
    letter-spacing: 0.1vw;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-type {
    width: 160px;
    text-align: center;
    font-weight: 600;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-info-title {
    margin-left: 1rem;
  }
  #recruit-careers #recruit-careers-container #recruit-careers-contents dl .recruit-info-main {
    margin-left: 1rem;
  }
  #recruit-insta {
    margin: 5rem 0;
  }
  #recruit-insta h2 {
    width: 4%;
    margin: 0 auto;
  }
  /*-----------------------------------------*/
  /*--------------- interview ---------------*/
  /*-----------------------------------------*/
  .inter-situmon-title {
    font-size: 1.6vw;
    letter-spacing: 0.2vw;
    color: #003399;
  }
  #interview-top-container {
    width: 85%;
    margin: 0 auto;
  }
  #interview-top-container #inter-top-box {
    display: flex;
    justify-content: space-between;
  }
  #interview-top-container .inter-sub-title h2 {
    font-size: 5vw;
    letter-spacing: 0.2vw;
    background: linear-gradient(90deg, #24a0ff 40%, #001eff 60%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
  }
  #interview-top-container #int-top-container-left {
    width: 50%;
    margin-top: 6rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message {
    margin-top: 10rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 {
    color: #fff;
    font-size: 2.9vw;
    line-height: 1.7;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 span {
    background: linear-gradient(transparent 0%, #01645a 0%);
    padding: 0.1rem;
  }
  #interview-top-container #int-top-container-left .inter-top-main-message .interview-sub-h3 .interview-dob {
    background: linear-gradient(transparent 0%, #004098 0%);
  }
  #interview-top-container #int-top-container-left #inter-top-name {
    margin-top: 4rem;
  }
  #interview-top-container #int-top-container-left #inter-top-name dt {
    font-size: 1.2vw;
  }
  #interview-top-container #int-top-container-left #inter-top-name dd {
    margin-left: 7% !important;
    font-size: 2vw;
  }
  #interview-top-container #int-top-container-left p {
    margin-top: 6rem;
    text-align: center;
    font-size: 0.9vw;
    line-height: 1.9;
  }
  #interview-top-container #inter-top-container-right {
    width: 48%;
  }
  #interview-top-container #inter-top-container-right img {
    width: 100%;
  }
  #interview-top-container #inter-douki {
    width: 76%;
    margin: 3rem 0 0 auto;
  }
  #interview-top-container #inter-douki p {
    margin-top: 0.5rem;
    font-size: 0.8vw;
    letter-spacing: 0.2vw;
    line-height: 1.5;
  }
  .int-co-box {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
  }
  .int-co-left {
    width: 56%;
  }
  .int-co-left img {
    width: 100%;
  }
  .int-co-right {
    width: 42%;
  }
  .int-co-right .int-work-subt {
    margin-top: 3rem;
  }
  .int-co-right P {
    margin-top: 0.5rem;
    line-height: 1.5;
    font-size: 0.8vw;
    letter-spacing: 0.2vw;
  }
  #int-challenge {
    background: #ef5526;
    padding: 5rem 0;
    color: #fff;
  }
  #int-challenge h2 {
    font-size: 1.5vw;
    letter-spacing: 0.2vw;
    text-align: center;
    position: relative;
  }
  #int-challenge h2:before {
    content: "";
    position: absolute;
    bottom: -12px;
    display: inline-block;
    width: 60px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 2px;
  }
  #int-challenge h3 {
    margin-top: 4rem;
    font-size: 1.8vw;
    letter-spacing: 0.3vw;
    text-align: center;
    animation: blink 1.5s ease-in-out infinite alternate;
  }
  #int-challenge p {
    width: 70%;
    margin: 2rem auto 0;
    font-size: 1vw;
    text-align: center;
    letter-spacing: 0.1vw;
    line-height: 1.8;
  }
  /*-----------------------------------------*/
  /*---------------- customer ---------------*/
  /*-----------------------------------------*/
  #page-customer-discri {
    width: 85%;
    margin: 0 auto;
    margin-top: 5rem;
  }
  #page-customer-discri p {
    line-height: 1.6;
    letter-spacing: 0.1vw;
  }
  #page-customer-discri #page-customer-aten {
    margin-top: 1rem;
  }
  #page-customer-discri #page-customer-aten ul {
    margin: 1rem 0;
  }
  #page-customer-discri #page-customer-aten ul li {
    margin-bottom: 0.5rem;
    list-style: inside disc;
  }
  #page-customer-discri #page-customer-aten ul li.exce {
    list-style: inside circle;
  }
  #page-customer-discri #page-customer-aten #att {
    margin-top: 2rem;
  }
  #page-customer-af-container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
  }
  #page-customer-af-container .page-customer-after-contents {
    margin-top: 1rem;
  }
  #page-customer-af-container .page-customer-after-contents ul {
    margin: 1rem 0;
    list-style: inside disc;
  }
  #page-customer-af-container .page-customer-after-contents ul li {
    margin-bottom: 0.5rem;
  }
  #page-customer-af-container #page-customer-afterm {
    width: 48%;
  }
  #page-customer-af-container #page-customer-land {
    width: 48%;
  }
  #page-customer-contact {
    width: 85%;
    margin: 0 auto;
    margin: 5rem auto;
  }
  #page-customer-contact #page-customer-contact-contents {
    background: #1784c1;
    margin-top: 1rem;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left {
    width: 30%;
    margin-left: 2%;
    color: #fff;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left h3 {
    font-size: 1.3vw;
    letter-spacing: 0.1vw;
    text-align: center;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time {
    margin-top: 1.3rem;
    padding-top: 1.3rem;
    font-size: 0.8vw;
    border-top: 0.1rem solid #fff;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress {
    text-align: center;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress h4 {
    font-size: 1vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress #adress {
    margin-top: 0.5rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-left #page-customer-contact-time #divage-customer-adress #open {
    margin-top: 2rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right {
    background: #fff;
    width: 60%;
    margin-right: 2rem;
    padding: 1rem 0;
    border-radius: 1rem;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right ul {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right ul li {
    width: 24%;
  }
  #page-customer-contact #page-customer-contact-contents #page-customer-contact-right p {
    font-size: 0.9vw;
    text-align: center;
    font-weight: bold;
  }
  #page-customer-qa {
    width: 85%;
    margin: 0 auto;
    margin: 5rem auto;
  }
  #page-customer-qa .page-customer-qa-box {
    margin: 1rem auto 0 auto;
  }
  #page-customer-qa .page-customer-qa-box summary {
    background: #1784c1;
    padding: 1rem;
    font-size: 0.9vw;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    color: #fff;
  }
  #page-customer-qa .page-customer-qa-box p {
    padding: 1rem;
    font-size: 0.9vw;
    border: 0.2rem solid #1784c1;
  }
  /*-----------------------------------------*/
  /*----------------- single ----------------*/
  /*-----------------------------------------*/
  #single-head-title {
    margin-left: 7.5%;
    padding: 8rem 0 10rem;
  }
  #single-head-title h2 {
    background: #fff;
    padding-right: 2rem;
    font-size: 3vw;
    letter-spacing: 0.5vw;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
    display: inline;
  }
  #single-head-title h3 {
    margin: 1rem 0 0 0.3%;
    font-size: 1.4vw;
    letter-spacing: 0.3vw;
  }
  #single-contents {
    width: 1200px;
    margin: 2rem auto 5rem;
  }
  #single-contents #single-time {
    text-align: right;
  }
  #single-contents #single-box {
    letter-spacing: 0.1vw;
    line-height: 1.8;
  }
  #single-contents #single-box P {
    margin-bottom: 2rem;
  }
  #single-contents #single-box table {
    border-collapse: collapse;
    border: 0.1rem solid #000;
  }
  #single-contents #single-box table td, #single-contents #single-box table th {
    border: 0.1rem solid #000;
    padding: 0.5rem 1rem;
    font-weight: normal;
  }
  #single-contents #single-box table th {
    width: 30%;
    background: #1E90FF;
    color: #fff;
  }
}/*# sourceMappingURL=style.css.map */