@charset "utf-8";
@font-face {
    font-family: "Acumin";
    font-style: normal;
    src: url("../fonts/Acumin_Variable_Concept.ttf") format("truetype"); /* 既存のコード */
}

@font-face {
    font-family: "Kozuka Gothic Pro";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/KozGoPr6N-Regular.otf") format("opentype");
}

@font-face {
    font-family: "Kozuka Gothic Pro";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/KozGoPr6N-Medium.otf") format("opentype");
}

@font-face {
    font-family: "Kozuka Gothic Pro";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/KozGoPr6N-Bold.otf") format("opentype");
}

/* CSS Document */

html{
  font-size: 10px;/* -> 10px(10pt)*/
  /*16px -> 1.6rem
    31px -> 3.2rem*/
}
@media screen and (max-width: 1200px) {
  html{
    font-size: calc(100vw * 10 / 1200);
  }
}
@media screen and (max-width: 769px) {
  html{
    font-size: calc(100vw * 10 / 769);
  }
}


.slide_in_up_wrap {
    overflow: hidden; 
}
.slide_in_up {
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                opacity 0.4s ease-out; 
}
.slide_in_up_wrap.show .slide_in_up {
    transform: translateY(0);
    opacity: 1;
}


body {
  color: #3e3a39;
  background-color: #fff;
  font-family: "Kozuka Gothic Pro", "游ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
}
/* .wrap {
  margin-bottom: 100vh;
  
} */

a {
  color: #3e3a39;
  text-decoration: none;

}
/* a:hover img{
  scale: 1.05;
  transition: .5s;
} */
p{margin-bottom: 0}

/*=============================
	共有
==============================*/
.container{
  max-width: 1080px;
  width: 90%;
}
.container-lg{
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
:root {
  --border-color: #D3D6DB;
  --underline-color: #D3D6DB; /* 下線 */
}
.underline_normal{
  border-bottom: 2px solid #3e3a39;
}

.underline {
  position: relative;
}

.underline:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: #3e3a39;
  transition: all 1.5s ease;
}
.underline.is_Active:after {
  width: 100%;
}

/*フェードインアニメーション*/
.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.sp{
  display: none;
}

a:hover{
  opacity: .7;
  transition: .5s;
}
@media screen and (max-width: 768px){
  .sp{
    display: block;
  }

}

@media only screen and (max-width: 768px) {
    .pc-tab-sub {display: none !important;}
  }

/* =====================================
  フォント
===================================== */

.acumin{
  font-family: "Acumin", sans-serif;
  font-weight: 500;
}
.acumin-r{
  font-family: "Acumin", sans-serif;
  font-weight: 400;
}
.acumin-bold{
  font-family: "Acumin", sans-serif;
  font-weight: 700;
}
/*topタイトル*/
.t-font200{
  font-size: 20rem;
}
/*topタイトル*/
.t-font300{
  font-size: 40rem;
}
.t-font150{
  font-size: 15.0rem;
}
.t-font130{
  font-size: 13.0rem;
}
/*p, blockquote*/
.t-font18{
  font-size: max(1.8rem, 17px);
}

.t-font16{
  font-size: max(1.6rem, 16px);
  line-height: 2;
}
.t-font20{
  font-size: max(2.0rem, 18px);
}
.t-font21{
  font-size: max(2.1rem, 18px);
}

.t-font24{
  font-size: max(2.4rem, 18px);
}

.t-font36{
  font-size: 3.6rem;
}
/*h2*/
.t-font40{
  font-size: 4.0rem;
}
.t-font50{
  font-size: 5.0rem;
}
.t-font55{
  font-size: 5.5rem;
}
.t-font60{
  font-size: 6.0rem;
}
.t-font80{
  font-size: 8.0rem;
}
.t-font35{
  font-size: 3.5rem;
}
.t-font25{
  font-size: 2.4rem;
}

.t-deco{
  text-decoration: none;
}
.t-ib {
    display: inline-block;
}

.space-60{
  letter-spacing: .06em;
}
/* -------------------------
  装飾
------------------------- */

/*リンクボタンとswiperボタン*/
/*swiperボタンは.p_cube(product)、(news詳細)のみ*/
.button, 
.p_cube .swiper-button-prev, 
.p_cube .swiper-button-next {
  /* スタイル用 */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  
  background: -moz-linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  background: -webkit-linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  background: linear-gradient(to right, #00a0e9 0%, #001971 80%, #001971 100%);
  border-radius: 100vh;
}

/*※リンクボタンのみposition: relative;を加える*/
.button{position: relative;}

.button:before,
.button:after, 
.p_cube .swiper-button-prev:before, 
.p_cube .swiper-button-prev:after, 
.p_cube .swiper-button-next:before, 
.p_cube .swiper-button-next:after{
  position: absolute;
  top: calc(50% + 2px);/*中心から2px下げた位置*/
  height: 1px;/*矢印の太さ*/
  background: #fff;
  content: '';
  border-radius: 100vh;
}
.button:after, 
.p_cube .swiper-button-prev:after, 
.p_cube .swiper-button-next:after{
  right: 35px;
}

.button:before, 
.p_cube .swiper-button-prev:before, 
.p_cube .swiper-button-next:before {
  width: 30px;/*矢印(横部分の長さ)*/
  transform: translateY(-50%);
}

.button:after, 
.p_cube .swiper-button-prev:after, 
.p_cube .swiper-button-next:after {
  width: 8px;/*矢印(斜め部分の長さ)*/
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

/*カテゴリーボタン*/
.button02 {
  transform: rotate(90deg);
  margin-left: 2rem;
}
.button02 {
  /* スタイル用 */
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #00a0e9;
  /* スタイル用 */

  position: relative;
}

.button02:before,
.button02:after {
  position: absolute;
  content: '';
}

.button02:before {
  top: 14px;
  left: 6px;
  width: 10px;
  height: 1px;
  background: #00a0e9;
}

.button02:after {
  top: 11px;
  left: 16px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 5px solid #00a0e9;
}

/*=======================
        header
=========================*/
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 2vh;
  right: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.00);
}


.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}



.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}

.c-hamburger span:nth-of-type(1) {
  top: -4px;
}

.c-hamburger span:nth-of-type(2) {
  top: 1px;

  transform: translateX(-0.45deg);
}

.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}



.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}

.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}




.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 20px;
  font-size: 44px;

}

.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 100%;
}

.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
}

.p-nav__list {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
}

.p-header__title{
  font-size: 4rem;
  color: #00a0e9;
}
.p-nav__item{
  position: relative;
  width: 100%;
  font-size: 1.3rem;
  padding: 20px 0;
}
.p-nav__link {
  display: block;
  padding: .8rem 3rem;
  width: 100%;
  text-align: center;
  overflow: hidden;

  color: transparent;
  text-shadow: 0 2em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s;
}
.p-nav__link:hover {
  text-shadow: 0 0 0 #000, 0 -2em 0 #000;
  color: transparent;
}
 
.nav_sdgs{
  /* color: #fff; */
  background: #00a0e9;
  border-radius: 9999px;
    text-shadow: 0 2em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
.nav_sdgs:hover {
  text-shadow: 0 0 0 #fff, 0 -2em 0 #fff;
  color: transparent;
}
.nav_contact{
  /* color: #fff; */
  background: -moz-linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  background: -webkit-linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  background: linear-gradient(to right, #00a0e9 0%, #001971 80%, #001971 100%);
  border-radius: 9999px;
  text-shadow: 0 2em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
.nav_contact:hover {
  text-shadow: 0 0 0 #fff, 0 -2em 0 #fff;
  color: transparent;
}
.dropdown__lists{
  display: none;/*デフォルトでは非表示の状態にしておく*/
  padding-left: 0;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.dropdown__list {
  background-color: rgba(255,255,255,0.50);
  transition: all .3s;
  position: relative;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.dropdown__list:hover {
    background-color: #80d0f4;
}
.p-nav__item:nth-child(3) span{
  cursor: pointer;
}
.p-nav__item:nth-child(3):hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list a{
  padding: 1rem;
}



@media screen and (min-width: 768px) {

  .p-header__hamburger {
    display: none;
  }

  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    border-radius: 9999px;
    transition: .6s;
  }

  .p-header__nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: initial;
  }
  header ul{margin-bottom: 0;}

  .p-nav__list {
    padding-right: 0;
    padding-left: 0;
    display: flex;
  }
  .header_nav_sp{
    display: none;
  }
  .p-nav__item:nth-child(8), 
  .p-nav__item:nth-child(9){
    margin: 0 2rem;
  }

}
@media screen and (max-width: 769px) {
  .p-nav__inner{
    display: none;
  }
  .p-nav__item:nth-child(3){
    display: none;
  }
  .p-header__title {
    font-size: 3rem;
  }
  .p-header__nav.is-active {
    position: fixed;
    display: block;
    background:radial-gradient(#80d0f4, #00a0e9);
    color: #fff;
  }
  .p-header__nav{
    overflow-y: scroll;
  }
  .p-header__nav .color_change{
    background-color: unset;
}
.p-header__nav .footer_nav{
  margin-top: 10rem;

}
.p-header__nav .footer_nav{
  font-size: 5rem;
}

}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .p-nav__item{padding: 10px 0;}
}

/*=======================
        トップページ
=========================*/

/*=======================
          top
=========================*/
/* #top-out{
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100vh;
} */
#top-wrapper{
  position: relative;
  height: 100vh;
  width: 100%;
  z-index: 5;
}
#top{
  color: #fff;
  width: 100%;
  /* height: 100vh; */
  /* padding-bottom: 56.25%; */
  padding-bottom: 0;
  /* position: relative; */
  z-index: 3;
}
#top .top-video-wrap{
  height: 100vh;
  width: 100vw;
}
#top video{
  height: 100vh;
  object-fit: cover;
}
#top .top-video-wrap::after{
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;

  background-color: #00000051;

}
.top-title{
  position: absolute;
  bottom: 10vh;
  left: 4vw;
  z-index: 5;
}
.top-title h2{
  font-weight: bold;
}
#top video{
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px){
  /*768以下の場合*/
  .top-title h1{
    font-size: 6rem;
  }
  .top-title h2{
    font-size: 2rem;
  }
  .top-title{
    bottom: 3vh;
  }
	
	#top .top-video-wrap{
		width: 100%;
		background: #fff;
	}
	#top video{
		display: block;
		top: 50%;
		height: 56vw;
		transform: translateY(-50%);
		z-index: 2;
	}
	#top .top-video-wrap::after{
		z-index: 3;
	}
}

