@charset "UTF-8";


/* font
*******************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap');
.notosans {
  font-family: 'Noto Sans JP', sans-serif;
}
.zenmaru {
  font-family: 'Zen Maru Gothic', serif;
}
.Roboto {
  font-family: 'Roboto', sans-serif;
}


/* 共通 color
*******************/
/* カラー
*******************/
.c-white {
  color: #ffffff !important;
}
.c-black {
  color: #1D2530 !important;
}
.c-red {
  color: #E81414 !important;
}


/* bgカラー
*******************/
.bg-white {
  background-color: #ffffff !important;
}
.bg-black {
  background-color: #1D2530 !important;
}
.bg-red {
  background-color: #E81414 !important;
}


/* html
*******************/
html {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
  color: #1D2530;
}
html * {
  box-sizing: border-box;
}

p, a, li, dd, dt, th, td {
  font-size: 1.6rem;
  line-height: 1.65;
}

.sp {
  display: none !important;
}

img {
  max-width: 100%;
}

.bold {
  font-weight: bold;
}

.block {
  display: block;
}

.pc_block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.lwrap {
  max-width: 120rem;
  width: 100%;
  margin: auto;
}

.contents .lwrap {
  padding: 15rem 0 0;
}

.tel a {
  pointer-events: none;
}

.imgCenter {
  display: block;
  margin: auto;
}


/* txt indent
*******************/
.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}


/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
}
.flex.col-2 .item {
  width: 48%;
  margin-right: 4%;
}
.flex.col-2 .item:nth-child(2n) {
  margin-right: 0;
}
.flex.col-3 {
  flex-wrap: wrap;
}
.flex.col-3 .item {
  width: 32%;
  margin-right: 2%;
}
.flex.col-3 .item:nth-child(3n) {
  margin-right: 0;
}
.flex.col-4 {
  flex-wrap: wrap;
}
.flex.col-4 .item {
  width: 23.5%;
  margin-right: 2%;
}
.flex.col-4 .item:nth-child(4n) {
  margin-right: 0;
}
.flex.col-5 {
  flex-wrap: wrap;
}
.flex.col-5 .item {
  width: 18.4%;
  margin-right: 2%;
}
.flex.col-5 .item:nth-child(5n) {
  margin-right: 0;
}


/* in animation
*******************/
.inAnime {
	visibility:hidden;
	opacity: 0;
	transform: translateY(10vh);
	transition: opacity 1.5s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.inAnime.on {
	visibility:visible;
	opacity: 1;
	transform: translateY(0px);
}


/* header
*******************/
.header {
  position: relative;
}
.header section {
  display: flex;
  align-items: center;
  height: 13rem;
}
.header .header-right {
  margin-left: auto;
}
.header-logo {
  position: absolute;
  left: 3rem;
  top: 5.5rem;
}
.header-logo a {
  width: 14.5rem;
  line-height: 1;
  display: block;
  text-decoration: none;
  color: #1D2530;
}
.btn-entry {
  position: fixed;
  z-index: 999;
  right: 2.5rem;
  top: 2.1rem;
  background: #FFFFFF;
  border: 0.5rem solid #FFFFFF;
  border-radius: 2.9rem;
}
.btn-entry a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 26rem;
  height: 7.8rem;
  padding-bottom: 0.5rem;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: #FFFFFF;
  background: #E81414;
  border: 0.4rem solid #E81414;
  border-radius: 2.4rem;
  overflow: hidden;
  transition: all 0.5s ease;
}
.btn-entry a:hover {
  color: #E81414;
}
.btn-entry a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  background-color: #F6F6FA;
  transform: skewX(-10deg) scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.btn-entry a:hover:before {
  left: -1rem;
  transform: skewX(-10deg) scaleX(1.1);
  transform-origin: left;
}
.btn-entry a span {
  z-index: 1;
}


/* breadcrumbs
*******************/
.breadcrumbs {
  width: 100%;
  background-color: #E81414;
}
.breadcrumbs .lwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 3rem;
}
.breadcrumbs .breadImg {
  width: 25rem;
}
.breadcrumbs .breadImg a {
  display: block;
  line-height: 1;
}
.breadcrumbs nav {
  padding-left: 2rem;
}
.breadcrumbs ol {
  list-style: none;
  padding-bottom: 0.4rem;
}
.breadcrumbs li {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
}
.breadcrumbs li:nth-child(n+2):before {
    padding: 0 5px;
    color: #ffffff;
    content: ">";
}
.breadcrumbs li a {
  text-decoration: none;
  color: #ffffff;
}


