@charset "UTF-8";
/*
Theme Name: dao-creation-theme
Author: CNCTOR
*/

:root {
    /* color */
    --wht: #fff;
    --wht-gray: #f7f7f7;
    --txt-blk: #0C0C0C;
    --bg-blk: #232323;
    --accent: #D43131;
    --gray: #9B9B9B;
}

/*====================================*/
/* base contents */
/*====================================*/
html {
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    -webkit-font-feature-settings: "palt";
    color: #1C1C1C;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    word-break: break-all;
}

@media screen and (min-width: 960px) {
    html {
        font-size: 16px;
    }
}

body {
    background-color: var(--wht-gray);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */
/* --NotoSans-- */
@font-face {
    font-family: "NotoSerif";
    src: url('./font/NotoSerifJP-Regular.otf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "NotoSerifBold";
    src: url('./font/NotoSerifJP-Bold.otf') format('truetype');
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP";
    src: url('./font/NotoSansJP-Medium.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans JP Bold";
    src: url('./font/NotoSerifJP-Bold.otf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Bold";
    src: url('./font/Roboto-Bold.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}

.fnt-roboto-b {
    font-family: "Roboto Bold";
}

/* ----pc,sp/on_off---- */
.pc {
    display: none;
}

.tb {
    display: none;
}

.sp {
    display: block;
}

@media screen and (min-width: 960px) {
    .tb {
        display: block;
    }

    .sp {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .pc {
        display: block;
    }

    .tb {
        display: none;
    }
}

/* ----contents-text-align---- */
.ta-C {
    text-align: center;
}

.ta-R {
    text-align: right;
}

.ta-L {
    text-align: left;
}

.vertical {
    writing-mode: vertical-rl;
}

/* ----padding-bottoms---- */
.pt-S {
    padding-top: 1rem;
}

.pt-M {
    padding-top: 2rem;
}

.pt-L {
    padding-top: 3rem;
}

/* ----padding-bottoms---- */
.pb-S {
    padding-bottom: 1rem;
}

.pb-M {
    padding-bottom: 2rem;
}

.pb-L {
    padding-bottom: 3rem;
}

/* ----padding-left---- */
.pl-S {
    padding-left: 1rem;
}

.pl-M {
    padding-left: 2rem;
}

.pl-L {
    padding-left: 3rem;
}

/* ----padding-right---- */
.pr-S {
    padding-right: 1rem;
}

.pr-M {
    padding-right: 2rem;
}

.pr-L {
    padding-right: 3rem;
}

/* ----padding-top-bottom--- */
.ptb-S {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.ptb-M {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.ptb-L {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ----padding-left-right--- */
.plr-S {
    padding-left: 1rem;
    padding-right: 1rem;
}

.plr-M {
    padding-left: 2rem;
    padding-right: 2rem;
}

.plr-L {
    padding-left: 3rem;
    padding-right: 3rem;
}

/* ----margin-bottoms---- */
.mb-XXS {
    margin-bottom: .2rem;
}

.mb-XS {
    margin-bottom: .5rem;
}

.mb-S {
    margin-bottom: 1rem;
}

.mb-M {
    margin-bottom: 2rem;
}

.mb-L {
    margin-bottom: 3rem;
}

/* ----margin-tops---- */
.mt-S {
    margin-top: 1rem;
}

.mt-M {
    margin-top: 2rem;
}

.mt-L {
    margin-top: 3rem;
}

.mt-XL {
    margin-top: 4rem;
}

.mt-XXL {
    margin-top: 5rem;
}

.mt--XL {
    margin-top: -4.5rem;
}

.sec-mg {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.inr-mg {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ----margin-left---- */
.ml-S {
    margin-left: 1rem;
}

.ml-M {
    margin-left: 2rem;
}

.ml-L {
    margin-left: 3rem;
}

.ml-A {
    margin-left: auto;
}

/* ----margin-right---- */
.mr-S {
    margin-right: 1rem;
}

.mr-M {
    margin-right: 2rem;
}

.mr-L {
    margin-right: 3rem;
}

.mr-A {
    margin-right: auto;
}


/* ---- display ---- */
.display-block {
    display: block;
}

.display-none {
    display: none;
}

.display-inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

/* ----inner---- */
.inner {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.cnt-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.list-inner {
    padding-left: .4rem;
    padding-right: 1rem;
}

/*====================================*/
/* common contents */
/*====================================*/
/* ----title---- */
.ttl-S,
.ttl-M,
.ttl-L {
    line-height: 1.5;
    letter-spacing: .1em;
}

.ttl-S {
    font-size: 1.1rem;
}

.ttl-M {
    font-size: 1.3rem;
}

.ttl-L {
    font-size: 1.5rem;
}

.ttl-XL {
    font-size: 2rem;
}

.ttl-XXL {
    font-size: 2.2rem;
    letter-spacing: 1rem;
}

/* ----text---- */
.txt-XXS,
.txt-XS,
.txt-S,
.txt-M,
.txt-L,
.txt-XL {
    line-height: 1.5;
}

.txt-XXS {
    font-size: .6rem;
}

.txt-XS {
    font-size: .75rem;
}

.txt-S {
    font-size: .85rem;
}

.txt-M {
    font-size: .9rem;
}

.txt-L {
    font-size: 1.2rem;
}

.txt-XL {
    font-size: 1.5rem;
}

.wh-now {
    white-space: nowrap;
}

/* ----text-style---- */
.bold {
    font-weight: 900;
}


/* ----indent---- */
.indent-S {
    display: inline-block;
    padding-left: 1rem;
    text-indent: -1rem;
}

.indent-M {
    display: inline-block;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
}

.indent-L {
    display: inline-block;
    padding-left: 2rem;
    text-indent: -2rem;
}

/* ----button---- */
.opa {
    opacity: .5;
}

.hov:hover {
    opacity: .5;
    transition: all .3s;
    text-decoration: none;
}

.btn {
    display: block;
    margin: 2.5rem auto 0rem;
    padding: 1rem 0;
    transition: all .3s;
    width: 100%;
    max-width: 320px;
    font-size: 1rem;
    font-weight: bold;
}

/* ----button-bg---- */
.btn-1 {
    position: relative;
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
    text-align: center;
    letter-spacing: .15em;
    border-radius: 50px;
    gap: .5rem;
}

.btn-2 {
    position: relative;
    background-color: var(--wht);
    border: 1px solid var(--accent);
    color: var(--accent);
    text-align: center;
    letter-spacing: .15em;
    border-radius: 50px;
}

.btn-1:hover {
    background-color: white;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-2:hover {
    background-color: var(--accent);
    border: 1px solid var(--accent);
    color: var(--wht);
}

.btn-2::after {
    position: absolute;
    top: 50%;
    right: 7%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(135deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
}

.btn .svg {
    position: absolute;
    top: 50%;
    right: 7%;
    transition: all ease-out 0.2s;
    transform: translate(-50%, -50%);
}

/* ----flexbox---- */
.flex {
    display: block;
}

.fl,
.col_2,
.col_3,
.col_2_3,
.col_2_4,
.col_3_5 {
    display: flex;
    flex-flow: row wrap;
}

.col_1,
.col_1_2 {
    display: block;
}

.col_1>* {
    display: block;
    width: 100%;
}

.col_1_2>* {
    flex-basis: 100%;
    margin-bottom: 1rem;
}

.col_right>*:last-child {
    flex-basis: calc(75% - .9rem);
}

.col_3>* {
    flex-basis: calc(100% / 3 - .8rem);
}

.col_2_3>*,
.col_2_4>* {
    flex-basis: calc(100% / 2 - .5rem);
    margin-bottom: 1rem;
}

.col_3_5>* {
    flex-basis: calc(100% / 3 - .8rem);
    margin-bottom: 1rem;
}

.cols>* {
    width: 100%;
    min-width: 0;
}

.col-25 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-50 {
    flex: 0 0 50%;
    max-width: 50%;
}


.gap_1 {
    gap: 1.5rem;
}

.gap_2 {
    gap: 2rem;
}

.gap_3 {
    gap: 3rem;
}

.fld-clm {
    flex-direction: column;
}

@media screen and (min-width: 960px) {
    .col_1_2 {
        display: flex;
        justify-content: space-between;
    }

    .col_1_2>* {
        flex-basis: calc(100% / 2 - .8rem);
        margin-bottom: 1.6rem;
    }

    .col_1_3>* {
        flex-basis: calc(100% / 2 - 1.2rem);
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {
    .flex {
        display: flex;
    }

    .col_1_3>* {
        flex-basis: calc(100% / 3 - 1.5rem);
        margin-bottom: 0;
    }

    .col_right>*:last-child {
        flex-basis: calc(80% - .9rem);
    }

    .col_2_3>* {
        flex-basis: calc(100% / 3 - 2rem);
        margin-bottom: 0;
    }

    .col_2_4>* {
        flex-basis: calc(100% / 4 - 1.5rem);
        margin-bottom: 0;
    }

    .col_3_5>* {
        flex-basis: calc(100% / 5 - .5rem);
        margin-bottom: 0;
    }
}

.jf_fs {
    justify-content: flex-start;
}

.jf_sb {
    justify-content: space-between;
}

.jf_c {
    justify-content: center;
}

.jf_e {
    justify-content: space-evenly;
}

.jf_fe {
    justify-content: flex-end;
}

.item-c {
    align-items: center;
}

/* ----grid-layout---- */
.grid,
.grid_1_2,
.grid_1_3,
.grid_3,
.grid_4,
.grid_1_4,
.grid_2_4 {
    display: grid;
}

.grid_1_2 {
    grid-template-columns: 1fr;
}

.grid_2_4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 1rem;
}

.grid_3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.grid_4 {
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (min-width:600px) {
    .grid_1_2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid_1_3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid_1_4,.grid_2_4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ----inner---- */
.inner {
    max-width: 1080px;
    margin: 0 auto;
    width: calc(100% - 2.5rem);
}

.inner {
    padding: 50px 0;
}

@media screen and (min-width:960px) {
    .inner {
        padding: 100px 0;
    }
}

/* ----txt-bg---- */
.txt__bg01 {
    display: inline-block;
    background: linear-gradient(85deg, #BD3434 0%, #7F8686 70%, #3FA2D9 100%);
    padding: 0 .5rem;
    margin: 0 .5rem;
}

.txt__bg02 {
    display: inline-block;
    background: linear-gradient(85deg, #bd34347a 0%, #B8557E7a 60%, #F070877a 100%);
    padding: 0 .5rem;
}

.txt__bg03 {
    display: inline-block;
    background: linear-gradient(85deg, rgba(63, 97, 217, 0.25) 0%, rgba(60, 161, 161, 0.25) 60%, rgba(63, 162, 217, 0.25) 100%);
    padding: 0 .5rem;
}

.txt__bg04 {
    display: inline-block;
    background: #BD3434;
    padding: .1rem .25rem .1rem;
    color: #fff;
}


/* ----フェードインアニメーション---- */
.view.view-fix,
.view.view-slideup,
.view.view-slidedown,
.view.view-slidein-L,
.view.view-slidein-R {
    opacity: 0;
}

.view.view-fix.on {
    opacity: 1;
    animation: view-fix .7s ease both;
}

.view.view-slideup.on {
    opacity: 1;
    animation: view-slideup .7s ease both;
}

.view.view-slidedown.on {
    opacity: 1;
    animation: view-slidedown .7s ease both;
}

.view.view-slidein-L.on {
    opacity: 1;
    animation: view-slidein-L .7s ease both;
}

.view.view-slidein-R.on {
    opacity: 1;
    animation: view-slidein-R .7s ease both;
}

@keyframes view-fix {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes view-slideup {
    0% {
        opacity: 0;
        transform: translate(0, 35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidedown {
    0% {
        opacity: 0;
        transform: translate(0, -35px);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-L {
    0% {
        opacity: 0;
        transform: translate(-35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes view-slidein-R {
    0% {
        opacity: 0;
        transform: translate(35px, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* 動画の縦横比を意地 */

.movie::before {
    padding-top: 65%;
    display: block;
    content: "";
}

.movie__btn.skip {
    text-align: center;
    position: absolute;
    bottom: 15%;
    right: 0%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

.movie__btn.on {
    text-align: center;
    position: absolute;
    top: 20%;
    left: 10%;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

.movie__btn.on .js-video-button .img {
    width: 80px;
}

.movie__btn button {
    font-weight: bold;
    padding: 0.5em 1em;
    display: inline-block;
    cursor: pointer;
    display: flex;
    gap: .5rem;
    white-space: nowrap;
    align-items: center;
    color: var(--wht);
    font-size: 1.5rem;
}

.movie__btn button::before {
    display: inline-block;
    padding-left: 2.5rem;
    background: url(./img/on.svg) no-repeat left;
    content: "";
    vertical-align: baseline;
    height: 80px;
    width: 80px;
}

.movie__btn button.off::before {
    display: inline-block;
    padding-left: 2.5rem;
    background: url(./img/off.svg) no-repeat left;
    content: "";
    vertical-align: baseline;
    height: 80px;
    width: 80px;
}

@media screen and (max-width:960px) {
    .movie__btn.on {
        top: -20%;
        left: 20%;
    }

    .movie__btn.skip {
        bottom: -45%;
        right: -15%;
    }
}

/*------------------------------------------------
モーダル部分css
-------------------------------------------------*/
.modal__item {
    margin-bottom: 40px;
}

.modal__item .modal {
    overflow: hidden;
    position: relative;
}

.modal__item .modal::before {
    content: '';
    display: block;
    padding-top: 60%;
}

.modal__item .modal {
    overflow: hidden;
    position: relative;
}


.modal__item .modal img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;

}

body.active {
    overflow: hidden;
}

html.active {
    overflow: hidden;
}

.main-modal {
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    left: 0;
}

.modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}

.main-modal .container {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* max-width: 800px; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50.13%, -50%);
    width: 100%;
}

.main-modal .container .btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

.main-modal .container .movie {
    position: relative;
    width: 100%;
    /* padding-top: 56.25%; */
}

video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.container {
    position: relative;
}

.close__btn {
    font-size: 12px;
    white-space: nowrap;
    padding: 0.5em 1em;
    border-radius: 50px;
    border: 1px solid #333;
    background-color: white;
    cursor: pointer;
    display: flex;
    gap: .5rem;
    align-items: center;
    font-size: 1.5rem;
}

/*====================================*/
/* header */
/*====================================*/

header .nav__item::before {
    content: none;
}

/*　上に上がる動き　*/
#header.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*　下に下がる動き　*/
#header.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#header {
    position: fixed;
    width: 100%;
    z-index: 5;
    transition: 0.2s;
}

#header.active {
    background-color: rgba(255, 255, 255, 0.8);
}

#header.change-style {
    background-color: #003964;
    top: 0;
}

#header .header__logo {
    width: 113px;
}

@media screen and (max-width:960px) {
    #header .header__logo {
        width: 91px;
    }
}

#header .header__logo img {
    width: 100%;
}

/* ヘッダー */
#header  {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#header  .header__inner {
    max-width: 1080px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 auto;
    justify-content: space-between;
}

@media screen and (max-width:960px) {
    #header  .header__inner {
        padding: 16px 20px;
    }
}

/* ヘッダーのロゴ部分 */

#header .header__title {
    width: 80px;
}

@media screen and (min-width:960px) {
    #header .header__title {
        width: 120px;
    }
}

#header .header__title img {
    display: block;
    width: 100%;
    height: 100%;
}

/* ヘッダーのナビ部分 */
#header .header__nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    box-shadow: 0px 0px 15px -5px #777777;
    transition: ease .4s;
    z-index: 1000;
    color: var(--wht);
}

@media screen and (max-width:960px) {
    #header .header__nav.active {
        color: var(--txt-blk);
    }
}

#header.active .header__nav {
    color: initial;
}

@media screen and (min-width:960px) {
    #header .header__nav {
        position: static;
        transform: initial;
        box-shadow: initial;
        background-color: inherit;
        height: inherit;
        display: flex;
        justify-content: end;
    }

    #header .header__inner {
        padding: 10px 0;
    }
}

@media screen and (min-width:960px) {
    #header .nav__list {
        display: flex;
        align-items: center;
        height: initial;
        gap: 35px;
    }
}

@media screen and (min-width:1440px) {
    #header .nav__list {
        gap: 1.5rem;
    }
}

#header .nav__list {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
}

@media screen and (max-width:960px) {
    #header .nav__list {
        padding-top: 70px;
    }
}

@media screen and (min-width:960px) {
    #header .nav__list {
        position: inherit;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        justify-content: right;
    }
}

/* ナビのリンク */
#header .nav__item {
    border-bottom: none !important;
    width: 250px;
}

#header .nav__item::after {
    content: none;
}

#header .nav__item>a::before {
    content: none;
}

#header .nav__item a {
    width: 100%;
    display: block;
    white-space: nowrap;
    font-weight: bold;
    transition: all .3s;
}

#header .nav__item a:hover {
    color: var(--accent);
}

#header  .nav__item>a {
    padding: initial;
    margin-bottom: 2.2rem;
    display: flex;
    align-items: center;
    height: initial;
    font-size: 1rem;
    text-align: left;
    padding-left: 1rem;
    border-left: #333333 solid 5px;
}

#header  .nav__item>li:last-child>a {
    margin-bottom: initial;
}

#header .nav__item.contact {
    cursor: pointer;
    text-align: center;
    background: var(--accent);
    border-radius: 50px;
}

#header .nav__item.contact>a {
    color: #fff;
    border-left: initial;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: .4rem;
    padding: .7rem 0rem;
    margin-bottom: initial;
}

#header .nav__item.contact>a>.icn {
    width: 20px;
    height: auto;
}