/*=======================
          top_concept
=========================*/
.top_concept {
  /* position:relative; */
  /* margin-top: -100vh; */
  width: 100vw;
  border-bottom: 1px solid var(--underline-color);
  height: 100vh;
  display: flex;
  align-items: center;



  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  
  /* #top (z-index: 3) より背景側になるようにする */
  z-index: 2;
}
.top_concept .cau{
  font-size: 8rem;
  margin: 7rem auto 0;
  text-align: center;
  font-weight: bold;
  letter-spacing: .1em;
}
.top_concept .container{
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border-bottom: 1px solid var(--underline-color); */
}

.top_concept h2{
  display: flex;
  align-items: flex-end;
  padding: 0 1rem;
  font-weight: 500;
}

  .top_concept h2.sp_content{
    display: none;

  }
  .sp_concept_img{
    display: none;

  }
@media screen and (max-width: 1200px) {
  .top_concept h2{
    font-size: calc(100vw * 40 / 1200);
  }
}
.top_concept span{
  padding-bottom: 1rem;
  letter-spacing: 0.12em;
}
.top_concept figure{margin: 0;}
.top_concept img{
  width: 20rem;
  height: 12rem;
  object-fit: cover;
}
.top_concept img.w-18{
  width: 18rem;
}
@media screen and (max-width: 1200px) {
  .top_concept img.w-18{
    width: 18vw;
  }
  .top_concept img{
    width: 20vw;
  }
}
.top_concept .d-flex:nth-child(2), .top_concept .d-flex:nth-child(4){
  margin: 2rem 0;
}
.top_concept_sp .container{
  padding: 4rem 0;
  /* border-bottom: 1px solid var(--underline-color); */
}
.top_concept_d-block h2:nth-child(2){
  padding: 2rem;
}
.top_concept_d-block span{
  padding-bottom: .5rem;
}
.top_concept_d-block h2:nth-child(2) .underline:after{
  transition-delay: .2s;
}
.top_concept_d-block h2:nth-child(3) .underline:after{
  transition-delay: .4s;
}

/*スマホサイズ*/
@media screen and (max-width: 768px){
  /*768以下の場合*/
  .top_concept .container {padding: 4rem 0;}
  .top_concept h2{font-size: 3.1rem;}
  .top_concept_img{
    display: none;
  }
  .sp_concept_img{
    display: block;

  }
  .top_concept img{
    width: 20vw;
    height: 9vw;
  }
  .top_concept .d-flex{
    justify-content: center;
  }
  .top_concept h2.pc_content{
    display: none;

  }
  .top_concept h2.sp_content{
    display: flex;

  }
}

/*=======================
         top_company 
=========================*/
.top_company {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8rem 0;
  /* position: sticky; */
  /* top: 0;       */
  z-index: 0;
  margin-top: 100vh;
  
}
.top_company h2{
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 2rem;
}
.side{
  display: flex;
  justify-content: center;
}
.top_company_text{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 5rem;
  height: 100%;
}
.top_company_text blockquote{
  padding: 1rem 0;
  line-height: 2;
}
/*スマホサイズ*/
@media ( max-width : 500px ){
  
}

@media screen and (max-width: 1024px){
  /*768以下の場合*/
  .top_company {

    grid-template-columns: 1fr;
    /* padding: 14vw 4vw;
    margin: auto;
    max-width: 760px; */
  }
  .top_company img{
    width: 90%;
  }
  .top_company_text{
    padding: 0 2rem;
    
  }
  .top_company_text blockquote{
    line-height: 2.3;
    margin-bottom: 5rem;
  }
  .top_company h2{font-size: 5.5rem ;}
}

main{
 min-height: 100vh;
}
.swiper_main img{
  width: 100%;
  height: auto;
}
.swiper_main .swiper-slide {
  transition: transform 0.6s;
}

