@charset "UTF-8";

/*スマホ版はここから*/
@media screen and (max-width:441px) {
*{
    color: #353535;
    font-family: "Noto Sans";
}  
body {
    animation: firstfadeIn 2s ease-in-out 0s normal;
}

@keyframes firstfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
h1{
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 30px;
}
h2{
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
    }
p{
    line-height: 27px;
}
main{
    margin-top: 10%;
}   
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
    width: 100%;
    height: 95px;
    background-color: #fff;
}
.headerimg{
    width: 125px;
    padding-left: 20px;
    text-align: center;
}
.menu{
    display: none;
}

/* ハンバーガーメニュー */
.menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 90;
    height: 60px;
    width: 60px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #0e34bb;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}

.menu-content {
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-tittle {
    position: absolute;
    top: 24px;
    left: 9px;
    font-size: 2.2em;
}

.menu-content ul {
    padding: 120px 10px 0;
}
.menu-content ul li {
    padding-top: 10px;
    border-bottom: solid 1px #4b4b4b;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 9px 15px 10px 0;
    box-sizing: border-box;
    color:#4b4b4b;
    font-size: 1.4em;
    text-decoration: none;
}
.menu-content ul li a::before {
    content: "";
    position: absolute;
    right: 11px;
    top: 18px;
    width: 14px;
    height: 14px;
    border-top: solid 2px #0e34bb;
    border-right: solid 2px #0e34bb;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/*----------------メインはここから----------------*/

main{
    margin-top: 10em;
}
.wrapper{
    width: 80%;
    margin: 0 auto;
}
.privacy-top{
    margin-bottom: 5%;
}
.privacy-top-p{
    margin-left: 0;
}
.privacy{
    margin-bottom: 5%;
}
.privacy ul {
    list-style-type: square;
    margin-top: 5%;
    margin-bottom: 2%;
}
.privacy li{
    font-size: 0.9em;
    margin-left: 5%;
    margin-bottom: 6%;
}
.button-privacy{
    display: block;
    align-items: center;
    width: 190px;
    height: 50px;
    margin: 0 auto;
    margin-top: 80px;
    border: 3px solid #4b4b4b;
    border-radius: 5px;
    background-color: #4b4b4b;
    color: #fff;
    font-weight:500;
    font-size: 1.1em;
    font-family:  "Noto Sans JP";
    transition: all 0.3s ease;
}
.button-privacy:hover{
    border: 3px solid #4b4b4b;
    background-color: #fff;
    color: #4b4b4b;
}
/*----------------フッターはここから----------------*/
footer{
    margin-top: 150px;
    background-color: #8f8f8f;
}

footer img {
    margin-top: 26px;
    margin-bottom: 50px;
}

.footer-box{
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 55px;
}

.footer-box a {
    color: #fff;
    text-decoration: none;
}

/* コピーライト */
.footer-end {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #4b4b4b;
}

.footer-end p{
    color: #fff;
    font-size: 0.8em;
    text-align: center;    
}

}
/*タブレットはここから*/
@media screen and (min-width:440px) and (max-width:1080px) {
body {
    animation: firstfadeIn 2s ease-in-out 0s normal;
}

@keyframes firstfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1{
    font-size: 2.3em;
    font-weight: 600;
    margin-bottom: 50px;}
h2{
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
    }
p{
    line-height: 27px;
    margin-left: 2%;
}

    /*---------------ヘッダー関係はここから---------------*/
*{
    color: #353535;
    font-family: "Noto Sans";
}    
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
    width: 100%;
    height: 95px;
    background-color: #fff;
}
.headerimg{
    width: 125px;
    padding-left: 20px;
    text-align: center;
}
.menu{
    display: none;
}
/* ハンバーガーメニュー */
.menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 90;
    height: 60px;
    width: 60px;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #0e34bb;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-tittle {
    position: absolute;
    top: 24px;
    left: 9px;
    font-size: 2.2em;
}
.menu-content ul {
    padding: 120px 10px 0;
}
.menu-content ul li {
    padding-top: 10px;
    border-bottom: solid 1px #4b4b4b;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 9px 15px 10px 0;
    box-sizing: border-box;
    color:#4b4b4b;
    font-size: 1.4em;
    text-decoration: none;
}
.menu-content ul li a::before {
    content: "";
    position: absolute;
    right: 11px;
    top: 18px;
    width: 14px;
    height: 14px;
    border-top: solid 2px #0e34bb;
    border-right: solid 2px #0e34bb;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/*----------------メインはここから----------------*/
main{
    margin-top: 10em;
}
.wrapper{
    width: 80%;
    margin: 0 auto;
}
.privacy-top{
    margin-bottom: 5%;
}
.privacy-top-p{
    margin-left: 0;
}
.privacy{
    margin-bottom: 5%;
}
.privacy ul {
    list-style-type: square;
    margin-top: 2%;
    margin-bottom: 2%;
}
.privacy li{
    font-size: 0.9em;
    margin-left: 5%;
    margin-bottom: 1%;
}
.button-privacy{
    display: block;
    align-items: center;
    width: 175px;
    height: 50px;
    margin: 0 auto;
    margin-top: 80px;
    border: 3px solid #4b4b4b;
    border-radius: 5px;
    background-color: #4b4b4b;
    color: #fff;
    font-weight:500;
    font-size: 1.1em;
    font-family:  "Noto Sans JP";
    transition: all 0.3s ease;
}
.button-privacy:hover{
    border: 3px solid #4b4b4b;
    background-color: #fff;
    color: #4b4b4b;
}
/*----------------フッターはここから----------------*/
footer{
    min-width: 700px;/*要相談*/
    margin-top: 150px;
    background-color: #8f8f8f;
}

footer img {
    margin-top: 26px;
    margin-bottom: 50px;
}

.footer-box{
    display: flex;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 55px;
}

.footer-box a {
    color: #fff;
    text-decoration: none;
}

/* コピーライト */
.footer-end {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #4b4b4b;
}

.footer-end p{
    color: #fff;
    font-size: 0.8em;
    text-align: center;    
}

}