@media screen and (min-width:960px) {
    #header .nav__item {
        width: initial;
        margin: initial;
    }

    #header .nav__item>a {
        padding: initial;
        margin-bottom: 2rem;
        padding-left: initial;
        border-left: initial;
    }

    #header  .nav__item>a {
        border-left: none;
        margin-bottom: initial;
    }

    #header .nav__item.contact>a {
        padding: .7rem .5rem;
    }

    #header .nav__item.contact>a>.icn {
        width: 28px;
    }

    #header .nav__item.contact {
        position: relative;
        width: 160px;
        display: flex;
        height: 100%;
    }

    #header .nav__item>a {
        margin-bottom: 0;
        border-bottom: 0;
    }
}

/* ハンバーガーメニュー */
#header .header__hamburger {
    width: 30px;
    height: 100%;
}

#header .hamburger {
    border-color: var(--wht);
    z-index: 9999;
    display: grid;
    gap: .5rem;
}

#header.active .hamburger {
    border-color: var(--txt-blk);
    z-index: 9999;
}

#header .hamburger.active {
    border-color: var(--txt-blk);
    z-index: 9999;
}

@media screen and (min-width:960px) {
    #header .hamburger {
        display: none;
    }
}

/* ハンバーガーメニューの線 */

#header .hamburger span {
    width: 100%;
    border-radius: 2px;
    background-color: var(--wht);
    position: relative;
    transition: ease .4s;
    display: block;
    height: 2px;
}

