@charset "utf-8";
/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse; width:100%;}
fieldset,img{border:0; vertical-align:top;}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:400;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
del,ins{text-decoration:none;}
section{display:block;}
figure,figcaption{margin:0; padding:0;}
main {display:block;padding:0;margin:0;position: relative;z-index: 2;}
small {font-size: 100%;}
.cf:after{content:".";display:block;height:0;clear:both;visibility:hidden;font-size: 0.1em;}
.cf	{display:inline-block;zoom:1;}
ul.col {
	letter-spacing:-0.5em;
}
ul.col li {
	display:inline-block;
	vertical-align:top;
	letter-spacing:0.01em;
}
/* \*/
* html .cf	{height:1%;}
.cf	{display:block;}
/* */
a:link,a:visited {
    backface-visibility:hidden;
-webkit-backface-visibility: hidden;  
    transition: ease-in-out .2s;
	text-decoration:none;
	color:var(--c-base);
}
a:hover {
    outline:none;
}
a:focus, *:focus { outline:none; }
img {
	max-width: 100%;
    height: auto;
}
:root {
    --f-jp: "Noto Sans JP", sans-serif;
    --f-en: "Inter", sans-serif;
    --c-base:#121c24;
    --c-blue:#0097e0;
    --c-line:#bacfd9;
    --c-bg:#f2f7f7;
}

