@charset "utf-8";

/***************************************************************************
Media Queries
****************************************************************************/

@media print, screen and (max-width: 1280px) {
}
@media only screen and (max-width: 768px) {
}

/***************************************************************************
body/html
****************************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;               /*スマートフォンの横向き時に文字が大きくなるのを防ぐ none指定は避ける*/
    -webkit-tap-highlight-color:rgba(0,0,0,0);    /*タップしたときに反転を防ぐ*/
    position: relative;                           /*test*/
}
html {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-feature-settings: "palt";                /*haltはiPad以下で不具合（強制改行される）*/
    text-align: justify;
    text-justify: inter-ideograph;
}

@media only screen and (max-width: 768px) {
html {
    font-size: 3.8vw;
}
}
@media only screen and (max-width: 414px) {
html {
    font-size: 3.86vw; /*16px÷414*100*/
    line-height: 1.4;
}
}

a {
    outline: none !important;
    text-decoration: none;
    cursor: pointer !important;
}

@media only screen and (min-width: 769px) {    /*PCのみ transition と opacity*/
a {
    /*transition: opacity 0.3s !important;*/
}
a:hover {
    opacity: 0.75 !important;
}
}

/***************************************************************************
other
****************************************************************************/

img {
    border: none;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width: 768px) {
img {
    width: 100%;
}
}

li {
    list-style-type: none !important;
}