#header.active .hamburger span {
    background-color: var(--bg-blk);
}

#header .hamburger span:nth-child(1) {
    top: 0;
}


#header .hamburger span:nth-child(3) {
    top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */

#header .header__nav.active {
    transform: translateX(0);
}

#header .hamburger.active span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
    background-color: var(--bg-blk);
}

#header .hamburger.active span:nth-child(2) {
    background-color: var(--bg-blk);
    top: -2px;
    transform: rotate(-45deg);
}

#header .hamburger.active span:nth-child(3) {
    top: -14px;
    transform: rotate(-45deg);
}

#header .overlay {
    background-color: #000;
    cursor: pointer;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.6s;
    visibility: hidden;
    width: 100vw;
    z-index: 1;
}

@media screen and (max-width:960px) {
    #header .overlay.active {
        visibility: visible;
    }
}

@media screen and (max-width: 1200px) {
    #header .nav__item {
        display: flex;
    }
}

.js-image {
    z-index: 1;
}

.git-image {
    opacity: 0;
    display: none;
}

/*====================================*/
/* mv */
/*====================================*/
#mv {
    font-family: "NotoSerif";
    position: relative;
    background-image: url(./img/mv-img-pc.jpg);
    background-color: var(--bg-blk);
    color: var(--wht);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    max-height: 100vh;
    min-height: 100vh;
    padding: 100px 0 0 0;
}

