@charset "UTF-8";

/* 変数css
----------------------- */
/* -----------------------
変数
----------------------- */
/* mixin
----------------------- */
/* ベースcss
----------------------- */
/* -----------------------
独自リセット
----------------------- */
html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    /* font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Sogoe UI", Verdana, "メイリオ",Meiryo, sans-serif; */
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    background-color: #fff;
    min-width: 1280px;
}

@media (max-width: 640px) {
    body {
        min-width: 100%;
    }
}

/* -----------------------
共通
----------------------- */
.inner {
    width: 1160px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .inner {
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section {
    margin: 0 0 100px;
}

@media screen and (max-width: 640px) {
    .section {
        margin-bottom: 50px;
    }
}

.secTtitle {
    font-family: "HGP創英角ｺﾞｼｯｸUB", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    background-color: #fff;
    border-top: 8px solid #ff5900;
    border-bottom: 1px solid #fe9d2e;
    color: #473c39;
    font-size: 5.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 100px;
    padding: 10px 0;
    position: relative;
}

.secTtitle>span {
    color: #ff5900;
    font-size: 7.5rem;
    font-weight: 700;
}

.secTtitle::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.3px 10px 0 10px;
    border-color: #ff5900 transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 640px) {
    .secTtitle {
        font-size: 1.5rem;
        margin-bottom: 50px;
    }

    .secTtitle>span {
        font-size: 2.5rem;
    }

    .secTtitle::before {
        border-width: 13px 10px 0 10px;
    }
}

.pcBr {
    display: block;
}

.spBr {
    display: none;
}

@media (max-width: 640px) {
    .pcBr {
        display: none;
    }

    .spBr {
        display: block;
    }
}

.pageLink {
    width: 0 !important;
    height: 0;
    padding-top: 50px;
    margin-top: -50px;
    display: block;
}

/*
レイアウト
——————————————————————*/
/* 2カラム */
.col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    justify-content: space-around;
}

@media (max-width: 640px) {
    .col2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.col2 .card {
    width: 45%;
    margin-bottom: 80px;
}

@media (max-width: 640px) {
    .col2 .card {
        width: 100%;
        margin-bottom: 50px;
    }
}

/*
ボタン
——————————————————————*/
.btn {
    background-color: #3e89e4;
    color: #fff;
    font-size: 5rem;
    padding: 20px 0px;
    width: 1160px;
    text-align: center;
}

@media (max-width: 640px) {
    .btn {
        font-size: 1.5rem;
        width: 100%;
    }
}

/* ボタンラッパー */
.btnWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

@media screen and (max-width: 640px) {
    .btnWrap {
        margin: 30px 0 0;
    }
}

/*
media
——————————————————————*/
/* 偶数番目はテキスト・画像のレイアウトを反転 */
/* .inner .media:nth-of-type(even) > .media__col2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 640px) {
  .inner .media:nth-of-type(even) > .media__col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
} */

.media {
    background-color: #fff;
    border-top: 10px solid #0378d5;
    padding: 60px 40px 40px;
    margin-top: 50px;
    margin-bottom: 70px;
    position: relative;
}

.media::before {
    content: '01';
    color: #0378d5;
    font-size: 15rem;
    letter-spacing: 10px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(10%, -20%);
}

.media:nth-of-type(2)::before {
    content: '02';
}

.media:nth-of-type(3)::before {
    content: '03';
}

@media (max-width: 640px) {
    .media {
        padding: 20px;
        margin-top: 0;
        margin-bottom: 50px;
    }

    .media::before {
        font-size: 5rem;
    }
}

.media__col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 640px) {
    .media__col2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.media__desc {
    width: 48%;
}

@media (max-width: 640px) {
    .media__desc {
        width: 100%;
    }
}

.media__desc span {
    color: #ff803e;
    font-size: 3rem;
    font-weight: 700;
}

.media__title {
    font-family: "HGP創英角ｺﾞｼｯｸUB", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 3rem;
    color: #473c39;
    margin-bottom: 20px;
}

.media__title>strong {
    font-size: 5.5rem;
    color: #ff5900;
    font-weight: 700;
}

.media__title>span {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 2rem;
}

@media (max-width: 640px) {
    .media__title {
        font-size: 2rem;
        margin-top: 10px;
    }

    .media__title>strong {
        font-size: 3rem;
    }
}

.media__subTitle {
    border: 1px solid #0378d5;
    border-left: 8px solid #0378d5;
    color: #0378d5;
    font-size: 1.8rem;
    padding: 5px 20px;
    margin-bottom: 15px;
    list-style: 1.5;
}

.media__subTitle>strong {
    color: #ff803e;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    vertical-align: bottom;
}

@media (max-width: 640px) {
    .media__subTitle {
        font-size: 1.6rem;
    }
}

p.txt {
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.indent-1 {
    padding-left: 1em;
    text-indent: -1em;
}

@media (max-width: 640px) {
    p.txt {
        font-size: 1.4rem;
    }
}

.txt2Col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.media__img {
    width: 50%;
}

@media (max-width: 640px) {
    .media__img {
        width: 100%;
    }
}

.media__img>img {
    width: 100%;
}

.imgCenter {
    text-align: center;
    margin-top: 20px;
}

.BAImg {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 640px) {
    .BAImg {
        flex-direction: column;
        margin-top: 20px;
    }
}

/* -----------------------
MV
----------------------- */
.mv01 source {
    width: 100%;
}

.mv01 img {
    width: 100%;
}

.mv02 {
    background: url(../images/mv_pc02_bg.jpg) no-repeat bottom center;
    background-size: 100% 100%;
    padding: 20px 0;
}

@media (max-width: 640px) {
    .mv02 {
        background: url(../images/mv_sp02_bg.jpg) no-repeat bottom center;
        background-size: cover;
    }
}

.mvBanner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 640px) {
    .mvBanner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .mvBanner>li {
        margin-bottom: 20px;
        width: 48%;
    }
}

.mv02Btn {
    display: block;
    margin: 30px auto;
}

.topMV {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px;
}

.topBanners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

.mv__lead {
    color: #fff;
    font-size: 2.5rem;
    text-align: right;
    margin: 10px 0;
}

/* -----------------------
komari
----------------------- */
/*
カード
——————————————————————*/
.card {
    position: relative;
    margin-bottom: 70px;
}

.card>a:hover {
    display: block;
    opacity: 1;
    /* box-shadow: 0px 0px 5px 3px rgba(0,0,0,.3); */
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, .3));
    height: 100%;
}