/* 左右のスライド */
.swiper_main .swiper-slide-prev,
.swiper_main .swiper-slide-next,
.swiper_main .swiper-slide-duplicate-prev,
.swiper_main .swiper-slide-duplicate-next {
  transform: scale(0.85);
}
.swiper_text{
        width: 100%;
        /*border-radius:15px;*/
        /*background-color: #B0BEC5;*/
        padding: 30px 0;
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    .swiper_text .swiper-slide{
        padding: 0 10rem;
    }

/*=======================
         top_product01
=========================*/
.top_product{
    z-index: 5;
    position: relative;
  color: #fff;
  background: #00a0e9;
  max-width: 100%;
  padding: 8rem 0;
  overflow: hidden;
  /* margin-top: -50vh; */
}
.top_product .button{
  background: #fff;
  margin-top: 5rem;
}
.top_product .button:before, 
.top_product .button:after{
  background: #00a0e9;
}

.top_product article{
  position: relative;
  /*height: 90vh;*/
}
.loop_wrap {
    display: flex;
    width: 100%;
    height: 180px;
    overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 30%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

.loop_wrap div {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 150px;
    overflow: hidden;
  }

.loop_wrap div:nth-child(odd) {
animation: loop 50s -25s linear infinite;
}

.loop_wrap div:nth-child(even) {
animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }

/*画像3つ*/
.top_product_img{
  overflow: hidden;
  position: relative;
  height: 90vh;

}
/*外枠かぎかっこ*/
.brackets01, .brackets02, .brackets03{
  padding: 2rem;
  margin: 0 8rem 2rem;
  --x-gradient: linear-gradient(90deg, #80d0f4 0 30px, transparent 0 calc(100% - 30px), #80d0f4 calc(100% - 30px));
    --y-gradient: linear-gradient(#80d0f4 0 30px, transparent 0 calc(100% - 30px), #80d0f4 calc(100% - 30px));
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
    background-position: top, right, bottom, left;
}
/*画像3つ固定*/
.brackets01, .brackets02, .brackets03{
  /*position: absolute;
  z-index: 1;*/
}
.brackets01{
  /*left: -18%;
  top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);*/
}

.brackets02{
  top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.brackets03{
  right: -18%;
  top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
/*画像ボーダー*/
.p_img{
  border: solid 1px #80d0f4;
  object-fit: cover;
  height: 45rem;
}
.swiper-slide:not(.swiper-slide-active) .p_img {
  /* フィルターを適用 */
  /* blur() の値が大きいほど、モザイクが荒く見えます。 */
  filter: blur(6px) grayscale(40%); 
  
  /* 画像の彩度を落とすことで、より「非アクティブ」な印象を与える（任意） */
  /* filter: grayscale(50%); */
}

.top_product .container{
  margin-top: 3rem;
}
/*行間指定*/
.top_product .container h2{
  line-height: 1.5;
  letter-spacing: .16em;
}
.top_product .container blockquote{
  line-height: 2.0;
}


@media screen and (max-width: 768px){
  /*768以下の場合*/
  .brackets01, .brackets03{
    /*display: none;*/
  }
  .brackets02{width: 90%;}
  .brackets02 img{width: 100%;}
  .top_product{
    padding: 10rem .0;
  }
  .top_product h2{
    font-size: max(3rem, 24px);
    margin-bottom: 4rem;
  }
  .top_product h2 br{
    display: none;
  }
  .top_product article{/*height: 70vh;*/}
  .top_product_img{
    height: 66vh;
  }
  .top_product .container{
    max-width: 100%;
    padding: 0;
    position: relative;
    z-index: 10;
  }
  .top_product .button{margin-top: 2rem;}
}
.p-margin01{
  margin-top: 5rem;
}
.p-margin02{
  margin-top: 13rem;
}
@media screen and (max-width: 768px){
  .brackets01{
    margin: 0;
  }
  .p-margin02{
    margin-top: 9rem;
  }
  .swiper_text .swiper-slide {
    padding: 0 1rem;
}
}
/*スマホサイズ*/
@media screen and (max-width: 499px){
  /*499以下の場合*/
  .brackets02{width: 90%;height: 35rem;}
  .top_product_img{height: 78vh;}
  .brackets02 img{
    width: 100%;
    height: 31rem;
  }
  .p-margin02{
    margin-top: 3rem;
  }
}

/*=======================
         top_product02
=========================*/
#pinned-section{
  position: relative;
  /* height: 100vh; */
}
.top_product02{
  background: #000;
  max-width: 100%;
  color: #fff;
  padding: 8rem 0;
  overflow: hidden;
}
.top_product02 .container{
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding-left: max(calc((100vw - 1200px)/2), 3vw);
  padding-right: max(calc((100vw - 1080px )/2), 5vw);
}
/*行間指定*/
.top_product02 .container blockquote{
  line-height: 2.0;
}
.top_product02 .button{
  /* background: #fff; */
}
.top_product02 .button:before, 
.top_product02 .button:after{
  background: #00a0e9;
}
.p_grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 2fr 1fr;
}
.top_product_access{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0;
}
.p02_cardgrid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media ( max-width : 500px ){
  .p_grid {
    grid-template-columns: 1fr;
  }
}
.p_card{
  position: relative;
}
.p_card article{
  position: relative;
}
.p02_cardtext{
  width: 100%;
  position: absolute;
  left: 6vw;
  bottom: 7vh;
}
.p02_img{
  position: absolute;
  top: 0;
  right: -55rem;
}
.top_product02_grid{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr; 
}
.top_product02_grid button{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/*スマホサイズ*/
@media screen and (max-width: 768px){
  .top_product02_grid{
    display: block;
  }
  
}
/*スマホサイズ*/
@media screen and (min-width: 769px){
  /*769以上の場合*/
  .top_product02_grid button{
    display: none;
  }

  
}
/*=======================
     top_product02(swiper)
=========================*/
:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #00a0e9;
    --color-theme-darken: #f12617;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  }
.top_product02 .l-inner {
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    max-width: 1200px;
    margin: 0;
    padding-left: max(calc((100vw - 1200px)/2),3vw);
    /*padding-right: 10rem;*/
  }
  .top_product02 .l-section .l-inner {
    padding-top: 8rem;
    padding-bottom: 0rem;
  }

  [class*=swiper]:focus {
    outline: none;
  }

  .top_product02 .slide-media,
  .top_product02 .thumb-media {
    position: relative;
    overflow: hidden;
  }
  .top_product02 .slide-media img,
  .top_product02 .thumb-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }


  .top_product02 .swiper-button-prev, .top_product02 .swiper-button-next {
    display: grid;
    place-content: center;
    width: 6.4rem;
    height: 6.4rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .top_product02 .swiper-button-prev::before, .top_product02 .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    border-radius: 50%;
    background: #fff;
  }
  .top_product02 .swiper-button-prev::after, .top_product02 .swiper-button-next::after {
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    border: solid #333;
    border-width: 3px 3px 0 0;
  }
  .top_product02 .swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .top_product02 .swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .top_product02 .swiper-button-disabled {
    pointer-events: none;
    opacity: 0;
  }

  .top_product02 .card02 {
    overflow: hidden;

  }
  .top_product02 .card02 .swiper {
    overflow: visible;
  }
  .top_product02 .card02 .swiper-controller {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.6rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 3.2rem;
  }
  .top_product02 .card02 .swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.2rem 0.8rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto 0 0;
    text-align: center;
  }
  .top_product02 .card02 .swiper-pagination-bullet {
    width: 1.6rem;
    height: 3px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    vertical-align: top;
    background-color: var(--color-gray);
  }
.top_product02 .swiper-pagination-bullet{
  border-radius: 0;
}
  .top_product02 .card02 .swiper-pagination-bullet-active {
    width: 4rem;
    background-color: var(--color-theme);
  }
  .top_product02 .card02 .swiper-button-prev, .top_product02 .card02 .swiper-button-next {
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin: 0;
  }
  .top_product02 .card02 .swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
  }
  .top_product02 .card02 .swiper-button-disabled::before {
    -webkit-box-shadow: var(--box-shadow-inset);
            box-shadow: var(--box-shadow-inset);
  }
  .top_product02 .card02 .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .top_product02 .card02 .slide {
    overflow: hidden;
    width: 90rem;
    border-radius: 4px;
    position: relative;
    background-color: #e9e9e9;
  }
  .top_product02 .card02 .slide-media {
    padding-top: 62.5%;
  }
  .top_product02 .card02 .slide-media img {
    height: calc(100% + 16px);
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  .top_product02 .card02 .slide-content{
    width: 100%;
    padding: 3.2rem;
    position: absolute;
    bottom: 0;
    color: #333;
  }


.top_product02_card_grid{
  display: flex;
  justify-content: space-between;
}
.card02 .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2em;
  margin-top: 1.6rem;
}
.top_product02 .card02 .button{
  /* background: rgba(0, 0, 0, 0.5); */
}
.top_product02 .card02 .button:before, 
.top_product02 .card02 .button:after{
  background: #fff;
}
  
  @media only screen and (max-width: 1024px) {
    html {
      -webkit-text-size-adjust: 100%;
    }
    .top_product02 .l-inner {
      padding: 0 4rem;
    }
    .top_product02 .l-section .l-inner {
      padding-top: 10rem;
      padding-bottom: 10rem;
    }
    .pc {
      display: none !important;
    }
    .top_product02 .card02 .slide {width: 50rem;}
  }

  @media only screen and (max-width: 796px) {
    .top_product02 .container .p_grid{
      flex-wrap: wrap;
      display: flex;

    }
    .top_product02 .container .p_grid blockquote{
      width: 100%;

    }
}

  @media only screen and (max-width: 1024px) {
    .pc-tab {
      display: none !important;
    }
    .top_product02 .card02 .slide {
      width: 100%;
    }
    .top_product02_card_grid h3{
      font-size: max(4rem, 28px);
    }
    .top_product02_card_grid span{
      /* margin-bottom: 10px; */
    }
    .top_product02_card_grid{
      align-items: bottom;
    }
    .top_product02 .card02 .slide-content{padding: 1rem;}
    .top_product02 .top_product02_grid h2{
      font-size: max(8.5rem, 50px);
    }
    .top_product02 .top_product02_grid button{
      display: none;
    }
    .top_product02 .container{
      width: 90%;
      margin: auto;
      padding: 0;
    }
    .top_product_access{
      justify-content: flex-start;

    }
    .top_product02 .swiper-wrapper {
      flex-direction: column;
      row-gap: 20px;
    }
    .top_product02 .swiper-button-prev,
    .top_product02 .swiper-button-next {
      display: none;
    }
    .top_product02 .card02 .swiper-slide{
      width: 100%;
    }


  }

  @media only screen and (min-width: 1025px) {
    .tab-sp {
      display: none !important;
    }
    .top_product02 .swiper-button-prev::before, .top_product02 .swiper-button-next::before {
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .top_product02 .swiper-button-prev:hover::before, .top_product02 .swiper-button-next:hover::before {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    .card02 .slide {
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .card02 .slide img {
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .card02 .slide:hover {
      /* -webkit-transform: translateY(-16px);
              transform: translateY(-16px); */
      
    }
    .card02 .slide:hover img {
      /* -webkit-transform: translateY(0);
              transform: translateY(0); */
              scale: 1.05;
              transition: .5s;
    }
  }

  @media only screen and (min-width: 600px) {
    .sp {
      display: none !important;
    }
  }
/*スマホサイズ*/
@media screen and (max-width: 499px){
  /*499以下の場合*/
  .top_product02 .l-inner {
    padding: 0 2rem;
    margin: 0;
  }
  
}

/*=======================
         voice
=========================*/
.voice{

  position: relative;
  border-bottom: 1px solid var(--underline-color);
  background-color: #fff;
}
.voice .container{
  max-width: 1200px;
  width: 95%;
  padding: 8rem 0;
}
.voice .container .row{
  justify-content: space-between;
  align-items: flex-start;
}
.voice blockquote{
  margin: 4rem 0;
}
.v_grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.v_cardtext h3{
  margin: 1rem 0;
  overflow: hidden;
  overflow-wrap:  break-word;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.v_article{
  padding-bottom: 4rem;
}
.voice .voice_card_grid{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.voice .voice_card_grid time{
  display: flex;
  align-items: center;
}
.voice .col-md-5 {
  /* stickyを適用 */
  position: sticky;
  top: 10vh;
  height: 60vh;
}

@media ( max-width : 768px ){
  .voice .container{
    padding: 4rem 2rem;
  }
  .v_grid {
    grid-template-columns: 1fr;
  }
  .voice .col-md-6 button{
    padding: 2rem 0;
  }
  .voice h2{font-size: max(8.5rem, 45px);}
  .v_article {
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .voice .container .row>div{
    margin: 2rem 0;

  }
  .voice .col-md-5{
    position: relative;
    margin-bottom: 30px;
    height: auto;
    top: 0;
  }
}
/*スマホサイズ*/
@media screen and (max-width: 499px){
  /*499以下の場合*/
  .voice blockquote {
    margin: 1rem 0;
  }
  .v_article {padding-bottom: 3rem;}
}

/*=======================
         top_news
=========================*/
.top_news{
  padding: 8rem 0;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.top_news .container{
  max-width: 1200px;
}
.n_title{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 3rem;
}
.n_category{
  display: flex;
  justify-content: flex-end;
}
.n_category li{padding: 0 1rem;}
.n_li{
  color: #00a0e9;
}
.n_category ul{
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.n_category li:nth-child(2) {
  border-right: 2px solid #000;
  border-left: 2px solid #000;
}

.top_news_list {
  padding-left: 0;
}

.top_news_list_item {
  padding: 2rem 0;
  border-bottom: 1px solid #3e3a39;
}

.top_news_list_item:first-child {
  border-top: 1px solid #3e3a39;
}
.top_news_list_item a {
  position: relative;
  overflow: hidden;
  overflow-wrap: break-word;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
 
}
.top_news_list_item::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 5px;
  background-image: url(../image/arrow.png);
  background-size: cover;
  background-position: center;
  margin-left: min(85%, 1150px);
  margin-top: -20px;
}
.top_news_list_item:hover::after{
  margin-left: min(87%, 1170px);
  transition: .5s;

}
.top_news_category_sp ul{
  display: flex;
  align-items: center;
}
.top_news_category_sp li{
  padding: 0 1rem;
}
.top_news_category_sp li:nth-child(2) {
    border-right: 2px solid #3e3a39;
    border-left: 2px solid #3e3a39;
}

@media screen and (max-width: 1024px) {/*1024以下の場合*/
    
}

@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .top_news{padding: 4rem 0;}
  .top_news .container{padding: 0 2rem;}

   .top_news_list{  margin: 3rem 0;}
  .top_news_list_item a  {
    font-size: 1.6rem;

  }
  
  .top_news_category_sp ul{
    padding: 1rem 0;
    display: none;
  }
  .n_title {padding-bottom: 0;}
  .top_news h2{
    font-size: 8.5rem;
  }
  .n_category ul{display: none;}
  .top_news_list_item::after{
    margin-left: 78%;
    margin-top: -10px;
  }
  .top_news_list_item:hover::after{
    margin-left: 82%;
  }
}
@media screen and (min-width: 769px) {
  /*769以上の場合*/
  .top_news_category_sp ul{
    display: none;
  }
}
/*=======================
          top_recruit
=========================*/
.top_recruit_wrap{
background-color: #fff;
padding-bottom: 10rem;
position: relative;
z-index: 2;
}
#top_recruit{
  
  color: #fff;
  background: url( "../image/IMG_0182.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 8rem;
  position: relative;
  aspect-ratio: 16 / 9; /* アスペクト比を保持してレスポンシブ */
  padding: 30px;
}
#top_recruit::before{
  content: '';
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
#top_recruit .button{background: #fff;}
#top_recruit .button:before, 
#top_recruit .button:after{
  background: #00a0e9;
}
#top_recruit blockquote{
  margin: 3rem 0;
}

#top_recruit .bottom{
  max-width: 1080px;
  margin: auto;
  color: #fff;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
  z-index: 5;

}

.r-title{
  position: absolute;
  bottom: 10vh;
  left: 4vw;
  width: 90vw;
}

@media screen and (max-width: 768px) {
  /*768以下の場合*/
  #top_recruit{height: auto;width: 100%;margin-bottom: 0;}
  #top_recruit .bottom{
    height: auto;
  }
  #top_recruit h2{font-size: 8.5rem;}
  .r-title{bottom: 1vh;}
}
/*スマホサイズ*/
@media screen and (max-width: 499px){
  /*499以下の場合*/
  /* #top_recruit{height: 92vh;} */
}
/*=======================
      HYCについて
=========================*/

/*=======================
        about_title
=========================*/
#about_title{
  color: #00a0e9;
}
#about_title .d-flex{
  justify-content: space-between;
}
#about_title .d-flex b{
  display: flex;
  align-items: center;
  letter-spacing: .5rem;
}
.about_content{
  width: 92%;
  max-width: 1200px;
  margin: auto;
  height: 50vh;
  display: flex;
  justify-content: space-between;

}
.about-title{
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.about_section{
  display: flex;
  align-items: flex-end;
}
.about_section li{
  padding: 1rem 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1200px) {
.about_content{
  height: 40vw;
}
}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .about_content{
    height: 70vw;
    flex-direction: column;
    justify-content: flex-end;
  }
  #about_title h1{font-size: 8rem;}
  .about_section{
    justify-content: flex-end;
    display: block;
    margin-top: 2rem;
    width: 100%;
  }
  .about_section ul{
    display: flex;
    gap: 4rem;
    justify-content: center;

  }
  .about_section li a{
    font-size: max(1.8rem, 16px);
    display: flex;
    align-items: flex-end;
  }

}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  #about_title h1{font-size: max(6rem, 40px);}
  .about_content{padding: 0 2rem;height: 65vw;}
  .about_section{
    justify-content: center;
  }
  .about_section ul{padding-left: 0;}

}
/*=======================
        about_top
=========================*/
.about_top{
  margin-top: 3rem;
 
  background-size: cover;
  background-position: center;

  position: relative;
}
.about_top img{
  object-fit: cover;
  width: 100%;
}
.about_top::before{
  content: '';
  background-image: linear-gradient(0deg, #000, #001870c9 80%, transparent);

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70%;
  z-index: 2;
  margin-top: -10rem;
}
.about_top .about_top_text{
  padding-top: 20rem;
  padding-bottom: 20rem;
  color: #fff;
  /* line-height: 3; */
  line-height: 2;
  margin-top: -20rem;
  position: relative;
  z-index: 3;
}

.about_top h2{
  padding-bottom: 5rem;
   line-height: 2;
}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .about_top h2{
    font-size: max(2.8rem, 21px);
    padding: 0;
    margin-bottom: 2rem;
  }
  .about_top h2 br, .about_top blockquote br{
    display: none;
  }
  .about_top blockquote{
    /* font-size: 1.6rem; */
  }
  .about_top img{
    width: 100vw;
    height: 150vw;
  }
  .about_top::before{
    height: 100%;
  }
  .about_top .about_top_text{
    margin-top: -2rem;
  }
}

@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .about_top{
    /* height: 100vh; */
    padding: 6rem 0;
    margin: 3rem 0;
  }
  .about_top .about_top_text{
    padding: 0;
  }
}

