.spi,
.spib,
.sp,
.spflex {
  display: none !important;
}

.pci {
  display: inline !important;
}

.pcib {
  display: inline-block !important;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px), print {
  .pci,
  .pcib,
  .pc {
    display: none !important;
  }
  .spi {
    display: inline !important;
  }
  .spib {
    display: inline-block !important;
  }
  .sp {
    display: block !important;
  }
  .spflex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

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 {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

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

article,
main,
details,
aside,
footer,
header,
nav,
section,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
dl,
dt,
dd,
address,
article,
main,
details,
aside,
footer,
header,
nav,
section,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
ol,
dl,
dt,
dd,
address,
small {
  display: block;
}

nav ul {
  list-style: none;
}
address{
  font-style: normal;
}
a,
span {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

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

input,
select {
  vertical-align: middle;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-overflow-scrolling: touch;
}

img {
  max-width: 100%;
  height: auto;
}

sup {
  font-size: 0.5em;
  display: inline-block;
  -webkit-transform: translate3d(0, -0.7em, 0);
  transform: translate3d(0, -0.7em, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

p {
  margin-bottom: 0;
}

/*	Base 
    ========================================== */
html,
body {
  height: 100%;
}

body {
  width: 100%;
  color: #505050;
}

input ,
select ,
textarea{
  font-family:"Noto Sans JP", ProN W3, "Hiragino Kaku Gothic ProN",  YuGothic, Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

@media screen and (max-width: 768px), print {
  body {
    padding-top: 0;
  }
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1.7s;
  animation-duration: 1.7s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fadeIn.-center {
  -webkit-animation-name: fadeInAnimeCenter;
  animation-name: fadeInAnimeCenter;
}

.fadeIn.-two {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@media screen and (max-width: 768px), print {
  .fadeIn.-two {
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
  }
}

.fadeIn.-three {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
}

@media screen and (max-width: 768px), print {
  .fadeIn.-three {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
}

/* .fadeInTrigger {
  opacity: 0;
} */

@-webkit-keyframes fadeInAnime {
  from {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInAnimeCenter {
  from {
    -webkit-transform: translate(-50%, -35%);
    transform: translate(-50%, -35%);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes fadeInAnimeCenter {
  from {
    -webkit-transform: translate(-50%, -35%);
    transform: translate(-50%, -35%);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

.fade {
  -webkit-animation-name: fadeAnime;
  animation-name: fadeAnime;
  -webkit-animation-duration: 1.7s;
  animation-duration: 1.7s;
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes rotateAnime {
  0% {
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotateAnime {
  0% {
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

.h2 {
  text-align: center;
  margin-bottom: 33.6px;
}

@media screen and (max-width: 768px), print {
  .h2 {
    margin-bottom: 32px;
  }
}

.h2 p {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 8px;
  color: #303030;
  padding-bottom: 15px;
}

@media screen and (max-width: 768px), print {
  .h2 p {
    font-size: 25px;
    letter-spacing: 5px;
    padding-bottom: 7px;
  }
}

.h2.-white p {
  color: #fff;
}

.h2.-white span {
  color: #b9b9b9;
}

.h2 span {
  display: block;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.32px;
  color: #969696;
}

@media screen and (max-width: 768px), print {
  .h2 span {
    font-size: 11px;
    letter-spacing: 0.22px;
  }
}

.link {
  display: inline-block;
  width:auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.6px;
  text-align: left;
  color: #303030;
  padding-bottom: 12px;
  border-bottom: 2px solid #000;
  position: relative;
  padding-right: 1.25em;
  padding-left: 0.2em;

}

@media screen and (max-width: 768px), print {
  .link {
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

.link:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 7px;
  border-color: transparent transparent transparent #000000;
  top: 2.5px;
  right: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.link:hover:after {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

a.add-link-style{
  font-size: 16px;
  color: #515151;
  border-bottom: 2px solid #303030;
  padding-bottom: 4px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-right: 1.25em;
  padding-left: 0.2em;
  transition: all 0.3s;
}
@media screen and (max-width: 768px), print {
  .add-link-style{
    font-size: 3.125vw;
  }
}
.add-link-style::after{
  content: "";
  margin: auto;
  position: absolute;
  top: -2px;
  bottom: 0;
  right: 2px;
  width: 0;
  height: 0;
  border-left: 6px solid #303030;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.add-link-style:hover::after{
  transform: translateX(5px);
  transition: all 0.3s;
}
.add-link-to-detail{
  width: 140px;
}