@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/


/*------------------------------------------------------------------
　header
------------------------------------------------------------------*/

/*  header
------------------------------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: .2s ease-out;
    z-index: 1000;
}
header.scroll{
    background: var(--primary-color);
}
.bottom-page header{
    position: sticky;
    background: var(--primary-color);
}
@media screen and (max-width:575px){
    header{
        height: 48px;
        padding: 0 24px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    position: relative;
    display: block;
    width: 140px;
    z-index: 4;
}
@media screen and (max-width:575px){
    .header-logo{
        width: 100px;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: relative;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 3;
}
.header-hamburger .line{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    transition: .3s ease-out;
    z-index: 1;
}
.header-hamburger .line:nth-of-type(1){
    left: 0;
}
.header-hamburger .line:nth-of-type(2){
    left: 50%;
    transform: translate(-50%,-50%);
    border-color: var(--text-color);
}
.header-hamburger .line:nth-of-type(3){
    right: 0;
}
.header-hamburger.open .line:nth-of-type(1){
    left: 50%;
    transform: translate(-50%,-50%) rotate(225deg);
    width: 24px;
    height: 2px;
    border-radius: 2px;
    border-color: transparent;
    background: var(--text-color);
}
.header-hamburger.open .line:nth-of-type(2){
    opacity: 0;
}
.header-hamburger.open .line:nth-of-type(3){
    right: 50%;
    transform: translate(50%,-50%) rotate(-225deg);
    width: 24px;
    height: 2px;
    border-radius: 1px;
    border-color: transparent;
    background: var(--text-color);
}
@media screen and (max-width:575px){
    .header-hamburger .lines{
        width: 24px;
        height: 16px;
    }
}

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    position: fixed;
    top: 16px;
    right: 16px;
    width: 470px;
    transform: translateX(calc(100% + 16px));
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    border-radius: 10px;
    background: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
    z-index: 2;
}
.header-gnav.open{
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
.header-gnav-inner{
    position: relative;
    padding: 52px 40px 34px;
}
@media screen and (max-width:575px){
    .header-gnav{
        top: 0;
        right: 0;
        transform: translateX(0);
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }
    .header-gnav-inner{
        padding: 68px 0 40px;
    }
}

/*  header-gnav-tel
------------------------------------------------------------------*/
.header-gnav-tel{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 20px;
    margin-bottom: -10px;
}
.header-gnav-tel .bubble{
    position: relative;
    padding: 16px 20px 14px;
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    z-index: 1;
}
.header-gnav-tel .bubble::before{
    position: absolute;
    bottom: 16px;
    right: -12px;
    width: 14px;
    height: 11px;
    border-left: 14px solid #fff;
    border-top: 11px solid transparent;
    content: "";
    z-index: -1;
}
.header-gnav-tel .num{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    padding: 2px 4px;
    border-radius: 12px;
    background: var(--accent-color);
    color: #fff;
    font-family: var(--en-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}
.header-gnav-tel .icon{
    line-height: 1;
}
.header-gnav-tel .text{
    margin-top: 3px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
}
.header-gnav-tel .illust{
    width: 87px;
}

/*  header-gnav-body
------------------------------------------------------------------*/
.header-gnav-body{
    padding: 30px 24px;
    border-radius: 10px;
    background: #fff;
}
@media screen and (max-width:575px){
    .header-gnav-body{
        border-radius: 0;
    }
}

/*  header-gnav-list
------------------------------------------------------------------*/
.header-gnav-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    gap: 16px;
}
/*  header-gnav-list-item
------------------------------------------------------------------*/
.header-gnav-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 4px;
    height: 100%;
    min-height: 80px;
    padding: 10px 5px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    transition: .2s ease-out;
}
.header-gnav-list-item::after{
    position: absolute;
    right: 4px;
    bottom: 4px;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent var(--primary-color) transparent;
    border-radius: 2px;
    content: "";
}
.header-gnav-list-item .icon{
    width: 27px;
    height: 27px;
    line-height: 1;
}
.header-gnav-list-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-gnav-list-item .text{
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.header-gnav-list-item .text.large{
    font-size: 14px;
}
.header-gnav-list-item.line{
    border-color: var(--line-color);
    color: var(--line-color);
}
.header-gnav-list-item.line::after{
    border-color: transparent transparent var(--line-color) transparent;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-list-item:hover{
        background: var(--primary-light-color);
    }
    .header-gnav-list-item.line:hover{
        background: var(--line-light-color);
    }
}
@media (hover:none) {
    .header-gnav-list-item:active{
        background: var(--primary-light-color);
    }
    .header-gnav-list-item.line:active{
        background: var(--line-light-color);
    }
}

/*  header-gnav-support
------------------------------------------------------------------*/
.header-gnav-support{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-top: 16px;
    padding: 20px;
    border-radius: 5px;
    background: var(--primary-color);
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-support::after{
    position: absolute;
    right: 4px;
    bottom: 4px;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent #fff transparent;
    border-radius: 2px;
    content: "";
}
.header-gnav-support .badge{
    flex-shrink: 0;
    width: 77px;
}
.header-gnav-support .caption{
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}
.header-gnav-support .title{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-support:hover{
        background: var(--accent-color);
    }
}
@media (hover:none) {
    .header-gnav-support:active{
        background: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    .header-gnav-body{
        max-width: 390px;
        margin: 0 auto;
    }
}

/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
    cursor: pointer;
    z-index: 1;
}
.header-overlay.open{
    opacity: .4;
    visibility: visible;
}

/*------------------------------------------------------------------
　footer
------------------------------------------------------------------*/

/*  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    background: var(--gray-color);
}

/*  footer-pagetop
------------------------------------------------------------------*/
.footer-pagetop{
    padding-top: 0;
    text-align: center;
    transform: translateY(-24px);
}
.footer-pagetop a{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    row-gap: 12px;
    text-decoration: none;
}
.footer-pagetop img{
    width: 50px;
    height: auto;
    transition: .3s transform ease-out;
}
.footer-pagetop .text{
    color: var(--text-color);
    font-family: var(--en-font);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .05em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-pagetop a:hover img{
        transform: translateY(-6px);
    }
}
@media (hover:none) {
    .footer-pagetop a:active img{
        transform: translateY(-6px);
    }
}

/*  footer-inner
------------------------------------------------------------------*/
.footer-inner{
    padding: 20px 15px 60px;
    text-align: center;
}

/*  footer-sns
------------------------------------------------------------------*/
.footer-sns{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    margin-bottom: 45px;
}
.footer-sns-item{
    display: block;
    width: 32px;
    height: 32px;
    transition: .3s ease-out;
}
.footer-sns-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-sns-item:hover{
        opacity: .6;
    }
}
@media (hover:none) {
    .footer-sns-item:active{
        opacity: .6;
    }
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    width: 219px;
    margin: 0 auto 12px;
}

/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/*  footer-tel
------------------------------------------------------------------*/
.footer-tel{
    margin-bottom: 45px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.footer-tel span::before{
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background: url(../images/icon-phone-line.svg) no-repeat center / contain;
    content: "";
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    max-width: 700px;
    margin: 0 auto;
}
.footer-nav a{
    color: var(--text-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav a:hover{
        text-decoration: underline;
    }
}
@media (hover:none) {
    .footer-nav a:active{
        text-decoration: underline;
    }
}

/*  footer-copyright
------------------------------------------------------------------*/
.footer-copyright{
    padding: 24px 15px;
    background: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
@media screen and (max-width:575px){
    .footer-copyright{
        padding: 15px;
    }
}
/*------------------------------------------------------------------
　page-top（下層ページタイトル）
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 60px 15px 30px;
    background: #fff;
    text-align: center;
}
@media screen and (max-width:575px){
    .page-top{
        padding: 40px 15px 20px;
    }
}

/*  page-top-icon
------------------------------------------------------------------*/
.page-top-icon{
    position: relative;
    width: 40px;
    margin: 0 auto 10px;
    z-index: 2;
}

/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    z-index: 2;
}
@media screen and (max-width:575px){
    .page-top-title{
        font-size: 26px;
    }
}

/*  page-top-cloud
------------------------------------------------------------------*/
.page-top-cloud{
    position: absolute;
    animation: CloudDrift 30s linear infinite;
    z-index: 1;
}
.page-top-cloud.cloud01{
    top: 55px;
    left: calc(50% - 220px);
}
.page-top-cloud.cloud02{
    top: 105px;
    left: calc(50% + 150px);
    animation-duration: 50s;
}
@media screen and (max-width:575px){
    .page-top-cloud.cloud01{
        left: calc(50% - 165px);
    }
    .page-top-cloud.cloud02{
        top: 90px;
        left: calc(50% + 115px);
    }
}
@keyframes CloudDrift {
    from{ transform: translateX(0); }
    to{ transform: translateX(-600px); }
}
/*------------------------------------------------------------------
　bottom-page（下層ページコンテナ）
------------------------------------------------------------------*/
.bottom-page .container{
    max-width: 890px;
}

/*------------------------------------------------------------------
　fixed-piyo
------------------------------------------------------------------*/
.fixed-piyo{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    z-index: 900;
}
.fixed-piyo img{
    max-width: 100%;
    height: auto;
}
@media screen and (max-width:575px){
    .fixed-piyo{
        right: 12px;
        bottom: 12px;
        width: 60px;
        height: 60px;
    }
}
