@charset "UTF8";

/*-------------------
スマホ縦
-------------------*/
@media screen and (max-width: 480px){

header#header-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

#header-area-inner{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header-contents-area{
    display: none;
    /* width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 90;
    background-color: #fff; */
}

/* クラスが付与されたら画面内に降りてくる */
/* .header-contents-area.is-active {
    transform: translateY(0);
}

#logo-area{
    width: 10%;    
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-area img{
    width: 70%;
}

#company-name-area{
    width: 30%;
    margin-right: 2%;
}

#company-name-area h1{
    font-size: 3vw;
    font-weight: bold;
    color: #3ca5cb;
}

#link-list-area{
    width: 20%;
    margin-right: 2%;
}

#link-list-area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

#link-list-area ul a{
    width: 50%;
    font-size: 1vw;
    font-weight: 500;
    line-height: 2vw;
    text-align: center;
    list-style: none;
}

#link-list-area ul a:hover{
    color: #3ca5cb;
}

#link-list-area ul a li{
    width: 100%;
    font-size: 2vw;
    line-height: 4vw;
    text-align: left;
}


#contact-button-area{
    width: 15%;
    margin: 1% 0;
    background-color: #3ca5cb;
}

#contact-button-area:hover{
    background-color: #57bde1;
}

#contact-button-area a{
    width: 20%;
    text-decoration: none;
}

#contact-button-outside{
    width: 100%;
    border: 2px solid #286f82;
    padding: 5%;
}

#contact-button-inside{
    width: 100%;
    border: 2px solid #286f82;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#contact-button-image{
    width: 50%;
    margin: 5% auto;
}

#contact-button-image img{
    width: 100%;
    vertical-align: top;
}

#contact-button-text{
    width: 100%;
    margin: 5% 0;
}

#contact-button-text p{
    font-size: 2.3vw;
    line-height: 3vw;
    color: #fff;
    text-align: center;
} */

.m-header-contents-area{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateX(100%);
    transition: transform 0.5s ease;
    display: flex;
    flex-direction: column;
}

/* クラスが付与されたら画面内に降りてくる */
.m-header-contents-area.is-active {
    transform: translateX(0);
}

#m-contents-area{
    width: 90%;
    margin: 15% auto 10%;
}

#m-logo-company-name-area{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#m-logo-area{
    width: 15%;
}

#m-logo-area img{
    width: 100%;
    vertical-align: bottom;
}

#m-company-name-area{
    width: 80%;
    margin-left: 5%;
}

#m-company-name-area h1{
    font-size: 6vw;
    line-height: 8vw;
    color: #3ca5cb;
    margin: 0;
}

#m-category-list-area{
    width: 80%;
    margin: 5% auto 10%;
}

#m-category-list-area ul{
    display: flex;
    flex-direction: column;
    font-size: 5vw;
    line-height: 5vw;
    color: #fff;
    padding: 0;
}

#m-category-list-area li{
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #fff;
    padding: 5% 0;
}

.m-list-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5% 0;
}

.m-list-box a{
    text-decoration: none;
}

.m-list-box-item{
    width: 50%;
    margin-left: 5%;
}

.m-list-box-item p{
    font-size: 6vw;
    line-height: 8vw;
    color: #fff;
}

.m-list-box-icon{
    width: 10%;
    margin-right: 5%;
}

.m-list-box-icon img{
    width: 100%;
    vertical-align: bottom;
}

#m-sns-area{
    width: 60%;
    margin: 15% auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#m-sns-area a{
    width: 35%;
}

.m-sns-box{
    width: 100%;
}

.m-sns-box img{
    width: 100%;
    vertical-align: bottom;
}

#menu-area{
    display: none;
}

#m-menu-area{
    width: 10%;
    position: absolute;
    top: 1vh;
    right: 0;
}

#m-menu-area button{
    width: 30px;
    background-color: transparent;
    border: none;
}

/* チェックボックスは非表示にする */
.m-menu-btn-check {
    display: none;
}

