@charset "UTF-8";
/* CSS Document */

/*header*/
#logo img {
    max-width: 50%;
}
header {
    width: 100%;
    position: fixed;
    z-index: 10;
}
nav {
    width: 100%;
    height: 60px;
    position: relative;
    background: rgba(255,255,255,0.8);
}
.drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 14px 0 8px 30px;
}

/*ナビゲーション部分*/
.menu ul li a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: rgba(242,150,0,1);
    text-decoration: none;
}
.menu ul li a:hover {
    background-color: rgba(242,150,0,0.8);
}
.menu {
    width: 50%;
    text-align: center;
    background-color: rgba(255,255,255,0.5);
    transition: 0.5s ease;/*滑らかに表示*/
    -webkit-transform: translateX(200%);/*画面より100%外へ押し出し非表示にさせる*/
    transform: translateX(200%);/*右から出す場合は、マイナス100%としてください*/
}
/*OPEN時の動き*/
.menu.open {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);/*メニューを元の位置へ戻す*/
}
/*トグルボタンのスタイルを指定*/
.toggle {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 3;
    top: 0;
    right: 0;
    text-align: center;
    background-color: #f29600;
}
.toggle p {
    color: #fff;
    font-family: "Arial Black", Gadget, "sans-serif";
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 60px;
    line-height: 6.0rem;
    font-weight: 600;
    transform: scale(1, 1.5);
}
/*----------------------------------ここからPCモニターの記述-----------*/
@media screen and (min-width: 600px) {
    #logo img {
        max-width:275px;
    }
    nav {
        height: 70px;
    }
    .header-info {
        display: flex;
        max-width: 1440px;
        margin: 0 auto;
    }
    .toggle {
        display: none;
    }
    .menu {
        width: 100%;
        font-size: 0.9em;
        background-color: transparent;
        margin: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    .menu ul {
        width: 900px;
        height: 70px;
        margin-left: 100px;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        align-items: center;
    }
    .menu ul li {
        width: 16.666%;
    }
    .menu ul li a {
        display: block;
        padding: 0 1em;
        border-bottom: none;
        color: #000;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 500;
        background-color: inherit;
        text-decoration: none;
    }
    .menu ul li a:hover {
        background-color: transparent;
    }
    .menu ul li a:hover {
        background-color: transparent;
    }
}

@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    .header-info  {
        max-height: 100px;
    }
}    


/*content*/
#main .main-cont{
    position: relative;
}   
#main .main-img-sp{
    display: none;
}
#main .main-text {
    min-width: 540px;
    position: absolute;
    text-align: right;
    top: 50%;
    right: 12%;
}
#main .main-text h1 {
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 48px;
    line-height: 4.8rem;
    font-weight: 600;
}
#main .main-text p {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 45.5px;
    line-height: 4.55rem;
    font-weight: 400;
}
#main .main-text p a {
    position:relative;
    display: inline-block;
}
#main .main-text p a::after {
    position:absolute;
    bottom: 0;
    left: 50%;
    display:block;
    content:"";
    width: 100%;
    height: 1px;
    background-color:#000;
    -webkit-transform: translate(-50%, 100%);
    -ms-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}
#main .main-text p a:hover {
    text-decoration: none;
}
#main .infinite-slide img {
    width: 360px;
    height: auto;
}
@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    #main .main-text {
        min-width: inherit;
    }
    #main .main-text h1 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 22px;
        line-height: 2.2rem;
    }
    #main .main-text p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 25px;
        line-height: 2.5rem;
        font-weight: 400;
    }
    #main .main-img {
        display: none;
    }
    #main .main-img-sp{
        display: block;
        position: relative;
        width: 100%;
    }
    #main .infinite-slide img {
        width: 300px;
        height: auto;
    }
}


/*top-facilitys*/
#top-facilitys .facilitys-cont {
    width: 1000px;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 40px;
}
#top-facilitys .top-facilitys-title {
    width: 330px;
    text-align: center;
    margin: 0 auto;
    padding: 12px 27px;
    border:1px solid;
    color: #f29600;
}
#top-facilitys .top-facilitys-title h2 {
    font-family: "ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    font-size: 38px;
    font-size: 3.8rem;
    color: #f29600;
}
#top-facilitys .top-facilitys-wrap {
    padding-top: 90px;
}
#top-facilitys .facilitys-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    background-color: #f29600;
}
#top-facilitys .facilitys-title h3 {
    font-size: 23px;
    font-size: 2.3rem;
    line-height: 48px;
    line-height: 4.8rem;
    font-weight: 400;
    color: #fff;
}
#top-facilitys .facilitys-title p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
}
#top-facilitys .facilitys-title p::before {
    content: '';
    width: 65px;
    height: 1px;
    background-color: #fff;
    margin-right: 14px;
}
#top-facilitys .top-facilitys-wrap a:hover{
    display: block;
    text-decoration: none;
    background-color:#FFF;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
