@charset "UTF-8";

/*
Theme name: Wisdom PC School
Author: arai kenichi
Description: Wisdom PC Schooのサテライトサイト
Version:1.0
License: GNU General Public Licence v2 or later
License URI:http://www.gnu.org/licenses/qp1-2.0.html
*/

/* ---------------------------------------max all------------------------------------------------ */
/* ‐‐‐‐‐共通部分----- */
html {
    font-size: 62.5%;
    color: #1a2c44;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.8;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #111111;
    display: block;
}

h1 {
    font-size: 4.0rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.h-inner {
    margin-bottom: 50px;
}

.h-text {
    padding: 0 4%;
    text-align: center;
}

h2 {
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.h2-item {
    text-align: center;
}

.sub-h2 {
    font-size: 3.0rem;
    border-left: solid 14px #EB6F6F;
    padding-left: 20px;
    display: inline-block;
    margin: 80px 0;
}

.sub-under-h2 {
    font-size: 3.0rem;
    background: linear-gradient(transparent 70%, #FFDE8F 70%);
    display: inline-block;
    margin: 80px 0;
}

.sub-h2-point {
    margin-top: 0px;

}

h3 {
    font-size: 2.2rem;
    font-weight: bold;
}

.h-text br {
    display: inline;
}

/* パンくず */

.breadcrumb {
    margin: 15px 10px;
    padding: 0;
}

.breadcrumb li {
    display: inline-flex;
    /*横に並ぶように*/
}

.breadcrumb li:after {
    /* >を表示*/
    content: '>';
    padding: 0 0.2em;
    color: #555;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #111111;
}

.breadcrumb li:first-child a:before {
    /*家アイコン*/
    font-family: 'Font Awesome 5 Free';
    content: '\f015';
    font-weight: 900;
    font-size: 1.1em;
    color: #FF9494;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

/* パンくず */

/* ‐‐‐‐‐共通部分----- */


.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 2%;
}

.header-logo {
    width: 325px;
    vertical-align: middle;
}

header nav {
    display: flex;

}

.header-ul {
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 15px;
}

.header-ul li {
    width: 140px;
    border-right: 1px solid #7B7B7B;
    line-height: 1.4;
}

.header-ul li:last-child {
    border-right: none;
}

.header-ul li a {
    position: relative;
}

.header-ul li a:hover {
    color: #FF9494;
}

.header-ul li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: -5px;
    left: 10%;
    /*線の形状*/
    width: 80%;
    height: 2px;
    background: #FF9494;
    /*アニメーションの指定*/
    transition: all .3s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: center top;
    /*上部中央基点*/
}

/*現在地とhoverの設定*/
.header-ul li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

header nav span {
    font-size: 2.6rem;
    font-weight: bold;
}

header nav div {
    text-align: center;
    width: 200px;
    background-color: #FF9494;
    background-image: linear-gradient(302deg, #FF9494, #EF6363);

}

header nav div:hover {
    opacity: 0.7;
}

header nav div a {
    color: #ffffff;
    padding: 10px 0;
    line-height: 1.4;
}

/* ハンバーガーメニュー */
/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    /* display: none; */
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 75%;
    height: 100vh;
    /*ナビの高さ*/
    background-image: linear-gradient(302deg, #FF9494, #EF6363);
    /*動き*/
    transition: all 0.6s;
}

.hamburger-logo {
    padding-left: 15px;
    padding-top: 15px;
    display: inline-block;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 75%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    text-align: left;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
}

#g-nav li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    display: block;
    font-weight: bold;
    font-size: 2.6rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
    display: none;
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 70px;
    height: 70px;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #111111;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -2px;
    color: #111111;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
}

/* ハンバーガーメニュー */




#headervisual {
    color: #ffffff;
    background-image: url(img/a-working-woman.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 87vh;
    position: relative;
}

.headervisual-title {
    position: absolute;
    top: 48%;
    left: 14%;
    transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -webkit-transform: rotate(-5deg);
    line-height: 15px;
}

.headervisual-title p {
    font-size: 3.1vw;
    margin-left: 15%;
}

.headervisual-title p:before {
    content: '';
    position: absolute;
    bottom: 3%;
    left: 9%;
    display: inline-block;
    width: 4%;
    height: 1px;
    background-color: #ffffff;
}

#mask .st0 {
    fill: none;
    stroke: #fff;
    stroke-width: 90;
    /*線の太さを指定する*/
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
    stroke-dasharray: 1500;
    /* 線の間隔を指定する */
    stroke-dashoffset: 1500;
    /* 線の位置を指定する */
}

svg#mask {
    width: 73vw;
}