.catd__no {
    border-radius: 50%;
    color: #fff;
    font-size: 2.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.catd__no>span {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-size: 3rem;
    text-align: center;
    margin-top: -30px;
}

.card__title {
    font-size: 3rem;
    text-align: center;
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
}

.card__title::before {
    content: '';
    width: 50%;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
}

@media (max-width: 640px) {
    .card__title {
        font-size: 1.8rem;
    }
}

.card__contents {
    padding: 20px;
}

.card__img {
    text-align: center;
    margin-bottom: 20px;
}


.card__topImg>img {
    width: 100%;
}

.card__txt {
    font-size: 2rem;
    padding: 10px 50px 70px;
    color: #232323;
    background-color: #f1e9c4;
    height: 300px;
    position: relative;
}

.card2 .card__txt {
    height: 400px;
}

.card__txt::before {
    /* content: ''; */
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #d2c37c transparent;
}

@media (max-width: 640px) {
    .card__txt {
        font-size: 1.6rem;
        height: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .card2 .card__txt {
        height: 100%;
    }
}

/* 各カードの色 */
.card:nth-of-type(2) .card__txt {
    background-color: #e3f1d2;
}

.card:nth-of-type(2) .card__txt::before {
    border-color: transparent transparent #a6c97b transparent;
}

.card:nth-of-type(3) .card__txt {
    background-color: #f7dddd;
}

.card:nth-of-type(3) .card__txt::before {
    border-color: transparent transparent #d79b9b transparent;
}

.card:nth-of-type(4) .card__txt {
    background-color: #d7eaf1;
}

.card:nth-of-type(4) .card__txt::before {
    border-color: transparent transparent #89b9ca transparent;
}





/* -----------------------
kaiketsu
----------------------- */
/* 各カードの色 */
.card2.--bgYellow .card__txt {
    background-color: #ffe464;
}

.card2.--bgYellow .card__txt::before {
    border-color: transparent transparent #edc509 transparent;
}

.card2.--bgGreen .card__txt {
    background-color: #b0e86f;
}

.card2.--bgGreen .card__txt::before {
    border-color: transparent transparent #80d71b transparent;
}

.card2.--bgPink .card__txt {
    background-color: #f7a4a4;
}

.card2.--bgPink .card__txt::before {
    border-color: transparent transparent #fa7979 transparent;
}

.card2.--bgBlue .card__txt {
    background-color: #76d2f8;
}

.card2.--bgBlue .card__txt::before {
    border-color: transparent transparent #21a8e0 transparent;
}


/* ボタン */
#kaiketsu01 {
    position: relative;
}

.kaiketsuBtn {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 90%;
    z-index: 1;
}

.kaiketsuBtn img {
    width: 100%;
}




/* -----------------------
voice
----------------------- */
.section.voice {
    margin-bottom: 0;
}

.voice__inner {
    background: url(../images/bg_gray_tile.jpg) repeat top left;
    padding: 50px 0;
    margin-top: -100px;
    /* タイトルのすぐ下に灰色の背景色が来るようにネガティブマージンで調整 */
}

@media (max-width: 640px) {
    .voice__inner {
        margin-top: -50px;
    }
}

.disNoneSP {
    display: block;
}

@media screen and (max-width: 640px) {
    .disNoneSP {
        display: none;
    }
}

.disSP {
    display: none;
}

@media screen and (max-width: 640px) {
    .disSP {
        display: block;
    }
}

/* -----------------------
oneStop
----------------------- */
.oneStopContainer {
    background: url(../images/bg_gray_tile.jpg) repeat top left;
    width: 100%;
}

.oneStopContainer__inner {
    padding: 50px;
}

@media (max-width: 640px) {
    .oneStopContainer__inner {
        padding: 20px;
    }
}

.oneStopFlow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .oneStopFlow {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
}

.oneStopFlow__circleTxt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    background-color: #fff;
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.oneStopFlow__imgs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

@media (max-width: 640px) {
    .oneStopFlow__arrow {
        -webkit-transform: rotate(91deg);
        transform: rotate(91deg);
    }

    .oneStopFlow__imgs {
        flex-direction: column;
    }
}

.oneStopFlow__list {
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 640px) {
    .oneStopFlow__list {
        font-size: 1.6rem;
    }
}

.oneStopFlow__list>li {
    margin-bottom: .5em;
}

.oneStopLead {
    background-color: #ff5900;
    border-radius: 10px;
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    padding: 30px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 640px) {
    .oneStopLead {
        font-size: 1.4rem;
    }
}

/* -----------------------
demo
----------------------- */
.demo__txt {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 640px) {
    .demo__txt {
        font-size: 1.4rem;
    }
}


/* -----------------------
copyright
----------------------- */
.copyright {
    font-size: 1.1rem;
    text-align: center;
    padding: 10px 0;
    background-color: #0067B6;
    color: #fff;
}

@media screen and (max-width: 640px) {
    .copyright {
        padding-bottom: 60px;
    }
}


/* -----------------------
stickyBanner
----------------------- */
.stickyBanner {
    position: fixed;
    z-index: 1;
    bottom: 200px;
    right: 0px;
    font-size: 12px;
    text-align: center;
    width: 60px;
    height: 227px;
    padding: 0;
}

@media screen and (max-width: 640px) {
    .stickyBanner {
        display: none;
    }
}

.stickyBanner>a {
    padding: 20px 0 0 0;
    width: 60px;
    height: 227px;
    display: block;
    background-color: #5CA611;
    position: relative;
}

.stickyBanner>a::after {
    margin-top: 19px;
    display: block;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 36px 0px 0 60px;
    border-color: #5CA611 transparent transparent transparent;
}


/* -----------------------
spContactBtn
----------------------- */
.spContactBtn {
    display: none;
}

@media screen and (max-width: 640px) {
    .spContactBtn {
        display: block;
    }

    .spContactBtn>a {
        letter-spacing: normal;
        /* width: 210px; */
        width: 100%;
        height: 60px;
        border-right: 1px solid #fff;
        display: inline-block;
        background-color: #5CA611;
        vertical-align: top;
        text-align: center;
        color: #fff;
        font-size: 13px;
        line-height: 60px;
        background: #5CA611 url(../images/icon_mail.png) 16px center no-repeat;
        padding-left: 40px;
        text-decoration: none;
        position: fixed;
        bottom: 0;
        left: 0;
    }

    .spContactBtn>a:hover {
        opacity: 1;
    }
}
