/* =================================
 Reset / Base
================================= */


/* Reset
---------------------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
    scroll-behavior: smooth;
}

ol,
ul {
    list-style: none;
}

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

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

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

a img {
    border: none;
}

img {
    width: 100%;
    height: 100%;
}

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

input[type=button],
input[type=submit] {
    -webkit-appearance: none;
}


/* base
---------------------------------------------------------- */

* {
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: none;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    line-height: 2;
    background-color: #fff;
    color: #222222;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 18px;
    font-size: 1.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    overflow-x: hidden;
    min-width: 1100px;
}

body.nav-open {
    height: 100%;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}

img {
    border-style: none;
    display: block;
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

a,
a img,
button {
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

a {
    display: block;
}

a:link {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:active {
    color: inherit;
}

br.pc {
    display: block;
}

br.sp {
    display: none;
}

/* clearfix
---------------------------------------------------------- */

.u-clearfix:after {
    content: "";
    clear: both;
    display: block;
}

:root {
    --white: #ffffff;
    --yellow: #ccbc51;
    --tumblr: #8f8b5b;
    --timber: #d9d8ca;
    --gray_olive: #aaa88e;
    --midnight_blue: #5d656f;
    --cultured: #f2f5f9;
    --milk_white: #f4f3ed;
    --gray: #dcdfe3;
    --dark_blue: #0f294c;
    --blue: #284b7a;
}

/* common
---------------------------------------------------------- */

.u-only_sp {
    display: none !important;
}

.u-only_pc {
    display: block !important;
}

.u-only_pctbl {
    display: table-cell !important;
}


/* footer
---------------------------------------------------------- */

.l-footer {
    padding: 22px;
    line-height: 1;
    text-align: center;
    background-color: #8c8c8c;
}

.l-footer_copyright {
    color: #fff;
    font-size: 1.3rem;
    font-size: 13px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}


/* =================================
 PC common
================================= */

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

    /* base
  ---------------------------------------------------------- */
    html {
        overflow: auto;
    }

    /* common
  ---------------------------------------------------------- */
    a:hover {
        opacity: 0.8;
    }

    /* layout
  ---------------------------------------------------------- */
    /* 1440 */
    .l-cont_l {
        width: 100%;
        margin: 0 auto;
    }

    /* 1280 */
    .l-cont_m {
        width: 100%;
        max-width: 1360px;
        padding: 0 40px;
        margin: 0 auto;
    }

    /* 1100 */
    .l-cont_s {
        width: 100%;
        max-width: 1180px;
        padding: 0 40px;
        margin: 0 auto;
    }

    /* 980 */
    .l-cont_ss {
        width: 100%;
        max-width: 1060px;
        padding: 0 40px;
        margin: 0 auto;
    }
}


/* =================================
  TAB common
================================= */


/* =================================
 SP common
================================= */

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

    /* common
  ---------------------------------------------------------- */
    br.pc {
        display: none;
    }

    br.sp {
        display: block;
    }

    .u-only_sp {
        display: block !important;
    }

    .u-only_pc {
        display: none !important;
    }

    .u-only_pctbl {
        display: none !important;
    }

    html {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    body {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.7;
        padding-bottom: 0;
        min-width: unset;
    }

    img {
        display: block;
        margin: 0 auto;
    }

    /* layout
  ---------------------------------------------------------- */
    .l-cont_l {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .l-cont_m {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .l-cont_s {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .l-cont_ss {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .l-cont_inner:not(:last-child) {
        margin-bottom: 40px;
    }

    /* footer
  ---------------------------------------------------------- */
    .l-footer {
        padding: 0;
    }

    .l-footer_copyright {
        font-size: 3.2vw;
        line-height: 40px;
    }
}

/* header
---------------------------------------------------------- */

/* スマホの時だけ改行させるクラス */
.br-sp {
    display: none;
}

@media (max-width: 768px) {
    .br-sp {
        display: block;
    }
}

/* PCの時だけ改行させるクラス */
.br-pc {
    display: block;
}

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