@charset "UTF-8";
/*
theme Name: こんにち商店LP
Description: 共通テンプレート
version： 1.0.0
*/
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: inherit;
  list-style: none;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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 {
  content: "";
  content: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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;
}

img {
  vertical-align: bottom;
}

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

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

:root {
  --design-w: 360;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}
body.overflow-y {
  overflow: hidden;
}

@media only screen and (max-width: 960px) {
  #menu display none {
    display: block;
  }
}
#menu #menuopen {
  display: none;
}
#menu #menuopen:checked + .bg {
  width: calc(24000vw / var(--design-w));
  height: calc(34400vw / var(--design-w));
}
#menu #menuopen:checked + .bg .btn .bar {
  background: transparent;
}
#menu #menuopen:checked + .bg .btn:before {
  transform: rotate(45deg);
  top: calc(300vw / var(--design-w));
  left: calc(600vw / var(--design-w));
}
#menu #menuopen:checked + .bg .btn:after {
  left: calc(300vw / var(--design-w));
  bottom: calc(200vw / var(--design-w));
  transform: rotate(-45deg);
}

@media only screen and (max-width: 960px) {
  #menu .bg {
    overflow: hidden;
    position: fixed;
    z-index: 10;
    top: calc(-400vw / var(--design-w));
    right: calc(-400vw / var(--design-w));
    width: calc(5200vw / var(--design-w));
    height: calc(5200vw / var(--design-w));
    background: #fff;
    border-bottom-left-radius: calc(1200vw / var(--design-w));
    border: calc(200vw / var(--design-w)) solid #a56796;
    box-shadow: calc(100vw / var(--design-w)) calc(100vw / var(--design-w)) 0 calc(100vw / var(--design-w)) rgba(0, 0, 0, 0.2);
    transition: 0.3s;
  }
  #menu .bg .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: calc(3200vw / var(--design-w));
    height: calc(3200vw / var(--design-w));
    right: calc(1000vw / var(--design-w));
    top: calc(1000vw / var(--design-w));
  }
  #menu .bg .btn .bar {
    display: block;
    position: relative;
    width: calc(3200vw / var(--design-w));
    height: calc(400vw / var(--design-w));
    border-radius: calc(400vw / var(--design-w));
    background: #a56796;
  }
  #menu .bg .btn:before, #menu .bg .btn:after {
    content: "";
    display: block;
    width: calc(3200vw / var(--design-w));
    height: calc(400vw / var(--design-w));
    border-radius: calc(400vw / var(--design-w));
    background: #a56796;
    position: absolute;
    left: 0;
    transition: 0.3s;
    transform-origin: top left;
  }
  #menu .bg .btn:before {
    top: calc(400vw / var(--design-w));
  }
  #menu .bg .btn:after {
    bottom: calc(400vw / var(--design-w));
  }
}
@media only screen and (min-width: 961px) {
  header {
    position: absolute;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0);
    top: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    z-index: 10;
  }
  header.fixed {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
  }
  header.fixed ul li:before {
    background: #1c1c1c;
  }
  header.fixed ul li a {
    color: #1c1c1c;
  }
  header ul {
    display: flex;
    justify-content: flex-end;
    gap: 32px;
  }
  header ul li {
    position: relative;
  }
  header ul li + li:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -16px;
    display: block;
    width: 2px;
    height: 24px;
    background: #fff;
  }
  header ul li a {
    color: #fff;
  }
}
@media only screen and (max-width: 960px) {
  header ul {
    margin-top: calc(8000vw / var(--design-w));
  }
  header ul li {
    margin: 0 calc(2400vw / var(--design-w));
    overflow: hidden;
    height: calc(3200vw / var(--design-w));
  }
  header ul li + li {
    margin-top: calc(1600vw / var(--design-w));
  }
  header ul li a {
    color: #a56796;
    font-size: calc(1600vw / var(--design-w));
    font-weight: bold;
    line-height: 200%;
  }
}
.brsp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .brsp {
    display: block;
  }
}
.pc {
  display: inline-block;
}

