@charset "utf-8";

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
  display: block;
}

/* !Reseting
---------------------------------------------------------- */

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td {
  margin: 0;
  padding: 0;
}
input,
textarea {
  margin: 0;
  font-size: 100%;
}
label {
  cursor: pointer;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
img {
  vertical-align: top;
  max-width: 100%;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q:after,
q:before {
  content: "";
}
a,
input,
select,
textarea,
button {
  outline: none;
}
abbr,
acronym {
  border: 0;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
  display: block;
  min-height: 1%;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
* html .clearfix {
  height: 1%;
  /*\*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}

/* !Inline Align ------------------------------------------------------------ */
.taL {
  text-align: left !important;
}
.taC {
  text-align: center !important;
}
.taR {
  text-align: right !important;
}

/*common*/
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op img {
  transition: all 0.5s !important;
  -moz-transition: all 0.5s !important; /* Firefox */
  -webkit-transition: all 0.5s !important; /* Chrome&Safari */
}
.op:hover img {
  opacity: 0.7;
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
}

/* !Layout
---------------------------------------------------------- */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
body {
  color: #222;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333vw;
  }
}
@media screen and (max-width: 840px) {
  html {
    font-size: 62.5%;
  }

  body {
    font-size: 1.4rem;
  }
}

/*** スマホ 320px ~ 767px***/
@media screen and (min-width: 841px) {
  .st {
    display: none;
  }
}
@media screen and (max-width: 840px) {
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

/* !thunders_lp_wrapper
---------------------------------------------------------- */
#thunders_lp_wrapper {
  position: relative;
  z-index: 2;
  padding-top: 6.4rem;
  width: 100%;
  min-height: 100vh;
}
#thunders_lp_wrapper:before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../image/bg_body.jpg") no-repeat center;
  background-size: cover;
}

/* !header
---------------------------------------------------------- */
#thunders_lp_header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 0 5rem;
  width: 100%;
  background: #12070b;
  color: #fff;
}
.thunders_lp_headlogo {
  display: flex;
  align-items: center;
  height: 6.4rem;
}
.thunders_lp_headlogo img {
  height: 4.7rem;
}
#thunders_lp_header .cv {
  position: fixed;
  right: 0;
  bottom: 5rem;
  font-size: 1.6rem;
  font-weight: 700;
}
#thunders_lp_header .cv a {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 1.4rem 5.6rem 1.4rem 2.4rem;
  border-radius: 0.4rem;
  font-weight: 700;
}
#thunders_lp_header .cv a:after {
  content: "";
  position: absolute;
  right: 2.4rem;
  top: 0;
  width: 1rem;
  height: 100%;
  background: url("../image/common/icon_arrow_white.svg") no-repeat center;
}
.thunders_lp_btn_menu {
  cursor: pointer;
  display: none;
}
#thunders_lp_navi {
  display: flex;
  padding-right: 14rem;
}
#thunders_lp_navi ul {
  display: flex;
}
#thunders_lp_navi li {
  margin-left: 2.4rem;
}
#thunders_lp_navi li a {
  display: flex;
  align-items: center;
  position: relative;
  height: 6.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}
#thunders_lp_navi li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #faed7a;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
#thunders_lp_navi li a:hover {
  color: #faed7a;
}
#thunders_lp_navi li a:hover:after {
  transform: scale(1, 1);
}
#thunders_lp_navi .links {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
}
#thunders_lp_navi .links a {
  display: flex;
  align-items: center;
  position: relative;
  height: 6.4rem;
  text-align: center;
}
#thunders_lp_navi .links .contact {
  padding: 0 2.4rem;
  font-weight: 700;
}
#thunders_lp_navi .links .contact:before {
  content: "";
  margin-right: 0.6rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../image/common/icon_form.svg") no-repeat center;
  background-size: 100%;
}
#thunders_lp_navi .links .tel {
  font-size: 1rem;
}
#thunders_lp_navi .links .tel .con {
  transform: scale(0.83, 0.83);
}
#thunders_lp_navi .links .tel .num {
  display: inline-block;
  padding-left: 2rem;
  background: url("../image/common/icon_tel_white.svg") no-repeat left 60%;
  background-size: 1.56rem;
  font-size: 2.4rem;
  font-weight: 700;
}

/*** スマホ ***/
@media screen and (max-width: 1400px) {
  .thunders_lp_headlogo img {
    height: 3.2rem;
  }
  #thunders_lp_navi {
    padding-right: 30rem;
  }
  #thunders_lp_navi li {
    margin-left: 1.6rem;
  }
  #thunders_lp_navi .links .contact {
    padding: 0 1.2rem;
    font-size: 1.4rem;
  }
  #thunders_lp_navi .links .contact:before {
    margin-right: 0.4rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  #thunders_lp_navi .links .tel {
    padding: 0;
  }
}
@media screen and (max-width: 1200px) {
  #thunders_lp_navi {
    padding-right: 260px;
  }
  /* #thunders_lp_navi .links {
    display: none;
  } */
}
@media screen and (max-width: 980px) {
  .thunders_lp_btn_menu {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 6.4rem;
    width: 6.4rem;
    background: url("../image/common/icon_menu.svg") no-repeat center #fff;
    background-size: 100%;
  }
  .thunders_lp_btn_menu.active {
    background-image: url("../image/common/icon_menu_close.svg");
    background-size: 3.6rem;
  }
  #thunders_lp_navi {
    display: block;
    position: absolute;
    top: 6.4rem;
    right: 0;
    z-index: 3;
    transform: translateX(100%);
    transition: 0.3s;
    padding: 6rem 6.8rem 7rem;
    width: 100%;
    max-width: 48rem;
    background: #12070b;
  }
  #thunders_lp_navi.open {
    transform: translateX(0%);
  }
  #thunders_lp_navi h2 {
    padding: 1.6rem 0;
    margin-bottom: 2.4rem;
    border-bottom: 1px solid #fff;
    line-height: 1;
    font-size: 2.4rem;
  }
  #thunders_lp_navi ul {
    display: block;
  }
  #thunders_lp_navi li {
    margin-left: 0;
  }
  #thunders_lp_navi li a {
    height: 4.2rem;
    background: url("../image/common/icon_arrow_white.svg") no-repeat right
      center;
    background-size: 0.7rem;
    font-size: 1.4rem;
  }
  #thunders_lp_navi .links {
    display: block;
    position: static;
    margin-top: 3rem;
  }
  #thunders_lp_navi .links .contact {
    display: block;
    padding: 1rem 3rem;
    height: auto;
    border-radius: 0.4rem;
  }
  #thunders_lp_navi .links .contact:before {
    position: absolute;
    right: 2rem;
    top: 0;
    margin-right: 0;
    width: 1rem;
    height: 100%;
    background-image: url(../image/common/icon_arrow_white.svg);
  }
  #thunders_lp_navi .links .tel {
    margin-top: 1.6rem;
    padding-left: 3.2rem;
    height: auto;
    background: url(../image/common/icon_tel_white.svg) no-repeat left center;
    background-size: 2.4rem;
    text-align: left;
    font-size: 1.2rem;
  }
  #thunders_lp_navi .links .tel .con {
    transform: scale(1, 1);
  }
  #thunders_lp_navi .links .tel .num {
    padding-left: 0;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  #thunders_lp_wrapper {
    padding-top: 4.8rem;
  }

  #thunders_lp_header {
    padding: 0 1.6rem;
  }
  .thunders_lp_headlogo {
    height: 4.8rem;
  }

  .thunders_lp_btn_menu {
    height: 4.8rem;
    width: 4.8rem;
  }
  #thunders_lp_navi {
    top: 4.8rem;
    padding: 6rem 6.8rem 7rem;
  }

  #thunders_lp_header .cv {
    bottom: 0;
    padding: 1.6rem;
    width: 100%;
    background: rgba(34, 34, 34, 0.85);
    font-size: 1.2rem;
  }
  #thunders_lp_header .cv a {
    padding: 1.1rem 2.4rem 1.1rem 3rem;
  }
  #thunders_lp_header .cv a:after {
    right: 1.2rem;
    background-size: 0.6rem;
  }
}