/* mv
*******************/
.mv {
  position: relative;
  top: -2.1vw;
  width: 100%;
  height: 50.71vw;
  overflow: hidden;
}
.mv-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50.71vw;
  background-image: url(../images/top/mv_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.mv-text {
  width: 58%;
  padding-bottom: 3.5%;
}


/* ttl
*******************/
.ttl {
  display: flex;
  align-items: center;
  flex-flow: column;
  padding-bottom: 6rem;
}
.ttl:after {
  content: "";
  display: inline-block;
  width: 8rem;
  height: 0.3rem;
  background-color: #E81414;
}
.ttl p:nth-of-type(1) {
  padding-bottom: 2.5rem;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  color: #E81414;
}
.ttl p:nth-of-type(2) {
  padding-bottom: 6rem;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.ttl-h2 {
  padding-bottom: 4rem;
  font-size: 3.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.ttl-text {
	padding-top: 1rem;
  text-align: center;
}
.ttl02 p {
  padding-bottom: 6rem;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}


/* button
*******************/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20.6rem;
  height: 3.8rem;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: #FFFFFF;
  background: #E81414;
  border: 0.22rem solid #E81414;
  border-radius: 1.9rem;
  overflow: hidden;
  transition: all 0.5s ease;
}
.btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1rem;
  width: 110%;
  height: 100%;
  background-color: #fff;
  transform: skewX(-10deg) scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.9rem);
  right: 0.7rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../images/common/btn_arrow01_white.svg);
  background-repeat: no-repeat;
  background-size: 1.8rem;
  background-position: center;
  transition: all 0.5s ease;
}
.btn span {
  position: relative;
}
.btn:hover,
.blog-card > a:hover .btn,
.project-card > a:hover .btn {
  color: #E81414;
}
.btn:hover:after,
.blog-card > a:hover .btn:after,
.project-card > a:hover .btn:after {
  background-image: url(../images/common/btn_arrow01_red.svg);
}
.btn:hover:before,
.blog-card > a:hover .btn:before,
.project-card > a:hover .btn:before {
  transform: skewX(-10deg) scaleX(1);
  transform-origin: left;
}
.btn02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 20.6rem;
  height: 14rem;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  color: #1D2530;
  background: #FFFFFF;
  border: 0.5rem solid #E81414;
  border-radius: 2rem;
  overflow: hidden;
  transition: all 0.5s ease;
}
.btn02 span {
  z-index: 1;
}
.btn02:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  background-color: #F6F6FA;
  transform: skewX(-10deg) scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
.btn02:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2.1rem);
  right: 1.8rem;
  width: 3.8rem;
  height: 3.8rem;
  background-image: url(../images/common/btn_arrow01_black.svg);
  background-repeat: no-repeat;
  background-size: 3.8rem;
  background-position: center;
  transition: all 0.5s ease;
}
.btn02:hover:before {
	left: -1rem;
  transform: skewX(-10deg) scaleX(1.1);
  transform-origin: left;
}
.btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3rem;
  width: 100%;
}


