@charset "UTF-8";
/* 全体装飾
------------------------------------------------------- */
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
}
body {
    font-family: sans-serif;
    line-height: 1.7;
    color: #131313;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
}
*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    display: block;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-size: revert;
    font-weight: normal;
}
.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}
ul, ol {
    list-style: none;
}

/* ヘッダー
------------------------------------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #233b6c;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 4%;
}
.logo-img {
    width: 100px;
}
nav {
    padding-top: 140px;
}
nav ul {
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
}
nav ul li {
    position: relative;
    margin-left: 50px;
}
nav ul li a {
    color: #fafafa;
    transition: .3s;
}
nav ul li a:hover {
    color: #999;
}
nav ul .has-child-ul {
    display: block;
    background-color: #eee;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 0 -50px 0 -15px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    transition: .3s;
}
    /*hoverしたら表示*/
    nav li.has-child:hover > ul,
    nav li.has-child ul li:hover > ul,
    nav li.has-child:active > ul,
    nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
    transition: .6s;
}
nav ul .has-child-ul a {
    color: #233b6c;
    font-weight: bold;
    margin-left: -50px;
}
.has-child {
    margin-left: 70px;
}
/*2階層目を持つliの矢印の設定*/
nav ul .has-child::before {
	content:'';
	position: absolute;
	left: -17px;
	top: 11px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fafafa;
    border-right: 2px solid #fafafa;
    transform: rotate(135deg);
}
.contact-btn {
    width: 100%;
    background: #fafafa;
    color: #233b6c !important;
    font-weight: bold;
    border-radius: 30px;
    padding: 5px 15px;
}
.contact-btn:hover {
    opacity: .5;
}

/* メインエリア
------------------------------------------------------- */
.main {
    text-align: center;
    margin-top: 10%;
}
.content {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 4%;
}
.main-conte {
    position: relative;
    clip-path: polygon(0 85%, 100% 95%, 100% 0, 0 0);
    margin-top: -30px;
}
.main h2 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #fafafa;
    margin: 0;
    padding: 0;
}
.main h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #fafafa;
    margin: 0;
    padding: 0;
}
.contact-btn01 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    background: #ee7800;
    border-radius: 15px;
    box-shadow: inset 5px 5px 10px #d66c00,
            inset -5px -5px 10px #ff8400;
    margin-top: 15px;
    padding: 15px 25px;
    transition: .4s;
}
.contact-btn01 a {
    color: #fafafa;
}
.contact-btn01:hover {
    opacity: 0.7;
}

/* ごあいさつ
------------------------------------------------------- */
.main-article {
    margin: 10px;
    position: relative;
}
.main-article h4 {
    font-size: 4.8rem;
    text-align: left;
    margin: 10px;
    position: relative;
}
.main-article h4::after {
    content: '';
    width: 260px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 80px;
    left: -10px;
}
.main-article h5 {
    font-size: 3rem;
    text-align: left;
    margin: -20px 0 0 100px;
    position: relative;
}
.main-article h5::after {
    content: '';
    width: 1px;
    height: 75px;
    background-color: #233b6c;
    position: absolute;
    top: -2px;
    left: 186px;
    transform: rotate(-45deg);
}
.main-article h6 {
    font-size: 4.5rem;
    padding: 10px;
}
.main-article_conte01 {
    display: flex;
    margin-top: 30px;
}
.main-article_conte-text01 {
    padding: 10px;
    text-align: left;
}
.main-article-img01 {
    width: 300vw;
    padding: 10px;
    overflow: hidden;
    position: relative;
    object-fit: contain;
}
.main-article_text01 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-left: 20px;
    position: relative;
}
.main-article_text01::after {
    content: '';
    width: 10px;
    height: 110px;
    background-color: #233b6c;
    position: absolute;
    top: 0;
    left: -20px;
}
.main-article_text02 {
    font-size: 1.75rem;
    margin-top: 20px;
}
.main-article_text03 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-left: 20px;
    position: relative;
}
.main-article_text03::after {
    content: '';
    width: 10px;
    height: 70px;
    background-color: #233b6c;
    position: absolute;
    top: 0;
    left: -20px;
}
.main-article_conte02 {
    display: flex;
    margin-top: 80px;
}
.main-article_conte-text02 {
    padding: 10px;
    text-align: left;
}
.main-article-img02 {
    width: 300vw;
    padding: 10px;
    overflow: hidden;
    position: relative;
    object-fit: contain;
}