/*=======================
         feature 
=========================*/
.feature .container{
  border-bottom: 1px solid var(--underline-color);
  padding-bottom: 8rem;
}
.feature_title {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 8rem 0;
}
.feature_title blockquote{
  line-height: 3;
}
.feature h2{
  letter-spacing: 0.1em;
}
.feature_card {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  /* height: 20rem; */
}
.feature_card_item {
  background: #f7f7f7;
  padding: 5rem 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 2px solid #00a0e9;
}
.feature_card_item p:first-child{
  color: #00a0e9;
  margin-bottom: 2rem;
  font-size: 21px;
}
.feature_card_item p:last-child{
  line-height: 1.8;

}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .feature_title{
    grid-template-columns: 1fr;
    padding: 12rem 0 8rem;
  }
  .feature_title h2{
    font-size: max(5.5rem, 35px);
  }
  .feature .container{
    border-bottom: none;
  }
  .feature_card{
    display: flex;
    flex-wrap: wrap;
        gap: 2%;
  }
  .feature_card .feature_card_item{
    width: 48.5%;
    padding: 3rem;
    margin-bottom: 10px;


  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/

  
  .feature .container{padding-bottom: 3rem;}
  .feature_title blockquote {
    line-height: 3;
    margin: 1.5rem 0;
  }
}

/*=======================
         strengths
=========================*/
.strengths{
  padding: 8rem 0;
  margin-top: 8rem;
  border-top: 1px solid var(--underline-color);
}
.strengths_title {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 2fr;
  /* padding-bottom: 8rem; */
  padding-bottom: 35rem;
}
.strengths_title blockquote{
  line-height: 2.5;
}
.strengths_title h2{
  letter-spacing: 0.1em;
}
.feature h2{
  letter-spacing: 0.1em;
}
.strengths01{
  /* height: 135vh; */
  margin-bottom: 50rem;
  position: relative;
}
.strengths01 img{
  width: 75%;
  right: 0;
  z-index: 0;
  float: right;
  position: absolute;
  margin-top: -30rem;
}

.strengths01 .strengths_card{
  width: 60rem;
  height: 50rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  /* margin-top: 30rem; */
  z-index: 1;
  padding: 3rem;
}

.strengths01::before{
  content: "";
  width: calc(100vw  - (100vw - 1080px)/ 2);
  height: 100%;
  background: #e5f5fd;
  position: absolute;
  bottom: -10rem;
  z-index: -1;
  left: calc((100vw - 1080px)/ -2);;
}

.strengths_card blockquote{
  padding: 0 4rem;
  line-height: 2.5;
}
.strengths_card h2{
  margin-bottom: 3rem;
}

.strengths02{
  /* height: 130vh; */
  margin-bottom: 50rem;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.strengths02 img{
  width: 75%;
  left: 0;
  z-index: 0;
  position: absolute;
  margin-top: -30rem;
}
.strengths02::after{
  content: "";
  width: calc(100vw  - (100vw - 1080px)/ 2);
  height: 100%;
  background: #e5f5fd;
  position: absolute;
  bottom: -10rem;
  z-index: -1;
  right: calc((100vw - 1080px)/ -2);;
}
.strengths02 .strengths_card{
  width: 60rem;
  height: 50rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  right: 0;
  z-index: 1;
  padding: 3rem;
}
.strengths .container-lg > div:nth-child(4){
  margin-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .strengths_title{
    grid-template-columns: 1fr;
    padding-bottom: 8rem;
  }
  .strengths_title h2{
    font-size: 3.5rem;
  }
  .strengths01, .strengths02{
    height: auto;
    margin-top: 30rem;
  }
  
 
  .strengths01 img, .strengths02 img {
    width: 95vw;
    height: 80vw;
    object-fit: cover;
    
  }
  .strengths01 img{
    right: unset;
  }
  .strengths02 img{
    left: unset;
  }
  .strengths01 .strengths_card, 
  .strengths02 .strengths_card{
    height: auto;
    padding: 8rem 2rem;
    width: 90vw;

  }
  .strengths01::before, .strengths02::after{
    width: 95vw;
  }
  .strengths01::before{
    left: -5vw;
  }
  .strengths02::after{
    right: -5vw;
  }
  /* .strengths01 img, .strengths02 img, 
  .strengths01 .strengths_card, 
  .strengths02 .strengths_card{
    position: static;
    width: 100%;
    height: auto;
  }
  .strengths01 .strengths_card, 
  .strengths02 .strengths_card{
    background: #e5f5fd;
    padding: 2rem;
  } */
  .strengths01 h2, 
  .strengths02 h2{
    font-size: max(2.8rem, 21px);
    line-height: 2;
  }
  .strengths_card blockquote{
    padding: 0;
  }
  .strengths{
    margin-top: 8rem;
    padding: 8rem 0;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .strengths_title{padding-bottom: 4rem;}
  .strengths_title blockquote {
    margin: 1.5rem 0;
    line-height: 1.5;
  }
  .strengths{margin-top: 0;}
}
/*=======================
        会社情報
=========================*/
/*=======================
      company_title
=========================*/
#company_title{
  color: #00a0e9;
}
#company_title .d-flex{
  justify-content: space-between;
}
.company_content{

   width: 92%;
  max-width: 1200px;
  margin: auto;
  height: 50vh;
  display: flex;
  justify-content: space-between;

  padding: 0 3rem;
}
.company-title{
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.company_section{
  display: flex;
  align-items: flex-end;
}
.company_section li{
  padding: 1rem 0;
  border-bottom: 1px solid #000;
}
.company_message .massage_text{
  line-height: 3;

}
.company_message .massage_text h3{
  line-height: 2;
  letter-spacing: .16em;
  margin: 5rem 0 3rem;

}
.company_message .massage_text blockquote{
  padding-left: 30%;

}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .company_content{
    height: 40vh;
    flex-direction: column;
    justify-content: flex-end;
  }
  #company_title h1{font-size: 10rem;}
  .company_section{
    display: block;
  }
  .company_section ul{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

  }.company_section ul li{
    width: 48%;


  }
  .company_section li a{
    font-size: max(1.8rem, 14px);
    display: flex;
    align-items: flex-end;
  }
  .company_message .massage_text h3 br{
    display: none;

  }
  .company_message .massage_text h3{
    font-size: max(3.6rem, 22px);
  }
  .company_message .massage_text blockquote{
  padding-left: 0%;
  line-height: 2.5;

}
}
@media screen and (max-width: 499px) {
  .company_section {justify-content: center;}
  .company_section ul {padding-left: 0;}
  .company_content{padding: 0 1rem;}
}


/*=======================
        company_top
=========================*/
.company_top{
  margin: 8rem 0;

}
.company_top img{
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .company_top{
    margin: 10rem 0;
  }
  .company_top img{
    height: 80vw;
    object-fit: cover;
    /* object-position: left; */
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/

}

/*=======================
      company_message 
=========================*/
#company_message h2, 
#company_message h3{
  padding-bottom: 0rem;
  line-height: 2;
}
/* #company_message .massage_text{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  line-height: 3;
} */
/* #company_message blockquote {
  width: 70vw;
} */
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  #company_message blockquote {
    width: 100%;
  }
  .message_title h2{
    font-size: max(5.5rem,35px);

  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  #company_message h2, 
  #company_message h3{
    line-height: 1.5;
  }
  #company_message h3{
    padding-bottom: 2rem;
    font-size: max(2rem,20px);
  }
  #company_message h2{
    font-size: 4rem;
    padding-bottom: 0;
  }
  #company_message .massage_text{
    line-height: 2;
  }
}

/*=======================
        exterior(外観)
=========================*/
.exterior{
  padding: 8rem 0;
}
.exterior .swiper-slide img {
  height: auto;
  width: 100%;
}
/* スライドの動き等速 */
.exterior .swiper-wrapper {
  transition-timing-function: linear;
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .exterior{padding: 3rem 0 8rem;}
}

/*=======================
    overview & history
=========================*/
#overview, #history{
  padding: 8rem 0;
  border-top: 1px solid var(--border-color);
}

#overview h2, #history h2{
  margin-bottom: 4rem;
  letter-spacing: .06em;
}
.overview_list{
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 2.5rem 0;
}
.overview_list p{
  font-weight: bold;
  letter-spacing: .1em;
}
.overview_list p:first-child{
  display: flex;
  align-items: center;
  padding-left: 2rem;
}
.overview_ul:nth-child(odd){
  background: #f7f7f7;
}
.overview_blue{
  color: #00a0e9;
}

