@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,
picture,
footer,
header,
menu,
nav,
main,
section,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

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

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #271e1b;
}

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%; */
}

html.active {
    overflow-y: hidden;
}

body {
    font-size: 16px;
    font-weight: normal;
    background: #fff;
    color: #1b1b1b;
    font-family: "Yu Gothic Medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS PGothic", sans-serif;
    margin: auto;
    min-width: auto;
    position: relative;
}

p,
li,
dt,
dd,
h3,
h4,
h5,
span {
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.075em;
}

/*----------------------------
  layout
-----------------------------*/
.inner {
    max-width: calc(1280px + 2%);
    margin: 0 auto;
    padding: 0 1%;
}

.inner__small {
    max-width: calc(960px + 2%);
    margin: 0 auto;
    padding: 0 1%;
}

.inner__mid {
    max-width: calc(1400px + 2%);
    margin: 0 auto;
    padding: 0 1%;
}

.inner__large {
    max-width: calc(1720px + 2%);
    margin: 0 auto;
    padding: 0 1%;
}

/*----------------------------
  text
-----------------------------*/
/* @font-face {
    font-family: 'agencyfb';
    src: url('../font/AgencyFB-Bold.ttf')format('truetype');
} */

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

    .sponly {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 1.4rem;
        min-width: auto;
    }
    .inner {
        padding: 0 3%;
    }
    .inner__small {
        padding: 0 3%;
    }
    .inner__mid {
        padding: 0 3%;
    }
    .inner__large {
        padding: 0 3%;
    }
    .sponly {
        display: none;
    }
}

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

    .pcbr {
        display: none;
    }
}

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

    .spbr {
        display: block;
    }

    .pcbr {
        display: none;
    }

    .inner {
        padding: 0 5%;
    }

    .inner__mid {
        padding: 0 5%;
    }

    .inner__large {
        padding: 0 5%;
    }

    .sponly {
        display: block;
    }

    .spnone {
        display: none;
    }
}

/*----------------------------
scroll animation
-----------------------------*/
/* のびる背景 */

/*背景色が伸びて出現 */
.active.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0;
    display: block;
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*中の要素*/
.bgappear {
    opacity: 0;
    display: block;
}

.active .bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 0.5s;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
}

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

    100% {
        opacity: 1;
    }
}

/*--------- 左から --------*/
.bgLRextend::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #1f7adb;
    /*伸びる背景色の設定*/
}

.active.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    background-color: #1f7adb;
    z-index: 9;
    /*伸びる背景色の設定*/
}

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

    1% {
        opacity: 1;
    }

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

    50.001% {
        transform-origin: right;
        opacity: 1;
    }

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

/*--------- 右から --------*/
.bgRLextend::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #223a70;
    /*伸びる背景色の設定*/
}

.active.bgRLextend::before {
    animation-name: bgRLextendAnime;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    background-color: #223a70;
    /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
    0% {
        transform-origin: right;
        transform: scaleX(0);
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

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

    50.001% {
        transform-origin: left;
        opacity: 1;
    }

    100% {
        transform-origin: left;
        transform: scaleX(0);
        opacity: 1;
    }
}

/*============================
	text-animation
============================*/
.smoothText {
    overflow: hidden;
    display: block;
}

/* アニメーションで傾斜がついている文字列を水平に戻す*/
.smoothTextTrigger {
    transition: 1s ease-in-out;
    transform: translate3d(0, 100%, 0) skewY(12deg);
    transform-origin: left;
    display: block;
}

.smoothTextTrigger.smoothTextAppear {
    transform: translate3d(0, 0, 0) skewY(0);
}

/*============================
	parts
============================*/

.marker {
    text-decoration: underline;
    text-decoration-color: #fff21a;
    text-decoration-thickness: 10px;
    text-decoration-skip-ink: none;
    text-underline-offset: -14px;
}

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

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

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

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

.wow {
    animation-duration: 1s;
}

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

@media screen and (max-width: 767px) {
    .marker {
        text-decoration-thickness: 8px;
        text-underline-offset: -10px;
    }
}