#mv .ttl {
    font-size: 3rem;
    margin-bottom: 3rem;
}

@media screen and (max-width:960px) {
    #mv .ttl {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

#mv .ttl .img {
    width: 300px;
    max-width: 300px;
    margin-right: 1rem;
    margin-top: 1.5rem;
}

#mv .txt__box .txt__main {
    font-size: 2rem;
    margin-bottom: .5rem;
}

#mv .txt__box .txt__sub {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

@media screen and (max-width:960px) {
    #mv {
        background-image: url(./img/mv-img-sp.jpg);
        max-height: 100vh;
        min-height: 100vh;
        padding: 70px 0 100px 0;
    }

    #mv .txt__box .txt__main {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    #mv .txt__box .txt__sub {
        font-size: 1rem;
        margin-bottom: .5rem;
    }
}

/*====================================*/
/* mv */
/*====================================*/
#concept {
    background-color: var(--bg-blk);
    color: var(--wht);
    font-weight: bold;
}

#concept .bg-item {
    position: absolute;
    bottom: -10%;
    right: -10%;
    z-index: 0;
}

@media screen and (max-width:960px) {
    #concept .bg-item {
        position: absolute;
        bottom: -20%;
        right: 8%;
        z-index: 0;
    }
}

#concept .bg-item .img {
    width: 45vw;
    max-width: 500px;
}

#concept .inner {
    position: relative;
}

@media screen and (max-width:960px) {
    #concept .inner {
        padding-bottom: 100px;
    }
}

#concept .sec__ttl {
    position: relative;
    margin-bottom: 3.5rem;
    /* max-width: 734px; */
    display: flex;
    gap: .5rem;
    z-index: 1;
}

@media screen and (max-width:960px) {
    #concept .sec__ttl {
        max-width: 297px;
        gap: .2rem;
        margin-bottom: 1rem;
    }
}

#concept .txt__box {
    position: relative;
    z-index: 1;
}

#concept .txt__main {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 2rem;
}

@media screen and (max-width:960px) {
    #concept .txt__main {
        font-size: 1.5rem;
        line-height: 2;
        margin-bottom: 2rem;
    }
}

#concept .txt__sub {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width:960px) {
   #concept .txt__sub {
        font-size: initial;
        gap: .5rem;
       white-space: nowrap;
    }
}

#concept .txt__sub .img {
    width: 120px;
    max-width: 120px;
}

@media screen and (max-width:960px) {
   #concept .txt__sub .img {
        width: 100%;
        max-width: 68px;
    }
}

#concept .concept__list {
    display: flex;
    flex-flow: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

#concept .concept__items {
    border: solid 2px #fff;
    font-weight: bold;
    padding: .5rem .7rem;
}

/*====================================*/
/* issue */
/*====================================*/
#issue {
    position: relative;
}

#issue::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 150px solid transparent;
    border-left: 150px solid transparent;
    border-top: 150px solid var(--accent);
    border-bottom: 0;
    right: 14%;
    z-index: -1;
}

@media screen and (max-width:960px) {
    #issue::before {
        border-right: 105px solid transparent;
        border-left: 105px solid transparent;
        border-top: 105px solid var(--accent);
        right: 6.5%;
    }
}

#issue .sec__ttl {
    margin-bottom: 3rem;
    display: flex;
    gap: .3rem;
}

@media screen and (max-width:960px) {
    #issue .sec__ttl {
        margin-bottom: 0rem;
        max-width: 122px;
    }
}

#issue .ttl__box .txt {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

@media screen and (max-width:960px) {
    #issue .ttl__box .txt {
        font-size: 1.5rem;
    }
}

#issue .img__box {
    margin-bottom: 3rem;
}

@media screen and (max-width:960px) {
    #issue .img__box {
        margin-bottom: 1rem;
    }
}

#issue .txt .typ {
    display: inline-block;
    margin: 0 1rem;
}

#issue .issue__box .issue_list {
    position: relative;
    display: grid;
    gap: 1rem;
    list-style: none;
    text-align: center;
}

#issue .issue__box .issue_list::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 50%;
    height: 100%;
    transform: translate(-50%,-0%);
    border-right: 3px dotted var(--bg-blk);
    border-top: 3px dotted var(--bg-blk);
    z-index: -1;
}

#issue .issue__box .issue_list .issue_item {
    border: solid 1.5px #000;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
}

#issue .issue__box .issue_list img:last-child {
    width: 70px;
    max-width: 70px;
    margin: .5rem auto 0;
}

#issue .issue__box .issue__top {
    margin-bottom: 2.5rem;
}

#issue .issue__box .issue__top .issue__item02 {
    transform: translate(0%, 30%);
}

#issue .issue__box .issue__middle .issue__item04 {
    transform: translate(20%, 0%);
}

#issue .issue__box .issue__middle .issue__item05 {
    transform: translate(-5%, 0%);
}

#issue .issue__box .issue__top, #issue .issue__box .issue__middle {
    display: flex;
    justify-content: space-between;
}

#issue .issue__box .issue__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

#issue .issue__box .issue__bottom .issue__item06 {
    position: relative;
    background: var(--bg-blk);
    border-radius: 100%;
    width: 144px;
    height: 144px;
    transform: translate(0%, -30%);
}

#issue .issue__box .issue__bottom .issue__item06 img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    display: inline-block;
}

#issue .triangle__box {
    display: grid;
    place-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

