@charset "UTF-8";

/* ***********************************
 *
 *    Ire's CSS Reset & Base
 *    https://github.com/ireade/css/blob/master/base.scss
 *
 * *********************************** */


/* Reset margin, padding, border
 * *********************************** */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
}


/* Typography
 * *********************************** */

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 1.4;
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a,
a:visited {
    color: inherit;
}


/* Layout
 * *********************************** */

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

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: inherit;
}


/* Elements
 * *********************************** */

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

ol,
ul {
    list-style: none;
}

img,
video {
    max-width: 100%;
}

img {
    border-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}


/* Attributes & states
 * *********************************** */

[hidden] {
    display: none !important;
}

[disabled] {
    cursor: not-allowed;
}

:focus:not(:focus-visible) {
    outline: none;
}


/* Utility classes
 * *********************************** */

.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    left: -9999px;
    top: -9999px;
}


/**
 * 変数やmixinなど
 */

*,
*:before,
*:after {
    margin: 0;
    scroll-behavior: auto;
}

html,
body {
    box-sizing: border-box;
    font-size: 2.6666666667vw;
    /* font-family: "Noto Sans JP", sans-serif; */
    font-family: sans-serif;
    font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
    html,
    body {
        font-size: 62.5%;
    }
}

section {
    overflow: hidden;
}

a,
a:hover {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    line-height: 1;
    outline: none;
}

a:hover {
    opacity: 0.7;
    transition: 0.2s ease-in-out;
}

img {
    vertical-align: bottom;
}

@media (min-width: 768px) and (max-width: 1200px) {
    p {
        font-size: 20px;
        font-size: 1.6666666667vw;
    }
}

@media (max-width: 768px) {
    p {
        font-size: 15px;
        font-size: 4vw;
    }
}

h1 a:hover,
footer a:hover {
    opacity: 1;
}


/*=========  lpのメインスタイル =========*/


/* メインコンテンツ
------------------------------*/

.inner {
    margin: 0 auto;
    max-width: calc(1200px + 12%);
    padding: 0 6%;
    width: 100%;
}

.inner_w {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .inner_w {
        margin: 0 auto;
        max-width: calc(1200px + 12%);
        padding: 0 6%;
    }
}

.inner-title {
    text-align: center;
    color: #3b3d8f;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.9;
    letter-spacing: 0.075em;
    padding-bottom: 3rem;
}

@media screen and (min-width: 768px) {
    .inner-title {
        font-size: 3.6rem;
        font-weight: 600;
        line-height: 1.6666666667;
        letter-spacing: 0.075em;
        padding-bottom: 5rem;
    }
}

.only-sp {
    display: block;
}

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

.sp-none {
    display: none;
}

.only-md {
    display: none;
}

@media screen and (min-width: 768px) {
    .only-md {
        display: block;
    }
}

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

.only-lg {
    display: none;
}

@media screen and (min-width: 992px) {
    .only-lg {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .lg-none {
        display: none;
    }
}

.only-xl {
    display: none;
}

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

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

.only-xxl {
    display: none;
}

@media screen and (min-width: 1400px) {
    .only-xxl {
        display: block;
    }
}

@media screen and (min-width: 1400px) {
    .xxl-none {
        display: none;
    }
}

.fadeIn1 {
    opacity: 0;
    transform: translate(0, 10%);
    transition: 1s;
}

.fadeIn2 {
    opacity: 0;
    transform: translate(0, 10%);
    transition: 2s;
}

.fadeIn3 {
    opacity: 0;
    transform: translate(0, 10%);
    transition: 3s;
}

.fadeIn1.is-show,
.fadeIn2.is-show,
.fadeIn3.is-show {
    transform: translate(0, 0);
    opacity: 1;
}