#top-facilitys .top-facilitys-wrap li {
    padding-bottom: 33px;
}
#top-facilitys .top-facilitys-wrap li:last-child{
    padding-bottom: 0;
}

@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    #top-facilitys .facilitys-cont {
        width: 90%;
        margin: 0 auto;
        padding-top: 45px;
        padding-bottom: 24px;
    }
    #top-facilitys .top-facilitys-title {
        width: 300px;
    }
    #top-facilitys .top-facilitys-title h2 {
        font-size: 18px;
        font-size: 1.8rem;
    }
    #top-facilitys .top-facilitys-wrap {
        padding-top: 45px;
    }
    #top-facilitys .facilitys-title {
        padding: 16px 16px;
    }
    #top-facilitys .facilitys-title h3 {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 20px;
        line-height: 2.0rem;
    }
    #top-facilitys .facilitys-title p {
        display: none;
    }
    #top-facilitys .top-facilitys-wrap a:hover{
        opacity: 1;
}
    #top-facilitys .top-facilitys-wrap li {
        padding-bottom: 16px;
    }
}


/*top-menu*/
#top-menu .menu-cont {
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 90px;
}
#top-menu .top-menu-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
#top-menu .top-menu-wrap li{
    padding: 15px;
    width:  48%;
}
#top-menu a:hover img{
    opacity:0.5;
	-moz-opacity:0.5;
	filter:alpha(opacity = 50);
}

@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    #top-menu .menu-cont {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 45px;
    }
    #top-menu .top-menu-wrap{
        display: flex;
        flex-direction:column;
        gap: 15px;
    }
        #top-menu .top-menu-wrap li{
        padding: 10px;
        width:  100%;
    }
    #top-menu a:hover img{
        opacity:1;
}

}


/*recruit-link*/
#recruit-link .recruit-link-cont {
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 130px;
}
#recruit-link .recruit-link-img {
    width: 100%;
    text-align: center;
}
#recruit-link .recruit-link-img img {
    width: 594px;
}
#recruit-link a:hover img{
    opacity:0.5;
	-moz-opacity:0.5;
	filter:alpha(opacity = 50);
}
@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    #recruit-link .recruit-link-cont {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 32px;
    }
    #recruit-link .recruit-link-img img {
        width: 90%;
    }
    #recruit-link a:hover img{
        opacity:1;
    }
}


/*form*/
#form {
    padding-top: 70px;
    background-color: #fff7da;
}
#form .form-cont {
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 84px;
}
#form .form-title {
    width: 100%;
    text-align: center;
    padding: 80px 0 50px 0;
}
#form .form-title h1 {
    color: #feceab;
    font-family: "Arial Black", Gadget, "sans-serif";
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 55px;
    line-height: 5.5rem;
    letter-spacing: 1.6rem;
    -webkit-transform: scale(1, 1.8) translateX(0.8%);
    -ms-transform: scale(1, 1.8) translateX(0.8%);
    transform: scale(1, 1.8) translateX(0.8%);
}
#form .form-title h2 {
    color: #f29d52;
    font-size: 20px;
    font-size: 2.0rem;
    line-height: 35px;
    line-height: 3.5rem;
    font-weight: 500;
}

#form .form-summary {
    width: 100%;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 35px;
    border-bottom: 0.5px solid #000;
    margin-bottom: 30px;
}
#form .form-summary h3 {
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 32px;
    line-height: 3.2rem;
    font-weight: 600;
    margin-bottom: 35px;
}
#form .form-summary p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    line-height: 3.0rem;
    font-weight: 400;
}

#form .form-info {
}
#form .form-notes {
    width: 100%;
    padding: 30px 0 75px 0;
    text-align: center;
}
#form .form-notes p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
    line-height: 2.2rem;
    font-weight: 400;
}
#form .form-notes p span {
    color: #f29600;
}