/* 会社概要
------------------------------------------------------- */
.company-article {
    margin: 10px;
    padding-top: 120px;
    position: relative;
}
.company-article h4 {
    font-size: 4.8rem;
    text-align: left;
    margin: 10px;
    position: relative;
}
.company-article h4::after {
    content: '';
    width: 210px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 80px;
    left: -10px;
}
.company-article h5 {
    font-size: 3rem;
    text-align: left;
    margin: -15px 0 0 60px;
    position: relative;
}
.company-article h5::after {
    content: '';
    width: 1px;
    height: 55px;
    background-color: #233b6c;
    position: absolute;
    top: -3px;
    left: 169px;
    transform: rotate(-45deg);
}
.company-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1280px;
    font-size: 1.5rem;
    text-align: left;
    margin: 50px auto 150px;
}
.company-table th, .company-table td {
    border: 2px solid #fafafa;
    background-color: #e6f1f6;
    padding: 1em;
}
.company-table th {
    background-color: #4d9bc1;
    color: #fafafa;
    font-weight: bold;
    text-align: center;
    width: 20%;
    min-width: 4em;
}
.locations-table_conte {
    position: relative;
}
.locations-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1080px;
    text-align: left;
    margin: 40px auto 0;
    position: relative;
}
.locations-table::before {
    content: '';
    width: 1000px;
    height: 1px;
    background-color: #808080;
    position: absolute;
    top: 170px;
    left: 0;
}
.locations-table tbody {
    display: flex;
    flex-wrap: wrap; /* 画面幅が狭い時に折り返す設定 */
    gap: 20px;      /* 拠点間の余白 */
}
.locations-table tr {
    display: block;
    padding: 10px;
    width: fit-content;
}
.locations-table tr {
    width: 49%;
}
.locations-table th {
    width: 10%;
    border-radius: 50%;
    padding: 1em;
}
.locations-table td {
    width: 40%;
    padding: 1em;
    font-size: 1.5rem;
}
.locations-table td::first-line {
    font-weight: bold;
    font-size: 2rem;
}
.locations-table_icon {
    width: 80px;
    filter: brightness(0) saturate(100%) invert(79%)
    sepia(12%) saturate(0%) hue-rotate(154deg) 
    brightness(98%) contrast(92%);
}
.maps-conte {
    display: flex;
}
.locations-maps {
    width: 15px;
    height: 20px;
    margin-left: 5px;
}

/* 採用情報
------------------------------------------------------- */
.contact-article {
    margin: 10px;
    padding-top: 120px;
    position: relative;
}
.contact-article h4 {
    font-size: 4.8rem;
    text-align: left;
    margin: 10px;
    position: relative;
}
.contact-article h4::after {
    content: '';
    width: 210px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 80px;
    left: -10px;
}
.contact-article h5 {
    font-size: 3.5rem;
    text-align: left;
    margin: -20px 0 0 85px;
    position: relative;
}
.contact-article h5::after {
    content: '';
    width: 1px;
    height: 55px;
    background-color: #233b6c;
    position: absolute;
    top: 1px;
    left: 144px;
    transform: rotate(-45deg);
}
.contact-conte {
    display: flex;
    margin: 50px 10px;
}
.contact-img {
    width: 40%;
    margin: 20px;
}
.contact-conte_text {
    margin: 20px;
    text-align: left;
}
.contact-text01 {
    margin: 0 0 10px 20px;
    font-size: 2.5rem;
    line-height: 1.4;
    position: relative;
}
.contact-text01::after {
    content: '';
    width: 10px;
    height: 110px;
    background-color: #233b6c;
    position: absolute;
    top: 0px;
    left: -20px;
}
.contact-text02 {
    margin-top: 20px;
    font-size: 1.75rem;
    line-height: 1.4;
}
.contact-text03 {
    font-size: 4.5rem;
    position: relative;
}
.contact-text03::before {
    content: '';
    width: 150px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 35px;
    left: 150px;
}
.contact-text03::after {
    content: '';
    width: 150px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 35px;
    right: 150px;
}
.contact-text04 {
    font-size: 4rem;
    position: relative;
}
.contact-text04::before {
    content: '';
    width: 150px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 35px;
    left: 100px;
}
.contact-text04::after {
    content: '';
    width: 150px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 35px;
    right: 100px;
}
.locations-btn_conte {
    display: flex;
    justify-content: center;
}
.locations-btn02,
.locations-btn03,
.locations-btn04,
.locations-btn05 {
    font-size: 1.75rem;
    width: 180px;
    margin: 30px;
    padding: 20px;
    background-color: #808080;
    color: #fafafa;
    border-radius: 30px;
    margin-bottom: 80px;
    transition: .4s;
}
.locations-btn02:hover,
.locations-btn03:hover,
.locations-btn04:hover {
    opacity: 0.7;
}

