@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --spLine: 640;

  --C-black: #000;
  --C-white: #fff;
  --C-gray: #f2f2f2;
  --C-blue: #1f2969;
  --C-yellow: #cfb10d;
}

/* ===============================
	site utility
 =============================== */
body {background: none !important;}
body *{ font-feature-settings: "palt" 1; -webkit-text-size-adjust: 100%; font-family: "Noto Sans JP", sans-serif;}
img { max-width: 100%; height: auto; vertical-align: middle;}
a { transition: 0.4s;}
a:hover { transition: 0.4s; opacity: 0.7;}
a:where(:not(.wp-element-button)) { text-decoration: none !important;}

/* 最大width幅 */
.w1000,.w1200,.w1300,.w1400,
.wm1200,.w1240,.wm1400 {max-width: 100%;}
.w1000 {width: calc(1000px + (30px * 2));}
.w1200 {width: calc(1200px + (30px * 2));}
.w1240 {width: calc(1240px + (30px * 2));}
.w1300 {width: calc(1300px + (30px * 2));}
.w1400 {width: calc(1400px + (30px * 2));}

.wm1200 {width: 1200px;}
.wm1400 {width: 1400px;}

/* ボタン */
.btn {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
  border-width: 2px;
  border-style: solid;
  border-radius: 1000px;
  position: relative;
  width: 234px;
  height: 46px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 18px;
}
.btn:hover {
  opacity: 1;
}
.btn.white {
  color: var(--C-blue);
  background: var(--C-white);
  border-color: var(--C-white);
}
.btn:hover.white {
  color: var(--C-white);
  background: var(--C-blue);
}
.btn::after {
  content: '';
  width: 18px;
  height: 18px;
  background: url(../img/common/btn_icon_kira.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 3.75vw;
    width: 53.75vw;
    height: 10.3125vw;
    padding: 0 4.375vw;
  }
  .btn::after {
    width: 4.21875vw;
    height: 4.21875vw;
    right: 2.8125vw;
  }  
}

/* pankuzu */
.pankuzu * {
  font-size: 12px;
  color: var(--C-blue);
}
.pankuzu ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.pankuzu li:not(:last-child)::after {
  content: '>';
  margin-left: 1ch;
  margin-right: 1ch;
}
@media screen and (max-width: 640px) {
  .pankuzu {
    display: none;
  }
}

/* mv */
.common_mv {
  overflow: hidden;
}
.common_mv .common_title {
  margin-top: 30px;
}
.common_mv .common_title + span {
  margin-bottom: 44px;
}
.common_mv .common_title + span::after {
  margin-left: 0;
}
.common_mv .img_bg {
  margin-right: -200px;
}
.common_mv .img_bg .wrap {
  text-align: right;
}
@media screen and (max-width: 1400px) {
  .common_mv .img_bg {
    margin-left: 30px;      
    margin-right: -14.28571428571429%;
  }
}
@media screen and (max-width: 640px) {
  .common_mv .img_bg {
    margin-left: 10.9375vw;
    margin-right: 0;
  }
  .common_mv .common_title + span {
    margin-bottom: 5.3125vw;
  }  
}

/* mv_3 */
.common_mv.mv_3 {
  background: center no-repeat;
  background-size: cover;
  height: 750px;
  overflow: visible;
  overflow-x: clip;
  position: relative;  
}
.common_mv.mv_3 * {
  color: var(--C-white);
}
.common_mv.mv_3 .pankuzu + .wrap {
  display: flex;
  align-items: center;
  height: inherit;
}
.common_mv.mv_3 .common_title {
  font-size: 100px;
  line-height: 1.98;
  position: relative;
  margin-top: -80px;
}
.common_mv.mv_3 .common_title + span {
  font-size: 32px;
  position: absolute;
  margin-top: -100px;  
  margin-bottom: 0;
}
.common_mv.mv_3 .common_title + span::after {
  background-image: url(../img/common/title_kira_2.svg);
}
.common_mv.mv_3 .img_mv {
  display: block;
  position: absolute;
  animation-direction: normal;  
}
.common_mv.mv_3 .img_mv.mv_car_right {
  animation: slidein-right 6s 1 ease;
  transform: translateX(100vw);  
}
@keyframes slidein-right {
  0% {
    transform: translateX(-243px);
  }
  100% {
    transform: translateX(100vw);  
  }
}
.common_mv.mv_3 .img_mv.mv_car_left {
  animation: slidein-left 6s 1 ease;
  transform: translateX(-100vw);
}
@keyframes slidein-left {
  0% {
    transform: translateX(100vw);  
  }
  100% {
    transform: translateX(-384px);
  }
}
@media screen and (max-width: 1020px) {
  .common_mv.mv_3 .common_title {
    font-size: 9.4vw;
  }
}
@media screen and (max-width: 750px) {
  .common_mv.mv_3 .common_title {
    font-size: 9.2vw;
  }
  .common_mv.mv_3 .common_title + span {
    font-size: 3.4vw;
    padding-top: 4vw;    
  }  
}

