@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');


body {
    font-weight: 400;
    font-size: 14px;
    font-family: 'Helvetica Neue','Arial', 'Noto Sans JP', sans-serif;
    line-height: 1.25;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}

a {
    color: inherit;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

a:hover {
    opacity: .7;
}

.noto-bold {
    font-weight: 700;
}

.toppan-bunkyu {
    font-family: toppan-bunkyu-midashi-go-std, 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-style: normal;
}

.container {
    position: relative;
    padding: 140px 15px 0;
}

.box {
    padding: 60px 20px 80px;
    border-radius: 20px;
}

.box-skyblue {
    background-color: #e0efef;
}

.box-orange {
    background-color: #fde8c7;
}

.text {
    line-height: 1.5;
    letter-spacing: 2px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.section-title {
    color: #4d4d4d;
}

.section-title-ja {
    margin-bottom: 10px;
    font-size: 18px;
    letter-spacing: 3px;
}

.section-title-en {
    font-size: 13px;
    font-family: 'DIN Alternate','Helvetica Neue','Arial',sans-serif;
    letter-spacing: 2px;
}

.title-center {
    text-align: center;
}

.title-center-ja {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 2px;
    text-indent: 2px;
}

.title-center-en {
    color: #f7931e;
    font-size: 12px;
}

@media screen and (min-width: 600px) {
    .inner {
        width: 90%;
        max-width: 1440px;
        margin: auto;
    }
}

@media screen and (min-width: 768px) {
    .container {
        padding: 140px 25px 0;
    }
    
    .section-title-ja {
        font-size: 20px;
    }
    
    .section-title-en {
        font-size: 14px;
    }
    
    .title-center-ja {
        font-size: 22px;
    }
    
    .title-center-en {
        font-size: 14px;
    }
}

@media screen and (min-width: 960px) {
    .container {
        padding-top: 200px;
    }
    
    .text {
        line-height: 1.75;
    }
    
    .box {
        padding: 100px 20px 120px;
        border-radius: 20px;
    }
    
    .section-title-ja {
        font-size: 22px;
    }
    
    .section-title-en {
        font-size: 15px;
    }
    
    .title-center-ja {
        font-size: 26px;
        letter-spacing: 4px;
        text-indent: 4px;
    }
}

@media screen and (min-width: 1280px) {
    .text {
        font-size: 16px;
    }
}

/* ヘッダー */

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    background-color: #fff;
}

.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.header-logo {
    display: inline-block;
    width: 200px;
    height: 43px;
    background-image: url(/assets/images/logo_txt-blk.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.nav-btn {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50%;
    background-color: #4d4d4d;
    cursor: pointer;
}

.bar {
    position: absolute;
    width: 24px;
    height: 1px;
    background-color: #fff;
}

.bar:first-of-type {
    top: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


.bar:nth-of-type(2) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bar:last-of-type {
    bottom: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.header-menu .bar:first-of-type {
    -webkit-transform: translate(-50%, 7.5px) rotate(45deg);
    transform: translate(-50%, 7.5px) rotate(45deg);
}

.header-menu .bar:nth-of-type(2) {
    opacity: 0;
}

.header-menu .bar:last-of-type {
    -webkit-transform: translate(-50%, -7.5px) rotate(-45deg);
    transform: translate(-50%, -7.5px) rotate(-45deg);
}

.header-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 999;
    width: 100%;
    background-color: #fff;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.header-menu.menu-open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.header-menu-logo {
    display: inline-block;
    width: 200px;
    height: 43px;
    background-image: url(/assets/images/logo_txt-blk.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header-menu-image {
    display: none;
}

.header-menu-list {
    padding: 25px 20px;
}

.header-menu-item {
    margin-bottom: 15px;
    border-right: 1px solid #555;
    border-left: 1px solid #555;
    text-align: center;
}

.header-menu-item a {
    display: block;
    color: #333;
    line-height: 2;
    letter-spacing: 2px;
    text-indent: 2px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-color: rgba(0, 0, 0, .3);
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.overlay.visible {
    display: block;
    z-index: 998;
    opacity: 1;
}

@media screen and (min-width: 768px) {
    .header-menu-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 90%;
        margin: auto;
        padding: 30px 0;
    }
    
    .header-menu-image {
        display: block;
        width: 120px;
    }
    
    .header-menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .header-menu-item {
        width: 33.3%;
        border-left: none;
    }
    
    .header-menu-item:first-of-type,
    .header-menu-item:nth-of-type(4) {
        border-left: 1px solid #555;
    }
}

@media screen and (min-width: 960px) {
    .header-menu-wrap {
        padding: 45px 0;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    
    .header-menu-image {
        width: 160px;
    }
    
    .header-menu-item a {
        font-size: 15px;
    }
}

@media screen and (min-width: 1280px) {
    .header-menu-logo {
        width: 350px;
        height: 64.5px;
    }
}

/* - PC用ナビゲーション */

.pc-nav {
    display: none;
    position: absolute;
    top: 30px;
    right: 120px;
    z-index: 99;
}

.pc-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.pc-nav-item {
    margin-left: 15px;
    color: #4d4d4d;
    font-weight: 700;
    letter-spacing: 1px;
}

.pc-nav-item-document {
    padding: 5px 10px;
    border: 1px solid #9ac7c8;
    border-radius: 20px;
    background-color: #9ac7c8;
}

@media screen and (min-width: 768px) {
    .header-inner {
        padding: 20px 50px 15px;
    }
}

@media screen and (min-width: 960px) {
    .pc-nav {
        display: block;
    }
}

@media screen and (min-width: 1280px) {
    .pc-nav {
        top: 51px;
        right: 140px;
    }
    
    .pc-nav-item {
        margin-left: 25px;
        font-size: 16px;
    }
    
    .pc-nav-item-document {
        padding: 7px 25px;
    }
    
    .header-logo {
        width: 350px;
        height: 64.5px;
    }
    
    .nav-btn {
        margin-top: auto;
    }
}

/* フッター */

footer {
    padding: 25px 15px;
    -webkit-box-shadow: 0 -3px 10px #ddd;
    box-shadow: 0 -3px 10px #ddd;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-logo {
    display: block;
    width: 240px;
}

.footer-address {
    margin: -14px 0 20px 68px;
    color: #4d4d4d;
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-tel img {
    width: 18px;
    margin-right: 5px;
}

.footer-tel span {
    color: #4d4d4d;
    font-size: 22px;
    letter-spacing: 2px;
}

.footer-fax {
    color: #4d4d4d;
    letter-spacing: 1px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-btn-item {
    width: 49%;
    padding: 10px 0;
    border: 1px solid #9ac7c8;
    border-radius: 20px;
    color: #9ac7c8;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    text-indent: 2px;
}

.footer-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: 1px solid #4d4d4d;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-link-item {
    width: 33.3%;
    text-align: center;
    border-right: 1px solid #4d4d4d;
}

.footer-link-item a {
    color: #4d4d4d;
    font-size: 13px;
    letter-spacing: 2px;
    text-indent: 2px;
}

footer small {
    display: block;
    color: #4d4d4d;
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
    text-indent: 1px;
}

@media screen and (min-width: 600px) {
    .footer-inner {
        width: 85%;
        max-width: 1340px;
        margin: auto;
    }
}

@media screen and (min-width: 768px) {
    footer {
        padding: 40px 25px;
    }
    
    .footer-info {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    
    .footer-links {
        width: 300px;
    }
    
    .footer-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    footer small {
        width: 100%;
        text-align: left;
    }
}

@media screen and (min-width: 960px) {
    .footer-links {
        width: 400px;
    }
}

@media screen and (min-width: 1280px) {
    .footer-info {
        margin-bottom: 50px;
    }
    
    .footer-logo {
        width: 320px;
    }
    
    .footer-address {
        margin-left: 91px;
    }
    
    .footer-contact {
        margin-left: 91px;
    }
    
    .footer-tel img {
        width: 20px;
    }
    
    .footer-tel span {
        font-size: 26px;
    }
    
    .footer-fax {
        margin-left: 26px;
    }
    
    .footer-links {
        width: 500px;
    }
    
    .footer-link-item a {
        font-size: 15px;
    }
    
    footer small {
        padding-left: 91px;
        font-size: 13px;
    }
}


/* コンセプト */

.concept {
    font-size: 18px;
    line-height: 31.5px;
    letter-spacing: 2px;
    text-align: center;
}

.cost {
    margin: 0 5px;
    color: #f7931e;
    font-weight: 500;
    font-size: 40px;
    vertical-align: sub;
}

.cost-zero {
    position: relative;
}

.cost-zero::before {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: -5px;
    width: 13px;
    height: 10px;
    background-image: url(/assets/images/mark_cost-zero.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
}

.cost-150 {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.cost-150-note {
    position: absolute;
    left: 50%;
    bottom: -25px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 215px;
    font-size: 11px;
    letter-spacing: .5px;
}

@media screen and (min-width: 768px) {
    .concept .br-01,
    .concept .br-02 {
        display: none;
    }
}

@media screen and (min-width: 960px) {
    .concept {
        font-size: 22px;
    }
    
    .cost {
        font-size: 50px;
    }
    
    .cost-zero::before {
        width: 18px;
        height: 14px;
    }
    
    .concept .br-03 {
        display: none;
    }
}

@media screen and (min-width: 1280px) {
    .concept {
        font-size: 26px;
        letter-spacing: 4px;
        text-indent: 4px;
    }
    
    .cost {
        font-size: 70px;
    }
    
    .cost-zero::before {
        width: 23px;
        height: 21px;
    }
    
    .cost-150-note {
        bottom: -35px;
    }
}

/* 404エラーページ */

.error-container {
    padding-bottom: 80px;
}

.error-contents .inner {
    max-width: 750px;
}

.error-title-en {
    margin-bottom: 15px;
    color: #555;
    font-weight: bold;
    font-size: 30px;
}

.error-contents {
    margin-bottom: 30px;
}

.error-title-ja {
    margin-bottom: 10px;
    color: #555;
    letter-spacing: 1px;
    line-height: 1.5;
}

.error-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    letter-spacing: 1px;
}

.error-home a {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 10px;
    background-color: #fff;
    color: #9ac7c8;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
    text-indent: 1px;
}

@media screen and (min-width: 960px) {
    .error-title-en {
        margin-bottom: 30px;
        font-size: 50px;
    }
    
    .error-contents {
        margin-bottom: 60px;
    }
    
    .error-title-ja {
        font-size: 20px;
    }
    
    .error-text {
        font-size: 15px;
    }
    
    .error-home a {
        font-size: 24px;
    }
}