@charset "UTF-8";


.br-sp {
    display: block;
}

.br-pc {
    display: none;
}

@media (min-width: 768px) {
    .br-sp {
        display: none;
    }

    .br-pc {
        display: block;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: transparent;
    font-size: 62.5%;
}

body {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    height: 100%;
    position: relative;
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    /* font-family: 'Times New Roman', 'Baskerville', 'Yu Mincho Medium', 'YuMincho', 'Hiragino Mincho ProN', Meiryo, sans-serif; */
    /* font-family: 'ten-mincho', 'Times New Roman', 'Baskerville', 'Yu Mincho Medium', 'YuMincho', 'Hiragino Mincho ProN', Meiryo, sans-serif; */
    /* font-family: 'Yu Mincho Medium', 'YuMincho', 'Times New Roman', 'Baskerville', 'Hiragino Mincho ProN', Meiryo, sans-serif; */

}


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

#page {
    overflow: hidden;
    position: relative;
}

/*------------------- font -----------*/

img {
    width: 100%;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: #606060;
}

a:hover,
a:active,
a:focus {
    outline: none;
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
    color: #000;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

/*---------------- animate-box --------*/

.animate-box {
    opacity: 0;
}


/*---------------- top-image --------*/

.top-image {
    height: 375px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .top-image {
        height: 350px;
    }
}

@media screen and (min-width: 1024px) {
    .top-image {
        height: 400px;
    }
}

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

.headers {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
    height: 4.5rem;
    background-color: rgba(255, 255, 255, 0.98);
}

.headers.-on {
    background-color: rgba(255, 255, 255, 0.98);
}


@media screen and (min-width: 768px) {
    .headers {
        padding: 2rem 6rem 2rem 2rem;
        height: 9rem;
    }
}

.header-inner {
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media screen and (min-width:2000px) {
    .header-inner {
        max-width: 1400px;
    }

}

.logo-position {
    margin-right: auto;
}

.logo {
    text-align: center;
    line-height: 1em;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 20rem;
    margin-left: 1rem;
}

.logo:hover {
    opacity: .5;
}

@media screen and (min-width: 768px) {
    .logo {
        width: 33rem;
    }
}

@media screen and (min-width: 1024px) {
    .logo {
        width: 37rem;
    }
}

/*--------------- toggle ---------------------*/

#toggle {
    display: block;
    color: #fff;
    text-align: center;
    width: 55px;
    height: 55px;
    padding: 10px;
    position: fixed;
    top: -0.5rem;
    right: 0;
    z-index: 99999 !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* border: 1px solid #fff; */
    /* border-radius: 50%; */
    cursor: pointer;
    /* box-shadow: 0px 0px 2px 0px grey; */
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 768px) {
    #toggle {
        width: 67px;
        height: 67px;
        top: 2rem;
    }
}

@media (min-width: 1024px) {
    #toggle {
        width: 67px;
        height: 67px;
    }
}

/* ===============================
   ハンバーガーメニュー本体
=============================== */
#toggle {
    position: fixed;
    top: -0.5rem;
    right: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999 !important;
    transition: all 0.3s;
}

.trigger,
.trigger span {
    display: inline-block;
    transition: all 0.4s;
}

.trigger {
    position: relative;
    width: 25px;
    height: 20px;
}

.trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
}

.trigger span:nth-of-type(1) {
    top: 2px;
}

.trigger span:nth-of-type(2) {
    top: 9px;
}

.trigger span:nth-of-type(3) {
    bottom: 2px;
}

.trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
}

.trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===============================
   メニューラップ
=============================== */
.toggleWrap {
    position: fixed;
    background: #67747C;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
    /* overflow-y: auto; */
    overflow: auto;
    padding: 6rem 2rem 2rem;
    padding-bottom: 120px;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
}

.toggleWrap.open {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    display: block;
    visibility: inherit;
    opacity: 1;
    z-index: 1000;
    background-color: #67747C;
}

/* ------------------- toggleWrap ---------------- */

@media (min-width: 768px) {
    .toggleWrap {
        width: 30%;
    }

}