@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}
#mv {
  padding-top: 40px;
  background: url("images/bg.png");
  background-size: 100%;
}
#mv .inner {
  position: relative;
  top: 40px;
}
#mv .inner .text {
  text-align: center;
  margin: 0 auto;
}
#mv .inner .text img {
  width: 544px;
}
#mv .inner .block {
  margin: 5px auto 0;
  background: url("images/paperbg.png");
  border: 5px solid #616161;
  border-radius: 22px;
  background-size: 100%;
  width: 960px;
  height: 614px;
}
#mv .inner .block .top {
  height: 440px;
  display: flex;
}
#mv .inner .block .top .left {
  text-align: center;
  width: 52%;
}
#mv .inner .block .top .left .txt {
  margin-top: 40px;
  width: 440px;
}
#mv .inner .block .top .left .lgo {
  margin-top: 32px;
  width: 280px;
}
#mv .inner .block .top .right {
  width: 48%;
}
#mv .inner .block .top .right .manbal {
  display: flex;
  height: 125px;
}
#mv .inner .block .top .right .manbal .man {
  position: relative;
  margin-top: 10px;
  margin-left: 60px;
  width: 85px;
}
#mv .inner .block .top .right .manbal .man img {
  position: absolute;
  top: 0;
  left: 0;
  width: 77px;
  z-index: 2;
}
#mv .inner .block .top .right .manbal .bal {
  position: relative;
}
#mv .inner .block .top .right .manbal .bal img {
  position: absolute;
  top: -22px;
  left: -20px;
  width: 276px;
}
#mv .inner .block .top .right .moc {
  position: relative;
}
#mv .inner .block .top .right .moc img {
  width: 440px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
#mv .inner .block .bottom {
  display: flex;
  justify-content: space-between;
  margin: 0 44px;
}
#mv .inner .block .bottom .left {
  display: block;
  margin-top: 10px;
}
#mv .inner .block .bottom .right .btn {
  margin-top: 74px;
  width: 420px;
}

@media only screen and (max-width: 960px) {
  #mv {
    padding-top: 0;
    background-size: 200%;
    position: relative;
    top: calc(-2000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner {
    top: calc(6000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .text img {
    width: calc(30300vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block {
    width: calc(32800vw / var(--design-w));
    height: auto;
    border-radius: 16px;
    padding-bottom: calc(2400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top {
    height: auto;
    display: block;
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .left {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .left .txt {
    text-align: center;
    margin-top: calc(2400vw / var(--design-w));
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .left .lgo {
    margin-top: calc(2400vw / var(--design-w));
    width: calc(16000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right {
    margin-top: calc(2400vw / var(--design-w));
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right .manbal {
    height: auto;
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right .manbal .man {
    margin: 0 auto;
    width: auto;
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right .manbal .man img {
    position: relative;
    left: calc(1000vw / var(--design-w));
    width: calc(6300vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right .manbal .bal img {
    position: relative;
    top: -45px;
    left: calc(-1700vw / var(--design-w));
    width: calc(22400vw / var(--design-w));
  }
}
@media only screen and (max-width: 767px) {
  #mv .inner .block .top .right .manbal .bal img {
    top: -17px;
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right .moc {
    height: calc(11000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .top .right .moc img {
    position: relative;
    width: calc(28000vw / var(--design-w));
    margin: 0 auto;
    display: block;
    top: calc(-9000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .bottom {
    flex-direction: column-reverse;
    margin: 0 auto;
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #mv .inner .block .bottom .right .btn {
    margin-top: calc(3800vw / var(--design-w));
    width: calc(28000vw / var(--design-w));
  }
}
.apply {
  width: 416px;
  margin: 0 auto;
}
.apply .cta {
  display: block;
  position: relative;
  height: 70px;
}
.apply .cta img {
  position: absolute;
  width: 424px;
  left: 0;
  top: 0;
}
.apply > ul {
  margin-top: 20px;
  width: 416px;
  display: flex;
  justify-content: space-between;
}
.apply > ul .app {
  width: 171px;
}
.apply > ul .goo {
  width: 212px;
}

@media only screen and (max-width: 960px) {
  .apply {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  .apply .cta {
    height: calc(5000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  .apply .cta img {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  .apply > ul {
    margin: calc(2000vw / var(--design-w)) auto;
    width: calc(26400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  .apply > ul .app {
    width: calc(10900vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  .apply > ul .goo {
    width: calc(13500vw / var(--design-w));
  }
}
#mv .inner .block .bottom .apply > ul {
  margin-top: 64px;
}

@media only screen and (max-width: 960px) {
  #mv .inner .block .bottom .apply > ul {
    margin: calc(2000vw / var(--design-w)) auto;
  }
}
#about {
  background-color: #f5f5f5;
  background-image: linear-gradient(45deg, #fff 25%, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff 75%), linear-gradient(-135deg, #fff 25%, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff 75%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}
#about .inner {
  padding-top: 80px;
  padding-bottom: 86px;
  width: 800px;
  margin: 0 auto;
  background: #fff;
}
#about .inner .desc ul {
  margin: 0 60px;
}
#about .inner .desc ul li {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#about .inner .desc ul li.a {
  left: 20px;
}
#about .inner .desc ul li.a .img {
  margin-top: 30px;
}
#about .inner .desc ul li.a .txt {
  margin-top: 50px;
}
#about .inner .desc ul li.b {
  flex-direction: row-reverse;
}
#about .inner .desc ul li.b .img {
  margin-top: 30px;
  position: relative;
  right: -10px;
}
#about .inner .desc ul li.b .tit {
  width: 140px;
  position: relative;
}
#about .inner .desc ul li.b .tit.pc {
  left: -35px;
}
#about .inner .desc ul li.b .txt {
  margin-top: 50px;
}
#about .inner .desc .img {
  width: 260px;
}
#about .inner .desc .img img {
  width: 100%;
}
#about .inner .desc .txt {
  width: 295px;
}
#about .inner .desc .txt p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 200%;
}
#about .inner .desc .txt .at {
  font-size: 12px;
  font-weight: 400;
}
#about .inner .desc .txt .txt1 {
  width: 266px;
}
#about .inner .desc .txt .txt2 {
  width: 280px;
}
#about .inner .desc .tit {
  width: 102px;
}
#about .inner .desc .tit img {
  width: 100%;
}
#about .inner .desc .btn {
  margin: 80px auto 0;
  width: 416px;
  display: block;
}
#about .inner .desc .btn img {
  width: 100%;
}
#about .inner .area .service {
  width: 640px;
  margin: 0 auto;
}
#about .inner .area .service .sa {
  width: 640px;
}
#about .inner .area .service .store {
  display: block;
  margin: 40px auto 0;
  width: 245px;
}
#about .inner .area .service .logo-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 35px;
  flex-wrap: wrap;
}
#about .inner .area .service .logo {
  width: 640px;
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service .logo {
    max-width: 400px;
    width: 100%;
  }
}
#about .inner .area .service > p {
  margin: 16px auto 0;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 200%;
}
#about .inner .area .service .apply {
  margin-top: 80px;
}
#about .inner .area .mock {
  margin: 100px auto 0;
  width: 500px;
  text-align: center;
  background: url("images/about/circle.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#about .inner .area .mock img {
  margin: 50px 0;
  width: 480px;
}
#about .inner .flow {
  margin: 120px auto 0;
  text-align: center;
  width: 720px;
}
#about .inner .flow img {
  width: 100%;
}
#about .inner .line {
  margin: 50px auto 0;
  text-align: center;
  width: 720px;
}
#about .inner .line img {
  width: 754px;
}

