@charset "utf-8";
/* CSS Document */
html {
    font-family: "Noto Sans JP";
    font-size: 62.5%;
    position: relative;
    min-height: 100%;
    padding-bottom: 94px;
    box-sizing: border-box;
}
body {
    font-size: 1.5rem;
    line-height: 1.4;
    font-family: "Noto Sans JP";
}
* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
@media screen and (min-width: 780px) {
.sp{
    display: none!important;
}
}
/* Parts */
a, a:visited {
    color: #2D8CFF;
    text-decoration: underline;
}
.mb-0 {
    margin-bottom: 0 !important;
}
body:before {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    background: #101010;
}
img{
    max-width: 100%;
}
/* Header */
header {
    align-items: center;
    box-shadow: 0 1px 0.4rem 0 rgba(0, 0, 0, 0.5);
    padding: 0;
    height: 130px;
    overflow: hidden;
}
.header-inner{
    max-width: 1024px;
    margin: 0 auto;
    background: url("../img/bg_header.svg") no-repeat;
    background-size: 295px;
    background-position: 160px -20px;
    position: relative;
}
.language-switch{
    position: absolute;
    top: 10px;
    right: 0;
    border: 3px solid #000;
    border-radius: 8rem;
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
    background: #FFF;
}
.language-switch a{
    color: #000;
    text-decoration: none;
}
.language-switch:hover{
    background: yellow;
    transition: 0.5s;
}
.site-description {
    font-size: 0.9rem;
    text-align: left;
    display: block;
    font-weight: normal;
    margin: 1rem 1rem;
    width: 80%;
}
.site-title {
    margin-bottom: 1rem;
    text-align: left;
}
.site-title img {
    max-width: 80%;
    margin-left: 2rem;
}
/* Navigation */
.mobile-logo{
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 2rem 0;
        box-shadow: 0 1px 0.4rem 0 rgba(0, 0, 0, 0.5);
    text-align: left;
}
.mobile-logo img{
    max-width: 80%;
    margin-left: 2rem;
}
nav {
    width: 100%;
    position: relative;
}
.nav-inner.menu {
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    transition: .5s ease;
    height: calc(100vh - 80px);
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    margin-top: 1rem;
    z-index: 1;
    position: relative;
}
.nav-inner ul {
    display: flex;
    flex-direction: column;
    font-size: 1.3rem;
}
.nav-inner ul a {
    display: block;
    padding: 1.8rem 2rem;
    position: relative;
    font-size: 1.8rem;
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid #F8F8F8;
}
.nav-inner ul a.active:after {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: '';
    height: 4px;
    background: #D4572A;
}
/* Drawer Menu */
.menu.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); /*中身を表示（右へスライド）*/
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
/* Toggle */
.Toggle {
    display: block;
    position: fixed; /* bodyに対しての絶対位置指定 */
    width: 38px;
    height: 38px;
    cursor: pointer;
    z-index: 3;
    top: 50px;
    right: 15px;
    background: #D4572A;
    border-radius: 4px;
}
.Toggle span {
    display: block;
    position: absolute;
    left: 3px;
    width: 32px;
    border-bottom: solid 4px #FFF;
    -webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: .35s ease-in-out; /*変化の速度を指定*/
    transition: .35s ease-in-out; /*変化の速度を指定*/
}
.Toggle span:nth-child(1) {
    top: 8px;
}
.Toggle span:nth-child(2) {
    top: 18px;
}
.Toggle span:nth-child(3) {
    top: 28px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* second and third bar */
.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (min-width: 780px) {
    html {
        padding-bottom: 130px;
    }
    header {
        height: inherit;
        height: 130px;
    }
    header::after {
        display: none;
    }
    .site-title {
        text-align: center;
    }
    .site-title img {
        max-width: 384px;
        margin-left: 0;
    }
    .site-description {
        text-align: center;
        margin: 1rem auto;
    }
    nav {
        width: inherit;
    }
    .Toggle {
        display: none;
    }
    nav {
        display: flex;
        background: transparent;
    }
    .nav-inner.menu {
        width: 100%;
        background-color: transparent;
        margin-top: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        position: inherit;
        height: 37px;
    }
    .nav-inner ul {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        max-width: 880px;
        margin: 0 auto;
    }
    .nav-inner ul a {
        padding: 0.8rem 2rem;
        font-size: 1.5rem;
        font-size: clamp(1.3rem, 1.7vw, 1.5rem);
            border-bottom: none;
    }
    .nav-inner ul a span {
        position: relative;
        display: inline-block;
        text-decoration: none;
    }
    .nav-inner ul a.active::after {
        content: none;
    }
    .nav-inner ul a span::after, .nav-inner ul a.active span::after {
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform .3s;
        position: absolute;
        bottom: -8px;
        left: 0;
        content: '';
        width: 100%;
        height: 4px;
        background: #D4572A;
    }
    .nav-inner ul a.active span::after {
        transform: scale(1, 1);
    }
    .nav-inner ul a:hover span:after {
        transform: scale(1, 1);
    }
    
}
/* Main Area */
.main-content {
    margin: 0.4rem 0 2rem;
    padding: 0.4rem 1rem 7rem;
    max-width: 100%;
    overflow: hidden;
    /*    background: #FCEFEF;*/
}
.content-inner {
    max-width: 1024px;
    margin: 0 auto;
}
/* Breadcrumb */
.breadcrumb {
    margin: 0 0 1rem;
}
.breadcrumb ul {
    display: flex;
    justify-content: flex-start;
    font-size: 1.3rem;
}
.breadcrumb ul a {
    display: block;
    color: inherit;
    text-decoration: none;
}
.breadcrumb ul a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin: 0 0.6rem;
}
/* Page Title (h1) */
.page-title {
    background: #FAFAFA;
    padding: 6.2rem;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-bottom: 6rem;
}
.page-title h1 {
    font-size: 3.2rem;
    font-size: clamp(2.8rem, 3.2vw, 3.2rem);
    text-align: center;
}
.page-title h1 span {
    display: inline-block;
    position: relative;
}
.page-title h1 span:after {
    content: "";
    width: 80%;
    height: 4px;
    background: #D4572A;
    display: block;
    position: absolute;
    left: 10%;
    bottom: -4px;
}
/* each Contents */
.contents {
    max-width: 960px;
    margin: 0 auto 4rem;
}
.contents p {
    font-size: 1.5rem;
    line-height: 2.2;
    text-indent: 2rem;
    margin-bottom: 2rem;
}
.contents p.no-indent {
    text-indent: 0;
}
.contents .gray-box {
    background: #F8F8F8;
    padding: 3rem;
}
/* Index (h2) */
.contents h2 {
    font-size: 2.6rem;
    position: relative;
    line-height: 1;
    margin-bottom: 2rem;
    padding: 1.2rem 0;
}
.contents h2:before {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    background: #D4572A;
}
.contents h2:after {
    content: "";
    display: block;
    height: 2px;
    width: 20%;
    position: absolute;
    bottom: 0;
    background: #878787;
}
.contents h3 {
    font-size: 2.4rem;
    border: 1px solid #707070;
    position: relative;
    padding: 0.8rem 0.2rem 0.8rem 4.2%;
    margin: 2rem 0 2rem 1rem;
    line-height: 1;
}
.contents h3:after {
    content: "";
    display: block;
    position: absolute;
    width: 5%;
    height: 5px;
    background: #D4572A;
    left: -1rem;
    top: 50%;
    webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.contents h4{
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 1px dotted #333;
    padding-bottom: 0.2rem;
}
.contents .textBox{
    margin-bottom: 2rem;
}
.contents ul li{
    line-height: 1.8;
}
.contents .img-fl{
    display: block;
    width: 100%;
    text-align: center;
}
.contents .img-fl img{
    max-width: 100%;
}
@media screen and (min-width: 780px) {
    .contents .img-fl {
        display: block;
        float: left;
        width: inherit;
        margin-right: 2rem;
        margin-bottom: 2rem;
    }
    .contents .img-fr {
        display: block;
        float: right;
        width: inherit;
        margin-left: 2rem;
        margin-bottom: 2rem;
        max-width: 300px;
    }
}
/* Footer */
footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 168px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #000;
    z-index: -1;
    margin-top: 7rem;
}
.foot-logo {
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logomark {
    width: 170px;
    height: 31px;
    display: flex;
    flex-direction: column;
}
.foot-logo img {
    width: 160px;
}
.foot-bottom {
    background: url("../img/foot-bg.png");
    height: 100px;
}
/* Back to Page top */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    line-height: 1;
    z-index: 99;
}
#page-top a {
    background: #1a1a1a;
    text-decoration: none;
    color: #fff;
    width: 70px;
    padding: 11px 5px;
    text-align: center;
    display: block;
    border-radius: 90px;
    opacity: 0.9;
    transition: all .3s ease;
    height: 70px;
    line-height: 1.4;
}
#page-top a:hover {
    text-decoration: none;
    opacity: .5;
}
/* 制作上の注意書き */
.contents .procuction-note{
    color: red;
    font-size: 2rem;
    font-weight: bold;
    text-indent: 0;
}