/* contents
*******************/
.content {
  margin-top: -1px;
  padding-bottom: 15rem;
}
.cont01 {
  background-image: url(../images/common/bg_white.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.cont02 {
  background-color: #F6F6FA;
  background-image: url(../images/common/bg_gray1.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.cont03 {
  background-color: #EAE8EE;
  background-image: url(../images/common/bg_gray2.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}
.cont05,
.cont07,
.cont10 {
  background-color: #F6F6FA;
}
.cont05,
.cont06,
.cont07 {
  padding-bottom: 7rem;
}
.cont08 {
  padding-bottom: 2rem;
}
.cont10 {
  padding-top: 4rem;
  padding-bottom: 12rem;
}
.cont-info {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding-bottom: 3rem;
  font-weight: 500;
  line-height: 2;
}


/* content - work
*******************/
.cont02-img {
  position: relative;
  width: 64rem;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}
.work-map01,
.work-map02,
.work-map03 {
  display: block;
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  width: 21rem;
  height: 21rem;
  border-radius: 50%;
}
.work-map01 {
  top: 2.5rem;
  left: 2rem;
}
.work-map02 {
  top: 2.5rem;
  left: 41.5rem;
}
.work-map03 {
  top: 31.5rem;
  left: 21.5rem;
}
.detail {
  display: flex;
  justify-content: space-between;
  padding: 8rem 0 4rem 0;
}
.detail-reverse {
  flex-direction: row-reverse;
}
.detail-number {
  padding: 2rem 0;
}
.detail-reverse .detail-number {
  padding: 2rem 0 2rem 2rem;
}
.detail-number h3 {
  display: inline-block;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}
.detail-number h3 span {
  display: block;
  font-size: 10.2rem;
  font-weight: 400;
  color: #E81414;
}
.detail-number h3 span.h3-01 {
  padding-left: 1rem;
}
.detail-text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem 6%;
  width: 100%;
  padding: 6rem 5rem 6rem;
  font-weight: 500;
  background-color: #FFFFFF;
  border-radius: 1.4rem;
}
.detail .ttl-h4 {
  width: 100%;
  font-size: 3.2rem;
  font-weight: 500;
  color: #666666;
}
.detail .ttl-h4:after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.6rem;
  margin-top: 2.5rem;
  background-color: #E81414;
}
.detail-box {
  width: 47%;
}
.detail-title {
  padding-bottom: 2.5rem;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}
.detail-title2 {
  padding-top: 5rem;
}
.detail-list {
  padding-left: 2rem;
  list-style-type: disc;
}
.detail-list li {
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.iconWork01 {
  margin-top: -3rem;
  padding-right: 1rem;
  width: 30rem;
}
.iconWork02 {
  margin-top: 2rem;
  padding-left: 2rem;
  width: 30rem;
}
.iconWork03 {
  margin-top: -2rem;
  padding-right: 1rem;
  width: 30rem;
}
.iconWork04 {
  width: 95%;
}
.zoomup-btn {
  cursor: pointer;
  display: block;
  position: relative;
}
.zoomup-btn:after {
  content: "+";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  padding: 0.5rem;
  font-size: 2.1rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background-color: #666666;
}


/* content - work - blog
*******************/
.cont03 .lwrap {
  position: relative;
}
.blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.blog:after {
    content: "";
    display: block;
    width: 31%;
    height: 0;
}
.blog-card {
  width: 31%;
  background-color: #FFFFFF;
  border-radius: 1.2rem;
  overflow: hidden;
}
.blog-img {
  width: 100%;
  overflow: hidden;
}
.blog-card > a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
  padding-bottom: 3.5rem;
}
.blog-card a .blog-img img {
  backface-visibility:hidden;
  vertical-align:top;
  transform: scale(1.001,1.001);
  transition: 1s all;
}
.blog-card a:hover .blog-img img {
  transform: scale(1.2,1.2);
}
.blog-ttl {
  padding: 2rem 3rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #666666;
}
.blog-text {
  padding-bottom: 3rem;
}
.blog-text p {
  padding: 0 3rem;
  font-size: 1.4rem;
  color: #1D2530;
}
.blog-card > a .btn {
  margin-top: auto;
}
.blog-btn {
  margin-top: 8rem;
}


/* project
*******************/
.project-card > a {
  display: flex;
  justify-content: start;
  padding-top: 6rem;
  text-decoration: none;
}
.voice-ttl {
  width: 17.5rem;
  padding: 3.6rem 0 4rem;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #E81414;
  text-align: center;
  border: 0.6rem solid #E81414;
  border-right: none;
  border-radius: 2rem 0 0 2rem;
}
.voice-info {
  flex: 1;
  position: relative;
  padding: 4rem 4rem 4rem 3rem;
  border: 0.6rem solid #CCCCCC;
  border-left: none;
  border-radius: 0 2rem 2rem 0;
}
.voice-client {
  color: #666666;
}
.voice-service {
  font-size: 2.8rem;
  font-weight: 700;
  color: #666666;
}
.voice-service span {
  padding-left: 0.8rem;
  font-size: 1.8rem;
}
.voice-text {
  padding-top: 2rem;
  color: #1D2530;
}
.voice-info .btn {
  position: absolute;
  top: 5.5rem;
  right: 4rem;
}


/* rules
*******************/
.rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 8rem;
	padding-top: 4rem;
}
.rules-card {
  padding: 0 0 7rem;
  border-bottom: 0.2rem solid #CCCCCC;
}
.rules-card:nth-of-type(11) {
  grid-row: 2 / 4;
  grid-column: 2 / 3;
  background-image: url(../images/top/forbis_kun.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.rules-number {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: #E81414;
}
.rules-number span {
  padding-left: 0.5rem;
  font-size: 3.6rem;
  font-weight: 500;
}
.rules-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #666666;
}
.rules-text {
  padding-top: 3rem;
  font-size: 1.5rem;
}


/* faq
*******************/
.faq {
  padding: 0;
}
.faq-parent {
  height: auto;
  margin-bottom: 2.5rem;
  border: 0.2rem solid #CCCCCC;
  border-radius: 2rem;
  overflow: hidden;
  transition: height 0.5s ease;
}
.faq-parent > span {
  position: relative;
  display: block;
  padding: 3.5rem 3.5rem 4rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 0.1rem solid #FFFFFF;
  cursor: pointer;
  transition: border 0.5s ease;
}
.faq-parent.active > span {
  border-bottom: 0.1rem solid #CCCCCC;
}
.faq-parent > span:after {
  position: absolute;
  right: 3.7rem;
  top: 4.2rem;
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url(../images/common/accordion_open.svg);
  background-repeat: no-repeat;
  background-size: 2rem auto;
  background-position: center;
}
.faq-parent.active > span:after {
  background-image: url(../images/common/accordion_close.svg);
}
.faq-child {
  padding: 3.5rem;
}
.faq-child > p {
  padding: 0 0 3rem;
  font-size: 1.4rem;
}
.faq-child ul,
.faq-child ol {
}
.faq-child .listDisc {
  padding-left: 2rem;
  list-style-type: disc;
}
.faq-child .lowerList {
  padding-top: 1rem;
  padding-left: 2rem;
}
.faq-child li {
  padding-bottom: 1rem;
  font-size: 1.4rem;
}
.faq-child .bdRight {
  display: block;
  margin-left: 2rem;
  padding-left: 2.5rem;
  background-image: url(../images/common/bd_right.svg);
  background-repeat: no-repeat;
  background-size: 1.6rem auto;
  background-position: top 0.5rem left;
}
.faq-child .indentLeft {
  padding-left: 2.5rem;
  font-size: 1.4rem;
}


/* company
*******************/
.company {
  display: flex;
  gap: 0 4rem;
  padding-bottom: 12rem;
}
.company-btn {
	width: 50%;
}
.company-btn a {
	width: 100%;
}


/* step
*******************/
.step {
  display: flex;
  gap: 0 4.4rem;
  padding-top: 5rem;
}
.step > div {
  position: relative;
  width: 25%;
  padding: 8rem 0 2.5rem;
  text-align: center;
  border: 0.2rem solid #CCCCCC;
  border-radius: 2rem;
  background-color: #FFFFFF;
}
.step > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 5.1rem;
  right: -2.1rem;
  width: 3.8rem;
  height: 3.8rem;
  background-color: #FFFFFF;
  border-top: 0.2rem solid #CCCCCC;
  border-right: 0.2rem solid #CCCCCC;
  transform: rotate(45deg);
}
.step > div:nth-of-type(4):before {
  display: none;
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5.7rem;
  left: calc(50% - 5.5rem);
  width: 11rem;
  height: 11rem;
  background-color: #FFFFFF;
  border: 0.5rem solid #E81414;
  border-radius: 5.5rem;
}
.step-icon img {
  width: 6rem;
  height: 6rem;
}
.step-text {
  font-size: 2rem;
  font-weight: 500;
}


/* entry
*******************/
.contact-wrap {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
}
.contact-wrap .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.contact-wrap .item .ttl {
  align-items: start;
  padding-bottom: 0;
  font-size: 1.6rem;
  font-weight: 500;
  width: 17.2rem;
}
.contact-wrap .item .ttl:after {
  display: none;
}
.contact-wrap .item > div {
  width: calc(100% - 17.2rem);
}
.contact-wrap input, .contact-wrap textarea {
  font-size: 1.6rem;
  width: 100%;
  border: 0.1rem solid #B5B5B5;
  padding: 1.5rem;
  background-color: #ffffff;
  line-height: 1.65;
}
.alignCenter {
  text-align: center;
}
.contact-wrap input[type=checkbox] {
  display: none;
}
.contact-wrap .checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 3rem;
  position: relative;
  width: auto;
  font-size: 1.6rem;
  color: #848484;
}
.contact-wrap .checkbox01::before {
  background: #fff;
  border: 0.1rem solid #707070;
  content: '';
  display: block;
  height: 1.6rem;
  left: 0;
  margin-top: -0.8rem;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 3px;
}
.contact-wrap .checkbox01::after {
  border-right: 0.2rem solid #707070;
  border-bottom: 0.2rem solid #707070;
  content: '';
  display: block;
  height: 0.9rem;
  left: 0.6rem;
  margin-top: -0.7rem;
  opacity: 0;
  position: absolute;
  top: calc(50% + 0.1rem);
  transform: rotate(45deg);
  width: 0.5rem;
}
.contact-wrap input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}
.contact-wrap .error {
    color: #E81414;
    font-size: 1.2rem;
    margin-bottom: .6rem;
}
.contact-wrap .checkbox01 a {
  font-size: 1.6rem;
  color: #848484;
}
.contact-wrap #submit {
  display: block;
  position: relative;
  width: 29rem;
  margin: 3rem auto 0;
  padding: 1.9rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #E81414;
  border-radius: 6rem;
}
.contact-wrap #submit:disabled {
  color: #B5B5B5;
  background-color: #EEEEEE;
}