#form .question {
    width: 100%;
}
#form .question ul {
    width: 100%;
    display: -webkit-flex;
    display: flex;
}
#form .question li {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 32px;
    line-height: 3.2rem;
    font-weight: 400;
    padding: 13.5px 0;
}
#form .question li span {
    color: #f29600;
}
#form .question li:first-child {
    width: 21.4%;
}
#form .question li:last-child {
    width: 78.6%;
}
#form .question li input,
#form .question li textarea {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 32px;
    line-height: 3.2rem;
    font-weight: 400;
    background-color: #fff;
}
#form .question li input[name="name"],
#form .question li input[name="name_kana"],
#form .question li input[name="tel"] {
    width: 44%;
}
#form .question li input[name="zip"] {
    width: 16.15%;
    margin-left: 10px;
}
#form .question li input[name="address"] {
    width: 100%;
    margin-top: 10px;
}
#form .question li input[name="email"] {
    width: 100%;
    margin-bottom: 10px;
}
#form .question li textarea[name="contact_text"] {
    width: 100%;
}

#form .privacy-text {
    width: 100%;
    margin: 60px 0 114px 0;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 32px;
    line-height: 3.2rem;
    font-weight: 400;
}

#form .question_submit {
    width: 900px;
    margin: 0 auto;
}
#form .question_submit ul {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
#form .question_submit li {
    width: 48.55%;
}
#form .question_submit li:first-child a {
    display: inline-block;
    width: calc(100% - 2px);
    background-color: #fff;
    border: 1px solid #f29600;
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    text-align: center;
    color: #f29600;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 84px;
    line-height: 8.4rem;
    font-weight: 600;
}
#form .question_submit li:last-child input {
    cursor: pointer;
    display: inline-block;
    width: calc(100% - 2px);
    background-color: #f29600;
    border: 1px solid #f29600;
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 84px;
    line-height: 8.4rem;
    font-weight: 600;
    padding-left: 40px;
}
#form .question_submit li:last-child {
    position: relative
}
#form .question_submit li:last-child::before {
    position: absolute;
    top: 50%;
    left: 12%;
    display: inline-block;
    content: "";
    width: 40px;
    height: 28px;
    background-image: url("../img/icon-mail.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#main_send {
    width: 100%;
    padding: 150px 0;
    text-align: center;
}
#main_send p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 32px;
    line-height: 3.2rem;
    font-weight: 400;
}
@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    #form {
        padding-top: 60px;
    }
    #form .form-cont {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 36px;
    }
    #form .form-title {
        padding: 40px 0 25px 0;
    }
    #form .form-title h1 {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 28px;
        line-height: 2.8rem;
        letter-spacing: 0.6rem;
        -webkit-transform: scale(1, 1.8) translateX(0.5%);
        -ms-transform: scale(1, 1.8) translateX(0.5%);
        transform: scale(1, 1.8) translateX(0.5%);
    }
    #form .form-title h2 {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 18px;
        line-height: 1.8rem;
    }
    
    #form .form-summary {
        padding-top: 40px;
        padding-bottom: 25px;
        margin-bottom: 20px;
    }
    #form .form-summary h3 {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 20px;
        line-height: 2.0rem;
        margin-bottom: 15px;
    }
    #form .form-summary p {
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 16px;
        line-height: 1.6rem;
    }
    
    #form .form-notes {
        padding: 20px 0 25px 0;
    }
    #form .form-notes p {
        font-size: 11px;
        font-size: 1.1rem;
    }
    
    #form .question ul {
        display: -webkit-block;
        display: block;
    }
    #form .question li {
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 18px;
        line-height: 1.8rem;
        padding: 5px 0;
    }
    #form .question li:first-child {
        width: 100%;
    }
    #form .question li:last-child {
        width: 100%;
    }
    #form .question li input,
    #form .question li textarea {
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 18px;
        line-height: 1.8rem;
    }
    #form .question li input[name="name"],
    #form .question li input[name="name_kana"],
    #form .question li input[name="tel"] {
        width: 54%;
    }
    #form .question li input[name="zip"] {
        width: 20%;
        margin-left: 10px;
    }
    #form .question li input[name="address"] {
        width: 100%;
        margin-top: 5px;
    }
    #form .question li input[name="email"] {
        width: 100%;
        margin-bottom: 5px;
    }
    #form .question li textarea[name="contact_text"] {
        width: 100%;
    }
    
    #form .privacy-text {
        margin: 20px 0 30px 0;
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 18px;
        line-height: 1.8rem;
    }
    
    #form .question_submit {
        width: 64%;
        margin: 0 auto;
    }
    #form .question_submit li {
        width: 100%;
    }
    #form .question_submit li:first-child {
        margin-bottom: 15px;
    }
    #form .question_submit li:first-child a {
        width: calc(100% - 1px);
        border: 0.5px solid #f29600;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 40px;
        line-height: 4.0rem;
        font-weight: 400;
    }
    #form .question_submit li:last-child input {
        width: calc(100% - 1px);
        border: 0.5px solid #f29600;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 40px;
        line-height: 4.0rem;
        font-weight: 400;
        padding-left: 20px;
    }
    #form .question_submit li:last-child::before {
        left: 12%;
        width: 20px;
        height: 14px;
    }
    
    #main_send {
        padding: 100px 0;
    }
    #main_send p {
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 18px;
        line-height: 1.8rem;
    }
}


