@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.2.0/dist/css/yakuhanjp.min.css");
.fuwafuwa {
  -webkit-animation: fuwafuwa 3s infinite linear alternate;
  animation: fuwafuwa 3s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-2deg);
  }
  50% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(2deg);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-1deg);
            transform: translate(0, 0) rotate(-1deg);
  }
  50% {
    -webkit-transform: translate(0, -2px) rotate(0deg);
            transform: translate(0, -2px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(1deg);
            transform: translate(0, 0) rotate(1deg);
  }
}

li:nth-child(1) {
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
}

li:nth-child(2) {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
}

li:nth-child(3) {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.button {
  display: inline-block;
  *display: inline;
  cursor: pointer;
  border: 1px solid #bbb;
  overflow: visible;
  white-space: nowrap;
  color: #555;
  font-size: 1.8rem;
  text-decoration: none;
  text-align: center;
  background-color: #ddd;
  background-clip: padding-box;
  /* Fix bleeding */
  -webkit-box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.button:hover {
  background-color: #eee;
  color: #555;
}

.button:active {
  background: #e9e9e9;
  position: relative;
  top: 1px;
  text-shadow: none;
  -webkit-box-shadow: 0 4px 0px rgba(0, 0, 0, 0.3) inset;
          box-shadow: 0 4px 0px rgba(0, 0, 0, 0.3) inset;
  outline: none;
}

a.button:hover,
.button:hover a {
  color: #ffffff;
}

.button-s {
  width: 200px;
  height: 40px;
  line-height: 40px;
}

.button-m {
  width: 260px;
  height: 60px;
  line-height: 60px;
}

.button-l {
  width: 320px;
  height: 80px;
  line-height: 80px;
}

.button-purple {
  background-color: #920783;
  border: 1px solid #41023A;
  color: #ffffff;
  -webkit-box-shadow: 0 4px 0 #41023A;
          box-shadow: 0 4px 0 #41023A;
}

.button:hover,
.button-purple:active {
  background: #41023A;
}

.marker {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #c1e0ff));
  background: linear-gradient(transparent 0%, #c1e0ff 0%);
  font-weight: bold;
}

.marker-yellow {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #ffff00));
  background: linear-gradient(transparent 60%, #ffff00 0%);
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.3rem;
  font-weight: normal;
  font-family: YakuHanJP, "Noto Sans Japanese", "YuGothic", "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #22292f;
  line-height: 220%;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  list-style: none;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
}

code,
kbd,
pre,
samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #b8c2cc;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #b8c2cc;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  padding: 8px;
  border: 1px solid #b8c2cc;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
  border: 1px solid #b8c2cc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea {
  resize: none;
}

input,
select {
  vertical-align: middle;
}

input[type="submit"] {
  cursor: pointer;
  border: none;
}

input[type="submit"]:hover, input[type="submit"]:focus {
  outline: none;
  border: none;
}

input[type="submit"] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}

input[type="radio"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #b8c2cc;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="radio"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"] + span:focus, input[type="radio"] + span:checked {
  outline: none;
  border: 1px solid #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #b8c2cc;
}

input[type="radio"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #b8c2cc;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid #b8c2cc;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #b8c2cc;
  border-bottom: 3px solid #b8c2cc;
  opacity: 1;
}

select {
  width: 100%;
  padding: 8px 24px 8px 8px;
  border-radius: 0;
  background-image: none;
  border: 1px solid #b8c2cc;
  font-family: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border: 1px solid #b8c2cc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus {
  outline: none;
}

/* clearfix */
.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

.tx-c {
  text-align: center !important;
}

.tx-l {
  text-align: left !important;
}

.tx-r {
  text-align: right !important;
}

/* スマホ以外ではリンク無効 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all .4s ease 0s,background .6s ease .2s;
  transition: all .4s ease 0s,background .6s ease .2s;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  -webkit-transition: .2s;
  transition: .2s;
}

.safety h2,
.jyokin h2,
.shoushu h2 {
  width: 100%;
  text-align: center;
  padding: 20px 0 30px;
  font-size: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  background-color: #920783;
  margin-bottom: 40px;
}

.safety h2 span,
.jyokin h2 span,
.shoushu h2 span {
  font-size: 1.3rem;
  color: yellow;
  display: block;
}

.m-title {
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 67.5625em) {
  .m-title {
    font-size: 2.8rem;
    text-align: center;
  }
}

.attention {
  width: 90vw;
  max-width: 1080px;
  padding: 30px 10px 10px;
  margin: 40px auto 0;
  position: relative;
  text-align: center;
  background-color: #FFFCF1;
  border: 1px solid #F4CB29;
}

.attention h3 {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 100%;
  text-align: center;
  max-width: 200px;
  display: inline;
  padding: 4px 20px;
  background-color: #F4CB29;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.mv {
  width: 100%;
  height: 100%;
  min-height: 368px;
  position: relative;
  background-color: #F9F9F9;
}

.mv h1 {
  left: -15px;
  position: relative;
}

.mv h1 img {
  width: 100%;
}

@media screen and (min-width: 37.5625em) {
  .mv {
    height: 100%;
  }
  .mv h1 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* header */
header {
  position: relative;
  height: 72px;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-box-shadow: 0 -70px 30px 50px #22292f;
          box-shadow: 0 -70px 30px 50px #22292f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.header__logo img {
  padding-top: 4px;
}

.header__fix {
  position: absolute;
  top: 0;
  right: 0;
}

.header__fix a {
  display: block;
}

@media screen and (min-width: 37.5625em) {
  header {
    height: 90px;
  }
  .header__fix {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__fix a {
    width: 100px;
    height: 90px;
  }
  .header__fix a img {
    width: 100%;
  }
}

/* footer */
footer {
  padding-top: 20px;
  background-color: #920783;
  color: white;
}

footer h2 {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  padding: 20px 0;
}

footer h2 span {
  display: block;
  line-height: 0;
  font-size: 1.3rem;
}

footer table {
  width: 90%;
  max-width: 440px;
  margin: 0 auto 40px;
}

footer table th,
footer table td {
  border: 1px solid #920783;
  background-color: white;
  color: #22292f;
  vertical-align: middle;
}

footer table th {
  width: 120px;
}

.copy {
  width: 100%;
  background-color: #41023A;
  text-align: center;
  padding: 10px;
}

#top section {
  margin-bottom: 30px;
}

.inner {
  padding: 0 15px;
}

.bigtitle {
  width: 94%;
  max-width: 1040px;
  font-weight: 900;
  font-size: 2.8rem;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  line-height: 100%;
  padding: 20px 0;
  margin: 0 auto;
}

.bigtitle strong {
  color: #920783;
}

@media screen and (min-width: 37.5625em) {
  .bigtitle {
    font-size: 7.8rem;
    padding: 0px 0 75px;
  }
}

.top_about {
  padding: 0 15px;
}

.top_about > div {
  width: 100%;
  max-width: 1400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  margin: 0 auto;
}

.top_about div > div:first-child {
  background-color: #920783;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
}

.top_about div > div:first-child h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

@media screen and (min-width: 67.5625em) {
  .top_about > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
  }
  .top_about div > div:first-child {
    width: 100%;
    max-width: 620px;
    padding: 40px;
    margin-right: 20px;
  }
  .top_about div > div:first-child h3 {
    font-size: 3.6rem;
    line-height: 130%;
    margin-bottom: 20px;
  }
  .top_about div > div:first-child p {
    line-height: 240%;
    text-align: justify;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .top_about div > div:last-of-type {
    width: 100%;
  }
  .top_about div > div:last-of-type img {
    width: 100%;
  }
}

.item h2 {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  padding: 20px 0;
}

.item h2 span {
  display: block;
  line-height: 0;
  font-size: 1.3rem;
}

.item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.item__inner > article {
  width: 100%;
  max-width: 340px;
  padding: 0 15px;
  margin: 0 auto 40px;
}

.item__inner > article h3 {
  font-size: 1.8rem;
  padding: 0 0 10px;
}

.item__inner-price {
  text-align: right;
  font-size: 2.3rem;
}

.item__inner-price span {
  font-size: 1.3rem;
  margin-right: 10px;
}

.item_btn {
  margin: 20px auto;
  text-align: center;
}

@media screen and (min-width: 67.5625em) {
  .item {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .item h2 {
    width: 200px;
    height: 200px;
    font-size: 3.6rem;
    line-height: 80px;
    padding: 60px 0;
  }
  .item__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .item .attention {
    margin-bottom: 60px;
  }
}

.safety__inner {
  text-align: center;
  margin-bottom: 40px;
}

.safety__box > div {
  margin: 40px auto 20px;
}

.safety__inner p:first-of-type {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  font-size: 2.6rem;
  margin-bottom: 30px;
}

.safety__inner p:last-of-type {
  margin-bottom: 20px;
}

.safety__inner02 {
  text-align: center;
}

.safety__txt01 {
  margin: 20px 0;
  text-align: left;
}

.safety__txt01 span {
  font-weight: 700;
  color: #e3342f;
}

.safety__txt01 span + span {
  color: #38c172;
}

@media screen and (min-width: 67.5625em) {
  .safety__inner,
  .safety__inner02 {
    width: 1400px;
    margin: 0 auto;
    font-size: 1.6rem;
    line-height: 240%;
  }
  .safety__box {
    width: 680px;
    height: 100%;
    background-color: #ffffff99;
  }
  .safety {
    background-image: url(/img/top_question_a01bk.jpg);
    background-repeat: no-repeat;
    background-position: right 30%;
  }
  .safety__inner p:first-of-type {
    width: 100%;
    max-width: 100%;
    font-size: 3.6rem;
    margin: 40px auto;
  }
  .safety__box img {
    width: 100%;
  }
  .safety__inner02 {
    background-image: url(/img/top_question_a02bk.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: lighten;
  }
  .safety__inner02 .safety__box {
    padding: 40px 0;
  }
}

.jyokin__inner p {
  margin: 20px 0;
}

@media screen and (min-width: 67.5625em) {
  .jyokin__inner {
    width: 100%;
    max-width: 1080px;
    margin: 40px auto;
    text-align: center;
  }
  .jyokin__inner p {
    font-size: 1.6rem;
    text-align: justify;
    padding: 20px;
  }
}

.shoushu__inner {
  text-align: center;
}

.shoushu__inner p {
  text-align: left;
  margin: 20px 0;
}

@media screen and (min-width: 67.5625em) {
  .shoushu {
    background-image: url(/img/top_question_d01bk.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-color: rgba(255, 255, 255, 0.2);
    background-blend-mode: lighten;
  }
  .shoushu__inner {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    text-align: center;
  }
  .shoushu__inner p {
    font-size: 1.6rem;
    text-align: justify;
    padding: 20px;
  }
  .shoushu__box {
    width: 680px;
    height: 100%;
    background-color: #ffffff99;
  }
}