/* ===============================
   メニュー内容
=============================== */
.mainNav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainNav li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navItem {
    display: inline-block;
    width: calc(100% - 40px);
    color: #fff;
    text-decoration: none;
    padding: 1.6rem 0;
    font-size: 2rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.navItem:hover {
    opacity: 0.7;
}

/* ===============================
   ＋／− ボタン（SP専用）
=============================== */
.subToggle {
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 40px;
    height: 40px;
    /* 高さを固定 */
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: all;
}

/* ＋マークの横棒・縦棒を作る */
.subToggle::before,
.subToggle::after {
    content: "";
    display: block;
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: #fff;
    transition: all 0.25s ease;
    transform-origin: center center;
}

/* 横棒 */
.subToggle::before {
    transform: rotate(0deg);
}

/* 縦棒 */
.subToggle::after {
    transform: rotate(90deg);
}

/* 開いたとき（−）→縦棒を縮小 */
.has-sub.open>.subToggle::after {
    transform: rotate(90deg) scaleY(0);
    opacity: 0;
}


/* ===============================
   サブメニュー
=============================== */
.subNav {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 1rem 1.6rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        opacity 0.6s ease;
    padding-left: 1.6rem;
    will-change: max-height, opacity;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.5s ease;
    padding-left: 1.6rem;
}

.subNav.open {
    max-height: 1000px;
    opacity: 1;
}

.has-sub.open>.subNav {
    display: block;
}


.subNav li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 0;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.subNav li a:hover {
    opacity: 1;
}

/* =====================================
   ハンバーガー開閉時の hover 固定防止
===================================== */



/* 開いてる時は hover を無効化して常に100％見せる */
#toggle.active,
#toggle.active:hover,
.trigger.active,
.trigger.active:hover {
    opacity: 1 !important;
    pointer-events: auto !important;
    /* ← hoverイベントの干渉を抑制 */
}

/* ✕線の色を固定（hover関係なし） */
.trigger.active span {
    background-color: #fff !important;
    opacity: 1 !important;
}

/* ===============================
   PC時サブメニュー最終安定版（あなたの構造専用）
=============================== */
@media (min-width: 1024px) {
    .has-sub {
        position: relative;
    }

    .subNav {
        all: unset;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 200px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(5px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 9999;
    }

    .has-sub:hover {
        /* border-bottom: 1px solid #000; */
    }

    .has-sub:hover>.subNav {
        display: block;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .subNav li a {
        color: #000;
        display: block;
        padding: 10px 20px;
        font-size: 1.4rem;
        transition: background 0.3s ease;
    }

    .subNav li a:hover {}

    /* ＋ボタンはPCでは不要 */
    .subToggle {
        display: none !important;
    }
}

/* ===============================
   PC時ハンバーガー強制非表示（最終優先）
=============================== */
@media screen and (min-width: 1024px) {
    #toggle {
        display: none !important;
    }

    .toggleWrap {
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        z-index: auto !important;
        background: transparent !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .toggleWrap.open {
        background: transparent !important;
    }

    .mainNav {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        gap: 50px;
        padding: 0;
        margin: 0;
        list-style: none;
        height: 11rem;
    }
}

/* ===============================
   PC時メニュー再表示（toggleWrapリセット）
=============================== */
@media screen and (min-width: 1024px) {
    #toggle {
        display: none !important;
    }

    .toggleWrap {
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        z-index: auto !important;
        background: transparent !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .toggleWrap.open {
        background: transparent !important;
    }

    .toggleWrap-contents {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        padding-top: 0 !important;
    }

    .mainNav {
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        gap: 50px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mainNav li {
        border: none;
    }

    .navItem {
        color: #000 !important;
        font-size: 1.4rem;
        padding: 0 !important;
    }

    /* サブメニュー hover時 */
    .has-sub {
        position: relative;
    }

    .subNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 200px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(5px);
        transition: opacity 0.25s ease, transform 0.25s ease;
        z-index: 9999;
    }

    .has-sub:hover>.subNav {
        display: block;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .subNav li a {
        color: #000;
        padding: 10px 20px;
        font-size: 1.4rem;
        display: inline-block;
    }

    .subNav li a:hover {
        opacity: .5;
        /* border-bottom: 1px solid #000; */
    }

    .subToggle {
        display: none !important;
    }
}

#toggle:hover {
    opacity: .35;
}

#toggle.toggle-on {
    border: 1px solid #fff;
    background-color: transparent;
    top: 1rem;
}

#toggle.toggle-on:hover {
    opacity: .65;
}

.trigger,
.trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.trigger {
    position: relative;
    width: 25px;
    height: 20px;
    top: 0px;
}

.trigger.active {
    position: relative;
    width: 25px;
    height: 20px;
    top: -1px;
    left: 0;
}

.trigger span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    border-radius: 4px;
}