/* 営業拠点
------------------------------------------------------- */
.recruit-text {
    margin-left: 120px;
    text-align: left;
    font-size: 3rem;
}
.in-charge {
    display: flex;
    position: relative;
}
.call-icon {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 5px;
    left: 130px;
}
.recruit-table02 {
    border-collapse: collapse;
    width: 100%;
    max-width: 1280px;
    text-align: left;
    font-size: 1.5rem;
    margin: 10px auto 50px;
}
.recruit-table02 th, .recruit-table02 td {
    border: 2px solid #fafafa;
    background-color: #eee;
    padding: 1em;
}
.recruit-table02 th {
    background-color: #efa781;
    color: #fafafa;
    text-align: center;
    width: 20%;
    min-width: 4em;
}
.map-icon {
    background-image: url("../images/icon_mail.png");
}

/* お問い合わせ
------------------------------------------------------- */
.contact-article .contact-title01 {
    font-size: 4.8rem;
    text-align: left;
    margin: 10px;
    position: relative;
}
.contact-article .contact-title01::after {
    content: '';
    width: 300px;
    height: 1px;
    background-color: #233b6c;
    position: absolute;
    top: 80px;
    left: -10px;
}
.contact-article .contact-title02 {
    font-size: 3.5rem;
    text-align: left;
    margin: -20px 0 0 160px;
    position: relative;
}
.contact-article .contact-title02::after {
    content: '';
    width: 1px;
    height: 55px;
    background-color: #233b6c;
    position: absolute;
    top: 1px;
    left: 159px;
    transform: rotate(-45deg);    
}
form {
    display: inline-block;
    font-size: 1.5rem;
    background: #ddccb6;
    width: 980px;
    margin: 50px;
    padding: 50px;
    border: 1px solid #eee;
    border-radius: 10px;
}
.form-confirm {
    background: #00ecff;
}
form img {
    width: 50px;
    margin: 0 auto 10px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(5%) saturate(239%) hue-rotate(0deg) brightness(110%) contrast(96%);}