/*スクロールダウン全体の場所*/
.scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: 40px;
    left: 90%;
}

/*Scrollテキストの描写*/
.scrolldown span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: 10px;
    /*テキストの形状*/
    color: #eee;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 45px;
    }

    100% {
        bottom: -55px;
    }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* 線の描写 */
.scrolldown:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: -40px;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 85px;
    background: #eee;
}


.obj {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 13.9%;
    max-width: 206px;
}

.obj img {
    width: 100%;
}

.top-wire-h {
    text-align: center;
    margin-bottom: 120px;
}

.head-border {
    display: flex;
    align-items: center;
    margin-top: 120px;
    margin-bottom: 7px;
}


.head-border:before,
.head-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #7B7B7B;
}

.head-border:before {
    margin-right: 5rem;
    margin-bottom: 60px;
}

.head-border:after {
    margin-left: 5rem;
    margin-top: 60px;
}


.head-border span {
    color: #EB6F6F;
}

.head-sp-border {
    display: flex;
    align-items: flex-start;
    margin-top: 120px;
    margin-bottom: 7px;
}

.head-sp-border:before,
.head-sp-border:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #7B7B7B;
}

.head-sp-border:before {
    margin-right: 5rem;
    margin-bottom: 60px;
}

.head-sp-border:after {
    margin-left: 5rem;
    margin-top: 60px;
}

#about {
    background-image: url(./img/about_bg.png);
    background-repeat: no-repeat;
    background-size: 22% auto;
    background-position: bottom 0px right 40px;
}

.about-container {
    max-width: 1100px;
    padding: 50px 4% 100px 4%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}


.about-container figure {
    width: 50%;
    transform: rotate(-7deg);
    -moz-transform: rotate(-7deg);
    -webkit-transform: rotate(-7deg);
}

.about-container figure img {
    width: 100%;
}

.about-content {
    position: relative;
    width: 50%;
    background-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
    margin-left: -60px;
    padding: 40px 25px;
    z-index: 1;
}

.about-content::before {
    position: absolute;
    content: "";
    width: 170px;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 22px;
    left: -30px;
    border-top: 1px solid #111111;
}

.about-content::after {
    bottom: 22px;
    right: -30px;
    border-bottom: 1px solid #111111;
    position: absolute;
    content: "";
    width: 170px;
    height: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}



.about-content h3 {
    font-size: 2.2rem;
    display: inline;
    background: linear-gradient(transparent 70%, #FFDE8F 70%);
}

.about-content p {
    margin-top: 30px;
}

#merit {
    background-color: #F6F6F6;
    padding-bottom: 0px;
}

.merit-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}


.top-normal-h2 {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.head-normal {
    align-items: center;
    margin-bottom: 7px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -60%);
}

.head-normal-sub {
    padding-top: 35px;
}

.head-normal span {
    color: #EB6F6F;

}

.merit-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 1000px;
}

.merit-container li {
    position: relative;
    width: 48%;
    padding: 0 0;
}

.merit-container li:first-child {
    padding: 0 0 0 0;
}

.merit-container figure img {
    width: 100%;
    vertical-align: bottom;
}

.merit-content {
    width: 88%;
    padding: 0 4%;
    position: absolute;
    background-color: #ffffff;
    margin: -140px auto 0 auto;
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
}

.merit-content::after {
    bottom: -20px;
    right: -11px;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    position: absolute;
    content: "";
    width: 85%;
    height: 65%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


.merit-content h3 {
    display: inline;
    background: linear-gradient(transparent 70%, #FFDE8F 70%);
}

.merit-txt {
    padding: 10px 0;
}


.merit-number {
    font-size: 4.0rem;
    font-weight: bold;
}

.merit-number span {
    font-size: 2.8rem;
    color: #EB6F6F;
}

#works {
    background-image: url(./img/works_bg1.png), url(./img/works_bg2.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 17% auto, 12% auto;
    background-position: bottom -100px left 40px, top 180px right 40px;
}

.works-wrapper {
    padding-bottom: 160px;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.4s;
    animation-fill-mode: forwards;
    opacity: 0;
}


@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.fade_in {
    opacity: 0;
}

.slider {

    margin-bottom: 70px;
}

.slider img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin: 0 5px;
    /*スライド左右の余白調整*/
}



/*infoエリアをはじめは非表示*/
#info1,
#info2,
#info3,
#info4,
#info5,
#info6 {
    display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
    max-width: 600px;
}