.trigger .triger-title {
    position: absolute;
    left: 3px;
    width: 100%;
    top: 20px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.trigger.active .triger-title {
    display: none;
}

.trigger span:nth-of-type(1) {
    top: 2px;
    /* box-shadow: 0px 1px 1px 0px grey; */
}

.trigger span:nth-of-type(2) {
    top: 9px;
    width: 100%;
    /* box-shadow: 0px 1px 1px 0px grey; */
}

.trigger span:nth-of-type(2)::after {
    position: absolute;
    top: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 0;
}

.trigger span:nth-of-type(3) {
    bottom: 2px;
    right: 0;
    width: 100%;
    /* box-shadow: 0px 1px 1px 0px grey; */
}

.trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) scale(0);
    transform: translateY(8px) scale(0);
    opacity: 0;
    box-shadow: none;
}

.trigger.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
    width: 100%;
    background-color: #fff;
    box-shadow: none;
}

.trigger.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1;
    background-color: #fff;
    box-shadow: none;
}

.trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) scale(0);
    transform: translateY(-8px) scale(0);
    opacity: 0;
    box-shadow: none;
    display: none;
}

.menu-trigger::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: all .1s;
    opacity: 0;
}

.menu-trigger.active::after {
    /* -webkit-animation: circle .5s;
    animation: circle .5s; */
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: scale(.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(3.5);
        opacity: 0;
    }
}

@keyframes circle {
    0% {
        transform: scale(.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}




.toggleWrap-contents {
    padding: 20px 20px 0 20px;
}

.menu-list-rule-position {
    padding: 0px 20px 0 20px;
}

@media (min-width: 768px) {
    .toggleWrap-contents {
        padding: 0;
        padding-top: 6.5rem;
        display: flex;
        width: 100%;
        max-width: 980px;
        margin: 0 auto;
        position: relative;
        justify-content: center;
    }

    .menu-list-rule-position {
        position: relative;
        padding: 0;
        width: 90%;
        max-width: 980px;
        margin: 100px auto;
    }
}


.mainNav {
    padding: 0;
    list-style-type: none;
}

.menu-logo {
    margin: 43px 0 0 20px;
}

.menu-logo img {
    width: 167px;
}

@media (min-width: 768px) {
    .menu-logo {
        width: 235px;
        position: relative;
        margin: 63px 0 0 10%;
    }

    .menu-logo img {
        width: 235px;
    }
}

.menu-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #969285;
}

.menu-footer .copyright {
    background-color: inherit;
}

.navItem {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    font-size: 25px;
    line-height: 1.2em;
    letter-spacing: 0.1em;
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media (min-width: 768px) {
    .navItem {
        font-size: 30px;
    }
}

/* -------------------------
   PC時：SPメニューを展開表示
-------------------------- */
@media screen and (min-width: 1024px) {

    /* ハンバーガー非表示 */
    #toggle {
        display: none;
    }

    /* メニューラッパーを常時表示・背景透明 */
    .toggleWrap {
        visibility: visible;
        opacity: 1;
        position: static;
        width: auto;
        height: auto;
        z-index: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
    }

    /* 背景色や位置指定解除 */
    .toggleWrap.open {
        background: transparent;
    }

    /* ナビリストを横並びに */
    .toggleWrap-contents {
        padding: 0;
    }

    .mainNav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 50px;
        padding: 0;
        margin: 0;
        list-style: none;
        height: 5rem;
    }

    .mainNav li {
        border: none;
    }

    .navItem {
        color: #000;
        /* ← 背景が白系なら黒文字 */
        font-size: 14px;
        line-height: 1;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .navItem:hover {
        opacity: 0.6;
    }

    .nav-sub {
        display: none;
        /* PCではサブ（日本語ラベル）を非表示にしてもOK */
    }
}


.mainNav .navItem:hover {
    opacity: .5;
}

.nav-sub {
    font-size: 12px;
    font-weight: bold;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

@media (min-width: 768px) {
    .nav-sub {
        font-size: 14px;
    }
}

/* .open {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}  */

/* .open {
    opacity: .8;
    visibility: inherit;
    overflow: inherit;
} */


/* .hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
} */


/* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
  iOS safariには別途対応が必要（jQueryに記述）*/

.no-scroll {
    overflow: hidden;
}


/* アニメーションはメニューの開閉時のみでいいので
  .toggleWrapに書かず、別にclassを用意 */

.animation {
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

#wrapper {
    /*    margin-top: -100px;*/
    position: fixed;
    width: 100%;
    z-index: -1;
}

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

.footer {
    padding: 0.5rem 0;
    width: 100%;
    background-color: #000;
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 0.5rem 0;
    }
}

/* ヘッダー全体 */
.footer-site-header {
    color: #fff;
    padding: 3rem 4rem;
}

/* 横並び */
.footer-header-inner {
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .footer-header-inner {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        gap: 6rem;
    }
}

/* ロゴ部分 */
.footer-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
    .footer-header-logo {
        margin-bottom: 0;
    }
}