/* --- ハンバーガーボタン --- */
.m-menu-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 100; /* メニューより手前に配置 */
    padding: 0;
}

.m-menu-btn span,
.m-menu-btn span::before,
.m-menu-btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease;
}

.m-menu-btn span::before { top: -10px; }
.m-menu-btn span::after { bottom: -10px; }

.m-menu-btn.is-active span {
    background-color: transparent;
}

.m-menu-btn.is-active span::before {
    transform: translateY(10px) rotate(45deg);
    background-color: #fff;
}

.m-menu-btn.is-active span::after {
    transform: translateY(-10px) rotate(-45deg);
    background-color: #fff;
}

#m-menu-name-area-open{
    width: 100%;
    display: block;
    margin-top: 20%;
}

#m-menu-name-area-open.is-active{
    display: none;
}

#m-menu-name-area-open p{
    font-size: 11px;
    line-height: 1vw;
    font-weight: bold;
}

#m-menu-name-area-close{
    width: 100%;
    display: none;
    z-index: 100;
    margin-top: 20%;
}

#m-menu-name-area-close.is-active{
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

#m-menu-name-area-close p{
    font-size: 11px;
    line-height: 1vw;
    font-weight: bold;
    color: #fff;
}

.m-menu-btn-check:checked ~ .nav-menu {
    transform: translateY(0);
}

footer{
    width: 100%;
    margin-top: 5%;
    border-top: 3px solid #3ca5cb;
}

#footer-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    width: 90%;
    margin: 1% auto;
}

nav ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

nav ul a{
    width: 15%;
    text-decoration: none;
    border-right: 1px dashed #000;
}

nav ul a:last-child{
    border-right: none;
}

nav ul a li{
    width: 100%;
    font-size: 2.5vw;
    line-height: 3vw;
    list-style: none;
    text-align: center;
}

nav ul a li:hover{
    color: #3ca5cb;
}

#footer-contents-area{
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo{
    width: 25%;
    text-align: right;
}

#footer-logo img{
    width: 60%;
    vertical-align: middle;
    opacity: 0.6;
}

#footer-page-name-area{
    width: 50%;
}

#footer-page-name-area h1{
    font-size: 3vw;
    color: #3ca5cb;
    text-align: center;
}

#footer-company-detail-area{
    width: 25%;
}

#footer-company-detail-area p{
    font-size: 2vw;
    line-height: 3vw;
}

#copy-right-area{
    width: 100%;
    text-align: center;
}

#copy-right-area small{
    font-size: 1.5vw;
    line-height: 3;
}


}
/*-------------------
スマホ横
-------------------*/
@media screen and (min-width: 481px) and (max-width: 896px) {

header#header-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

#header-area-inner{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header-contents-area{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 90;
    background-color: #fff;
}

/* クラスが付与されたら画面内に降りてくる */
.header-contents-area.is-active {
    transform: translateY(0);
}

#logo-area{
    width: 7%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3%;
}

#logo-area img{
    width: 70%;
}

#company-name-area{
    width: 40%;
    margin-right: 5%;
}

#company-name-area h1{
    font-size: 3vw;
    font-weight: bold;
    color: #3ca5cb;
}

#link-list-area{
    width: 15%;
    margin-right: 5%;
}

#link-list-area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

#link-list-area ul a{
    width: 50%;
    font-size: 1vw;
    font-weight: 500;
    line-height: 2vw;
    text-align: center;
    list-style: none;
}

#link-list-area ul a:hover{
    color: #3ca5cb;
}

#link-list-area ul a li{
    width: 100%;
    font-size: 1.3vw;
    line-height: 2.3vw;
    text-align: left;
}


#contact-button-area{
    width: 10%;
    margin: 1% 20% 1% 0;
    background-color: #3ca5cb;
}

#contact-button-area:hover{
    background-color: #57bde1;
}

#contact-button-area a{
    width: 20%;
    text-decoration: none;
}