/* common_title */
.common_title,
.common_title p {
  font-family: "Lato", sans-serif;    
  font-size: 82px;
  font-weight: 900;
  letter-spacing: 0.1em !important;
  line-height: 1;  
  color: var(--C-blue);
}
.common_title p {
  display: inline-block;
}
.common_title + span {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--C-blue);
  position: relative;
  display: block;
  width: fit-content;
  padding-top: 36px;
}
.common_title + span::after {
  content: '';
  width: 78px;
  height: 18px;
  background: url(../img/common/title_kira.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .common_title,
  .common_title p {  
    font-size: 12.8125vw;
  }
  .common_title + span {
    font-size: 3.90625vw;
    padding-top: 3.4375vw;
  }
  .common_title + span::after {
    width: 12.1875vw;
    height: 2.8125vw;
    top: -0.2vw;
  }
}

/* ===============================
	voice
 =============================== */
.voice_list {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px 48px;
  margin-top: 280px;
  margin-bottom: 76px;
}
.voice_list li {
  width: calc((100% - (48px * 2)) / 3);
  position: relative;
}
.voice_list li:nth-child(3n - 2) {
  margin-top: -110px;
}
.voice_list li:nth-child(3n) {
  margin-top: 110px;  
}
.voice_list li:hover a {
  opacity: 1;
}
.voice_list .voice_txt {
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  z-index: +1;  
  margin: auto;    
}
.voice_list li:nth-child(1) .voice_txt {
  top: -46px;
}
.voice_list li:nth-child(2) .voice_txt {
  top: -30px;
}
.voice_list li:nth-child(3) .voice_txt {
  top: -40px;
}
.voice_list .voice_img {
  position: relative;
}
.voice_list .voice_img img {
  transition: 0.4s;
}
.voice_list li:hover .voice_img img {
  opacity: .7;
}
.voice_list .voice_img .voice_kira {
  background: url(../img/voice/kira.svg) center no-repeat;
  background-size: contain;  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 156px;
  height: 156px;  
  position: absolute;
  bottom: -78px;
  right: -40px;
  z-index: +1;
}
.voice_list .voice_img .voice_kira::after {
  content: '';
  width: 156px;
  height: 156px;
  background: url(../img/voice/kira.svg) center no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;  
}
.voice_list .voice_img .voice_kira span {
  font-size: 15px;
  font-weight: 700;
  color: var(--C-blue);
  padding-top: 10px;  
}
.kira_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../img/voice/kira.svg'); mask-image: url('../img/voice/kira.svg');
  -webkit-mask-size: 100% auto; mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: left top; mask-position: left top;
}
.kira_hikari {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 60% 0 0;
  background-image:  linear-gradient(55deg,rgba(255, 255, 255, 0) 40%,rgb(255, 255, 255, .8) 50%,rgb(255, 255, 255, .8) 51%, rgba(255, 255, 255, 0) 60%);
  transform: skewX(30deg);
  animation-duration: .4s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
.voice_list li :hover .kira_hikari {
  animation-name: demo_kirari;
}
@keyframes demo_kirari{
  0% {
    top: -100%;
    right: -100%;
  }
  100%{
    top: 100%;
    right: 100%;
  }
}
.voice_list p {
  font-size: 18px;
  color: var(--C-blue);
  text-align: left;
  margin-top: 4px;
}
@media screen and (max-width: 900px) {
  .voice_list {
    gap: 120px;
    margin-top: 140px;
  }  
  .voice_list li {
    width: 400px;
  }
  .voice_list li:nth-child(3n - 2) {
    margin-top: 0;
  }  
  .voice_list li:nth-child(3n) {
    margin-top: 0;
  }    
}
@media screen and (max-width: 640px) {
  .voice_list {
    gap: 30vw;
    margin-top: 24.6875vw;
    margin-bottom: 12.5vw;
  }
  .voice_list li {
    width: 100%;
  }
  .voice_list li:nth-child(1) .voice_txt {
    top: -11.25vw;
  }
  .voice_list li:nth-child(2) .voice_txt {
    top: -7.5vw;
  }
  .voice_list li:nth-child(3) .voice_txt {
    top: -9.6875vw;
  }
  .voice_list li:nth-child(1) .voice_txt img {
    width: 63.90625vw;
  }
  .voice_list li:nth-child(2) .voice_txt img {
    width: 59.6875vw;
  }
  .voice_list li:nth-child(3) .voice_txt img {
    width: 53.59375vw;
  }  
  .voice_list .voice_img .voice_kira {
    width: 31.71875vw;
    height: 31.71875vw;  
    bottom: -13.75vw;
    right: -8.75vw;
  }
  .voice_list .voice_img .voice_kira::after {
    width: 31.71875vw;
    height: 31.71875vw;  
  }
  .voice_list .voice_img .voice_kira span {
    font-size: 3.125vw;
    padding-top: 3vw;
  }
  .voice_list p {
    font-size: 3.90625vw;
    margin-top: .9375vw;
  }
}