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

　CSS構成

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

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。
　- animation.css       汎用アニメーションを利用するためのCSS。基本触らなくてもOK。

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

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

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


/*------------------------------------------------------------------
  header
------------------------------------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    column-gap: 30px;
    padding: 0 40px;
    background: #38B6FF;
    transform: translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 1000;
}
header.js-animated {
    transform: translateY(0);
}
@media screen and (max-width:1199px){
    header{
        padding: 0 20px;
    }
}
@media screen and (max-width:991px){
    header{
        padding: 0 0 0 10px;
    }
}

/*  header-logo
------------------------------------------------------------------*/
.header-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 280px;
    margin-right: auto;
}
@media screen and (max-width:991px){
    .header-logo{
        width: 180px;
    }
}
/*  header-nav-wrapper
------------------------------------------------------------------*/
.header-nav-wrapper{
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}
@media screen and (max-width:991px){
    .header-nav-wrapper{
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;    
        padding: 60px 0 100px;
        background: #000;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        transition: .5s ease;
        z-index: 3;
    }
    .header-nav-wrapper.open{
        transform: translateX(-100%);
        visibility: visible;
        opacity: 1;
    }
    .header-nav-wrapper::-webkit-scrollbar{
        display: none;
    }
}
@media screen and (max-width:575px){
    .header-nav-wrapper{
        max-width: initial;
    }
}
/*  header-nav
------------------------------------------------------------------*/
.header-nav{
    display: flex;
    column-gap: 40px;
}
@media screen and (max-width:1199px){
    .header-nav{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .header-nav{
        display: block;
    }
}
/*  header-nav-item
------------------------------------------------------------------*/
.header-nav-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 80px;
    font-size: 1.125rem;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
.header-nav-item.active{
    color: var(--accent-color);
}
@media (hover:hover) {
    .header-nav-item:hover{
    color: var(--accent-color);
    }
}
@media screen and (max-width:1199px){
    .header-nav-item{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .header-nav-item{
        position: relative;
        display: block;
        height: auto;
        padding: 1em;
        border-bottom: 1px solid #555;
    }
    .header-nav-item::after{
        position: absolute;
        top: 50%;
        right: 1em;
        transform: translateY(-50%);
        content: '\e910';
        font-family: "design_plus";
        font-size: 10px;
    }
}

/*  header-hamburger
------------------------------------------------------------------*/
.header-hamburger{
    display: none;
}
@media screen and (max-width:991px){
    .header-hamburger{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        aspect-ratio: 1 / 1;
        transition: .2s ease-out;
        cursor: pointer;
        z-index: 4;
    }
    .header-hamburger .lines {
        position: relative;
        width: 24px;
        height: 14px;
    }
    .header-hamburger .lines .line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: .2s ease-out;
    }
    .header-hamburger .lines .line#line1 {
        top: 0;
    }
    .header-hamburger .lines .line#line2 {
        top: calc(50% - 1px);
    }
    .header-hamburger .lines .line#line3 {
        bottom: 0;
    }
    /* オープン時動作 */
    .header-hamburger.open .lines .line#line1 {
        transform: rotate(-135deg);
        top: 6px !important;
    }
    .header-hamburger.open .lines .line#line2 {
        opacity: 0;
    }
    .header-hamburger.open .lines .line#line3 {
        transform: rotate(135deg);
        top: 6px !important;
    }
    
}

/*  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;
}


/*------------------------------------------------------------------
  common-links
------------------------------------------------------------------*/

