/* base */

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}

*,
::before,
::after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background-color: #FFFFFF;
	color: #333333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.87;
}

html, body {
	overflow-x: hidden;
}

.wrapper {
	overflow: hidden;
}

a {
	-webkit-transition: all 0.5s ease-in 0s;
	color: inherit;
	text-decoration: none;
	transition: all 0.5s ease-in 0s;
}

img {
	vertical-align: bottom;
	object-fit: cover;
}

li {
	list-style: none;
}

/* component */

.inner {
	margin: 0 auto;
	/* max-width: calc(1106px + 5% * 2); */
	/* padding: 0 16px; */
	width: 100%;
	padding: 80px 0;
}

.br {
	display: none;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.error {
	color: red;
	font-size: 0.9rem;
}

.section-ttl {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 3.6rem;
	font-weight: 900;
	font-style: normal;
	letter-spacing: 0.05em;
	line-height: 1.33;
	padding-bottom: 2.4rem;
	padding: 0 20px 60px;
	text-align: center;
}

.txt--xxs {
	font-size: 1.8rem;
}

.txt--xs {
	font-size: 2.4rem;
}

.txt--sm {
	font-size: 3rem;
}

.txt--md {
	font-size: 3.6rem;
}

.txt--lg {
	font-size: 4rem;
}

.txt--xlg {
	font-size: 4.8rem;
}

.txt--xxlg {
	font-size: 6.4rem;
}

.center {
	text-align: center;
}

.left {
	text-align: left;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

/* ----------------------------------------
btn
---------------------------------------- */
.fv__cta {
	padding: 8px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 2rem;
	text-align: left;
	line-height: 1.5;
}

.last__cta {
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	text-align: left;
	line-height: 1.5;
	padding-bottom: 80px;
}

.btn {
	width: 50%;
	max-width: 320px;
	height: 100%;
	color: #EF5A24;
	background-color: #FFFFFF;
	font-weight: 700;
	font-size: 1.8rem;
	border-radius: 10px;
	padding: 16px 20px 16px 105px;
	box-shadow: 0px 5px 0px 0px #CCCCCC;
	text-align: left;
	position: relative;
}

.btn:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #CCCCCC;
	transition: .2s;
}

.btn span {
	display: block;
	font-size: 1.2rem;
}

.btn-left {
	padding-top: 22px;
	padding-bottom: 19px;
}

.btn-mail {
	padding-top: 22px;
	padding-bottom: 19px;
}

.btn-left::before,
.btn-right::before,
.btn-mail::before {
	position: absolute;
    content: "";
    display: inline-block;
    background-size: cover;
    background-repeat: no-repeat;
    width: 70px;
    height: 70px;
}

.btn-left::before {
    background-image: url('../img/cta-left.png');
	top: -8px;
	left: 14px;
}

.btn-right::before {
	background-image: url('../img/cta-right.png');
	top: 0;
	left: 16px;
}

.btn-mail::before {
	background-image: url('../img/cta-mail.png');
	top: 6px;
	left: 24px;
	width: 51px;
	height: 53px;
}


/* ----------------------------------------
header
---------------------------------------- */
header {
	width: 100%;
	position: fixed;
	top: 0;
	background-color: #FFFFFF;
	box-shadow: 0px 5px 10px 0px #0000001A;
	z-index: 1000;
}

.header__inner {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {
	width: 100%;
	max-width: 263px;
}

.header__logo img {
	width: 100%;
	max-width: 263px;
}

.nav__inner ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.nav__inner li {
	padding: 1rem;
}

/* ----------------------------------------
menu
---------------------------------------- */
@media screen and (max-width: 768px) {
	.hamburger {
        width: 30px;
        height: 25px;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger span {
        display: block;
        height: 3px;
        background: #333;
        margin: 6px 0;
        transition: 0.3s;
    }

	.hamburger.active span {
		margin: 3px 0;
	}

    .nav__drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.3s;
        z-index: 1000;
        padding: 60px 20px;
    }

    .nav__drawer ul {
        list-style: none;
        padding: 0;
    }

    .nav__drawer li {
        margin: 20px 0;
    }

    .nav__drawer a {
        text-decoration: none;
        font-size: 1.6rem;
        color: #333;
    }

	.nav__drawer img {
		width: 100%;
		max-width: 160px;
		margin-top: 20px;
	}

    /* メニューが開いている時 */
    .nav__drawer.open {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }
}


/* ----------------------------------------
fv
---------------------------------------- */
.fv {
	background: url(../img/bg-fv.jpg) no-repeat center center/cover;
	margin-top: 90px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	color: #FFFFFF;
}

.fv__inner {
	max-width: 1080px;
	height: 580px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 15px;
	padding-right: 15px;
}

.fv__ttl {
	font-size: 6.2rem;
	font-weight: 900;
	padding-bottom: 20px;
}

.fv__sub {
	font-size: 3.2rem;
	line-height: 1.5;
	font-weight: 900;
	padding-bottom: 40px;
}

.fv__text {
	font-size: 2rem;
	line-height: 2;
	font-weight: 700;
	padding-bottom: 40px;
}

/* ----------------------------------------
worries
---------------------------------------- */
.worries {
	background: linear-gradient(to bottom, #FFFFFF, #E5F3FF);
}

.worries__inner {
	width: 86%;
	max-width: 888px;
	text-align: center;
}

.worries__ttl {
	padding-bottom: 24px;
}

.worries__box {
	position: relative;
	background-color: #FFFFFF;
}

.worries__arrow {
	width: 220px;
	margin: 40px 0;
}

.worries__inner dl {
	text-align: left;
	display: flex;
	flex-direction:column ;
	justify-content: flex-start;
	align-items: left;
	gap: 15px;
	box-shadow: 0px 0px 10px 0px #3E527C33;
	padding: 25px;
}

.worries__inner dt {
	font-size: 2rem;
	color: #3E527C;
	font-weight: bold;
}

.worries__inner dt::before{
	content: "";
	display: inline-block;  
	background-image: url('../img/icon-check-gy.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 1em;
	height: 1em;
	margin-right: 1rem;
}

.worries__inner dd {
	font-size: 1.6rem;
	padding-bottom: 10px;
}

.worries__inner dd:not(:last-child) {
	background-size: 12px 1px;
	background-image: linear-gradient(to right, #CCCCCC 6px, transparent 6px);
	background-repeat: repeat-x;
	background-position: left bottom;
}

.worries__img {
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translateY(-40%);
	max-width: 135px;
}

.worries__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
}

.worries__messege {
	display: inline-block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 3.6rem;
	font-weight: 700;
	/* border-bottom:  #3E527C 6px solid; */
	background: linear-gradient(transparent 92%, #0067CF 0%);
	display: inline;
	padding-bottom: 2px;
}

.worries__messege strong {
	font-size: 4rem;
	color: #0067CF;
}


/* ----------------------------------------
point
---------------------------------------- */
.point {
	background: url(../img/bg-pattern.jpg) no-repeat center center/cover;
}

.point__inner {
	max-width: 1080px;
	text-align: center;
}

.point__ttl {
	color: #EF5A24;
}

.point__sub {
	display: inline-block;
	font-size: 2rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	position: relative;
	padding-bottom: .5rem;
}

.point__sub strong {
	font-size: 2.8rem;
	font-weight: 700;
	color: #EF5A24;
}

.point__sub::before,
.point__sub::after {
	position: absolute;
	content: '';
	width: 3px;
	height: 40px;
	background-color: #EF5A24;
	bottom: -2px;
}

.point__sub::before {
	margin-right: 30px;
	transform: rotate(-35deg);
	left: -40px;
}

.point__sub::after {
	margin-left: 30px;
	transform: rotate(35deg);
}
	
.point__box h3 {
	font-size: 1.8rem;
	font-weight: 700;
}

.point__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding-left: 15px;
	padding-right: 15px;
}

.point__box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	box-shadow: 0px 0px 10px 0px #0000001A;
	padding: 10px;
	height: 100%;
	gap: 15px;
}

.point__box h3 {
	font-size: 1.8rem;
	font-weight: 700;
	padding: 1.3rem 0 1rem;
	display: flex;
	align-items: center;
}

.point__box h3::before{
	content: "";
	display: inline-block;  
	background-size: cover;
	background-repeat: no-repeat;
	width: 54px;
	height: 54px;
	margin-right: 10px;
}

.point__box:nth-of-type(1) h3::before {
	background-image: url('../img/point-management.png');
}
.point__box:nth-of-type(2) h3::before {
	background-image: url('../img/point-calculator.png');
}
.point__box:nth-of-type(3) h3::before {
	background-image: url('../img/point-factory.png');
}

.point__box p {
	width: 100%;
	font-size: 1.5rem;
	color: #FFFFFF;
	background-color: #EF5A24;
	padding: 16px;
	line-height: 1.5;
}

.p2 p {
	padding: 5px;	
}

.point__box ul {
	font-size: 1.7rem;
	padding: 16px;
	list-style-type: disc;
	text-align: left;
}

.point__box  li {
	list-style-type: inherit;
}


/* ----------------------------------------
cta
---------------------------------------- */
.cta-area01 {
	padding: 60px 0;
	background-color: #EF5A24;
}

.cta__inner01 {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 80%;
	margin: 0 auto;
}
.cta__textarea01 {	
	position: relative;
	padding-left: 10%;
	text-align: center;
	line-height: 1.5;
}

.cta__inner01 img {
	width: 210px;
	position: absolute;
	bottom: -60px;
	left: -17%;
}

.cta__inner01 p {
	font-size: 2.8rem;
	font-weight: 700;
	color: #FFFFFF;

}

.balloon {
  position: relative;
  display: inline-block;
  margin-bottom: 1.8em;
  padding: 7px 20px;
  min-width: 120px;
  max-width: 100%;
  color: #333333;
  font-size: 16px;
  background: #FFFFFF;
  border-radius: 80px;
  box-shadow: 0px 0px 10px 0px #00000040;

}

.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #FFFFFF;
}

.balloon p {
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 2rem;
}


/* ----------------------------------------
cta01
---------------------------------------- */
.request {
	background: url(../img/bg-pattern-request.jpg) no-repeat center center/cover;
}

.request__inner {
	padding: 80px 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 0;
}

.request__inner::after {
	position: absolute;
	content: "";
	background-image: url('../img/request-object.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	bottom: 0;
	right: 30%;
	z-index: 1;
	width: 350px;
	height: 458px;
}

.request__img {
	width: 57%;
	max-width: 800px;
	z-index: 0;
}

.request__img img {
	width: 100%
}

.request__text-area {
	width: calc(100% - 63%);
	margin-left: 2%;
}

.request-ttl {
	padding: 40px;
	text-align: center;
}

.request__inner dt {
	font-size: 2rem;
	color: #FFFFFF;
	background-color: #EF5A24;
	font-weight: bold;
	pad: 10px;
	padding: 2px 10px;
	margin-bottom: 20px;
}

.request__inner dt::before{
	content: "";
	display: inline-block;  
	background-image: url('../img/icon-check-wh.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 1em;
	height: 1em;
	margin-right: 1rem;
}

.request__inner dd {
	padding-bottom: 40px;
}


/* ----------------------------------------
cta02
---------------------------------------- */
.cta-area02 {
	background: url(../img/bg-plaid.jpg) no-repeat center center/cover;
}

.cta02__inner {
	position: relative;
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.cta02__ttl {
	color: #EF5A24;
	font-size: 3.6rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	padding-bottom: 26px;
}

.cta02__sub {
	display: inline-block;
	font-size: 2rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	position: relative;
	padding-bottom: .5rem;
}

.cta02__sub::before,
.cta02__sub::after {
	position: absolute;
	content: '';
	width: 3px;
	height: 40px;
	background-color: #EF5A24;
	bottom: -2px;
}

.cta02__sub::before {
	margin-right: 30px;
	transform: rotate(-35deg);
	left: -40px;
}

.cta02__sub::after {
	margin-left: 30px;
	transform: rotate(35deg);
}

.cta02__tel {
	width: 80%;
	max-width: 966px;
	color: #FFFFFF;
	background-color: #EF5A24;
	border-radius: 10px;
	text-align: center;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 45px;
	position: relative;
}

.cta02__inner img {
	width: 144px;
	position: absolute;
	bottom: 20px;
	left: 50px;
}

.cta02__wrap {
	padding-left: 200px;
	text-align: left;
}

.cta02__item01 {
	font-size: 1.8rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	padding-bottom: 6px;
}

.cta02__item02 {
	font-size: 4.8rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.2;
}

.cta02__item03 {
	font-size: 1.8rem;
}



/* ----------------------------------------
values
---------------------------------------- */
.values {
	background-color:rgb(231, 165, 66, 18%);
}

.values__wrap {
	display: flex;
	align-items: center;
	background-color: #FFFFFF;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	margin-bottom: 20px;
}

.values__wrap img {
	width: 47%;
	height: auto;
}

.values__text-area {
	padding-left: 10%;
	display: flex;
	justify-content: flex-start;
	z-index: 1;
}

.values__num {
	font-size: 6.4rem;
	color: rgb(240, 132, 49, 68%);
	font-family: "Zen Kaku Gothic New", sans-serif;
	padding-right: 40px;
	line-height: 1;
	
}

.values__box h3 {
	font-size: 2.4rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.5;
	padding-bottom: 35px;
}

.v1,
.v2,
.v3,
.v4 {
	position: relative;
	z-index: 0;
}

.values__num::before {
	position: absolute;
    display: inline-block;
    font-size: 260px;
	bottom: -20%;
	right: -30%;
	z-index: 0;
	color: rgb(244, 216, 75, 10%);
}

.v1::before {
	content: "01";
}
.v2::before {
	content: "02";
}
.v3::before {
	content: "03";
}
.v4::before {
	content: "04";
	bottom: -36%;
}

.values__box p {
	line-height: 1.5;
}


/* ----------------------------------------
works
---------------------------------------- */
.works {
	background: url(../img/bg-pattern.jpg) no-repeat center center/cover;
}

.works__inner {
	max-width: 894px;
	text-align: center;
}

.works__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	flex-direction: column;
}

.works__text-area {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #00000040;
	padding: 30px;
	background-color: #FFFFFF;
}

.works__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 10px;
	text-align: left;
	width: 100%;
}

.works__item>div {
	padding: 10px;
	border-right: #D9D9D9 1px solid;
	width: 34%;
	line-height: 1.5;
}


.works__item h3 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #EF5A24;
}

.works__item h3::before {
	content: "";
	display: inline-block;  
	background-image: url('../img/icon-check.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 1em;
	height: 1em;
	margin-right: 1rem;
}

.works__item p {
	font-size: 1.4rem;
	font-weight: bold;
}

.works__item ul {
	padding-left: 40px;
}

.works__item li {
	font-size: 1.7rem;
	list-style-type: disc;
	line-height: 1.75;
}

.works__comment {
	width: 100%;
	padding: 8px;
	color: #FFFFFF;
	background-color: #EF5A24;
	font-size: 1.5rem;
	font-weight: 700;
}


/* ----------------------------------------
workstyle
---------------------------------------- */
.workstyle {
	background: url(../img/bg-plaid2.jpg) no-repeat center center/cover;
	padding: 60px 0;
}

.workstyle__inner {
	width: 90%;
	max-width: 1136px;
	background-color: #FFFFFF;
	padding: 60px;
}

.workstyle__box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	/* gap: 20px; */
}

.workstyle__wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	width: calc((100% - 40px) / 4);
	text-align: center;
	line-height: 1.5;
}

.workstyle__wrap h3 {
	font-size: 20px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}

.workstyle__wrap img {
	/* width: 80%; */
	height: 170px;
}


/* ----------------------------------------
benefit
---------------------------------------- */
.benefit {
	position: relative;
}

.benefit::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 100px 50vw 0 50vw;
	border-color: #FFFFFF #E0F1FF transparent #E0F1FF;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
}

