﻿@charset "utf-8";
/*-------------------------*/
/*  reset.css
/*-------------------------*/
* {
    margin: 0;
    padding: 0;
}
*,*:before,*:after {
    box-sizing: border-box;
}
*:where(:not(fieldset, progress, meter)) {
    border-width: 0;
    border-style: solid;
    background-origin: border-box;
    background-repeat: no-repeat;
}
html {
    block-size: 100%;
    -webkit-text-size-adjust: none;
}
@media (prefers-reduced-motion:no-preference) {
    html:focus-within {
        scroll-behavior: smooth;
    }
}
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeSpeed;
    min-block-size: 100%;
}
*:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block;
}
*:where(img, svg, video) {
    block-size: auto;
    max-inline-size: 100%;
}
*:where(svg) {
    stroke: none;
    fill: currentColor;
}
*:where(svg):where(:not([fill])) {
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
*:where(svg):where(:not([width])) {
    inline-size: 5rem;
}
*:where(input, button, textarea, select),*:where(input[type="file"]):-webkit-file-upload-button {
    color: inherit;
    font: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
}
*:where(textarea) {
    resize: vertical;
}
@supports (resize:block) {
    *:where(textarea) {
        resize: block;
    }
}
*:where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
}
h1 {
    font-size: 2em;
}
*:where(ul, ol) {
    list-style-position: inside;
}
*:where(ul, ol)[role="list"] {
    list-style: none;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
*:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
    cursor: pointer;
    touch-action: manipulation;
}
*:where(input[type="file"]) {
    cursor: auto;
}
*:where(input[type="file"]):-webkit-file-upload-button,*:where(input[type="file"]):file-selector-button {
    cursor: pointer;
}
@media (prefers-reduced-motion:no-preference) {
    :focus-visible {
        transition: outline-offset 145ms cubic-bezier(.25, 0, .4, 1);
    }
    *:where(:not(:active)):focus-visible {
        transition-duration: 0.25s;
    }
}
*:where(:not(:active)):focus-visible {
    outline-offset: 5px;
}
*:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"]),*:where(input[type="file"]):-webkit-file-upload-button,*:where(input[type="file"]):file-selector-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    text-align: center;
}
*:where(button, button[type], input[type="button"], input[type="submit"], input[type="reset"])[disabled] {
    cursor: not-allowed;
}html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,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,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
}
body {
    line-height: 1;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote,q {
    quotes: none;
}
blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}
img {
    max-width: 100%;
    display: inline-block;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input,select {
    vertical-align: middle;
}
ul {
    list-style: none;
}
.center{
    text-align: center;
}

a,a:after {
    -webkit-transition: all 0.3s 0s ease;
    -moz-transition: all 0.3s 0s ease;
    transition: all 0.3s 0s ease;
}

a:hover {
    opacity: 0.9;
}

/*  cols     */
.col4,
.col3,
.col2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    justify-content: flex-start;
}

/*  col2     */
.col2 {
    margin-right: -14px;
}

.col2>* {
    width: calc(50% - 15px);
    margin-right: 15px;
}

.col2>*:nth-child(n+3) {
    margin-top: 15px;
}

/*  col3     */
.col3 {
    margin-right: -20px;
}

.col3 img {
    width: 100%;
}

.col3>* {
    width: calc(33% - 15px);
    margin-right: 15px;
}

.col3>*:nth-child(3n) {
    margin-right: 15px;
}

.col3>*:nth-child(n+4) {
    margin-top: 19px;
}

/*  col4     */
.col4>* {
    width: calc(25% - 15px);
    margin-right: 15px;
}

.col4>*:nth-child(4n) {
    margin-right: 0px;
}

.col4>*:nth-child(n+5) {
    margin-top: 19px;
}

.inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.is-rev {
    flex-direction: row-reverse
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}