.modaal-content-container {
    padding: 0;
}

.modaal-container img {
    width: 100%;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}



.section-btn {
    text-align: center;
    position: relative;
}

.section-btn a {
    display: inline-block;
}

.button {
    margin: 10px;
    width: 250px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #111111;
    border: 1px solid;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}


.yazirusi {
    display: inline-flex;
    width: 55px;
    height: 10px;
    position: relative;
    right: -145px;
    border-bottom: 1px solid #111111;
    border-right: 1px solid #111111;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
    vertical-align: bottom;
}

#guidance {
    background-color: #F6F6F6;
    padding-bottom: 50px;
}

.guidance-wrapper {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 4%;
}

.guidance-container {
    text-align: center;
    margin-bottom: 50px;
}

.guidance-container figure {
    display: inline-block;
    vertical-align: baseline;
    overflow: hidden;
}

.guidance-container figure img {
    transition-duration: 0.5s;
    max-width: 100%;
}

.guidance-container figure img:hover {
    transform: scale(1.1);
    transition-duration: 0.5s;
}

.guidance-content {
    display: inline-block;
    text-align: start;
    position: relative;
}

.guidance-inner {
    padding: 15px 25px;
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    background-color: #ffffff;
    width: 100%;
    border: 1px solid #D1D1D1;

}

.guidance-inner span {
    font-size: 3.0rem;
    font-weight: bold;
}

.guidance-txt {
    display: flex;
    justify-content: space-between;
}

.inner-yazirushi {
    display: flex;
}

.inner-yazirushi::after {
    content: '';
    width: 100px;
    height: 15px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
}

#support {
    background-image: url(./img/support_bg1.png), url(./img/support_bg2.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 17% auto, 15% auto;
    background-position: bottom -100px left 40px, top 180px right 40px;
}

.support-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4% 160px 4%;
}

.support-inner {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    margin-bottom: 100px;
}

.support-inner:nth-child(even) {
    flex-direction: row-reverse;
}


.support-content h3 {
    margin-top: 0px;
    margin-bottom: 55px;
}

.support-content h3 span {
    font-size: 5.0rem;
    font-weight: bold;
    color: #EB6F6F;
    padding-right: 10px;
}

.support-figure {
    position: relative;
    width: 48%;
}

.support-figure img {
    width: 100%;
}

.support-figure::after {
    bottom: -25px;
    right: -25px;
    border: 1px solid #111111;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.support-content {
    width: 46%;
}

#access {
    background-color: #F6F6F6;
}

.access-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4% 100px 4%;
}

.access-container {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.access-right {
    width: 46%;
    padding-bottom: 0px;
}

.access-right img {
    width: 100%;
}

.access-left {
    width: 46%;
}

.access-left h3 {
    font-size: 2.2rem;
    padding-bottom: 12px;
}

.access-list {
    display: flex;
    flex-wrap: wrap;
}

.access-list dt {
    width: 25%;
    padding: 5px 0;
}

.access-list dd {
    width: 75%;
    padding: 5px 0;
}

.footer-contact {
    background-image: url(img/footer_contact_bg.jpg);
    background-position: center;
    background-size: cover;
}


.footer-contact-wrapper {

    background-image: linear-gradient(302deg, rgba(255, 176, 176, 0.5), rgba(255, 190, 76, 0.5));

}

.footer-contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 4%;
    text-align: center;
}

.footer-contact-txt {
    font-size: 3.0rem;
    font-weight: bold;
    padding-bottom: 50px;
}