@media screen and (max-width: 768px) {
#overview h2,#history h2{
    font-size: max(5.5rem,35px);

  }
  #overview, #history{
  padding: 10rem 0;
}
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/

 

  .overview_list{
    grid-template-columns: 1fr;
  }
  .overview_list p:first-child{
    padding-bottom: 3rem;
  }
  #overview .container, 
  #history .container{
    padding: 4rem 1rem;
    border-bottom: none;
    padding-bottom: 4rem;
  }
  .overview_list p:first-child{padding-left: 3rem;}
  .overview_list p{padding-left: 3rem;}
}


#movie{
  padding: 8rem 0;
  border-top: 1px solid var(--border-color);

}
#movie iframe{
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 16 / 9;
}
/*=======================
        patent
=========================*/
#patent{
  padding: 8rem 0;
  border-top: 1px solid var(--border-color);

}
#patent h2{
  margin-bottom: 4rem;
  letter-spacing: .06em;

}
.patent_card {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.patent_card_item {
  margin: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .6s ease;
}
.patent_card_item:hover{
  transform: scale(1.05);
}
/*loupe(ルーペ)*/
.loupe{
  width: 15%;
  margin-right: 1rem;
  margin-bottom: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#zoomback {
  position:fixed;
  top:0;
  z-index: 1000;
  width:100vw;
  height:100vh;
  
  /* 背景を少し透過 */
  background-color:rgba(0,0,0,0.7);
  
  /* 中のimgを中央揃え */
  display: none;/*scriptでflexに変更*/ 
  justify-content:center;
  position: fixed;
  align-items:center;
}
/* 拡大画像のサイズを調整 */
#zoomimg {
  border:solid 5px #fff;
  /* width:30%; */
  max-width: 80vw;
  max-height: 70vh;

  /* アスペクト比を維持するための設定 */
  width: auto;
  height: auto;
  
  /* 万が一サイズが固定されている場合に比率を保つ（念のため） */
  object-fit: contain;
}

/*ズーム時のアニメーション*/
.deka {
  animation:deka 0.3s ease-out;
}
@keyframes deka {
  from {
    transform:scale(0);
  }
}

@media screen and (max-width: 990px) {
  #zoomimg {
  max-width: 90vw;
  max-height: 90vh;
  }
}
@media screen and (max-width: 769px) {

}
@media screen and (max-width: 499px) {

}
main{
  /* overflow-x: hidden; */
  background-color: #fff;
  overflow: hidden;
}
/*=======================
        product_title
=========================*/
#product_title{
  color: #00a0e9;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem;
}
#product_title p{font-weight: bold;}
#product_title p:last-child{
  margin: 4rem 0;
  color: #3e3a39;
}
@media screen and (max-width: 768px) {
  #product_title{
    /* height: 70vw; */
  }
  #product_title h1{
    font-size: 10rem;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  #product_title{padding: 0px 1rem;}
  #product_title h1{font-size: 12rem;}
  #product_title p:last-child {
    margin: 2rem 0;
}
}



/*=======================
    product_top(catalog)タブバージョン
=========================*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin:20px 0;
}

.tab-label {
  color: #3e3a39;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.tab-label:not(:last-of-type) {
  border-right: 1px solid var(--border-color);
}
.staff_name{
  display: flex;
  align-items: center;
  letter-spacing: .28em;
}
#recruit_voice .button{
  background: #f7f7f7;
}
#recruit_voice .button:before, 
#recruit_voice .button:after{
  background: #00a0e9;
}
.tab-content {
  width: 100%;
  overflow: hidden;
}
/* アクティブなタブ */
.tab-label:hover {
  background: #00a0e9;
  color: #fff;
  transition: .5s;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
@media screen and (max-width: 768px) {
  /* .tab-label .button{display: none;} */
  .tab-label{
    justify-content: space-between;
    padding-left: 3rem;
    padding-right: 3rem;
    flex-wrap: wrap;
  }
  .tab-label span.staff_name{
    max-width: calc(100% - 120px);
    white-space: unset;
    display: block;
    overflow-wrap: break-word;
    

  }
}

/*=======================
    案②ここから
=========================*/
/*=======================
    product_top(catalog) 目次のみ
=========================*/
.product_top .product_mokuji {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 8rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.product_catalog{
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  transition: .6s;
}
.product_catalog p, 
.product_catalog button{
  display: flex;
  align-items: center;
}
.product_catalog:nth-child(2){
  border-right: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
}
.product_top .button{
  background: #f7f7f7;
}
.product_top .button:before, 
.product_top .button:after{
  background: #00a0e9;
}
.product_catalog:hover{
  background: #00a0e9;
  color: #3e3a39;
}
@media ( max-width : 499px ){
  .product_top .p_cube{
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .product_catalog .button{
    display: none;
  }
  .product_catalog {
    justify-content: center;
    padding: 2rem 0;
  }
}

/*=======================
    案②ここまで
=========================*/
/*ボタンのスマホサイズ*/
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .p_cube .swiper-button-prev:after,
  .p_cube .swiper-button-next:after {
    right: 15px;
  }
  .p_cube .swiper-button-prev, .p_cube .swiper-button-next{
    width: 60px;
    height: 30px;
  }
}

/*=======================
        Pキューブ
=========================*/
.p_cube{
  padding: 5rem 0;
}
.p_cube .swiper-button-next{
  transform: scaleX(-1);
}
.p_cube .swiper-slide img {
  height: auto;
  max-height: 40vw;
  width: 100%;
  object-fit: cover;
}
.p_cube .swiper-button-prev, .swiper-button-next{
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.p_cube .swiper-button-prev{
  z-index: 3;
  right: 5vw;
}
.p_cube .swiper-button-next{
  z-index: 4;
  left: 5vw;
}
.p_cube_name{padding-top: 10rem;}

.p_cube_name, .p_cube_features, .p_cube_performance{
  padding-bottom: 5rem;
}
.p_cube_name p{
  line-height: 3;
}
.p_cube_name span{
  color: #00a0e9;
  margin-left: 2rem;
}
.p_cube_features p{
  letter-spacing: .1em;
}
.p_cube_name h2{
  letter-spacing: .06em;
  padding: 1rem 0;
  border-bottom: 3px solid #00a0e9;
}
.p_cube_features h3, .p_cube_performance h3{
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
  color: #00a0e9;
}
.p_cube_name p{
  line-height: 2;
  padding: 2rem 0;
}
.p_cube_card {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
  height: 20rem;
}
.p_cube_card_item {
  background: #f7f7f7;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p_cube_list{
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 5rem;
}
.p_cube_list p{
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.p_cube_list p:first-child{
  margin-bottom: 10px;

}
.p_cube_ul{padding: 1.5rem 1rem;}
.p_cube_ul:nth-child(even){
  background: #f7f7f7;
}
.p_cube_performance>p{
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p_cube_list {height: 10rem;}
  .p_cube_name, .p_cube_features, .p_cube_performance{
    padding-bottom: 10rem;
  }
  .p_cube_card_item {
    padding: 5rem 15px;
  }
  .p_cube_ul{
    padding: 2rem;
  }

  .p_cube .swiper-button-prev{
    margin-top: 45vw;
    right: 30vw;
  }
  .p_cube .swiper-button-next{
    left: 30vw;
     margin-top: 45vw;
  }
  .swiper{
    overflow: visible !important;
    margin-bottom: 20rem;
  }
  .top_product02 .swiper{
    margin-bottom: 0rem;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .p_cube {padding: 0;}
  .p_cube_name{padding: 3rem 0 8rem;}
  .p_cube_name h2{font-size: max(3.6rem,27px);}
  .p_cube_card{
    grid-template-columns: 1fr;
    height: auto;
  }
  .p_cube_list {
    grid-template-columns: 1fr;
    height: auto;
  }
  .product_top .product_mokuji {
    grid-template-columns: 1fr;
    margin: 4rem 0;
  }
  .product_top .product_mokuji a:nth-child(2){
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }
  .product_catalog:nth-child(2){
    border-right: none;
    border-left: none;
  }
  .p_cube_features h3, .p_cube_performance h3{
    font-size: max(3.6rem, 27px);
  }
}

/*=======================
        導入の流れ
=========================*/
/*=======================
      flow_title
=========================*/
#flow_title{
  color: #00a0e9;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem;
}
#flow_title p{font-weight: bold;}
#flow_title p:last-child{
  color: #333333;
  margin: 5rem 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #flow_title{
    height: unset;
    padding-top: 50px;
  }
  #flow_title h1{
    /* font-size: 8rem; */
  }
}
/*スマホサイズ*/
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  #flow_title{padding: 0 1rem;padding-top: 50px;}
  #flow_title h1{
    /* font-size: 4rem; */
  }
}

/*=======================
     flow_process
=========================*/
.flow_section{
  display: grid;
  gap:30px;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 0;
}
.flow_process .container-lg{
  padding-right: 5%;
  margin-bottom: 10rem;

}
.flow_section:first-child{
  border-top: 1px solid var(--underline-color);
}
.flow_section{
  border-bottom: 1px solid var(--underline-color);
}
.flow_section img{
  object-fit: cover;
}

.flow_section_text{
  font-weight: bold;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  justify-content: flex-start;
}
.flow_section_text h2{
  padding: 5rem 0;
  font-weight: bold;
}
.flow_section_text p{
  line-height: 3.0;
}

/*目次*/
.mokuji {
  width: 43px;
  width: auto;
  height: 70vh;
  position: fixed;
  top: 55%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 25px;
  writing-mode: vertical-rl;
  display: flex;
  line-height: 1;
  counter-reset: index;
  font-size: 1.6rem;
  border-left: 1px solid #d9dada;
}
.mokuji .mokuji-ttl{
  color: #00a0e9;
}
.mokuji .mokuji_number {
  list-style-type: none;
  list-style-position: inside;
  /* list-style-type: symbols('①' '②' '③' '④' '⑤'); */
  /*text-orientation: sideways;*/
  counter-increment: index;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  
  &::before {
    color: #00a0e9;
    content: counter(index);
    text-orientation: upright;
    border: 1px solid #00a0e9;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  &.current {
    &::before {
      background-color: #00a0e9;
      color: #fff;
    }
  }
}
@media screen and (max-width: 768px) {
  .flow_section {
    grid-template-columns: 1fr;
  }
  .flow_section img{
    height: 50rem;
    width: 100%;
  }
  .flow_section_text h2{
    padding:0 0 1rem;
  }
  .flow_section:nth-child(even) .flow_section_text{
    order: 2;
  }
  .flow_section:nth-child(even) img{
    order: 1;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .flow_section_text h2 {
    font-size: max(3.6rem, 21px);
  }
  .flow_section_text p{
    line-height: 2.6;
  }
  .mokuji{display: none;}
}

/*=======================
      採用情報
=========================*/
/*=======================
      recruit_title
=========================*/
#recruit_title{
  color: #00a0e9;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.recruit_content{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.company_section li{
  font-weight: bold;
}
.recruit_section{
  display: flex;
  justify-content:flex-end;
  align-items: flex-end;
}
.recruit_section li{
  padding: 1rem 0;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  #recruit_message blockquote {
    width: 100%;
  }
  #recruit_message .container{padding: 3rem 1rem;}
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .recruit_job_card_item{
    padding: 10px;
  }
}