.benefit__inner {
	width: 85%;
	max-width: 850px;
}

.benefit__text-area ul {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
}

.benefit__text-area li {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	padding: 30px 15px;
	width: calc((100% - 40px) / 3);
	text-align: center;
	line-height: 1.5;
	box-shadow: 0px 0px 10px 0px #00000040;
	border-radius: 10px;
	background-color: #FFFFFF;
}

.benefit__text-area h3 {
	font-size: 2rem;
}

.benefit__text-area p {
	letter-spacing: 0;
}

.benefit__moving {
	padding: 20px;
	text-align: center;
	position: relative;
	margin-top: 70px;
	border: #EF5A24 3px solid;
	border-radius: 10px;
	background-color: #FFFFFF;
}

.benefit__moving h3 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 3.6rem;
	font-weight: 900;
	font-style: normal;
	letter-spacing: 0.05em;
	line-height: 1.33;
	padding-bottom: 2.4rem;
}

.benefit__item01 {
	font-size: 2rem;
	font-weight: 700;
}

.benefit__item01 strong {
	font-size: 2.8rem;
	color: #EF5A24;
}

.benefit__item02 {
	font-size: 1.4rem;
}

.benefit__img01,
.benefit__img02 {
	position: absolute;
}

.benefit__img01 {
	width: 233px;
	bottom: -30px;
	left: -45px;
}

