@charset "UTF-8";
/*! ========================================
※※※※※※※※※※※※※※※※※※※※※※※※※※※
  このCSSファイルはSCSSから生成されていますので、
  直接編集しないようご注意ください。
※※※※※※※※※※※※※※※※※※※※※※※※※※※
========================================= */
/*----------------------------------------------------
	setting
----------------------------------------------------*/
/*fonts*/
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/ShipporiMincho-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/ShipporiMincho-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Shippori Mincho";
  src: url("../fonts/ShipporiMincho-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: 0 0;
}

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

li,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a,
em,
i,
small,
span,
strong {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
  overflow-x: hidden !important;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Shippori Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #433a38;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 769px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  transition: all 0.2s;
}
@media screen and (max-width: 769px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 769px) {
  a:hover {
    opacity: none;
  }
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
}

strong {
  font-weight: 700;
}

input {
  padding: 0;
  border: none;
  background: 0 0;
}

* {
  box-sizing: border-box;
  transition: font-size 0.1s linear;
  backface-visibility: hidden;
}

sup {
  vertical-align: super;
  font-size: 70%;
  font-weight: normal;
}

sub {
  vertical-align: sub;
}

.palt {
  font-feature-settings: "palt";
}

.u-pc {
  display: block;
}
@media screen and (max-width: 769px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 769px) {
  .u-sp {
    display: block;
  }
}

/*アニメーション*/
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
    /* 下から */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------------------------------------
    gHeader
--------------------------------------------------------------------------------------------------------*/
html.is-open,
body.is-open {
  overflow: hidden;
}

.header-logo {
  width: 20.6666666667vw;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.header {
  position: fixed;
  z-index: 999;
}
.header .header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff9e9;
  padding: 12% 0 70px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 0.5s;
}
@media screen and (max-width: 769px) {
  .header .header__nav {
    padding-top: 120px;
  }
}
.header .header__nav.is-open {
  opacity: 1;
  visibility: visible;
  height: 100%;
  overflow-y: scroll;
}
.header .header__nav-icon {
  width: 12.5333333333vw;
  margin: 0 auto 30px;
}
.header .header__nav-list {
  list-style: none;
}
.header .header__nav-item {
  text-align: center;
  margin-bottom: 50px;
  width: 73.6vw;
  margin-inline: auto;
}
.header .header__nav-item:last-child {
  margin-bottom: 0;
}
.header .header__nav-item a {
  display: inline-block;
  position: relative;
}
.header .hamburger {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  z-index: 9999;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #bd272d;
}
.header .hamburger__trigger {
  display: inline-block;
  transition: all 0.8s;
  box-sizing: border-box;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  width: 100%;
  height: 100%;
}
.header .hamburger__trigger span {
  display: inline-block;
  transition: all 0.8s;
  position: absolute;
  left: 50%;
  width: 70%;
  height: 2px;
  background-color: #fff;
  translate: -50% 0;
}
.header .hamburger__trigger span:nth-of-type(1) {
  top: 13px;
}
.header .hamburger__trigger span:nth-of-type(2) {
  top: 20px;
  transition: all 0.4s 0.4s;
  opacity: 1;
}
.header .hamburger__trigger span:nth-of-type(3) {
  top: 27px;
}
.header .hamburger__trigger.is-active span {
  background-color: #666666;
}
.header .hamburger__trigger.is-active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-35deg);
  top: 0;
}
.header .hamburger__trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header .hamburger__trigger.is-active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(35deg);
  top: 22px;
}

.is-open .hamburger {
  border: none;
  background-color: transparent;
}

/*----------------------------------------------------
	main
----------------------------------------------------*/
.main {
  position: relative;
}

#bg-kome-01 {
  display: block;
}
@media screen and (max-width: 769px) {
  #bg-kome-01 {
    display: none;
  }
}

#bg-kome-02 {
  display: none;
}
@media screen and (max-width: 769px) {
  #bg-kome-02 {
    display: block;
  }
}