/* thunders_lp_footer
-----------------------------------------------------------*/
.thunders_lp_footer {
  padding: 8rem 0;
  background: #12070b;
  text-align: center;
  color: #fff;
}
.thunders_lp_footer .footlinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6.4rem;
}
.thunders_lp_footer .footlinks a {
  padding: 0 3rem;
  font-size: 1.4rem;
}
.thunders_lp_footer .footlinks a:first-child {
  border-left: 1px solid #fff;
}
.thunders_lp_footer .footlinks a:nth-of-type(3) {
  border-right: 1px solid #fff;
}
.thunders_lp_footer .footlinks a + a {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
.thunders_lp_footer .footIn {
  display: flex;
  justify-content: center;
}
.thunders_lp_footer .footlogo {
  margin-right: 10.5rem;
  width: 16.7rem;
}
.thunders_lp_footer .contactInfo {
}
.thunders_lp_footer .contactInfo a {
  display: block;
  text-align: left;
}
.thunders_lp_footer .contactInfo .tel {
  padding-left: 3.2rem;
  background: url(../image/common/icon_tel_white.svg) no-repeat left 60%;
  background-size: 2rem;
  line-height: 1.2;
  font-size: 1rem;
}
.thunders_lp_footer .contactInfo .tel .num {
  font-size: 2rem;
  font-weight: 700;
}
.thunders_lp_footer .contactInfo .email {
  margin-top: 2rem;
  padding-left: 3.2rem;
  background: url("../image/common/icon_mail.svg") no-repeat left center;
  font-weight: 700;
}
.thunders_lp_footer .contactInfo .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
  height: 4rem;
  border-radius: 5rem;
  border: 2px solid #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.thunders_lp_footer .contactInfo .contact:before {
  content: "";
  margin-right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../image/common/icon_form.svg) no-repeat center;
  background-size: 100%;
}
.thunders_lp_footer .contactInfo .contact:hover {
  background: linear-gradient(
    94deg,
    #e3152e 3.86%,
    #e33e1a 50.61%,
    #e56e17 97.08%
  );
  border: 0;
}
.thunders_lp_footer .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
.thunders_lp_footer .sns a {
  margin: 0 1.8rem;
}
.thunders_lp_footer .sns a:hover {
  opacity: 0.7;
}
.thunders_lp_footer .copyright {
  margin-top: 4rem;
  font-size: 1.2rem;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  .thunders_lp_footer .footlinks {
    justify-content: flex-start;
    margin: auto;
    justify-content: flex-start;
    width: 311px;
    margin-bottom: 3.2rem;
  }
  .thunders_lp_footer .footlinks a {
    padding: 0 1.4rem;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
  .thunders_lp_footer .footlinks a:nth-of-type(3) {
    border-right: none;
  }
  .thunders_lp_footer .footlinks a:nth-of-type(odd) {
    border-left: 0;
  }
  .thunders_lp_footer .footIn {
    display: block;
  }
  .thunders_lp_footer .footlogo {
    margin: 0 auto 3.2rem;
    width: 11.3rem;
    text-align: center;
  }
  .thunders_lp_footer .contactInfo {
    margin: auto;
    max-width: 24rem;
  }
  .thunders_lp_footer .contactInfo .tel {
    padding-left: 2.8rem;
    background-size: 1.8rem;
  }
  .thunders_lp_footer .contactInfo .email,
  .thunders_lp_footer .contactInfo .contact {
    margin-top: 1.2rem;
  }
  .thunders_lp_footer .sns a {
    margin: 0 1.4rem;
  }
  .thunders_lp_footer .sns img {
    max-width: 2.6rem;
    height: 2.6rem;
  }
  .thunders_lp_footer .copyright {
    margin-top: 1.6rem;
  }
}

/* !common
---------------------------------------------------------- */
* {
  box-sizing: border-box;
}

a[href^="tel:"] {
  pointer-events: none;
}

.hide {
  display: none;
}

.thunders_lp_mainVisual {
  position: relative;
}
.thunders_lp_mainVisual .kv img {
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100%;
}
.thunders_lp_mainVisual .info {
  position: absolute;
  left: 5rem;
  top: 56%;
  width: 100%;
  max-width: 38vw;
  font-size: 1vw;
}
.thunders_lp_mainVisual .sub {
  line-height: 1.7;
}
.thunders_lp_mainVisual .links {
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
}
.thunders_lp_mainVisual .links .contact {
  display: flex;
  align-items: center;
  margin-right: 1.5vw;
  padding: 0 4.4vw;
  height: 3.5vw;
  border-radius: 5rem;
  color: #fff;
  font-weight: 700;
}
.thunders_lp_mainVisual .links .contact:before {
  content: "";
  margin-right: 0.8rem;
  width: 1.5vw;
  height: 1.5vw;
  background: url(../image/common/icon_form.svg) no-repeat center;
  background-size: 100%;
}
.thunders_lp_mainVisual .links .tel {
  font-size: 0.625vw;
}
.thunders_lp_mainVisual .links .num {
  display: block;
  padding-left: 1.5vw;
  background: url("../image/common/icon_tel_black.svg") no-repeat left center;
  background-size: 1vw;
  font-size: 1.5vw;
  font-weight: 700;
}

.thunders_lp_inner,
.inner2,
.inner3 {
  padding: 0 5rem;
  margin: 0 auto;
  max-width: 130rem;
}
.inner2 {
  max-width: 110rem;
}
.inner3 {
  max-width: 100rem;
}

.thunders_lp_hdl {
  margin-bottom: 2.4rem;
  text-align: center;
}
.thunders_lp_hdl span + span {
  margin-top: 0.6rem;
}
.thunders_lp_hdl .eng {
  display: block;
  font-size: 2.8rem;
}
.thunders_lp_hdl .jap {
  display: inline-block;
  padding: 0 1.6rem 0.4rem;
  background: #222;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
}
.thunders_lp_hdm {
  margin-bottom: 1.8rem;
  line-height: 1.1;
}
.thunders_lp_hdm .jap {
  font-weight: 700;
}
.thunders_lp_hdm .eng {
  display: block;
  color: #faed7a;
  font-size: 4.8rem;
}
.thunders_lp_txt {
  line-height: 1.7;
}

.thunders_lp_black {
  background: rgba(34, 34, 34, 0.9) !important;
  color: #fff;
}
.thunders_lp_black .thunders_lp_hdl .eng {
  color: #f3f3f3;
}
.thunders_lp_black .thunders_lp_hdl .jap {
  background: #f3f3f3;
  color: #222;
}

.btnGrad {
  background: linear-gradient(
    95deg,
    #e3152e,
    #e33e1a 25%,
    #e56e17,
    #e56e17,
    #e33e1a 75%,
    #e3152e
  );
  background-position: 0 50%;
  background-size: 200%;
}
.btnGrad:hover {
  background-position: 100% 50%;
}

.thunders_lp_contact {
  position: relative;
  padding: 6.4rem 0;
  background: rgba(18, 7, 11, 0.9);
  color: #fff;
}
.thunders_lp_contact:before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 100%;
  border-width: 1px 0;
  border-color: #f3f3f3;
  border-style: solid;
}
.thunders_lp_contact .thunders_lp_hdl {
  margin-bottom: 2rem;
}
.thunders_lp_contact .thunders_lp_hdl .jap {
  background: none;
}
.thunders_lp_contact .sub {
  margin-bottom: 4rem;
  text-align: center;
  letter-spacing: 0.032em;
}
.thunders_lp_contact .links {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  align-items: center;
}
.thunders_lp_contact .links .contact {
  width: calc(100% - 25rem);
}
.thunders_lp_contact .links .contact a {
  display: block;
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
}
.thunders_lp_contact .links .tel {
  width: 21rem;
  text-align: center;
  font-size: 1.2rem;
}
.thunders_lp_contact .links .tel .tit {
  display: inline-block;
  padding: 0.2rem 1.2rem;
  border: 1px solid #fff;
  border-radius: 5rem;
  font-size: 1.4rem;
}
.thunders_lp_contact .links .tel a {
  display: block;
  margin-top: 1rem;
}
.thunders_lp_contact .links .tel .num {
  display: inline-block;
  padding-left: 2.4rem;
  background: url(../image/common/icon_tel_white.svg) no-repeat left center;
  background-size: 1.8rem;
  font-size: 2.8rem;
  font-weight: 700;
}