.benefit__img02 {
	width: 187px;
	top: -38px;
	right: -48px;
}


/* ----------------------------------------
philosophy
---------------------------------------- */
.philosophy {
	background-color: #E0F1FF;
	padding-top: 100px;
}

.philosophy__inner {
	text-align: center;
	max-width: 906px;
	width: 86%;
}

.philosophy-ttl {
	color: #0067CF;
	padding-top: 10px;
	padding-bottom: 20px;
}

.philosophy__subttl {
	display: inline-block;
	font-size: 2rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	position: relative;
	padding-bottom: .5rem;
}

.philosophy__subttl::before,
.philosophy__subttl::after {
	position: absolute;
	content: '';
	width: 3px;
	height: 40px;
	background-color: #0067CF;
	bottom: -2px;
}

.philosophy__subttl::before {
	margin-right: 30px;
	transform: rotate(-35deg);
	left: -40px;
}

.philosophy__subttl::after {
	margin-left: 30px;
	transform: rotate(35deg);
}

.philosophy__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.philosophy__text-area {
	text-align: center;
	width: 60%;
}

.philosophy__leftimg {
	width: 150px;
}

.philosophy__rightimg {
	width: 139px;
}

.philosophy__item {
	background-color: #FFFFFF;
	padding: 10px;
	border-radius: 10px;
	margin-bottom: 12px;
}