.content-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(180deg, rgb(128, 0, 1), rgb(233, 27, 27) 49%, rgb(128, 0, 1) 87%, rgb(69, 33, 11));
}
.content-bg .content-bg__left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: calc((100% - 550px) / 2);
  height: 100%;
}
.content-bg .content-bg__left .content-pc__nav {
  display: flex;
  position: absolute;
  top: 30%;
  right: 30px;
}
@media screen and (max-width: 1000px) {
  .content-bg .content-bg__left .content-pc__nav {
    right: 10px;
  }
}
.content-bg .content-bg__left .content-pc__nav li {
  position: relative;
  margin: 0 10px;
}
@media screen and (max-width: 1000px) {
  .content-bg .content-bg__left .content-pc__nav li {
    margin: 0 5px;
  }
}
.content-bg .content-bg__left .content-pc__nav li a {
  display: block;
}
.content-bg .content-bg__left .content-pc__nav li:hover::before {
  content: "";
  width: 30px;
  height: 42px;
  display: block;
  background: url(../img/icon-hover.svg) no-repeat;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: -45px;
  left: 50%;
  translate: -50% 0;
}
.content-bg .content-bg__right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: calc((100% - 550px) / 2);
  height: 100%;
}
.content-bg .content-bg__right .content-pc__logo {
  width: min(173px, 15vw);
  position: absolute;
  top: 13%;
  left: 5%;
}