/*  common-links
------------------------------------------------------------------*/
.common-links {
	display: grid;
    grid-template-columns: repeat(2,1fr);
	border-top: 1px solid #ddd;
}
@media screen and (max-width:1199px){
    .common-links {
        grid-template-columns: 1fr;
    }
}
/*  common-links-item
------------------------------------------------------------------*/
.common-links-item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
    height: 320px;
	padding: 0 120px;
    overflow: hidden;
	border-right: 1px solid #ddd;
    z-index: 1;
}
.common-links-item:last-of-type {
	border-right: initial;
}
.common-links-item .content {
    position: relative;
	z-index: 3;
}
.common-links-item .title {
    display: flex;
    align-items: center;
    column-gap: 20px;
    line-height: 1;
}
.common-links-item .title .label {
    font-size: 3.125rem;
    font-weight: bold;
}
.common-links-item .title .arrow {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
}
.common-links-item .title .arrow:before,
.common-links-item .title .arrow:after {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	display: block;
	width: 100%;
	content: '\e94f';
	font-family: 'design_plus';
	font-size: 10px;
	color: #fff;
    line-height: 1;
	text-align: center;
	z-index: 2;
}
.common-links-item .title .arrow:after {
	transform: translate3d(-10%, -50%, 0);
	opacity: 0;
}
.common-links-item .subtitle {
    margin-top: .5em;
	font-size: 1.125rem;
    color: var(--primary-color);
}
.common-links-item .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    opacity: 0;
	z-index: 1;
	overflow: hidden;
    transition: 0.5s ease;
}
.common-links-item .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media(hover: hover) {
	.common-links-item:hover .title,
	.common-links-item:hover .subtitle{
        color: #fff;
    }
	.common-links-item:hover .arrow{
        background: #fff;
    }
	.common-links-item:hover .arrow:before {
        color: var(--primary-color);
		animation: arrow_animation1 0.3s ease forwards;
	}
	.common-links-item:hover .arrow:after {
        color: var(--primary-color);
		animation: arrow_animation2 0.3s ease forwards 0.2s;
	}
	.common-links-item:hover .image {
		opacity: 1;
        transform: scale(1.1);
	}
}
@keyframes arrow_animation1 {
	0% {
		transform: translate3d(0%, -50%, 0);
		opacity: 1;
	}
	70% {
		opacity: 0;
	}
	100% {
		transform: translate3d(20%, -50%, 0);
		opacity: 0;
	}
}
@keyframes arrow_animation2 {
	0% {
		transform: translate3d(-10%, -50%, 0);
		opacity: 0;
	}
	100% {
		transform: translate3d(0%, -50%, 0);
		opacity: 1;
	}
}
@media screen and (max-width:1199px){
    .common-links-item {
        height: 260px;
        padding: 0 60px;
    }
}
@media screen and (max-width:991px){
    .common-links-item {
        border-right: initial;
    }
    .common-links-item:last-of-type {
        border-top: 1px solid #ddd;
    }
}
@media screen and (max-width:767px){
    .common-links-item{
        height: 150px;
        padding: 0 30px;
    }
    .common-links-item .title .label{
        font-size: 1.875rem;
    }
    .common-links-item .subtitle {
        font-size: 1rem;
    }
    .common-links-item .title{
        column-gap: 12px;
    }
    .common-links-item .title .arrow {
        width: 40px;
        height: 40px;
    }
    .common-links-item .title .arrow:before,
    .common-links-item .title .arrow:after{
        font-size: 8px;
    }
}


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

/*  footer-top
------------------------------------------------------------------*/
.footer-top {
	padding: 100px 0;
	border-top: 1px solid #ddd;
}
@media screen and (max-width:767px){
    .footer-top {
        padding:50px 0;
    }
}

/*  footer-bottom
------------------------------------------------------------------*/
.footer-bottom {
	border-top: 1px solid #ddd;
    padding: 20px 0;
}

/*  footer-nav
------------------------------------------------------------------*/
.footer-nav{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 10px;
}
@media screen and (max-width:767px){
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 5px;
    }
}

/*  footer-nav-item
------------------------------------------------------------------*/
.footer-nav-item{
    line-height: 1;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .footer-nav-item:hover{
        color: var(--primary-color);
    }
}
@media screen and (max-width:767px){
    .footer-nav-item {
        position: relative;
        display: block;
        padding: 1em;
        background: #e0e0e0;
        font-size: .75rem;
        z-index: 1;
    }
    .footer-nav-item::after{
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        content: '\e910';
        font-family: 'design_plus';
        font-size: 10px;
    }
}


/* コピーライト */
#copyright {
    padding: 20px 0;
    background: var(--primary-color);
	font-size: 14px;
	color: #fff;
}
@media screen and (max-width:767px){
    #copyright{
        text-align: center;
    }
}



/*-----------------------------------------------------------------
  common page
------------------------------------------------------------------*/

/*  page-top
------------------------------------------------------------------*/
.page-top{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .page-top{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .page-top{
        padding: 80px 0;
    }
}

/*------------------------------------------------------------------
  breadcrumb
------------------------------------------------------------------*/

/*  breadcrumb-wrapper
------------------------------------------------------------------*/
.breadcrumb-wrapper{
    padding-top: 60px;
}
@media screen and (max-width:767px){
    .breadcrumb-wrapper{
        padding-top: 20px;
    }
}

/*  breadcrumb
------------------------------------------------------------------*/
.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    font-size: 12px;
    line-height: 1.5;
}
.breadcrumb > li{
    color: #999;
}
.breadcrumb > li + li::before{
    display: inline-block;
    margin-right: 10px;
    content: '\e910';
    font-family: 'design_plus';
    font-weight: bold;
}
.breadcrumb > li > a{
    color: var(--primary-color);
    transition: .2s;
    text-decoration: underline;
}
.breadcrumb > li > a:hover{
    color: var(--accent-color);
}
@media screen and (max-width:767px){
    .breadcrumb{
        font-size: 11px;
    }
}



/*------------------------------------------------------------------
  paging
------------------------------------------------------------------*/
.paging{
    display: flex;
    justify-content: center;
    column-gap: 10px;
}
.paging-text{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #aaa;
    border-radius: 50%;
    color: #898989;
    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 !important;
    pointer-events: none;
}
/* ホバー時動作 */
@media (hover:hover) {
    .paging-text:hover{
        background:  var(--primary-color);
        border-color: 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;
    }
}