.philosophy__item h3 {
	font-size: 2.8rem;
	font-weight: 700;
}

.philosophy__item p {
	font-size: 2rem;
}

.philosophy__text01 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #0067CF;
	padding: 24px 0 8px 0;
}

.philosophy__text02 {
	font-size: 2rem;
}

.philosophy__wrap ul {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin: 30px 0;
}

.philosophy__wrap li {
	width: calc((100% - 12px) / 2);
	background-color: #FFFFFF;
	padding: 24px 50px;
	border-radius: 10px;
}

.philosophy__wrap li>div {
	font-size: 2.4rem;
	padding-bottom: 8px;
	font-weight: 700;
}

.philosophy__wrap li>div {
	font-size: 2rem;
}


/* ----------------------------------------
company
---------------------------------------- */
.company__inner {
	max-width: 938px;
}

.company__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.company__ttl {
	padding-top: 0;
}

.company__text-area dl {
	font-size: 1.4rem;
	padding: 0 8%;
	display: grid;
	grid-template-columns: 20% 1fr;
	row-gap: 30px;
	column-gap: 20px;
	align-items: start;
}

.company__img {
	width: 40%;
	max-width: 365px;
}

.company__text-area dd {
	margin: 0;
}

.company__text-area dt::after {
	content: ":";
	font-size: 1.4rem;
	padding: 2px 10px;
}

.company__text-area a {
	color: #0066CC;
	text-decoration: underline;
}