@media only screen and (max-width: 960px) {
  #about {
    background-size: calc(2400vw / var(--design-w)) calc(2400vw / var(--design-w));
    background-position: 0 0, calc(1200vw / var(--design-w)) calc(1200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner {
    width: calc(31200vw / var(--design-w));
    padding-top: calc(6000vw / var(--design-w));
    padding-bottom: calc(8000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul {
    margin: 0 auto;
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul li {
    left: 0;
    display: block;
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul li.a .img {
    margin-top: calc(2400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul li.a .txt {
    margin-top: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul li.b .img {
    right: 0;
    margin-top: calc(2400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul li.b .tit {
    width: calc(28000vw / var(--design-w));
    margin-top: calc(1000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc ul li.b .txt {
    margin-top: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc .img {
    margin: 0 auto;
    width: calc(20000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc .txt {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc .txt .txt1 {
    width: calc(27000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc .txt .txt2 {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc .tit {
    width: calc(27000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .desc .btn {
    width: calc(28000vw / var(--design-w));
    margin-top: calc(5600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service .sa {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service .store {
    margin-top: calc(5600vw / var(--design-w));
    width: calc(24500vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service .logo-container {
    margin-top: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service > p {
    width: calc(28000vw / var(--design-w));
    text-align: left;
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .service .apply {
    margin-top: calc(5600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .mock {
    width: calc(28000vw / var(--design-w));
    margin-top: calc(8000vw / var(--design-w));
    background-size: contain;
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .area .mock img {
    margin: calc(5000vw / var(--design-w)) 0;
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .flow {
    margin-top: calc(8000vw / var(--design-w));
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .line {
    margin-top: calc(5600vw / var(--design-w));
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #about .inner .line img {
    width: calc(28400vw / var(--design-w));
  }
}
#charm {
  background: #f5f5f5;
}
#charm #table {
  display: none;
}
#charm #table:checked + .modal {
  display: flex;
}
#charm .modal {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 20;
  display: none;
  justify-content: center;
  align-items: center;
}
#charm .modal .in {
  background: #fff;
  width: calc(34400vw / var(--design-w));
  padding: calc(2000vw / var(--design-w)) calc(400vw / var(--design-w));
  position: relative;
}
#charm .modal .in label {
  display: block;
  position: absolute;
  top: calc(-1600vw / var(--design-w));
  right: calc(-200vw / var(--design-w));
  width: calc(3200vw / var(--design-w));
}
#charm .modal .in img {
  width: 100%;
}
#charm .inner {
  width: 960px;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
}
#charm .inner .tit {
  width: 460px;
  margin: 0 auto;
  position: relative;
}
#charm .inner .tit .carrot {
  position: absolute;
  width: 70px;
  top: -50px;
  left: 0px;
}
#charm .inner .tit h2 {
  text-align: center;
}
#charm .inner .tit h2 img {
  width: 360px;
}
#charm .inner > ul {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#charm .inner > ul li {
  width: 304px;
}
#charm .inner > ul li img {
  width: 100%;
}
#charm .inner .diff {
  background: #fff;
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: 16px;
  text-align: center;
}
#charm .inner .diff h3 {
  text-align: center;
}
#charm .inner .diff h3 img {
  margin: 0 auto;
  width: 517px;
}
#charm .inner .diff .table {
  position: relative;
}
#charm .inner .diff .table.pc {
  margin: 0 auto;
  width: 800px;
}
#charm .inner .diff .table.sp {
  margin-top: calc(2600vw / var(--design-w));
}
#charm .inner .diff .table.sp img {
  width: calc(28000vw / var(--design-w));
}
#charm .inner .diff .table.sp label {
  cursor: pointer;
}
#charm .inner .diff .table.sp .pinch {
  position: absolute;
  width: calc(3200vw / var(--design-w));
  bottom: calc(600vw / var(--design-w));
  right: calc(600vw / var(--design-w));
}
#charm .inner .diff .tokuten {
  width: 683px;
  position: relative;
  top: -20px;
  left: -20px;
}
#charm .inner .diff .apply {
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  #charm {
    background: url("images/bg_wall.jpg");
    background-size: 200%;
    background-repeat: repeat;
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner {
    width: 100%;
    padding-top: calc(6000vw / var(--design-w));
    padding-bottom: calc(8000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .tit {
    width: calc(35000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .tit .carrot {
    width: calc(6800vw / var(--design-w));
    top: calc(-4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .tit h2 img {
    width: calc(28800vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner > ul {
    margin: calc(4000vw / var(--design-w)) auto 0;
    width: calc(31200vw / var(--design-w));
    display: block;
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner > ul li + li {
    margin-top: calc(3200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner > ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .diff {
    width: calc(31200vw / var(--design-w));
    margin: calc(8000vw / var(--design-w)) auto 0;
    padding-top: calc(4000vw / var(--design-w));
    padding-bottom: calc(4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .diff h3 img {
    width: calc(20000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .diff .tokuten {
    width: calc(26000vw / var(--design-w));
    top: 0;
    left: calc(-1200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #charm .inner .diff .apply {
    margin-top: calc(4000vw / var(--design-w));
  }
}
#problem .problem {
  padding-top: 120px;
  padding-bottom: 100px;
  background: url("images/problem/bg.png");
  background-size: 50%;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
}
#problem .problem .inner {
  width: 968px;
  margin: 0 auto;
}
#problem .problem .inner h2 img {
  margin: 0 auto;
  width: 520px;
}
#problem .problem .inner h2 img.pc {
  display: block;
}
#problem .problem .inner .img {
  margin: 50px auto 0;
  width: 968px;
}
#problem .problem .inner .img.pc {
  display: block;
}
#problem .problem .inner .txt {
  margin: 80px auto 0;
  width: 720px;
}
#problem .problem .inner .txt.pc {
  display: block;
}
#problem .easy {
  position: relative;
  background: url("images/bg.png");
  background-size: 100%;
  background-position: 0 -100px;
  padding-top: 63px;
  padding-bottom: 116px;
}
#problem .easy:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: url("images/bg.png");
  background-size: 100%;
  background-position: 0 0;
  position: absolute;
  left: 0;
  top: -100px;
}
#problem .easy .raku {
  margin: 0 auto;
  width: 547px;
}
#problem .easy .raku.pc {
  display: block;
}
#problem .easy h4 img {
  margin: 0 auto;
  width: 636px;
}
#problem .easy h4 img.pc {
  display: block;
}
#problem .easy .block {
  margin: 5px auto 0;
  background: url("images/paperbg.png");
  border: 5px solid #616161;
  border-radius: 22px;
  background-size: 100%;
  width: 640px;
  height: 757px;
}
#problem .easy .block h3 img {
  margin: 32px auto 0;
  width: 600px;
}
#problem .easy .block h3 img.pc {
  display: block;
}
#problem .easy .block .desc {
  display: block;
  margin: 16px auto 0;
  width: 591px;
  height: 350px;
  position: relative;
  text-align: center;
}
#problem .easy .block .desc .lgo {
  display: block;
  width: 280px;
  margin: 0 auto;
}
#problem .easy .block .desc .txt {
  position: absolute;
  width: 591px;
  bottom: 0;
  left: 0;
}
#problem .easy .block .apply {
  margin-top: 42px;
}
#problem .easy .block .img {
  display: none;
}

@media only screen and (max-width: 960px) {
  #problem .problem {
    padding-top: calc(8000vw / var(--design-w));
    padding-bottom: calc(12000vw / var(--design-w));
    background-size: 200%;
  }
}
@media only screen and (max-width: 960px) {
  #problem .problem .inner {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #problem .problem .inner h2 img {
    width: calc(22400vw / var(--design-w));
    display: block;
  }
  #problem .problem .inner h2 img.pc {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #problem .problem .inner .img {
    margin-top: calc(4000vw / var(--design-w));
    width: calc(35000vw / var(--design-w));
  }
  #problem .problem .inner .img.pc {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #problem .problem .inner .txt {
    display: block;
    margin-top: calc(4000vw / var(--design-w));
    width: calc(31200vw / var(--design-w));
  }
  #problem .problem .inner .txt.pc {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy {
    background-size: 200%;
    padding-top: calc(2000vw / var(--design-w));
    padding-bottom: calc(4000vw / var(--design-w));
    background-position: 0 calc(-10000vw / var(--design-w));
  }
  #problem .easy:before {
    background-size: 200% !important;
    top: calc(-10000vw / var(--design-w)) !important;
    height: calc(10000vw / var(--design-w)) !important;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .raku {
    display: block;
    width: calc(20400vw / var(--design-w));
  }
  #problem .easy .raku.pc {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy h4 img {
    display: block;
    margin-top: calc(800vw / var(--design-w));
    width: calc(30600vw / var(--design-w));
  }
  #problem .easy h4 img.pc {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .block {
    width: calc(32800vw / var(--design-w));
    height: auto;
    margin: calc(1600vw / var(--design-w)) auto 0;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .block h3 img {
    display: block;
    margin-top: calc(4000vw / var(--design-w));
    width: calc(25600vw / var(--design-w));
  }
  #problem .easy .block h3 img.pc {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .block .desc {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .block .desc .lgo {
    margin-top: calc(1600vw / var(--design-w));
    width: calc(19800vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .block .desc .txt {
    margin-top: calc(2400vw / var(--design-w));
    position: relative;
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #problem .easy .block .img {
    display: block;
    margin: 0 auto;
    width: calc(17600vw / var(--design-w));
  }
}
#review {
  background: url("images/bg_wall.jpg");
  background-size: 50%;
  background-repeat: repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}