.contact-table {
    width: 100%;
    margin-bottom: 10px;
    padding: 30px;
}
.contact-item,
.contact-body {
    padding: 20px;
    border: 1px solid #fafafa;
}
.contact-item {
    text-align: left;
    width: 30%;
    background-color: #eee;
    border-radius: 3px;
}
.contact-body {
    width: 70%;
    text-align: left;
    background-color: #fafafa;
    border-radius: 3px;
}
.form-text {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 400px;
}
.form-sex {
    margin-right: 15px;
}
.form-select {
    width: 180px;
    height: 40px;
    padding: 5px;
    border: solid 1px #ccc;
    border-radius: 5px;
}
.form-textarea {
    width: 100%;
    padding: 10px;
    height: 200px;
    border-radius: 5px;
    border: solid 1px #ccc;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
form table tr th span {
    font-size: 1.2rem;
    background-color: #233b6c;
    color: #fafafa;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.any {
    font-size: 1.2rem;
    background-color: #999;
    color: #fafafa;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.robot p {
    text-align: center;
    margin-bottom: 15px;
}
.robot-checkbox {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.form-btn {
    display: flex;
    justify-content: center;
}
.form-submit {
    width: 250px;
    background-color: #233b6c;
    color: #fafafa;
    font-weight: bold;
    display: block;
    margin: 0 10px;
    padding: 10px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-cancel {
    width: 250px;
    background-color: #999;
    color: #fafafa;
    font-weight: bold;
    display: block;
    margin: 0 10px;
    padding: 10px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-back {
    width: 250px;
    background-color: #999;
    color: #fafafa;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 100vh;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.send-p {
    font-size: 1.75rem;
    background-color: #fafafa;
    border-radius: 5px;
}

/* フッター
------------------------------------------------------- */
.btn-conte {
    position: relative;
    text-align: center;
    display: block;
}
.scroll-btn {
    font-size: 2rem;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #233b6c;
    color: #fafafa;
    padding: 20px 15px;
    position: absolute;
    bottom: -50px;
    right: 80px;
    transition: .4s;
}
.scroll-btn:hover {
    opacity: 0.7;
}
.contact-btn02 {
    position: absolute;
    top: 23px;
    right: 110px;
    transform: translate(-50%, -90%);
    font-size: 2.5rem;
    background: #ee7800;
    border-radius: 10px;
    box-shadow: inset 5px 5px 10px #d66c00,
            inset -5px -5px 10px #ff8400;
    margin-top: 15px;
    padding: 10px 20px;
    transition: .4s;
}
.contact-btn02 a {
    color: #fafafa;
}
.contact-btn02:hover {
    opacity: 0.7;
}
.footer {
    background-color: #233b6c;
    height: 100px;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 80px;
    padding-top: 35px;
}
.footer p {
    color: #fafafa;
}



/* -------------------------------------------------------
----------------------------------------------------------
タブレット860px以下の設定
----------------------------------------------------------
------------------------------------------------------- */
@media screen and (max-width:860px) {
/*ハンバーガーメニュー*/
.menu-wrapper {
    position: relative;
}
.menu-icon {
    background-color: #fafafa;
    width: 70px;
    height: 70px;
    position: fixed; /* ← fixedにして常に固定 */
    top: 15px;
    right: 30px;
    cursor: pointer;
    z-index: 3;
    display: inline-block;
    padding: 12px;
    border-radius: 5px;
}
.menu-icon span {
    display: block;
    height: 4px;
    margin: 9px 0;
    background: #233b6c;
    border-radius: 5px;
    transition: 0.4s;
}
/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
    transform: scale(0);
    opacity: 0 !important;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}
/* オーバーレイ背景 */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1;
}
#menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
}
/* メニュー本体（左から出す） */
.menu {
    position: fixed;
    top: 0;
    left: -500px; /* ← 初期位置を左へ */
    width: 500px;
    height: 100%;
    background: #fafafa;
    box-shadow: 3px 0 10px rgba(0,0,0,0.3);
    transition: left 0.5s ease;
    z-index: 2;
}
#menu-toggle:checked ~ .menu {
    left: 0; /* ← 開いたときは左0へ */
}
.menu ul {
    display: block;
    padding: 30px 0 0 80px;
}
.menu li {
    margin: 20px 0;
}
.menu a {
    color: #233b6c;
    font-size: 3.5rem;
    font-weight: bold;
}
nav ul .has-child-ul {
    display: block;
    background-color: #fafafa;
    padding: 0;
    border-radius: 0;
    margin: 0;
	visibility: visible;
	opacity: 1;
    transition: 0;
}
nav ul .has-child-ul a {
    color: #233b6c;
    font-weight: normal;
    margin-left: 50px;
}
nav ul .has-child::before {
	content:'';
	position: absolute;
	left: -35px;
	top: 15px;
	width: 20px;
	height: 20px;
	border-top: 3px solid #233b6c;
    border-right: 3px solid #233b6c;
    transform: rotate(135deg);
}
.contact-btn {
    border-radius: 0;
    width: 0;
    padding: 0;
}


html {
    font-size: 60%;
}
.content {
    padding: 0 2%;
}
.main-article h4::after {
    width: 230px;
    position: absolute;
    top: 75px;
    left: 5px;
}
.main-article h5::after {
    height: 50px;
    position: absolute;
    top: 0px;
    left: 162px;
}
.main-article_text02 {
    font-size: 2rem;
    margin-top: 20px;
}
.main-article_conte01 {
    flex-wrap: wrap;
}
.main-article_conte02 {
    flex-wrap: wrap;
}
.main-article-img01 {
    order: -1;
}

.company-article h4::after {
    width: 195px;
    position: absolute;
    top: 75px;
    left: 0px;
}
.company-article h5 {
    font-size: 3rem;
    margin: -15px 0 0 80px;
}
.company-article h5::after {
    height: 50px;
    position: absolute;
    top: -5px;
    left: 142px;
}
.company-table {
    max-width: 860px;
    font-size: 2rem;
    margin: 50px auto;
}
.locations-table {
    margin-top: 20px;
}
.locations-table tbody {
    gap: 0;
}
.locations-table::before {
    display: none;
}
.locations-table::after {
    display: none;
}
.locations-table_line::after {
    display: none;
}
.locations-table tr {
    width: 100%;
    border-bottom: 1px solid #999;
}
.locations-table tr:last-child {
    border-bottom: none;
}
.locations-table td {
    font-size: 2.25rem;
}
.locations-table th {
    padding-left: 30px;
}
.locations-table td::first-line {
    font-size: 3rem;
}
.locations-table_icon {
    width: 100px;
}
.locations-maps {
    width: 20px;
    height: 25px;
}

.contact-article h4::after {
    top: 76px;
}
.contact-article .contact-title01::after {
    width: 280px;
    position: absolute;
    top: 75px;
    left: 0;
}
.contact-article .contact-title02 {
    margin: -20px 0 0 150px;
}
.contact-article .contact-title02::after {
    height: 55px;
    position: absolute;
    top: -1px;
    left: 159px;
    transform: rotate(-45deg);
}
.contact-conte {
    flex-wrap: wrap;
    margin: 0;
}
.contact-item {
    padding: 10px;
}
.contact-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.contact-text01::after {
    height: 105px;
}
.contact-text02 {
    font-size: 2rem;
}
.contact-text03 {
    font-size: 3.5rem;
    margin: 20px 0 10px;
}
.contact-text03::before {
    width: 100px;
    position: absolute;
    top: 30px;
    left: 40px;
}
.contact-text03::after {
    width: 100px;
    position: absolute;
    top: 30px;
    right: 40px;
}
.locations-btn_conte {
    display: flex;
    flex-wrap: wrap;
}
.locations-btn02,
.locations-btn03,
.locations-btn04,
.locations-btn05 {
    font-size: 3rem;
    width: 45%;
    height: 100px;
    margin: 15px;
    padding: 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}
.recruit-text {
    margin-left: 10px;
}
.call-icon {
    position: absolute;
    top: 5px;
    left: 20px;
}
.recruit-table02 {
    font-size: 2rem;
}
.contact-text04 {
    font-size: 3.5rem;
}
.contact-text04::before {
    width: 50px;
    position: absolute;
    top: 30px;
    left: 15px;
}
.contact-text04::after {
    width: 50px;
    position: absolute;
    top: 30px;
    right: 15px;
}


.contact-title01::after {
    width: 280px;
    position: absolute;
    top: 75px;
    right: 235px;
}
.contact-title02::after {
    height: 55px;
    position: absolute;
    top: -2px;
    left: 140px;
    transform: rotate(-45deg);
}
.contact-title02 {
    margin-left: 170px;
}
.contact-table {
    padding: 10px;
}
form {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    font-size: 1.3rem;
}

}