/* ----------------------------------------
contact
---------------------------------------- */
.contact {
	background-color: rgb(244, 216, 75, 5%);
}

.contact__inner {
	text-align: center;
	margin: 0 auto;
}

.contact__wrap {
	max-width: 894px;
	background-color: #FFFFFF;
	margin: 150px auto 60px auto;
	padding: 50px 120px;
	text-align: left;
}

.contact__ttl {
	color: #FFFFFF;
	background-color: #EF5A24;
	padding: 50px 0;
	position: relative;
}

.contact__ttl::after {
	width: 0;
	height: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -110px;
	border-left: 110px solid transparent;
	border-right: 110px solid transparent;
	border-top: 50px solid #EF5A24;
	content: '';
}

.form__ttl {
	padding: 10px 0;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
}



/* form */
.form__wrap {
	display: flex;
	padding: 30px 4%;
	position: relative;
	flex-direction: column;
	font-size: 1.4rem;
}

.contact__label span {
	background-color: #EF5A24;
	color: #FFFFFF;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 5px;
	padding: .2px 6px;
	margin: 0 10px;
	line-height: 1;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
	border: #CCCCCC 1px solid;
	border-radius: 5px;
	background-color: #FFFFFF;
	height: 35px;
	padding: 2px 10px;
    margin-bottom: 20px;
}

input:-webkit-autofill{
	box-shadow: 0 0 0px 1000px #ffffff inset;
}

textarea {
	border: #CCCCCC 1px solid;
	border-radius: 5px;
	background-color: #FFFFFF;
	height: 80px;
	padding: 10px;
}

select {
    -webkit-appearance: none;
    appearance: none;
}

.contact__select {
	position: relative;
	z-index: 0;
	width: 260px;
}

.contact__select::after {
    content: "";
    position: absolute;
	top: 14px;
	right: 10px;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #EF5A24;
    border-bottom: 0;
	z-index: 1;
}

.contact__radio {
	margin-bottom: 20px;
}

input[type="radio"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: none;
}

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

.contact__radio-btn {
	display: inline-block;
	background-color: #FFFFFF;
	border: #CCCCCC 1px solid;
	font-size: 1.6rem;
	padding: 5px 10px 5px 32px;
	border-radius: 5px;
	position: relative;
}

.contact__radio-btn::before {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border: 1px solid #333333;
	border-radius: 50%;
}

input[type="radio"]:checked + .contact__radio-btn {
	background-color: #EF5A24;
	border: #EF5A24 1px solid;
	color: #FFFFFF;
}

input[type="radio"]:checked + .contact__radio-btn::before {
	background-color: #FFFFFF;
	border: 2px solid #EF5A24;
	box-shadow: 0 0 0 1px#FFFFFF;
}

.contact__btn {
	width: 50%;
	max-width: 320px;
	height: 100%;
	color: #FFFFFF;
	background-color: #EF5A24;
	font-weight: 700;
	font-size: 1.5rem;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0px 5px 0px 0px #BD4519;
	border: none;
	text-align: center;
	margin: 40px auto 0;
}

.contact__btn:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #BD4519;
	transition: .2s;
}

/* ----------------------------------------
footer
---------------------------------------- */
.footer {
	background-color: rgb(244, 216, 75, 5%);
}

.footer__inner {
	padding-bottom: 0;
}