.footer-header-logo img {
    width: 25.2rem;
    height: auto;
}

.footer-logo-text {
    font-size: 20px;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.footer-header-logo-anker {
    transition: all .3s;
}

.footer-header-logo-anker:hover {
    opacity: .5;
}

/* ナビゲーション */
.footer-header-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .footer-header-nav ul {
        display: flex;
        flex-direction: row;
        gap: 40px;
    }
}

.footer-header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.footer-header-nav a:hover {
    opacity: 0.6;
}

/*---------------- copyright --------*/

.copyright-position {
    width: 90%;
    margin: 0 auto;
}

.copyright-position-item {
    width: 90%;
    margin: 0 auto;
    max-width: 1100px;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .copyright-position-item {
        text-align: right;
    }
}

.section-inner-anker {
    margin-top: -80px;
    padding-top: 80px;
}

.section-inner-anker-about {
    margin-top: -220px;
    padding-top: 220px;
}

/*--------------------- #newsList ---------------*/

#newsList {
    height: 100%;
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#newsList li {
    /* margin-bottom: 55px; */
}

#newsList li span {
    display: block;
}

#newsList li span.catNametitle {
    color: #606060;
    font-weight: 600;
}

.catNametitle {
    -webkit-transition: all .3s;
    transition: all .3s;
}

.cell-category-position {
    position: absolute;
    width: 100%;
    top: 34%;
    left: 25px;
}

span.catName {
    font-size: 26px;
    line-height: 1em;
}

@media (min-width: 1024px) {
    span.catName {
        font-size: 36px;
    }
}

span.catName-sub {
    font-weight: bold;
    font-size: 14px;
    line-height: 1em;
    margin-top: 5px;
}

@media (min-width: 1024px) {
    span.catName-sub {
        font-size: 20px;
    }
}

span.catName-sub:before {
    content: "";
    display: inline-block;
    width: 20.3%;
    height: 1px;
    background-color: #fff;
    margin-right: 10px;
    position: relative;
    top: -6px;
    left: 0px;
}

span.catName-sub.saiyou:before {
    width: 13%;
}

@media (min-width: 768px) {
    span.catName-sub:before {
        width: 17.3%;
    }

    span.catName-sub.saiyou:before {
        width: 15%;
    }

}

@media (min-width: 768px) {
    span.catName-sub:before {
        width: 17.3%;
    }

    span.catName-sub.saiyou:before {
        width: 12%;
    }

}

/* ---------- btn ------------------*/

.btn {
    display: inline-block;
    width: 230px;
    height: 53px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    line-height: 42px;
    font-size: 12px;
    outline: none;
    letter-spacing: 0.15em;
    line-height: 53px;
}

@media screen and (min-width: 768px) {
    .btn {
        width: 160px;
        height: 53px;
    }
}

.btn:before,
.btn:after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}

.btn,
.btn:before,
.btn:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn {
    background-color: #606060;
    border: 2px solid #606060;
    color: #fff;
    /*	line-height: 50px;*/
}

.btn:hover {
    background-color: #fff;
    border-color: #606060;
    color: #606060;
    border: 2px solid #606060;
}

.btn-text {
    /*    margin-top: 100px;*/
    text-align: center;
}

.btn-about {
    background-color: #606060;
    border: 2px solid #606060;
    color: #fff;
}

.btn-about:hover {
    background-color: #fff;
    color: #606060;
}

@media screen and (min-width: 768px) {
    .btn-text.company {}

    .btn-company {
        width: 210px;
        height: 50px;
        line-height: 47px;
    }
}


.section-about-concept-title-position {
    margin: 0 0 45px 0;
}

@media (min-width: 768px) {
    .section-about-concept-title-position {
        margin: 0 0 80px 0;
    }
}

.our-news-link-position {
    margin-top: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0px auto 0;
}

@media (min-width: 768px) {
    .our-news-link-position {
        margin-top: 30px;
    }
}

.our-news-link-position>p {
    text-align: right;
    margin-right: 10px;
}

@media (min-width: 768px) {
    .our-news-link-position>p {
        margin-right: 0px;
    }
}

.our-news-link-position>p a {
    font-size: 16px;
    color: #fa9a2b;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.our-news-link-position>p a:hover {
    opacity: .5;
}

.our-works-link-position>p {
    text-align: center;
}

.our-contact-link-position>p {
    text-align: center;
}