/*PCはここから*/
@media screen and (min-width:1081px){
body {
    animation: firstfadeIn 2s ease-in-out 0s normal;
}

@keyframes firstfadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

*{
    color: #353535;
    font-family: "Noto Sans";
}
main{
    margin-top: 10em;
}
h1{
    font-size: 2.3em;
    font-weight: 600;
    margin-bottom: 50px;
}
h2{
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
}
p{
    font-size: 1.1em;
    line-height: 27px;
    margin-left: 2%;
}
/* メニュー選択時のスクロール調整 */
:root{
	scroll-padding: 100px;
	scroll-behavior: smooth;
}

/*----------------ヘッダー関係はここから----------------*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top:0;
    left:0;
    z-index: 100;
    width: 100%;
    padding: 15px 0;
    background-color: #fff;
}
.headerimg{
    margin-left: 3%;
}
.menu{
    margin-right: 3%;
}
.menu ul{
    display: flex;
    gap: 35px;
} 
.menu ul li a {
    text-decoration: none;
    color: #4b4b4b;
    font-family: "Noto Sans";
}
.menu ul li :hover{
    text-decoration: underline;
    text-underline-offset:0.3em;
    text-decoration-color: #d0a900;
    text-decoration-thickness: 2px;
}
.menu li{
    font-size: 1em;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
}
/*--------------メインはここから--------------*/
.wrapper{
    width: 80%;
    margin: 0 auto;
}
.privacy-top{
    margin-bottom: 5%;
}
.privacy-top-p{
    margin-left: 0;
}
.privacy{
    margin-bottom: 5%;
}
.privacy ul {
    list-style-type: square;
    margin-top: 2%;
    margin-bottom: 2%;
}
.privacy li{
    margin-left: 5%;
    margin-bottom: 1%;
}
.button-privacy{
    display: block;
    align-items: center;
    width: 230px;
    height: 65px;
    margin: 0 auto;
    margin-top: 100px;
    border: 3px solid #4b4b4b;
    border-radius: 5px;
    background-color: #4b4b4b;
    color: #fff;
    font-weight:500;
    font-size: 1.4em;
    font-family:  "Noto Sans JP";
    transition: all 0.3s ease;
}
.button-privacy:hover{
    border: 3px solid #4b4b4b;
    background-color: #fff;
    color: #4b4b4b;
}
/*--------------フッターはここから--------------*/
footer{
    margin-top: 150px;
    background-color: #8f8f8f;
}
footer .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1000px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.footer-box{
    display: flex;
    gap: 25px;
}
.footer-box a{
    color: #fff;
    font-size: 0.9em;
    font-family:  "Noto Sans";
    text-decoration: none;
}
.footer-box p:hover{
    text-decoration: underline;
    text-underline-offset:0.3em;
    text-decoration-color: #fff;
}

/* コピーライト */
.footer-end{
    padding-top: 9px;
    padding-bottom: 9px; 
    background-color: #4b4b4b;
    color: #fff;
    font-size: 0.8em;
    text-align: center;
}
.footer-end p{
    display: inline-block;
    margin: 0 auto;
    color: #fff;
    font-family: "Noto Sans JP";
}
}