/* footer
*******************/
.footer {
  border-top: 5px solid #E81414;
  padding: 6.5rem 0 0;
}
.footer-nav {
  padding-bottom: 3.5rem;
  margin-bottom: 4.5rem;
  border-bottom: 1px solid #707070;
}
.footer-nav > .flex {
  justify-content: space-between;
}
.footer-nav-list a {
  text-decoration: none;
  color: #1D2530;
}
.footer-nav-list dt {
  margin-bottom: 2.5rem;
}
.footer-nav-list dt a {
  font-size: 1.6rem;
}
.footer-nav-list dd {
  margin-bottom: .5rem;
}
.footer-nav-list dd:last-child {
  margin-bottom: 0;
}
.footer-nav-list dd a {
  font-size: 1.3rem;
}
.footer-nav-list .lh-min {
  line-height: 1.2;
}
.footer-nav-list .lh-min a {
  line-height: 1.2;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
}
.footer-logo {
  width: 20rem;
}
.footer .companyname {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.footer .companyaddress {
  font-size: 1.4rem;
  color: #686868;
  line-height: 1.5714;
}
.footer small {
  background-color: #E81414;
  color: #ffffff;
  margin-top: 6rem;
  display: block;
  text-align: center;
  font-size: 1rem;
  padding: 1rem 0;
}


/* popup
*******************/
.popup {
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.popup.open {
  display: flex;
}
.popup span {
  cursor: pointer;
  position: relative;
}
.popup span:after {
  content: "×";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  padding: 1.5rem 1.5rem 1.7rem;
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  background-color: #666666;
}


/* page - blog
*******************/
body.pageBlog .blog-list {
  background-color: #F6F6FA;
  padding-bottom: 15rem;
}
body.pageBlog .blog-list .lwrap {
  padding: 10rem 0 4rem;
}
body.pageBlog .blog-list .blog {
  flex-wrap: wrap;
  gap: 4rem 0;
  justify-content: space-between;
  top: 0;
}
body.pageBlog .card {
  width: 100%;
  padding: 25rem 0 15rem;
  background-color: #F6F6FA;
}
body.pageBlog .card .lwrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 4.5rem;
  padding: 0 0 10rem;
  background-color: #FFFFFF;
  border-radius: 1.4rem;
}
body.pageBlog .card-img-top {
  position: relative;
  width: 100%;
  max-width: 70rem;
  height: 20rem;
  margin: 0 auto;
}
body.pageBlog .card-img-top img {
  position: absolute;
  top: -20rem;
  left: 0;
  width: 100%;
  border-radius: 2rem;
}
body.pageBlog .card-date {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding-top: 8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #999999;
}
body.pageBlog .card-ttl {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding-bottom: 8rem;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.5;
}
body.pageBlog .card-content-list {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto 4rem;
  padding: 3rem 4rem;
  background-color: #EAE8EE;
  border-radius: 1.6rem;
}
body.pageBlog .card-content-list p {
  padding-bottom: 1rem;
  font-size: 1.4rem;
  color: #666666;
}
body.pageBlog .card-content-list li {
  margin-left: 2rem;
}
body.pageBlog .card-content-list li a {
  text-decoration: none;
  color: #E81414;
}
body.pageBlog .card-info {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding-bottom: 3rem;
  font-weight: 500;
  line-height: 2;
}
body.pageBlog .card-info a {
	text-decoration: none;
	color: #1D2530;
	line-height: 1.8;
}
body.pageBlog .card-info a:hover {
	color: #E81414;
}
body.pageBlog .blog-btn {
  margin-top: 5rem;
}


@media screen and (min-width: 951px) and (max-width: 1120px) {
  
}


@media screen and (min-width: 751px) and (max-width: 1130px) {
  /* footer
  *******************/
  .footer-nav > .flex{
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
    max-width: 80rem;
    margin: auto;
  }
  .footer-nav > .flex .item{
  }
}


@media screen and (min-width: 751px) and (max-width: 1260px) {
  .lwrap {
      margin: 0 3rem 4.5rem;
      width: auto;
  }
  
  
    /* page - blog
  *******************/
  body.pageBlog .card {
    padding: 18rem 3rem 15rem;
  }
  body.pageBlog .card .lwrap {
    margin: 0 auto 4.5rem;
    padding: 0 0 5rem;
  }
  body.pageBlog .card-img-top {
    position: relative;
    width: 100%;
    max-width: 50rem;
    height: 12rem;
    margin: 0 auto;
  }
  body.pageBlog .card-img-top img {
    position: absolute;
    top: -15rem;
    left: 0;
    width: 100%;
    border-radius: 2rem;
  }
  body.pageBlog .card-date {
    padding-top: 6rem;
    font-size: 1.2rem;
  }
  body.pageBlog .card-ttl {
    padding-bottom: 6rem;
    font-size: 3.0rem;
  }
  body.pageBlog .card-content {
    padding: 0 8rem;
  }
}


@media screen and (min-width: 751px) and (max-width: 1120px) {
  /* content - work
  *******************/
  .detail {
    display: block;
    padding: 10rem 0 0;
  }
  .detail-text {
    width: 100%;
  }
  .detail-number {
    padding-bottom: 4rem;
    text-align: center;
  }
  .detail-number h3 {
    display: block;
  }
  .iconWork01 {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: -15rem;
    padding-right: 0;
    width: 40rem;
  }
  .iconWork02 {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    margin-bottom: -10rem;
    padding-left: 0;
    width: 36rem;
  }
  .iconWork03 {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    margin-bottom: -10rem;
    padding-right: 0;
    width: 35rem;
  }
  
  
  /* rules
  *******************/
  .rules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 8rem;
    padding-top: 4rem;
  }
  .rules-card {
    padding: 0 0 7rem;
    border-bottom: 0.2rem solid #CCCCCC;
  }
  .rules-card:nth-of-type(11) {
    grid-row: auto;
    grid-column: span 2;
    height: 35vw;
    background-size: 30% auto;
    border: none;
  }
  
  
  /* faq
  *******************/
  .cont09 {
    padding-bottom: 10rem;
  }
  .cont09 .lwrap {
    padding: 10rem 0 0;
  }
  
  
  /* company
  *******************/
  .cont10 {
    padding-top: 0;
    padding-bottom: 10rem;
  }
  
  
  /* step
  *******************/
  .step {
    display: flex;
    flex-flow: column;
    gap: 14rem 0;
    padding-top: 6rem;
  }
  .step > div {
    width: 40%;
    margin: 0 auto;
    padding: 7rem 0 3rem;
    border: 0.3rem solid #CCCCCC;
    border-radius: 3rem;
  }
  .step > div:before {
    top: auto;
    bottom: -3.4rem;
    right: calc(50% - 3rem);
    width: 6rem;
    height: 6rem;
    border-top: 0.3rem solid #CCCCCC;
    border-right: 0.3rem solid #CCCCCC;
    transform: rotate(135deg);
  }
  .step > div:nth-of-type(4):before {
    display: none;
  }
  .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6.1rem;
    left: calc(50% - 6rem);
    width: 12rem;
    height: 12rem;
    background-color: #FFFFFF;
    border: 0.4rem solid #E81414;
    border-radius: 50%;
  }
  .step-icon img {
    width: 6rem;
    height: 6rem;
  }
  .step-text {
    z-index: 1;
    position: relative;
    font-size: 2.1rem;
    font-weight: 500;
  }
}