/*footer*/
.footer-cont {
    width: 100%;
    min-width: 1000px;
    border-top: 0.5px solid #000;
}

.footer-info {
    width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footer-info div:first-child {
    width: 19%;
}
.footer-info div:nth-child(2) {
    width: 52%;
}
.footer-info div:nth-child(2) li {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18.5px;
    line-height: 1.85rem;
    font-weight: 300;
    letter-spacing: -0.05rem;
    margin-bottom: 4px;
}
.footer-info div:nth-child(2) li strong {
    font-size: 15.5px;
    font-size: 1.55rem;
    line-height: 21px;
    line-height: 2.1rem;
    font-weight: 600;
    letter-spacing: 0;
}
.footer-info div:last-child {
    width: 19.4%;
}

.copyright {
    width: 100%;
    min-width: 1000px;
    padding: 20px 0;
    background-color: #f29600;
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 21px;
    line-height: 2.1rem;
    font-weight: 400;
}

#recruit-btn_header {
    position: fixed;
    top: 90px;
    right: 2px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #1d2087;
    z-index: 999;
}
#recruit-btn_header a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 150px;
    padding-top: 42%;
    text-align: center;
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 35px;
    line-height: 3.5rem;
    font-weight: 500;
}
#recruit-btn_header a::before {
    position: absolute;
    top: -8%;
    left: 50%;
    display: block;
    content: "";
    width: 32px;
    height: 24px;
    background-image: url("../img/icon-people.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    -webkit-transform: translate(-50%,200%);
    -ms-transform: translate(-50%,200%);
    transform: translate(-50%,200%);
}
#contact-btn_header {
    position: fixed;
    top: 230px;
    right: 2px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #f29600;
    z-index: 999;
}
#contact-btn_header a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 150px;
    padding-top: 42%;
    text-align: center;
    font-family:"ヒラギノ丸ゴ Pro","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 35px;
    line-height: 3.5rem;
    font-weight: 500;
}
#contact-btn_header a::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    width: 28px;
    height: 20px;
    background-image: url("../img/icon-mail.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    -webkit-transform: translate(-50%,200%);
    -ms-transform: translate(-50%,200%);
    transform: translate(-50%,200%);
}

#page-btn_footer {
    position: fixed;
    bottom: 200px;
    right: 0;
    width: 70px;
    height: 70px;
    background-color: #f29600;
    z-index: 999;
}
#page-btn_footer a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 70%;
    padding-top: 30%;
    text-align: center;
}
#page-btn_footer a img {
    width: 33%;
}

@media screen and (max-width: 770px) {
}
@media screen and (max-width: 600px) {
    .footer-cont {
        min-width: inherit;
    }
    
    .footer-info {
        width: 96%;
        margin: 0 auto;
        padding: 28px 0;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-info div:first-child {
        width: 33.6%;
        margin: 0 auto;
    }
    .footer-info div:nth-child(2) {
        width: 100%;
        margin: 25px 0;
    }
    .footer-info div:nth-child(2) li {
        text-align: center;
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 15px;
        line-height: 1.5rem;
        letter-spacing: -0.05rem;
        margin-bottom: 2px;
    }
    .footer-info div:nth-child(2) li strong {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 16px;
        line-height: 1.6rem;
    }
    .footer-info div:last-child {
        width: 34.6%;
        margin: 0 auto;
    }
    
    .copyright {
        min-width: inherit;
        padding: 12px 0;
    }
    .copyright p {
        font-size: 10px;
        font-size: 1.0rem;
        line-height: 12px;
        line-height: 1.2rem;
    }
    
    #contact-btn_header, #recruit-btn_header {
        display: none;
    }

    #page-btn_footer {
        position: fixed;
        bottom: 100px;
        right: 0;
        width: 35px;
        height: 35px;
    }
}
