@charset "UTF-8";

/*
---------------------------------------
reset
---------------------------------------
*/
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,
button {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
}

html {
  overflow: auto;
  min-height: 100%;
  width: 100%;
  font-size: 62.5%;
}

html,
body {
  position: relative;
}

body {
  overflow: auto;
  width: 100%;
  /*min-width: 640px;*/
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

input:focus,
textarea:focus,
button:focus {
  outline: 0;
}

button,
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  box-shadow: none;
}

img {
  border: none;
}

ol,
ul {
  list-style: none;
}

p,
dt,
dd,
li {
  font-size: 1.6rem;
  line-height: 0;
}

li {
  font-size: 1.6rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table th {
  font-weight: normal;
}

caption,
th {
  text-align: left;
}

a:focus {
  outline: none;
}

p,
dd,
li,
address {
  font-style: normal;
}

body small {
  font-size: 1.2rem;
}

figure {
  line-height: 0;
}

em {
  font-weight: inherit;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .wrapper {
    margin-top: 0;
    min-width: 0;
  }
}

#container {
  position: relative;
}

body {
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #333;
  line-height: 0;
}

/* IE */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
}

/*
----------------------------------------
flex
----------------------------------------
*/
.flex {
  -js-display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}

.flex.nowrap {
  flex-wrap: nowrap;
}

.flex.reverse {
  flex-direction: row-reverse;
}

.flex.item-center {
  align-items: center;
}

.flex-column {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*
---------------------------------------
link
---------------------------------------
*/
a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

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

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/
  /*/
height: auto;
overflow: hidden;
/**/
}

*:first-child + html .clearfix {
  zoom: 1;
}

/* IE7 */
/*
---------------------------------------
common
---------------------------------------
*/
.pc {
  display: block !important;
  margin: 0 auto;
}

.sp {
  display: none !important;
}

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

.inline-sp {
  display: none !important;
}

.inner {
  max-width: 985px;
  padding: 0 20px;
  margin: 0 auto;
  word-wrap: break-word;
  word-break: break-all;
}

span {
  font-size: inherit;
  font-weight: inherit;
}

.img {
  line-height: 0;
}

picture {
  display: block;
}

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

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.trans {
  transition: all 0.2s;
}

@media screen and (max-width: 750px) {

  /*
  ----------------------------------------
  -750
  ----------------------------------------
  */
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .inline-pc {
    display: none !important;
  }

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

  .center {
    text-align: left;
  }

  .ta-c {
    text-align: center;
  }

  .wrapper {
    min-width: 100%;
  }

  .bg-fixed {
    position: fixed;
    width: 100%;
  }

  .inner {
    padding: 0 5%;
    max-width: 100%;
    margin: 0;
  }

  p,
  dt,
  dd,
  li {
    font-size: 1.4rem;
  }

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

  /* layout */
  html {
    margin-top: 0 !important;
  }

  /* flex */
  .flex {
    display: block;
  }
}

* {
  line-height: 1;
}

.wrapper {
  text-align: center;
  max-width: 1200px;
  margin-inline: auto;
}

.item-08,
.p-footer {
  position: relative;
}

.item-08__link {
  position: absolute;
  top: 360px;
  right: 100px;
  width: 192px;
  height: 192px;
}

@media (max-width: 1200px) {
  .item-08__link {
    top: 30vw;
    right: 8.5vw;
    width: 16vw;
    height: 16vw;
  }
}

.item-09__link-01 {
  position: absolute;
  top: 31px;
  right: 511px;
  width: 192px;
  height: 192px;
}

.item-09__link-02 {
  position: absolute;
  top: 31px;
  right: 57px;
  width: 192px;
  height: 192px;
}

@media (max-width: 1200px) {
  .item-09__link-01 {
    top: 2.5vw;
    right: 42.6vw;
    width: 16vw;
    height: 16vw;
  }

  .item-09__link-02 {
    top: 2.5vw;
    right: 4.75vw;
    width: 16vw;
    height: 16vw;
  }
}