.footer-contact-btn {
    width: 520px;
    color: #ffffff;
    background-color: #FF9494;
    background-image: linear-gradient(302deg, #FF9494, #EF6363);
    margin: 0 auto;
    padding: 23px 0;
}

.footer-contact-btn:hover {
    opacity: 0.7;
}

.footer-contact-btn span {
    font-size: 4.0rem;
    font-weight: bold;
}

.footer-contact-btn p {
    font-size: 2.0rem;
    line-height: 20px;
}

.tel_time {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.tel-time-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel-time-inner img {
    width: 40px;
    height: 40px;
}

.tel_time span {
    font-size: 4.0rem;
    font-weight: bold;
    padding: 0 25px;
}

.footer-second {

    background-color: #333333;
    padding: 0 4%;

}

.footer-nav {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1100px;
    padding: 40px 0;



}

.footer-ul {
    display: flex;
    align-items: center;
    text-align: center;
    margin-right: 15px;
}

.footer-ul li {
    width: 140px;
    border-right: 1px solid #7B7B7B;
    line-height: 1.4;
}

.footer-ul li:last-child {
    border-right: none;
}

.footer-ul li a {
    color: #ffffff;

}

.footer nav span {
    font-size: 2.6rem;
    font-weight: bold;
}

.footer-access {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1100px;
    padding-bottom: 40px;

}

.footer-access-list {
    display: flex;
    flex-wrap: wrap;
    color: #ffffff;
}

.footer-access-list dt {
    width: 15%;
    padding: 5px 0;
}

.footer-access-list dd {
    width: 75%;
    padding: 5px 0;
}

.footer-access-list dd a {
    color: #FFFFFF;
}

.footer-access ul {
    display: flex;
    align-items: flex-end;
    padding-top: 0px;
}

.footer-access ul li {
    width: 40px;
    margin-left: 20px;
}

.footer-access ul li img {
    width: 100%;

}

.copyright {
    padding: 10px 0;
    text-align: center;
}

.breadcrumb-area{
    margin: 15px 0 0 15px;
    display: flex;
}

.breadcrumb-area span{
    padding: 0 5px;
}

.breadcrumb-area:before {
    font-family: 'Font Awesome 5 Free';
    content: '\f015';
    font-weight: 900;
    font-size: 1.1em;
    color: #FF9494;
}


/* ---------------------------------------/max all------------------------------------------------ */

/* ---------------------------------------max 1180px------------------------------------------------ */

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

    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 2%;
    }

    .header-logo {
        width: 245px;
        vertical-align: middle;
    }

    header nav {
        display: none;

    }

    .header-ul {
        display: flex;
        align-items: center;
        text-align: center;
        margin-right: 15px;
    }

    .header-ul li {
        width: 140px;
        border-right: 1px solid #7B7B7B;
        line-height: 1.4;
    }

    .header-ul li:last-child {
        border-right: none;
    }

    .header-ul li a {
        position: relative;
    }

    .header-ul li a:hover {
        color: #FF9494;
    }

    .header-ul li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        bottom: -5px;
        left: 10%;
        /*線の形状*/
        width: 80%;
        height: 2px;
        background: #FF9494;
        /*アニメーションの指定*/
        transition: all .3s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    .header-ul li a:hover::after {
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    header nav span {
        font-size: 2.6rem;
        font-weight: bold;
    }

    header nav div {
        text-align: center;
        width: 200px;
        background-color: #FF9494;
        background-image: linear-gradient(302deg, #FF9494, #EF6363);

    }

    header nav div:hover {
        opacity: 0.7;
    }

    header nav div a {
        color: #ffffff;
        padding: 10px 0;
        line-height: 1.4;
    }

    /* ハンバーガーメニュー */
    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        /* display: none; */
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: 0;
        right: -120%;
        width: 75%;
        height: 100vh;
        /*ナビの高さ*/
        background-image: linear-gradient(302deg, #FF9494, #EF6363);
        /*動き*/
        transition: all 0.6s;
    }

    .hamburger-logo {
        padding-left: 15px;
        padding-top: 15px;
        display: inline-block;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        right: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 75%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        text-align: left;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #ffffff;
        text-decoration: none;
        padding: 10px;
        display: block;
        font-weight: bold;
        font-size: 2.6rem;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        display: block;
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #111111;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #111111;
        font-size: 0.6rem;
        text-transform: uppercase;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ハンバーガーメニュー */

    #headervisual {
        color: #ffffff;
        background-image: url(img/a-working-woman.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 80vh;
        position: relative;
    }

    .headervisual-title {
        position: absolute;
        top: 44%;
        left: 14%;
        transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        line-height: 15px;
    }

    .footer-second {

        background-color: #333333;
        padding: 0 4%;

    }

    .footer-nav {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1100px;
        padding: 40px 0;
    }

    .footer-nav img {
        width: 250px;
    }

    .footer-ul {
        display: flex;
        align-items: center;
        text-align: center;
        margin-right: 15px;
    }

    .footer-ul li {
        width: 115px;
        border-right: 1px solid #7B7B7B;
        line-height: 1.4;
    }

    .footer-ul li:last-child {
        border-right: none;
    }

    .footer-ul li a {
        color: #ffffff;

    }

    .footer nav span {
        font-size: 2.6rem;
        font-weight: bold;
    }

    .footer-access {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1100px;
        padding-bottom: 40px;

    }

    .footer-access-list {
        display: flex;
        flex-wrap: wrap;
        color: #ffffff;
    }

    .footer-access-list dt {
        width: 15%;
        padding: 5px 0;
    }

    .footer-access-list dd {
        width: 75%;
        padding: 5px 0;
    }

    .footer-access ul {
        display: flex;
        align-items: flex-end;
        padding-top: 0px;
    }

    .footer-access ul li {
        width: 40px;
        margin-left: 20px;
    }

    .footer-access ul li img {
        width: 100%;

    }

}

/* ---------------------------------------max 1180px------------------------------------------------ */

/* ---------------------------------------max 800px------------------------------------------------ */


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

    /* ‐‐‐‐‐共通部分----- */
    html {
        font-size: 62.5%;
        color: #1a2c44;
    }

    body {
        font-size: 1.4rem;
        font-family: 'Noto Sans JP', sans-serif;
        letter-spacing: 0.1em;
        line-height: 1.8;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        max-width: 100%;
    }

    a {
        text-decoration: none;
        color: #111111;
        display: block;
    }


    h1 {
        font-size: 2.3rem;
        font-weight: bold;
        letter-spacing: 0.2em;
    }

    .h-inner {
        margin-bottom: 50px;
    }

    .h-text {
        padding: 0 4%;
        text-align: center;
    }

    h2 {
        font-size: 2.3rem;
        font-weight: bold;
        letter-spacing: 0.1em;
    }

    .h2-item {
        text-align: center;
    }

    .sub-h2 {
        font-size: 2.0rem;
        border-left: solid 7px #EB6F6F;
        padding-left: 10px;
        display: inline-block;
        margin: 80px 0;
    }

    .sub-under-h2 {
        font-size: 2.0rem;
        background: linear-gradient(transparent 70%, #FFDE8F 70%);
        display: inline-block;
        margin: 80px 0;
    }

    .sub-h2-point {
        margin-top: 0px;

    }


    h3 {
        font-size: 1.8rem;
        font-weight: bold;
    }

    .h-text br {
        display: none;
    }

    /* ‐‐‐‐‐共通部分----- */


    .header-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 2%;
    }

    .header-logo {
        width: 200px;
        vertical-align: middle;
    }

    header nav {
        display: none;

    }

    .header-ul {
        display: flex;
        align-items: center;
        text-align: center;
        margin-right: 15px;
    }

    .header-ul li {
        width: 140px;
        border-right: 1px solid #7B7B7B;
        line-height: 1.4;
    }

    .header-ul li:last-child {
        border-right: none;
    }

    .header-ul li a {
        position: relative;
    }

    .header-ul li a:hover {
        color: #FF9494;
    }

    .header-ul li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        bottom: -5px;
        left: 10%;
        /*線の形状*/
        width: 80%;
        height: 2px;
        background: #FF9494;
        /*アニメーションの指定*/
        transition: all .3s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    .header-ul li a:hover::after {
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    header nav span {
        font-size: 2.6rem;
        font-weight: bold;
    }

    header nav div {
        text-align: center;
        width: 200px;
        background-color: #FF9494;
        background-image: linear-gradient(302deg, #FF9494, #EF6363);

    }

    header nav div:hover {
        opacity: 0.7;
    }

    header nav div a {
        color: #ffffff;
        padding: 10px 0;
        line-height: 1.4;
    }

    /* ハンバーガーメニュー */
    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        /* display: none; */
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: 0;
        right: -120%;
        width: 75%;
        height: 100vh;
        /*ナビの高さ*/
        background-image: linear-gradient(302deg, #FF9494, #EF6363);
        /*動き*/
        transition: all 0.6s;
    }

    .hamburger-logo {
        padding-left: 15px;
        padding-top: 15px;
        display: inline-block;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        right: 0;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 75%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        text-align: left;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #ffffff;
        text-decoration: none;
        padding: 10px;
        display: block;
        font-weight: bold;
        font-size: 1.8rem;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        display: block;
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 5px;
        cursor: pointer;
        width: 70px;
        height: 70px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #111111;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #111111;
        font-size: 0.6rem;
        text-transform: uppercase;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ハンバーガーメニュー */



    #headervisual {
        color: #ffffff;
        background-image: url(img/a-working-woman.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 65vh;
        position: relative;
    }

    .headervisual-title {
        position: absolute;
        top: 64%;
        left: 0%;
        transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        line-height: 15px;
    }

    .headervisual-title p {
        font-size: 3.7vw;
        margin-left: 15%;
    }

    .headervisual-title p:before {
        content: '';
        position: absolute;
        bottom: 4%;
        left: 9%;
        display: inline-block;
        width: 4%;
        height: 1px;
        background-color: #ffffff;
    }

    #mask .st0 {
        fill: none;
        stroke: #fff;
        stroke-width: 90;
        /*線の太さを指定する*/
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-miterlimit: 10;
        stroke-dasharray: 1500;
        /* 線の間隔を指定する */
        stroke-dashoffset: 1500;
        /* 線の位置を指定する */
    }

    svg#mask {
        width: 97vw;
    }


    /*スクロールダウン全体の場所*/
    .scrolldown {
        /*描画位置※位置は適宜調整してください*/
        position: absolute;
        bottom: 40px;
        left: 90%;
    }

    /*Scrollテキストの描写*/
    .scrolldown span {
        /*描画位置*/
        position: absolute;
        left: 10px;
        bottom: 10px;
        /*テキストの形状*/
        color: #eee;
        font-size: 1.0rem;
        letter-spacing: 0.05em;
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    /* 丸の描写 */
    .scrolldown:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: -4px;
        /*丸の形状*/
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #eee;
        /*丸の動き1.6秒かけて透過し、永遠にループ*/
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    /*下からの距離が変化して丸の全体が上から下に動く*/
    @keyframes circlemove {
        0% {
            bottom: 45px;
        }

        100% {
            bottom: -55px;
        }
    }

    /*上から下にかけて丸が透過→不透明→透過する*/
    @keyframes cirlemovehide {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1;
        }

        80% {
            opacity: 0.9;
        }

        100% {
            opacity: 0;
        }
    }

    /* 線の描写 */
    .scrolldown:after {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: -40px;
        left: 0;
        /*線の形状*/
        width: 2px;
        height: 85px;
        background: #eee;
    }


    .obj {
        position: absolute;
        left: 30px;
        top: 30px;
        width: 30.9%;
        max-width: 206px;
    }

    .obj img {
        width: 100%;
    }

    .top-wire-h {
        text-align: center;
        margin-bottom: 30px;
    }

    .head-border {
        display: flex;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 7px;
    }




    .head-border:before,
    .head-border:after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #7B7B7B;
    }

    .head-border:before {
        margin-right: 5rem;
        margin-bottom: 60px;
    }

    .head-border:after {
        margin-left: 5rem;
        margin-top: 60px;
    }

    .head-border span {
        color: #EB6F6F;
    }

    .head-sp-border {
        display: flex;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 7px;
    }

    .head-sp-border:before,
    .head-sp-border:after {
        content: "";
        height: 1px;
        flex-grow: 1;
        background-color: #7B7B7B;
    }

    .head-sp-border:before {
        margin-right: -5rem;
        margin-bottom: 60px;
    }

    .head-sp-border:after {
        margin-left: -5rem;
        margin-top: 60px;
    }

    #about {
        background-image: url(./img/about_bg.png);
        background-repeat: no-repeat;
        background-size: 45% auto;
        background-position: bottom 0px right 15px;
    }

    .about-container {
        max-width: 1100px;
        padding: 50px 4% 100px 4%;
        margin: 0 auto;
        display: block;
        align-items: center;
    }


    .about-container figure {
        width: 100%;
        transform: rotate(-7deg);
        -moz-transform: rotate(-7deg);
        -webkit-transform: rotate(-7deg);
    }

    .about-container figure img {
        width: 100%;
    }

    .about-content {
        position: relative;
        width: 100%;
        background-color: #FFFFFF;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 4px 12px rgb(0 0 0 / 5%);
        margin-left: 0px;
        padding: 40px 5px;
        z-index: 1;
    }

    .about-content::before {
        position: absolute;
        content: "";
        width: 100px;
        height: 50px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        top: 22px;
        left: -5px;
        border-top: 1px solid #111111;
    }

    .about-content::after {
        bottom: 22px;
        right: -5px;
        border-bottom: 1px solid #111111;
        position: absolute;
        content: "";
        width: 100px;
        height: 50px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }



    .about-content h3 {
        font-size: 1.8rem;
        display: inline;
        background: linear-gradient(transparent 70%, #FFDE8F 70%);
    }

    .about-content p {
        margin-top: 30px;
    }

    #merit {
        background-color: #F6F6F6;
        padding-bottom: 130px;
    }

    .merit-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 4%;
    }


    .top-normal-h2 {
        text-align: center;
        margin-bottom: 100px;
        position: relative;
    }

    .head-normal {
        align-items: center;
        margin-bottom: 7px;
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -60%);
    }

    .head-normal-sub {
        padding-top: 35px;
    }

    .head-normal span {
        color: #EB6F6F;

    }

    .merit-container {
        display: block;
        justify-content: space-between;
        flex-wrap: wrap;
        height: auto;
    }

    .merit-container li {
        position: relative;
        width: 100%;
        padding: 70px 0;
    }

    .merit-container li:first-child {
        padding: 0 0 70px 0;
    }

    .merit-container figure img {
        width: 100%;
        vertical-align: bottom;
    }

    .merit-content {
        width: 89%;
        padding: 0 4%;
        position: absolute;
        background-color: #ffffff;
        margin: -115px auto 0 auto;
        left: 50%;
        transform: translate(-50%);
        -webkit-transform: translate(-50%);
        -ms-transform: translate(-50%);
    }

    .merit-content::after {
        bottom: -20px;
        right: -11px;
        border-right: 1px solid #111111;
        border-bottom: 1px solid #111111;
        position: absolute;
        content: "";
        width: 85%;
        height: 65%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }


    .merit-content h3 {
        display: inline;
        background: linear-gradient(transparent 70%, #FFDE8F 70%);
    }

    .merit-txt {
        padding: 10px 0;
    }


    .merit-number {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .merit-number span {
        font-size: 2.8rem;
        color: #EB6F6F;
    }

    #works {
        background-image: url(./img/works_bg1.png), url(./img/works_bg2.png);
        background-repeat: no-repeat, no-repeat;
        background-size: 36% auto, 28% auto;
        background-position: bottom -8px left 0px, top 160px right 3px;
    }

    .works-wrapper {
        padding-bottom: 160px;
    }

    .fadeUp {
        animation-name: fadeUpAnime;
        animation-duration: 1.2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }


    @keyframes fadeUpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .fade_in {
        opacity: 0;
    }

    .slider {

        margin-bottom: 70px;
    }

    .slider img {
        width: 100%;
        /*スライダー内の画像を横幅100%に*/
        height: auto;
    }

    /*slickのJSで書かれるタグ内、スライド左右の余白調整*/

    .slider .slick-slide {
        margin: 0 5px;
        /*スライド左右の余白調整*/
    }


    /*infoエリアをはじめは非表示*/
    #info1,
    #info2,
    #info3,
    #info4,
    #info5,
    #info6 {
        display: none;
    }

    /*モーダルの横幅を変更したい場合*/
    .modaal-container {
        max-width: 600px;
    }

    .modaal-content-container {
        padding: 0;
    }

    .modaal-container img {
        width: 100%;
    }

    /*モーダルのボタンの色を変更したい場合*/
    .modaal-close:after,
    .modaal-close:before {
        background: #ccc;
    }

    .modaal-close:focus:after,
    .modaal-close:focus:before,
    .modaal-close:hover:after,
    .modaal-close:hover:before {
        background: #666;
    }



    .section-btn {
        text-align: center;
        position: relative;
    }

    .section-btn a {
        display: inline-block;
    }

    .button {
        margin: 10px;
        width: 250px;
        height: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: #111111;
        border: 1px solid;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }


    .yazirusi {
        display: inline-flex;
        width: 35px;
        height: 10px;
        position: relative;
        right: -135px;
        border-bottom: 1px solid #111111;
        border-right: 1px solid #111111;
        -webkit-transform: skew(45deg);
        transform: skew(45deg);
        vertical-align: bottom;
    }

    #guidance {
        background-color: #F6F6F6;
        padding-bottom: 50px;
    }

    .guidance-wrapper {
        margin: 0 auto;
        max-width: 1100px;
        padding: 0 4%;
    }

    .guidance-container {
        text-align: center;
        margin-bottom: 50px;
    }

    .guidance-container figure {
        display: inline-block;
        vertical-align: baseline;
        overflow: hidden;
    }

    .guidance-container figure img {
        transition-duration: 0.5s;
        max-width: 100%;
    }

    .guidance-container figure img:hover {
        transform: scale(1.1);
        transition-duration: 0.5s;
    }

    .guidance-content {
        display: inline-block;
        text-align: start;
        position: relative;
    }

    .guidance-inner {
        padding: 5px 10px;
        position: absolute;
        bottom: 0;
        left: 0;
        box-sizing: border-box;
        background-color: #ffffff;
        width: 100%;
        border: 1px solid #D1D1D1;

    }

    .guidance-inner span {
        font-size: 2.0rem;
        font-weight: bold;
    }

    .guidance-txt {
        display: flex;
        justify-content: space-between;
    }

    .inner-yazirushi {
        display: flex;
    }

    .inner-yazirushi::after {
        content: '';
        width: 55px;
        height: 13px;
        border-bottom: solid 1px;
        border-right: solid 1px;
        transform: skew(45deg);
    }

    #support {
        background-image: url(./img/support_bg1.png), url(./img/support_bg2.png);
        background-repeat: no-repeat, no-repeat;
        background-size: 43% auto, 44% auto;
        background-position: bottom -25px left 11px, top 390px right -50px;
    }

    .support-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 4% 120px 4%;
    }

    .support-inner {
        display: block;
        align-items: center;
        position: relative;
        justify-content: space-between;
        margin-bottom: 100px;
    }

    .support-inner:nth-child(even) {
        flex-direction: row-reverse;
    }


    .support-content h3 {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .support-content h3 span {
        font-size: 5.0rem;
        font-weight: bold;
        color: #EB6F6F;
        padding-right: 10px;
    }

    .support-figure {
        position: relative;
        width: 100%;
    }

    .support-figure img {
        width: 100%;
    }

    .support-figure::after {
        bottom: -10px;
        right: -10px;
        border: 1px solid #111111;
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .support-content {
        width: 100%;
    }

    #access {
        background-color: #F6F6F6;
    }

    .access-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 4% 100px 4%;
    }

    .access-container {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-evenly;
        margin-bottom: 20px;
    }

    .access-right {
        width: 100%;
        padding-bottom: 20px;
    }

    .access-right img {
        width: 100%;
    }

    .access-left {
        width: 100%;
    }

    .access-left h3 {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }

    .access-list {
        display: flex;
        flex-wrap: wrap;
    }

    .access-list dt {
        width: 25%;
        padding: 5px 0;
    }

    .access-list dd {
        width: 75%;
        padding: 5px 0;
    }

    .footer-contact {
        background-image: url(img/footer_contact_bg.jpg);
        background-position: center;
        background-size: cover;
    }


    .footer-contact-wrapper {

        background-image: linear-gradient(302deg, rgba(255, 176, 176, 0.5), rgba(255, 190, 76, 0.5));

    }

    .footer-contact-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 4%;
        text-align: center;
    }

    .footer-contact-txt {
        font-size: 2.0rem;
        font-weight: bold;
        padding-bottom: 50px;
    }

    .footer-contact-btn {
        width: 320px;
        color: #ffffff;
        background-color: #FF9494;
        background-image: linear-gradient(302deg, #FF9494, #EF6363);
        margin: 0 auto;
        padding: 23px 0;
    }

    .footer-contact-btn:hover {
        opacity: 0.7;
    }

    .footer-contact-btn span {
        font-size: 3.0rem;
        font-weight: bold;
    }

    .footer-contact-btn p {
        font-size: 1.8rem;
        line-height: 20px;
    }

    .tel_time {
        display: block;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }

    .tel-time-inner {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tel-time-inner img {
        width: 30px;
        height: 30px;
    }

    .tel_time span {
        font-size: 3.0rem;
        font-weight: bold;
        padding: 0 5px;
    }

    .footer-second {

        background-color: #333333;
        padding: 0 4%;

    }

    .footer-nav {
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1100px;
        padding: 40px 0;
    }

    .footer-nav img {
        width: 250px;
    }

    .footer-ul {
        display: none;
        align-items: center;
        text-align: center;
        margin-right: 15px;
    }

    .footer-ul li {
        width: 115px;
        border-right: 1px solid #7B7B7B;
        line-height: 1.4;
    }

    .footer-ul li:last-child {
        border-right: none;
    }

    .footer-ul li a {
        color: #ffffff;

    }

    .footer nav span {
        font-size: 2.6rem;
        font-weight: bold;
    }

    .footer-access {
        display: block;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1100px;
        padding-bottom: 40px;

    }

    .footer-access-list {
        display: flex;
        flex-wrap: wrap;
        color: #ffffff;
    }

    .footer-access-list dd a {
        color: #FFFFFF;
    }

    .footer-access-list dt {
        width: 20%;
        padding: 5px 0;
    }

    .footer-access-list dd {
        width: 80%;
        padding: 5px 0;
    }

    .footer-access ul {
        display: flex;
        align-items: flex-end;
        padding-top: 25px;
    }

    .footer-access ul li {
        width: 40px;
        margin-left: 20px;
    }

    .footer-access ul li img {
        width: 100%;

    }

    .copyright {
        padding: 10px 0;
        text-align: center;
    }



}

/* ---------------------------------------/max 800px------------------------------------------------ */