/*=======================
        recruit_top
=========================*/
.recruit_top{
  margin: 8rem 0;
  background: url( "../image/IMG_0182.jpg");
  background-size: cover;
  background-position: center;
  height: 50vh;
}

/*=======================
     recruit_message 
=========================*/
#recruit_message{
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
}
#recruit_message h3{
  padding-bottom: 5rem;
  line-height: 2;
}
#recruit_message h3, #recruit_message blockquote{
  font-weight: bold;
}
#recruit_message .massage_text{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
#recruit_message blockquote {
  width: 70vw;
  /* line-height: 3; */
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #recruit_message blockquote {
    width: 100%;
  }
  #recruit_message .container{padding: 3rem 1rem;}
}
@media screen and (max-width: 499px) {
  #recruit_message{
    padding: 10rem 0;
  }
  /*499以下の場合*/
  .recruit_job_card_item{
    padding: 10px;
  }
  #recruit_message h3{
    font-size: max(3.6rem, 23px);
    padding-bottom: 1rem;
  }
  #recruit_message h3 br{
    display: none;
  }
  #recruit_message blockquote {line-height: 2.5;}
}

/*=======================
      recruit_job 
=========================*/

#recruit_job{
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8rem;
}
.recruit_job_title {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 2fr;
  padding: 8rem 0;
}
.recruit_job_title blockquote{
  line-height: 3;
}
.recruit_job h2{
  letter-spacing: 0.1em;
}
.recruit_job_card {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  /* height: 50rem; */
  margin-bottom: 10rem;
}
.recruit_job_card p{font-weight: bold;}
.recruit_job_card_item {
  background: #f7f7f7;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}
.recruit_job_card_item p:first-child{
  color: #00a0e9;
  margin-bottom: 2rem;
}
.recruit_job_card_item p:last-child{
  line-height: 2;
}
.recruit_job_img img{
  width: 100%;
  
}
@media screen and (max-width: 768px) {
  .recruit_job_title{padding: 4rem 0;}
  .recruit_job_img{margin: 4rem 0;}
  .recruit_job .container{
    padding-bottom: 0;
  }
  .recruit_job_card {
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap:10px;
  }
  .recruit_job_card_item{
    padding: 30px;
  }
  .recruit_top{margin: 2rem 0;}
}
@media screen and (max-width: 499px) {
  #recruit_job{
    padding: 8rem 0;
  }
  /*499以下の場合*/
  .recruit_job_card_item{
    padding: 10px;
  }
  .recruit_job_title {
    grid-template-columns: 1fr;
  }
  .recruit_job_title h2 {
    padding-bottom: 1rem;
    font-size: max(5.5rem, 35px);
  }
  .recruit_job_title blockquote{
  line-height: 2.5;
}
}


/*=======================
       recruit_voice
=========================*/
#recruit_voice{
  border-bottom: 1px solid var(--border-color);
}
.recruit_title_all {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 8rem 0;
}
.recruit_title_all blockquote{
  line-height: 3;
}
.staff_name{
  display: flex;
  align-items: center;
}
#recruit_voice .button{
  background: #f7f7f7;
}
#recruit_voice .button:before, 
#recruit_voice .button:after{
  background: #00a0e9;
}

.voice_section{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5rem 0;
  padding-right: max(calc((100vw - 1200px)/2), 5vw);

}

.voice_section_text{
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
.voice_section_text h2{
  
  padding: 5rem 0;
}
.voice_section_text p{
  line-height: 2.0;
}
.voice_section_text .staff_name02 h2{
  color: #00a0e9;
}
.staff_name02{
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: #e5f5fd;
}
.staff_name02 p{
  display: flex;
  align-items: center;
}
.staff_question{
  margin-bottom: 3rem;
}

.staff_question h3, 
.staff_question blockquote{
  padding: 1rem 1rem 3rem;
  /* font-weight: bold; */
}
.staff_question blockquote{
  line-height: 3;
}
.staff_question h3{border-bottom: 1px solid #00a0e9;}
@media screen and (max-width: 768px) {
  .voice_section {
    grid-template-columns: 1fr;
  }
  .voice_section_text h2 {padding: 3rem 0;}
  .recruit_title_all {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 499px) {
  #recruit_voice{
    padding: 8rem 0;

  }
  .voice_section{
    width: 90%;
    margin: auto;
    padding-right: 0;
  }
  /*499以下の場合*/
  .recruit_job_card_item{
    padding: 10px;
  }
  .recruit_job_title {
    grid-template-columns: 1fr;
  }
  .voice_section_text h2 {
    font-size: 2rem;
    padding: 2rem 0;
  }
  .recruit_title_all h2{
    padding-bottom: 1rem;
    font-size: max(5.5rem, 35px);
  }
  .recruit_title_all blockquote{
  line-height: 2.5;
}
  .staff_name02{
    flex-direction: column;
    width: 90%;
    margin: 2rem auto;
  }
  .staff_name02 p{
    font-size: max(2rem, 18px);
    padding-bottom: 2rem;
    text-align: center;
    display: block;
  }
  .staff_question blockquote{
  line-height: 1.5;
}
}


/*=======================
       recruit_career
=========================*/
#recruit_career{
  border-bottom: 1px solid var(--border-color);
}
#recruit_career .button{
  background: #f7f7f7;
}
#recruit_career .button:before, 
#recruit_career .button:after{
  background: #00a0e9;
}
#recruit_career .recruit_job_img{
  margin: 0 0 4rem;
}
#recruit_career .recruit_item_ul:nth-child(2){
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

#recruit_career .recruit_item_list{
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 6rem 2rem;
}
#recruit_career .recruit_item_list p:first-child{
  color: #00a0e9;
}
#recruit_career .tab-wrap *{
  font-weight: bold;
}
.recruit_item_blue{
  color: #00a0e9;
}
@media screen and (max-width: 768px) {
  .voice_section {
    grid-template-columns: 1fr;
  }
  .voice_section_text h2 {padding: 3rem 0;text-align: center;}
}
@media screen and (max-width: 499px) {
  #recruit_career{
    padding: 8rem 0;
  }
  /*499以下の場合*/
  .recruit_job_card_item{
    padding: 10px;
  }
  .recruit_job_title {
    grid-template-columns: 1fr;
  }
  .voice_section_text h2 {    font-size: max(4rem, 25px);}
  #recruit_career .recruit_item_list {
    grid-template-columns: 1fr;
    padding:2rem 0;
  }
  #recruit_career .recruit_item_list p:first-child{

    padding-bottom: 2rem;
  }
}

/*=======================
      recruitment
=========================*/
#recruitment{
  padding-bottom: 10rem;
}
/* #recruitment .tab-wrap *{font-weight: bold;} */
#recruitment .button{
  background: #f7f7f7;
}
#recruitment .button:before, 
#recruitment .button:after{
  background: #00a0e9;
}
.recruit_item_performance{
  padding: 0 2rem;
}
#recruitment .recruit_job_img{
  margin: 4rem 0;
}
#recruitment .recruit_item_ul:nth-child(even){
  background: #f7f7f7;
}
#recruitment .recruit_item_list{
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 2rem 0;
}
#recruitment .recruit_item_list p:first-child{
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  #recruitment .recruit_item_list{
    padding: 3rem 0;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  #recruitment .recruit_item_list {
    grid-template-columns: 1fr;
  }
  #recruitment .recruit_item_list p:first-child {
    /* font-size: 2rem; */
    padding-bottom: 1.5rem;
}
  #recruitment .recruit_item_list p:last-child {
    padding: 0 2rem;
  }
  .recruit_item_performance {
    padding: 0;
  }
}

.tab-flex{
  width: 100vw;
}
.recruit-tab-wrap {
  overflow: hidden;
}
.recruit-tab-wrap .tab-content {
    display: none;
}
.recruit-tab-wrap .tab-label.is-active {
    color: #00a0e9;
}
.recruit-tab-wrap .tab-flex{
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .recruit-tab-wrap .tab-flex{
   display: block;
  }
    .recruit-tab-wrap .tab-label{
  
      width: 100vw;
  }
}
@media screen and (max-width: 499px) {


}


.panel {
  /* border: 1px solid #ddd; */
  /* border-radius: 8px; */
  margin-bottom: 10px;
  font-size: max(1.8rem, 17px);

}
.tab-content-wrap{
  margin: 10rem auto;
}

.panel-header {
  width: 100%;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #009fe91e;
  border: none;
  cursor: pointer;
  font-size: max(2.1rem, 19px);
  text-align: left;
}

.panel-header:hover {
  opacity: .7;
  transition: .5s;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
}
.icon img{
  max-width: 50px;
}

.panel-header.active .icon {
  transform: rotate(180deg);
}

.panel-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.panel-body {
  padding: 20px;
  border-top: 1px solid #eee;
}




/*=======================
      お知らせ一覧
=========================*/
/*=======================
     news_list_title
=========================*/
#news_list_title{
  color: #00a0e9;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.news_list_content{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/*=======================
      news_list
=========================*/
.news-card-container{
  margin: 10rem auto;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
.news-card-container .card{
  width: 30%;
  margin-right: 5%;
  border: unset;
  margin-bottom: 5rem;

}
.news-card-container .card img{
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.news-card-container .time_category{
  margin: 1rem 0;
}
.news-card-container .time_category span{
  color: #00a0e9;
  margin-left: 2rem;

}
.news-card-container .card:nth-child(3n){
  margin-right: 0;

}
#news_list label .button{
  background: #f7f7f7;
}
#news_list label .button:before, 
#news_list label .button:after{
  background: #00a0e9;
}
#news_list .tab-wrap{
  margin: 4rem 0;
}



.card-container {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding: 2rem 2rem 5rem;
}