#contact-button-outside{
    width: 100%;
    border: 3px solid #286f82;
    padding: 5%;
}

#contact-button-inside{
    width: 100%;
    border: 3px solid #286f82;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#contact-button-image{
    width: 50%;
    margin: 5% auto;
}

#contact-button-image img{
    width: 100%;
    vertical-align: top;
}

#contact-button-text{
    width: 100%;
    margin: 5% 0;
}

#contact-button-text p{
    font-size: 1.3vw;
    line-height: 1.5vw;
    color: #fff;
    text-align: center;
}

.m-header-contents-area{
    display: none;
}

#menu-area{
    width: 10%;
    position: absolute;
    top: 2vh;
    right: -4%;
}

#menu-area button{
    width: 40px;
    background-color: transparent;
    border: none;
}

/* チェックボックスは非表示にする */
.menu-btn-check {
    display: none;
}

/* --- ハンバーガーボタン --- */
.menu-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 100; /* メニューより手前に配置 */
    padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease;
}
.menu-btn span::before { top: -10px; }
.menu-btn span::after { bottom: -10px; }

.menu-btn.is-active span {
    background-color: transparent;
}
.menu-btn.is-active span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.is-active span::after {
    transform: translateY(-10px) rotate(-45deg);
}

#menu-name-area-open{
    width: 100%;
    display: block;
    margin-top: 10%;
}

#menu-name-area-open.is-active{
    display: none;
}

#menu-name-area-open p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

#menu-name-area-close{
    width: 100%;
    display: none;
    z-index: 100;
    margin-top: 10%;
}

#menu-name-area-close.is-active{
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

#menu-name-area-close p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

.menu-btn-check:checked ~ .nav-menu {
    transform: translateY(0);
}

#m-menu-area{
    display: none;
}

footer{
    width: 100%;
    margin-top: 5%;
    border-top: 3px solid #3ca5cb;
}

#footer-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    width: 100%;
    margin: 1% auto;
}

nav ul{
    width: 100%;
    display: flex;
}

nav ul a{
    width: 15%;
    text-decoration: none;
    border-right: 1px dashed #000
}

nav ul a:last-child{
    border-right: none;
}

nav ul a li{
    width: 100%;
    font-size: 2vw;
    line-height: 3vw;
    list-style: none;
    text-align: center;
}

nav ul a li:hover{
    color: #3ca5cb;
}

#footer-contents-area{
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo{
    width: 15%;
    text-align: right;
}

#footer-logo img{
    width: 100%;
    vertical-align: middle;
    opacity: 0.6;
}

#footer-page-name-area{
    width: 60%;
}

#footer-page-name-area h1{
    font-size: 4vw;
    color: #3ca5cb;
    text-align: center;
}

#footer-company-detail-area{
    width: 25%;
}

#footer-company-detail-area p{
    font-size: 2vw;
    line-height: 3vw;
}

#copy-right-area{
    width: 100%;
    text-align: center;
}

#copy-right-area small{
    font-size: 1.5vw;
    line-height: 3;
}


}
/*-----------------------
 タブレットスタイル(縦)
-------------------------*/
@media screen and (min-width: 897px) and (max-width: 1024px) {

header#header-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

#header-area-inner{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header-contents-area{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-102%);
    transition: transform 0.5s ease;
    z-index: 90;
    background-color: #fff;
}

/* クラスが付与されたら画面内に降りてくる */
.header-contents-area.is-active {
    transform: translateY(0);
}

#logo-area{
    width: 5%;    
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
}

#logo-area img{
    width: 70%;
}

#company-name-area{
    width: 35%;
    margin-right: 5%;
}

#company-name-area h1{
    font-size: 3vw;
    font-weight: bold;
    color: #3ca5cb;
}

#link-list-area{
    width: 15%;
    margin-right: 5%;
}

#link-list-area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

#link-list-area ul a{
    width: 50%;
    font-size: 1vw;
    font-weight: 500;
    line-height: 2vw;
    text-align: center;
    list-style: none;
}