/*----------------common----------------*/
body {
    font-family: var(--f-jp);
    font-size: 16px;
    line-height: 2.2;
    letter-spacing: 0.04em;
    color: var(--c-base);
    word-wrap: break-word;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    background-color: #f2f4f5;
    background-image: url("../images/bg_body.png");
    background-repeat: no-repeat;
    background-position: right top;
}
.loading {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 99999;
}
.fade-up {
    transform: translateY(7%);
    opacity: 0;
    transition-duration: 1.35s;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
}
.fade-up-delay {
    transition-delay: 0.3s;
}
.fade-up.anime {
    transform: translateY(0px);
    opacity: 1;
}
body.home {
    background-image: url("../../images/bg_home.png");
    background-position: left 300px;
}
.header {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    padding-right: 40px;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    right: 0;
   transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header.is-scroll {
    background-color: rgba(242,244,245,0.9);
    padding-top: 15px;
  padding-bottom: 15px;
}
.header__nav {
    margin-left: auto;
}
.header__nav ul{
    display: flex;
    align-items: center;
    gap:45px;
}
.header__nav ul li {
    position: relative;
}
.header__nav ul li a {
    font-weight: 500;
    position: relative;
}
.header__nav ul li a:after {
    width: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--c-blue);
    z-index: 1;
    position: absolute;
    height: 1px;
    content: "";
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-sizing: border-box;
}
.header__nav > ul > li:hover > a:after {
    width: 100%;
}
.header__nav > ul > li:hover > a {
    color: var(--c-blue);
}
.header__nav-sub {
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -120px;
    padding-top: 10px;
    opacity: 0;
    pointer-events: none;
    transition:ease-in-out .3s;
-moz-transition:ease-in-out .3s;
-webkit-transition:ease-in-out .3s;
-o-transition:ease-in-out .3s;
-ms-transition:ease-in-out .3s;
    margin-top: 10px;
	font-feature-settings: "palt";
    width: 240px;
    line-height: 1.9;
}
.header__nav-sub:after {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 20px;
    width: 4px;
    background-color: #fff;
    opacity: 0.5;
}
.header__nav-sub ul {
    background-color: var(--c-blue);
    display: block;
    padding: 25px;
    border-radius: 5px;
}
.header__nav > ul > li:hover .header__nav-sub{
    opacity: 1;
    pointer-events: inherit;
    margin-top: 0px;
}
.header__nav-sub li {
    margin-left: 0;
    position: relative;
    padding-left: 15px;
}
.header__nav-sub li a{
    color: #fff !important;
    font-size: 15px;
    position: relative;
}
.header__nav-sub li:before {
    width: 6px;
    height: 6px;
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    margin-top: -3px;
    border-radius: 50%;
    background-color: #fff;
}
.header__nav-sub li a:after {
    background-color: #fff !important;
}
.header__nav-sub li a:hover:after {
    width: 100%;
}
.header__site-id a {
    display: inline-block;
}
.header__site-id img {
    width: 270px;
}
.header__nav-contact {
    font-family: var(--f-en);
    color: #fff !important;
    font-weight: 600 !important;
    width: 150px;
    display: flex;
    height: 50px;
    background: #08A0E9;
background: linear-gradient(90deg,rgba(8, 160, 233, 1) 70%, rgba(21, 115, 161, 1) 100%);
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__nav-contact:after {
    display: none;
}
.header__nav-contact:hover {
    color: var(--c-blue) !important;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 1) 100%);
    
}
.header__sp-global {
    position: fixed;
    background-color: #fff;
    left: 0px;
    top: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    border-left: var(--c-blue) 0.5rem solid;
    padding: 7rem 2rem;
    overflow: auto;
    display: none ;
    transform: translateX(-105%);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header__sp-global.active {
    transform: translateX(0%);
}
.header__sp-global-main > li {
    position: relative;
    padding-top: 2rem;
    border-top: var(--c-line) 1px solid;
    padding-bottom: 2rem;
}
.header__sp-global-main > li:before {
    content: "";
    background-color: var(--c-blue);
    position: absolute;
    z-index: 1;
    top: -1px;
    left: 0;
    width: 4rem;
    height: 1px;
}
.header__sp-global-logo img {
    width:23rem;
    margin-bottom: 4rem;
}
.header__sp-global-ttl {
    font-size: 2rem;
}

.header__sp-global-ttl a {
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}
.header__sp-global-ttl a:before {
    position: absolute;
    z-index: 1;
    content: "";
    background-color: var(--c-blue);
    width: 0.6rem;
    height: 0.6rem;
    left: 0;
    top: 50%;
    margin-top: -0.3rem;
    border-radius: 50%;
}
.header__sp-global-sub {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.header__sp-global-contact a{
    font-family: var(--f-en);
  color: #fff;
  font-weight: 700 !important;
  width: auto;
  display: flex;
  height: 6rem;
  background: linear-gradient(90deg, rgb(8, 160, 233) 70%, rgb(21, 115, 161) 100%);
  border-radius: 4rem;
  justify-content: center;
  align-items: center;
    font-size: 1.5rem;
    margin-top: 1rem;
}
.header__sp-btn {
    background-color: var(--c-blue);
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  width: 5.5rem;
  height: 5.5rem;
  z-index: 9999;
  display: flex;
  border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: none;
    
}
.header__sp-btn.active {
    right: 3rem;
  top: 3rem;
}
.header__sp-btn-trigger,
.header__sp-btn-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.header__sp-btn-trigger {
	position: relative;
	width: 2.6rem;
	height: 1.6rem;
	text-align:right;
    margin: auto;
}
.header__sp-btn-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 0.2rem;
	background-color: #fff;
    text-align: right;
}
.header__sp-btn-trigger span:nth-of-type(1) {
	top: 0;
}
.header__sp-btn-trigger span:nth-of-type(2) {
	top: 0.7rem;
}
.header__sp-btn-trigger span:nth-of-type(3) {
	bottom: 0;
    margin-left: 30%;
    width: 70%;
}

.header__sp-btn.active .header__sp-btn-trigger span {
	background-color: #fff;
}
.header__sp-btn.active .header__sp-btn-trigger span:nth-of-type(1) {
	-webkit-transform: translateY(0.7rem) rotate(-45deg);
	transform: translateY(0.7rem) rotate(-45deg);
}
.header__sp-btn.active .header__sp-btn-trigger span:nth-of-type(2) {
	opacity: 0;
}
.header__sp-btn.active .header__sp-btn-trigger span:nth-of-type(3) {
	-webkit-transform: translateY(-0.7rem) rotate(45deg);
	transform: translateY(-0.7rem) rotate(45deg);
    width: 100%;
    margin-left: 0;
}
.local-anchor {
    display: flex;
    gap:5px;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.local-anchor li {
    width: calc((100% - 10px) / 3);
}
.local-anchor--col li {
    width: calc((100% - 15px) / 4);
}
.local-anchor li a {
    background-color: #fff;
    display: flex;
    height: 75px;
    border-radius: 5px;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    padding-left: 25px;
    background-image: url("../images/anchor_arrow.svg");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 30px center;
}
.local-anchor li a:hover {
    background-image: url("../images/anchor_arrow_w.svg");
    background-color: var(--c-blue);
    color: #fff;
}
.inner1340 {
    max-width: 1340px;
    width: 86%;
    margin: auto;
}
.inner1080 {
    max-width: 1080px;
    margin: auto;
}
.sec-mdb {
}
.footer {
    margin-top: 190px;
}
.home .footer {
    margin-top: 0;
}
.footer__contact a {
    display: flex;
    height: 470px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.footer__contact a:before {
    content: "";
    background-image: url("../images/bg_contact.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer__contact a:hover:before {
    transform: scale(1.05);
}
.footer__contact .inner1340 {
    position: relative;
}
.footer__contact .inner1340:after {
    width: 70px;
    height: 70px;
    content: "";
    position: absolute;
    z-index: 1;
    border: #fff 1px solid;
    border-radius: 50%;
    right: 0px;
    top: 50%;
    margin-top: -35px;
    background-image: url("../images/arrow.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}
.footer__contact h4 {
    font-weight: 700;
    line-height: 1.1;
    font-size: 20px;
    margin-bottom: 40px;
}
.footer__contact h4:before {
    content:attr(data-eng);
    font-family: var(--f-en);
    font-size: 85px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}
.footer__btm {
    background-color: var(--c-base);
    color: #fff;
}
.footer__btm-add dt img {
    width: 170px;
    margin-bottom: 30px;
}
.footer__btm-add dd {
    font-size: 14px;
    line-height: 1.8;
}
.footer__btm-add dd > span {
    display: block;
    font-weight: 700;
    font-size: 110%;
}
.footer__btm-add dd a {
    color: #fff;
    font-family: var(--f-en);
    font-weight: 700;
    font-size: 30px;
}
.footer__btm-add dd a span {
    font-size: 70%;
}
.footer__btm-flex {
    display: flex;
    padding-top: 120px;
}
.footer__btm-sitemap {
    margin-left: auto;
}
.footer__btm-sitemap-list li a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.footer__btm-sitemap-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap:10px 90px;
}
.footer__btm-sitemap-list li{
    margin-bottom: 5px;
}
.footer__btm-sitemap-list li ul {
    margin-top: 10px;
}
.footer__btm-sitemap-list li ul li {
    margin-bottom: 5px;
    line-height: 1.7;
}
.footer__btm-sitemap-list li ul li a {
    color: #919191;
    font-size: 13px;
}
.footer__pagetop {
    text-align: right;
    margin-top: 30px;
    
}
.footer__pagetop span{
    margin-left: auto;
    font-family: var(--f-en);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-right: 50px;
    display: inline-block;
    cursor: pointer;
    
}
.footer__pagetop span:hover {
    text-decoration: underline;
}
.footer__pagetop span:after {
    width: 35px;
    height: 60px;
    border: #fff 1px solid;
    border-radius: 40px;
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    margin-top: -30px;
    background-image: url(../images/pagetop.png);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center center;
}
.footer__btm-under {
    border-top:#495157 1px solid;
    display: flex;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 55px;
}
.footer__btm-under ul {
    display: flex;
}
.footer__btm-under ul li:not(:last-child):after {
    content: "|";
    margin-left: 8px;
    margin-right: 8px;
}
.footer__btm-under ul li a {
    color: #fff;
}
.footer__btm-under ul li a:hover {
    text-decoration: underline;
}
.footer__btm-under p {
    margin-left: auto;
    font-family: var(--f-en);
    font-weight: 500;
}
.second-ttl {
    font-weight: 700;
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    margin-bottom: 70px;
}
.second-ttl span {
    display: block;
    font-size: 15px;
    color: var(--c-blue);
    font-family: var(--f-en);
    font-weight: 600;
    border-bottom: var(--c-line) 1px solid;
    padding-bottom: 15px;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: normal;
}
.second-ttl span:before {
    width: 40px;
    height: 1px;
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -1px;
    background-color: var(--c-blue);
    
}
.sec-mdb {
    margin-bottom: 170px;
}
.topic-path {
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 70px;
    margin-top: 110px;
}
.topic-path li:not(:last-child):after {
    width: 10px;
    height: 1px;
    content: "";
    background-color: #bacfd9;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    margin-left: 7px;
    margin-right: 7px;
}
.topic-path li a {
    text-decoration: underline;
}
.topic-path li a:hover {
    color: var(--c-blue);
    text-decoration: none;
}
.page-ttl {
    margin-bottom: 130px;
}
.page-ttl h1{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
.page-ttl h1:before {
    font-family: var(--f-en);
    font-weight: 700;
    display: block;
    content: attr(data-ttl);
    color: var(--c-blue);
    font-size: 102px;
    margin-bottom: 5px;
}
.com-btn {
    margin-top: 70px;
}
.com-btn a {
    display: flex;
    max-width: 380px;
    height: 75px;
    border-radius: 40px;
    border: var(--c-blue) 1px solid;
    justify-content: center;
    align-items: center;
    color: var(--c-blue);
    font-weight: 700;
    background-image: url("../images/arrow_blue.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: right 25px center;
    margin: auto;
}
.com-btn a:hover {
    background-color: var(--c-blue);
    background-image: url("../images/arrow.svg");
    background-position: right 20px center;
    color: #fff;
}

@media screen and (max-width:1080px){

html {
    font-size: calc(100vw / 37.5);
  }
    .header__nav {
        display: none;
    }
    
body {
    font-size: 1.4rem;
    background-size: 26rem;
}
    br.sp-none {
        display: none;
    }
    br.sp-only {
        display: inherit;
    }
.header {
  padding-top: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
    padding-bottom: 0;
    position: absolute;
    transform: inherit;
    transition: inherit;
}
.header.hide {
    transform: inherit;
}
    .header__overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.26);
    z-index: -1;
        display: none;
    }
    .header__sp-btn {
        display: flex;
    }
.header__site-id img {
  width: 20rem;
}
.second-ttl {
  font-size: 2rem;
  margin-bottom: 4rem;
}
.second-ttl span {
  font-size: 1.2rem;
  padding-bottom: 1.3rem;
  margin-bottom: 2rem;
}
.second-ttl span::before {
  width: 2.5rem;
  border-width: 0.3rem;
}
.sec-mdb {
  margin-bottom: 9rem;
}
.com-btn {
  margin-top: 5rem;
}
    .header__sp-global {
        display: block;
    }
.com-btn a {
  max-width: 38rem;
  height: 6rem;
  border-radius: 4rem;
  background-size: 2rem;
  background-position: right 2rem center;
}
.page-ttl {
  margin-bottom: 7rem;
}
.page-ttl h1 {
  font-size: 1.5rem;
}
.page-ttl h1::before {
  font-size: 4.7rem;
  margin-bottom: 0.3rem;
}
.topic-path {
  font-size: 1.1rem;
  margin-bottom: 5rem;
  margin-top: 8rem;
}
.topic-path li:not(:last-child)::after {
  width: 1rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.local-anchor {
  gap: 0.5rem;
  margin-bottom: 6rem;
  font-size: 1.15rem;
}
.local-anchor li {
  width: calc((100% - 1rem) / 2);
}
.local-anchor li a {
  height: 4.2rem;
  border-radius: 0.5rem;
  padding-left: 1.1rem;
  background-size: 0.7rem;
  background-position: right 1.2rem center;
}

    
.footer {
  margin-top: 10rem;
}
.footer__contact h4::before {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.footer__contact a {
  height: 32rem;
}
.footer__contact h4 {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.footer__contact .inner1340::after {
  width: 5rem;
  height: 5rem;
  margin-top: -2.5rem;
  background-size: 2rem;
}
    .footer__contact p {
        padding-right: 7rem;
    }
.footer__btm-flex {
  display: block;
  padding-top: 6rem;
}
    .footer__btm-add dt {
        text-align: center;
    }
.footer__btm-add dt img {
  width: 12rem;
  margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.footer__btm-add dd {
  font-size: 1.3rem;
}
.footer__btm-add dd a {
  font-size: 2.8rem;
}
.footer__btm-sitemap-list {
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
        "areaA areaB"
        "areaA areaC";
    grid-column-gap:5%;
    gap:0;
    margin-top: 4rem;
}

/* 1番目：左 */
.footer__btm-sitemap-list-item:nth-child(1) {
    grid-area: areaA;
}

/* 2番目：右上 */
.footer__btm-sitemap-list-item:nth-child(2) {
    grid-area: areaB;
}

/* 3番目：2番目の直下（autoで詰まる） */
.footer__btm-sitemap-list-item:nth-child(3) {
    grid-area: areaC;
}
.footer__btm-sitemap-list li a {
  font-size: 1.3rem;
}  
.footer__pagetop span {
  font-size: 1.3rem;
  padding-right: 4.5rem;
}
.footer__pagetop span::after {
  width: 3rem;
  height: 5rem;
  border-radius: 4rem;
  margin-top: -2.5rem;
  background-size: 0.8rem;
}
.footer__btm-under {
  font-size: 1.3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-top: 5rem;
    display: block;
}
.footer__btm-under ul {
  display: block;
}
.footer__btm-under ul li:not(:last-child)::after {
  display: none;
}
.footer__btm-under p {
    margin-top: 2rem;
}
}

/*-----------------------------
事業紹介
-----------------------------*/

.business__item {
    position: relative;
    padding-top: 50px;
    margin-bottom: 220px;
}
.business__item h2 {
    background-color: #fff;
    display: inline-block;
    writing-mode: vertical-rl;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.8;
    position: absolute;
    z-index: 2;
    left: 70px;
    top: 0;
    font-feature-settings: 'pkna';
}
.business__item h3 {
    color: var(--c-blue);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 50px;
}
.business__visual {
    margin-bottom: 60px;
    position: relative;
}
.business__visual img {
    border-radius: 10px;
}
.business__item-list {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 70px;
}
.business__item-list h4 {
    background-color: var(--c-blue);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-weight: 700;
}
.business__item-list ul {
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    padding: 30px;
}
.business__item-list ul li {
    width: calc((100% - 30px) /4);
    box-sizing: border-box;
    position: relative;
    padding-left: 15px;
}
.business__item-list ul li:before {
    content: "";
    background-color: var(--c-blue);
    position: absolute;
    z-index: 1;
    left: 0;
    width: 8px;
    height: 8px;
    top: 14px;
    border-radius: 50%;
}

@media screen and (max-width:1080px){
.business__visual img {
  border-radius: 1rem;
}
.business__item h2 {
  writing-mode: inherit;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  border-radius: 0.5rem;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  left: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.business__item {
  padding-top: 2rem;
  margin-bottom: 8rem;
}
.business__item h3 {
  font-size: 1.9rem;
  margin-bottom: 2rem;
}
.business__visual {
  margin-bottom: 3rem;
}
.business__item-list h4 {
  padding: 0.7rem;
}
.business__item-list ul {
  gap: 1rem;
  padding: 2rem;
}
.business__item-list ul li {
  width: calc((100% - 1rem) /2);
  padding-left: 1.2rem;
    line-height: 1.5;
}
.business__item-list ul li::before {
  width: 0.6rem;
  height: 0.6rem;
  top: 0.8rem;
}
.business__item-list {
  border-radius: 1rem;
  margin-top: 3rem;
}
}
/*-----------------------------
施工実績
-----------------------------*/
.works__number {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}
.works__number span {
    font-weight: 700;
    font-size: 19px;
}
.works__results {
    border: var(--c-line) 1px solid;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}
.works__results dl {
    display: flex;
}
.works__results dt {
    font-weight: 700;
    color: var(--c-blue);
    margin-right: 20px;
}
.works__results-close a {
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 50%;
    display: flex;
    height: 35px;
    background-color: #fff;
  border-radius: 40px;
    color: var(--c-blue);
    font-size: 13px;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: -18px;
}
.works__results-close a:hover {
    background-color: var(--c-blue);
    color: #fff;
}
.works__archive {
    display: flex;
    flex-wrap: wrap;
    gap:70px 40px;
}
.works__item {
    width: calc((100% - 80px) / 3);
}
.works__item a {
    display: block;
}
@media (hover: hover) and (pointer: fine) {
.works__item a:hover h2 {
    color: var(--c-blue);
    text-decoration: none;
    
}
}
.works__item-img {
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.works__item-img img {
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (hover: hover) and (pointer: fine) {
a:hover .works__item-img img {
    transform: scale(1.04);
}
}
.works__item h2 {
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
    transition: ease-in-out .2s;
}
.works__item ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.4;
    gap:5px;
    margin-top: 15px;
}
.works__item ul li {
    background-color: #fff;
    border-radius: 40px;
    padding: 5px 10px;
    font-weight: 500;
    color: var(--c-blue);
    
}
.works__item ul li.const-cat {
    background-color: var(--c-blue);
    color: #fff;
}
.works__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    margin-top: 100px;
}
.works__pager span,
.works__pager a{
    width: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-family: var(--f-en);
    font-weight: 600;
    margin: 5px;
}
.works__pager span {
    background-color: var(--c-blue);
    color: #fff;
}
.works__pager a {
    background-color: #fff;
    color: var(--c-blue);
}
.works__single-flex {
    display: flex;
}
.works__single-visual {
    order: 2;
    flex-shrink: 0;
    width: 55%;
    margin-left: 5%;
}
.works__single-visual img {
    border-radius: 10px;
}
.works__single-visual .swiper-container {
    position: relative;
    padding-bottom: 15px;
}
.works__single-visual .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
}
.works__single-visual .swiper-pagination-bullet-active {
    background-color: var(--c-blue);
}
.works__single-visual .swiper-button-next, .works__single-visual .swiper-button-prev {
    color: #fff;
}
.thumbSwiper .swiper-slide {
  opacity: 0.4;
  cursor: pointer;
}

.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.works__single-dtl {
    order: 1;
    width: 40%;
}
.works__single-dtl ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    line-height: 1.4;
    gap:5px;
    margin-bottom: 10px;
}
.works__single-dtl ul li {
    background-color: #fff;
    border-radius: 40px;
    padding: 5px 10px;
    font-weight: 500;
    color: var(--c-blue);
    
}
.works__single-dtl ul li.const-cat {
    background-color: var(--c-blue);
    color: #fff;
}
.works__single-dtl h2 {
    font-weight: 700;
    font-size: 31px;
    margin-bottom: 30px;
}
.works__single-dtl table {
    font-size: 16px;
    line-height: 2;
}
.works__single-dtl th {
    color: var(--c-blue);
    width: 150px;
    font-weight: 500;
    padding-bottom: 15px;
    vertical-align: top;
}
.works__single-dtl td {
    padding-bottom: 15px;
}
.works__search {
    background-color: #fff;
    margin-bottom: 60px;
    border-radius: 5px;
    overflow: hidden;
}
.works__search label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.works__search label input[type="checkbox"] + span {
  display: flex;
  border-radius: 40px;
    cursor: pointer;
    height: 38px;
    padding-left: 40px;
    padding-right: 20px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-weight: 600;
    border: var(--c-line) 1px solid;
    position: relative;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.works__search label input[type="checkbox"] + span:before {
    position: absolute;
    content: "";
    background-color: var(--c-line);
    width: 20px;
    height: 20px;
    margin-top: -10px;
    left: 13px;
    top: 50%;
    border-radius: 50%;
    margin-top: -10px;
    transition: ease-in-out .2s;
}
@media (hover: hover) and (pointer: fine) {
.works__search label input[type="checkbox"] + span:hover:before {
    background-color: #fff;
}
}
.works__search label input[type="checkbox"]:checked + span {
    background-color: var(--c-blue);
    color: #fff;
    border-color: var(--c-blue);
}
.works__search label input[type="checkbox"]:checked + span:before {
    background-image: url("../images/icon_check.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-size: 20px;
    background-color: var(--c-blue);
}
@media (hover: hover) and (pointer: fine) {
.works__search label input[type="checkbox"] + span:hover {
    background-color: var(--c-blue);
    color: #fff;
    border-color: var(--c-blue);
}
}
.works__search-wrap {
    padding: 50px;
    display: none;
}

.works__search dl {
    display: flex;
    margin-bottom: 30px;
}
.works__search dl:last-child {
    margin-bottom: 0;
}
.works__search dt {
    font-weight: 600;
    font-size: 17px;
    color: var(--c-blue);
    flex-shrink: 0;
    width: 230px;
    border-right: var(--c-line) 1px solid;
}
.works__search dd {
    padding-left: 40px;
}
.works__search ul {
    display: flex;
    flex-wrap: wrap;
    gap:10px;
    font-size: 14px;
}
.works__search-btn {
    background-color: #fff;
    border-radius: 5px;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    font-size: 19px;
    cursor: pointer;
    position: relative;
    transition: ease-in-out .2s;
}
@media (hover: hover) and (pointer: fine) {
.works__search-btn:hover {
    background-color: var(--c-line);
}
}
.works__search-btn:after {
    position: absolute;
    z-index: 1;
    width: 36px;
    height: 36px;
    border: var(--c-line) 1px solid;
    content: "";
    border-radius: 50%;
    top: 50%;
    margin-top: -18px;
    right: 20px;
    background-image: url("../images/icon_open.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 18px;
}
.works__search-btn.active:after {
    background-image: url("../images/icon_close.png");
}
.works__search-btn span {
    background-image: url("../images/search.png");
    background-size: 21px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
}
.works__search-submit {
    border: none;
    font-family: inherit;
    background-color: var(--c-blue);
    color: #fff;
    width: 300px;
    display: flex;
    height: 60px;
    border-radius: 40px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    margin-inline:auto;
    margin-top: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.works__search-submit:hover {
    opacity: 0.8;
}
@media screen and (max-width:1080px){
.works__archive {
  display: block;
}
.works__item {
  width: 100%;
}
    .works__item:not(:last-child) {
        margin-bottom: 4rem;
    }
.works__item h2 {
  font-size: 1.6rem;
}
.works__item-img {
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.works__item ul {
  font-size: 1.1rem;
  gap: 0.5rem;
  margin-top: 1rem;
}
.works__item ul li {
  border-radius: 4rem;
  padding: 0.3rem 1rem;
}
.works__pager span, .works__pager a {
  width: 4rem;
  line-height: 4rem;
    margin: 0.5rem;
}
.works__pager {
  gap: 1rem;
  margin-top: 4rem;
}
.works__single-flex {
  display: block;
}
.works__single-visual {
  width: 100%;
  margin-left: 0%;
    margin-bottom: 2rem;
}
.works__single-visual img {
  border-radius: 1rem;
}
.works__single-visual .thumbSwiper img {
  border-radius: 0.5rem;
}
.works__single-visual .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
}
.works__single-visual .swiper-container {
  padding-bottom: 1rem;
}
.works__single-visual .swiper-button-next, .works__single-visual .swiper-button-prev {
  width: 3.5rem !important;
    height: 3.5rem !important;
    top: 50% !important;
    margin-top: -2.3rem !important;
}
    .works__single-dtl {
        width: auto;
    }
.works__single-dtl h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.works__single-dtl ul {
  font-size: 1.1rem;
  gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.works__single-dtl ul li {
  border-radius: 4rem;
  padding: 0.3rem 1rem;
}
.works__single-dtl th {
  width: auto;
    display: block;
    padding-bottom: 0;
}
.works__single-dtl td {
  width: auto;
    display: block;
}
.works__single-dtl table {
  font-size: 1.4rem;
}
.works__single-dtl td {
  padding-bottom: 1rem;
}
.works__search-btn {
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 1.4rem;
}
.works__search-btn span {
  background-size: 1.4rem;
  padding-left: 2rem;
}
.works__search-btn::after {
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  right: 1.5rem;
  background-size: 1.5rem;
}
.works__search {
  margin-bottom: 3rem;
  border-radius: 0.5rem;
}
.works__search dl {
  display: block;
  margin-bottom: 2rem;
}
.works__search dt {
  font-size: 1.5rem;
  width: auto;
  border-right: none;
    margin-bottom: 1.5rem;
}
.works__search-wrap {
  padding: 3rem 2rem;
}
.works__search dd {
  padding-left: 0;
}
.works__search ul {
  gap: 0.7rem 0.5rem;
  font-size: 1.3rem;
}
.works__search label input[type="checkbox"] + span {
  border-radius: 4rem;
  height: 3.1rem;
  padding-left: 2.7rem;
  padding-right: 1.5rem;
    background-color: #fff;
}

.works__search label input[type="checkbox"] + span::before {
  width: 1.4rem;
  height: 1.4rem;
  margin-top: -0.7rem;
  left: 0.7rem;

  margin-top: -0.7rem;

}
.works__search label input[type="checkbox"]:checked + span::before {
  background-size: 1.6rem;
}

.works__search-submit {
  width: 22rem;
  height: 5rem;
  border-radius: 4rem;
  font-size: 1.6rem;
  margin-top: 3rem;
}
.works__number span {
  font-size: 1.5rem;
}
.works__number {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.works__results dl {
  display: block;
}
.works__results {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  text-align: center;
    font-size: 1.3rem;
    line-height: 1.7;
}
.works__results-close a {
  position: static;
  height: 3rem;
  border-radius: 4rem;
  font-size: 1.2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-top: 1rem;
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
}
.works__results dt {
  margin-right: 0px;
}
}
/*-----------------------------
トップページ
-----------------------------*/
.home__visual {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}
.home__visual .inner1340 {
    height: 100%;
}
.home__visual-txt {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
}
.home__visual p {
    width: 580px;
}
.home__visual dl {
    line-height: 1;
}
.home__visual dt {
    font-family: var(--f-en);
    font-weight: 700;
    color: var(--c-blue);
    font-size: 85px;
    margin-bottom: 15px;
}
.spiral-wrapper {
position: absolute;
  inset: 0;
    right: 0px;
  max-width: 1340px;
  margin: auto;
  overflow: visible;
  z-index: -2;
  right: -31%;
}
.home__visual dt span {
    font-weight: 500;
    font-size: 90%;
}
.home__visual dd {
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 25px;
}
.home__ttl {
    line-height: 1.2;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 100px;
}
.home__ttl:before {
    font-size: 85px;
    content: attr(data-eng);
    color: var(--c-blue);
    font-family: var(--f-en);
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}
.home__business {
    margin-bottom: 200px;
}
.home__business-list {
    display: flex;
    flex-wrap: wrap;
    gap:60px 40px;
}
.home__business-item {
    width: calc((100% - 80px) / 3);
}
.home__business-item a {
    display: block;
}
.home__business-item-img img {
    
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home__business-item-img {
    overflow: hidden;
    border-radius: 10px;
}
a:hover .home__business-item-img img {
    transform: scale(1.04);
}
.home__business-item h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-top: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
 .home__business-item a:hover h3 {
    color: var(--c-blue) ;
}
.home__business-item h3:after {
    width: 50px;
    height: 50px;
    content: "";
    position: absolute;
    z-index: 1;
    right: 0;
    top: 50%;
    margin-top: -25px;
    border: var(--c-line) 1px solid;
    border-radius: 50%;
    background-image: url("../images/arrow_blue.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}
.home__other {
    display: flex;
    gap:40px;
    margin-bottom: 200px;
}
.home__other-item h2 {
    font-size: 33px;
    font-weight: 600;
    margin-top: 40px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home__other-item a:hover h2 {
    color: var(--c-blue);
}
.home__other-item h2:after {
    width: 70px;
  height: 70px;
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  margin-top: -35px;
  border: var(--c-line) 1px solid;
  border-radius: 50%;
  background-image: url("../images/arrow_blue.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
.home__other-item-img {
    position: relative;
    display: flex;
    flex-flow: column;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    align-items: flex-start;
    color: #fff;
    padding: 40px;
    box-sizing: border-box;
}
.home__other-item-img span {
    font-family: var(--f-en);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}
.home__other-item-img p {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.8;
}
.home__other-item-img:after {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../../images/bg_about.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home__other-item:nth-child(2) .home__other-item-img:after {
    background-image: url("../../images/bg_operation.jpg");
}
a:hover .home__other-item-img:after {
    transform: scale(1.04);
}
.home__other-item {
    width:calc((100% - 40px) / 2);
}
.home__other-item a {
    display: block;
}
.home__news {
    background-color: #fff;
    padding-top: 150px;
    padding-bottom: 150px;
}
.home__news-flex {
    display: flex;
}
.home__news h2 {
    margin-bottom: 60px;
}
.home__news-left {
    width: 420px;
    flex-shrink: 0;
}
.home__news-left li {
    font-weight: 700;
    margin-bottom: 5px;
    color: #b3c0c6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding-left: 20px;
    position: relative;
}
.home__news-left li:before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 50%;
    margin-top: -4px;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home__news-left li.current:before {
    background-color: var(--c-blue);
}
.home__news-left li.current {
    color: var(--c-base);
}
.home__news-left li:hover {
    text-decoration: underline;
}
.home__news-right {
    flex: 1;
}
.home__news-right ul {
    border-top: var(--c-line) 1px solid;
    display: none;
}
.home__news-right ul.current {
    display: block;
}
.home__news-right li {
    border-bottom: var(--c-line) 1px solid;
}
.home__news-right li a {
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    position: relative;
    padding-right: 65px;
}
.home__news-right li a:after {
  width: 50px;
  height: 50px;
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  margin-top: -25px;
  border: var(--c-line) 1px solid;
  border-radius: 50%;
  background-image: url("../images/arrow_blue.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
.home__news-right li dl {
    display: flex;
    font-size: 15px;
    margin-bottom: 10px;
    align-items: center;
}
.home__news-right li dt {
    font-family: var(--f-en);
    font-weight: 500;
}
.home__news-right li dd {
    color: var(--c-blue);
    font-weight: 600;
}
.home__news-right li dd:before {
    height: 12px;
    width: 1px;
    background-color: var(--c-line);
    content: "";
    display: inline-block;
    z-index: 1;
    margin-left: 25px;
    margin-right: 25px;
}

.home__news-right li p {
    text-decoration: underline;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    line-height: 1.7;
}

.home__news-right li a:hover p {
    color: var(--c-blue);
    text-decoration: none;
}

.home__recruit {
    padding-top: 150px;
    padding-bottom: 150px;
}

.home__partner {
    text-align: center;
    padding-top: 110px;
    padding-bottom: 110px;
}
.home__partner a {
    display: flex;
    border: var(--c-line) 1px solid;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    max-width: 330px;
    margin: auto;
    height: 220px;
    font-size: 19px;
    font-weight: 500;
    margin-top: 40px;
    background-color: #fff;
}
.home__partner a span {
    background-image: url("../../images/partner.png");
    background-size: 77px;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 70px;
}
.home__partner a:hover span {
    background-image: url("../../images/partner_w.png");
}
.home__partner a:hover {
    background-color: var(--c-blue);
    color: #fff;
    border-color: var(--c-blue);
}




@media screen and (max-width:1080px){
    .home main {
        overflow: hidden;
    }
    .spiral-wrapper  {
        overflow: visible !important;
        right: 0;
    }
    .spiral-wrapper canvas {
        margin-top: -12rem;
    }
    .home__visual {
        overflow: visible !important;
    }
.home__visual {
    height: 70rem;
}
.home__visual-txt {
    justify-content: flex-end;
        padding-bottom: 7rem;
    box-sizing: border-box;
}
.home__visual dt {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.home__visual dd {
    font-size: 1.7rem;
    margin-bottom: 2rem;
}
.home__visual p {
    width: auto;
}
.home__ttl {
  font-size: 1.6rem;
  margin-bottom: 5rem;
}
.home__ttl::before {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
.home__business {
  margin-bottom: 8rem;
}
.home__business-list {
  display: block;
}
.home__business-item {
  width: 100%;
}
    .home__business-item:not(:last-child) {
        margin-bottom: 3rem;
    }
    .home__business-item-img {
        height: 14rem;
    }
.home__business-item-img img {
  border-radius: 1rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.home__business-item h3 {
  font-size: 1.7rem;
  margin-top: 1rem;
}
.home__business-item h3::after {
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
    background-size: 1.5rem;
  }
.home__other {
  display: block;
    margin-bottom: 10rem;
}
    .home__other.inner1340 {
        width: 100%;
    }
.home__other-item {
  width: 100%;
}
.home__other-item-img {
  height: 21rem;
  border-radius: 0rem;
  padding: 2rem;
}
.home__other-item-img span {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.home__other-item-img p {
  font-size: 1.8rem;
  line-height: 1.7;
}
    .home__other-item:not(:last-child) {
        margin-bottom: 5rem;
    }
.home__other-item h2 {
  font-size: 2.2rem;
  margin-top: 1.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
}
.home__other-item h2::after {
  width: 5rem;
  height: 5rem;
  margin-top: -2.5rem;
  background-size: 2rem;
}
.home__news {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.home__news-flex {
  display: block;
}
.home__news h2 {
  margin-bottom: 3rem;
}
.home__news-left ul {
    margin-bottom: 3rem;
    display: flex;
    gap:1.5rem;
    font-size: 1.3rem;
    flex-wrap: wrap;
}
.home__news-left {
    width: auto;
}
.home__news-left li {
  margin-bottom: 0px;
  padding-left: 1.5rem;
}
.home__news-left li::before {
  width: 0.8rem;
  height: 0.8rem;
  margin-top: -0.4rem;
}
.home__news-right ul li a {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 6rem;
    line-height: 1.6;
}
.home__news-right ul li dl {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.home__news-right ul li dd::before {
  height: 1rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.home__news-right ul li a::after {
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  background-size: 1.5rem;
}
.home__recruit {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.home__partner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.home__partner a {
  border-radius: 1.5rem;
  max-width: 30rem;
  height: 19rem;
  font-size: 1.7rem;
  margin-top: 3rem;
}
.home__partner a span {
  background-size: 6rem;
  padding-top: 6rem;
}
}
/*-----------------------------
お知らせ
-----------------------------*/
.news__flex {
    display: flex;
}
.news__side {
    order: 1;
    width: 260px;
}
.news__side li {
    margin-bottom: 5px;
}
.news__side li a {
    font-weight: 700;
    color: #b3c0c6;
    position: relative;
    padding-left: 20px;
}
.news__side li a.current {
    color: var(--c-base);
}
.news__side li a:hover {
    text-decoration: underline !important;
}
.news__side li a.current:before {
    width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  margin-top: -4px;
  background-color: var(--c-blue);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news__main {
    order: 2;
    flex: 1;
}
.news__main ul {
    border-top: var(--c-line) 1px solid;
}
.news__main li {
    border-bottom: var(--c-line) 1px solid;
}
.news__main li a {
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    position: relative;
    padding-right: 65px;
}
.news__main li a:after {
  width: 50px;
  height: 50px;
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  margin-top: -25px;
  border: var(--c-line) 1px solid;
  border-radius: 50%;
  background-image: url("../images/arrow_blue.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
.news__main li dl {
    display: flex;
    font-size: 15px;
    margin-bottom: 10px;
    align-items: center;
}
.news__main li dt {
    font-family: var(--f-en);
    font-weight: 500;
}
.news__main li dd {
    color: var(--c-blue);
    font-weight: 600;
}
.news__main li dd:before {
    height: 12px;
    width: 1px;
    background-color: var(--c-line);
    content: "";
    display: inline-block;
    z-index: 1;
    margin-left: 25px;
    margin-right: 25px;
}
.news__main li p {
    text-decoration: underline;
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news__main li a:hover p {
    color: var(--c-blue);
    text-decoration: none;
}
.news__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10px;
    margin-top: 100px;
}
.news__pager span,
.news__pager a{
    width: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-family: var(--f-en);
    font-weight: 600;
}
.news__pager span {
    background-color: var(--c-blue);
    color: #fff;
}
.news__pager a {
    background-color: #fff;
    color: var(--c-blue);
}
.news__single h2 {
    font-weight: 700;
    font-size: 32px;
    border-bottom: var(--c-line) 1px solid;
    padding-bottom: 15px;
    margin-bottom: 40px;
}


.news__single-cat {
    display: flex;
    font-size: 15px;
    margin-bottom: 10px;
    align-items: center;
}
.news__single-cat dt {
    font-family: var(--f-en);
    font-weight: 500;
}
.news__single-cat dd {
    color: var(--c-blue);
    font-weight: 600;
}
.news__single-cat dd:before {
    height: 12px;
    width: 1px;
    background-color: var(--c-line);
    content: "";
    display: inline-block;
    z-index: 1;
    margin-left: 25px;
    margin-right: 25px;
}
@media screen and (max-width:1080px){
.news__flex {
  display: block;
}
    .news__main {
        margin-bottom: 4rem;
    }
.news__main li a {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 6rem;
    line-height: 1.6;
}
.news__main li dl {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.news__main li dd::before {
  height: 1rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.news__main li a::after {
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  background-size: 1.5rem;
}
.news__side li {
  margin-bottom: 0.5rem;
}
.news__side li a.current::before {
  width: 0.6rem;
  height: 0.6rem;
  margin-top: -0.3rem;
}
.news__side li a {
  padding-left: 1.5rem;
}
.news__pager span, .news__pager a {
  width: 4rem;
  line-height: 4rem;
}
.news__pager {
  gap: 1rem;
  margin-top: 4rem;
}
    
.news__single-cat {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.news__single-cat dd::before {
  height: 1rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.news__single h2 {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}
}
/*-----------------------------
協力会社の皆様へ
-----------------------------*/
.partner__lead {
    margin-bottom: 100px;
}

.partner__list li a{
    padding: 20px;
    display: block;
    text-decoration: underline;
    border-radius: 5px;
    
}
.partner__list li a:hover {
    color: var(--c-blue);
    text-decoration: none;
}
.partner__list li:nth-child(odd) a{
    background-color: #fff;
}
.partner__contact {
    background-color: #fff;
    padding: 30px;
    margin-top: 80px;
    border-radius: 10px;
}
.partner__contact h3 {
    font-weight: 600;
    font-size: 24px;
    color: var(--c-blue);
    margin-bottom: 5px;
}

@media screen and (max-width:1080px){
.partner__list li a {
  padding: 1rem;
  border-radius: 0.5rem;
}
.partner__contact {
  padding: 2rem;
  margin-top: 5rem;
  border-radius: 1rem;
}
.partner__lead {
  margin-bottom: 5rem;
}
.partner__contact h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
}



.about__profile th{
    border-bottom: var(--c-line) 1px solid;
    padding: 20px;
    width: 200px;
    font-weight: 600;
    vertical-align: top;
}
.about__profile td{
    border-bottom: var(--c-line) 1px solid;
    padding: 20px;
}
.about__profile td dl {
    display: flex;
}
.about__profile td dt {
    width: 160px;
    flex-shrink: 0;
}
.about__profile-num {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(auto-fit, minmax(1.5em, auto));
    counter-reset: item;
}
.about__profile-num li{
  break-inside: avoid;
  padding-left: 40px;
  position: relative;
    box-sizing: border-box;
}

.about__profile-num li::before {
  counter-increment: item;
  content: "(" counter(item) ")";
  position: absolute;
  left: 0;
}
.about__profile-dot li {
    position: relative;
    padding-left: 20px;
}
.about__profile-dot li:before {
    content: "";
  background-color: var(--c-blue);
  position: absolute;
  z-index: 1;
  left: 0;
  width: 8px;
  height: 8px;
  top: 14px;
  border-radius: 50%;
}
.about__profile td h3 {
    font-weight: 600;
}

.about__profile-partner ul{
    display: flex;
    flex-wrap: wrap;
    gap:0px 30px;
}
.about__profile-partner ul:not(:last-child) {
    margin-bottom: 20px;
}
.about__profile-partner ul li {
    width: calc((100% - 30px) / 2);
    box-sizing: border-box;
}
.about__history dl {
    display: flex;
    padding: 15px 25px;
}
.about__history dt {
    flex-shrink: 0;
    width: 200px;
    color: var(--c-blue);
    font-weight: 600;
    position: relative;
    padding-left: 18px;
}
.about__history dt:before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 14px;
    background-color: var(--c-blue);
}
.about__history dl:nth-child(even) {
    background-color: #fff;
    border-radius: 5px;
}
.about__greeting-name {
    text-align: right;
    margin-top: 60px;
}
.about__greeting h3 {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--c-blue);
}
.about__business-lead {
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 30px;
    color: var(--c-blue);
}
.about__business-graph {
    margin-top: 80px;
    text-align: center;
    border: var(--c-line) 1px solid;
    border-radius: 20px;
    padding: 70px;
}
.about__business-graph img {
    width: 720px;
}
.about__business-graph--wid img {
    width: 620px;
}
.about__business-item:not(:last-child) {
    margin-bottom: 120px;
}
@media screen and (max-width:1080px){
.about__greeting h3 {
  margin-bottom: 2rem;
  font-size: 2rem;
}
    .about__profile table {
        line-height: 1.9;
    }
.about__profile th {
    display: block;
    width: auto;
    border-bottom: none;
    padding-bottom: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5rem;
}
.about__profile td dt {
  width: 12.5rem;
}
.about__profile td {
    display: block;
  width: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1.5rem;
}
.about__profile-num {
  display: block !important;
}
.about__profile-num li {
  padding-left: 3.5rem;
}
.about__profile-dot li::before {
  width: 0.6rem;
  height: 0.6rem;
  top: 1rem;
}
.about__profile-dot li {
  padding-left: 1.5rem;
}
.about__profile-partner ul {
  display: block;
}
.about__profile-partner ul li {
  width: auto;
}
.about__profile-partner ul:not(:last-child) {
  margin-bottom: 1.5rem;
}
.about__greeting-name {
  margin-top: 3rem;
}
.about__business-lead {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}
.about__business-graph {
  margin-top: 3rem;
  border-radius: 2rem;
  padding: 2rem;
}
.about__business-item:not(:last-child) {
  margin-bottom: 6rem;
}
.about__history dl {
  display: block;
    padding: 1.5rem;
    border-radius: 0.5rem;
    line-height: 1.7;
}
.about__history dt {
  width: auto;
  padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.about__history dt::before {
  width: 0.6rem;
  height: 0.6rem;
  top: 0.9rem;
}
}

.operation__lead {
    margin-bottom: 80px;
}
.operation__flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
.operation__item {
    border-radius: 10px;
    background-color: #fff;
    padding: 50px;
    box-sizing: border-box;
    width: calc((100% - 50px) / 2);
    position: relative;
    text-align: center;
}
.operation__item h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}
.operation__item dl {
    display: flex;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 600;
    align-items: center;
}
.operation__item dt {
    background-color: var(--c-blue);
    color: #fff;
    font-weight: 500;
    border-radius: 40px;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
}
.operation__item dd {
    font-size: 18px;
}
.operation__item ul li {
    position: relative;
    padding-left: 20px;
    text-align: left;
}
.operation__item ul li::before {
  content: "";
  background-color: var(--c-blue);
  position: absolute;
  z-index: 1;
  left: 0;
  width: 8px;
  height: 8px;
  top: 14px;
  border-radius: 50%;
}

.operation__item-icon {
    text-align: center;
    margin-bottom: 15px;
    width: 170px;
    margin-left: auto;
    margin-right: auto;
}
.operation__item-icon img {
    
}
.operation__item-num {
    font-family: var(--f-en);
  font-weight: 700;
    font-size: 35px;
    line-height: 1;
    color: var(--c-blue);
    border-bottom: var(--c-blue) 3px solid;
    border-top: var(--c-blue) 3px solid;
    display: inline-block;
    margin-bottom: 10px;
}

.operation__quality-item {
    width: calc((100% - 50px) / 2);
}
.operation__quality-item h3 {
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 25px;
}
.operation__quality-item-img {
    margin-bottom: 30px;
}
.operation__quality-item-img img {
    border-radius: 10px;
}
.operation__license {
    position: relative;
}
.operation__license-item h3 {
    font-weight: 600;
    font-size: 24px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.operation__license-item h3:before {
  content: "";
  background-color: var(--c-blue);
  position: absolute;
  z-index: 1;
  left: 0;
  width: 8px;
  height: 8px;
  top: 23px;
  border-radius: 50%;
}
.operation__license-item table th {
    border-bottom: var(--c-line) 1px solid;
    padding: 10px;
    width: 50%;
}
.operation__license-item table td {
    border-bottom: var(--c-line) 1px solid;
    padding: 10px;
}

.operation__license-item:not(:last-child) {
    margin-bottom: 100px;
}
.operation__certification-list {
    display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(14, auto);
  gap: 0 40px;
}
.operation__certification-list li {
    border-bottom: var(--c-line) 1px solid;
}
.operation__certification-list li dl {
    display: flex;
    padding: 10px;
}
.operation__certification-list li dd {
    margin-left: auto;
}
.operation__license-date {
    text-align: right;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 70px;
    
}
@media screen and (max-width:1080px){
.operation__lead {
  margin-bottom: 5rem;
}
.operation__flex {
  display: block;
}
.operation__item {
  border-radius: 1rem;
  padding: 3rem 2rem;
  width: auto;
}
.operation__item:not(:last-child) {
    margin-bottom: 3rem;
}
.operation__item-num {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.operation__item h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.operation__item-icon {
    margin-bottom: 1rem;
  width: 11rem;
}
.operation__item dt {
  border-radius: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: 1rem;
}
.operation__item dd {
  font-size: 1.6rem;
}
.operation__item dl {
  margin-bottom: 1.5rem;
}
.operation__item ul li {
    padding-left: 1.3rem;
}
.operation__item ul li::before {
  width: 0.6rem;
  height: 0.6rem;
  top: 1.2rem;
}
.operation__quality-item {
  width: auto;
}
    .operation__quality-item:not(:last-child) {
        margin-bottom: 3rem;
    }    
.operation__quality-item h3 {
  margin-bottom: 1.5rem;
  font-size: 1.9rem;
}
.operation__quality-item-img {
  margin-bottom: 2rem;
}
    
.operation__certification-list {
  display: block;
} 
.operation__certification-list li {
    width: auto;
}    
.operation__certification-list li dl {
  padding: 0.8rem 0;
}
.operation__license-item table th {
    width:auto;
    display: block;
    border-bottom: none;
    padding: 0;
    padding-top: 1rem;
} 
.operation__license-item table td {
    width:auto;
    display: block;
    padding: 0;
    padding-bottom: 1rem;
}
.operation__license-item h3 {
  font-size: 1.8rem;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.operation__license-item h3::before {
  width: 0.6rem;
  height: 0.6rem;
  top: 1.7rem;
}
.operation__license-item:not(:last-child) {
  margin-bottom: 5rem;
}
.operation__license-date {
  font-size: 1.3rem;
  top: 4.8rem;
}
}




.contact__txt {
    margin-bottom: 80px;
}
.contact__tel a {
    font-family: var(--f-en);
  font-weight: 700;
    color: var(--c-blue);
    font-size: 40px;
    line-height: 1;
}
.contact__tel a span {
    font-size: 60%;
}
.contact__tel p {
    font-weight: 500;
    margin-top: 10px;
}
.contact__tel-wrap {
    border: var(--c-line) 1px solid;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 90px;
}
.contact__tel-wrap .second-ttl {
  font-size: 30px;
  margin-bottom: 25px;
}
.contact__tel-wrap .second-ttl span {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 10px;
}
.contact__tel-wrap .second-ttl span:before {
    display: none;
}
.contact__input {
    border-radius: 10px;
    border: var(--c-line) 1px solid;
    width: 100%;
    height: 70px;
    padding: 15px; 
    box-sizing: border-box;
}
.contact__input:focus {
    border-color: var(--c-base);
}
.contact__form .conf-txt {
    margin-bottom: 60px;
}
.contact__form .conf-error {
    margin-bottom: 60px;
    color: #D3381C;
    border: #D3381C 1px solid;
    padding: 20px;
}
.contact__form table {
    border-top: var(--c-line) 1px solid;
}
.contact__form table th {
    border-bottom: var(--c-line) 1px solid;
    padding: 20px;
    font-weight: 700;
    width: 260px;
}
.contact__form table td {
    border-bottom: var(--c-line) 1px solid;
    padding: 20px;
}
.contact__form dl {
    margin-bottom: 30px;
}
.contact__form dt {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}
.contact__form dt span {
    background-color: var(--c-blue);
    color: #fff;
    font-size: 80%;
    display: inline-block;
    width: 50px;
    border-radius: 40px;
    text-align: center;
    line-height: 1.7;
    margin-right: 10px;
}

.contact__form dt span.free {
    background-color: #9cb5c1;
}
::placeholder {
  opacity: 0.5;
}
.contact__selectbox {
    border-radius: 10px;
    border: var(--c-line) 1px solid;
    width: 100%;
    height: 70px;
    padding: 15px; 
    box-sizing: border-box;
    background-color: #fff;
}
.contact__textarea {
    border-radius: 10px;
    border: var(--c-line) 1px solid;
    width: 100%;
    height: 300px;
    padding: 15px; 
    box-sizing: border-box;
    background-color: #fff;
}
.contact__privacy {
    text-align: center;
    margin-top: 20px;
}
.contact__error {
    font-weight: 600;
    color: #D3381C;
}
.contact__error .formError{
    margin-bottom: 15px;
}
.contact__privacy {
    font-weight: 500;
}
.contact__privacy p {
    margin-bottom: 10px;
}
.contact__privacy p a:link,
.contact__privacy p a:visited {
    color: var(--c-blue);
    font-weight: 600;
    text-decoration: underline;
}
.contact__privacy p a:hover {
    text-decoration: none;
}
.contact__btn {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap:20px;
}
.contact__btn button {
    display: flex;
    width: 370px;
    height: 80px;
    justify-content: center;
    align-items: center;
    border: none;
    font-family: var(--f-jp);
    font-weight: 700;
    background-color: var(--c-blue);
    color: rgb(255, 255, 255);
    font-size: 18px;
    background-image: url(../images/arrow_w.png);
    background-size: 10px;
    background-repeat: no-repeat;
    border-radius: 40px;
    background-position: right 30px center;
    margin: auto;
    cursor: pointer;
    transition: ease-in-out .2s;
}
.contact__btn button:hover {
    opacity: 0.8;
}
.contact__btn button.back-btn {
    background-color: #9cb5c1;
}
.contact input[type=radio] + label,
.contact input[type=checkbox] + label {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    /* font-size: 14px; */
    line-height: 30px;
    cursor: pointer;
}
.contact input[type="checkbox"]:checked + label::after {
    left: 3px;
    width: 19px;
    height: 10px;
    margin-top: -8px;
    border-left: 3px solid var(--c-blue);
    border-bottom: 3px solid var(--c-blue);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
    .contact input[type=radio],
    .contact input[type=checkbox] {
        margin: 0;
		opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -ms-filter: "alpha(opacity=0)";
	margin-left:-13px;
    }
    .contact input[type=radio] + label,
    .contact input[type=checkbox] + label {
        padding: 0 0 0 35px;
    }
.contact input[type="radio"] + label::before, input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 24px;
    height: 24px;
    margin-top: -11px;
    background: #FFF;
  }
    .contact input[type=radio] + label::before {
        border: 2px solid #ccc;
        border-radius: 30px;
    }
    .contact input[type=checkbox] + label::before {
        border: 2px solid #ccc;
    }
    .contact input[type=radio]:checked + label::after,
    .contact input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;
         
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
    }
    .contact input[type=radio]:checked + label::after {
	left: 5px;
	width: 8px;
	height: 8px;
	margin-top: -4px;
	background: var(--c-bsc);
	border-radius: 8px;
    }
    .contact input[type="radio"]:checked + label::after {
    left: 7px;
    width: 10px;
    height: 10px;
    margin-top: -4px;
    background: var(--c-bsc);
    border-radius: 8px;
    
  }
@media screen and (max-width:1080px){
.contact__txt {
  margin-bottom: 4rem;
}
.contact__tel-wrap .second-ttl {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact__tel a {
  font-size: 2.6rem;
}
.contact__tel p {
  margin-top: 0;
}
.contact__tel-wrap {
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 6rem;
}
.contact__form dt {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.contact__form dt span {
  width: 4.5rem;
  border-radius: 4rem;
  margin-right: 1rem;
}
.contact__error .formError {
  margin-bottom: 1rem;
}
.contact__input {
  border-radius: 1rem;
  height: 5rem;
  padding: 1rem;
    font-size: 1.6rem;
}
.contact__selectbox {
  border-radius: 1rem;
  height: 5rem;
  padding: 1rem;
    font-size: 1.6rem;
}
.contact__textarea {
  border-radius: 1rem;
    height: 22rem;
    font-size: 1.6rem;
}
.contact__form dl {
  margin-bottom: 2rem;
}
.contact__btn {
  margin-top: 4rem;
  display: block;
}
.contact__btn li:not(:last-child) {
    margin-bottom: 2rem;
}
.contact__btn button {
  width: 30rem;
  height: 6rem;
  font-size: 1.5rem;
  border-radius: 4rem;
}
.contact input[type="radio"] + label::before, input[type="checkbox"] + label::before {
  width: 2.2rem;
  height: 2.2rem;
  margin-top: -1.1rem;
}
.contact input[type="radio"] + label, .contact input[type="checkbox"] + label {
  padding: 0 0 0 3rem;
}
.contact__privacy {
  margin-top: 2rem;
}
.contact__privacy p {
  margin-bottom: 1rem;
}
.contact__form table th {
  width: auto;
    display: block;
    padding: 0;
    border-bottom: none;
    padding-top: 1.5rem;
}
.contact__form table td {
  width: auto;
    display: block;
    padding: 0;
    padding-bottom: 1.5rem;
}
.contact__form .conf-txt {
  margin-bottom: 3rem;
}
.contact__form .conf-error {
  margin-bottom: 4rem;
  padding: 2rem;
}
}
.recruit_tbl th {
    border-bottom: var(--c-line) 1px solid;
    padding: 20px;
    font-weight: 500;
    width: 200px;
  font-weight: 600;
    vertical-align: top;
}
.recruit_tbl td {
    border-bottom: var(--c-line) 1px solid;
    padding: 20px;
}
.recruit__rikunavi {
    text-align: center;
    margin-top: 60px;
}
.recruit__rikunavi dt {
    margin-bottom: 20px;
}
.recruit__contact {
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 50px;
    margin-top: 100px;
}
.recruit__contact h3 {
    font-weight: 600;
    font-size: 24px;
}
.recruit__contact-tel {
    margin-top: 15px;
    margin-bottom: 15px;
}
.recruit__contact-tel a {
    font-family: var(--f-en);
  font-weight: 700;
  color: var(--c-blue);
  font-size: 40px;
  line-height: 1;
}
.recruit__contact-tel a span {
    font-size: 60%;
}

@media screen and (max-width:1080px){
.recruit_tbl th {
  display: block;
    width: auto;
    border-bottom: none;
    padding-bottom: 0.5rem;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5rem;
}
.recruit_tbl td {
    display: block;
    width: auto;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
.recruit__contact {
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 5rem;
}
.recruit__contact h3 {
  font-size: 1.8rem;
}
.recruit__contact-tel a {
  font-size: 2.6rem;
}
.recruit__contact-tel {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.recruit__rikunavi dt {
  margin-bottom: 1.5rem;
}
.recruit__rikunavi {
  margin-top: 4rem;
}
}
