.footer__box-img {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.footer__leftimg {
	max-width: 377px;
	/* width: 30%; */
}

.footer__rightimg {
	max-width: 286px;
	/* width: 25%; */
}

.footer__wrap {
	padding: 50px 10% 60px;
	color: #FFFFFF;
	background-color: #EF5A24;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

.footer__box {
	width: 90%;
	text-align: left;
	margin: 0 auto;
}

.footer__logo {
	max-width: 336px;
	min-width: 280px;
	width: 30%;
	padding-bottom: 25px;
}

.footer__text-area {
	display: flex;
	justify-content: flex-start;
	column-gap: 100px;
}

.footer__text-area dt {
	font-weight: 700;
}

.footer__text-area dd {
	font-size: 1.4rem;
}

.footer__copyright {
	color: #FFFFFF;
	background-color: #EF5A24;
	font-size: 1.4rem;
	text-align: center;
	padding: 12px 0 28px;
}


/* ----------------------------------------
thanks
---------------------------------------- */
.thanks {
	background-color: rgb(244, 216, 75, 5%);
}

.thanks__inner {
	width: 70%;
	margin-top: 80px;
	text-align: center;
}

.thanks__inner  h1 {
	font-size: 24px;
	padding-bottom: 20px;
}

.thanks__btn {
	display: block;
	width: 100%;
	max-width: 320px;
	height: 100%;
	color: #FFFFFF;
	background-color: #EF5A24;
	font-weight: 700;
	font-size: 1.5rem;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0px 5px 0px 0px #BD4519;
	border: none;
	text-align: center;
	margin: 50px auto 0;
}

.thanks__btn:hover {
	transform: translateY(5px);
	box-shadow: 0 0 0 #BD4519;
	transition: .2s;
}


/* ----------------------------------------
レスポンシブ（PC）
---------------------------------------- */

@media (max-width: 1150px) {
	.cta02__tel {
		width: 90%;
	}
	.cta02__wrap {
		padding-left: 180px;
	}
}

/* ----------------------------------------
レスポンシブ（タブレット）
---------------------------------------- */
@media (min-width: 768px) and (max-width: 959px) {

	section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.section-ttl {
		font-size: 3.2rem;
		padding: 30px 20px;
	}

	.inner {
		padding: 50px 0;
	}

	.header__inner {
		padding: 20px;
	}

	.header__logo img {
		width: 100%;
		max-width: 150px;
	}

	.fv {
		background: url(../img/bg-fv.jpg) no-repeat center right 20% / cover;
	}

	.fv__ttl {
		font-size: 5rem;
		padding-bottom: 10px;
	}

	.fv__sub {
		font-size: 3rem;
	}

	.fv__text {
		font-size: 1.8rem;
	}

	.worries__inner {
		width: 90%;
	}

	.worries__inner dl {
		gap: 10px;
	}

	.worries__inner dt {
		font-size: 1.8rem;
	}

	.worries__inner dd {
		font-size: 1.5rem;
	}

	.worries__img {
		right: 	1%;
	}

	.worries__arrow {
		width: 180px;
	}

	.worries__messege {
		font-size: 3rem;
	}

	.worries__messege strong {
		font-size: 3.6rem;
	}

	.point__wrap {
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
	}

	.point__box {
		width: 85%;
	}

	.cta-area01 {
		padding: 40px 0;
	}

	.cta__inner01 img {
		width: 180px;
		bottom: -40px;
		left: -10%;
	}

	.cta__textarea01 {
		padding-left: 22%;
	}

	.request__inner {
		flex-direction: column;
	}

	.request__text-area {
		width: 90%;
		margin-left: 0;
	}

	.request__img {
		width: 80%;
		max-width: 80%;
	}

	.request__inner::after {
		left: 0;
	}

	.cta02__tel {
		flex-direction: column;
		align-items: flex-end;
		width: 85%;
		gap: 15px;
		padding: 20px 45px;
	}

	.btn-mail {
		width: 100%;
		align-items: flex-end;
		display: block;
	}

	.cta02__wrap {
		padding-left: 0;
		padding-right: 24px;
		text-align: center;
	}

	.cta02__inner img {
		bottom: 40px;
		/* left: 40px; */
	}

	.cta02__item02 {
		font-size: 4.2rem;
	}

	.cta02__item01 {
		padding-bottom: 0;
	}

	.values__box h3 {
		font-size: 2rem;
		padding-bottom: 10px;
		line-height: 1.4;
	}

	.values__text-area {
		padding-left: 12px;
	}

	.values__num {
		font-size: 4.8rem;
		padding-right: 15px;
	}

	.values__num::before {
		font-size: 140px;
		bottom: -8%;
		right: -18%;
	}

	.values__wrap img {
		width: 45%;
	}

	.values__box p {
		line-height: 1.4;
	}

	.works__item li {
		font-size: 1.5rem;
	}

	.works__item>div {
		width: 36%;
	}

	.workstyle__box {
		/* flex-wrap: wrap; */
		gap: 0;
	}

	.workstyle__wrap {
		/* width: calc((100% - 20px) / 2); */
		padding: 10px;
	}

	.workstyle__wrap img {
		height: 120px;
	}

	.benefit__text-area h3 {
		font-size: 1.8rem;
	}

	.benefit__text-area li {
		padding: 20px 10px;
	}

	.benefit__img01 {
		width: 200px;
		bottom: -30px;
		left: -55px;
	}

	.benefit__img02 {
		width: 140px;
		top: -38px;
		right: -58px;
	}

	.philosophy {
		padding-top: 100px;
	}

	.philosophy-ttl {
		padding-top: 6px;
	}

	.philosophy__leftimg {
		width: 100px;
	}

	.philosophy__rightimg {
		width: 90px;
	}

	.philosophy__item h3 {
		font-size: 2.4rem;
	}

	.philosophy__item p {
		font-size: 1.8rem;
	}

	.philosophy__text01 {
		font-size: 2.4rem;
	}

	.philosophy__text02 {
		font-size: 1.8rem;
	}

	.philosophy__wrap li {
		padding: 16px 20px;
	}

	.philosophy__wrap li>div {
		font-size: 1.8rem;
	}

	.company__text-area dl {
		padding: 0 0 0 10%;
		row-gap: 10px;
		column-gap: 10px;
	}

	.company__ttl {
		padding-top: 0;
	}

	.company__img {
		width: 38%;
	}

	.contact__ttl {
		padding: 40px 0;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}

	.contact__wrap {
		margin: 100px auto 40px auto;
		padding: 30px;
	}

	.last__cta {
		padding-bottom: 40px;
	}

	.footer__leftimg {
	max-width: 300px;
	}

	.footer__rightimg {
		max-width: 220px;
	}

	.footer__inner {
		padding-bottom: 0;
	}

	.footer__copyright {
		font-size: 1rem;
		padding: 10px 0 20px;
	}
}


/* ----------------------------------------
レスポンシブ（スマホ）
---------------------------------------- */
@media (max-width: 767px) {
	.br {
		display: block;
	}

	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	section {
		padding-left: 15px;
		padding-right: 15px;
	}

	.section-ttl {
		font-size: 2.6rem;
		padding: 20px 0;
	}

	.inner {
		padding: 40px 0;
	}

	.header__inner {
		padding: 20px;
	}

	.header__logo img {
		max-width: 140px;
	}

	.fv {
		background: url(../img/bg-fv.jpg) no-repeat center right 20% / cover;
		margin-top: 0;
		padding-top: 60px;
	}

	.fv__ttl {
		font-size: 3.2rem;
		padding-bottom: 4px;
		/* padding-top: 10px; */
	}

	.fv__sub {
		font-size: 2rem;
		/* padding-bottom: 15px; */
	}

	.fv__text {
		font-size: 1.6rem;
	}

	.fv__cta {
		padding: 8px;
		flex-direction: column;
		gap: 2rem;
	}

	.btn {
		width: 100%;
	}
	
	.worries__inner {
		width: 100%;
	}

	.worries__inner dl {
		gap: 10px;
		padding: 16px;
		padding-bottom: 200px;
	}

	.worries__inner dt {
		font-size: 1.8rem;
		line-height: 1.5;
	}

	.worries__inner dt::before {
		margin-right: .6rem;
	}

	.worries__inner dd {
		font-size: 1.5rem;
		line-height: 1.5;
	}

	.worries__img {
		max-width: 110px;
		top: auto;
		bottom: 15px;
		right: 50%;
		transform: translateX(50%);
	}

	.worries__arrow {
		width: 140px;
		margin: 24px 0;
	}

	.worries__text {
		font-size: 2rem;
	}

	.worries__messege {
		font-size: 2.4rem;
	}

	.worries__messege strong {
		font-size: 2.8rem;
	}

	.point__wrap {
		flex-direction: column;
		padding-left: 0;
		padding-right: 0;
	}

	.point__box {
		width: 95%;
		gap: 10px;
	}

	.point__sub::before {
		margin-left: 20px;
		height: 35px;
	}

	.point__sub::after {
		margin-left: 16px;
		height: 35px;
	}

	.point__sub {
		font-size: 1.8rem;
	}

	.point__box h3::before {
		width: 45px;
		height: 45px;
		margin-right: 4px;
	}

	.point__box p {
		padding: 10px;
	}

	.point__box ul {
		font-size: 1.6rem;
		padding: 10px;
	}

	.point__box li {
		line-height: 1.6;
	}

	.cta__inner01 {
		max-width: 90%;
	}

	.cta-area01 {
		padding: 40px 0;
	}

	.cta__inner01 img {
		width: 140px;
		bottom: -40px;
		left: 50%;
		transform: translateX(-50%);
	}

	.cta__textarea01 {
		padding-left: 0;
		padding-bottom: 160px;
	}

	.cta__inner01 p {
		font-size: 2.4rem;
	}

	.balloon p {
		font-size: 1.8rem;
	}

	.request__inner {
		flex-direction: column;
	}

	.request__inner dt {
		font-size: 1.7rem;
		line-height: 1.5;
		padding: 4px 10px;
		margin-bottom: 10px;
		width: 100%;
	}

	.request__inner dt::before {
		margin-right: .5rem;
	}
	
	.request__inner dd {
		padding-bottom: 20px;
	}

	.request__text-area {
		width: 100%;
		margin-left: 0;
	}

	.request__img {
		width: 100%;
		max-width: 100%;
	}

	.request__inner::after {
		left: -15px;
		width: 206px;
		height: 270px;
	}

	.cta02__tel {
		flex-direction: column;
		align-items: flex-end;
		width: 100%;
		gap: 15px;
		padding: 20px;
	}

	.btn-mail {
		width: 100%;
		align-items: flex-end;
		display: block;
	}

	.cta02__wrap {
		padding-left: 0;
		padding-right: 0;
		text-align: center;
	}

	.cta02__sub {
		font-size: 1.8rem;
		padding-bottom: .5rem;
	}

	.cta02__sub::before {
		margin-left: 20px;
		height: 35px;
	}

	.cta02__sub::after {
		margin-left: 16px;
		height: 35px;
	}

	.cta02__ttl {
		color: #EF5A24;
		font-size: 2.8rem;
		line-height: 1.5;
	}

	.cta02__item02 {
		font-size: 3rem;
	}

	.cta02__item01 {
		padding-bottom: 0;
		font-size: 1.5rem;
	}

	.cta02__item03 {
		font-size: 1.3rem;
	}

	.cta02__inner img {
		width: 100px;
		bottom: 110px;
		left: 10px;
	}

	.values__box h3 {
		font-size: 2rem;
		padding-bottom: 10px;
		line-height: 1.4;
	}

	.values__text-area {
		width: 100%;
		padding-left: 12px;
		background-color: #FFFFFF;
		z-index: 0;
	}

	.values__num {
		font-size: 4.8rem;
		padding-right: 15px;
		padding-top: 40px;
	}

	.values__num::before {
		font-size: 180px;
		bottom: -10%;
		left: -35%;
	}

	.values__wrap {
		flex-direction: column;
		align-items: flex-start;
		background-color: transparent;
	}

	.values__wrap img {
		width: 80%;
		margin-bottom: -20px;
		z-index: 1;
	}

	.values__box {
		padding: 40px 15px 15px 0;
	}

	.values__box p {
		line-height: 1.4;
	}

	.works__text-area {
		padding: 15px;
		gap: 10px;
	}

	.works__item {
		flex-direction: column;
	}

	.works__item ul {
		padding-top: 8px;
		padding-left: 24px;
	}

	.works__item li {
		font-size: 1.4rem;
	}

	.works__item>div {
		width: 100%;
		border-right: none;
		border-bottom: #D9D9D9 1px solid;
	}

	.workstyle__inner {
		padding: 20px;
	}

	.workstyle__box {
		flex-wrap: wrap;
	}

	.workstyle__wrap {
		width: calc(100% / 2);
		padding: 10px;
		gap: 10px;
	}

	.workstyle__wrap h3 {
		font-size: 1.8rem;
	}

	.workstyle__wrap p {
		font-size: 1.4rem;
	}

	.workstyle__wrap img {
		height: 80px;
	}

	.benefit__inner {
		width: 100%;
		padding-bottom: 80px;
	}

	.benefit__text-area ul {
		gap: 12px;
	}

	.benefit__text-area li {
		padding: 15px 10px;
		font-size: 1.4rem;
		width: calc((100% - 12px) / 2);
		gap: 12px;
	}

	.benefit__box h3 {
		font-size: 1.7rem;
		letter-spacing: -0.8px;
	}

	.benefit__box p {
		font-size: 1.4rem;
	}

	.benefit__moving h3 {
		font-size: 2rem;
		padding-bottom: 8px;
	}

	.benefit__img01 {
		width: 140px;
		bottom: -70px;
		left: -10px;
	}

	.benefit__img02 {
		width: 90px;
		top: -48px;
		right: -12px;
	}

	.benefit__item01 {
		font-size: 1.6rem;
	}

	.benefit__item01 strong {
		font-size: 2.2rem;
		color: #EF5A24;
	}

	.benefit__item02 {
		font-size: 1.2rem;
	}

	.benefit::after {
		border-width: 60px 50vw 0 50vw;
	}

	.philosophy {
		padding-top: 50px;
	}

	.philosophy__inner {
		width: 100%;
	}

	.philosophy-ttl {
		padding-top: 0;
	}

	.philosophy__subttl::before {
		left: -30px;
		height: 35px;
	}

	.philosophy__subttl::after {
		margin-left: 28px;
		height: 35px;
	}

	.philosophy__content {
		flex-direction: column;
		gap: 20px;
	}

	.philosophy__spimg {
		width: 150px;
	}

	.philosophy__text-area {
		width: 100%;
	}

	.philosophy__item h3 {
		font-size: 2rem;
	}

	.philosophy__item p {
		font-size: 1.6rem;
	}

	.philosophy__text01 {
		font-size: 2rem;
		padding: 16px 0 0 0;
	}

	.philosophy__text02 {
		font-size: 1.8rem;
	}

	.philosophy__wrap ul {
		margin: 20px 0;
	}

	.philosophy__wrap li {
		padding: 10px;
	}

	.philosophy__wrap li>div {
		font-size: 1.6rem;
		padding-bottom: 4px;
	}

	.philosophy__wrap li>p {
		font-size: 1.35rem;
	}

	.company__wrap {
		flex-direction: column;
		gap: 20px;
	}

	.company__text-area dl {
		padding: 0 8px;
		row-gap: 10px;
		column-gap: 10px;
		grid-template-columns: 70px 1fr;
	}

	.company__img {
		width: 60%;
	}

	.contact__ttl {
		padding: 40px 0;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}

	.contact__ttl::after {
		margin-left: -60px;
		border-left: 60px solid transparent;
		border-right: 60px solid transparent;
		border-top: 30px solid #EF5A24;
	}

	.contact__wrap {
		margin: 60px auto 40px auto;
		padding: 20px 15px;
	}

	.form__wrap {
		padding: 15px 0;
	}

	.form__ttl {
		font-size: 2rem;
	}

	.contact__btn {
		width: 100%;
	}

	.last__cta {
		padding: 8px;
		flex-direction: column;
		gap: 2rem;
	}

	.footer__wrap {
		padding: 40px 18px;
	}

	.footer__box {
		width: 100%;
	}

	.footer__logo {
		min-width: 180px;
	}

	.footer__text-area {
		flex-direction: column;
		font-size: 1.4rem;
		gap: 20px;
	}

	.footer__leftimg {
	max-width: 160px;
	}

	.footer__rightimg {
		max-width: 120px;
	}

	.footer__inner {
		padding-bottom: 0;
	}

	.footer__copyright {
		font-size: 1rem;
		padding: 10px 0 20px;
	}

	.thanks__inner {
		width: 90%;
		margin-top: 80px;
	}
}