.card-container .card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  /*subgrid -> 横並びになっているカードと各高さを合わせる(例：2枚横並びのカードがあるとき、左のカードのテキストが2行の場合、右のカードはテキストが1行でも2行目に空白ができる)*/
  row-gap: 12px;
  border: none;
}

.card-container {
  margin-inline: auto;
}

.card-container .card {
  padding-block: 10px;
}

.card-container .card .image {
  width: 100%;
  /*height: auto;*/
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.news-card-container .time_category{
  display: flex;
}
.news-card-container .time_category time{
  margin-right: 1rem;
}
.news-card-container .news_list_card_title{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news-card-container .news_list_description{
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.news-page-nav{
  margin: 5rem auto;
}

.news-page-nav .wp-pagenavi{
  display: flex;
  justify-content: center;

}
.news-page-nav .wp-pagenavi a,.news-page-nav .wp-pagenavi span.current{
  display: block;
  font-size: 1.8rem;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  text-align: center;
  line-height: 4.5rem;
  color: #00a0e9;
  border-color: #00a0e9;

  

}
.news-page-nav .wp-pagenavi span.current, .news-page-nav .wp-pagenavi a:hover{
  background-color: #00a0e9;
  border-color: #00a0e9;
  color: #fff;


}
@media screen and (max-width: 1024px) {
  .news-card-container .card{
    width: 48%;
    margin-right: 4%;
    border: unset;
    

  }
  .news-card-container .card:nth-child(3n){
    margin-right: 4%;
  }
  .news-card-container .card:nth-child(2n){
    margin-right: 0;
  }
  
}
@media screen and (max-width: 769px) {

}
@media screen and (max-width: 499px) {
  .news-card-container .card{
    width: 100%;
    margin-right: 0%;
  }
  .news-card-container .card img{
    height: 50vw;
  }
  /*499以下の場合*/
  .card-container {
    padding: 2rem 0 5rem;
  }
  .card-container .card > a{
    font-size: 1.6rem;
  }
  .card-container .news_list_description .button{
    width: 60px;
    height: 30px;
  }
  .card-container .news_list_description .button:after{right: 15px;}
  .card-container .news_list_description{
    padding-right: 1rem;
  }
  .card-container{
    grid-template-columns: 1fr;
  }
}



/*=======================
      お知らせ詳細
=========================*/
/*=======================
     news_detail_catalog
=========================*/
.news_detail_catalog .product_top .product_mokuji{
  margin: 6rem 0;
}

/*=======================
      news_detail
=========================*/
.news_detail .p_cube_name h2, 
.news_detail_text blockquote{
  overflow-wrap: break-word;
  line-height: 1.7;
}
.news_detail_text blockquote{
  line-height: 3;
}
.news_detail .swiper img{
  height: 50vw;
  object-fit: contain;
}
.news_detail.p_cube{
  padding: 0;
}
.news_detail_text{
  margin: 2rem 0;
}
.kotira{
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}
.under_gradient{
  padding: 0 2rem 1rem;
  gap: 3rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid;
  border-image: -moz-linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  border-image: -webkit-linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  border-image: linear-gradient(left, #00a0e9 0%, #001971 80%, #001971 100%);
  border-image-slice: 1;
}
.kotira span{
  display: flex;
  align-items: center;
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .under_gradient .button{
    width: 60px;
    height: 30px;
  }
  .under_gradient .button:after{
    right: 15px;
  }
}

/*=======================
      コンタクト
=========================*/
.contact-image {
  width: 100%;
  height: 35vw;
  margin: 8rem 0;
  overflow: hidden;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .contact-image{
    height: 80vw;
  }
}

/*=======================
    contact_tel
=========================*/
.contact_tel .container-lg > p{
  line-height: 3;
  padding: 5rem 0;
}
.contact_tel .phone{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #e5f5fd;
  padding: 2.5rem 0;
}
.contact_tel .phone h2:first-child{
  color: #00a0e9;
  padding-bottom: 2rem;
}
.contact_tel .phone a{
  position: relative;
}
.contact_tel .phone a::before{
  content: '';
  display: block;
  width: 6rem; 
  height: 6rem;
  background-image: url( "../image/phone_tel.svg");
  background-size: contain;
  background-repeat:no-repeat;
  position:absolute;
  top:5px;
  left:-7rem;
}
.contact_tel .phone p{
  padding: 1rem 0;
}
.contact_input b span{display: inline-block;}
@media screen and (max-width: 768px) {
  .contact_tel .phone h2:first-child {
    font-size: 3rem;
  }
  .contact_tel .phone h2:nth-child(2) {
    font-size: 5rem;
  }
  .contact_tel .phone a::before {
    width: 5rem;
    height: 5rem;
    left: -6rem;
}
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .contact_tel .container > p {
    line-height: 2;
    padding: 2rem 0;
  }
  .contact_tel .phone h2:first-child {
    font-size: max(2rem,20px);
  }
  .contact_tel .phone h2:nth-child(2) {
    font-size: 3rem;
  }
  .contact_tel .phone a::before {
    width: 3rem;
    height: 3rem;
    left: -4rem;
}
}
@media screen and (min-width: 500px) {
  /*500以上の場合*/
  .contact_tel .phone br{display: none;}
}
/*=======================
    progressbar
=========================*/
.progressbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--input-border-color);
}
.progressbar .item {
    position: relative;
    width: 100%;
    text-align: center;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 17px 0;
    line-height: 1.5;
    background: #F5F5F5;
    color: #999999;
}
.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 29px solid transparent;
    border-left: 20px solid #F5F5F5;
    margin: auto;
}
.progressbar .item:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}

@media screen and (max-width: 767px) {
.progressbar .item {
    line-height: 1.4;
    padding: 10px 0;
}
.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
}
}
/*@media screen and (max-width: 499px) {
  .progressbar .item:not(:last-child)::before, .progressbar .item:not(:last-child)::after {
        border-width: 20px;
        border-left-width: 12px;
    }
}*/

/* active */

.progressbar .item.active {
    z-index: 1;
    background: #00a0e9;
    color: #FFF;
}
.progressbar .item.active:not(:last-child)::after {
    border-left-color: #00a0e9;
}
.progressbar .item.active:not(:last-child)::before {
    border-left: none;
}


/*=======================
     form 
=========================*/
.contact_input .container > p{
  padding: 4rem 0;
  line-height: 3;
}
:root {
  /*=============================
	カスタムプロパティ
  ==============================*/
  --base-color: #FFFFFF; /* フォームブロックの背景色 */
  --main-color: #3E4652; /* メインカラー */
  --accent-color: #B8250F; /* アクセントカラー */
  --submit-color: #3F61B0; /* 送信ボタンの色 */
  --field-margin: 4px; /* 項目同士の余白の幅 */
  --table-border-color: none; /* 表の枠線の色 */
  --table-label-color: #fff; /* ラベルセルの背景色 */
  --table-data-color: #fff; /* 入力欄セルの背景色 */
  --input-color: #FFFFFF; /* 入力欄の背景色 */
  --input-border-color: #D3D6DB; /* 入力欄の枠線の色 */
  --transition: 0.1s; /* アニメーション時間 */
  

  /*------ 合計100%になるよう調整 -------*/
  --label-width: 25%; /* ラベル部分の幅 */
  --data-width: 75%; /* 入力欄部分の幅 */
}

.contact_form .coution{
  color: var(--accent-color);
}
.form_margin{margin-bottom: .8em;}
.form_koumoku{flex-direction: column;}
.form_koumoku p{height: 38px}


/* 基本構造：dlタグで項目名と入力欄を横並びにするためのFlexbox設定 */
.mwform-form-wrapper dl.form-row {
    display: flex;
    flex-wrap: wrap; /* 子要素が折り返すように設定 */
    border-top: 1px solid #ddd; /* 添付画像のような区切り線 */
    padding: 15px 0;
    font-size: max(1.8rem,17px);
}

.mwform-form-wrapper input, .mwform-form-wrapper textarea{
  border: 1px solid #bac3c5 ;
  /* color: #bac3c5; */
  padding: 1rem;
  border-radius: 2px;

}
input[type=text], input[type=email], textarea{
  width: 100%;
}
.input-checkbox-group{
  display: flex;
  justify-content: left;
  flex-wrap: wrap;

}
.input-checkbox-group .horizontal-item{
  width: 30%;

}
.input-checkbox-group .horizontal-item{
  margin-left: 10px;
  margin-bottom: 2rem;
}
.mwform-form-wrapper dl.form-row:last-of-type {
    border-bottom: 1px solid #ddd; /* 最後の項目に下の線 */
}

/* 項目名（<dt>）の共通スタイル */
.mwform-form-wrapper .label-heading {
    width: 25%; /* 項目名の幅を固定 (PCの場合) */
    padding-right: 20px;
    font-weight: 500;
    display: flex; /* 項目名とマークを中央揃えにするため */
    align-items: top; 
    
}

/* 入力欄（<dd>）の共通スタイル */
.mwform-form-wrapper .input-field {
    width: 75%; /* 入力欄の幅 */
}

/* 必須マークのスタイル */
.required-mark {
    color: #ff0000;
    margin-left: 5px;
    font-size: 0.8em;
}

/* 2カラム表示が必要な行 (お名前、フリガナ、メールアドレス、確認用) */
.form-row.row-two-col {
    display: grid;
    /* dtとddの組み合わせを2列で表示。dt: 25%, dd: 75% を基本に、全体を2分割 */
    grid-template-columns: 25% 75%;
    gap: 0; /* dt/ddの間のギャップをなくす */
}

/* 郵便番号の「〒」マークと入力欄の配置 */
.input-zipcode {
    display: flex;
    align-items: center;
}
.privacy-section{
  width: 80%;
  background-color: #f7f7f7;
  padding: 2rem;
  text-align: center;
  margin: auto;

font-size: 16px;}
.input-zipcode input {
    width: 100px; /* 郵便番号の入力欄を短く */
    margin-right: 10px;
}

/* ラジオボタン・チェックボックスの横並び調整 */
.input-checkbox-group .mwform-checkbox-field-text,
.input-radio-group .mwform-radio-field-text {
    display: inline-block; /* 項目を横並びに */
    margin-right: 20px;
}

/* 備考欄（textarea）の高さ調整 */
.form-row textarea {
    min-height: 150px;
}

/* 送信ボタンセクション */
.submit-section {
    text-align: center;
    padding: 30px 0 0;
    
}
.submit-section input[type=submit], .submit-section button{
  display: block;
  margin: auto;
  font-size: 16px;
  border-radius: 3rem;
  background-color: unset;

}
 .submit-section button{
  background-color: #fff;
  color: #fff;
  margin-bottom: 30px;
 }
 .submit-section button::after,  .submit-section button::before{
  display: none;
 }

