@charset "UTF-8";

/*============================
	html5 base style
============================*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
address,
code,
em,
img,
a,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figcaption,
figure,
footer,
header,
menu,
nav,
main,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 15px;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
menu,
nav,
main,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    transition: .5s;
    cursor: pointer;
}
a:hover{
    opacity: .9;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select {
    vertical-align: middle;
}

input,
select,
button {
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

input:focus,
select:focus,
button:focus {
    outline: 0;
}

/*============================
    module style
============================*/
html {
    overflow: auto;
    font-size: 62.5%;
    overscroll-behavior: none;
}

body {
    font-size: 1.6rem;
    background: #fff;
    color: #111;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'MS Ｐゴシック', 'MS PGothic', sans-serif;
    font-style: normal;
    font-weight: 400;
    margin: auto;
    overflow: hidden;
    position: relative;
}

p,
li,
dd,
dt {
    font-weight: 400;
    letter-spacing: .05em;
}

html.active {
    overflow: hidden;
}




/*============================
    color
============================*/
.bg__wh {
    background: #fff;
}

.bg_lg {
    background: -moz-linear-gradient(90deg, #b38581, #8d5f66);
    background: -webkit-linear-gradient(90deg, #b38581, #8d5f66);
    background: linear-gradient(90deg, #b38581, #8d5f66);
}

.bg_lg02 {
    background: -moz-linear-gradient(90deg, #ede4e4, #f7f4f4);
    background: -webkit-linear-gradient(90deg, #ede4e4, #f7f4f4);
    background: linear-gradient(90deg, #ede4e4, #f7f4f4);
}

.b_shadow {
    box-shadow: 0px 3px 20px rgba(175, 213, 163, .38);
}

/*----------------------------
  text
-----------------------------*/

p {
    line-height: 1.6em;
}

.bold {
    font-weight: bold;
}

.al-center {
    text-align: center;
}

.al-right {
    text-align: right;
}

.al-left {
    text-align: left;
}

.wr-vt {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.color-ma {
    color: #D02620;
}


.font-en {
    font-family: futura-pt-bold, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.font-en-mid {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.font-en02 {
    font-family: din-condensed, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.font-en03 {
    font-family: minion-pro, serif;
    font-weight: 400;
    font-style: italic;
}

.font-min {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.font-ex {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.fuchidori {
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

.fuchidori_bk {
    text-shadow: 1px 1px 0 #111, -1px -1px 0 #111, -1px 1px 0 #111, 1px -1px 0 #111, 0px 1px 0 #111, 0-1px 0 #111, -1px 0 0 #111, 1px 0 0 #111;
}

/*----------------------------
  border
-----------------------------*/


/*----------------------------
  space
-----------------------------*/
.m-auto {
    margin: auto;
}


/*----------------------------
  layout
-----------------------------*/
.inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1%;
}

.inner__large {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1%;
}

.flex {
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
}

.flexwrap {
    flex-wrap: wrap;
    width: 100%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-45 {
    width: 45%;
}

.w-70 {
    width: 70%;
}

.w-full {
    width: 100%;
}

.block {
    display: block;
}

.block-center {
    display: block;
    margin: auto;
}

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

.jc-around {
    justify-content: space-around;
}

.jc-center {
    justify-content: center;
}

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

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

.fd-reverse {
    flex-direction: row-reverse;
}

.icon:before {
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
}

.of-hidden {
    overflow: hidden;
}

.wp-nowrap {
    white-space: nowrap;
}

/*----------------------------
  position
-----------------------------*/
.ps-r {
    position: relative;
}

.ps-a {
    position: absolute;
}

.tf-xy {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tf-x {
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

/*----------------------------
  list
-----------------------------*/
.list-style {
    list-style: disc;
}

.scale {
    transition: 0.5s;
}

.scale:hover {
    transform: scale(1.1);
    transition: 0.5s;
}

.spbr {
    display: none;
}

/*----------------------------
  responsive
-----------------------------*/
@media screen and (min-width:769px) {
    .sp {
        display: none;
    }

    .sponly {
        display: none;
    }
}

@media screen and (max-width:1024px) {
    .inner {
        padding: 0 3%;
    }

    .inner__large {
        padding: 0 3%;
    }
}

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

    .pcbr {
        display: none;
    }

    .sponly {
        display: none;
    }

}

@media screen and (max-width:767px) {
    body {
        font-size: 1.4rem;
    }

    .spbr {
        display: block;
    }

    .sponly {
        display: block;
    }
    .spnone{
        display: none;
    }

    .pcbr {
        display: none;
    }

    .inner {
        padding: 0 5%;
    }

    .inner__large {
        padding: 0 5%;
    }

    p {
        font-weight: 400;
    }
}



/*========= 背景色の動きのCSS ===============*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}

/*背景色が伸びて出現 共通*/
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
    z-index: 9999;
}

.fv.bgextend {
    overflow: unset;
}


@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
    height: 100%;
    display: block;

}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*--------- 左から出現 --------*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #1337e6;
    /*伸びる背景色の設定*/
    z-index: 9999;
}

@keyframes bgLRextendAnime01 {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }

    50% {
        transform-origin: left;
        transform: scaleX(1);
    }

    50.001% {
        transform-origin: right;
    }

    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}


/*============================
	parts
============================*/
/* btn ▼*/
.link__btn00 a {
    display: block;
    max-width: 490px;
    width: 50%;
    margin: 0 auto;
    transition: .5s;
}
.link__btn00 a:hover{
    opacity: .8;
}
.link__btn00  img {
    transform: scale(1);
    transition: .5s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.link__btn00:hover img {
    /*hoverした時の変化*/
    transform: scale(0.97);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

.link__btn01 {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.6rem;
    letter-spacing: .02em;
    color: #D02620;
    background: url(../img/cmn/btn_arw_red.png) no-repeat center right 10px;
    padding-right: 120px;
    transition: .5s;
}



.link__btn02 a {
    display: block;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: .1em;
    border-bottom: solid 1px #Fff;
    padding-bottom: 8px;
    background: url(../img/cmn/link_btn_wh@2x.png) no-repeat center right 5%/25px;
}

.link__btn02 a:hover {
    background-position: center right 3%;
    opacity: .8;
}

.link__btn03 a {
    display: block;
    width: 370px;
    max-width: 100%;
    line-height: 74px;
    border: solid 3px #d81626;
    background: #fff;
    border-radius: 37px;
    font-size: 2.5rem;
    letter-spacing: -.02em;
    font-weight: bold;
    text-align: center;
    color: #d81626;
    margin: 0 auto;
}

.link__btn03 a:hover {
    opacity: .8;
    background: #d81626;
    color: #fff;

}

.link__btn04 a {
    display: block;
    width: 330px;
    line-height: 40px;
    max-width: 100%;
    background: #fff;
    color: #D02620;
    border: solid 1px #d81626;
    font-size: 1.4rem;
    letter-spacing: .2em;
    text-align: center;
    position: relative;
}

.link__btn04 a::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    background: #d81626;
    top: 50%;
    right: 0;
    transition: .5s;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 9;
}

.link__btn04 a:hover {
    opacity: .9;
    background: #d81626;
    color: #fff;
    border: solid 1px #fff;
}

.link__btn04 a:hover::before {
    width: 30px;
    background: #fff;

}

/* btn ▲*/


/* 吹き出し ▼*/
.section__pop {
    padding: 30px 3%;
    width: 100%;
    background: #f5f2e2;
    font-weight: bold;
    display: inline-block;
    position: relative;
    border-radius: 10px;
    z-index: 9;
}

.section__pop::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 26px 11px 0;
    border-color: transparent #f5f2e2 transparent transparent;
    top: 40%;
    left: -12px;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.section__pop.color02 {
    background: #e9f2f5;

}

.section__pop.color02::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 26px;
    border-color: transparent transparent transparent #e9f2f5;
    left: auto;
    right: -38px;
}

/* 吹き出し ▲*/

.marker {
    position: relative;
    z-index: 1;
}

.marker::after {
    position: absolute;
    content: "";
    background: #ffe867;
    width: 115%;
    height: 25px;
    bottom: -5px;
    left: 50%;
    z-index: -1;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

/*伸びる線*/

.stretch_border::after {
    content: "";
    width: 0;
    height: 1px;
    background: #d81626;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .7s;
}

/* hover zoom */
/*　画像の拡大　*/

.zoomIn img {
    transform: scale(1);
    transition: .5s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn:hover img {
    /*hoverした時の変化*/
    transform: scale(1.05);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

.mask {
    display: block;
    line-height: 0;
    /*行の高さを0にする*/
    overflow: hidden;
    /*拡大してはみ出る要素を隠す*/
}

@media screen and (max-width:1024px) {

    .link__btn01 {
        font-size: 2rem;
        background-size: 60px;
        padding-right: 90px;
    }

    .link__btn02 {
        font-size: 1.4rem;
    }

    .link__btn02 a {
        font-size: 1.6rem;
        background-size: 20px;
    }

    .link__btn03 a {
        width: 280px;
        line-height: 70px;
        border: solid 3px #d81626;
        border-radius: 35px;
        font-size: 2.5rem;
    }

    .link__btn04 a {
        width: 280px;
        line-height: 40px;
        font-size: 1.2rem;
    }

    .link__btn04 a::before {
        width: 30px;
        height: 1px;
    }

    .link__btn04 a:hover::before {
        width: 20px;
        background: #fff;
    }

}

@media screen and (max-width:768px) {}

@media screen and (max-width:767px) {
    .link__btn00 a{
        width: 100%;
    }
    .link__btn01 {
        font-size: 1.6rem;
        background-size: 40px;
        padding-right: 60px;
    }

    .link__btn02 {
        font-size: 1.4rem;
    }

    .link__btn02 a {
        font-size: 1.6rem;
        background-size: 20px;
    }

    .link__btn03 a {
        width: 250px;
        line-height: 70px;
    }

    .link__btn04 a {
        width: 100%;
        line-height: 40px;
        font-size: 1.4rem;
    }

    .link__btn04 a::before {
        width: 30px;
        height: 1px;
    }

    .link__btn04 a:hover::before {
        width: 20px;
        background: #fff;
    }


}

/*============================
	index 共通パーツ
============================*/
.section__ttl {
    font-size: 7rem;
    letter-spacing: -.02em;
    line-height: 1;
    white-space: nowrap
}




@media screen and (max-width:1024px) {
    .section__ttl {
        font-size: 5rem;
    }
}

@media screen and (max-width:767px) {
    .section__ttl {
        font-size: 3.8rem;
    }

}


/*============================
	下層 共通パーツ
============================*/
.bg_border {
    background: url(../img/cmn/bg_border.png) repeat-y top center/100%;
}

.page__mv img {
    object-fit: cover;
    height: 487px;
    width: 100%;
    position: relative;
    margin-top: 95px;
}

.page__ttl {
    font-size: 2.2rem;
    color: #fff;
    text-align: center;
    letter-spacing: -.01em;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9;
    white-space: nowrap;
    width: 100%;
}

.page__ttl span {
    display: block;
}

.page__ttl .font-en {
    font-size: 5.2rem;
    display: block;
    letter-spacing: -.01em;
}

.fixed__btn {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.fixed__btn.active {
    display: block;
    animation: appear 2s 0s forwards;
    transition: .5s;
}

.fixed__btn a {
    display: block;
    width: 200px;
    height: 80px;
    background: #fff;
    padding: 15px;
    color: #00A1B8;
    font-size: 1.5rem;
    text-align: center;
}

.fixed__btn a:hover {
    background: #00A1B8;
    color: #fff;
    opacity: .9;
}

.fixed__btn .font-en {
    font-size: 2.8rem;
    font-weight: bold;
    display: block;

}

.page__sec--ttl {
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: .05em;
    text-align: center;
    margin-bottom: 40px;
}

.page__sec--ttl .font-en {
    font-size: 5.2rem;
    font-weight: bold;
    letter-spacing: -.01em;
    display: block;
    margin-bottom: 5px;
}


/*下層 パンクズ*/
.bc__wrap {
    height: 100px;
    margin-top: -1px;
    position: relative;
}

.bread-crumb {
    font-size: 1.4rem;
    white-space: nowrap;
    text-align: right;
    line-height: 100px;
    margin: 0 5%;
}

.bread-crumb a {
    color: #c7abab;
}

.bc-border {
    color: #c7abab;
}

.bc-wh {
    color: #fff;
}



@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {
    .page__mv.pc {
        display: block;
    }

    .page__mv.sp {
        display: none;
    }




}


@media screen and (max-width:767px) {
    .bg_border {
        background: url(../img/cmn/bg_border_sp.png) repeat-y center top/100%;
    }

    .page__mv.pc {
        display: none;
    }

    .page__mv.sp {
        display: block;
    }

    .page__mv img {
        height: 375px;
        margin-top: 72px;
    }

    .page__ttl {
        font-size: 1.6rem;
    }

    .page__ttl .font-en {
        font-size: 3.6rem;
        margin-bottom: 5px;
    }


    .page__sec--ttl {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .page__sec--ttl .font-en {
        font-size: 3.6rem;
    }

    .fixed__btn.active {
        display: none;
    }


}