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

　CSS構成

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

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

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

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

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


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

/*  header
------------------------------------------------------------------*/
header{
    position: relative;
    z-index: 1000;
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    position: absolute;
    top: 16px;
    left: 20px;
    display: block;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .header-logo{
        top: 6px;
        left: 10px;
        width: 200px;
    }
}
/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    border: 1px solid #8dccc9;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 4;
}
.header-hamburger .text {
    font-family: var(--en-font);
    font-size: .75rem;
    text-align: center;
    line-height: 1;
}
.header-hamburger .lines {
    position: relative;
    width: calc(100% * .416);
    height: calc(100% * .28);
}
.header-hamburger .lines .line {
    position: absolute;
    left: 0;
    height: 2px;
    background: #fff;
    transition: .2s ease-out;
}
.header-hamburger .lines .line#line1 {
    top: 0;
    width: 100%;
}
.header-hamburger .lines .line#line2 {
    top: calc(50% - 1px);
    width: 100%;
}
.header-hamburger .lines .line#line3 {
    bottom: 0;
    width: 100%;
}
/* オープン時動作 */
.header-hamburger.open .lines .line#line1 {
    transform: rotate(-135deg);
    top: 50% !important;
}
.header-hamburger.open .lines .line#line2 {
    opacity: 0;
}
.header-hamburger.open .lines .line#line3 {
    transform: rotate(135deg);
    top: 50% !important;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-hamburger:hover .lines .line#line2,
    .header-hamburger:hover .lines .line#line3{
        width: 100%;
    }
}
@media (hover:none) {
    .header-hamburger:active{
        background: var(--sub-color);
    }
}
@media screen and (max-width:1199px){
    .header-hamburger{
        top: 10px;
        right: 10px;
        width: 52px;
    }
}
@media print {
    .header-hamburger{
        position: absolute;
    }
}

/*  header-gnav
------------------------------------------------------------------*/
.header-gnav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    padding: 110px 0;
    background: var(--primary-color);
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: .2s ease-out;
    z-index: 3;
}
.header-gnav.open{
    transform: translateX(-100%);
    visibility: visible;
    opacity: 1;
}
.header-gnav::-webkit-scrollbar{
    display: none;
}
@media screen and (max-width:1199px){
    .header-gnav{
        padding: 90px 0;
    }
}
@media screen and (max-width:991px){
    .header-gnav{
        padding: 80px 0 120px;
    }
}

/*  header-gnav-logo
------------------------------------------------------------------*/
.header-gnav-logo{
    display: block;
    padding: 0 10px;
    margin-bottom: 10px;
    text-align: center;
}

/*  header-gnav-list
------------------------------------------------------------------*/
.header-gnav-list{
    margin-bottom: 20px;
    line-height: 1.2;
}

/*  header-gnav-item
------------------------------------------------------------------*/
.header-gnav-item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 8px;
    width: 100%;
    height: 4em;
    padding: 0 2.5em 0 1em;
    border-bottom: 1px solid #8dccc9;
    font-size: .875rem;
    color: #fff;
    transition: .2s ease-out;
    z-index: 1;
}
.header-gnav-item::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: .8em;
    font-weight: bold;
    transition: .2s right ease-out;
}
.header-gnav-item small{
    display: block;
}
/* アクティブ時動作 */
.header-gnav-item.active{
    color: var(--accent-color);
}
.header-gnav-item.active::after{
    right: .5em;
}
/* ホバー時動作 */
@media (hover:hover) {
    .header-gnav-item:hover{
        color: var(--accent-color);
    }
    .header-gnav-item:hover::after{
        right: .5em;
    }
}
@media (hover:none) {
    .header-gnav-item:active{
        color: var(--accent-color);
    }
    .header-gnav-item:active::after{
        right: .5em;
    }
}
/*  header-overlay
------------------------------------------------------------------*/
.header-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    z-index: 2;
}
.header-overlay.open{
    opacity: 1;
    visibility: visible;
}


/*------------------------------------------------------------------
  footer
------------------------------------------------------------------*/
footer{
    position: relative;
    padding: 80px 0 30px;
    background: #25999a;
    z-index: 1;
}
@media screen and (max-width:767px){
    footer{
        padding: 60px 0 30px;
    }
}

/*  footer-inner
------------------------------------------------------------------*/
.footer-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
    margin-bottom: 120px;
}
@media screen and (max-width:991px){
    .footer-inner{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        row-gap: 40px;
        margin-bottom: 60px;
    }
}

/*  footer-detail
------------------------------------------------------------------*/
.footer-detail{
    flex-shrink: 0;
}

/*  footer-logo
------------------------------------------------------------------*/
.footer-logo{
    display: block;
    width: fit-content;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1;
}