.main-wrapper {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 769px) {
  .main-wrapper {
    max-width: inherit;
    width: 100%;
  }
}
.main-wrapper .cont-inner {
  width: 89.3333333333%;
  margin-inline: auto;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bg-sp {
    background-image: linear-gradient(180deg, rgb(128, 0, 1), rgb(233, 27, 27) 49%, rgb(128, 0, 1) 87%, rgb(69, 33, 11));
    overflow: hidden;
  }
}
.main-wrapper .top-mv {
  width: 90%;
  margin-inline: auto;
  padding-top: 20px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .top-mv {
    width: 95%;
    padding-top: 30px;
    position: relative;
    z-index: 1;
  }
}
.main-wrapper .top-mv + p {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  padding-bottom: 30px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .top-mv + p {
    font-size: 1.8rem;
  }
}
.main-wrapper .intro {
  background: url(../img/bg-tatami.jpg) repeat;
  background-position: top left;
  text-align: center;
}
.main-wrapper .intro .bg-line img {
  width: 100%;
  height: auto;
}
.main-wrapper .intro .bg-line.bg-line-head {
  padding-bottom: 30px;
}
.main-wrapper .intro .bg-line.bg-line-head img {
  vertical-align: top;
}
.main-wrapper .intro .bg-line.bg-line-bottom {
  padding-top: 30px;
}
.main-wrapper .intro .bg-line.bg-line-bottom img {
  vertical-align: bottom;
}
.main-wrapper .intro .icon-intro {
  max-width: 165px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .intro .icon-intro {
    width: 22%;
  }
}
.main-wrapper .intro .intro-copy {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 769px) {
  .main-wrapper .intro .intro-copy {
    font-size: 2.4rem;
  }
}
.main-wrapper .intro .intro-copy .accent {
  font-size: 120%;
  color: #e60012;
}
.main-wrapper .intro .intro-copy sup {
  font-size: 1.6rem;
}
@media screen and (max-width: 769px) {
  .main-wrapper .intro .intro-copy sup {
    font-size: 1.2rem;
  }
}
.main-wrapper .intro .intro-notice {
  text-align: left;
}
@media screen and (max-width: 769px) {
  .main-wrapper .intro .intro-notice {
    margin-top: 0.5em;
  }
}
.main-wrapper .intro .intro-notice li {
  font-size: 1.6rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 769px) {
  .main-wrapper .intro .intro-notice li {
    font-size: 1.2rem;
  }
}
.main-wrapper .lineup {
  background-color: #fff;
  padding: 30px 0 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup {
    padding-bottom: 30px;
  }
}
.main-wrapper .lineup .icon-lineup {
  max-width: 285px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup .icon-lineup {
    width: 38vw;
  }
}
.main-wrapper .lineup .slider-bg-wrap {
  position: relative;
  height: 394px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup .slider-bg-wrap {
    height: inherit;
  }
}
.main-wrapper .lineup .slider-bg-wrap::after {
  content: "";
  display: block;
  width: 325px;
  height: 325px;
  background-color: #ffea00;
  border-radius: 50%;
  position: absolute;
  top: 45%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup .slider-bg-wrap::after {
    width: 230px;
    height: 230px;
    top: 41%;
  }
}
.main-wrapper .lineup .slider {
  margin-inline: auto;
  max-width: 550px;
  width: 100%;
}
.main-wrapper .lineup .slider .slider-img {
  margin: 0 10px;
}
.main-wrapper .lineup .slider .slider-img img {
  height: auto;
  width: 100%;
  display: block;
  transition: transform 0.3s;
  transform: scale(0.8);
}
.main-wrapper .lineup .slider .slider-img.slick-active img {
  transform: scale(1);
}
.main-wrapper .lineup .slider .caption {
  text-align: center;
  font-size: 12px;
  margin-top: 1em;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup .slider .caption {
    font-size: 1.1rem;
  }
}
.main-wrapper .lineup .slider2 {
  margin-bottom: 30px;
}
.main-wrapper .lineup .slider2 .slider-txt span {
  color: #fff;
  background-color: #f5b090;
  border-radius: 50%;
  font-size: 2.8rem;
  display: block;
  width: 120px !important;
  height: 120px !important;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  line-height: 1;
  margin-top: 30px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup .slider2 .slider-txt span {
    width: 65px !important;
    height: 65px !important;
    font-size: 1.3rem;
  }
}
.main-wrapper .lineup .slider2 .slider-txt.slick-active span {
  background-color: #e60012;
  border-radius: 50%;
  font-size: 4.2rem;
  width: 189px !important;
  height: 189px !important;
  margin-top: 0;
}
@media screen and (max-width: 769px) {
  .main-wrapper .lineup .slider2 .slider-txt.slick-active span {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.3rem;
  }
}
.main-wrapper .how-to {
  background-color: #bd272d;
  padding: 30px 0;
}
@media screen and (max-width: 769px) {
  .main-wrapper .how-to {
    padding: 20px 0;
  }
}
.main-wrapper .how-to .ttl-h2 {
  font-size: 4rem;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .how-to .ttl-h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.main-wrapper .how-to .ttl-h2 span {
  font-size: 140%;
  color: #fff000;
}
.main-wrapper .how-to .step-img {
  margin-bottom: 20px;
}
.main-wrapper .how-to .step-img:last-child {
  margin-bottom: 0;
}
.main-wrapper .how-to .step-img.js-step-img img {
  opacity: 0;
  transform: translateY(100px);
}
.main-wrapper .how-to .img-dot {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .how-to .img-dot img {
    width: 6px;
    height: auto;
  }
}
.main-wrapper .bug-info {
  background-color: #ffea00;
  padding: 30px 0;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bug-info {
    padding: 15px 0;
  }
}
.main-wrapper .bug-info .ttl-h2 {
  font-size: 4rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bug-info .ttl-h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.main-wrapper .bug-info .ttl-h2 span {
  font-size: 140%;
  color: #e60012;
}
.main-wrapper .bug-info .bug-card {
  margin-bottom: 50px;
}
.main-wrapper .bug-info .bug-card .bug-name {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-wrapper .bug-info .bug-card .bug-name span {
  font-size: 2.6rem;
  font-weight: bold;
  flex-shrink: 0;
  margin: 0 5px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bug-info .bug-card .bug-name span {
    font-size: 1.6rem;
  }
}
.main-wrapper .bug-info .bug-card .bug-name::before, .main-wrapper .bug-info .bug-card .bug-name::after {
  content: "";
  display: block;
  width: 225px;
  height: 16px;
}
.main-wrapper .bug-info .bug-card .bug-name::before {
  background: url(../img/ttl-bug-info-l.svg) no-repeat;
  background-position: center left;
  background-size: cover;
}
.main-wrapper .bug-info .bug-card .bug-name::after {
  background: url(../img/ttl-bug-info-r.svg) no-repeat;
  background-position: center left;
  background-size: cover;
}
.main-wrapper .bug-info .bug-card .flex-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px auto 20px;
}
.main-wrapper .bug-info .bug-card .flex-box .img {
  width: 44.6666666667%;
  flex-shrink: 0;
  margin-right: 30px;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bug-info .bug-card .flex-box .img {
    margin-right: 15px;
  }
}
.main-wrapper .bug-info .bug-card .flex-box .text {
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bug-info .bug-card .flex-box .text {
    font-size: 1.4rem;
  }
}
.main-wrapper .bug-info .bg-environment {
  background-color: #433a38;
  background-image: url(../img/bg-environment.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  color: #fff;
  padding: 30px 6%;
  position: relative;
  overflow: hidden;
}
.main-wrapper .bug-info .bg-environment .ttl-h3 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 769px) {
  .main-wrapper .bug-info .bg-environment .ttl-h3 {
    font-size: 1.6rem;
  }
}
.main-wrapper .bug-info .bg-environment p {
  position: relative;
  z-index: 1;
}
.main-wrapper .ec-shop {
  background: url(../img/bg-tatami.jpg) repeat;
  background-position: top left;
}
.main-wrapper .ec-shop .bg-line img {
  width: 100%;
  height: auto;
}
.main-wrapper .ec-shop .bg-line.bg-line-head {
  margin-bottom: 60px;
}
.main-wrapper .ec-shop .bg-line.bg-line-bottom {
  padding-top: 60px;
}
.main-wrapper .ec-shop .item-card {
  margin-bottom: 60px;
}
.main-wrapper .ec-shop .item-card:last-child {
  margin-bottom: 0;
}
.main-wrapper .ec-shop .item-card .flex-box {
  display: flex;
  justify-content: space-around;
}
.main-wrapper .ec-shop .item-card .flex-box .img {
  width: 40%;
  flex-shrink: 0;
}
.main-wrapper .ec-shop .item-card .flex-box .right-btn {
  width: 44%;
}
.main-wrapper .ec-shop .item-card .flex-box .right-btn .item-name {
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 769px) {
  .main-wrapper .ec-shop .item-card .flex-box .right-btn .item-name {
    font-size: 1.6rem;
  }
}
.main-wrapper .ec-shop .item-card .flex-box .right-btn .btn-list li:last-child {
  margin-bottom: 0;
}
.main-wrapper .ec-shop .item-card .flex-box .right-btn .btn-list li a {
  display: block;
  margin-bottom: 0.3em;
}
.main-wrapper .ec-shop .item-card .btn-item-info {
  width: 53.3333333333%;
  margin: 1em auto 0;
}
.main-wrapper .ec-shop .item-card .btn-item-info a {
  display: block;
}
.main-wrapper .kurashi-plus {
  background-color: #fff;
  text-align: center;
  padding: 60px 0;
}
.main-wrapper .kurashi-plus hgroup .ttl-h2 {
  width: 54.8%;
  margin: 0 auto 5px;
}
.main-wrapper .kurashi-plus hgroup p {
  color: #e60012;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}
@media screen and (max-width: 769px) {
  .main-wrapper .kurashi-plus hgroup p {
    font-size: 2rem;
  }
}
.main-wrapper .kurashi-plus .txt {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.main-wrapper .kurashi-plus .img {
  width: 68.6666666667%;
  margin: 20px auto 5px;
}
.main-wrapper .kurashi-plus .txt-kanren {
  color: #e60012;
  text-align: center;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 769px) {
  .main-wrapper .kurashi-plus .txt-kanren {
    font-size: 1.4rem;
  }
}
.main-wrapper .kurashi-plus .txt-kanren a {
  color: #e60012;
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.main-wrapper .kurashi-plus .btn {
  width: 53.3333333333%;
  margin: 30px auto 0;
}
.main-wrapper .kurashi-plus .btn a {
  display: block;
}

/*----------------------------------------------------
	l-footer
----------------------------------------------------*/
.l-footer {
  width: 100%;
  background-color: #f2f2f2;
  position: relative;
}
@media screen and (max-width: 769px) {
  .l-footer {
    padding-bottom: 40px;
  }
}
.l-footer .l-footer__inner {
  margin: 0 auto;
  width: 100%;
  padding: 2.5vw 0 2.9166666667vw;
  display: block;
}
@media screen and (max-width: 769px) {
  .l-footer .l-footer__inner {
    padding: 4vw 0 4.6666666667vw;
  }
}
.l-footer .l-footer__inner .l-footer__left {
  width: 150px;
  margin: 0 auto;
}
.l-footer .l-footer__logo a {
  display: block;
}
.l-footer .l-footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 5%;
}
.l-footer .l-footer__listItem {
  font-size: 14px;
  display: inline-block;
}
.l-footer .l-footer__listItem:not(:first-child) {
  margin-left: 10px;
}
@media screen and (max-width: 769px) {
  .l-footer .l-footer__listItem {
    font-size: 12px;
  }
  .l-footer .l-footer__listItem:nth-child(n+3) {
    margin-top: 15px;
  }
}
.l-footer .l-footer__listItem a {
  color: #808080;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-decoration: none;
}
.l-footer .l-footer__listItem a[target=_blank]::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_target.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
.l-footer .l-footer__copyright {
  color: #808080;
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 769px) {
  .l-footer .l-footer__copyright {
    font-size: 10px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
}

.pagetop {
  display: none;
  width: 90px;
  height: 90px;
  position: fixed;
  right: calc(50% - 275px - 10px - 90px);
  bottom: 2%;
  z-index: 10;
}
@media screen and (max-width: 769px) {
  .pagetop {
    width: 12%;
    height: auto;
    right: 3%;
    bottom: 3%;
  }
}/*# sourceMappingURL=style.css.map */