#review .tit {
  width: 460px;
  margin: 0 auto;
  position: relative;
}
#review .tit .onion {
  position: absolute;
  width: 120px;
  top: -60px;
  left: 0px;
}
#review .tit h2 {
  text-align: center;
}
#review .tit h2 img {
  width: 280px;
}
#review .slide {
  margin-top: 80px;
}
#review .slide ul {
  display: flex;
}
#review .slide ul > li {
  background: #fff;
  width: 320px;
  padding: 40px;
  box-sizing: border-box;
  border-radius: 24px;
  position: relative;
}
#review .slide ul > li:after {
  content: "";
  display: block;
  position: absolute;
  right: 50px;
  bottom: -40px;
  transform: rotate(-45deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 80px solid #fff;
  border-bottom: 0;
}
#review .slide ul > li img {
  display: block;
  margin: 0 auto;
  max-width: 280px;
  width: 100%;
}
#review .slide ul > li .name {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  color: #a56796;
  text-align: center;
}
#review .slide ul > li p {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}
#review .slide .set {
  display: flex;
  margin-top: 80px;
  justify-content: center;
  align-items: center;
}
#review .slide .swiper-pagination {
  position: relative;
  width: auto;
  margin: 0 24px;
}
#review .slide .swiper-pagination .swiper-pagination-bullet {
  margin: 0 8px;
  width: 20px;
  height: 20px;
  background: #757575;
}
#review .slide .swiper-button-prev,
#review .slide .swiper-button-next {
  position: initial;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #9e9e9e;
}
#review .slide .swiper-button-prev:after,
#review .slide .swiper-button-next:after {
  font-size: 12px;
  color: #fff;
  font-weight: bold;
}