/* -------------------------------------------------------
----------------------------------------------------------
スマホ480px以下の設定
----------------------------------------------------------
------------------------------------------------------- */
@media screen and (max-width:480px) {
html {
    font-size: 45%;
}
.header {
    height: 80px;
}
.menu {
    padding-top: 50px;
    left: -310px;
    width: 310px;
}
.menu li {
    margin: 5px 0;
}
.menu a {
    font-size: 2.5rem;
}
.logo-img {
    width: 70px;
}
.menu-icon {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 15px;
    padding: 7px 10px;
}
.menu-icon span {
    margin: 8.5px 0;
}
nav ul .has-child::before {
    left: -20px;
    top: 7px;
    width: 10px;
    height: 10px;
}
.main h2 {
    font-size: 3.1rem;
}
.main h3 {
    font-size: 2.5rem;
    top: 45%;
}
.contact-btn01 {
    top: 52%;
}
.main-article h4 {
    font-size: 3.1rem;
}
.main-article h5 {
    font-size: 2.5rem;
    margin-left: 40px;
}
.main-article h4::after {
    width: 120px;
    top: 32px;
    left: 0;
}
.main-article h5::after {
    height: 30px;
    top: 1px;
    left: 100px;
}
.main-article h6 {
    font-size: 2.5rem;
}
.main-article_conte01 {
    margin: 0;
}
.main-article_conte02 {
    margin-top: 15px;
}
.main-article_text01 {
    font-size: 2.3rem;
}
.main-article_text01::after {
    height: 72px;
}
.main-article_text03 {
    font-size: 2.3rem;
}
.main-article_text03::after {
    height: 72px;
}
.contact-btn02 {
    right: 50px;
}
.scroll-btn {
    width: 60px;
    height: 60px;
    padding: 18px 15px;
    right: 35px;
}

.footer {
    height: 60px;
    padding-top: 20px;
}

.company-article {
    padding-top: 70px;
}
.company-article h4 {
    font-size: 3.1rem;
}
.company-article h5 {
    font-size: 2.5rem;
    margin-left: 17px;
}
.company-article h4::after {
    width: 95px;
    top: 36px;
    left: 0;
}
.company-article h5::after {
    height: 30px;
    top: 0;
    left: 98px;
}
.company-table {
    margin: 10px 0;
    font-size: 2rem;
}
.company-table th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;
}
.company-table td {
    display: block;
    width: 100%;
    padding: 10px;
}