.thunders_lp_anchorArea,
.thunders_lp_projectArea {
  position: relative;
}
.thunders_lp_anchorArea .anchor {
  position: absolute;
  top: -6.4rem;
}

/*** スマホ ***/
@media screen and (max-width: 840px) {
  a[href^="tel:"] {
    pointer-events: inherit;
  }

  .thunders_lp_inner {
    padding: 0 4rem;
  }

  .thunders_lp_mainVisual .info {
    left: 2.8vw;
    top: 55%;
    font-size: 1.6vw;
  }
  .thunders_lp_mainVisual .sub {
    font-size: 1.4vw;
  }
  .thunders_lp_mainVisual .links {
    margin-top: 1vw;
  }
  .thunders_lp_mainVisual .links .tel {
    font-size: 1vw;
  }
  .thunders_lp_mainVisual .links .num {
    padding-left: 1.5vw;
    background-size: 1.1vw;
    font-size: 2vw;
  }
  .thunders_lp_mainVisual .links .contact {
    margin-right: 1.2vw;
    height: 4.88vw;
    min-width: 20vw;
    padding: 0 3.5vw;
  }
  .thunders_lp_mainVisual .links .contact:before {
    width: 1.5625vw;
    height: 1.5625vw;
  }

  .thunders_lp_hdl .eng {
    font-size: 2rem;
  }
  .thunders_lp_hdl .jap {
    font-size: 2.8rem;
  }
  .thunders_lp_hdm {
    margin-bottom: 1.2rem;
  }
  .thunders_lp_hdm .eng {
    font-size: 3.2rem;
  }

  .thunders_lp_contact .links .contact {
    width: calc(100% - 24rem);
  }
}
@media screen and (max-width: 767px) {
  .thunders_lp_inner {
    padding: 0 3.2rem;
  }

  .thunders_lp_mainVisual .info {
    position: absolute;
    left: 0;
    top: 75%;
    padding: 0 2.4rem;
    font-size: 2.5vw;
    max-width: 90vw;
  }
  .thunders_lp_mainVisual .sub {
    font-size: 2.2vw;
  }
  .thunders_lp_mainVisual .links {
    justify-content: space-between;
    margin-top: 2.0833vw;
  }
  .thunders_lp_mainVisual .links .contact {
    margin-right: 0;
    padding: 0 6vw;
    height: 7.51vw;
    min-width: 30vw;
  }
  .thunders_lp_mainVisual .links .contact:before {
    margin-right: 0.4rem;
    width: 2.45vw;
    height: 2.45vw;
  }
  .thunders_lp_mainVisual .links .tel {
    width: 60%;
    font-size: 1.8vw;
  }
  .thunders_lp_mainVisual .links .num {
    padding-left: 2.6rem;
    background-size: 1.8rem;
    font-size: 3.6vw;
  }

  .thunders_lp_hdl .jap {
    padding: 0 1rem 0.4rem;
  }
  .thunders_lp_hdl .jap.small {
    font-size: 2.4rem;
  }
  .thunders_lp_hdm.row {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .thunders_lp_hdm.row .eng {
    margin-right: 0.6rem;
  }
  .thunders_lp_hdm.row .jap {
    margin-bottom: 0.3rem;
  }
  .thunders_lp_hdm .eng {
    font-size: 2.4rem;
  }

  .thunders_lp_contact .links {
    display: block;
  }
  .thunders_lp_contact .links .contact {
    width: auto;
  }
  .thunders_lp_contact .links .contact a {
    margin: 0 auto 3.2rem;
    padding: 1.6rem 3.6rem;
    max-width: 28rem;
  }
  .thunders_lp_contact .links .tel {
    width: auto;
  }
  .thunders_lp_contact .links .tel .tit {
    font-size: 1.2rem;
  }
  .thunders_lp_contact .links .tel a {
    margin-top: 0.6rem;
    font-size: 1rem;
  }

  .thunders_lp_anchorArea .anchor {
    top: -4.8rem;
  }
}
@media screen and (max-width: 425px) {
  .thunders_lp_mainVisual .info {
    padding: 0 0 0 1.9vh;
    font-size: 3.4vw;
    max-width: 87vw;
    z-index: 1;
  }
  .thunders_lp_mainVisual .sub {
    font-size: 14px;
    line-height: 1.58;
  }
  .thunders_lp_mainVisual .links {
    margin-top: 1.5rem;
  }
  .thunders_lp_mainVisual .links .contact {
    padding: 0 6.5vw;
    height: 10vw;
    min-width: 40vw;
    margin-right: 5vw;
  }
  .thunders_lp_mainVisual .links .contact:before {
    margin-right: 0.6rem;
    width: 3.8vw;
    height: 3.8vw;
  }

  .thunders_lp_mainVisual .links .tel {
    width: 100%;
    font-size: 12px;
  }
  .thunders_lp_mainVisual .links .num {
    padding-left: 1.5rem;
    background-size: 1.3rem;
    font-size: 4.4vw;
  }
}

/* !page.css
---------------------------------------------------------- */
.thunders_lp_partnership {
  padding: 8rem 0;
  background: #f3f3f3;
}
.thunders_lp_partnership .display {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.thunders_lp_partnership .display .info {
  width: 44.5rem;
}
.thunders_lp_partnership .display .img {
  width: calc(100% - 52.5rem);
}
.thunders_lp_partnership .display .thunders_lp_hdl {
  margin-bottom: 6.4rem;
  text-align: left;
}

.thunders_lp_message {
  padding: 10rem 0;
  background-image: url("../image/message/bg_message.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.thunders_lp_message .thunders_lp_hdl {
  margin-bottom: 6.4rem;
}
.thunders_lp_message .display {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.thunders_lp_message .display .img {
  width: 32.7rem;
}
.thunders_lp_message .display .info {
  width: calc(100% - 39.4rem);
}
.thunders_lp_message .director {
  display: inline-block;
  padding: 0 1.2rem 1rem;
  margin-bottom: 1.6rem;
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-color: #fff;
}
.thunders_lp_message .director .name {
  margin-left: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.thunders_lp_asset {
  padding: 0 0 35rem;
}
.thunders_lp_asset .sub {
  max-width: 72rem;
  margin: 0 auto 12rem;
}
.thunders_lp_asset .assetItem {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0% 0, 100% 0%, 100% calc(100% - 10rem), 0% 100%);
}
.thunders_lp_asset .assetItem + .assetItem {
  clip-path: polygon(0% 10rem, 100% 0%, 100% calc(100% - 10rem), 0% 100%);
  margin-top: -10rem;
  padding: 12rem 0;
}
.thunders_lp_asset .assetItem:nth-of-type(even) {
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
}
.thunders_lp_asset .assetItem:last-child {
  clip-path: polygon(0% 10rem, 100% 0%, 100% 100%, 0% 100%);
}

.thunders_lp_asset .assetItem .assetItem_text {
  text-align: center;
}
.thunders_lp_asset .step {
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
  line-height: 1;
  font-size: 2.8rem;
  font-weight: 700;
}
.thunders_lp_asset .step:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: skewX(-30deg);
  height: 4rem;
  border-left: 1px solid;
}
.thunders_lp_asset .step .con {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-width: 1px 0;
  border-style: solid;
}
.thunders_lp_asset .step .num {
  margin-right: 0.8rem;
  font-size: 3.6rem;
  font-weight: 400;
}
.thunders_lp_asset .img {
  margin-top: 4.8rem;
  text-align: center;
}
.thunders_lp_asset .wid01 img {
  max-width: 71.8rem;
}
.thunders_lp_asset .wid04 img {
  max-width: 50.8rem;
}
.thunders_lp_asset .imgs {
  display: flex;
}
.thunders_lp_asset .imgs .data {
  margin: 0 5rem;
  width: calc(50% - 10rem);
}
.thunders_lp_asset .note {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

.thunders_lp_merit {
  padding: 10rem 0;
  background-color: #222 !important;
}
.thunders_lp_merit .sub {
  margin-bottom: 6.4rem;
  text-align: center;
}
.thunders_lp_merit .sub .note {
  display: block;
  font-size: 1.2rem;
}
.thunders_lp_merit .meritType dl {
  display: flex;
  align-items: center;
  margin-top: -1px;
  border-width: 1px 0;
  border-style: solid;
}
.thunders_lp_merit .meritType dt {
  padding: 2rem 1rem 2rem 0;
  width: 18.5rem;
  color: #faed7a;
  font-size: 2rem;
  font-weight: 700;
}
.thunders_lp_merit .meritType dd {
  padding: 2rem 0;
  width: calc(100% - 18.5rem);
  line-height: 1.7;
}
.thunders_lp_merit .list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2.4rem;
  margin-top: 6.4rem;
}
.thunders_lp_merit .list li {
  margin: 0 0 3.2rem 2.4rem;
  width: calc(100% / 4 - 2.4rem);
}
.thunders_lp_merit .list .img {
  display: block;
  margin-bottom: 1.2rem;
  border: 1px solid #f3f3f3;
}
.thunders_lp_merit .list .type {
  display: block;
  padding: 0.2rem 1.6rem;
  color: #faed7a;
  font-weight: 700;
}
.thunders_lp_merit .list .img img {
  object-fit: cover;
  width: 100%;
  height: 12.8rem;
}

.thunders_lp_benefits {
  overflow: hidden;
  padding: 10rem 0;
  background: url("../image/bg_line.jpg") no-repeat center;
  background-size: cover;
}
.thunders_lp_benefits .sub {
  margin: 0 auto 6rem;
  max-width: 72rem;
}
.thunders_lp_benefits ul {
  margin-left: -4rem;
}
.thunders_lp_benefits li {
  margin: 0 0 4rem 4rem;
  width: calc(100% / 3 - 4rem);
}
.thunders_lp_detaillist {
  display: flex;
  flex-wrap: wrap;
}
.thunders_lp_detaillist li {
  position: relative;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.thunders_lp_detaillist .company,
.benefitDisplay .company {
  display: flex;
  align-items: center;
  height: 64px;
  background-color: #222;
}
.thunders_lp_detaillist .company .logo,
.benefitDisplay .company .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.6rem;
  background: #e2e2e2;
}
.thunders_lp_detaillist .company .con,
.benefitDisplay .company .con {
  padding: 0.3rem 3.2rem;
  width: calc(100% - 12.6rem);
  line-height: 1.5;
  font-size: 1.3rem;
}
.thunders_lp_detaillist .company .place,
.benefitDisplay .company .place {
  display: block;
  font-size: 1.2rem;
}
.thunders_lp_detaillist .img img {
  object-fit: cover;
  width: 100%;
  height: 21rem;
}
.thunders_lp_detaillist .info {
  padding: 2.4rem 1.6rem 5.2rem;
}
.thunders_lp_detaillist .info .tit {
  font-weight: 700;
}
.thunders_lp_detaillist .more a {
  clip-path: polygon(1rem 0%, 100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 1.2rem 2.4rem 0.9rem;
  background: url("../image/common/icon_arrow_white.svg") no-repeat right 1.3rem
    center;
  background-size: 0.6rem;
  line-height: 1;
  color: #fff;
}
.thunders_lp_detaillist .more a:hover {
  background-position: right 1rem center;
}
.thunders_lp_benefits .info {
  background: #fff;
}
.thunders_lp_benefits .company .con {
  background: #222;
  color: #fff;
}
.thunders_lp_benefits .more a {
  background-color: #12070b;
}

.thunders_lp_keys {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.thunders_lp_keys span {
  padding: 0.5rem 1.2rem;
  margin: 0 0.4rem 0.4rem 0;
  background: #e2e2e2;
  border-radius: 2rem;
  line-height: 1;
  font-size: 1rem;
}

.benefitDisplay {
  max-width: 55rem;
  background: #fff;
}
.benefitDisplay .info {
  height: 30rem;
  overflow-y: scroll;
  padding: 2.4rem 3.2rem;
  line-height: 1.7;
}
.benefitDisplay .info::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
.benefitDisplay .info::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 20px;
}
.benefitDisplay .info::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 20px;
}
.benefitDisplay .info::-webkit-scrollbar-thumb:hover {
  background: #faed7a;
}
.benefitDisplay .company {
  margin-bottom: 0.8rem;
  background: none;
}
.benefitDisplay .company .con {
  font-weight: 700;
}
.benefitDisplay .thunders_lp_keys {
  margin-bottom: 1.6rem;
}
.benefitDisplay .info .tit {
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.navigation {
  padding: 2.4rem 0;
}
.navigation .close {
  text-align: center;
}
.navigation .close a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 15rem;
  height: 4rem;
  background: #faed7a;
  border-radius: 4px;
  font-weight: 700;
}

.thunders_lp_menu {
  overflow: hidden;
  background: #fff;
}
.thunders_lp_menu .upBg {
  padding: 10rem 0 8rem;
  background: #f3f3f3;
}
.thunders_lp_menu .downBg {
  padding: 0 0 10rem;
}
.thunders_lp_menu .sub {
  text-align: center;
}
.thunders_lp_menuNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(-50%);
  padding: 2.4rem;
  margin: -4rem auto 0 auto;
  max-width: 75rem;
  background: #fff;
  border-radius: 0.8rem;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.thunders_lp_menuNav li {
  position: relative;
  padding: 0 1.6rem;
  margin: 1rem 0;
  font-size: 1.4rem;
  font-weight: 700;
}
.thunders_lp_menuNav li + li {
  border-left: 1px solid #a7a7a7;
}
.thunders_lp_menuNav li:nth-of-type(6) {
  border-left: 0;
}
.thunders_lp_menuNav li.slick_on {
  color: #d0a610;
}
.thunders_lp_menuNav li a {
  display: none;
  position: absolute;
}
.menu_contents {
  margin-top: 4rem;
}
.thunders_lp_menuSlider {
  position: relative;
}
.thunders_lp_menuSlider:before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url("../image/menu/img_mask_left.png"),
    url("../image/menu/img_mask_right.png");
  background-position: left center, right center;
  background-repeat: repeat-y;
}
.thunders_lp_menuSlider .slick-list {
  overflow: visible;
}
.thunders_lp_menuSlider .slick-prev {
  left: 50%;
  margin-left: -29rem;
}
.thunders_lp_menuSlider .slick-next {
  right: 50%;
  margin-right: -29rem;
}
.thunders_lp_menuSlider .slick-active .item {
  transform: scale(1, 1);
}
.thunders_lp_menuSlider .item {
  transform: scale(0.8, 0.8);
  margin: 0 1.2rem;
  max-width: 49rem;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}
.thunders_lp_menuSlider .info {
  padding: 2rem 3.2rem;
}
.thunders_lp_menuSlider .tit {
  margin-bottom: 0.8rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.thunders_lp_interview {
  overflow: hidden;
  padding: 10rem 0;
  background: rgba(34, 34, 34, 0.9);
  color: #fff;
}
.thunders_lp_interview .sub {
  text-align: center;
}
.thunders_lp_interview ul {
  margin-left: -3.2rem;
  margin-top: 6.4rem;
}
.thunders_lp_interview li {
  margin: 0 0 4rem 3.2rem;
  width: calc(100% / 3 - 3.2rem);
  border: 1px solid #a7a7a7;
}
.thunders_lp_interview .company .logo {
  width: 9.3rem;
}
.thunders_lp_interview .company .con {
  padding: 0.3rem 1rem;
  width: calc(100% - 9.3rem);
  background: #222;
  color: #fff;
}
.thunders_lp_interview .more a {
  background-color: #faed7a;
  background-image: url("../image/common/icon_arrow_black.svg");
  color: #222;
}

.thunders_lp_flow {
  padding: 10rem 0;
  background: url("../image/bg_line.jpg") no-repeat center;
  background-size: cover;
}
.thunders_lp_flow .thunders_lp_inner {
  max-width: 132.2rem;
}
.thunders_lp_flow .sub {
  text-align: center;
}
.thunders_lp_flow .flowBox {
  display: flex;
  margin-top: 6.4rem;
}
.thunders_lp_flow .flowBox li {
  position: relative;
  margin: 0 -1.2rem;
  width: 100%;
  text-align: center;
}
.thunders_lp_flow .flowBox li .item {
  position: relative;
  z-index: 5;
  padding: 7.2rem 1.6rem 3.2rem;
  background: url("../image/flow/bg_flow01.png") no-repeat center;
  background-size: 100% 100%;
}
.thunders_lp_flow .flowBox li:nth-child(2) .item {
  z-index: 4;
  background-image: url("../image/flow/bg_flow02.png");
}
.thunders_lp_flow .flowBox li:nth-child(3) .item {
  z-index: 3;
  background-image: url("../image/flow/bg_flow03.png");
}
.thunders_lp_flow .flowBox li:nth-child(4) .item {
  z-index: 2;
  background-image: url("../image/flow/bg_flow04.png");
}
.thunders_lp_flow .flowBox li:nth-child(5) .item {
  z-index: 1;
  background-image: url("../image/flow/bg_flow05.png");
}
.thunders_lp_flow .flowBox li .step {
  position: absolute;
  left: 0;
  top: -5.5rem;
  z-index: 9;
  padding: 2rem;
  width: 11rem;
  height: 11rem;
  background: #fff;
  border-radius: 100%;
  line-height: 1;
  font-size: 4.8rem;
}
.thunders_lp_flow .flowBox li .step:before {
  content: "STEP";
  display: block;
  font-size: 2.4rem;
}
.thunders_lp_flow .flowBox li .tit {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2.4rem;
}
.thunders_lp_flow .flowBox li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.6rem;
  height: 9rem;
}

.thunders_lp_team {
  padding: 10rem 0;
}
.thunders_lp_team .thunders_lp_hdl {
  margin-bottom: 6.4rem;
}
.thunders_lp_team .display {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thunders_lp_team .display + .display {
  margin-top: 7rem;
}
.thunders_lp_team .display .img {
  width: 45%;
}
.thunders_lp_team .display .info {
  padding: 0 5.6rem;
  width: 55%;
}
.thunders_lp_team .display .btn {
  margin-top: 2rem;
  text-align: right;
}
.thunders_lp_team .btn a {
  display: inline-block;
  padding: 1.5rem 2.4rem 1.5rem 5.6rem;
  background: no-repeat 2.4rem center;
  background-size: auto 2.2rem;
  border: 2px solid #f3f3f3;
  border-radius: 5rem;
  line-height: 1;
  font-weight: 700;
}
.thunders_lp_team .btn .team01 {
  background-image: url("../image/team/icon_ball_wh.svg");
}
.thunders_lp_team .btn .team02 {
  background-image: url("../image/team/icon_arena_wh.svg");
}
.thunders_lp_team .btn .team03 {
  background-image: url("../image/team/icon_ongaeshi_wh.svg");
}
.thunders_lp_team .btn a:hover {
  background-color: #faed7a;
  border-color: #faed7a;
  color: #222222;
}
.thunders_lp_team .btn .team01:hover {
  background-image: url("../image/team/icon_ball.svg");
}
.thunders_lp_team .btn .team02:hover {
  background-image: url("../image/team/icon_arena.svg");
}
.thunders_lp_team .btn .team03:hover {
  background-image: url("../image/team/icon_ongaeshi.svg");
}
.thunders_lp_team .display.rowReverse {
  flex-direction: row-reverse;
}

.thunders_lp_partner {
  padding: 10rem 0;
  background: #f3f3f3;
}
.thunders_lp_partner .logos {
  margin-bottom: 2.4rem;
}
.thunders_lp_partner .hd01 {
  overflow: hidden;
  margin-bottom: 3.2rem;
  line-height: 1;
}
.thunders_lp_partner .hd01 .jap {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
}
.thunders_lp_partner .hd01 .jap:after {
  content: "";
  position: absolute;
  left: calc(100% + 2.4rem);
  top: 50%;
  width: 1920rem;
  border-top: 1px solid #a7a7a7;
}
.thunders_lp_partner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -1.2rem;
}
.thunders_lp_partner li {
  margin: 0 1.2rem 1.6rem;
}
.thunders_lp_partner .col02 li {
  width: calc(50% - 2.4rem);
}
.thunders_lp_partner .col04 li {
  width: calc(25% - 2.4rem);
}
.thunders_lp_partner .col05 li {
  width: calc(20% - 2.4rem);
}
.thunders_lp_partner li a:hover {
  opacity: 0.7;
}
.thunders_lp_partner .btn {
  margin-top: 3.2rem;
  text-align: center;
}
.thunders_lp_partner .btn a {
  display: inline-block;
  padding: 1.5rem 4rem 1.5rem 8rem;
  background: url("../image/partner/icon_hands.svg") no-repeat 4rem center;
  border: 2px solid #222;
  border-radius: 9rem;
  line-height: 1;
  font-weight: 700;
}
.thunders_lp_partner .btn a:hover {
  background-color: #faed7a;
  border-color: #faed7a;
}

.thunders_lp_partner .sub {
  text-align: center;
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 840px) {
  .thunders_lp_partnership {
    padding: 4rem 0;
  }
  .thunders_lp_partnership .display .info {
    width: calc(50% - 2rem);
  }
  .thunders_lp_partnership .display .img {
    width: calc(50% - 2rem);
  }
  .thunders_lp_partnership .display .thunders_lp_hdl {
    display: inline-block;
    margin-bottom: 3.2rem;
    text-align: center;
  }

  .thunders_lp_message {
    padding: 4rem 0;
  }
  .thunders_lp_message .thunders_lp_hdl {
    margin-bottom: 3.2rem;
  }
  .thunders_lp_message .display {
    align-items: flex-start;
  }
  .thunders_lp_message .display .img {
    width: 25.8rem;
  }
  .thunders_lp_message .display .info {
    width: calc(100% - 29.8rem);
  }
  .thunders_lp_message .director {
    padding: 0 1.2rem 1rem;
    line-height: 1;
  }
  .thunders_lp_message .director .name {
    font-size: 2rem;
  }

  .thunders_lp_contact {
    padding: 4rem 0;
  }
  .thunders_lp_contact .sub {
    margin-bottom: 3.2rem;
  }
  .thunders_lp_contact .links .tel .num {
    font-size: 2.4rem;
  }

  .thunders_lp_asset .assetItem {
    position: relative;
    padding: 4rem 0 12rem;
  }
  .thunders_lp_asset .assetItem + .assetItem {
    padding: 12rem 0;
  }
  .thunders_lp_asset .sub {
    margin-bottom: 2.4rem;
  }
  .thunders_lp_asset .step {
    font-size: 2.4rem;
  }
  .thunders_lp_asset .step .num {
    font-size: 2.8rem;
  }

  .thunders_lp_merit {
    padding: 4rem 0;
  }
  .thunders_lp_merit .sub {
    margin: 0 auto 3.2rem;
    max-width: 51rem;
    text-align: left;
  }
  .thunders_lp_merit .meritType dt {
    padding: 1.6rem;
    width: 16rem;
    font-size: 1.6rem;
  }
  .thunders_lp_merit .meritType dd {
    padding: 1.6rem 0;
    width: calc(100% - 16rem);
    line-height: 1.7;
  }
  .thunders_lp_merit .list {
    margin-top: 3.2rem;
  }
  .thunders_lp_merit .list li {
    margin-bottom: 2.4rem;
  }

  .thunders_lp_benefits {
    padding: 4rem 0;
  }
  .thunders_lp_benefits .sub {
    margin: 0 auto 3.2rem;
    max-width: 46.4rem;
  }

  .thunders_lp_benefits ul {
    margin-left: -3.2rem;
  }
  .thunders_lp_benefits li {
    margin: 0 0 3.2rem 3.2rem;
    width: calc(50% - 3.2rem);
  }
  .thunders_lp_detaillist .company .logo,
  .benefitDisplay .company .logo {
    width: 8.3rem;
    height: 3rem;
  }
  .thunders_lp_detaillist .company .con,
  .benefitDisplay .company .con {
    padding: 0.3rem 1.4rem;
    width: calc(100% - 8.3rem);
    font-size: 1.3rem;
    font-weight: 500;
  }
  .thunders_lp_detaillist .more a {
    padding: 1rem 2.6rem 0.9rem;
  }

  .thunders_lp_menu .upBg {
    padding: 4rem 0 8rem;
  }
  .thunders_lp_menu .downBg {
    padding: 0 0 4rem;
  }
  .thunders_lp_menu .sub {
    margin: 0 auto;
    max-width: 58.6rem;
    text-align: left;
  }
  .thunders_lp_menuSlider:before {
    content: none;
  }
  .thunders_lp_menuSlider .info {
    padding: 2rem 1.6rem 1.6rem;
  }

  .thunders_lp_interview {
    padding: 4rem 0;
  }
  .thunders_lp_interview li {
    width: calc(50% - 3.2rem);
  }

  .thunders_lp_flow {
    padding: 4rem 0;
  }
  .thunders_lp_flow .flowBox {
    margin: 6.4rem -1.6rem 0;
  }
  .thunders_lp_flow .flowBox li {
    margin: 0 -0.8rem;
  }
  .thunders_lp_flow .flowBox li .step {
    top: -3.4rem;
    padding: 1.4rem;
    width: 6.8rem;
    height: 6.8rem;
    font-size: 3rem;
  }
  .thunders_lp_flow .flowBox li .step:before {
    font-size: 1.5rem;
  }
  .thunders_lp_flow .flowBox li .item {
    padding: 5rem 1rem 1.6rem;
  }
  .thunders_lp_flow .flowBox li .tit {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  .thunders_lp_flow .flowBox li .icon {
    margin-top: 1rem;
    height: 6rem;
  }
  .thunders_lp_flow .flowBox li .icon img {
    height: 5.2rem;
  }

  .thunders_lp_team,
  .thunders_lp_partner {
    padding: 4rem 0;
  }
  .thunders_lp_team .thunders_lp_hdl {
    margin-bottom: 3.2rem;
  }
  .thunders_lp_team .display + .display {
    margin-top: 4rem;
  }
  .thunders_lp_team .display .img {
    width: 50%;
  }
  .thunders_lp_team .display .info {
    padding: 0;
    width: calc(50% - 3.2rem);
  }
  .thunders_lp_team .btn a {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .thunders_lp_partnership .display .thunders_lp_hdl {
    display: block;
    margin-bottom: 3.2rem;
    text-align: center;
  }
  .thunders_lp_partnership .display {
    display: block;
  }
  .thunders_lp_partnership .display .info {
    width: auto;
  }
  .thunders_lp_partnership .display .img {
    margin: 4rem -3.2rem 0;
    width: auto;
  }

  .thunders_lp_message .display {
    display: block;
  }
  .thunders_lp_message .display .img {
    margin-bottom: 2.4rem;
    width: auto;
  }
  .thunders_lp_message .display .info {
    width: auto;
  }

  .thunders_lp_asset {
    padding: 0 0 14.6rem;
  }
  .thunders_lp_asset .step {
    font-size: 2rem;
  }
  .thunders_lp_asset .assetItem {
    clip-path: polygon(0% 0, 100% 0%, 100% calc(100% - 2.6rem), 0% 100%);
    padding: 4rem 0 5.6rem;
  }
  .thunders_lp_asset .assetItem + .assetItem {
    clip-path: polygon(0% 2.6rem, 100% 0%, 100% calc(100% - 2.6rem), 0% 100%);
    margin-top: -2.6rem;
    padding: 5.6rem 0;
  }

  .thunders_lp_asset .assetItem .assetItem_text {
    text-align: left;
  }

  .thunders_lp_asset .wid01 img {
    max-width: 100%;
  }
  .thunders_lp_asset .img {
    margin-top: 3.2rem;
  }
  .thunders_lp_asset .imgs {
    display: block;
  }
  .thunders_lp_asset .imgs .data {
    margin: 2.4rem auto;
    width: 22rem;
  }
  .thunders_lp_asset .wid04 img {
    max-width: 16.8rem;
  }

  .thunders_lp_merit .meritType dl {
    display: block;
    padding: 2rem 0;
  }
  .thunders_lp_merit .meritType dt {
    width: auto;
    padding: 0 0 1.2rem;
  }
  .thunders_lp_merit .meritType dd {
    padding: 0;
    width: auto;
  }
  .thunders_lp_merit .list {
    margin-left: -3.6rem;
    margin-right: -1.2rem;
    margin-top: 4rem;
  }
  .thunders_lp_merit .list li {
    margin: 0 0 2.4rem 2.4rem;
    width: calc(50% - 2.4rem);
  }
  .thunders_lp_merit .list .type {
    padding: 0.2rem 0.6rem;
  }
  .thunders_lp_merit .list .img img {
    height: 9rem;
  }

  .thunders_lp_benefits ul {
    margin-left: -4rem;
    margin-right: -0.8rem;
  }
  .thunders_lp_benefits li {
    display: flex;
    margin: 0 0 1.6rem 3.2rem;
    padding: 1.6rem 0;
    width: calc(100% - 3.2rem);
    background: #fff;
  }
  .thunders_lp_benefits li .company {
    display: none;
  }
  .thunders_lp_benefits li .img {
    width: 14rem;
  }
  .thunders_lp_benefits .img img {
    object-fit: cover;
    width: auto;
    height: 8rem;
  }
  .thunders_lp_benefits li .info {
    padding: 0 1.6rem 1.6rem 1.6rem;
    width: calc(100% - 14rem);
  }
  .thunders_lp_benefits li .thunders_lp_keys {
    display: none;
  }
  .thunders_lp_detaillist .info .tit {
    font-size: 1.2rem;
  }
  .thunders_lp_detaillist .more a {
    padding: 1rem 2.8rem 0.9rem;
  }

  .benefitDisplay {
    max-width: 34rem;
  }

  .benefitDisplay .img img {
    object-fit: cover;
    height: 100%;
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .benefitDisplay .info {
    padding: 2.4rem;
    height: 32rem;
  }
  .fancybox-navigation .fancybox-button {
    margin-top: 22rem;
    width: 3.2rem;
    height: 3.2rem;
  }
  .fancybox-navigation .fancybox-button--arrow_left {
    margin-left: -12rem;
  }
  .fancybox-navigation .fancybox-button--arrow_right {
    margin-right: -12rem;
  }
  .navigation .prevnext {
    position: relative;
  }
  .navigation .prevnext a {
    display: block;
    position: absolute;
    height: 3.2rem;
    width: 3.2rem;
    background-size: 100%;
  }
  .navigation .left {
    left: 4.8rem;
    background-image: url(../image/common/icon_modal_back.svg);
  }
  .navigation .right {
    right: 4.8rem;
    background-image: url(../image/common/icon_modal_next.svg);
  }
  .navigation .left.disabled {
    background-image: url("../image/common/icon_modal_back_gray.svg");
  }
  .navigation .right.disabled {
    background-image: url("../image/common/icon_modal_next_gray.svg");
  }
  .navigation .close a {
    width: 11.1rem;
    height: 3.2rem;
  }

  .thunders_lp_menu .upBg {
    padding: 4rem 0 4rem;
  }
  .thunders_lp_menuNav {
    padding: 1.6rem 0;
    margin: 0 3.2rem;
  }
  .thunders_lp_menuNav li {
    margin: 0.6rem 0;
    padding: 0 1.2rem;
    width: 46%;
  }
  .thunders_lp_menuNav li:nth-of-type(even) {
    width: 54%;
  }
  .thunders_lp_menuNav li:nth-of-type(odd) {
    border-left: 0;
  }
  .thunders_lp_menuNav li:nth-of-type(6) {
    border-left: 1px solid #a7a7a7;
  }
  .thunders_lp_menuSlider {
    padding-bottom: 3.6rem;
  }
  .slick-prev,
  .slick-next {
    width: 1.2rem;
    height: 2.2rem;
  }
  .thunders_lp_menuSlider .slick-prev {
    left: 1rem;
    margin-left: 0;
  }
  .thunders_lp_menuSlider .slick-next {
    right: 1rem;
    margin-right: 0;
  }
  .thunders_lp_menuSlider .item {
    transform: scale(0.8, 0.8);
    margin: 0 1.2rem;
    max-width: 31.1rem;
  }
  .thunders_lp_menuSlider .tit {
    font-size: 1.6rem;
  }

  .thunders_lp_interview .sub {
    text-align: left;
  }
  .thunders_lp_interview ul {
    display: block;
    margin: 5.6rem -3.2rem 0;
    padding-bottom: 3.6rem;
  }
  .thunders_lp_interview li {
    margin: 0;
    width: auto;
  }
  .thunders_lp_interview .slick-slide {
    padding: 0 3.2rem;
  }
  .thunders_lp_interview .slick-list {
    overflow: visible;
  }
  .thunders_lp_interview .slick-prev {
    left: 1rem;
  }
  .thunders_lp_interview .slick-next {
    right: 1rem;
  }
  .thunders_lp_interview .slick-dots {
    padding-bottom: 0;
    margin: 0;
  }
  .thunders_lp_interview .slick-dots li {
    margin: 0 4px;
    width: 8px;
    border: 0;
  }

  .thunders_lp_flow {
    padding: 4rem 0 6.4rem;
  }
  .thunders_lp_flow .flowBox {
    display: block;
    margin: 4rem 0 0;
  }
  .thunders_lp_flow .flowBox li {
    margin: 0 0 -2.8rem;
    text-align: left;
  }
  .thunders_lp_flow .flowBox li .step {
    top: 0;
    padding: 1.4rem;
    width: 6.8rem;
    height: 6.8rem;
    text-align: center;
    font-size: 3rem;
  }
  .thunders_lp_flow .flowBox li .item {
    display: flex;
    align-items: center;
    padding: 3.8rem 1rem 3rem 8.5rem;
    background-image: url(../image/flow/bg_flow01_sp.png);
  }
  .thunders_lp_flow .flowBox li:nth-child(1) .item {
    padding: 2.4rem 1rem 3rem 8.5rem;
  }
  .thunders_lp_flow .flowBox li:nth-child(2) .item {
    background-image: url(../image/flow/bg_flow02_sp.png);
  }
  .thunders_lp_flow .flowBox li:nth-child(3) .item {
    background-image: url(../image/flow/bg_flow03_sp.png);
  }
  .thunders_lp_flow .flowBox li:nth-child(4) .item {
    background-image: url(../image/flow/bg_flow04_sp.png);
  }
  .thunders_lp_flow .flowBox li:nth-child(5) .item {
    background-image: url(../image/flow/bg_flow05_sp.png);
  }
  .thunders_lp_flow .flowBox li .tit {
    margin-bottom: 0.6rem;
  }
  .thunders_lp_flow .flowBox li .info {
    font-size: 1.2rem;
  }
  .thunders_lp_flow .flowBox li .icon {
    margin: 0 0 0 1.6rem;
    height: 6rem;
  }
  .thunders_lp_flow .flowBox li .icon img {
    height: 4.8rem;
  }

  .thunders_lp_team .display {
    display: block;
  }
  .thunders_lp_team .display .img {
    margin-bottom: 2.4rem;
    width: auto;
  }
  .thunders_lp_team .display .info {
    width: auto;
  }

  .thunders_lp_partner .hd01 {
    margin-bottom: 1.6rem;
  }
  .thunders_lp_partner .hd01 .jap {
    font-size: 1.4rem;
  }
  .thunders_lp_partner .hd01 .jap:after {
    left: calc(100% + 1.2rem);
  }
  .thunders_lp_partner ul {
    justify-content: flex-start;
    margin: 0 -0.8rem;
  }
  .thunders_lp_partner li {
    margin: 0 0.8rem 1.6rem;
  }
  .thunders_lp_partner .col02 li {
    width: calc(100% - 1.6rem);
  }
  .thunders_lp_partner .col04 li,
  .thunders_lp_partner .col05 li {
    width: calc(50% - 1.6rem);
  }
  .thunders_lp_partner .btn {
    margin-top: 2.4rem;
  }
  .thunders_lp_partner .btn a {
    padding: 1.2rem 4rem 1.2rem 8rem;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .assetItem .inner2 {
    margin-bottom: 4rem;
  }

  .thunders_lp_partner .sub {
    text-align: start;
  }
}
@media screen and (max-width: 425px) {
  .thunders_lp_partnership {
    padding: 8rem 0;
  }
  .assetItem .inner2 {
    margin-bottom: 3rem;
  }
}

/* !tab
---------------------------------------------------------- */
.tab-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.tab-container span {
  width: 0.45px;
  height: 80%;
  margin: auto;
  display: block;
  background: #e9e9e9;
}

.tab-nav {
  display: flex;
  align-items: end;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.tab-button {
  background: none;
  border: none;
  cursor: pointer;
  background-color: #fff;
  color: #222;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  position: relative;
  transition: all 0.3s ease;
  width: 150px;
  height: 78px;
  max-width: 100%;
}

.tab-button:hover {
  color: #333;
  background-color: #e9e9e9;
}

.tab-button.top.active {
  background-color: #ed028c;
  color: white;
  height: 94px;
}
.tab-button.platinum.active {
  background-color: #6c6d70;
  color: white;
  height: 94px;
}
.tab-button.gold.active {
  background-color: #feca0a;
  color: black;
  height: 94px;
}
.tab-button.silver.active {
  background-color: #05a5e0;
  color: white;
  height: 94px;
}
.tab-button.bronze.active {
  background-color: #a97b50;
  color: white;
  height: 94px;
}

.tab-bg {
  background: #f3f3f3;
}

.tab-content {
  padding: 64px 40px;
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.tab-content.top.active {
  border: 8px solid #ed028c;
}

.tab-content.platinum.active {
  border: 8px solid #6c6d70;
}

.tab-content.gold.active {
  border: 8px solid #feca0a;
}

.tab-content.silver.active {
  border: 8px solid #05a5e0;
}

.tab-content.bronze.active {
  border: 8px solid #a97b50;
}

.tab-content .top-text {
  color: #222;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 170%;
  margin: 0 auto 48px;
  width: 524px;
  max-width: 100%;
}

.tab-content .merit-top-container {
  width: 1000px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 56px;
  padding: 48px 0;
}

.tab-content.top .merit-top-container {
  border: 6px solid #f5e2ed;
  background: #fff3fa;
}

.tab-content.platinum .merit-top-container {
  border: 6px solid #ececec;
  background: #ffffff;
}

.tab-content.gold .merit-top-container {
  border: 6px solid #f8edc3;
  background: #fffbeb;
}

.tab-content.silver .merit-top-container {
  border: 6px solid #d9eef5;
  background: #ebfaff;
}

.tab-content.bronze .merit-top-container {
  border: 6px solid #f1e1d2;
  background: #fff5ec;
}

.merit-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 440px;
  max-width: 100%;
  margin: 0 auto;
}
.merit-top .text-box {
  padding: 0 16px;
}
.merit-top .text-box .title {
  color: white;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 8px;
  padding: 8px 16px;
  width: fit-content;
}

.tab-content.top .merit-top .text-box .title {
  background-color: #ed028c;
}

.tab-content.platinum .merit-top .text-box .title {
  background-color: #6c6d70;
}

.tab-content.gold .merit-top .text-box .title {
  background-color: #feca0a;
}

.tab-content.silver .merit-top .text-box .title {
  background-color: #05a5e0;
}

.tab-content.bronze .merit-top .text-box .title {
  background-color: #a97b50;
}

.merit-top .text-box .dec {
  color: #222;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 0;
}

.merit-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.merit-list li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.merit-list .text-box {
  padding: 0 8px;
}
.merit-list .text-box .title {
  color: #12070b;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 700;
  line-height: 170%;
  margin-bottom: 4px;
}
.merit-list .text-box .dec {
  color: #12070b;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 0;
}

@media screen and (max-width: 1020px) {
  .merit-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .tab-content {
    padding: 40px 0;
  }
  .tab-content .top-text {
    margin-bottom: 40px;
    padding: 0 16px;
    text-align: start;
  }
  .tab-button {
    font-size: 16px;
    width: 96px;
    height: 60px;
  }
  .tab-button.top.active,
  .tab-button.platinum.active,
  .tab-button.gold.active,
  .tab-button.silver.active,
  .tab-button.bronze.active {
    height: 72px;
  }
  .tab-content .merit-top-container {
    flex-direction: column;
    gap: 24px;
    padding: 16px 0;
    margin-bottom: 40px;
  }
  .merit-top {
    gap: 8px;
    margin: 0 12px;
  }
  .merit-top .text-box {
    padding: 0 8px;
  }
  .merit-top .text-box .title {
    margin-bottom: 12px;
  }
  .merit-list {
    padding: 0 16px;
    gap: 16px;
  }
}

@media screen and (max-width: 512px) {
  .tab-button {
    font-size: 12px;
    width: 68px;
    height: 35px;
  }
  .tab-button.top.active,
  .tab-button.platinum.active,
  .tab-button.gold.active,
  .tab-button.silver.active,
  .tab-button.bronze.active {
    height: 43px;
  }
  .tab-content.top.active {
    border: 4px solid #ed028c;
  }
  .tab-content.platinum.active {
    border: 4px solid #6c6d70;
  }
  .tab-content.gold.active {
    border: 4px solid #feca0a;
  }
  .tab-content.silver.active {
    border: 4px solid #05a5e0;
  }
  .tab-content.bronze.active {
    border: 4px solid #a97b50;
  }
  .merit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
  }
  .merit-list li {
    gap: 8px;
  }
  .merit-list .text-box .title {
    margin-bottom: 0;
  }

  .tab-content.top .merit-top-container {
    border: 2px solid #f5e2ed;
  }

  .tab-content.platinum .merit-top-container {
    border: 2px solid #ececec;
  }

  .tab-content.gold .merit-top-container {
    border: 2px solid #f8edc3;
  }

  .tab-content.silver .merit-top-container {
    border: 2px solid #d9eef5;
  }

  .tab-content.bronze .merit-top-container {
    border: 2px solid #f1e1d2;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