#link-list-area ul a:hover{
    color: #3ca5cb;
}

#link-list-area ul a li{
    width: 100%;
    font-size: 1.4vw;
    text-align: left;
}


#contact-button-area{
    width: 10%;
    margin: 1% 20% 1% 0;
    background-color: #3ca5cb;
}

#contact-button-area:hover{
    background-color: #57bde1;
}

#contact-button-area a{
    width: 20%;
    text-decoration: none;
}

#contact-button-outside{
    width: 100%;
    border: 5px solid #286f82;
    padding: 5%;
}

#contact-button-inside{
    width: 100%;
    border: 5px solid #286f82;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#contact-button-image{
    width: 50%;
    margin: 5% auto;
}

#contact-button-image img{
    width: 100%;
    vertical-align: top;
}

#contact-button-text{
    width: 100%;
    margin: 5% 0;
}

#contact-button-text p{
    line-height: 1.5vw;
    color: #fff;
    text-align: center;
    font-size: 1.5vw;
}

.m-header-contents-area{
    display: none;
}

#menu-area{
    width: 10%;
    position: absolute;
    top: 3vh;
    right: 0%;
}

#menu-area button{
    width: 40px;
    background-color: transparent;
    border: none;
}

/* チェックボックスは非表示にする */
.menu-btn-check {
    display: none;
}

/* --- ハンバーガーボタン --- */
.menu-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 100; /* メニューより手前に配置 */
    padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease;
}
.menu-btn span::before { top: -10px; }
.menu-btn span::after { bottom: -10px; }

/* クリック時にボタンを×印にする場合 */

/* .menu-btn-check:checked ~ .menu-btn span {
    background-color: transparent;
}
.menu-btn-check:checked ~ .menu-btn span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn-check:checked ~ .menu-btn span::after {
    transform: translateY(-10px) rotate(-45deg);
} */

.menu-btn.is-active span {
    background-color: transparent;
}
.menu-btn.is-active span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.is-active span::after {
    transform: translateY(-10px) rotate(-45deg);
}

#menu-name-area-open{
    width: 100%;
    display: block;
    margin-top: 8%;
}

#menu-name-area-open.is-active{
    display: none;
}

#menu-name-area-open p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

#menu-name-area-close{
    width: 100%;
    display: none;
    z-index: 100;
    margin-top: 8%;
}

#menu-name-area-close.is-active{
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

#menu-name-area-close p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

.menu-btn-check:checked ~ .nav-menu {
    transform: translateY(0);
}

#m-menu-area{
    display: none;
}

footer{
    width: 100%;
    margin-top: 5%;
    border-top: 3px solid #3ca5cb;
}

#footer-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    width: 90%;
    margin: 1% auto;
}

nav ul{
    width: 100%;
    display: flex;
}

nav ul a{
    width: 15%;
    text-decoration: none;
    border-right: 1px dashed #000
}

nav ul a:last-child{
    border-right: none;
}

nav ul a li{
    width: 100%;
    font-size: 1.5vw;
    line-height: 2vw;
    list-style: none;
    text-align: center;
}

nav ul a li:hover{
    color: #3ca5cb;
}

#footer-contents-area{
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo{
    width: 25%;
    text-align: right;
}

#footer-logo img{
    width: 60%;
    vertical-align: middle;
    opacity: 0.6;
}

#footer-page-name-area{
    width: 50%;
}

#footer-page-name-area h1{
    font-size: 3vw;
    color: #3ca5cb;
    text-align: center;
}

#footer-company-detail-area{
    width: 25%;
}

#footer-company-detail-area p{
    font-size: 1.5vw;
    line-height: 2.5vw;
}

#copy-right-area{
    width: 100%;
    text-align: center;
}

#copy-right-area small{
    font-size: 1vw;
    line-height: 3vw;
}


}