@media only screen and (max-width: 960px) {
  #review .tit {
    width: calc(34000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .tit .onion {
    width: calc(9800vw / var(--design-w));
    top: calc(-4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .tit h2 img {
    width: calc(22400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .slide {
    margin: calc(5600vw / var(--design-w)) calc(2400vw / var(--design-w)) 0;
  }
}
@media only screen and (max-width: 960px) {
  #review .slide ul > li {
    width: calc(31200vw / var(--design-w));
    padding: calc(1600vw / var(--design-w));
  }
  #review .slide ul > li:after {
    right: calc(2500vw / var(--design-w)) !important;
    bottom: calc(-2100vw / var(--design-w)) !important;
    border-right: calc(1500vw / var(--design-w)) solid transparent !important;
    border-left: calc(1500vw / var(--design-w)) solid transparent !important;
    border-top: calc(4000vw / var(--design-w)) solid #fff !important;
  }
}
@media only screen and (max-width: 960px) {
  #review .slide ul > li img {
    width: calc(20000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .slide .set {
    margin-top: calc(5600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .slide .swiper-pagination {
    margin: 0 calc(1600vw / var(--design-w));
    width: calc(20000vw / var(--design-w));
    top: calc(-200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .slide .swiper-pagination .swiper-pagination-bullet {
    width: calc(900vw / var(--design-w));
    height: calc(900vw / var(--design-w));
    margin: 0 calc(400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #review .slide .swiper-button-prev,
  #review .slide .swiper-button-next {
    margin: 0;
    width: calc(3200vw / var(--design-w));
    height: calc(3200vw / var(--design-w));
  }
  #review .slide .swiper-button-prev:after,
  #review .slide .swiper-button-next:after {
    font-size: calc(1100vw / var(--design-w)) !important;
  }
}
#fee {
  background-color: #f5f5f5;
  background-image: linear-gradient(45deg, #fff 25%, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff 75%), linear-gradient(-135deg, #fff 25%, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff 75%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}
#fee .inner {
  width: 880px;
  padding-top: 130px;
  padding-bottom: 120px;
  margin: 0 auto;
  background: #fff;
}
#fee .inner .tit {
  width: 350px;
  margin: 0 auto;
  position: relative;
}
#fee .inner .tit .greenpepper {
  position: absolute;
  width: 92px;
  top: -60px;
  left: 0px;
}
#fee .inner .tit h2 {
  text-align: center;
}
#fee .inner .tit h2 img {
  width: 200px;
}
#fee .person {
  margin: 80px auto 0;
  width: 640px;
}
#fee .person h3 {
  text-align: center;
}
#fee .person h3 img {
  width: 301px;
}
#fee .person .set {
  margin: 24px auto 0;
  width: 640px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#fee .person .set .base,
#fee .person .set .box {
  width: 276px;
}
#fee .person .set .plus {
  position: relative;
}
#fee .person .set .plus:before {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  display: block;
  width: 8px;
  height: 56px;
  background: #a56796;
}
#fee .person .set .plus:after {
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  display: block;
  width: 8px;
  height: 56px;
  background: #a56796;
  transform: rotate(90deg);
}
#fee .person .tablet {
  width: 640px;
}
#fee .person p {
  margin-left: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 200%;
}
#fee .company {
  margin: 80px auto 0;
  width: 640px;
}
#fee .company h3 {
  text-align: center;
}
#fee .company h3 img {
  width: 325px;
}
#fee .company .txt {
  margin-top: 24px;
  width: 100%;
}
#fee .company p {
  margin-left: 14px;
  font-weight: 400;
  font-size: 12px;
  line-height: 200%;
}
#fee .company .present {
  margin-top: 32px;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  #fee {
    background-size: calc(2400vw / var(--design-w)) calc(2400vw / var(--design-w));
    background-position: 0 0, calc(1200vw / var(--design-w)) calc(1200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .inner {
    width: calc(31200vw / var(--design-w));
    padding-top: calc(8000vw / var(--design-w));
    padding-bottom: calc(8000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .inner .tit {
    width: calc(26000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .inner .tit .greenpepper {
    width: calc(7400vw / var(--design-w));
    top: calc(-4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .inner .tit h2 img {
    width: calc(16000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .person {
    width: calc(28000vw / var(--design-w));
    margin-top: calc(5800vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .person h3 img {
    width: calc(25000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .person .set {
    display: block;
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .person .set .base,
  #fee .person .set .box {
    display: block;
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .person .set .plus {
    height: calc(5600vw / var(--design-w));
  }
  #fee .person .set .plus:before, #fee .person .set .plus:after {
    width: calc(800vw / var(--design-w));
    height: calc(5600vw / var(--design-w));
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
  }
}
@media only screen and (max-width: 960px) {
  #fee .person .tablet {
    margin-top: calc(3600vw / var(--design-w));
    margin-bottom: calc(1200vw / var(--design-w));
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .company {
    margin-top: calc(8000vw / var(--design-w));
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .company h3 img {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #fee .company .txt {
    margin: 0;
  }
}
@media only screen and (max-width: 960px) {
  #fee .company .present {
    margin-top: calc(2400vw / var(--design-w));
  }
}
#campaign {
  background: url("images/bg.png");
  background-size: 100%;
  padding: 52px 0 120px;
}
#campaign .title {
  width: 920px;
  margin: 0 auto;
}
#campaign .title .speaker {
  width: 112px;
}
#campaign .title .bal {
  margin-left: 16px;
  margin-bottom: 8px;
  width: 672px;
}
#campaign .title .tit {
  width: 920px;
}
#campaign .block {
  background: #fff;
  width: 960px;
  margin: 32px auto 0;
  border-radius: 16px;
  padding-bottom: 80px;
}
#campaign .block .tit {
  padding-top: 40px;
  position: relative;
  width: 620px;
  margin: 0 auto;
}
#campaign .block .tit .rib {
  width: 420px;
  margin: 0 auto;
  display: block;
}
#campaign .block .tit .sta {
  width: 94px;
  position: absolute;
  top: 24px;
  right: 0;
}
#campaign .block > ul {
  width: 800px;
  margin: 42px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}
#campaign .block > ul li {
  width: calc(50% - 28px);
  position: relative;
}
#campaign .block > ul li img {
  width: 100%;
}
#campaign .block > ul li .bal {
  width: 80px;
  position: absolute;
  top: -30px;
  left: -22px;
}
#campaign .block .attention {
  width: 800px;
  margin: 20px auto 0;
}
#campaign .block .attention p {
  font-size: 12px;
  line-height: 200%;
  font-weight: 400;
}
#campaign .block .apply {
  margin-top: 40px;
}

