/* --------------------------------------------- */
/* reset */
/* --------------------------------------------- */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  vertical-align: baseline;
  background: transparent;
  list-style-type: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

/* --------------------------------------------- */
/* function */
/* --------------------------------------------- */
/* --------------------------------------------- */
/* common */
/* --------------------------------------------- */
:root {
  --white: #ffffff;
  --black: #000000;
  --gray_lt: #cccccc;
  --gray_md: #999999;
  --gray_dk: #666666;
  --text01: #222222;
  --text02: #ffffff;
  --back01: #efefef;
  --back02: #202020;
  --shadow: #999999;
}

/* --------------------------------------------- */
/* font */
/* --------------------------------------------- */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NTSNS-Regular.woff2") format("woff2"), url("../font/NTSNS-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 800;
  src: url("../font/NTSNS-ExtraBold.woff2") format("woff2"), url("../font/NTSNS-ExtraBold.woff") format("woff");
}
/* --------------------------------------------- */
/* html */
/* --------------------------------------------- */
body {
  top: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  word-break: break-all;
}

img {
  width: 100%;
  vertical-align: top;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a:focus {
  outline: none;
}

a {
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

/* --------------------------------------------- */
/* parts */
/* --------------------------------------------- */
.anchor {
  margin-top: -80px;
  padding-top: 80px;
}

.wrap {
  padding: 10vh 5vw;
}

.alignC {
  text-align: center;
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tablet {
  display: none;
}
@media screen and (min-width: 1400px) {
  .tablet {
    display: block;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

/* --------------------------------------------- */
/* header */
/* --------------------------------------------- */
.header-wrapper {
  width: 100%;
  background: url("../img/header_bg_sp.svg") no-repeat top right/contain;
}
@media screen and (min-width: 768px) {
  .header-wrapper {
    background: none;
  }
}
.header-wrapper .header-inner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .header-wrapper .header-inner {
    width: 100%;
    padding: 1.875rem 0;
    position: relative;
  }
}
.header-wrapper .header-inner .header-logo {
  display: flex;
  flex-direction: row;
}
.header-wrapper .header-inner .header-logo img {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .header-wrapper .header-inner .header-logo img {
    width: 50px;
    position: absolute;
    top: 1.875rem;
    left: 1.875rem;
  }
}
.header-wrapper .header-inner .header-title {
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .header-wrapper .header-inner .header-title {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
.header-wrapper .header-inner .header-title img {
  width: 180px;
}
.header-wrapper .header-inner .title {
  margin-top: 0.625rem;
  font-size: 0.625rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .header-wrapper .header-inner .title {
    margin-top: 1.875rem;
    font-size: 0.75rem;
  }
}

/* --------------------------------------------- */
/* main */
/* --------------------------------------------- */
.listbox .image {
  position: relative;
}
@media screen and (min-width: 768px) {
  .listbox .image {
    max-width: 1200px;
    width: 100%;
  }
}
.listbox .text {
  padding: 1.25rem 1.25rem 5rem;
}
@media screen and (min-width: 768px) {
  .listbox .text {
    margin-top: 1.25rem;
    padding: 0 1.25rem 1.25rem 0;
    border-bottom: 1px solid var(--gray_lt);
    border-right: 1px solid var(--gray_lt);
  }
}
.listbox .text time {
  display: inline-block;
  padding: 3px 20px;
  color: var(--white);
  font-size: 0.75rem;
  background: var(--gray_md);
}
.listbox .text .title {
  margin-top: 0.625rem;
}
.listbox .text .title a {
  color: var(--text01);
  line-height: 1.8;
}
.listbox .text .tag {
  display: flex;
  flex-direction: row;
  margin-top: 1.25rem;
  font-size: 0.75rem;
}
.listbox .text .tag li {
  margin-right: 1.25rem;
  padding-left: 20px;
  position: relative;
}
.listbox .text .tag li::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url("../img/tag.svg") no-repeat;
  position: absolute;
  left: 0;
}

.side-instagram {
  padding: 2.5rem 1.25rem;
  background: var(--back01) url("../img/header_bg_sp.svg") no-repeat top right/contain;
}
@media screen and (min-width: 768px) {
  .side-instagram {
    padding: 5rem 0;
  }
}
.side-instagram a {
  display: block;
  margin: 0 auto;
  padding: 1.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .side-instagram a {
    max-width: 800px;
    padding: 1.875rem 1.25rem 2.5rem;
  }
}
.side-instagram a h3 {
  color: var(--text01);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
}
.side-instagram a dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .side-instagram a dl {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.side-instagram a dl dt {
  margin-top: 1.25rem;
}
.side-instagram a dl dt img {
  width: 40px;
  opacity: 0.6;
}
.side-instagram a dl dd {
  margin-top: 1.25rem;
  color: var(--text01);
  font-size: 0.9375rem;
  text-align: left;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .side-instagram a dl dd {
    padding: 0 2.5rem;
  }
}

.side-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .side-list {
    padding: 5rem 1.25rem;
  }
}
.side-list .btn span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 60px;
  color: var(--text01);
  letter-spacing: 0.2rem;
  border: 1px solid var(--gray_lt);
  background: url("../img/triangle.svg") no-repeat top left/contain, url("../img/triangleR.svg") no-repeat top right/contain;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .side-list .btn span {
    width: 380px;
    height: 80px;
  }
}

/* --------------------------------------------- */
/* footer */
/* --------------------------------------------- */
.footer-wrapper {
  width: 100%;
  background: var(--back01);
}
.footer-wrapper .footer-inner {
  margin: 0 auto;
  padding: 5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-inner {
    width: 90vw;
    padding: 1.875rem 0;
  }
}
@media screen and (min-width: 1400px) {
  .footer-wrapper .footer-inner {
    width: 1200px;
  }
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-nav {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-nav li {
    margin-right: 1.875rem;
  }
}
.footer-wrapper .footer-nav li a {
  color: var(--text01);
  font-size: 0.9375rem;
  line-height: 3;
  padding-right: 20px;
  position: relative;
}
.footer-wrapper .footer-nav li a::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/link.svg") no-repeat;
  position: absolute;
  top: 3px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-logo {
    text-align: right;
  }
}
.footer-wrapper .footer-logo .logo01 {
  margin-top: 5rem;
}
.footer-wrapper .footer-logo .logo01 img {
  width: 280px;
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-logo .logo01 img {
    width: 380px;
  }
}
.footer-wrapper .footer-logo .logo02 {
  width: 270px;
  margin-top: 2.5rem;
  padding-right: 30px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-logo .logo02 {
    width: auto;
  }
}
.footer-wrapper .footer-logo .logo02::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/link.svg") no-repeat;
  position: absolute;
  top: 3px;
  right: 0;
}
.footer-wrapper .footer-logo .logo02 img {
  width: 240px;
}
@media screen and (min-width: 768px) {
  .footer-wrapper .footer-logo .logo02 img {
    width: 300px;
  }
}
.footer-wrapper .footer-logo p {
  margin-top: 2.5rem;
  font-size: 0.625rem;
  line-height: 1.8;
}
.footer-wrapper .footer-copy {
  display: block;
  margin-top: 1.25rem;
  color: var(--gray_md);
  font-size: 0.625rem;
}/*# sourceMappingURL=style.css.map */