/*-------------------
タブレット_横
-------------------*/
@media screen and (min-width: 1025px) and (max-width: 1400px) {

header#header-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

#header-area-inner{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header-contents-area{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-102%);
    transition: transform 0.5s ease;
    z-index: 90;
    background-color: #fff;
}

/* クラスが付与されたら画面内に降りてくる */
.header-contents-area.is-active {
    transform: translateY(0);
}

#logo-area{
    width: 5%;    
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-area img{
    width: 70%;
}

#company-name-area{
    width: 40%;
    margin-right: 5%;
}

#company-name-area h1{
    font-size: 3vw;
    font-weight: bold;
    color: #3ca5cb;
}

#link-list-area{
    width: 15%;
    margin-right: 5%;
}

#link-list-area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

#link-list-area ul a{
    width: 50%;
    font-size: 1vw;
    font-weight: 500;
    line-height: 2vw;
    text-align: center;
    list-style: none;
}

#link-list-area ul a:hover{
    color: #3ca5cb;
}

#link-list-area ul a li{
    width: 100%;
    font-size: 1.2vw;
    text-align: left;
}


#contact-button-area{
    width: 7%;
    margin-right: 23%;
    background-color: #3ca5cb;
}

#contact-button-area:hover{
    background-color: #57bde1;
}

#contact-button-area a{
    width: 20%;
    text-decoration: none;
}

#contact-button-outside{
    width: 100%;
    border: 5px solid #286f82;
    padding: 5%;
}

#contact-button-inside{
    width: 100%;
    border: 5px solid #286f82;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#contact-button-image{
    width: 50%;
    margin: 5% auto;
}

#contact-button-image img{
    width: 100%;
    vertical-align: top;
}

#contact-button-text{
    width: 100%;
    margin: 5% 0;
}

#contact-button-text p{
    font-size: 1vw;
    line-height: 1.5vw;
    color: #fff;
    text-align: center;
}

.m-header-contents-area{
    display: none;
}

#menu-area{
    width: 10%;
    position: absolute;
    top: 5vh;
    right: -4%;
}

#menu-area button{
    width: 40px;
    background-color: transparent;
    border: none;
}

/* チェックボックスは非表示にする */
.menu-btn-check {
    display: none;
}

/* --- ハンバーガーボタン --- */
.menu-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 100; /* メニューより手前に配置 */
    padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease;
}
.menu-btn span::before { top: -10px; }
.menu-btn span::after { bottom: -10px; }

/* クリック時にボタンを×印にする場合 */

/* .menu-btn-check:checked ~ .menu-btn span {
    background-color: transparent;
}
.menu-btn-check:checked ~ .menu-btn span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn-check:checked ~ .menu-btn span::after {
    transform: translateY(-10px) rotate(-45deg);
} */

.menu-btn.is-active span {
    background-color: transparent;
}
.menu-btn.is-active span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.is-active span::after {
    transform: translateY(-10px) rotate(-45deg);
}

#menu-name-area-open{
    width: 100%;
    display: block;
    margin-top: 5%;
}

#menu-name-area-open.is-active{
    display: none;
}

#menu-name-area-open p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

#menu-name-area-close{
    width: 100%;
    display: none;
    z-index: 100;
    margin-top: 5%;
}

#menu-name-area-close.is-active{
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

#menu-name-area-close p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

.menu-btn-check:checked ~ .nav-menu {
    transform: translateY(0);
}

#m-menu-area{
    display: none;
}

footer{
    width: 100%;
    margin-top: 10%;
    border-top: 3px solid #3ca5cb;
}

#footer-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    width: 60%;
    margin: 1% auto;
}

nav ul{
    width: 100%;
    display: flex;
}

nav ul a{
    width: 15%;
    text-decoration: none;
    border-right: 1px dashed #000
}

nav ul a:last-child{
    border-right: none;
}

nav ul a li{
    width: 100%;
    font-size: 1.3vw;
    line-height: 2vw;
    list-style: none;
    text-align: center;
}

nav ul a li:hover{
    color: #3ca5cb;
}