#issue .triangle__box img {
    width: 60px;
    height: 60px;
}

@media screen and (max-width:960px) {
    #issue .triangle__box {
        gap: .5rem;
        margin-bottom: 1.5rem;
        transform: inherit;
    }
    #issue .triangle__box img {
        width: 20px;
        height: 20px;
    }
}

#issue .tab__container {
    position: relative;
    display: flex;
    justify-content: end;
}

#issue .tab__container .l__box {
    color: var(--wht);
    width: calc(100% / 2 - 3%);
    position: absolute;
    top: 0px;
    left: 0;
}

#issue .tab__container .l__box .tab__content {
    position: relative;
    transition: all .7s;
}

#issue .tab__container .l__box .tab__content .num,
#issue .slide-issue .num {
    font-family: "Roboto Bold";
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: .5rem;
}

#issue .tab__container .l__box .tab__content .ttl,
#issue .slide-issue .ttl {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

#issue .tab__container .l__box .tab__content#tab-1 .img {
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-2 .img {
    position: absolute;
    bottom: -10%;
    left: -15%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-3 .img {
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-4 .img {
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-5 .img {
    position: absolute;
    bottom: -35%;
    left: -15%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-6 .img {
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-7 .img {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 325px;
}

#issue .tab__container .l__box .tab__content#tab-8 .img {
    position: absolute;
    bottom: -25%;
    left: -5%;
    width: 325px;
}

#issue .tab__container .l__box::before {
    position: absolute;
    content: "";
    background-color: var(--bg-blk);
    width: 100%;
    height: 500px;
    z-index: -1;
    width: 50vw;
    margin-left: calc(50% - 37vw);
    border-radius: 20px;
}

@media (max-width: 1600px) {
    #issue .tab__container .l__box::before {
        margin-left: calc(50% - 32vw);
    }
}

#issue .tab__container .r__box {
    display: flex;
    flex-direction: column;
    font-weight: bold;
}

#issue .tab__container .r__box li {
    cursor: pointer;
}

#issue .tab__container .r__box .num {
    font-family: "Roboto Bold";
    font-size: 2.5rem;
    white-space: nowrap;
    color: var(--gray);
    margin-left: 1rem;
}

#issue .tab__container .r__box li.selected .num {
    margin-left: 0;
    transition: all .7s;
}

#issue .tab__container .r__box .ttl {
    font-size: 1.2rem;
}

#issue .issue__txt {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 6rem;
}

@media screen and (max-width:960px) {
    #issue .issue__txt {
        font-size: 1.5rem;
        text-align: center;
        font-weight: bold;
        margin-bottom: 3rem;
    }
}

#issue .tab__container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

#issue .tab__container ul li {
    position: relative;
    width: 100%;
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .7s;
    border-top: 1px solid var(--bg-blk);
}

#issue .tab__container ul li:last-child {
    border-bottom: 1px solid var(--bg-blk);
}

#issue .tab__container ul li::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(100%, -50%);
    content: "";
    width: 5px;
    height: 15px;
    background: var(--gray);
}

#issue .tab__container ul li.selected::before {
    content: none;
}

#issue .tab__container ul li.selected {
    color: var(--accent);
}

#issue .tab__container .r__box li.selected .num {
    color: var(--accent);
}

/* コンテンツを非表示。 */
#issue .tab__content {
    display: none;
}

/* selectedクラスが付いたコンテンツのみ表示。 */
#issue .tab__content.selected {
    display: block;
    height: 500px;
    padding: 2rem 2rem 0 0rem;
}

#issue .slide-issue__box {
    overflow: hidden;
}

#issue .slide-issue {
    position: relative;
    background-color: var(--bg-blk);
    color: var(--wht);
    padding: 1.6rem 1.5rem 5rem;
    border-radius: .5rem;
}

#issue .slide-issue .txt {
    text-align: center;
}

#issue .slide-issue .ttl__box {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

#issue .slide-issue .ttl__box .num {
    white-space: nowrap;
}

#issue .slide-issue .ttl__box .ttl {
    font-size: 1.5rem;
}

#issue .slide-issue .img {
    position: absolute;
    width: 108px;
    bottom: -16%;
    left: 0;
}

#issue .slide-issue.slide02 .img {
        bottom: -10%;
}

#issue .slide-issue.slide07 .img {
        bottom: -5%;
}

.swiper {
    overflow: inherit;
}

.indicator-box .swiper-pagination {
    margin: 20px 0;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .indicator-box .swiper-pagination {
        margin:45px 0
    }
}

.indicator-box .swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    border-radius: 10px;
    background: var(--gray);
    transition: 0.3s;
    cursor: pointer
}

@media screen and (min-width: 992px) {
    .indicator-box .swiper-pagination .swiper-pagination-bullet {
        width:50px;
        height: 12px;
        margin-right: 10px
    }
}

.indicator-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent);
}

/*====================================*/
/* story */
/*====================================*/
#story {
    background-color: var(--bg-blk);
    position: relative;
    overflow-x: hidden;
}

#story .bg-item {
    position: absolute;
    top: -25%;
    right: -30%;
    transform: translate(-50%,-50%);
}

#story .bg-item img {
    width: 400px;
}

@media screen and (max-width:960px) {
    #story .bg-item {
        position: absolute;
        top: 0%;
        right: -10%;
        transform: translate(-50%,-50%);
    }
    #story .bg-item img {
        width: 132px;
    }
}

#story::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 100px solid transparent;
    border-left: 100px solid transparent;
    border-top: 100px solid var(--accent);
    border-bottom: 0;
    left: 0%;
    z-index: 1;
}

#story .ttl__box .sec__ttl {
    margin-bottom: 1rem;
    display: flex;
    gap: .3rem;
}

@media screen and (max-width:960px) {
    #story::before {
        content: none;
    }
    #story .ttl__box .sec__ttl {
        max-width: 136px;
        margin-bottom: 0;
    }
}

#story .ttl__box {
    margin-bottom: 3rem;
}

#story .ttl__box .txt {
    color: var(--wht);
    font-weight: bold;
    font-size: 2rem;
}

#story .insta__cnt {
    position: relative;
    gap: 2rem;
    z-index: 1;
}

#story .insta__cnt .border__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    height: 2px;
    display: grid;
    width: 1320px;
}

@media screen and (max-width:1320px) {
    #story .insta__cnt .border__box {
        width: 100%;
    }
}

#story .insta__cnt .border__box.border {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--wht);
}

#story .insta__cnt .border__box.border::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border: 1px solid var(--wht);
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