.btn-position {
    text-align: center;
}

.btn-position.-left {
    text-align: left;
}

.btn-position.-right {
    text-align: right;
}

.btn-viewmore {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 24px;
    border: 1px solid #fff;
    border-radius: 9999px;
    color: #fff;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1;
    min-width: 25rem;
}

.btn-viewmore.-dark {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-viewmore {
    margin: 4rem 0 3rem;
}

.btn-viewmore.-others {
    margin: 1rem 0 3rem;
}

.btn-viewmore svg {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    color: #000;
    transition: all 0.3s ease;
}

.btn-viewmore:hover {
    background: #fff;
    color: #000;
}

.btn-viewmore.-dark:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}

.btn-viewmore:hover svg {
    background: #000;
    color: #fff;
    transform: translateX(3px);
}

.section-center-logo.-page {
    margin-top: 5rem;
    overflow: hidden;
    background-image: url("../img/contact/top-image.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 4rem 0;
    position: relative;
}

.section-center-logo.-page:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 768px) {
    .section-center-logo.-page {
        margin-top: 9rem;
    }
}

.section-center-logo-copy.-page {
    color: #fff;
}

/*------------------- section-partner ------------*/
.section-page-title {
    margin: 8rem 0;
}

@media (min-width: 768px) {
    .section-page-title {
        margin: 8rem 0;
    }
}

@media (min-width: 768px) {
    .section-page-title-contents {}
}

.section-page-title-contents-title-contents {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: 2rem;
}

@media (min-width: 768px) {
    .section-page-title-contents-title-contents {
        max-width: 1100px;
        margin: 0 auto;
        width: 100%;
        padding-left: 0;
    }
}

.section-page-title-contents-subtitle {
    font-size: 2rem;
    border: none;
    padding-left: 1.5rem;
    margin: 3rem 0 1rem;
    font-weight: bold;
    text-align: center;
    position: relative;
}

.section-page-title-contents-subtitle:before {
    content: '';
    position: absolute;
    width: 5rem;
    height: 1rem;
    margin: auto;
    top: -6rem;
    right: 0;
    bottom: 0;
    left: 1.7rem;
    background-color: #70868f;
}

@media (min-width: 768px) {
    .section-page-title-contents-subtitle {
        font-size: 2.5rem;
        margin: 4rem 0 4rem;
    }
}

.section-page-title-contents-title {
    font-weight: bold;
    line-height: 1;
    font-size: 5.8rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-page-title-contents-title {
        font-size: 5.8rem;
    }
}


.section-page-title-contents-flex {
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-page-title-contents-flex {
        display: flex;
        gap: 4rem;
    }
}

.section-page-title-contents-item a {
    transition: all .3s;
}

.section-page-title-contents-item a:hover {
    opacity: .5;
}

.page-product {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .page-product {
        margin-bottom: 8rem;
    }
}


.page-product-title-text {
    width: 90%;
    max-width: 80rem;
    margin: 0 auto;
}

.page-product-title-text.-product-top {
    text-align: center;
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .page-product-title-text.-product-top {
        text-align: center;
        font-size: 1.8rem;
    }

}

.section-product-flex.-page {}

@media (min-width: 768px) {
    .section-product-flex.-page {
        margin: 0 auto;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

.section-product-contents-subtitle.-page {}

@media (min-width: 768px) {
    .section-product-contents-subtitle.-page {
        margin-top: 0;
    }
}

.section-product-flex-contents.-page {}

@media (min-width: 768px) {
    .section-product-flex-contents.-page {
        width: 43%;
    }
}

.section-product-content.-image {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .section-product-content.-image {
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .section-product-content.-image img {
        height: 30rem;
    }
}

.company-info {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 6rem;
}

@media (min-width: 768px) {
    .company-info {
        margin-bottom: 6rem;
    }
}

.company-info__list {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 1rem;
}

@media (min-width: 768px) {
    .company-info__list {
        padding: 4rem;
    }
}

.company-info__row {
    padding: 1rem 0;
    border-bottom: 1px solid #70868f;
}

@media (min-width: 768px) {
    .company-info__row {
        display: flex;
        gap: 3rem;
        padding: 1.5rem 0;
    }
}

.company-info__list dt {
    font-weight: 700;
    color: #222;
}

@media (min-width: 768px) {
    .company-info__list dt {
        min-width: 20rem
    }
}

.company-info__list dd {
    margin: 0;
    color: #444;
}

@media (min-width: 768px) {
    .company-info__list dd {}
}

.company-info__title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
}

.section-company-contents {
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-company-contents {
        width: 100%;
    }
}