#footer-contents-area{
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo{
    width: 25%;
    text-align: right;
}

#footer-logo img{
    width: 60%;
    vertical-align: middle;
    opacity: 0.6;
}

#footer-page-name-area{
    width: 50%;
}

#footer-page-name-area h1{
    font-size: 3vw;
    color: #3ca5cb;
    text-align: center;
}

#footer-company-detail-area{
    width: 25%;
}

#footer-company-detail-area p{
    font-size: 1.5vw;
    line-height: 2.5vw;
}

#copy-right-area{
    width: 100%;
    text-align: center;
}

#copy-right-area small{
    font-size: 1vw;
    line-height: 3vw;
}


}

/*-------------------
ＰＣ
-------------------*/
@media all and (min-width: 1401px){

header#header-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

#header-area-inner{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header-contents-area{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 90;
    background-color: #fff;
}

/* クラスが付与されたら画面内に降りてくる */
.header-contents-area.is-active {
    transform: translateY(0);
}

#logo-area{
    width: 5%;    
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-area img{
    width: 70%;
}

#company-name-area{
    width: 40%;
    margin-right: 5%;
}

#company-name-area h1{
    font-size: 3vw;
    font-weight: bold;
    color: #3ca5cb;
}

#link-list-area{
    width: 15%;
    margin-right: 5%;
}

#link-list-area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

#link-list-area ul a{
    width: 50%;
    font-size: 1vw;
    font-weight: 500;
    line-height: 2vw;
    text-align: center;
    list-style: none;
}

#link-list-area ul a:hover{
    color: #3ca5cb;
}

#link-list-area ul a li{
    width: 100%;
    text-align: left;
}


#contact-button-area{
    width: 7%;
    margin-right: 23%;
    background-color: #3ca5cb;
}

#contact-button-area:hover{
    background-color: #57bde1;
}

#contact-button-area a{
    width: 20%;
    text-decoration: none;
}

#contact-button-outside{
    width: 100%;
    border: 5px solid #286f82;
    padding: 5%;
}

#contact-button-inside{
    width: 100%;
    border: 5px solid #286f82;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#contact-button-image{
    width: 50%;
    margin: 5% auto;
}

#contact-button-image img{
    width: 100%;
    vertical-align: top;
}

#contact-button-text{
    width: 100%;
    margin: 5% 0;
}

#contact-button-text p{
    line-height: 1.5vw;
    color: #fff;
    text-align: center;
}

.m-header-contents-area{
    display: none;
}

#menu-area{
    width: 10%;
    position: absolute;
    top: 5vh;
    right: 0%;
}

#menu-area button{
    width: 40px;
    background-color: transparent;
    border: none;
}

/* チェックボックスは非表示にする */
.menu-btn-check {
    display: none;
}

/* --- ハンバーガーボタン --- */
.menu-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 100; /* メニューより手前に配置 */
    padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease;
}
.menu-btn span::before { top: -10px; }
.menu-btn span::after { bottom: -10px; }

/* クリック時にボタンを×印にする場合 */

/* .menu-btn-check:checked ~ .menu-btn span {
    background-color: transparent;
}
.menu-btn-check:checked ~ .menu-btn span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn-check:checked ~ .menu-btn span::after {
    transform: translateY(-10px) rotate(-45deg);
} */

.menu-btn.is-active span {
    background-color: transparent;
}
.menu-btn.is-active span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.is-active span::after {
    transform: translateY(-10px) rotate(-45deg);
}

#menu-name-area-open{
    width: 100%;
    display: block;
}

#menu-name-area-open.is-active{
    display: none;
}

#menu-name-area-open p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

#menu-name-area-close{
    width: 100%;
    display: none;
    z-index: 100;
}

#menu-name-area-close.is-active{
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

#menu-name-area-close p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

.menu-btn-check:checked ~ .nav-menu {
    transform: translateY(0);
}

#m-menu-area{
    display: none;
}

