@charset "utf-8";

@font-face {
    font-family: 'SCDream3';
    src: url('../font/SCDream3.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SCDream4';
    src: url('../font/SCDream4.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SCDream5';
    src: url('../font/SCDream5.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SCDream6';
    src: url('../font/SCDream6.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SCDream7';
    src: url('../font/SCDream7.otf') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* reset ******************************* */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100vw;
    color: #333;
    font-size: 15px;
    line-height: 1.3;
    overflow-x: hidden;
    background: #fff;
    word-break: keep-all;
    letter-spacing: -1px;
    font-family: 'SCDream4', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-size: inherit;
    font-weight: normal;
}

img,
fieldset,
button {
    border: none;
    vertical-align: top;
}

input::placeholder,
textarea::placeholder {
    color: #333;
    font-size: 16px;
    font-weight: 300;
}

em,
i,
address {
    font-style: normal;
}

ul,
li {
    list-style: none;
}

a {
    color: #333;
    font-weight: normal;
    text-decoration: none;
}


/* common ******************************* */
.inner {
    width: 1200px;
    margin: 0 auto;
}

/* pc,mobile */
.pc_show {
    display: block;
}

.mobile_show {
    display: none;
}

/* title */
.title {
    color: #fff;
    font-size: 3.7em;
    font-weight: bold;
    letter-spacing: -.5px;
    font-family: 'SCDream6', sans-serif;
}

.sub_title {
    color: #fff;
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 20px;
    line-height: 1.3;
    letter-spacing: -.5px;
    font-family: 'SCDream4', sans-serif;
}
.sub_title span {
    font-weight: 500;
}

/* section_menu */
.menu {
    font-size: 1.1em;
}

.menu_text {
    font-size: 1.5em;
    font-weight: bold;
}


/* flex */
.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_center_column {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.flex_center_column_left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex_evenly {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.flex_center_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* img */
.img_width_100 {
    width: 100%;
}

.img_height_100 {
    height: 100%;
}

/* position */
.position_rel {
    position: relative;
}

.position_abs {
    position: absolute;
}

/* padding, margin */
.padding {
    padding: 8vh 20px;
}

.padding_top {
    padding-top: 8vh;
}

.padding_top_bot {
    padding: 10vh 0;
}

.padding_bot {
    padding-bottom: 8vh;
}