#story .insta__cnt .border__box.border::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border: 1px solid var(--wht);
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    border-radius: 50px;
}

#story .insta__cnt .story__item {
    padding: 1.5rem;
    background: var(--wht);
    border-radius: 8px;
}

#story .insta__cnt .story__item .img__box {
    margin-bottom: 1rem;
}

#story .insta__cnt .story__item .img__box img {
    border-radius: 5px;
    height: 180px;
    max-height: 180px;
    object-fit: cover;
}

.insta__cnt #sb_instagram .sbi_no_js img {
    display: block;
}

.border__area {
    position: absolute;
    width: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% - 10px));
}

@media (max-width: 640px) {
    #sb_instagram.sbi_width_resp {
        width: 80% !important;
    }
}

@media screen and (max-width:960px) {
    .border__area {
        width: 100%;
    }
}

/*====================================*/
/* flow */
/*====================================*/
#flow {
    background: var(--bg-blk);
    overflow: hidden;
}

#flow .ttl__box {
    margin-bottom: 3rem;
}

#flow .ttl__box .sec__ttl {
    margin-bottom: 1rem;
    display: flex;
    gap: .5rem;
}

@media screen and (max-width:960px) {
    #flow .ttl__box .sec__ttl {
        max-width: 110px;
        margin-bottom: 0;
    }
}

#flow .ttl__box .txt {
    color: var(--wht);
    font-weight: bold;
    font-size: 2rem;
}

#flow .flow__list {
    gap: 2rem;
    position:relative;
}

#flow .flow__list:before {
    position: absolute;
    content: "";
    background-color: var(--accent);
    width: 100vw;
    height: 3px;
    top: 0;
    left: 0;
    transform: translate(0%, 11.5px);
    z-index: 0;
}

@media screen and (max-width:960px) {
    #flow .flow__list:before {
        position: absolute;
        content: "";
        background-color: var(--accent);
        width: 2px;
        top: 0;
        left: 4.5%;
        height: 200%;
        z-index: 0;
        transform: translate(-50%, 0%);
    }
}

#flow .flow__list>*+*::before {
    position: absolute;
    content: "";
    background-image: url(./img/flow-triangle.svg);
    height:25px;
    width: 23px;
    color: #fff;
    transform: translate(-100%, 0%);
    border-right: 0;
    z-index: 1;
}

@media screen and (max-width:960px) {
    #flow .flow__list>*::before {
        position: absolute;
        content: "";
        background-image: url(./img/flow-triangle.svg);
        height:25px;
        width: 23px;
        color: #fff;
        transform: translate(-100%, 0%);
        border-right: 0;
        z-index: 1;
    }
    
    #flow .flow__list>*::before {
        transform: rotate(90deg);
        bottom: 25%;
        left: 1.3%;
    }
}

#flow .flow__list .flow__item {
    position: relative;
}

#flow .flow__list .flow__item .num {
    font-family: "Roboto Bold";
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 1;
    margin-bottom: 2rem;
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: -.01rem;
}

@media screen and (max-width:960px) {
    #flow .flow__list .flow__item .num {
        position: absolute;
        left: 2%;
    }
}

#flow .flow__list .flow__item .num::after {
    position: absolute;
    content: "";
    background-color: var(--wht);
    border: 1px solid var(--accent);
    border-radius: 50px;
    width: 43px;
    height: 43px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media screen and (max-width:960px) {
    #flow .flow__list .flow__item .num::after {
        width: 33px;
        height: 33px;
    }
}

#flow .flow__list .flow__item:not(:first-child)::after {
    position: absolute;
    /* content: ""; */
    background-color: var(--accent);
    width: 100vw;
    height: 3px;
    top: 0;
    left: 0;
    transform: translate(-50%,11.5px);
    z-index: 0;
}

@media screen and (max-width:960px) {
    #flow .flow__list .flow__item:not(:first-child)::after {
        content: none;
    }
}

#flow .flow__list .flow__item .img__box {
    margin-bottom: 1.5rem;
}

@media screen and (max-width:960px) {
    #flow .flow__list .flow__item .img__box {
        text-align: center;
    }
    #flow .flow__list .flow__item .img__box img {
        width: 180px;
    }
}

#flow .flow__list .flow__item .txt {
    color: var(--wht);
    font-weight: bold;
    text-align: center;
}

/*====================================*/
/* shop */
/*====================================*/
#shop {
    position: relative;
}

#shop::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 100px solid transparent;
    border-left: 100px solid transparent;
    border-top: 100px solid var(--accent);
    border-bottom: 0;
    right: 5%;
    z-index: 1;
}

#shop .r__box {
    width: calc(100% / 2);
}

#shop .r__box .swiper02 {
    overflow: hidden;
}

#shop .r__box .swiper02 .swiper-slide img {
    border-radius: 12px;
    margin-bottom: 1rem;
}

#shop .r__box .swiper02 .swiper-slide .txt__box {
    display: flex;
}

#shop .r__box .swiper02 .swiper-slide .txt__box .ttl {
    font-weight: bold;
    width: 35%;
}

#shop .r__box .swiper02 .swiper-slide .txt__box .txt {
    width: 65%;
}

#shop .r__box .swiper02 .indicator-box .swiper-pagination {
    margin: 20px 0;
}

#shop .r__box .swiper02 .indicator-box .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

@media screen and (max-width:960px) {
    #shop::before {
        border-right: 56px solid transparent;
        border-left: 56px solid transparent;
        border-top: 56px solid var(--accent);
    }

    #shop .r__box {
        width: initial;
    }
}

@media screen and (max-width:960px) {
    #shop .r__box {
        margin-top: 4rem;
        /* position: absolute; */
        top: 45%;
        right: 5%;
        z-index: -1;
    }
}

#shop .ttl__box .sec__ttl {
    margin-bottom: 1rem;
    display: flex;
    gap: .5rem;
}

@media screen and (max-width:960px) {
    #shop .ttl__box .sec__ttl {
        max-width: 110px;
        margin-bottom: 0;
    }
}

#shop .ttl__box .sub__ttl {
    color: var(--bg-blk);
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#shop .ttl__box .txt__box .txt {
    display: inline-block;
    background-color: var(--bg-blk);
    color: #fff;
    width: fit-content;
    font-weight: bold;
    font-size: 1.5rem;
    padding: .3rem 1rem;
    margin-bottom: .5rem;
}

@media screen and (max-width:960px) {
    #shop .ttl__box .txt__box .txt {
        font-size: 1rem;
    }
}

#shop .ttl__box .txt__box {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width:960px) {
    #shop .ttl__box .sub__txt {
        /* margin-bottom: 10rem; */
        font-weight: bold;
    }
}