.locations-table {
    margin: 0;
}
.locations-table tr {
    padding: 15px 0;
}
.locations-table th {
    display: block;
    width: 0;
    margin: 0;
    padding: 0;
}
.locations-table td {
    padding: 0;
    font-size: 2rem;
}
.locations-table td::first-line {
    font-size: 2.3rem;
}

.contact-article {
    padding-top: 80px;
}
.contact-img {
    margin: 5px;
}
.contact-article h4 {
    font-size: 3.1rem;
    margin-bottom: 12px;
}
.contact-article h4::after {
    width: 95px;
    top: 35px;
    left: -3px;
}
.contact-article h5 {
    font-size: 2.5rem;
    margin-left: 40px;
}
.contact-article h5::after {
    height: 30px;
    top: 2px;
    left: 72px;
}
.contact-text01 {
    font-size: 2.3rem;
}
.contact-text01::after {
    height: 92px;
}
.contact-text02 {
    font-size: 2rem;
}
.contact-text03 {
    font-size: 2.5rem;
    margin: 0;
}
.contact-text03::before {
    width: 30px;
    top: 15px;
    left: 5px;
}
.contact-text03::after {
    width: 30px;
    top: 15px;
    right: 5px;
}

.recruit-table02 {
    margin: 10px auto 30px;
}
.recruit-text {
    font-size: 2.3rem;
}
.call-icon {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 5px;
    left: 20px;
}
.recruit-table02 th {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 2rem;
    padding: 10px;
}
.recruit-table02 td {
    display: block;
    width: 100%;
    font-size: 2rem;
    padding: 10px;
}
.contact-text04 {
    font-size: 2.2rem;
}
.contact-text04::before {
    width: 20px;
    position: absolute;
    top: 13px;
    left: 2px;
}
.contact-text04::after {
    width: 20px;
    position: absolute;
    top: 13px;
    right: 2px;
}
.locations-btn_conte {
    display: flex;
    justify-content: center;
}
.locations-btn02,
.locations-btn03,
.locations-btn04,
.locations-btn05 {
    font-size: 2.3rem;
    width: 140px;
    height: 55px;
    margin: 10px;
    padding: 10px;
    background-color: #808080;
    color: #fafafa;
    border-radius: 30px;
    margin-bottom: 20px;
}
.contact-article .contact-title01 {
    font-size: 3.1rem;
    margin-bottom: 12px;
}
.contact-article .contact-title02 {
    font-size: 2.5rem;
    margin-left: 75px;
}
.contact-article .contact-title01::after {
    width: 138px;
    top: 33px;
    left: 0;
}
.contact-article .contact-title02::after {
    height: 30px;
    top: 0;
    left: 83px;
}
.contact-title02 {
    margin-left: 120px;
}
form {
    width: 100%;
    margin: 5px 0;
    padding: 15px 10px;
    font-size: 1rem;
}
form img {
    width: 35px;
}
form p {
    font-size: 2rem;
    text-align: left;
}
.contact-table {
    margin-top: 10px;
    padding: 0px;
    font-size: 2rem;
}
.contact-table th {
    display: block;
    width: 100%;
}
.contact-table td {
    display: block;
    width: 100%;
}
.contact-item {
    padding: 10px;
}
.contact-body {
    padding: 10px;
}
form table tr th span {
    font-size: 1.6rem;
    margin-left: 5px;
}
.any {
    font-size: 1.6rem;
    margin-left: 5px;
}
.form-submit {
    font-size: 1.75rem;
}
.form-cancel {
    font-size: 1.75rem;
}
}