@charset "UTF-8";

/* コピペ用コード */
.font-size-dummy {
    font-size: .75rem;   /* 12px */
    font-size: .8125rem; /* 13px */
    font-size: .875rem;  /* 14px */
    font-size: 1rem;     /* 16px */
    font-size: 1.25rem;  /* 20px */
    font-size: 1.75rem;  /* 28px */
}

/**
 * Base
 */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

html {
    font-family: "dnp-shuei-mgothic-std", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    background-color: #fff;
    color: #25292c;
}

[hidden] {
    display: none !important;
}

/**
  * HTML5 display definitions
  */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
  * Text-level semantic
  */
:active {
    outline: none;
}

a {
    color: inherit;
    background-color: transparent;
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

b,
strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

/**
  * Embedded content
  */
img {
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: top;
}

svg:not(:root) {
    overflow: hidden;
}

/**
  * Grouping content
  */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style-position: inside;
    list-style: none;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 16px;
}

h1 {
  font-size: 2rem;
  margin-top: 50px;
}

h2 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 50px;
}

h3 {
  font-weight: bold;
}

.page_content {
  max-width: 800px;
  margin: 100px auto;
padding: 0 1em;
}

.mainVisual_inner {
  width: 100%;
  margin-top: 62.58px;
}

.mainVisual_inner .sp {
  display: none;
}

.mainVisual_inner figure {
  margin: 0;
}

@media all and (max-width: 640px) {
  .mainVisual_inner .sp {
      display: block;
      width: 100%;
  }
  .mainVisual_inner .pc {
      display: none;
  }
}

.small {
  font-size: .875rem;
}

.color {
  font-weight: bold;
  color: #f2792a;
}

.bold {
  font-weight: bold;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  margin:100px auto;
  padding: .9em 2em;
  border: none;
  border-radius: 30px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%), 0 2px 3px -2px rgb(0 0 0 / 15%);
  background-color: #f2792a;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.btn::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
}

.btn:hover {
  background-color: #e2691a;
}

.content {
  margin: 30px 0 50px;
}

.coupon {
  margin: 10px 0 50px;
}

.coupon .inner {
  margin: 20px 0;
  line-height: 1.75rem;
}

.inner img {
  margin: 30px 0;
}


.accordion {
  max-width: 800px;
  margin-bottom: 7px;
  border-bottom: 1px solid #d0d0d0;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #000000b3;
  content: '';
}

.accordion summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion summary::after {
  transition: rotate .3s;
}

.accordion[open] summary::after {
  rotate: 90deg;
}

.accordion p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  /* padding: .3em 2em 1.5em; */
  color: #000000;
  transition: transform .5s, opacity .5s;
  font-weight: bold;
}

.accordion[open] p {
  transform: none;
  opacity: 1;
}

.accordion ul {
  margin-bottom: 20px;
}

.accordion li {
  font-size: .875rem;
}

.info {
  border: solid 1px;
  padding: 10px;
  margin: 20px 0 50px;
}

.content span {
  font-size: 1rem;
}


.content a {
  text-decoration: underline;
}