@charset "UTF-8";
:root {
  --main: #FF7C00;
  --sub: #FF3D00;
  --gray: #262626;
}

html {
  font-size: 16px;
  color-scheme: light;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: #000;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

input,
textarea {
  color: #000; /* 明示的に指定 */
  background-color: #fff; /* これもセットで */
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: contain;
  object-fit: contain;
}

p {
  line-height: 1.6;
}

em {
  font-style: normal;
}

ul, ol {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

dl {
  margin: 0;
}

dl > dd {
  margin-left: 0;
}

.wrap {
  padding-top: 94px;
}

.inner {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding: 2rem 1rem;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

h1, h2, h3 {
  font-weight: bold;
}

button, a {
  cursor: pointer !important;
  transition: 0.3s;
}

picture {
  display: block;
}

.underline {
  text-decoration: underline;
}

.anime {
  opacity: 0;
  transition-duration: 0.5s;
}
.anime.slide_up {
  transform: translateY(2rem);
}
.anime.slide_left {
  transform: translateX(-4rem);
}
.anime.slide_right {
  transform: translateX(4rem);
}
.anime.active {
  opacity: 1;
  transform: translate(0) !important;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8705882353);
}
.modal h2 {
  font-size: 1.3rem;
  padding-bottom: 1rem;
}
.modal section {
  margin: 0 auto;
  max-width: 720px;
  position: relative;
  padding: 0 1rem;
}
.modal .inner {
  padding: 2rem 1rem;
  background: #fff;
  height: 82vh;
  overflow-y: scroll;
}
.modal span.closeBtn {
  display: block;
  text-align: center;
  margin: 1rem 0;
  color: #fff;
  cursor: pointer;
}
.modal span.closeBtn::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/closeBtn.webp);
  background-size: contain;
  margin-right: 0.5rem;
  transform: translateY(5px);
  cursor: pointer;
}

header {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 94px;
}
header .header_inner {
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header_inner figure {
  width: 13rem;
}
header .header_inner aside dl {
  display: none;
}
header .header_inner ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}
header .header_inner ul a {
  position: relative;
  display: block;
  height: 1rem;
  min-width: 6rem;
  text-align: center;
}
header .header_inner ul a span {
  transition-duration: 0.4s;
}
header .header_inner ul a span:nth-of-type(1) {
  font-family: "Robot", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
header .header_inner ul a span:nth-of-type(2) {
  position: absolute;
  text-decoration: underline;
  top: 0;
  left: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
  transform: translateY(1rem);
}
header .header_inner ul a:hover span:nth-of-type(1) {
  opacity: 0;
  transform: translateY(1rem);
}
header .header_inner ul a:hover span:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
}
header .header_inner dl {
  display: flex;
  gap: 1rem;
  color: #fff;
  align-items: center;
}
header .header_inner dl a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
header .header_inner dl dt {
  text-align: center;
  align-content: center;
  border-radius: 10rem;
  background: var(--main);
  width: 10rem;
  font-size: 0.9rem;
  height: 3.6rem;
}
header .header_inner dl dt:hover {
  background: #262626;
  color: var(--main);
}
header .header_inner dl dd {
  text-align: center;
  align-content: center;
  border-radius: 10rem;
  background: var(--sub);
  width: 10rem;
  font-size: 0.9rem;
  height: 3.6rem;
}
header .header_inner dl dd:hover {
  background: #262626;
  color: var(--sub);
}

#toTop {
  width: 2.8rem;
  right: 2rem;
  bottom: 1rem;
  position: fixed;
  opacity: 0;
  z-index: 5;
  transition-duration: 0.3s;
  cursor: pointer;
}
#toTop.active {
  opacity: 1;
}

.footer_contact a {
  display: block;
  max-width: 800px;
  padding: 12rem 4rem;
  position: relative;
}
.footer_contact h3 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}
.footer_contact p strong {
  margin-bottom: 1rem;
  display: block;
}
.footer_contact ul {
  display: flex;
  justify-content: center;
}
.footer_contact ul li {
  width: 50%;
  align-content: center;
  position: relative;
}
.footer_contact ul li::before {
  content: "";
  background-image: url(../img/contact_next_wh.webp);
  background-position: center;
  background-size: 3.5rem;
  background-repeat: no-repeat;
  position: absolute;
  right: 5.5rem;
  top: 0;
  width: 3.5rem;
  height: 100%;
  transition-duration: 0.3s;
}
.footer_contact ul li:nth-child(1) {
  background: var(--main);
}
.footer_contact ul li:nth-child(1):hover {
  background: #262626;
  color: var(--main);
}
.footer_contact ul li:nth-child(1):hover::before {
  transform: translateX(1rem);
  background-image: url(../img/contact_next_orange.webp);
}
.footer_contact ul li:nth-child(1) a {
  margin-left: auto;
}
.footer_contact ul li:nth-child(2) {
  background: red;
  margin-right: auto;
}
.footer_contact ul li:nth-child(2):hover {
  background: #262626;
  color: red;
}
.footer_contact ul li:nth-child(2):hover::before {
  transform: translateX(1rem);
  background-image: url(../img/contact_next_red.webp);
}