@media only screen and (max-width: 960px) {
  #campaign {
    padding: calc(8000vw / var(--design-w)) 0 calc(8000vw / var(--design-w));
    background-size: 200%;
  }
}
@media only screen and (max-width: 960px) {
  #campaign .title {
    width: calc(32000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .title .speaker {
    width: calc(6000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .title .bal {
    margin-left: calc(1000vw / var(--design-w));
    margin-top: calc(500vw / var(--design-w));
    margin-bottom: 0;
    width: calc(22800vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .title .tit.sp {
    width: calc(28700vw / var(--design-w));
    margin: 0 auto;
    display: block;
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block {
    width: calc(32800vw / var(--design-w));
    margin-top: calc(2400vw / var(--design-w));
    padding-bottom: calc(4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block .tit {
    width: calc(31200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block .tit .rib {
    width: calc(31200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block .tit .sta {
    width: calc(7400vw / var(--design-w));
    top: calc(-2000vw / var(--design-w));
    right: calc(-2000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block > ul {
    width: calc(29000vw / var(--design-w));
    display: block;
    margin: calc(3600vw / var(--design-w)) auto 0;
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block > ul li + li {
    margin-top: calc(2000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block > ul li {
    width: calc(29000vw / var(--design-w));
    text-align: right;
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block > ul li img {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block > ul li .bal {
    width: calc(6000vw / var(--design-w));
    top: calc(-1000vw / var(--design-w));
    left: calc(-200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block .attention {
    width: calc(28000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block .attention p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 960px) {
  #campaign .block .apply {
    margin-top: calc(4000vw / var(--design-w));
  }
}
#faq {
  background: url("images/bg_wall.jpg");
  background-size: 50%;
  background-repeat: repeat;
  padding-top: 120px;
  padding-bottom: 120px;
}
#faq .tit {
  width: 400px;
  margin: 0 auto 0;
  position: relative;
}
#faq .tit .banana {
  position: absolute;
  top: -50px;
  left: -40px;
  width: 120px;
  z-index: 0;
}
#faq .tit h2 {
  text-align: center;
}
#faq .tit h2 img {
  width: 280px;
}
#faq > ul {
  max-width: 960px;
  margin: 80px auto 0;
  counter-reset: item;
  position: relative;
  z-index: 2;
}
#faq > ul li {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding: 24px 40px;
}
#faq > ul li:first-child {
  margin-top: 0;
}
#faq > ul li input {
  display: none;
}
#faq > ul li input:checked + dl dd {
  max-height: 700px;
  height: auto;
}
#faq > ul li input:checked + dl .btn:after {
  transform: rotate(90deg);
}
#faq > ul li dl {
  width: 100%;
}
#faq > ul li dl dt {
  width: 100%;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: #a56796;
  display: flex;
}
#faq > ul li dl dt > label {
  cursor: pointer;
  width: calc(100% - 60px);
  display: inline-block;
  position: relative;
}
#faq > ul li dl dt .btn {
  width: 24px;
  height: 24px;
  position: relative;
  align-self: center;
}
#faq > ul li dl dt .btn:before, #faq > ul li dl dt .btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 3px;
  height: 24px;
  background: #a56796;
  transition: 0.3s;
}
#faq > ul li dl dt .btn:before {
  transform: rotate(90deg);
}
#faq > ul li dl dt:before {
  content: "Q" counter(item);
  counter-increment: item;
  display: inline-block;
  margin-right: 16px;
}
#faq > ul li dl dd {
  transition: 0.3s;
  max-height: 0;
  overflow-y: hidden;
  margin-left: 57px;
}
#faq > ul li dl dd p {
  margin-top: 24px;
  line-height: 200%;
  font-size: 18px;
}
#faq .apply {
  margin-top: 80px;
}

@media only screen and (max-width: 960px) {
  #faq .tit {
    width: calc(22400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq .tit .banana {
    top: calc(1200vw / var(--design-w));
    left: calc(-5000vw / var(--design-w));
    width: calc(8600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq .tit h2 img {
    width: calc(22400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul {
    margin-top: calc(4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul li {
    margin: calc(2400vw / var(--design-w)) auto;
    width: calc(28000vw / var(--design-w));
    padding: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul li dl dt {
    font-size: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul li dl dt > label {
    width: calc(100% - 45px);
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul li dl dt .btn {
    width: calc(1600vw / var(--design-w));
    height: calc(1600vw / var(--design-w));
    margin-left: calc(800vw / var(--design-w));
  }
  #faq > ul li dl dt .btn:before, #faq > ul li dl dt .btn:after {
    width: calc(200vw / var(--design-w));
    height: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul li dl dd {
    margin-left: calc(3000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #faq > ul li dl dd p {
    font-size: calc(1400vw / var(--design-w));
  }
}
#popup.hide {
  display: none;
}
#popup #popup-close:checked + .popup {
  opacity: 0;
}
#popup .popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  opacity: 1;
  transition: 0.3s;
  width: 240px;
}
#popup .popup .btn {
  position: absolute;
  left: -8px;
  top: -8px;
  display: block;
}
#popup .popup .btn img {
  width: 32px;
}
#popup .popup img {
  width: 240px;
}
#popup .popup.show {
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (max-width: 960px) {
  #popup .popup {
    width: calc(24000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #popup .popup .btn {
    left: calc(-800vw / var(--design-w));
    top: calc(-800vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #popup .popup .btn img {
    width: calc(3200vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #popup .popup img {
    width: calc(24000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #popup .popup {
    bottom: calc(2000vw / var(--design-w));
    right: calc(2000vw / var(--design-w));
  }
}
#up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
#up .up {
  display: block;
  text-align: right;
}
#up .up img {
  width: 64px;
}
#up .up2 {
  display: block;
  margin-top: 16px;
}
#up .up2 img {
  width: 130px;
}
#up.show {
  opacity: 1;
  pointer-events: auto;
}

@media only screen and (max-width: 960px) {
  #up .up img {
    width: calc(4000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #up .up2 {
    margin-top: calc(1600vw / var(--design-w));
    opacity: 0.9;
  }
}
@media only screen and (max-width: 960px) {
  #up .up2 img {
    width: calc(10400vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  #up {
    bottom: calc(2000vw / var(--design-w));
    right: calc(2000vw / var(--design-w));
  }
}
footer {
  background-color: #f5f5f5;
  background-image: linear-gradient(45deg, #fff 25%, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff 75%), linear-gradient(-135deg, #fff 25%, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff 75%);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
}
footer .inner {
  width: 960px;
  margin: 0 auto;
  background: #fff;
  padding-top: 80px;
  padding-bottom: 40px;
}
footer .inner .lgo {
  display: block;
  margin: 0 auto 0;
  width: 240px;
}
footer .inner ul {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 64px;
}
footer .inner ul li {
  position: relative;
}
footer .inner ul li a {
  color: #a56796;
  font-size: 16px;
  line-height: 200%;
}
footer .inner p {
  color: #a56796;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  footer .inner {
    width: calc(31200vw / var(--design-w));
    padding-top: calc(4000vw / var(--design-w));
    padding-bottom: calc(1000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  footer .inner .lgo {
    width: calc(16000vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  footer .inner ul {
    margin-top: calc(3200vw / var(--design-w));
    display: block;
    height: auto;
    text-align: center;
  }
}
@media only screen and (max-width: 960px) {
  footer .inner ul li + li {
    margin-top: calc(1600vw / var(--design-w));
  }
}
@media only screen and (max-width: 960px) {
  footer .inner p {
    margin-top: calc(3200vw / var(--design-w));
  }
}
/* =========================================== */
/* スライドページ ここから */
/* =========================================== */
.wrp-block-slide-box00 {
  width: 100%;
  max-width: 960px;
  padding: 0px 20px;
  margin: 80px auto 50px;
  clear: both;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .wrp-block-slide-box00 {
    padding: 0px 0px;
  }
}
.wrp-block-slide-box00 .block-slide-box00 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrp-block-slide-box00 .block-slide-box00 img {
  max-width: 100%;
}
.wrp-block-slide-box00 .block-slide-box00 .list-box {
  margin: 0 15px 0;
}
@media only screen and (max-width: 960px) {
  .wrp-block-slide-box00 .block-slide-box00 .list-box {
    width: 100%;
    margin: 0 10px 0;
  }
}
.wrp-block-slide-box00 .block-slide-box00 .list-box .wrp-thum:hover {
  opacity: 0.8;
}
.wrp-block-slide-box00 .block-slide-box00 .list-box .wrp-thum img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrp-bnr {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
@media only screen and (max-width: 960px) {
  .wrp-bnr {
    padding: 20px 20px 0;
  }
}
.wrp-bnr .bnr {
  max-width: 800px;
}
@media only screen and (max-width: 960px) {
  .wrp-bnr .bnr {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */