@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* ========================================================================== */
/* base -ベース */
/* ========================================================================== */
img {
    width: auto;
    height: auto;
}
html {
    overflow-x: hidden;
    font-size: 62.5%;
    scroll-behavior: smooth;/* なめらかスクロール */
}
body {
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    background: #FFF;
    color: var(--color-black);
    font-family:YakuHanJP,'Noto Sans JP', sans-serif,"ヒラギノ角ゴ Pro W4","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro";
    font-weight: 400;
    font-size: clamp(1.3rem, 1.191rem + 0.55vw, 1.6rem);
    font-display: swap;
    word-break: break-all;
    font-feature-settings: "pkna" 1;
}
section {
    scroll-margin-top: 140px;/* なめらかスクロール */
}
.contents {
    margin-top: 120px;
    min-height: 100vh;
    overflow: hidden;
}
.c-title + * {
    margin-top: 60px;
}
@media screen and (max-width: 1100px) {
    section {
        scroll-margin-top: 30px;
    }
    .contents {
        margin-top: 65px;
    }
    .c-title + * {
        margin-top: 30px;
    }
}
/* ========================================================================== */
/* common style -共通スタイル */
/* ========================================================================== */

/* c-{class_name} … common 共通のスタイル*/
/* o-{class_name} … override 上書きスタイル*/

:root{
    --color-black: #444444;/*基本テキスト*/
    --color-gray: #888888; /*サブテキスト*/
    --color-accent: #FF4453; /*アクセントカラー*/
    --color-base: #F9F6EF; /*ベースカラー*/
    --color-baitai: #E60012; /*媒体*/
}
/*アイコン*/
.icon_16 {
    width: 16px;
    height: auto;
}
.icon_24 {
    width: 24px;
    height: auto;
}
/* ボタン */
.c-btn {
    display: inline-block;
    height: 48px;
    width: 100%;
    max-width: 500px;
    line-height: 48px;
    padding: 0 16px;
    border-radius: 4px;
    background: var(--color-accent);
    color: #FFF;
    text-align: center;
    letter-spacing: .1em;
}
.c-btn.o-btn-l {
    height: 80px;
    line-height: 78px;
    font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
}
@media screen and (max-width: 1100px) {
    .c-btn.o-btn-l {
        min-width: auto;
    }
}
/* もっと見るボタン */
.c-btn__more {
    position: relative;
    display: inline-block;
    min-width: 200px;
    height: 48px;
    padding: 0 32px 0 16px;
    line-height: 44px;
    border: solid 1px #CCCC;
    background: #FFF;
    text-align: center;
    border-radius: 100px;
    letter-spacing: .1em;
}
.c-btn__more::before {
    content: '\f061';
    color: var(--color-accent);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: ease-in-out .3s;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translate(0,-50%);
}
.c-btn__more.o-btn-l {
    height: 80px;
    line-height: 78px;
    font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
}
@media screen and (max-width: 1100px) {
    .c-btn__more.o-btn-l {
        min-width: auto;
    }
}
.c-btn__more.o-outline {
    color: #FFF;
    border: solid 1px #FFF;
    background: none;
}
.c-btn__more.o-outline::before {
    color: #FFF;
}
.c-btn__more.o-fill {
    background-color: var(--color-accent);
    color: #FFF;
}
.c-btn__more.o-fill::before {
    color: #FFF;
}
/*ホバー*/
.c-hover__move_right,
.c-hover__color_accent {
    transition: ease-in-out .3s;
}
.c-hover__move_right:hover::before {
    right: 10px;
    transition: ease-in .3s;
}
.c-hover__color_accent:hover {
    color: var(--color-accent);
    transition: ease-in-out .1s;
}
.c-hover__opacity:hover {
    opacity: .7;
    transition: ease-in-out .1s;
}
/* テキストリンク */
.c-textlink {
    color: var(--color-accent);
}
/* タイトル */
.c-title {
    line-height: 1.1;
}
.c-title .en {
    letter-spacing: .1em;
    font-weight: 600;
    font-size: clamp(1.4rem, 1.4rem + 5.45vw, 6rem);
}
.c-title .ja {
    margin-top: 24px;
    display: block;
    font-size: clamp(1rem, 0.855rem + 0.73vw, 1.4rem);
    letter-spacing: .2em;
}
#news .js-text_color span:nth-child(1){
    color: var(--color-accent);
}
#greeting .js-text_color span:nth-child(2){
    color: var(--color-accent);
}
#company .js-text_color span:nth-child(4){
    color: var(--color-accent);
}
#access .js-text_color span:nth-child(6){
    color: var(--color-accent);
}
#member .js-text_color span:nth-child(1) {
    color: var(--color-accent);
}
#requirement .js-text_color span:nth-child(3) {
    color: var(--color-accent);
}
.c-text-rihgt {
    text-align: right;
}
@media screen and (max-width: 1100px) {
    .c-title .ja {
        margin-top: 16px;
    }
}
/* テーブル */
.c-dl {
    display: flex;
    flex-wrap: wrap;
}
.c-dl dt {
    width: 200px;
    padding: 24px;
    border-bottom: solid 1px #DDD;
    color: #888;
    font-weight: normal;
    letter-spacing: .05em;
}
.c-dl dd {
    padding: 24px 0;
    width: calc(100% - 200px);
    border-bottom: solid 1px #DDD;
}
@media screen and (max-width: 1100px) {
    .c-dl dt{
        width: 100%;
        padding: 24px 0 0 0;
        border-bottom: none;
    }
    .c-dl dt br {
        display: none;
    }
    .c-dl dd {
        width: 100%;
        padding: 12px 0;
    }
}
/* ディスプレイ */
.c-display-sp {
    display: none;
}
@media screen and (max-width: 1100px) {
    .c-display-pc {
        display: none;
    }
    .c-display-sp {
        display: block;
    }
}