/*  footer-address
------------------------------------------------------------------*/
.footer-address{
    margin-bottom: 40px;
}
.footer-address:last-of-type{
    margin-bottom: 0;
}
.footer-address .title{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #c3e7e8;
    font-size: 1.125rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.footer-address .address{
    margin-bottom: 10px;
    font-size: .875rem;
    color: #fff;
    line-height: 1.5;
}
.footer-address .tel{
    font-size: .875rem;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .footer-address{
        font-size: .8125rem;
    }
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{}

/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    position: relative;
    display: block;
    padding: 1.25em 2.5em 1.25em 0;
    border-bottom: 1px solid #c3e7e8;
    font-size: .875rem;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
}
.footer-nav-item::after{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: .5em;
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--accent-color);
        border-color: var(--accent-color);
    }
    .footer-nav-item:hover::after{
        right: 0;
    }
}
@media (hover:none) {
    .footer-nav-item:active{
        color: var(--accent-color);
        border-color: var(--accent-color);
    }
    .footer-nav-item:active::after{
        right: 0;
    }
}

/*  copyright
------------------------------------------------------------------*/
.copyright{
    font-size: 12px;
    color: #fff;
    line-height: 1;
}


/*------------------------------------------------------------------
  page-top
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 120px 20px 100px;
    overflow: hidden;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:1199px){
    .page-top{
        padding: 100px 20px 80px;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 80px 20px 60px;
    }
}
/*  page-top-caption
------------------------------------------------------------------*/
.page-top-caption{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .page-top-caption{ font-size: 1.125rem;}
}
@media screen and (max-width:767px){
    .page-top-caption{ font-size: 1rem;}
}
@media screen and (max-width:575px){
    .page-top-caption{ font-size: .875rem;}
}
/*  page-top-title
------------------------------------------------------------------*/
.page-top-title{
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .page-top-title{ font-size: 2.5rem;}
}
@media screen and (max-width:767px){
    .page-top-title{ font-size: 2.25rem;}
}
@media screen and (max-width:575px){
    .page-top-title{ font-size: 2rem;}
}


/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    padding: 0 6vw;
    font-size: 12px;
    line-height: 1.5;
    z-index: 1;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--primary-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}


/*------------------------------------------------------------------
  sitelinks
------------------------------------------------------------------*/

/*  sitelinks
------------------------------------------------------------------*/
.sitelinks{
    position: relative;
    padding: 100px 0;
    background: url(../images/common/sitelinks-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width: 991px){
    .sitelinks{ padding: 80px 0; }
}
@media screen and (max-width:767px){
    .sitelinks{ padding: 60px 0; }
}

/*  sitelinks-list
------------------------------------------------------------------*/
.sitelinks-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media screen and (max-width:1199px){
    .sitelinks-list{
        gap: 10px;
    }
}
@media screen and (max-width:767px){
    .sitelinks-list{
        grid-template-columns: 1fr;
    }
}
/*  sitelinks-list-item
------------------------------------------------------------------*/
.sitelinks-list-item{
    display: flex;
    align-items: center;
    column-gap: 1em;
    height: 100%;
    padding: .75em 1em;
    background: #fff;
    border-radius: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
    transition: .2s ease-out;
}
.sitelinks-list-item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}
.sitelinks-list-item .icon img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sitelinks-list-item .text{
    flex: 1;
}
.sitelinks-list-item::after{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .sitelinks-list-item:hover{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .sitelinks-list-item:hover::after{
        transform: scale(.9);
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {
    .sitelinks-list-item:active{
        background: var(--primary-light-color);
        color: var(--primary-color);
    }
    .sitelinks-list-item:active::after{
        transform: scale(.9);
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:1199px){
    .sitelinks-list-item{
        font-size: 1.125rem;
    }
    .sitelinks-list-item .icon{
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width:991px){
    .sitelinks-list-item{
        font-size: 1rem;
    }
    .sitelinks-list-item .icon{
        width: 48px;
        height: 48px;
    }
    .sitelinks-list-item::after{
        width: 32px;
        font-size: 10px;
    }
}


/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ccc;
    transition: .2s ease-out;
}
.paging-text a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    transition: .2s ease-out;
}
.paging-text.current{
    background:  var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--primary-color);
    }
    .paging-text:hover a{
        color: #fff !important;
    }
}
@media screen and (max-width:767px){
    .paging{
        column-gap: 5px;
    }
    .paging-text{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/*------------------------------------------------------------------
  pagetop-btn
------------------------------------------------------------------*/
#pagetop-btn {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 100;
}
#pagetop-btn img:hover {
    animation: rotates 0.7s linear infinite;
}
@keyframes rotates {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 575px) {
    #pagetop-btn{
        width: 40px;
    }
}