#shop .ttl__box .sub__txt {
    font-size: 1.1rem;
    font-weight: bold;
}

#shop .ttl__box .btn {
    margin: 2.5rem 0 auto 0rem;
}

@media screen and (max-width:960px) {
    #shop .ttl__box .btn {
        margin: 2.5rem auto 0;
    }
}

#shop .r__box .img__box {
    position: relative;
    z-index: 1;
}

@media screen and (max-width:960px) {
    #shop .r__box .img__box {
        width: 230px;
    }
}

#shop .r__box .img__box .png {
    position: absolute;
    z-index: -1;
    top: 10%;
    left: -5%;
}


/*====================================*/
/* news */
/*====================================*/
#news {
    position: relative;
}

#news .bg__box {
    position: absolute;
    bottom: -20%;
    left: -10%;
}

@media screen and (max-width:960px) {
    #news .bg__box {
        display: none;
    }
}

#news::before {
    position: absolute;
    content: "";
    background: var(--bg-blk);
    top: 50%;
    height: 260px;
    width: 100vw;
}

#news .ttl__box .sec__ttl {
    /* width: 538px; */
    margin-bottom: 1rem;
    display: flex;
    gap: .3rem;
}

@media screen and (max-width:960px) {
    #news .ttl__box .sec__ttl {
        max-width: 220px;
        margin-bottom: 0;
    }
}

#news .ttl__box {
    margin-bottom: 3rem;
}

#news .ttl__box .txt {
    color: var(--bg-blk);
    font-weight: bold;
    font-size: 2rem;
}

#news .story__list {
    position: relative;
    gap: 2rem;
    z-index: 1;
}

#news .story__list .border__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    height: 2px;
    display: grid;
}

#news .story__list .border__box .border {
    position: relative;
    display: inline-block;
    width: 1320px;
    height: 2px;
    background-color: var(--wht);
}

#news .story__list .border__box .border::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border: 1px solid var(--wht);
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50px;
}

#news .story__list .border__box .border::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    border: 1px solid var(--wht);
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    border-radius: 50px;
}

#news .story__list .story__item {
    padding: 1.5rem;
    background: var(--wht);
    border-radius: 8px;
}

#news .story__list .story__item .img__box {
    margin-bottom: 1rem;
}

#news .story__list .story__item .img__box img {
    border-radius: 5px;
    height: 180px;
    max-height: 180px;
    object-fit: cover;
}

/*====================================*/
/* contact */
/*====================================*/
#contact {
    position: relative;
    overflow: hidden;
}

#contact .bg__box {
    position: absolute;
    top: 50%;
    right: -10%;
}

@media screen and (max-width:960px) {
    #contact .bg__box {
        width: 165px;
        top: 0%;
        right: -10%;
        z-index: -1;
    }
}

/*====================================*/
/* footer */
/*====================================*/
footer {
    background-color: var(--bg-blk);
    color: var(--wht);
}

footer .inner {
    padding: 50px 0;
    display: grid;
    place-items: center;
    gap: 2rem;
}

@media screen and (max-width:960px) {
    footer .inner {
            grid-template-columns: repeat(2, 1fr);
    }
}

footer .logo__box {
    width: 113px;
}

@media screen and (max-width:960px) {
    footer .logo__box {
        width: inherit;
    }
}

footer .nav__list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 4rem;
}

@media screen and (max-width:960px) {
    footer .nav__list {
        flex-direction: column;
        gap: 1rem;
        align-items: normal;
    }

    footer .tel__box {
        grid-row: 2 / 3;
        grid-column: 1 / 3;
    }

    footer .copyright {
        grid-row: 3 / 3;
        grid-column: 1 / 3;
    }
}

footer .tel__box a {
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: .5rem;
}

footer .tel__box img {
    width: 25px;
}

/*====================================*/
/* contact form */
/*====================================*/
#contact .inner {
    max-width: 836px;
}


c .ttl__box {
    margin-bottom: 3rem;
    text-align: center;
}

#contact .ttl__box .sec__ttl {
    margin: auto;
    margin-bottom: 1rem;
    display: flex;
    gap: .3rem;
    justify-content: center;
}

@media screen and (max-width:960px) {
    #contact .ttl__box .sec__ttl {
        max-width: 117px;
        margin: 0;
    }
}

#contact .ttl__box .txt {
    color: var(--bg-blk);
    font-weight: bold;
    font-size: 2rem;text-align: center;
    margin-bottom: 2rem;
}

@media screen and (max-width:960px) {
    #contact .ttl__box .txt {
        font-size: 2rem;
        text-align: left;
    }
}

#contact .ttl {
    font-size: 2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.form-submit input[type="submit"].btn {
    display: inline-block;
    margin: 0rem auto 2.5rem auto;
    padding: 1.5rem 0;
    transition: all .3s;
    width: 100%;
    font-size: .9rem;
    max-width: 320px;
}

.form-submit input[type="submit"].btn-1 {
    position: relative;
    background: linear-gradient(88deg, var(--accent) 21%, #F26022 100%);
    border: 1px solid var(--accent);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: .15em;
    border-radius: 50px;
}

.form-submit input[type="submit"].btn-1:hover {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    background-color: #fff;
}

input[type="submit"].btn-1.wpcf7-submit:disabled {
    background: #F6F6F6;
    border: 1px solid #F6F6F6;
}


input[type="submit"].btn-1:hover.wpcf7-submit:disabled {
    background: none;
    border: 1px solid #F6F6F6;
    color: #fff;
    background-color: #F6F6F6;
}

/* ----inner---- */
.cv__inner {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.screen-reader-response {
    display: none;
}

.form__bg {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

form tbody {
    display: flex;
    flex-direction: column;
}

form tbody .colmn {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

table {
    width: -webkit-fill-available;
    /* max-width: 600px; */
    margin: auto;
}

#contact .check {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.check>span {
    margin-left: inherit;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
    content: none;
}

.accept-area>p {
    display: inline-flex;
    margin-bottom: 3rem;
}

.wpcf7-list-item-label,
.spam-check {
    font-size: 1rem;
    margin-left: .5rem;
    width: calc(100% - 40px);
    white-space: nowrap;
}

.wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required.verticallist.check .wpcf7-list-item label {
    display: flex;
    justify-content: center;
    align-items: center;
}

span.required {
    background: var(--accent);
    color: #FFF;
    font-size: .8rem;
    padding: .2rem .5rem;
    margin-left: .5rem;
    vertical-align: 3px;
    border-radius: 3px;
}

span.form-head {
    display: inline-block;
    /* margin-bottom: .5rem; */
    font-size: 1.2rem;
    font-weight: 700;
}

.some-check {
    background: #E2E2E2;
    color: #707070;
    font-size: 0.8rem;
    padding: .2rem .5rem;
    margin-left: 10px;
    vertical-align: 3px;
    border-radius: 9999px;
}

.check input[type="checkbox"],
#contact input[type="checkbox"].spam1,
input[type="checkbox"]#accept-menu {
    height: 35px;
    width: 35px;
    vertical-align: -12px;
    border-radius: 50px;
    background-color: #fff;
    border: #333 1px solid;
}

.check input[type="checkbox"]::before,
#contact input[type="checkbox"].spam1::before,
input[type="checkbox"]#accept-menu::before {
    display: block;
    content: "✓";
    line-height: 1;
    text-align: center;
    font-size: 25px;
    color: var(--accent);
    opacity: 0;
    transition: all 0.2s ease-in;
}

.check input[type="checkbox"]:checked::before,
#contact input[type="checkbox"]:checked.spam1::before,
input[type="checkbox"]:checked#accept-menu::before {
    opacity: 1;
}