/* ========================================================================== */
/* header -ヘッダー */
/* ========================================================================== */
header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #FFF;
    z-index: 100;
}
header .header__body {
    display: flex;
    /*max-width: 1100px;*/
    height: 120px;
    margin: 0 auto;
    padding: 0 30px;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 1100px) {
    header .header__body {
        height: 65px;
        padding: 0 20px;
    }
}
header .header__body .logo {
    width: 200px;
}
header .header__body .logo img {
    width: 100%;
    height: auto;
}
header .header__body .header__nav {
    display: block;
}
header .header__body .header__nav ul {
    display: flex;
    align-items: center;
}
header .header__body .header__nav ul li {
    display: block;
    min-width: 90px;
    text-align: center;
    letter-spacing: .2em;
    font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
}
@media screen and (max-width: 1100px) {
    header .header__body .logo {
        width: 130px;
    }
    header .header__body .header__nav {
        display: none;
    }
}

/* グローバルメニュー */
header .gnav_wrapper {
    display: none;
}
@media screen and (max-width: 1100px) {
    header .gnav_wrapper {
        display: flex;
        align-items: center;
    }
}
/* ハンバーガー */
header .gnav_wrapper .hamburger {
    position: relative;
    cursor: pointer;
    width: 32px;
    height: 45px;
}
header .gnav_wrapper .hamburger span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 3px;
    background: var(--color-accent);
    width: 100%;
    transform: translate(-50%,-50%);
}
header .gnav_wrapper .hamburger span:nth-of-type(1) {
    top: 11px;
}
header .gnav_wrapper .hamburger span:nth-of-type(2) {
    top: 23px;
}
header .gnav_wrapper .hamburger span:nth-of-type(3) {
    top: 35px;
}
/*active*/
header .gnav_wrapper .hamburger.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    width: 70%;
}
header .gnav_wrapper .hamburger.active span:nth-of-type(2) {
    opacity: 0;
}
header .gnav_wrapper .hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    width: 70%;
}
header .gnav_wrapper .hamburger.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    width: 70%;
}
/*メニュー*/
header .gnav_wrapper .gnav {
    display: none;
    position: fixed;
    top: 65px;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #FFF;
    z-index: 200;
}
header .gnav_wrapper .gnav.active {
    animation: SlideUp ease-out .2s forwards;
}
@keyframes SlideUp {
from {
    top: 85px;
    opacity: 0;
}
to {
    top: 65px;
    opacity: 1;
}
}
/**/
header .gnav_wrapper .gnav nav ul {
    width: 100%;
    border-bottom: solid 1px #ddd;
}
header .gnav_wrapper .gnav nav ul li {
    border-top: solid 1px #ddd;
}
header .gnav_wrapper .gnav nav ul li a {
    display: block;
    text-align: center;
    padding: 20px 30px;
    letter-spacing: .2em;
    font-size: clamp(1.2rem, 1.127rem + 0.36vw, 1.4rem);
}
header .gnav_wrapper .gnav nav .c-btn__more {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
}

/* ========================================================================== */
/* footer -フッター */
/* ========================================================================== */
footer {
    background: #FFF;
}
footer .footer__body {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 30px 24px;
    justify-content: space-between;
}
footer .footer__body .footer__logo {
    width: 200px;
}
footer .footer__body .footer__nav {
    text-align: right;
}
footer .footer__body .footer__nav ul {
    display: flex;
}
footer .footer__body .footer__nav ul li {
    padding: 8px;
}
footer .footer__body .footer__nav ul li a {
    vertical-align: middle;
    font-size: clamp(1rem, 0.855rem + 0.73vw, 1.4rem);
}
footer .footer__body .footer__nav small {
    display: block;
    margin-top: 32px;
}
@media screen and (max-width: 1100px) {
    footer .footer__body {
        flex-direction: column;
    }
    footer .footer__body .footer__logo {
        margin: 0 auto;
    }
    footer .footer__body .footer__nav {
        max-width: 600px;
        margin: 24px auto 0;
        text-align: center;
    }
    footer .footer__body .footer__nav ul {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    footer .footer__body .footer__nav ul li {
        padding: 4px;
    }
    footer .footer__body .footer__nav small {
        display: block;
        margin-top: 32px;
    }
}