footer{
    width: 100%;
    margin-top: 15%;
    border-top: 3px solid #3ca5cb;
}

#footer-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    width: 60%;
    margin: 1% auto;
}

nav ul{
    width: 100%;
    display: flex;
}

nav ul a{
    width: 15%;
    text-decoration: none;
    border-right: 1px dashed #000
}

nav ul a:last-child{
    border-right: none;
}

nav ul a li{
    width: 100%;
    line-height: 2vw;
    list-style: none;
    text-align: center;
}

nav ul a li:hover{
    color: #3ca5cb;
}

nav ul a li:hover{
    color: #3ca5cb;
}

#footer-contents-area{
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo{
    width: 25%;
    text-align: right;
}

#footer-logo img{
    width: 60%;
    vertical-align: middle;
    opacity: 0.6;
}

#footer-page-name-area{
    width: 50%;
}

#footer-page-name-area h1{
    font-size: 3vw;
    color: #3ca5cb;
    text-align: center;
}

#footer-company-detail-area{
    width: 25%;
}

#footer-company-detail-area p{
    line-height: 2vw;
}

#copy-right-area{
    width: 100%;
    text-align: center;
}

#copy-right-area small{
    font-size: 0.7vw;
    line-height: 1vw;
}


}
/*-------------------
印刷用
-------------------*/
@media print{

header#header-area{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

#header-area-inner{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header-contents-area{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 90;
    background-color: #fff;
}

/* クラスが付与されたら画面内に降りてくる */
.header-contents-area.is-active {
    transform: translateY(0);
}

#logo-area{
    width: 5%;    
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo-area img{
    width: 70%;
}

#company-name-area{
    width: 40%;
    margin-right: 5%;
}

#company-name-area h1{
    font-size: 3vw;
    font-weight: bold;
    color: #3ca5cb;
}

#link-list-area{
    width: 15%;
    margin-right: 5%;
}

#link-list-area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
}

#link-list-area ul a{
    width: 50%;
    font-size: 1vw;
    font-weight: 500;
    line-height: 2vw;
    text-align: center;
    list-style: none;
}

#link-list-area ul a:hover{
    color: #3ca5cb;
}

#link-list-area ul a li{
    width: 100%;
    text-align: left;
}


#contact-button-area{
    width: 7%;
    margin-right: 23%;
    background-color: #3ca5cb;
}

#contact-button-area:hover{
    background-color: #57bde1;
}

#contact-button-area a{
    width: 20%;
    text-decoration: none;
}

#contact-button-outside{
    width: 100%;
    border: 5px solid #286f82;
    padding: 5%;
}

#contact-button-inside{
    width: 100%;
    border: 5px solid #286f82;
    display: flex;
    flex-direction: column;
    padding: 5%;
}

#contact-button-image{
    width: 50%;
    margin: 5% auto;
}

#contact-button-image img{
    width: 100%;
    vertical-align: top;
}

#contact-button-text{
    width: 100%;
    margin: 5% 0;
}

#contact-button-text p{
    line-height: 1.5vw;
    color: #fff;
    text-align: center;
}

.m-header-contents-area{
    display: none;
}

#menu-area{
    width: 10%;
    position: absolute;
    top: 5vh;
    right: 0%;
}

#menu-area button{
    width: 40px;
    background-color: transparent;
    border: none;
}

/* チェックボックスは非表示にする */
.menu-btn-check {
    display: none;
}

/* --- ハンバーガーボタン --- */
.menu-btn {
    width: 40px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 100; /* メニューより手前に配置 */
    padding: 0;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: transform 0.3s ease;
}
.menu-btn span::before { top: -10px; }
.menu-btn span::after { bottom: -10px; }

/* クリック時にボタンを×印にする場合 */

/* .menu-btn-check:checked ~ .menu-btn span {
    background-color: transparent;
}
.menu-btn-check:checked ~ .menu-btn span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn-check:checked ~ .menu-btn span::after {
    transform: translateY(-10px) rotate(-45deg);
} */

