@charset "UTF-8";
/* リセット
---------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
div {
  display: block;
  box-sizing: border-box;
}

body {
  font-family:
    "Noto Sans TC", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

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

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

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

main {
  display: block;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

body {
  color: #000;
  background: #fff;
}
body a {
  transition: 0.3s;
}

@media screen and (min-width: 769px) {
  .ani-zoom {
    transition: 0.3s;
  }
  .ani-zoom:hover {
    transform: scale(1.3);
    position: relative;
    z-index: 100;
  }
  .ani-zoom.sp:hover {
    cursor: default;
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .ani-zoom:hover {
    cursor: pointer;
  }
}

.modal-card {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal-card {
    transition: opacity 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: -1;
    padding: 10vh 20px 0;
    display: block;
    text-align: center;
    opacity: 0;
  }
  .modal-card > img {
    width: 100%;
    max-width: 400px;
  }
  .modal-card.is-show {
    opacity: 1;
    z-index: 9999;
  }
}

/*header
  ----------------------------------------*/
header.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4000;
}

.header-logo > a {
  display: inline-block;
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .header-logo > a {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .header-logo > a {
    width: 170px;
  }
}
.header-logo > a:hover {
  opacity: 0.6;
}

/*footer
  ----------------------------------------*/
.footer {
  line-height: 14px;
  font-size: 14px;
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer {
    font-size: 16px;
  }
}

.footer .footerWrapper {
  max-width: 1010px;
  margin: 0 auto;
  padding: 40px 0 30px;
}

@media (max-width: 768px) {
  .footer .footerWrapper {
    padding: 30px 0 50px;
  }
}

.footer .footerWrapper .siteLink {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .footer .footerWrapper .siteLink {
    margin-bottom: 18px;
  }
}

.footer .footerWrapper .siteLink ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  color: #adadad;
}

@media (max-width: 768px) {
  .footer .footerWrapper .siteLink ul {
    flex-wrap: wrap;
  }
}

.footer .footerWrapper .siteLink .siteLinkItem {
  margin: 0 22px;
}

@media (max-width: 768px) {
  .footer .footerWrapper .siteLink .siteLinkItem {
    margin: 0 22px 22px;
  }
}

.footer .footerWrapper .siteLink .siteLinkItem a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer .footerWrapper .siteLink .siteLinkItem a {
    color: #adadad !important;
    display: block;
  }
}

.footer .footerWrapper .siteLink .siteLinkItem a:hover {
  text-decoration: underline;
}

.footer .footerWrapper .outerSiteLink {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer .footerWrapper .outerSiteLink {
    margin-bottom: 20px;
  }
}

.footer .footerWrapper .outerSiteLink ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer .footerWrapper .outerSiteLink ul {
    display: block;
    text-align: center;
  }
}

.footer .footerWrapper .outerSiteLink ul .siteLinkItem {
  margin: 0 33px;
  position: relative;
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer .footerWrapper .outerSiteLink ul .siteLinkItem {
    border-top: 1px solid #696969;
    margin: auto;
  }
}

.footer .footerWrapper .outerSiteLink ul .siteLinkItem a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer .footerWrapper .outerSiteLink ul .siteLinkItem a {
    display: block;
    padding: 32px 0;
  }
}

.footer .footerWrapper .outerSiteLink ul .siteLinkItem a:hover {
  color: #adadad;
}

.footer .footerWrapper .outerSiteLink ul .siteLinkItem a:hover svg {
  fill: #adadad;
}

.footer .footerWrapper .outerSiteLink ul .siteLinkItem a svg {
  margin-left: 28px;
  display: inline-block;
  width: 8px;
  height: 12px;
  fill: #fff;
}

@media (max-width: 768px) {
  .footer .footerWrapper .outerSiteLink ul .siteLinkItem:nth-last-of-type(1) {
    border-bottom: 1px solid #696969;
  }
}

.footer .footerWrapper .note {
  font-size: 10px;
  color: #676767;
}

@media (max-width: 768px) {
  .footer .footerWrapper .note {
    padding: 0 20px;
  }
}

.footer .footerWrapper .note p {
  margin-bottom: 3px;
  margin-top: 0;
}

@media (max-width: 768px) {
  .footer .footerWrapper .note p {
    line-height: 16px;
  }
}
