@charset "UTF-8";

/* *******************************************************************************************
*
*	Base
*
******************************************************************************************* */
html.wf-loading {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
  -webkit-animation: load-fade 1s ease 0s 1 normal;
  animation: load-fade 1s ease 0s 1 normal;
}

@media all and (-ms-high-contrast: none) {

  html,
  html.wf-loading,
  html.wf-active {
    visibility: visible;
    -webkit-animation: auto;
    animation: auto;
  }
}

html,
body {
  width: 100%;
  height: 100%;
}

body,
div,
form,
input,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
hr {
  margin: 0;
  padding: 0;
}

article,
aside,
footer,
header,
nav,
section {
  margin: 0;
  padding: 0;
  display: block;
}

body {
  font-family: 'noto-sans-cjk-jp', 'Noto Sans JP', sans-serif;
  color: #595757;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: inherit;
}

a:link,
a:visited {
  text-decoration: none;
}

:focus {
  outline: none;
}

img {
  vertical-align: top;
  border: none;
}

ul {
  list-style: none;
  letter-spacing: -0.5em;
  text-align: center;
}

li {
  display: inline-block;
  list-style: none;
  text-align: center;
  letter-spacing: normal;
  /* 追加 */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  font-weight: 500;
  text-align: center;
}

a:hover {
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  transition: all .5s;
  opacity: .6;
}

.futura {
  font-family: futura-pt, 'Century Gothic', sans-serif;
  font-weight: 500;
}

.clear {
  overflow: hidden;
  _zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.fit,
.switch {
  width: 100%;
  height: auto;
}

.btn {
  display: block;
  margin: 0 auto;
  color: #ffffff;
  background: #595758;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  pointer-events: painted;
}

.btn:hover {
  opacity: 0.7;
}

.btn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2.5;
  position: relative;
}

.btn:after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transform: translate(0, -50%) rotate(225deg);
  transform: translate(0, -50%) rotate(225deg);
  position: absolute;
  right: 15px;
  top: 50%;
}

.links,
.transition {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.links:hover {
  opacity: .7;
}

.lineLink {
  text-decoration: underline !important;
}

.no-link {
  pointer-events: none !important;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.pcInline {
  display: inline-block;
}

.spInline {
  display: none;
}


@media screen and (max-width : 750px) {

  body {
    font-size: 3.75vw;
  }

  .links {
    -webkit-transition: none 0s;
    transition: none 0s;
  }

  .links:hover {
    opacity: 1;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pcInline {
    display: none;
  }

  .spInline {
    display: inline-block;
  }

}

@keyframes load-fade {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes load-fade {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}