.menu-btn.is-active span {
    background-color: transparent;
}
.menu-btn.is-active span::before {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.is-active span::after {
    transform: translateY(-10px) rotate(-45deg);
}

#menu-name-area-open{
    width: 100%;
    display: block;
}

#menu-name-area-open.is-active{
    display: none;
}

#menu-name-area-open p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

#menu-name-area-close{
    width: 100%;
    display: none;
    z-index: 100;
}

#menu-name-area-close.is-active{
    width: 100%;
    display: block;
    position: relative;
    z-index: 100;
}

#menu-name-area-close p{
    font-size: 14px;
    line-height: 1vw;
    font-weight: bold;
}

.menu-btn-check:checked ~ .nav-menu {
    transform: translateY(0);
}

#m-menu-area{
    display: none;
}

footer{
    width: 100%;
    margin-top: 15%;
    border-top: 3px solid #3ca5cb;
}

#footer-area{
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav{
    width: 60%;
    margin: 1% auto;
}

nav ul{
    width: 100%;
    display: flex;
}

nav ul a{
    width: 15%;
    text-decoration: none;
    border-right: 1px dashed #000
}

nav ul a:last-child{
    border-right: none;
}

nav ul a li{
    width: 100%;
    line-height: 2vw;
    list-style: none;
    text-align: center;
}

nav ul a li:hover{
    color: #3ca5cb;
}

nav ul a li:hover{
    color: #3ca5cb;
}

#footer-contents-area{
    width: 90%;
    margin: 5% auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footer-logo{
    width: 25%;
    text-align: right;
}

#footer-logo img{
    width: 60%;
    vertical-align: middle;
    opacity: 0.6;
}

#footer-page-name-area{
    width: 50%;
}

#footer-page-name-area h1{
    font-size: 3vw;
    color: #3ca5cb;
    text-align: center;
}

#footer-company-detail-area{
    width: 25%;
}

#footer-company-detail-area p{
    line-height: 2vw;
}

#copy-right-area{
    width: 100%;
    text-align: center;
}

#copy-right-area small{
    font-size: 0.7vw;
    line-height: 1vw;
}


}


/*-------------------
共通
-------------------*/

a{
    color: #585b5b;
}

html{
    overflow-x: hidden;
    margin: 0;
}

body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1vw;
    color: #585b5b;
    background: #f4fafc;
    margin: 0;
    overflow-x: hidden;
}

.zen-kaku-gothic-antique-light {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-antique-regular {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-antique-medium {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-antique-bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-antique-black {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.f-jost{
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: bold; */
    font-style: normal;
}

#category-image-area{
    width: 100%;
    position: relative;
    z-index: -1;
}

#category-image-area img{
    width: 100%;
    vertical-align: top;
}

picture img{
    width: 100%;
    vertical-align: top;
}

/*-----------------
移動動作
------------------*/

.fadein-top{
    transform: translateY(-100px); /* 初期位置：上へ100pxずらす */
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.fadein-top.is-active {
    transform: translateY(0); /* 目標位置：元の場所 */
    opacity: 1;
}

.fadein-bottom{
    transform: translateY(100px); /* 初期位置：下へ100pxずらす */
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.fadein-bottom.is-active {
    transform: translateY(0); /* 目標位置：元の場所 */
    opacity: 1;
}


.fadein-left{
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.fadein-left.is-active {
    transform: translateX(0);
    opacity: 1;
}

.fadein-right{
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.fadein-right.is-active {
    transform: translateX(0);
    opacity: 1;
}

.c-fadein-octagon{
    transform: rotate(-360deg) scale(0);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.c-fadein-octagon.is-active {
    transform: rotate(0) ;
    opacity: 1;
}




.r-fadein-about-original-page{
    transform: translateX(60%); /* 初期位置：下へ100pxずらす */
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.r-fadein-about-original-page.is-active {
    transform: translateX(0); /* 目標位置：元の場所 */
    opacity: 1;
}