footer {
  padding: 4rem 0rem 3rem;
}
footer .inner {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .footer_logo {
  width: 28rem;
  margin-bottom: 4rem;
}
footer p {
  text-align: left;
  font-size: 0.9rem;
}
footer p strong {
  margin-top: 2rem;
  display: block;
}
footer .footer_cnt_a {
  width: 50%;
}
footer .footer_cnt_a p:last-of-type {
  font-size: 0.75rem;
}
footer .footer_cnt_b {
  width: 50%;
}
footer .copyright {
  font-size: 0.75rem;
  text-align: right;
  color: #a9a9a9;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 0;
  margin-bottom: 2rem;
  margin-bottom: 9.5rem;
}
footer ul li {
  width: 33.3333333333%;
  text-align: left;
}
footer ul li a:hover {
  text-decoration: underline;
}
footer ul li:last-child {
  position: relative;
  top: 6rem;
  font-size: 0.9rem;
  color: #a9a9a9;
}

.pageTop {
  height: 600px;
  width: 100%;
  margin: 0 auto 3rem;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  position: relative;
}
.pageTop h1 {
  display: flex;
  justify-content: center;
  white-space: nowrap;
  font-size: 6.5vw;
  margin: 0 auto;
  text-align: center;
  color: #000;
}
.pageTop h1 span {
  font-family: "Robot", sans-serif;
  font-weight: bold;
}
.pageTop h1 span:nth-of-type(1) {
  position: absolute;
  right: 50%;
  top: 50%;
  margin-right: 35vw;
  transform: translateY(-50%);
}
.pageTop h1 span:nth-of-type(3) {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 35vw;
  transform: translateY(-50%);
}

.top .pageTop {
  position: relative;
  background: none;
  overflow: hidden;
  border-radius: 3rem;
}
.top .pageTop video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top h2 {
  font-size: 7rem;
  margin-bottom: 2rem;
}
.top h2 span {
  font-size: 1.2rem;
  display: block;
}
.top .fv {
  padding: 0 3rem;
}
.top .fv_cnt {
  margin-bottom: 13rem;
  position: relative;
}
.top .fv_cnt h1 {
  margin: -8rem auto 3rem;
}
.top .fv_cnt h2 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
.top .fv_cnt p {
  font-size: 1.2rem;
  font-weight: 700;
}

.top_read {
  position: relative;
  margin-bottom: 12rem;
}
.top_read .top_read_bg {
  position: absolute;
  right: 0;
  height: 126%;
  top: -20em;
  z-index: -1;
}
.top_read .top_read_bg span {
  width: 40rem;
  height: 50rem;
  position: sticky;
  top: 10rem;
  right: 0;
  background-image: url(../img/read_bg_pc.webp);
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}
.top_read .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
}
.top_read .inner .read_a {
  width: 50%;
  position: sticky;
  top: 8rem;
}
.top_read .inner .read_a h2 {
  color: var(--main);
  font-size: 2.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 500;
}
.top_read .inner .read_a p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.top_read .inner .read_b {
  width: 60%;
}
.top_read .inner .read_b ul {
  margin-top: 0.5rem;
  position: relative;
}
.top_read .inner .read_b li {
  padding-left: 8rem;
  background-position: left top;
  background-size: 7rem;
  background-repeat: no-repeat;
}
.top_read .inner .read_b li::after {
  content: "";
  display: block;
  margin: 1.5rem auto;
  width: 4rem;
  height: 4rem;
  background-image: url(../img/next_icon_gray.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.top_read .inner .read_b li:last-child::after {
  display: none;
}
.top_read .inner .read_b li picture {
  margin-bottom: 0.8rem;
}
.top_read .inner .read_b li h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.top_read .inner .read_b li p {
  font-weight: 500;
  font-size: 1.5rem;
}
.top_read .inner .read_b li:nth-child(1) {
  background-image: url(../img/top_read_icon_a.webp);
}
.top_read .inner .read_b li:nth-child(2) {
  background-image: url(../img/top_read_icon_b.webp);
}
.top_read .inner .read_b li:nth-child(3) {
  background-image: url(../img/top_read_icon_c.webp);
}

.top_About p {
  margin-bottom: 2rem;
  line-height: 2;
}
.top_About {
  margin-bottom: 8rem;
}
.top_About ul {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.top_About a {
  display: block;
  align-content: center;
  height: 16rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}
.top_About a img {
  width: auto;
  height: 4rem;
}
.top_About a::before {
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.4s;
}
.top_About a:hover::before {
  transform: scale(1.2);
}
.top_About li {
  width: calc(33.3333333333% - 1rem);
}
.top_About li:nth-child(1) a::before {
  background-image: url(../img/top_about_a_bg.webp);
}
.top_About li:nth-child(2) a::before {
  background-image: url(../img/top_about_b_bg.webp);
}
.top_About li:nth-child(3) a::before {
  background-image: url(../img/top_about_c_bg.webp);
}

.top_service .service_swiper {
  padding-bottom: 10rem;
  margin-bottom: -8rem;
}
.top_service .service_swiper .swiper-button-prev, .top_service .service_swiper .swiper-button-next {
  height: 700px;
  width: 37vw;
  top: 0;
}
.top_service .service_swiper .swiper-button-prev::after, .top_service .service_swiper .swiper-button-next::after {
  display: none;
}
.top_service .service_card {
  height: auto;
  width: 400px;
  padding: 2rem;
}
.top_service .service_card.swiper-slide-active {
  z-index: 10;
}
.top_service .service_card.swiper-slide-active .card_inner {
  filter: brightness(100%);
  box-shadow: 0 0 30px rgb(255, 128, 0), 0 0 80px rgba(255, 129, 2, 0.32);
}
.top_service .service_card.is-prev {
  transform: rotate(-10deg) translateY(2.4rem) translateX(2rem);
}
.top_service .service_card.is-prev-2 {
  transform: rotate(-20deg) translateY(10rem) translateX(2.4rem);
}
.top_service .service_card.is-next {
  transform: rotate(10deg) translateY(2.4rem) translateX(-2rem);
}
.top_service .service_card.is-next-2 {
  transform: rotate(20deg) translateY(10rem) translateX(-2.4rem);
}
.top_service .card_inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  filter: brightness(30%);
  transition-duration: 0.4s;
}
.top_service .card_inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.main_cnt section h2 {
  font-size: 1.8rem;
  padding-left: 0.8rem;
  border-left: solid 8px #fff;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.main_cnt section.cnt_catch {
  margin-bottom: 5.5rem;
}
.main_cnt section.cnt_catch h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  padding-left: 0;
  border-left: unset;
}
.main_cnt .mark {
  margin-bottom: 6rem;
  border-top: solid 1px #fff;
  display: flex;
  flex-wrap: wrap;
}
.main_cnt .mark li {
  width: 50%;
  padding: 2rem 0;
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: solid 1px #fff;
}
.main_cnt .mark li::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 1rem;
  margin-right: 1rem;
  transform: translateY(-3px);
  background: var(--main);
}
.main_cnt .cnt_a {
  margin-bottom: 5.5rem;
}
.main_cnt .cnt_a ul {
  display: flex;
  justify-content: center;
  gap: 0 8rem;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 26rem;
  height: 36rem;
  margin-top: 3rem;
}
.main_cnt .cnt_a li {
  width: 28rem;
}
.main_cnt .cnt_a li:nth-child(2) {
  transform: translateY(2rem);
}
.main_cnt .cnt_b {
  margin-bottom: 5.5rem;
}
.main_cnt .cnt_b ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main_cnt .cnt_b ul li {
  width: calc(50% - 0.5rem);
  text-align: center;
  padding: 2.5rem 1rem;
  background: #fff;
  color: #000;
  margin-bottom: 1rem;
}
.main_cnt .cnt_b h3 {
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1rem;
}
.main_cnt .cnt_b h3::after {
  content: "";
  display: block;
  background: var(--main);
  margin: 0.5rem auto;
  width: 100%;
  height: 0.2rem;
}
.main_cnt .cnt_b div > p {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.main_cnt .cnt_b div > p strong {
  color: var(--main);
}
.main_cnt .cnt_b div > p::before {
  content: "";
  width: 100%;
  height: 8rem;
  display: block;
  margin: 0 auto;
  background-image: url(../img/next_icon_gray.webp);
  background-size: 4rem;
  background-repeat: no-repeat;
  background-position: center;
}
.main_cnt .cnt_e {
  margin-bottom: 11.5rem;
}
.main_cnt .cnt_e .inner {
  display: flex;
  flex-wrap: wrap;
}
.main_cnt .cnt_e .inner h2 {
  width: 100%;
}
.main_cnt .cnt_e .inner picture {
  width: 50%;
  position: relative;
  display: block;
}
.main_cnt .cnt_e .inner picture::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  right: 0;
  top: 11.8rem;
  background-image: url(../img/next_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}
.main_cnt .cnt_e .inner p {
  width: 50%;
  text-align: center;
  align-content: end;
  font-size: 2rem;
  font-weight: bold;
  background-position: top center;
  background-repeat: no-repeat;
}
.main_cnt .cnt_e .inner p strong {
  color: var(--main);
}
.main_cnt.LINE .pageTop {
  background-image: url(../img/LINEmarketing_bg_pc.webp);
  font-family: sans-serif;
  background-blend-mode: multiply;
  background-color: #bbbbbb;
}
.main_cnt.LINE .pageTop h1 {
  color: #fff;
}
.main_cnt.LINE .cnt_a ul {
  background-image: url(../img/LINE_txt_bg.webp);
}
.main_cnt.LINE .cnt_c ul {
  margin: 3rem auto 6rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
}
.main_cnt.LINE .cnt_c ul li {
  width: 12rem;
  position: relative;
}
.main_cnt.LINE .cnt_c ul li::before {
  content: "";
  width: 3rem;
  height: 3rem;
  transform: rotate(-90deg);
  background-image: url(../img/next_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -4.1rem;
  top: 4.5rem;
}
.main_cnt.LINE .cnt_c ul li:last-child {
  width: 14rem;
}
.main_cnt.LINE .cnt_c ul li:last-child::before {
  display: none;
}
.main_cnt.LINE .cnt_e p {
  background-image: url(../img/LINE_cnt_b.webp);
  background-size: 17rem;
}
.main_cnt.LINE .cnt_link .linkArea li:nth-child(1) a::after {
  background-image: url(../img/linkArea_icon_a.webp);
}
.main_cnt.Youtubeope .pageTop {
  background-image: url(../img/Youtubeope_bg_pc.webp);
  background-blend-mode: multiply;
  background-color: #bbbbbb;
}
.main_cnt.Youtubeope .pageTop h1 {
  color: #fff;
}
.main_cnt.Youtubeope .pageTop h1 span:nth-of-type(1) {
  margin-right: 41vw;
}
.main_cnt.Youtubeope .pageTop h1 span:nth-of-type(3) {
  margin-left: 41vw;
}
.main_cnt.Youtubeope .cnt_a ul {
  background-image: url(../img/youtube_txt_bg.webp);
}
.main_cnt.Youtubeope .cnt_c {
  margin-bottom: 5.5rem;
}
.main_cnt.Youtubeope .cnt_c dl {
  display: flex;
  justify-content: space-between;
}
.main_cnt.Youtubeope .cnt_c dl dt, .main_cnt.Youtubeope .cnt_c dl dd {
  width: calc(50% - 3rem);
  font-weight: 500;
}
.main_cnt.Youtubeope .cnt_c figure {
  margin-bottom: 1rem;
}
.main_cnt.Youtubeope .cnt_c ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.main_cnt.Youtubeope .cnt_c ul li {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.main_cnt.Youtubeope .cnt_d ul {
  border-top: solid 1px #fff;
}
.main_cnt.Youtubeope .cnt_d ul li {
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 0 2rem;
  border-bottom: solid 1px #fff;
}
.main_cnt.Youtubeope .cnt_d ul li h3 {
  font-weight: bold;
  font-size: 1.6rem;
}
.main_cnt.Youtubeope .cnt_d ul li h3 span {
  font-size: 2.6rem;
  margin-left: 0.4rem;
}
.main_cnt.Youtubeope .cnt_d ul li p strong {
  display: block;
  background: var(--main);
  font-size: 1.6rem;
  padding: 0.2rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.8rem;
}
.main_cnt.Youtubeope .cnt_e p {
  background-image: url(../img/youtube_cnt_b.webp);
  background-size: 19.5rem;
  padding-bottom: 2.4rem;
}
.main_cnt.Youtubeope .cnt_link .linkArea li:nth-child(2) a::after {
  background-image: url(../img/linkArea_icon_b.webp);
}
.main_cnt.Product .pageTop {
  background-image: url(../img/Product_bg_pc.webp);
  background-blend-mode: multiply;
  background-color: #bbbbbb;
}
.main_cnt.Product .pageTop h1 {
  color: #fff;
}
.main_cnt.Product .cnt_a ul {
  background-image: url(../img/product_txt_bg.webp);
}
.main_cnt.Product .cnt_c ul {
  margin: 3rem auto 6rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  align-items: center;
}
.main_cnt.Product .cnt_c ul li {
  width: 12rem;
  position: relative;
}
.main_cnt.Product .cnt_c ul li::before {
  content: "";
  width: 3rem;
  height: 3rem;
  transform: rotate(-90deg);
  background-image: url(../img/next_icon_gray.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -4.1rem;
  top: 4.5rem;
}
.main_cnt.Product .cnt_c ul li:last-child {
  width: 14rem;
}
.main_cnt.Product .cnt_c ul li:last-child::before {
  display: none;
}
.main_cnt.Product .cnt_d li strong {
  background: var(--main);
  display: inline-block;
  padding: 0.2rem 1rem;
}
.main_cnt.Product .cnt_d li:nth-child(-n+2) strong {
  margin-left: 2.5rem;
  position: relative;
}
.main_cnt.Product .cnt_d li:nth-child(-n+2) strong::before {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1.4rem;
  position: absolute;
  left: -1.7rem;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.main_cnt.Product .cnt_e p {
  background-image: url(../img/product_cnt_b.webp);
  background-size: 14.5rem;
}
.main_cnt.Product .cnt_link .linkArea li:nth-child(3) a::after {
  background-image: url(../img/linkArea_icon_c.webp);
}

.cnt_link .contact_link {
  display: block;
  text-align: center;
  align-content: center;
  width: 100%;
  background: var(--sub);
  border-radius: 50rem;
  height: 16rem;
  margin-bottom: 6rem;
  position: relative;
}
.cnt_link .contact_link h3 {
  display: flex;
  margin: 0 auto 1.5rem;
  width: 35rem;
  font-size: 3rem;
  line-height: 1;
  align-items: center;
  font-weight: 600;
  gap: 2rem;
}
.cnt_link .contact_link h3 span {
  font-size: 1.2rem;
  display: block;
  line-height: 1;
  transform: translateY(4px);
}
.cnt_link .contact_link p {
  text-align: left;
  width: 35rem;
  margin: 0 auto;
}
.cnt_link .contact_link::before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 100%;
  background-image: url(../img/contact_next_wh.webp);
  background-size: 3.5rem;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  right: 5rem;
  transition-duration: 0.3s;
}
.cnt_link .contact_link:hover {
  background: #262626;
  color: var(--sub);
}
.cnt_link .contact_link:hover::before {
  transform: translateX(1rem);
  background-image: url(../img/contact_next_red.webp);
}
.cnt_link .linkArea {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
.cnt_link .linkArea li {
  width: calc(33.3333333333% - 1rem);
}
.cnt_link .linkArea li a {
  display: block;
  padding: 1.5rem;
  border: solid 1px;
  position: relative;
}
.cnt_link .linkArea li a::before {
  content: "";
  width: 2rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transition-duration: 0.3s;
}
.cnt_link .linkArea li a:hover::before {
  width: 0.7rem;
}
.cnt_link .linkArea li a::after {
  content: "";
  position: absolute;
  left: -1px;
  top: -0.8rem;
  width: 1.7rem;
  height: 1.7rem;
  background-size: contain;
  background-repeat: no-repeat;
}
.cnt_link .linkArea li p strong {
  font-size: 1.6rem;
  display: block;
}
.cnt_link .linkArea li p span {
  font-size: 0.85rem;
}
.cnt_link .linkArea li.line a {
  border-color: #05C656;
}
.cnt_link .linkArea li.line a::before {
  background: #05C656;
}
.cnt_link .linkArea li.youtube a {
  border-color: #FF2200;
}
.cnt_link .linkArea li.youtube a::before {
  background: #FF2200;
}
.cnt_link .linkArea li.product a {
  border-color: #FF7C01;
}
.cnt_link .linkArea li.product a::before {
  background: #FF7C01;
}

.sub_cnt section dl > div {
  margin-bottom: 6rem;
}
.sub_cnt section dl dt {
  font-weight: bold;
  padding-bottom: 2rem;
  border-bottom: solid 1px;
  margin-bottom: 2rem;
}
.sub_cnt section dl dt h3 {
  font-size: 2rem;
  color: #000;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3rem 1rem;
  margin-bottom: 0.2rem;
  font-family: "Robot", sans-serif;
  font-weight: 700;
}
.sub_cnt section dl dd h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.sub_cnt section dl dd p {
  margin-bottom: 2rem;
}

.Company .pageTop {
  background-image: url(../img/company_bg_pc.webp);
}
.Company .pageTop h1 {
  color: #fff;
}
.Company .pageTop h1 span:nth-of-type(1) {
  margin-right: 25vw;
}
.Company .pageTop h1 span:nth-of-type(3) {
  margin-left: 25vw;
}
.Company section dl div {
  display: flex;
  justify-content: space-between;
}
.Company section dl div dt {
  border-bottom: unset;
}
.Company section dl div dd {
  width: 80%;
}
.Company section dl div dd dl > div {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 6rem;
  border-bottom: solid 1px #fff;
  margin-bottom: 0;
  padding: 2rem 0;
  white-space: nowrap;
}
.Company section dl div dd dl > div dt {
  margin-bottom: 0;
  border-bottom: unset;
  padding-bottom: 0;
  width: 4rem;
}
.Company section dl div:nth-of-type(1) {
  display: block;
  position: relative;
}
.Company section dl div:nth-of-type(1) dd {
  width: 50%;
}
.Company section dl div:nth-of-type(1) figure {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: 31rem;
}
.Company section dl div:nth-of-type(1) .name {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-bottom: 0;
}
.Company section dl div:nth-of-type(1) .name span {
  font-size: 1.25rem;
  margin-left: 1rem;
}

.Strong .pageTop {
  background-image: url(../img/Strong_bg_pc.webp);
  background-blend-mode: multiply;
  background-color: #bbbbbb;
}
.Strong .pageTop h1 {
  color: #fff;
}
.Strong .pageTop h1 span:nth-of-type(1) {
  margin-right: 32vw;
}
.Strong .pageTop h1 span:nth-of-type(3) {
  margin-left: 32vw;
}
.Strong .strong_catch h2 {
  font-size: 2.2rem;
  margin-bottom: 6rem;
}
.Strong .strong_catch p {
  font-size: 2.7rem;
  font-weight: 500;
  margin-bottom: 6rem;
}
.Strong .strong_catch p strong {
  font-weight: 500;
}
.Strong .strong_cnt {
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right top;
}
.Strong .strong_cnt .inner {
  padding-top: 0;
  height: 660px;
}
.Strong .strong_cnt h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  border-top: solid 1px #fff;
  padding-top: 2rem;
  max-width: 500px;
}
.Strong .strong_cnt h2 span {
  font-size: 8.5rem;
  color: var(--main);
  margin-bottom: 1rem;
  display: block;
  font-family: "Robot";
  font-weight: bold;
}
.Strong .strong_cnt p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.Strong .strong_a {
  background-image: url(../img/strong_cnt_a.webp);
}
.Strong .strong_b {
  background-image: url(../img/strong_cnt_b.webp);
}
.Strong .strong_c {
  background-image: url(../img/strong_cnt_c.webp);
}
.Strong .strong_d {
  background-image: url(../img/strong_cnt_d.webp);
}

.purpse .pageTop {
  background-image: url(../img/purpse_bg_pc.webp);
}
.purpse .pageTop h1 span:nth-of-type(1) {
  margin-right: 25vw;
}
.purpse .pageTop h1 span:nth-of-type(3) {
  margin-left: 25vw;
}
.purpse section dd figure {
  margin: 3rem auto;
  width: 40rem;
}
.purpse section h5 {
  text-align: center;
  font-size: 0.9rem;
}
.purpse section button {
  display: block;
  background-color: #fff;
  background-image: url(../img/link_icon_bk.webp);
  background-repeat: no-repeat;
  background-size: 1.4rem;
  background-position: center right 1.5rem;
  color: #000;
  font-size: 1.3rem;
  width: 20rem;
  margin: 0.5rem auto 4rem;
  height: 3.4rem;
  text-align: center;
  border-radius: 10rem;
}
.purpse section dl div:last-of-type dd p:last-of-type {
  font-size: 1.8rem;
  font-weight: 600;
}
.purpse section dl div:last-of-type dd p:last-of-type strong {
  color: var(--main);
  font-size: 2.6rem;
  font-weight: 600;
}

.contact {
  background: #000;
  color: #fff;
  padding: 1rem 0;
}
.contact section {
  padding-bottom: 6rem;
}
.contact section .inner {
  max-width: 720px;
}
.contact section h1 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.contact section form {
  margin-top: 4rem;
}
.contact section label {
  display: block;
}
.contact section p {
  line-height: 1.6;
}
.contact section p span {
  color: var(--sub);
}
.contact .contact_list {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}
.contact .contact_list input {
  display: none;
}
.contact .contact_list p {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.contact .contact_list p span {
  font-weight: normal;
  font-size: 0.85rem;
  color: var(--sub);
}
.contact .contact_list label {
  position: relative;
  padding-left: 1.6rem;
}
.contact .contact_list label::before {
  content: "";
  position: absolute;
  left: 0rem;
  background: #fff;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 5rem;
}
.contact .contact_list input[type=radio]:checked + label::before {
  background: radial-gradient(#000 0 30%, #ffffff 0);
}
.contact .contact_form div {
  margin-bottom: 1rem;
}
.contact .contact_form div:nth-of-type(1) {
  display: flex;
  gap: 0 0.5rem;
}
.contact .contact_form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.contact .contact_form label span {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--sub);
}
.contact .contact_form input, .contact .contact_form textarea {
  background: #fff;
  padding: 0.5rem 1rem;
  width: 100%;
  border-radius: 0.3rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.contact .contact_form input::-moz-placeholder, .contact .contact_form textarea::-moz-placeholder {
  color: #ccc;
}
.contact .contact_form input::placeholder, .contact .contact_form textarea::placeholder {
  color: #ccc;
}
.contact .contact_form button {
  display: block;
  background: var(--main);
  border-radius: 10rem;
  align-content: center;
  text-align: center;
  height: 3.8rem;
  width: 13rem;
}
.contact .contact_form button:hover {
  background: #262626;
  color: var(--main);
}

.contact_page {
  background: #fff;
  color: #000;
}
.contact_page .inner {
  max-width: 700px;
}
.contact_page h2 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.contact_page dl div {
  display: flex;
  border-bottom: solid 1px;
  align-items: center;
  padding: 2rem 0;
}
.contact_page dl dt {
  width: 35%;
}
.contact_page dl dd {
  width: 65%;
}
.contact_page .btn {
  border-radius: 10rem;
  display: block;
  align-content: center;
  width: 10rem;
  text-align: center;
  height: 3.8rem;
  color: #fff;
  background: #000;
  margin-top: 1rem;
}
.contact_page .btn.orange {
  background: var(--sub);
}
.contact_page .btnArea {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.contact_page.thanks h1 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.contact_page.thanks p {
  margin-bottom: 3rem;
}

.Material .pageTop {
  background: #393939;
}
.Material .pageTop h1 {
  color: #FF7C01;
}
.Material .pageTop h1 span:nth-of-type(1) {
  margin-right: 24.5vw;
}
.Material .pageTop h1 span:nth-of-type(3) {
  margin-left: 24.5vw;
}
.Material section h2 {
  margin-bottom: 2rem;
  font-size: 2.6rem;
}
.Material .Material_cnt {
  position: relative;
  margin-top: 5rem;
  margin-bottom: 12rem;
  display: flex;
  justify-content: space-between;
}
.Material .Material_cnt h3 {
  width: 40%;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 3rem 0;
  font-size: 2rem;
  line-height: 1.5;
}
.Material .Material_cnt figure {
  width: 50%;
}
.Material .Material_cnt a {
  position: absolute;
  display: block;
  align-content: center;
  align-items: center;
  background: var(--main);
  height: 3.6rem;
  width: 11rem;
  text-align: center;
  border-radius: 10rem;
  left: 0;
  top: 12rem;
}
.Material .Material_cnt a:hover {
  color: var(--main);
  background: var(--gray);
}

.Policy .pageTop {
  background: #393939;
}
.Policy .pageTop h1 {
  color: #FF7C01;
}
.Policy .pageTop h1 span:nth-of-type(1) {
  margin-right: 32vw;
}
.Policy .pageTop h1 span:nth-of-type(3) {
  margin-left: 32vw;
}
.Policy section h2 {
  margin-bottom: 2rem;
  font-size: 2.6rem;
}
.Policy section dl {
  margin-top: 5rem;
  margin-bottom: 10rem;
}
.Policy section dl div {
  margin-bottom: 4rem;
}
.Policy section dl dt {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
.Policy section dl dd p {
  margin-bottom: 1rem;
}
.Policy section dl ul.mark {
  padding-left: 1.5rem;
  list-style: disc;
}
.Policy section dl ul li {
  margin-bottom: 1rem;
}
.Policy section dl .formBtn {
  display: block;
  align-content: center;
  align-items: center;
  background: var(--sub);
  height: 3.6rem;
  width: 11rem;
  text-align: center;
  border-radius: 10rem;
}
.Policy section dl .formBtn:hover {
  color: var(--sub);
  background: var(--gray);
}

@media screen and (max-width: 1900px) {
  header .header_inner {
    padding-right: 6rem;
  }
  header .header_inner aside {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    z-index: 10;
    top: 0;
    left: 0;
    padding-top: 20vh;
  }
  header .header_inner aside ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4rem 0;
    margin: 0 auto 8rem;
    max-width: 1000px;
  }
  header .header_inner aside ul li {
    width: 25%;
  }
  header .header_inner aside ul a {
    height: auto;
  }
  header .header_inner aside ul a span {
    line-height: 1;
    display: block;
    transition-duration: 0s;
  }
  header .header_inner aside ul a span:nth-of-type(1) {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: bold;
  }
  header .header_inner aside ul a span:nth-of-type(2) {
    position: static;
    opacity: 1;
    text-decoration: none;
    transform: unset;
  }
  header .header_inner aside ul a:hover span:nth-of-type(1) {
    opacity: 1;
    transform: unset;
  }
  header .header_inner aside dl {
    display: flex;
    justify-content: center;
  }
  header .header_inner aside dl dt, header .header_inner aside dl dd {
    width: 20rem;
    height: 4rem;
  }
  header button {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 0.7rem;
    width: 3.4rem;
    height: 3.4rem;
    background-color: #fff;
    border-radius: 10rem;
    z-index: 20;
    background-image: url(../img/menuBtn_icon_a.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 55%;
  }
  header button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/closeBtn_bk.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    transition-duration: 0.5s;
    opacity: 0;
  }
  header button.open {
    background-image: none;
  }
  header button.open::before {
    opacity: 1;
  }
  .footer_contact ul li::before {
    background-size: 3rem;
    right: 3rem;
    width: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .inner {
    max-width: 720px;
  }
  .footer_contact ul {
    display: block;
  }
  .footer_contact ul li {
    width: 100%;
  }
  .footer_contact ul li:nth-child(1) a {
    margin-left: 0;
  }
  #toTop {
    right: 1rem;
  }
  footer {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  footer .inner {
    max-width: 720px;
    display: block;
  }
  footer ul li:last-child {
    position: static;
  }
  footer .footer_logo {
    margin: 0 auto 3rem;
    width: 24rem;
  }
  footer .footer_cnt_a {
    width: 100%;
  }
  footer .footer_cnt_a p {
    text-align: center;
    margin-bottom: 3rem;
  }
  footer .footer_cnt_b {
    width: 100%;
  }
  footer ul {
    margin-bottom: 5rem;
    gap: 2rem 0;
  }
  footer .copyright {
    text-align: center;
  }
  .pageTop {
    height: 360px;
  }
  .pageTop h1 {
    font-size: 10vw;
  }
  .pageTop h1 span:nth-of-type(1) {
    display: none;
  }
  .pageTop h1 span:nth-of-type(3) {
    display: none;
  }
  .top .fv {
    padding: 0;
  }
  .top .fv .pageTop {
    border-radius: 2rem;
    height: 500px;
  }
  .top h1 img {
    margin: 0 auto;
    display: block;
  }
  .top h2 {
    font-size: 5.5rem;
  }
  .top .fv_cnt {
    max-width: 720px;
    margin: 0 auto 8rem;
  }
  .top .fv_cnt h2 {
    font-size: 4rem;
    line-height: 1.4;
  }
  .top .fv_cnt h2 br {
    display: block;
  }
  .top .fv_cnt p {
    font-size: 1.5rem;
  }
  .top .fv_cnt p br {
    display: block;
  }
  .top .top_read .top_read_bg span {
    position: static;
    width: 24rem;
  }
  .top .top_read .inner {
    display: block;
  }
  .top .top_read .inner .read_a {
    width: 100%;
    position: static;
    margin-bottom: 4rem;
  }
  .top .top_read .inner .read_b {
    width: 100%;
  }
  .top .top_About ul {
    flex-direction: column;
    gap: 2rem 0;
  }
  .top .top_About ul li {
    width: 100%;
  }
  .top .top_About a {
    height: 22rem;
  }
  .top .top_About a img {
    height: 6rem;
  }
  .main_cnt section h2 {
    margin-bottom: 3rem;
  }
  .main_cnt .cnt_a ul {
    gap: 0 2rem;
    margin: 0 -1rem;
    background-size: 19rem;
    background-position: top 8rem center;
    height: 29rem;
  }
  .main_cnt .mark li {
    width: 100%;
  }
  .main_cnt .cnt_e .inner {
    flex-direction: column;
  }
  .main_cnt .cnt_e .inner picture {
    width: 100%;
    margin-bottom: 8rem;
  }
  .main_cnt .cnt_e .inner picture::before {
    top: unset;
    bottom: -5rem;
    transform: translateX(-50%);
    transform: unset;
    width: 100%;
  }
  .main_cnt .cnt_e .inner p {
    width: 100%;
    padding-top: 23rem;
  }
  .main_cnt.LINE .cnt_c ul {
    margin-bottom: 2rem;
  }
  .main_cnt.LINE .cnt_c ul li::before {
    top: 1.7rem;
  }
  .main_cnt.LINE .cnt_e .inner p {
    background-size: 26rem;
  }
  .main_cnt.Youtubeope .cnt_e .inner p {
    padding-top: 21rem;
    margin-top: -1rem;
    background-size: 26rem;
    padding-bottom: 0;
  }
  .main_cnt.Product .cnt_c ul {
    margin-bottom: 2rem;
  }
  .main_cnt.Product .cnt_c ul li::before {
    top: 1.7rem;
  }
  .main_cnt.Product .cnt_e .inner p {
    padding-top: 21rem;
    background-size: 20rem;
  }
  .cnt_link .contact_link {
    border-radius: 2rem;
    padding: 2rem;
    text-align: left;
    margin-bottom: 3rem;
  }
  .cnt_link .contact_link h3 {
    justify-content: flex-start;
  }
  .cnt_link .contact_link::before {
    right: 2rem;
    background-size: 3rem;
  }
  .cnt_link .linkArea {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1.5rem;
    margin-bottom: 4rem;
  }
  .cnt_link .linkArea li {
    width: 100%;
  }
  .Strong h2 {
    margin-bottom: 4rem;
    background-position: right top 3rem;
  }
  .Strong .strong_catch p {
    font-size: 2.2rem;
  }
  .Strong .strong_cnt h2 {
    border: unset;
    max-width: 100%;
    position: relative;
    font-size: 2.2rem;
  }
  .Strong .strong_cnt h2 span {
    margin-bottom: 7rem;
  }
  .Strong .strong_cnt h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background: #fff;
  }
  .Strong .strong_cnt p {
    font-size: 1.2rem;
  }
  .Company section dl div:nth-of-type(1) figure {
    right: -2rem;
    bottom: 7rem;
    width: 21rem;
  }
  .Company section dl div dt {
    padding-bottom: 0;
  }
  .Company section dl div dd {
    width: 100%;
  }
  .Company section .inner > dl > div {
    flex-direction: column;
  }
  .Material .Material_cnt {
    flex-direction: column;
  }
  .Material .Material_cnt h3 {
    width: 100%;
    border-bottom: unset;
    padding-bottom: 2rem;
  }
  .Material .Material_cnt figure {
    width: 100%;
  }
  .Material .Material_cnt a {
    position: static;
    width: 100%;
    max-width: 580px;
    height: 5rem;
    margin: 3rem auto;
  }
  .top_service .service_swiper {
    padding-bottom: 10rem;
    margin-bottom: -8rem;
  }
  .top_service .service_swiper .swiper-button-prev, .top_service .service_swiper .swiper-button-next {
    height: 700px;
    width: 25vw;
    top: 0;
  }
  .top_service .service_swiper .swiper-button-prev::after, .top_service .service_swiper .swiper-button-next::after {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 4vw;
  }
  .inner {
    padding: 1rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .wrap {
    padding-top: 52px;
  }
  header {
    height: 52px;
  }
  header .header_inner {
    padding-left: 0.3rem;
    padding-right: 3.5rem;
    height: 4rem;
  }
  header .header_inner dl {
    gap: 0.5rem;
    width: 20rem;
    margin-left: 1rem;
  }
  header .header_inner dl dt {
    height: 2.6rem;
  }
  header .header_inner dl dd {
    height: 2.6rem;
  }
  header .header_inner aside {
    padding-top: 2rem;
  }
  header .header_inner aside ul {
    flex-direction: column;
    gap: 1.8rem 0;
    margin-bottom: 2rem;
  }
  header .header_inner aside ul li {
    width: 100%;
  }
  header .header_inner aside ul a span:nth-of-type(1) {
    font-size: 1.2rem;
  }
  header .header_inner aside dl {
    flex-direction: column;
    gap: 1rem 0;
    width: 100%;
    margin-left: 0;
    padding: 0 1rem;
  }
  header .header_inner aside dl dt {
    width: 100%;
  }
  header .header_inner aside dl dd {
    width: 100%;
  }
  header button {
    right: 0.3rem;
    height: 2.6rem;
    width: 2.6rem;
    top: 0.6rem;
  }
  footer {
    padding-bottom: 2rem;
  }
  footer .footer_logo {
    width: 18rem;
    margin-bottom: 1.5rem;
  }
  footer .footer_cnt_a p {
    margin-bottom: 1.5rem;
  }
  footer p strong {
    font-size: 1.1em;
  }
  footer ul {
    margin-bottom: 3rem;
    gap: 1.5rem 0;
  }
  footer ul li {
    width: 50%;
    font-weight: bold;
  }
  footer ul li:nth-child(1) {
    order: 1;
  }
  footer ul li:nth-child(2) {
    order: 7;
  }
  footer ul li:nth-child(3) {
    order: 6;
  }
  footer ul li:nth-child(4) {
    order: 3;
  }
  footer ul li:nth-child(5) {
    order: 2;
  }
  footer ul li:nth-child(6) {
    order: 8;
  }
  footer ul li:nth-child(7) {
    order: 5;
  }
  footer ul li:nth-child(8) {
    order: 4;
  }
  footer ul li:last-child {
    order: 9;
  }
  .footer_contact h3 {
    font-size: 2rem;
  }
  .footer_contact ul li::before {
    background-size: 1.8rem;
    width: 1.8rem;
    right: 1.5rem;
  }
  .footer_contact a {
    padding: 2rem 5rem 3rem 1rem;
  }
  .top .fv .pageTop {
    height: 250px;
  }
  .top .fv_cnt {
    padding: 0 1rem;
    margin-bottom: 6rem;
  }
  .top .fv_cnt h1 {
    margin-top: -5rem;
    margin-bottom: 2rem;
  }
  .top .fv_cnt h2 {
    font-size: 2.4rem;
  }
  .top .fv_cnt p {
    font-size: 1.1rem;
    font-weight: bold;
  }
  .top h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  .top h2 span {
    font-size: 1rem;
  }
  .top .top_read {
    margin-bottom: 3.5rem;
  }
  .top .top_read .inner .read_a h2 {
    font-size: 1.4rem;
  }
  .top .top_read .inner .read_b li {
    background-size: 4rem;
    padding-left: 4.5rem;
  }
  .top .top_read .inner .read_b li h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  .top .top_read .inner .read_b li p {
    font-size: 1.1rem;
  }
  .top .top_read .inner .read_b li::after {
    margin: 1rem auto;
    width: 2.6rem;
  }
  .top .top_read .top_read_bg {
    top: -5rem;
  }
  .top .top_read .top_read_bg span {
    width: 10rem;
  }
  .top .top_About {
    margin-bottom: 4rem;
  }
  .top .top_About a {
    height: 15rem;
  }
  .top .top_About a img {
    height: 5rem;
  }
  .top .top_About ul li:nth-child(1) a::before {
    background-image: url(../img/top_about_a_bg_sp.webp);
  }
  .top .top_About ul li:nth-child(2) a::before {
    background-image: url(../img/top_about_b_bg_sp.webp);
  }
  .top .top_About ul li:nth-child(3) a::before {
    background-image: url(../img/top_about_c_bg_sp.webp);
  }
  .top_service .service_card {
    width: 18rem;
  }
  .top_service .service_card.is-next {
    transform: rotate(5deg) translateY(1.2rem) translateX(-5rem);
  }
  .top_service .service_card.is-prev {
    transform: rotate(-5deg) translateY(1.2rem) translateX(-5rem);
  }
  .pageTop {
    height: 10rem;
    margin-bottom: 2rem;
  }
  .main_cnt section.cnt_catch {
    margin-bottom: 0;
  }
  .main_cnt section.cnt_catch h2 {
    font-size: 1.6rem;
  }
  .main_cnt section h2 {
    font-size: 1.2rem;
    margin-bottom: 1.4rem;
  }
  .main_cnt .cnt_a {
    margin-bottom: 0;
  }
  .main_cnt .cnt_a ul {
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    background-size: 13rem;
    background-position: top 10rem center;
    height: 33rem;
  }
  .main_cnt .cnt_a ul li {
    width: 100%;
  }
  .main_cnt .cnt_a ul li:nth-child(2) {
    transform: unset;
  }
  .main_cnt .cnt_b {
    margin-bottom: 0;
  }
  .main_cnt .cnt_b h3 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .main_cnt .cnt_b h3::after {
    margin: 0.3rem auto;
    height: 0.3rem;
  }
  .main_cnt .cnt_b ul li {
    width: 100%;
    padding: 1.5rem 1rem;
  }
  .main_cnt .cnt_b div > p {
    font-size: 1.2rem;
  }
  .main_cnt .cnt_b div > p::before {
    height: 3rem;
    background-size: 2.4rem;
  }
  .main_cnt .mark {
    margin-bottom: 4rem;
  }
  .main_cnt .mark li {
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  .main_cnt .mark li::before {
    margin-right: 0.5rem;
    transform: translateY(-2px);
    width: 0.4rem;
    height: 0.4rem;
  }
  .main_cnt .cnt_e {
    margin-bottom: 0;
  }
  .main_cnt .cnt_e .inner p {
    font-size: 1.2rem;
  }
  .main_cnt .cnt_e .inner picture {
    margin-bottom: 5rem;
  }
  .main_cnt .cnt_e .inner picture::before {
    background-size: 2.4rem;
    bottom: -4rem;
  }
  .main_cnt.LINE .pageTop {
    background-image: url(../img/LINEmarketing_bg_sp.webp);
  }
  .main_cnt.LINE .cnt_c {
    margin-bottom: 0;
  }
  .main_cnt.LINE .cnt_c ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .main_cnt.LINE .cnt_c ul li {
    width: 8rem;
  }
  .main_cnt.LINE .cnt_c ul li:last-child {
    width: 8rem;
    transform: scale(1.2) translateY(-0.2rem) translateX(0.8rem);
  }
  .main_cnt.LINE .cnt_c ul li::before {
    top: 3rem;
    width: 2rem;
    height: 2rem;
    right: -3rem;
  }
  .main_cnt.LINE .cnt_e .inner p {
    background-size: 18rem;
    padding-top: 15rem;
  }
  .main_cnt.Youtubeope .pageTop {
    background-image: url(../img/Youtubeope_bg_sp.webp);
  }
  .main_cnt.Youtubeope .cnt_c {
    margin-bottom: 0;
  }
  .main_cnt.Youtubeope .cnt_c dl {
    display: block;
    margin-bottom: 3rem;
  }
  .main_cnt.Youtubeope .cnt_c dl dt, .main_cnt.Youtubeope .cnt_c dl dd {
    width: 100%;
  }
  .main_cnt.Youtubeope .cnt_c ul li {
    font-size: 1rem;
  }
  .main_cnt.Youtubeope .cnt_d ul li {
    gap: 0 3.5rem;
  }
  .main_cnt.Youtubeope .cnt_d ul li h3 {
    font-size: 1.2rem;
  }
  .main_cnt.Youtubeope .cnt_d ul li h3 span {
    font-size: 2rem;
  }
  .main_cnt.Youtubeope .cnt_d ul li p strong {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .main_cnt.Youtubeope .cnt_e .inner p {
    padding-top: 13rem;
    margin-top: 0rem;
    background-size: 16rem;
  }
  .main_cnt.Product .pageTop {
    background-image: url(../img/Product_bg_sp.webp);
  }
  .main_cnt.Product .cnt_c ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4rem;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .main_cnt.Product .cnt_c ul li {
    width: 8rem;
  }
  .main_cnt.Product .cnt_c ul li:last-child {
    width: 8rem;
    transform: scale(1.2) translateY(-0.2rem) translateX(0.8rem);
  }
  .main_cnt.Product .cnt_c ul li::before {
    top: 3rem;
    width: 2rem;
    height: 2rem;
    right: -3rem;
  }
  .main_cnt.Product .cnt_e .inner p {
    padding-top: 14.5rem;
    background-size: 14rem;
  }
  .cnt_link .contact_link {
    height: 11rem;
    padding: 0 4rem 0 1.5rem;
    border-radius: 1rem;
  }
  .cnt_link .contact_link h3 {
    font-size: 2.2rem;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .cnt_link .contact_link h3 span {
    font-size: 1rem;
  }
  .cnt_link .contact_link::before {
    right: 0rem;
    background-size: 1.6rem;
    width: 4rem;
  }
  .Strong .pageTop {
    background-image: url(../img/Strong_bg_sp.webp);
  }
  .Strong .strong_catch h2 {
    font-size: 1.7rem;
    margin-bottom: 3rem;
  }
  .Strong .strong_catch p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .Strong .strong_cnt {
    background-image: unset !important;
  }
  .Strong .strong_cnt .inner {
    height: auto;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
    margin: 0 1rem 3rem;
    padding: 0 0 18rem;
  }
  .Strong .strong_cnt h2 {
    padding-top: 1rem;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .Strong .strong_cnt h2 span {
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: bold;
  }
  .Strong .strong_cnt h2::before {
    width: 100%;
  }
  .Strong .strong_cnt p {
    font-size: 1rem;
  }
  .Strong .strong_cnt.strong_a .inner {
    background-image: url(../img/strong_cnt_a.webp);
  }
  .Strong .strong_cnt.strong_b .inner {
    background-image: url(../img/strong_cnt_b.webp);
  }
  .Strong .strong_cnt.strong_c .inner {
    background-image: url(../img/strong_cnt_c.webp);
  }
  .Strong .strong_cnt.strong_d .inner {
    background-image: url(../img/strong_cnt_d.webp);
  }
  .sub_cnt section dl dt {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .sub_cnt section dl dd h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .purpse section dd figure {
    width: 100%;
  }
  .purpse section button {
    height: 4rem;
    font-size: 1.5rem;
    width: 100%;
    margin-bottom: 3rem;
  }
  .purpse section dl > div {
    margin-bottom: 4rem;
  }
  .purpse section dl div:last-of-type dd p:last-of-type {
    font-size: 1.2rem;
  }
  .purpse section dl div:last-of-type dd p:last-of-type strong {
    font-size: 1.6rem;
  }
  .Company section dl div:nth-of-type(1) figure {
    position: static;
    width: 100%;
    margin: 2rem auto 3rem;
  }
  .Company section dl div:nth-of-type(1) dd {
    width: 100%;
  }
  .Company section dl div:nth-of-type(1) .name {
    position: relative;
    text-align: right;
  }
  .Company section dl div dd dl > div dd {
    white-space: normal;
    line-height: 1.6;
  }
  .Material section h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .Material .Material_cnt {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .Material .Material_cnt h3 {
    padding: 1.5rem 0 1rem;
    font-size: 1.1rem;
  }
  .Material .Material_cnt a {
    height: 4rem;
    margin: 2rem auto;
  }
  .contact section h1 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .contact section form {
    margin-top: 2rem;
  }
  .contact section .contact_list {
    flex-direction: column;
    gap: 1rem 0;
  }
  .contact section .contact_list p {
    margin-bottom: 0;
  }
  .contact section .contact_form div {
    margin-bottom: 1.5rem;
  }
  .contact section .contact_form div:nth-of-type(1) {
    display: block;
  }
  .contact section .contact_form button {
    width: 100%;
  }
  .Policy section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }
  .Policy section dl {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .Policy section dl .formBtn {
    width: 100%;
    height: 4rem;
  }
  .contact_page h2 {
    text-align: left;
  }
  .contact_page dl div {
    display: block;
  }
  .contact_page dl div dt {
    width: 100%;
    margin-bottom: 1rem;
  }
  .contact_page dl div dd {
    width: 100%;
  }
  .contact_page .btnArea {
    display: block;
  }
  .contact_page .btnArea .btn {
    margin-top: 1rem;
    width: 100%;
  }
  .contact_page.tahnks h1 {
    text-align: center;
    font-size: 1.3rem;
  }
  .contact_page.tahnks .btn {
    width: 100%;
    margin: 2rem auto;
  }
}/*# sourceMappingURL=common.css.map */