.wpcf7 select,
input[type="text"].form-list,
input[type="email"].form-list,
input[type="tel"].form-list {
    background-color: #fff;
    border: #ccc 1px solid;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 3px;
    width: 100%;
}

textarea {
    background-color: #fff !important;
    border: #ccc 1px solid !important;
    padding: 0.8em 1.5em !important;
    max-height: 250px !important;
    overflow: scroll !important;
    text-indent: 0 !important;
    border-radius: 3px !important;
    width: 100% !important;
}

span.wpcf7-not-valid-tip {
    line-height: 1.5;
    font-size: .7rem;
    text-align: left;
    padding-top: .4rem;
    padding-bottom: .4rem;
    border-radius: 5px;
    color: var(--accent);
    position: relative;
    padding-left: 0;
    margin-left: 0;
}

span.wpcf7-not-valid-tip:before {
    padding-left: 1.2rem;
    background: url(https://cnctor.jp/wp-content/themes/new-cnctor/assets/img/validation-icon.svg) no-repeat left;
    content: "";
    display: inline-block;
    vertical-align: bottom;
    height: 17px;
    width: 17px;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
    border: none !important;
    background: initial;
    color: #313131;
    margin: 0;
    font-weight: 300;
    border-radius: 50px;
    font-size: 0.8rem;
    padding: 0.7rem 1rem 0.8rem !important;
}

/*見出し欄*/
.inquiry th>p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: 5px;
    font-size: 14px;
    color: #444;
}

.any {
    font-size: .8rem;
    padding: 5px;
    background: #C1C1C1;
    color: #fff;
    border-radius: 2px;
    margin-right: 5px;
    position: relative;
    bottom: 1px;
    margin-left: 0.5rem;
}

/*必須の調整*/
.haveto {
    font-size: 7px;
    padding: 5px;
    background: var(--accent);
    color: #fff;
    border-radius: 2px;
    margin-right: 5px;
    position: relative;
    bottom: 1px;
}

.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
    border: #c0c0bf 1px solid;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.select-box {
    position: relative;
}

.select-box::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: black transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-submit input[type="submit"],
.wpcf7 .wpcf7-submit:disabled {
    cursor: pointer;
}

.form-submit {
    display: grid;
    place-items: center;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 0em;
    color: var(--accent);
    font-weight: 700;
    background: initial;
}

.check-list .wpcf7-form-control-wrap .wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.5rem;
}

.accept-wrap {
    text-align: center;
}

.accept-area>p>a {
    margin-left: .5rem;
}

.check-list input[type="checkbox"],
input[type="checkbox"]#accept-menu {
    height: 25px;
    width: 25px;
    vertical-align: inherit;
    border-radius: 3px;
    border: #c0c0bf 1px solid;
}

@media screen and (min-width: 600px) {
    .wpcf7 form .wpcf7-response-output {
        margin: 2em 0.5em 0em;
        color: var(--accent);
        font-weight: 700;
        font-size: 1.2rem;
    }
}

#thanks .thank-img {
    width: 500px;
}

.sub-txt {
    color: var(--gray);
}

label.file {
    font-weight: 100;
    position: relative;
}

label.file .wpcf7-form-control-wrap {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(0%, -100%);
    opacity: 0;
    z-index: 1;
}

/* label.file .wpcf7-form-control-wrap:hover ~ span.filebutton {
    border: 1px solid var(--wht);
    color: var(--wht);
    background: var(--accent);
} */

span.filebutton {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    background: var(--wht);
    border: 1px solid var(--accent);
    margin: 4px 0 0 0;
    padding: 4px 20px;
    border-radius: 16px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
    font-weight: bold;
}

/* span.filebutton:hover {
    border: 1px solid var(--wht);
    color: var(--wht);
    background: var(--accent);
} */

input[type=file] {
    position: relative;
    margin: 0px 0 0 -14px;
    font-size: 13px;
}

input[type=file]:focus {
    outline: none;
}

input[type=file]::before {
    content: "添付ファイル：";
    position: absolute;
    background: #fff;
    font-size: 13px;
    width: 100%;
    height: 26px;
    line-height: 1.8;
    text-align: right;
}

/*====================================*/
/* tab */
/*====================================*/
/*tabの形状*/
.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--gray);
}

.tab li a {
    position: relative;
    display: block;
    margin: 0 2px;
    padding: 10px 20px;
    font-weight: bold;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
    color: var(--accent);
}

.tab li.active a::before {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    background: var(--accent);
    width: 100%;
    height: 3px;
}

/*エリアの表示非表示と形状*/
.area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    padding: 50px 0px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (min-width: 600px) {
    #mouse-stalker {
        pointer-events: none;
        position: fixed;
        top: -10px;
        left: -10px;
        width: 20px;
        height: 20px; 
        background: rgba(255, 90, 95, 0.5);
        border-radius: 50%;
        transform: translate(0, 0);
        transition: transform 0.2s;
        transition-timing-function: ease-out;
        z-index: 9999;
    }
    
    #mouse-stalker.is_active {
        top: -40px;
        left: -40px;
        width: 80px;
        height: 80px;
        transition: 0.2s;
        background: rgba(255, 201, 203, 0.5);
        border: solid 1px var(--accent);
    }
    
    #mouse-stalker.is_active::before {
        content: "MORE";
        white-space: nowrap;
        color: var(--wht);
        font-size: .8rem;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
}