/* --- レスポンシブ対応 (モバイル向け) --- */
@media (max-width: 768px) {
    /* すべての項目を縦積みにする */
    .mwform-form-wrapper .label-heading,
    .mwform-form-wrapper .input-field {
        width: 100%;
        padding-right: 0;
    }
    .mwform-form-wrapper .label-heading {
        padding-bottom: 5px;
    }
    
    /* 2カラムレイアウトを縦積みに戻す */
    .form-row.row-two-col {
        grid-template-columns: 1fr; /* 1列にする */
    }
    .input-checkbox-group .horizontal-item{
  width:45%;

}
}
@media (max-width: 768px) {
  .input-checkbox-group .horizontal-item{
  width:100%;

}
}


/*=======================
      コンタクト(確認画面)
=========================*/
/*=======================
    contact_check_title
=========================*/
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .contact_check_title .about_content{
    height: 35vh;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .contact_check_title .about_content{
    height: 20vh;
    padding: 0px 1rem;
  }
}

/*=======================
      コンタクト(送信完了)
=========================*/
/*=======================
   contact_complete_title
=========================*/
.contact_complete_title .about_content{
  justify-content: center;
  height: 35vh;
}
.complete_message{
  margin: 4rem 0;
}
.complete_message h3,.complete_message h4{
  line-height: 2;
}
.complete_message span{display: inline-block;}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .contact_complete_title .about_content{
    height: 35vh;
  }
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  .contact_complete_title .about_content{
    height: 20vh;
    padding: 0px 1rem;
  }
  .complete_message{margin: 0;}
  .complete_message h3,.complete_message h4{
  font-size: 1.6rem;
}
}
@media screen and (min-width: 500px) {
  /*500以上の場合*/
  .br_on{display: none;}
}

/*=======================
        footer
=========================*/
.push-footer{
  position: fixed;
  bottom: 0;
  z-index: -2;
  max-height: 100vh;
  overflow-x: scroll;
  /* overflow: hidden; */

}
footer{
  color: #fff;
  width: 100vw;
  /* height: calc(100vh - 10rem); */
  margin: 0 auto;
  background: radial-gradient(#80d0f4, #00a0e9);
  padding-top: 5rem;

}
.footer_grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  padding-bottom: 1rem;
  padding-left: max(calc((100vw - 1200px)/2), 3vw);
  padding-right: max(calc((100vw - 1080px)/2), 5vw);
  width: unset;
}
.footer_grid h2 a{
  color: #fff;
}
.footer_form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 2rem;
  border-bottom: 1px solid #fff;
}
.footer_form h3{
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.footer_form span{display: inline-block;}

.footer_grid .tel{
  display: flex;
  flex-direction: column;
  max-width: 555px;
}
.footer_grid .tel p{
  line-height: 3.0;
}
.footer_grid .tel h2{
  padding: 3rem 0;
  letter-spacing: .06em;
}
.footer_grid .tel .button{
  background: rgba(255,255,255,0.70);
}
.footer_nav .button{
  background: #fff;
}
.footer_grid .tel .button:before, 
.footer_grid .tel .button:after{
  background: #00a0e9;
}
.footer_nav .button{color: #00a0e9;}
.footer_nav .button::before, 
.footer_nav .button::after{
  display: none;
}
.footer_nav li:nth-child(7) {
  font-size: 1.6rem;
}
.footer_nav li:not(:nth-child(7)) {
  /* padding-bottom: 3rem; */
  margin-bottom: 3rem;
}
.footer_nav{
  /* display: flex;
  justify-content: center; */
  width: fit-content;
}
.footer_nav a{
  color: #fff;
  font-family: "Acumin", sans-serif;
}
.footer_nav a:hover{
  color: #0d6efd;
}
.footer_nav .p-nav__item_inn{
  font-size: 2.5rem;
  padding: 0 0 0rem;
  font-family: "Acumin", sans-serif;
}
.footer_nav .dropdown__lists{
  top: -1rem;
  left: unset;
}
.footer_nav .dropdown__lists li{
  padding-bottom: 1rem;
}
.footer_title{
  display: flex;
  justify-content: space-between;
}
.footer_title .t-font300{
  line-height: 1;
}
.footer_nav .p-nav__link {
  padding: 0;
  text-align: inherit;
    text-shadow: 0 2em 0 #fff, 0 0 0 #fff;
  


}
.footer_nav .p-nav__link:hover {
  text-shadow: 0 0 0 #fff, 0 -2em 0 #fff;
  color: transparent;
}
.footer_nav .footer_nav_pc .p-nav__item_inn, .footer_nav li .button {
  overflow: hidden;
}
.footer_nav .footer_nav_pc .p-nav__item_inn > a{
 padding: 0;
  text-align: inherit;
  overflow: hidden;

  color: transparent;
  text-shadow: 0 2em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
}
.footer_nav li .button {
  padding: 0;
  text-align: inherit;
  overflow: hidden;

  color: transparent;
  text-shadow: 0 2em 0 #00a0e9, 0 0 0 #00a0e9;
  transition: text-shadow 0.3s;

}
.footer_nav .footer_nav_pc .p-nav__item_inn > a:hover {
  text-shadow: 0 0 0 #fff, 0 -2em 0 #fff;
  color: transparent;
}
.footer_nav li .button:hover {
  text-shadow: 0 0 0 #00a0e9, 0 -2em 0 #00a0e9;
  color: transparent;

}
 

.copyright{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 3rem;
  padding-right: 3rem;
  letter-spacing: .1em;
}
footer .footer_nav_sp .button{
  width: 90px;
    height: 45px;
}
footer .footer_nav_sp .footer_nav_spul:not(:nth-child(3)){
  font-size: 2rem;
}
footer .footer_nav_sp .footer_nav_spul:nth-child(3){
  font-size: 1.6rem;
}
footer .footer_nav_sp{
  display: flex;
  flex-direction: column;
}
footer .footer_nav_spul{
  display: flex;
  padding-left: 0;
}
footer .footer_nav_spul:not(:nth-child(1)) {
  justify-content: space-around;
}
footer .footer_nav_spul:nth-child(1) {
  justify-content: space-between;
}

.sub-footer-menu ul{
  display: flex;
  padding-left: 0;
  
}
.sub-footer-menu ul li{
  margin: 0 0 0 8px;
}
.sub-footer-menu ul li::after{
  content: "/";
  font-size: max(1.6rem, 16px);
  margin-left: 8px;

}
.sub-footer-menu ul li:last-child::after{
  display: none;
}
.sub-footer-menu ul a{
  color: #fff;
  font-size: max(1.6rem, 16px);

}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  footer .footer_grid{grid-template-columns: 1fr;
  }
  footer .footer_nav_pc{display: none;}
  footer .footer_nav_sp{
    width: 100%;
    padding: 3rem 2rem 0;
  }
  footer li{margin-right: 1rem;}
  .footer_title h1{font-size: 15rem;}
  .footer_title{
    flex-direction: column;
    padding: 0 5rem;
  }
  footer .footer_nav_spul:nth-child(3) li:last-child {
    display: flex;
    align-items: center;
  }
  .copyright {
    justify-content: flex-end;
    padding-bottom: 3rem;
  }
  .footer_nav li:nth-child(7){
    font-size: 5rem;
  }
}
@media screen and (min-width: 769px) {
  /*769以上の場合*/
  footer .footer_nav_sp{
    display: none;
  }

}
@media screen and (max-width: 769px) {
  footer .tel p{
    line-height: 2.2;
    font-size: max(2.1rem, 16px);
  }
}
@media screen and (min-width: 500px) {
  /*500以上の場合*/
  .footer_form br{display: none;}
  .footer_nav_sp br{display: none;}
  
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  footer{padding: 4rem 1rem 0;}
  footer .tel{
    width: 100%;
  }
  footer .tel h2 {
    font-size: max(4.8rem, 35px);
    line-height: 2;
    padding: 1rem 0;
  }
  .footer_form{padding-bottom: 1rem;display: flex; width: 100%;justify-content: space-between; padding-bottom: 10px;}
  .footer_form h3{font-size: max(2.8rem, 22px);width: fit-content;}
  .footer_form .button{
    width: 60px;
    height: 30px;
  }
  .footer_form .button:after{
    right: 15px;
  }
  footer .footer_grid {
    padding-bottom: 0;
  }
  .footer_title {padding: 0;}
  .footer_title h1 {font-size: 32rem;text-align: center;margin-top: 15px;} 
  .copyright {justify-content: center;}
  footer .footer_nav_sp .footer_nav_spul:not(:nth-child(3)) {
    font-size: 1.6rem;
}
.sub-footer-menu ul{
  justify-content: center;
  margin-bottom: 20px;
}
}

/*=======================
      トップへ戻るボタン
=========================*/
.page-top {
  position: fixed;
  right: 45px;
  bottom: 15px;
  width: 64px;
  height: 64px;
  transition: .6s;
  opacity: 0;/* デフォルトで表示を消す */
  z-index: 200;
}
.top-link {
  display: inline-block;
  padding-top: 40px;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid 1px #80d0f4;
  background-color: rgba(255, 255, 255, .5);
  transition: .6s;
}
.top-link::before {
  animation: scroll_top 2.5s infinite;/* アニメーション名、かかる時間、アニメーション回数(infiniteは無限) */
  border: solid #3e3a39;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 15px;
  right: 0;
  left: 0px;
  transform: rotate(-45deg);/* 回転(ひし形) */
  width: 20px;
  height: 20px;
}
@keyframes scroll_top {
  80% {
    transform: rotate(-45deg) translate(0, 0);
  }
  0% {
    transform: rotate(-45deg) translate(-15px, 15px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}


.page-top:hover .top-link{
    box-shadow: 0 0 20px #80d0f4;
}

.color_change{
  background-color: rgba(255,255,255,0.80);
}
@media screen and (max-width: 768px) {
  /*768以下の場合*/
  .page-top{right: 10px;}
}
@media screen and (max-width: 499px) {
  /*499以下の場合*/
  
}

/*=======================
      404ページ
=========================*/
.title404{
  padding-top: 10rem;
  margin-bottom: 5rem;
}
.title404 span{display: inline-block;}
@media screen and (max-width: 499px) {
  /*499以上の場合*/
  .title404 h2{font-size: 5rem;}
  .title404 h3{font-size: 3rem;}
  .title404 p{font-size: 1.6rem;}
}
