
/* 
Theme Name: template
Author: tokka
Author URI: https://tokka.co.jp/
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 2.22;
    letter-spacing: normal;
    font-size: 1.8rem;
}
a {
    display: inline-block;
    text-decoration: none;
    transition:all 0.3s ease;
    color: inherit;
}
a:hover{
    transition:all 0.3s ease;
    outline:none;
    opacity: 0.8;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
@media (max-width: 800px) {
    html {
        scroll-padding-top: 80px;
    }
    body {
        line-height: 2;
        font-size: 1.6rem;
    }
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.inner {
    width: 83.3333%;
    max-width: 1400px;
    margin: 0 auto;
}
.outer {
    max-width: 1920px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.align__center{
    align-items: center;
}
.align__baseline{
    align-items: baseline;
}
.align__st{
    align-items: stretch;
}
.justify__between{
    justify-content: space-between;
}
.iB {
    display: inline-block;
}
.sp {
    display: none !important;
}
.sp600,.sp500,.sp1000 {
    display: none;
}
:root {
}
.font-en {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-weight: 700;
}
.blue {
    color: #233D79;
}
.red {
    color: #E22626;
}
@media (max-width: 1000px) {
    .sp1000 {
        display: block;
    }
    .pc1000 {
        display: none;
    }
}
@media (max-width: 800px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: unset !important;
    }
    .inner {
        width: 88.5%;
    }
    .outer {
        width: 100%;
    }
}
@media (max-width: 600px){
    .sp600 {
        display: block;
    }
}
@media (max-width: 500px){
    .sp500 {
        display: block;
    }
}
/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    top: 0;
    height: 100px;
    z-index: 999;
    border-bottom: 3px #233D79 solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 75px;
    padding-right: 80px;
    background-color: white;
}
.header-logo {
    width: 280px;
}
header nav {
    display: flex;
    align-items: center;
    gap: 80px;
}
header nav ul {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.header-tel {
    color: #E22626;
    font-family: "Inter", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    display: flex;
    gap: 8px;
}
.header-tel img {
    width: 38px;
}
.header-tel rt {
    font-size: 1.2rem;
}
.sp_nav {
    display: none;
    font-size: 2.6rem;
}
.sp_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1400px){
    header {
        padding-left: 50px;
        padding-right: 50px;
    }
    .header-logo {
        width: 240px;
    }
    header nav {
        gap: 40px;
    }
    header nav ul {
        gap: 30px;
    }
}
@media (max-width: 1200px){
    header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-logo {
        width: 200px;
    }
    header nav {
        gap: 20px;
    }
    header nav ul {
        gap: 20px;
    }
    .header-tel {
        font-size: 2.6rem;
    }
}
@media (max-width: 800px){
    header {
        height: 80px;
    }
    .sp_nav {
        display: unset;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #233D79E6;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        /* 初期：非表示 */
        visibility: hidden;
        opacity: 0;
        /* ふわっと表示 */
        transition: 0.3s ease-in-out;
    }
    /* ナビゲーションボタン（開く） */
    #navbtn{
        position: fixed;
        top: 30px;
        right: 15px;
        padding: 0;
        outline: none;
        border: none;
        background: none;
        width: 30px;
        height: 20px;
        cursor: pointer;
    }
    #navbtn::before,
    #navbtn::after{
        content : '';
        display: block;
        height: 1px;
        background-color: #333333;
        transform: translateY(10px);
        transition: 0.3s ease-in-out;
    }
    #navbtn::before{
        transform: translateY(-10px);
        box-shadow: 0 10px #333333;
    }
    /* ナビゲーションボタン（閉じる） */
    .open #navbtn{
        z-index: 100;
    }
    .open #navbtn::before,
    .open #navbtn::after{
        background-color: white;
    }
    .open #navbtn::before{
        transform: rotate(-45deg);
        box-shadow: none;
    }
    .open #navbtn::after{
        transform: rotate(45deg);
        box-shadow: none;
    }
    /* ナビゲーションメニュー 開いた時*/
    .open .sp_nav{
        visibility: visible;
        opacity: 1;
    }
}
.floating {
    position: fixed;
    bottom: 0;
    height: 80px;
    width: 100%;
    z-index: 999;
}
/* ------------------------------------- /
/  main
/* ------------------------------------- */
main {
    padding-top: 100px;
    position: relative;
}
@media (max-width: 800px){
    main {
        padding-top: 80px;
    }
}
/* ------------------------------------- /
/  main visual
/* ------------------------------------- */
.mv-wrapper {
    position: relative;
    overflow: hidden;
}
.mv-wrapper::before {
    content: '';
    position: absolute;
    width: 118%;
    aspect-ratio: 1;
    background-color: #F7F7F7;
    z-index: -2;
    border-radius: 50%;
    bottom: 25%;
    left: -5%;
}
.mv-wrapper::after {
    content: '';
    position: absolute;
    width: 94%;
    aspect-ratio: 1;
    background-color: white;
    z-index: -1;
    border-radius: 50%;
    bottom: 45%;
    left: 7%;
}
.mv {
    text-align: right;
    /* aspect-ratio: 1.96; */
    max-height: 980px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}
.mv .swiper {
    width: 75%;
    margin-left: 0;
}
.mv .mv_contents {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
    padding-bottom: 100px;
}
h1 {
    /* font-size: 10rem; */
    font-size: clamp(6rem, 1rem + 5vw, 10rem);
    line-height: 1.28;
    font-weight: 700;
    margin-bottom: 40px;
    margin-right: 50px;
}
.mv span.sm {
    /* font-size: 3.2rem; */
    font-size: clamp(2.2rem, 0.95rem + 1.25vw, 3.2rem);
    line-height: 1.25;
    margin-right: 128px;
    display: block;
}
@media (max-width: 1400px){
    .mv .mv_contents {
        padding-bottom: 80px;
    }
    h1 {
        margin-bottom: 30px;
        margin-right: 40px;
    }
    .mv span.sm {
        margin-right: 100px;
    }
}
@media (max-width: 1200px){
    .mv .mv_contents {
        padding-bottom: 50px;
    }
    h1 {
        margin-bottom: 20px;
        margin-right: 30px;
    }
    .mv span.sm {
        margin-right: 80px;
    }
}
@media (max-width: 800px){
    .mv .mv_contents {
        padding-bottom: 30px;
    }
    h1 {
        font-size: 4rem;
    }
    .mv span.sm {
        font-size: 1.8rem;
        margin-right: 50px;
    }
}
@media (max-width: 600px){
    .mv .swiper {
        width: 100%;
    }
    h1 {
        font-size: clamp(2.6rem, 0.64rem + 5.6vw, 4rem);
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .mv span.sm {
        font-size: 1.6rem;
        margin-right: 25px;
    }
}
/* ------------------------------------- /
/  About us
/* ------------------------------------- */
.about_us {
    padding: 150px 0 140px;
    background-image: url(../img/about_us_bg.svg);
    background-repeat: no-repeat;
    background-size: 22%;
    background-position: right 6.7% top 60%;
}
.about_us .inner .about_us-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.about_us-left {
    width: 52%;
}
.about_us-right {
    width: 42%;
}
h2 {
    color: #E22626;
    font-family: "Inter", sans-serif;
    font-size: 5.0rem;
    font-weight: 700;
    line-height: 1.2;
}
.about_us p.bg {
    font-size: 4.2rem;
    line-height: 1.45;
}
@media (max-width: 1400px){
    .about_us {
        padding: 120px 0 120px;
    }
    h2 {
        font-size: 3.5rem;
    }
    .about_us p.bg {
        font-size: 3.0rem;
    }
}
@media (max-width: 1200px){
    .about_us {
        padding: 100px 0 100px;
    }
    h2 {
        font-size: 3.2rem;
    }
    .about_us p.bg {
        font-size: 2.8rem;
    }
}
@media (max-width: 1000px){
    .about_us {
        padding: 80px 0 80px;
    }
    h2 {
        font-size: 3.0rem;
    }
    .about_us .inner .about_us-wrap {
        flex-direction: column;
        margin-top: 20px;
        gap: 30px;
    }
    .about_us-left, .about_us-right {
        width: 100%;
    }
    .about_us p.bg {
        font-size: 2.4rem;
    }
}
@media (max-width: 800px){
    .about_us {
        padding: 50px 0;
    }
}
@media (max-width: 600px){
    h2 {
        font-size: 2.4rem;
    }
    .about_us p.bg {
        font-size: 2.0rem;
    }
}
/* ------------------------------------- /
/  service
/* ------------------------------------- */
.service {
    position: relative;
    padding-bottom: 150px;
    overflow: hidden;
}
.service::before {
    content: '';
    position: absolute;
    width: 210%;
    aspect-ratio: 1;
    background-color: #233D79;
    z-index: -2;
    border-radius: 50%;
    top: 6%;
    left: -33%;
}
.service::after {
    content: '';
    position: absolute;
    width: 188%;
    aspect-ratio: 1;
    background-color: white;
    z-index: -1;
    border-radius: 50%;
    top: 15%;
    left: -24%;
}
.service .outer {
    margin-bottom: 150px;
}
.service .outer img {
    width: 71%;
}
.service h2, .service .sub_ttl {
    text-align: center;
    margin: 0 auto;
    display: block;
}
.service .sub_ttl {
    font-size: 5.6rem;
    line-height: 1.45;
    margin-bottom: 80px;
}
.service_container {
    display: flex;
    justify-content: center;
    margin-bottom: 133px;
    gap: 50px;
}
.service_container > div {
    background-repeat: no-repeat;
    background-size: 100%;
    width: 20%;
    max-width: 240px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.8rem;
    line-height: 1.43;
}
.service_container .num {
    font-size: 3.6rem;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #233D79;
    line-height: 1.22;
}
.service_1 {
    background-image: url(../img/service_1.png);
}
.service_2 {
    background-image: url(../img/service_2.png);
}
.service_3 {
    background-image: url(../img/service_3.png);
}
.service_4 {
    background-image: url(../img/service_4.png);
}
.service_5 {
    background-image: url(../img/service_5.png);
}
.service .inner > p {
    font-size: 3.8rem;
    margin-bottom: 129px;
}
.contact_box {
    background-color: #E22626;
    color: white;
    padding: 90px 0;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 5.0rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    gap: 130px;
    align-items: center;
}
.contact_right {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact_right p {
    font-size: 2.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.45;
}
.contact_right .tel {
    margin-top: 15px;
    display: flex;
    gap: 20px;
}
.contact_right .tel rt {
    font-size: 1.2rem;
}
.contact_right img {
    width: 60px;
}
@media (max-width: 1400px){
    .service {
        padding-bottom: 120px;
    }
    .service .outer {
        margin-bottom: 120px;
    }
    .service .sub_ttl {
        font-size: 3.8rem;
        margin-bottom: 50px;
    }
    .service_container {
        margin-bottom: 100px;
        gap: 40px;
    }
    .service_container > div {
        font-size: 2.2rem;
    }
    .service_container .num {
        font-size: 3.0rem;
    }
    .service .inner > p {
        font-size: 3.2rem;
        margin-bottom: 110px;
    }
    .contact_box {
        padding: 70px 0;
        font-size: 4.0rem;
        gap: 100px;
    }
}
@media (max-width: 1200px){
    .service {
        padding-bottom: 100px;
    }
    .service .outer {
        margin-bottom: 100px;
    }
    .service .sub_ttl {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    .service_container {
        margin-bottom: 80px;
        gap: 30px;
    }
    .service_container > div {
        font-size: 2.0rem;
    }
    .service_container .num {
        font-size: 2.6rem;
    }
    .service .inner > p {
        font-size: 2.8rem;
        margin-bottom: 90px;
    }
    .contact_box {
        padding: 50px 0;
        font-size: 3.4rem;
        max-width: 700px;
        gap: 80px;
    }
    .contact_right p {
        font-size: 2.0rem;
    }
    .contact_right .tel {
        gap: 10px;
    }
    .contact_right img {
        width: 45px;
    }
}
@media (max-width: 800px){
    .service {
        padding-bottom: 50px;
    }
    .service .outer {
        margin-bottom: 60px;
    }
    .service .outer img {
        width: 100%;
    }
    .service .sub_ttl {
        font-size: 2.8rem;
    }
    .service_container {
        margin-bottom: 50px;
        gap: 15px;
        flex-wrap: wrap;
    }
    .service_container > div {
        width: 30%;
    }
    .service .inner > p {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    .contact_box {
        padding: 40px 0;
        font-size: 2.8rem;
        gap: 40px;
    }
}
@media (max-width: 600px){
    .service::before, .service::after {
        display: none;
    }
    .service .sub_ttl {
        font-size: 2.4rem;
    }
    .service_container {
        margin-bottom: 30px;
        gap: 10px;
    }
    .service_container > div {
        font-size: 1.8rem;
    }
    .service_container .num {
        font-size: 2.0rem;
    }
    .service .inner > p {
        margin-bottom: 30px;
    }
    .contact_box {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 20px;
        padding: 30px 0;
    }
    .contact_right p {
        font-size: 1.8rem;
    }
    .contact_right .tel rt {
        font-size: 1.0rem;
    }
}
@media (max-width: 400px){
    .service_container > div {
        font-size: 1.6rem;
    }
}
/* ------------------------------------- /
/  ３つの強み
/* ------------------------------------- */
.strength {
    background-color: #F7F7F7;
    padding: 130px 0 150px;
}
.strength h2 {
    margin-bottom: 80px;
    text-align: center;
    font-size: 5.6rem;
    font-family: 'Noto Sans JP', sans-serif;
}
.font8 {
    font-size: 8.0rem;
}
.black {
    color: black;
}
.strength_container {
    display: flex;
    justify-content: space-between;
}
.strength_container > div {
    width: 30%;
}
.strength h3 {
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.43;
    height: 90px;
}
.strength p {
    margin-top: 35px;
}
@media (max-width: 1400px){
    .strength {
        padding: 110px 0 130px;
    }
    .strength h2 {
        margin-bottom: 60px;
        font-size: 4.6rem;
    }
    .font8 {
        font-size: 6.0rem;
    }
    .strength h3 {
        font-size: 2.6rem;
    }
}
@media (max-width: 1200px){
    .strength {
        padding: 90px 0 110px;
    }
    .strength h2 {
        margin-bottom: 50px;
        font-size: 4.2rem;
    }
    .font8 {
        font-size: 5.5rem;
    }
    .strength p {
        margin-top: 20px;
    }
}
@media (max-width: 800px){
    .strength {
        padding: 50px 0;
    }
    .strength h2 {
        margin-bottom: 30px;
        font-size: 3.6rem;
    }
    .font8 {
        font-size: 4.2rem;
    }
    .strength_container {
        flex-direction: column;
        gap: 30px;
    }
    .strength_container > div {
        width: 100%;
    }
    .strength h3 {
        margin-bottom: 35px;
        height: unset;
    }
}
@media (max-width: 600px){
    .strength h2 {
        margin-bottom: 20px;
        font-size: 2.4rem;
    }
    .strength h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}
/* ------------------------------------- /
/  company
/* ------------------------------------- */
.company {
    position: relative;
    overflow: hidden;
}
.company::before {
    content: '';
    position: absolute;
    width: 210%;
    aspect-ratio: 1;
    background-color: #F7F7F7;
    z-index: -2;
    border-radius: 50%;
    bottom: 0;
    left: -62%;
}
.company::after {
    content: '';
    position: absolute;
    width: 184%;
    aspect-ratio: 1;
    background-color: white;
    z-index: -1;
    border-radius: 50%;
    bottom: 10%;
    left: -48%;
}
.company h2 {
    margin-top: 130px;
    text-align: center;
    line-height: 1.2;
}
.company .sub_ttl {
    font-size: 5.6rem;
    display: block;
    text-align: center;
    line-height: 1.45;
}
.company table {
    width: 100%;
    max-width: 1000px;
    margin: 80px auto 0;
}
.company th, .company td {
    border-bottom: 1px black solid;
    padding-top: 40px;
    padding-bottom: 32px;
}
.company th {
    font-weight: 900;
    width: 100px;
}
.company td {
    padding-left: 100px;
}
@media (max-width: 1400px){
    .company h2 {
        margin-top: 110px;
    }
    .company .sub_ttl {
        font-size: 3.8rem;
        margin-bottom: 50px;
    }
    .company table {
        margin: 60px auto 0;
    }
}
@media (max-width: 1200px){
    .company h2 {
        margin-top: 90px;
    }
    .company .sub_ttl {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    .company table {
        margin-top: 50px;
    }
    .company th, .company td {
        padding-top: 32px;
        padding-bottom: 25px;
    }
    .company td {
        padding-left: 80px;
    }
}
@media (max-width: 800px){
    .company h2 {
        margin-top: 50px;
    }
    .company .sub_ttl {
        margin-bottom: 30px;
    }
    .company table {
        margin-top: 30px;
    }
    .company td {
        padding-left: 50px;
    }
}
@media (max-width: 600px){
    .company::after, .company::before {
        display: none;
    }
    .company .sub_ttl {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    .company table {
        margin-top: 20px;
    }
    .company th, .company td {
        padding-top: 25px;
        padding-bottom: 20px;
    }
    .company td {
        padding-left: 20px;
    }
}
/* ------------------------------------- /
/  access
/* ------------------------------------- */
.access {
    padding: 130px 0 170px; 
}
.access h2 {
    text-align: center;
}
.access .sub_ttl {
    font-size: 5.6rem;
    text-align: center;
    display: block;
    line-height: 1.45;
}
.access h3 {
    margin-top: 90px;
    font-size: 3.6rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.44;
}
.access_container {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
}
.access_container > div {
    width: 48%;
}
.access_container p {
    line-height: 1.8;
}
.access h4 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 5px;
}
.access h4 span.red {
    font-size: 3.6rem;
    font-family: "Inter", sans-serif;
    margin-left: 30px;
}
.access .blue {
    font-size: 3.2rem;
    font-family: "Inter", sans-serif;
    display: block;
    line-height: 1.25;
    margin-bottom: 50px;
}
.access .blue a {
    display: inline-block;
}
.access iframe {
    width: 100%;
}
.access .contact_box {
    margin-top: 150px;
}
@media (max-width: 1400px){
    .access {
        padding: 110px 0 140px; 
    }
    .access .sub_ttl {
        font-size: 3.8rem;
        margin-bottom: 50px;
    }
    .access h3 {
        margin-top: 80px;
        font-size: 3.2rem;
    }
    .access_container {
        margin-top: 70px;
    }
    .access h4 {
        font-size: 3.4rem;
    }
    .access h4 span.red {
        font-size: 3.2rem;
        margin-left: 20px;
    }
    .access .blue {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }
    .access .contact_box {
        margin-top: 120px;
    }
}
@media (max-width: 1200px){
    .access {
        padding: 80px 0 100px; 
    }
    .access .sub_ttl {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    .access h3 {
        margin-top: 60px;
        font-size: 2.8rem;
    }
    .access_container {
        margin-top: 50px;
    }
    .access h4 {
        font-size: 3.2rem;
    }
    .access h4 span.red {
        font-size: 2.8rem;
        margin-left: 10px;
    }
    .access .blue {
        font-size: 2.6rem;
        margin-bottom: 30px;
    }
    .access .contact_box {
        margin-top: 80px;
    }
}
@media (max-width: 800px){
    .access {
        padding: 50px 0; 
    }
    .access h3 {
        margin-top: 40px;
    }
    .access_container {
        flex-direction: column;
        margin-top: 30px;
        gap: 30px;
    }
    .access_container > div {
        width: 100%;
    }
    .access .contact_box {
        margin-top: 50px;
    }
}
@media (max-width: 600px){
    .access .sub_ttl {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
    .access h3 {
        margin-top: 20px;
        font-size: 2.2rem;
    }
    .access_container {
        margin-top: 20px;
        gap: 20px;
    }
    .access h4 {
        font-size: 2.6rem;
    }
    .access h4 span.red {
        font-size: 2.0rem;
    }
}
/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background-color: #233D79;
    color: white;
    line-height: 1.89;
}
footer .inner {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
}
.footer-left {
}
.footer-logo {
    width: 280px;
    margin-bottom: 30px;
}
.footer-left > div {
    margin-top: 30px;
}
.footer-left > div dt {
    width: 40px;
}
.footer-left > div dd {
    width: calc(100% - 45px);
}
.footer-left > div > dl {
    display: flex;
    gap: 10px;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}
.footer-ru {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer-right ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 50px;
}
.footer-tel {
    margin-top: 40px;
    margin-bottom: 60px;
    display: flex;
    font-size: 3.4rem;
    gap: 12px;
    line-height: 1.18;
}
.footer-tel img {
    width: 38px;
}
@media (max-width: 1200px){
    footer .inner {
        padding: 60px 0;
    }
    .footer-logo {
        width: 240px;
        margin-bottom: 30px;
    }
    .footer-left > div > dl {
        margin-top: 10px;
        gap: 5px;
    }
    .footer-right ul {
        gap: 20px;
    }
}
@media (max-width: 1000px){
    .footer-left {
        width: unset;
    }
    .footer-right {
        width: unset;
    }
}
@media (max-width: 800px){
    .footer-logo {
        width: 200px;
        margin-bottom: 20px;
    }
    .footer-left > div {
        margin-top: 20px;
    }
    .footer-right ul {
        gap: 10px;
    }
    .footer-tel {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 2.8rem;
    }
}
@media (max-width: 600px){
    footer .inner {
        padding: 30px 0;
        justify-content: center;
    }
    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-left > div {
        margin-top: 10px;
    }
    .footer-logo {
        width: 180px;
        margin-bottom: 10px;
    }
    .footer-left > div > dl {
        margin-top: 5px;
    }
    .footer-right {
        display: none;
    }
    footer > p.sp600 {
        text-align: center;
        padding-bottom: 30px;
    }
}