@media screen and (min-width: 751px) and (max-width: 950px) {
  /* content - work - blog
  *******************/
  .cont03 .lwrap {
    margin-top: 0;
  }
  .blog {
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 8rem 0;
  }
  .blog-card {
    width: 70%;
    margin: 0 auto;
    border-radius: 3rem;
  }
  .blog-btn {
    margin-top: 0;
  }
  
  
  /* content - project
  *******************/
  .voice-service span {
    display: block;
    padding-left: 0;
  }
  .voice-info .btn {
    top: 7.2rem;
  }
}




/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  
  
  /* html
  *******************/
  html {
    font-size: 1.33333vw;
  }
  
  p, a, li, dd, dt, th, td {
    font-size: 2.8rem;
  }

  .pc {
    display: none !important;
  }
  
  .sp {
    display: block !important;
  }
  
  .sp-inline {
    display: inline !important;
  }
  
  .lwrap {
      margin: 0 3rem 4.5rem;
      width: auto;
  }
  
  .tel a {
    pointer-events: auto;
  }
  
  
  /* header
  *******************/
  .header-logo {
    position: absolute;
    top: 8.5rem;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .header-logo.hide {
    opacity: 0;
    pointer-events: none;
  }
  .header-logo a {
    width: 30.7rem;
  }
  .btn-entry {
    right: 2.5rem;
    top: 4rem;
    border: 1rem solid #FFFFFF;
    border-radius: 3.5rem;
  }
  .btn-entry a {
    width: 26rem;
    height: 10rem;
    padding-bottom: 0.3rem;
    font-size: 3.1rem;
    background: #E81414;
    border: 0.4rem solid #E81414;
    border-radius: 3rem;
  }
  .btn-entry a:hover {
    color: #FFFFFF;
  }
  .btn-entry a:before {
    display: none;
  }
  
  
  /* breadcrumbs
  *******************/
  .breadcrumbs .lwrap {
    display: flex;
    flex-flow: column;
    gap: 1rem 0;
    padding: 4rem 4rem 3rem;
  }
  .breadcrumbs .breadImg {
    width: 60vw;
  }
  .breadcrumbs nav {
    padding-left: 0;
    text-align: center;
  }
  .breadcrumbs li,
  .breadcrumbs li a {
    font-size: 2.1rem;
  }
  
  
  /* mv
  *******************/
  .mv {
    top: -5vw;
    width: 100%;
    height: 100vw;
  }
  .mv-bg {
    width: 100%;
    height: 100%;
    background-image: url(../images/top/sp_mv_bg.png);
  }
  .mv-text {
    width: 100%;
    padding-bottom: 0;
  }
  
  
  /* ttl
  *******************/
  .ttl {
    padding-bottom: 12rem;
  }
  .ttl:after {
    width: 10rem;
    height: 0.5rem;
  }
  .ttl p:nth-of-type(1) {
    padding-bottom: 3rem;
    font-size: 6rem;
  }
  .ttl p:nth-of-type(2) {
    padding-bottom: 7rem;
    font-size: 2.4rem;
  }
  .ttl-h2 {
    padding-bottom: 8rem;
  }
  .ttl-text {
    padding-top: 0;
  }
  .ttl02 p {
    padding-bottom: 6rem;
    font-size: 3rem;
  }
  
  
  /* button
  *******************/
  .btn {
    width: 40rem;
    height: 7rem;
    margin: 0 auto;
    font-size: 2.6rem;
    border: none;
    border-radius: 4rem;
    transition: none;
  }
  .btn:before {
    display: none;
  }
  .btn:after {
    top: calc(50% - 2rem);
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
    background-size: 3.2rem;
    transition: none;
  }
  .btn:hover,
  .blog-card > a:hover .btn,
  .project-card > a:hover .btn {
    color: #FFFFFF;
  }
  .btn:hover:after,
  .blog-card > a:hover .btn:after,
  .project-card > a:hover .btn:after {
    background-image: url(../images/common/btn_arrow01_white.svg);
  }
  .btn02 {
    width: 20.6rem;
    height: 14rem;
    margin: 0 auto;
    font-size: 3rem;
    border: 0.8rem solid #E81414;
    border-radius: 3rem;
    transition: none;
  }
  .btn02:before {
    display: none;
  }
  .btn02:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 2.3rem);
    right: 2rem;
    width: 4.6rem;
    height: 4.6rem;
    background-size: 4.4rem;
    transition: none;
  }
  .btn-box {
    display: flex;
    flex-flow: column;
    gap: 0 3rem;
  }
  
  
  /* contents
  *******************/
  #contents {
    margin: 0;
    padding-top: 8rem;
  }
  .card-info {
    padding: 0 4rem 5rem;
  }
  
  
  /* content - work
  *******************/
  .cont01 .lwrap {
    margin-bottom: 0;
    padding: 10rem 0 0;
  }
  .detail {
    display: block;
    padding: 8rem 0 2rem 0;
  }
  .detail-number {
    padding-bottom: 4rem;
    text-align: center;
  }
  .detail-number:nth-of-type(1) {
    padding-bottom: 0;
  }
  .detail-reverse .detail-number {
      padding: 0 0 2rem 0;
  }
  .detail-number h3 {
    display: block;
    font-size: 4.6rem;
  }
  .detail-number h3 span {
    padding-bottom: 1rem;
    font-size: 15rem;
  }
  .detail-text {
    display: block;
    width: 100%;
    padding: 8rem 6rem;
    border-radius: 3rem;
  }
  .detail .ttl-h4 {
    font-size: 3.6rem;
  }
  .detail .ttl-h4:after {
    width: 5rem;
    height: 0.6rem;
    margin-top: 2.5rem;
  }
  .detail-box {
    width: 100%;
    padding-top: 9rem;
  }
  .detail-title {
    padding-bottom: 3rem;
    font-size:3rem;
  }
  .detail-title2 {
    padding-top: 7rem;
  }
  .detail-list {
    padding-left: 4rem;
  }
  .detail-list li {
    margin-bottom: 3rem;
    line-height: 1.5;
  }
  .iconWork01 {
    margin-top: 2rem;
    padding-right: 0;
    width: 50rem;
  }
  .iconWork02 {
    margin-top: 2rem;
    padding-left: 0;
    width: 50rem;
  }
  .iconWork03 {
    margin-top: 2rem;
    padding-right: 0;
    width: 50rem;
  }
  .iconWork04 {
    width: 100%;
  }
  
  
  /* content - work - blog
  *******************/
  .cont03 .lwrap {
    margin-top: 0;
  }
  .blog {
    top: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 8rem 0;
  }
  .blog-card {
    width: 90%;
    margin: 0 auto;
    border-radius: 3rem;
  }
  .blog-card > a {
    padding-bottom: 6rem;
  }
  .blog-card a:hover .blog-img img {
    transform: scale(1.001,1.001);
  }
  .blog-ttl {
    padding: 5rem 4rem 4rem;
    font-size: 3.2rem;
  }
  .blog-text {
    padding-bottom: 5rem;
  }
  .blog-text p {
    padding: 0 4rem;
    font-size: 2.8rem;
    color: #1D2530;
  }
  .blog-card > a .btn {
    margin-top: auto;
  }
  .blog-btn {
    margin-top: 2rem;
  }
  
  
  /* project
  *******************/
  .cont04 .lwrap {
      margin: 0 3rem 3.5rem;
  }
  .project-card > a {
    padding-top: 6rem;
  }
  .voice-ttl {
    width: 16rem;
    padding: 6.4rem 0 0;
    font-size: 2.8rem;
    border: 0.8rem solid #E81414;
    border-right: none;
    border-radius: 3rem 0 0 3rem;
  }
  .voice-info {
    flex: 1;
    padding: 6rem 4rem 6rem 3rem;
    border: 0.8rem solid #CCCCCC;
    border-left: none;
    border-radius: 0 3rem 3rem 0;
  }
  .voice-client {
    font-size: 2.6rem;
  }
  .voice-service {
    font-size: 3.8rem;
    font-weight: 700;
    color: #666666;
  }
  .voice-text {
    padding-top: 5rem;
    color: #1D2530;
  }
  .voice-info .btn {
    position: static;
    top: 0;
    right: 0;
    margin: 5rem auto 0 0;
  }
  
  
  /* rules
  *******************/
  .cont08 .lwrap {
    margin: 0 3rem 0;
  }
  .rules {
    display: block;
    padding-top: 0;
  }
  .rules-card {
    padding: 7rem 0 8rem;
    border-bottom: 0.2rem solid #CCCCCC;
  }
  .rules-card:nth-of-type(11) {
    height: 90vw;
    background-image: url(../images/top/forbis_kun.png);
    background-size: 70% auto;
    background-position: center right -8vw;
    border-bottom: none;
  }
  .rules-number {
    font-size: 2.6rem;
  }
  .rules-number span {
    padding-left: 1rem;
    font-size: 6.4rem;
  }
  .rules-ttl {
    padding: 1rem 0 4rem;
    font-size: 3.0rem;
  }
  .rules-text {
    padding-top: 3rem;
    font-size: 2.6rem;
  }
  
  
  /* faq
  *******************/
  .cont09 .lwrap {
    margin: 0 3rem 0;
  }
  .faq-parent {
    margin-bottom: 3rem;
    border-radius: 2rem;
  }
  .faq-parent > span {
    padding: 4rem 4rem 4rem;
    font-size: 2.4rem;
    border-bottom: 0.2rem solid #FFFFFF;
  }
  .faq-parent.active > span {
    border-bottom: 0.2rem solid #CCCCCC;
  }
  .faq-parent > span:after {
    right: 3.7rem;
    top: 4.4rem;
    width: 3rem;
    height: 3rem;
    background-size: 3rem auto;
  }
  .faq-child {
    padding: 4rem;
  }
  .faq-child > p {
    font-size: 2.4rem;
  }
  .faq-child ul,
  .faq-child ol {
  }
  .faq-child .listDisc {
    padding-left: 3.5rem;
    list-style-type: disc;
  }
  .faq-child .lowerList {
    padding-top: 3rem;
    padding-left: 3.5rem;
  }
  .faq-child li {
    padding-bottom: 3rem;
    font-size: 2.4rem;
  }
  .faq-child .bdRight {
    display: block;
    margin-left: 2rem;
    padding-left: 2.5rem;
    background-image: url(../images/common/bd_right.svg);
    background-repeat: no-repeat;
    background-size: 1.6rem auto;
    background-position: top 1.1rem left;
  }
  .faq-child .indentLeft {
    padding-left: 2.5rem;
    font-size: 2.4rem;
  }
  
  
  /* company
  *******************/
  .cont10 .lwrap {
    padding: 12rem 0 0;
  }
  .company {
    display: flex;
    flex-flow: column;
    gap: 4rem 0;
    padding-bottom: 16rem;
  }
  .company-btn {
    width: 90%;
    margin: 0 auto;
  }
  
  
  /* step
  *******************/
  .step {
    display: flex;
    flex-flow: column;
    gap: 16rem 0;
    padding-top: 8rem;
  }
  .step > div {
    width: 60%;
    margin: 0 auto;
    padding: 10rem 0 4rem;
    border: 0.4rem solid #CCCCCC;
    border-radius: 3rem;
  }
  .step > div:before {
    top: auto;
    bottom: -4.4rem;
    right: calc(50% - 4rem);
    width: 8rem;
    height: 8rem;
    border-top: 0.4rem solid #CCCCCC;
    border-right: 0.4rem solid #CCCCCC;
    transform: rotate(135deg);
  }
  .step > div:nth-of-type(4):before {
    display: none;
  }
  .step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8rem;
    left: calc(50% - 8rem);
    width: 16rem;
    height: 16rem;
    background-color: #FFFFFF;
    border: 0.7rem solid #E81414;
    border-radius: 8rem;
  }
  .step-icon img {
    width: 8rem;
    height: 8rem;
  }
  .step-text {
    z-index: 1;
    position: relative;
    font-size: 3.0rem;
    font-weight: 500;
  }
  
  
  /* entry
  *******************/
  .contact-wrap .error {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .contact-wrap .item {
    display: block;
    margin-bottom: 2rem;
  }
  .contact-wrap .item .ttl {
    font-size: 2.8rem;
    width: 100%;
    margin-bottom: .6rem;
  }
  .contact-wrap .item > div {
    width: 100%;
  }
  .contact-wrap input, .contact-wrap textarea {
    font-size: 2.8rem;
  }
  .contact-wrap textarea {
    min-height: 48rem;
  }
  .contact-wrap select {
    min-height: 7.1rem;
    font-size: 2.8rem;
  }
  .contact-wrap .checkbox01 {
    font-size: 2.8rem;
    line-height: 2;
    text-align: left;
    padding: 0 6rem;
  }
  .contact-wrap .checkbox01::before {
    width: 2.8rem;
    height: 2.8rem;
    margin-top: -.8rem;
    border-radius: .3rem;
  }
  .contact-wrap .checkbox01::after {
    width: 1rem;
    height: 1.8rem;
    left: 1.2rem;
    margin-top: -1.1rem;
  }
  .contact-wrap .checkbox01 a {
    font-size: 2.8rem;
  }
  .contact-wrap .selectbox::after {
    width: .8rem;
    height: .8rem;
    border-bottom-width: .2rem;
    border-right-width: .2rem;
  }
  .contact-wrap #submit {
    font-size: 2.6rem;
    color: #FFFFFF;
    width: 100%;
    margin: 6rem auto 3rem;
    padding: 3.6rem 0;
    -webkit-appearance: none;
  }
  .contact-wrap #submit::after {
    width: .89rem;
    height: 1.7rem;
    right: 5rem;
  }
  .contact-wrap p.alignCenter {
    font-size: 2.4rem;
  }
  
  
  /* footer
  *******************/
  .footer {
    border-width: 1rem;
    padding: 10rem 0 0;
  }
  .footer-logo {
    margin: auto;
    width: 28rem;
    margin-bottom: 9.5rem;
  }
  .footer-nav {
    padding-bottom: 11.5rem;
    margin-bottom: 11.5rem;
  }
  .footer-nav > .flex {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-nav > .flex .item {
    width: 45%;
    margin-bottom: 13rem;
  }
  .footer-nav > .flex .item:nth-child(odd) {
    width: 50%;
  }
  .footer-nav > .flex .item:nth-child(2n) {
    width: 45%;
  }
	.footer-nav > .flex .item:last-child() {
		margin-bottom: 0;
	}
  .footer-nav-list dt {
    line-height: 1;
    margin-bottom: 2rem;
	  font-size: 3rem;
	  font-weight: 500;
	  line-height: 1.65;
  }
  .footer-nav-list dt a {
    font-size: 3rem;
    font-weight: 500;
  }
  .footer-nav-list dd {
    line-height: 1;
    margin-left: 2rem;
    margin-bottom: 2.5rem;
  }
  .footer-nav-list dd a {
    font-size: 2.4rem;
    font-weight: 500;
  }
  .footer .companyname {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
  }
  .footer .companyaddress {
    font-size: 2.4rem;
    font-weight: 500;
    color: #1D2530;
    line-height: 1.8;
  }
  .footer small {
    margin-top: 10rem;
    font-size: 2.4rem;
    padding: 1.5rem 0 10.5rem;
  }
  .home .footer small, .page-voice .footer small {
    padding: 1.5rem 0;
  }
  
  
  /* page - blog
  *******************/
  body.pageBlog .card {
    padding: 0 0 10rem;
  }
  body.pageBlog .card .lwrap {
    border-radius: 0;
  }
  body.pageBlog .card-img-top {
    max-width: 100%;
    height: auto;
  }
  body.pageBlog .card-img-top img {
    position: static;
    top: 0;
    border-radius: 0;
  }
  body.pageBlog .card-date {
    padding: 8rem 4rem 1rem;
    font-size: 2.6rem;
  }
  body.pageBlog .card-ttl {
    padding: 0 4rem 8rem;
  }
}


