﻿@charset "utf-8";

/*リセットCSS ここから*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
}

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

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

img {
  border: none;
  vertical-align: bottom;
}

ul,
ol {
  list-style-type: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

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

a:focus {
  outline: none;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.cf {
  min-height: 1px;
}

* html .cf {
  height: 1px;
}

sup {
  font-size: 65%;
}

/*リセットCSS ここまで*/
/*変数*/
:root {
  --link: #ff0000;
  --color-violet: #35318d;
  --color-red: #e23e3d;
  --color-blue: #00a9e7;
  --color-yellow: #ffe400;
  --color-green: #4fbfc0;
  --color-gray: #3c3c3c;
  --color-lightgray: #f7f7f7;
  --color-lightgray2: #f4f4f4;
  --bg-ptn: url(../img/common/bg-ptn.png);
  --bg-ptn-sp: url(../img/common/bg-ptn-sp.png);
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  border-top: 3px solid var(--color-blue);
  background-color: var(--color-lightgray2);
  color: var(--color-gray);
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
  line-height: 1;
}

body:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 50%;
  height: 3px;
  content: "";
  background: var(--color-violet);
}

@media (min-width: 1080px) {
  body {
    background-color: var(--color-lightgray);
    border-top: 0;
    font-size: 1.6rem;
  }

  body.home {
    background: url(../img/home/body-bg.jpg) no-repeat top 232px center;
    background-color: var(--color-lightgray);
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gray);
}

a:hover {
  color: var(--link);
}

p {
  line-height: 1.9;
  margin-bottom: 2rem;
}

@media (min-width: 1080px) {
  p {
    line-height: 2.2;
    margin-bottom: 3.5rem;
  }
}

.contents-body>p {
  text-align: justify;
  letter-spacing: 0.03rem;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

@media (min-width: 1080px) {
  .contents-body>p {
    margin-right: 3rem;
    margin-left: 3rem;
  }
}

.bg-ptn {
  background: var(--bg-ptn-sp);
}

@media (min-width: 1080px) {
  .bg-ptn {
    background: var(--bg-ptn);
  }
}

.cta {
  padding: 15px 0 25px;
}

@media (min-width: 1080px) {
  .cta {
    padding: 45px 0;
  }
}

/*---------------------------------------------------------------------------
 icon font
---------------------------------------------------------------------------*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot") format("embedded-opentype"),
    url("../fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon.woff") format("woff"),
    url("../fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-calendar:before {
  content: "\e92f";
}

.icon-building:before {
  content: "\e92a";
}

.icon-line:before {
  content: "\e928";
}

.icon-arrow-left:before {
  content: "\e929";
}

.icon-arrow-top:before {
  content: "\e92b";
}

.icon-cross:before {
  content: "\e92c";
}

.icon-phone-2:before {
  content: "\e924";
}

.icon-phone-3:before {
  content: "\e925";
}

.icon-phone-4:before {
  content: "\e926";
}

.icon-sound:before {
  content: "\e927";
}

.icon-plus:before {
  content: "\e922";
}

.icon-minus:before {
  content: "\e923";
}

.icon-arrow-right-1:before {
  content: "\e900";
}

.icon-arrow-right-2:before {
  content: "\e901";
}

.icon-arrow-right-3:before {
  content: "\e902";
}

.icon-arrow-right-4:before {
  content: "\e903";
}

.icon-arrow-right-5:before {
  content: "\e904";
}

.icon-card:before {
  content: "\e905";
}

.icon-caution:before {
  content: "\e906";
}

.icon-check:before {
  content: "\e907";
}

.icon-denki:before {
  content: "\e908";
}

.icon-fee:before {
  content: "\e909";
}

.icon-flow:before {
  content: "\e90a";
}

.icon-fukidashi:before {
  content: "\e90b";
}

.icon-gift:before {
  content: "\e90c";
}

.icon-good:before {
  content: "\e90d";
}

.icon-hatena:before {
  content: "\e90e";
}

.icon-heart:before {
  content: "\e90f";
}

.icon-home:before {
  content: "\e910";
}

.icon-life:before {
  content: "\e911";
}

.icon-link:before {
  content: "\e912";
}

.icon-memo:before {
  content: "\e913";
}

.icon-mobile:before {
  content: "\e914";
}

.icon-money:before {
  content: "\e915";
}

.icon-pc:before {
  content: "\e916";
}

.icon-pen:before {
  content: "\e917";
}

.icon-phone:before {
  content: "\e918";
}

.icon-security:before {
  content: "\e919";
}

.icon-strage:before {
  content: "\e91a";
}

.icon-thunder:before {
  content: "\e91b";
}

.icon-tool:before {
  content: "\e91c";
}

.icon-trophy:before {
  content: "\e91d";
}

.icon-tv:before {
  content: "\e91e";
}

.icon-user:before {
  content: "\e91f";
}

.icon-users:before {
  content: "\e920";
}

.icon-wifi:before {
  content: "\e921";
}

/*---------------------------------------------------------------------------
 base box
---------------------------------------------------------------------------*/
.outer {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  width: auto;
  height: auto;
  box-sizing: border-box;
}

.inner {
  text-align: left;
  width: auto;
  height: auto;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .outer {
    width: 100%;
  }

  .inner {
    width: 1080px;
  }
}

/*---------------------------------------------------------------------------
 header
---------------------------------------------------------------------------*/
.footer-contact {
  display: none;
}

@media (min-width: 1080px) {
  .contact {
    border-top: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 166px;
  }

  .contact:before {
    display: none;
  }

  .footer-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 166px;
  }
}

.sitename {
  box-sizing: border-box;
  width: auto;
  text-align: center;
  padding: 15px 0 10px;
}

@media (min-width: 1080px) {
  .sitename {
    width: inherit;
    text-align: left;
    margin-right: auto;
    padding: 0;
    margin-bottom: 5px;
  }
}

.t-form .contact {
  background: none;
  justify-content: center;
}

.t-form .sitename {
  text-align: center;
  margin-right: 0;
}

.logo {
  margin-bottom: 8px;
}

@media (min-width: 1080px) {
  .logo {
    margin-bottom: 11px;
  }
}

.agency {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.01rem;
  line-height: 1.4;
  color: var(--color-gray);
  margin-bottom: 0.3rem;
}

@media (min-width: 1080px) {
  .agency {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    line-height: 1.5;
  }
}

@media only screen and (min-width: 1080px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: initial;
    text-decoration: none;
  }
}

.tel {
  visibility: hidden;
  display: none;
}

@media (min-width: 1080px) {
  .tel {
    display: block;
    text-align: center;
    padding: 0;
    margin-right: 60px;
  }

  .tel a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: bold;
  }

  .tel-text {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin-bottom: 8px;
    line-height: 1;
  }

  .tel-number {
    font-size: 3.6rem;
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: bold;
    letter-spacing: 0.05rem;
    margin-bottom: 8px;
    line-height: 1;
  }

  .tel-number span {
    display: inline-block;
    vertical-align: top;
    padding: 5px 6px 4px;
    background: var(--color-red);
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.06rem;
    border-radius: 2px;
    margin-top: 6px;
    margin-right: 8px;
  }

  .tel-recep {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    margin-bottom: 0;
    line-height: 1;
  }

  .tel-recep>span {
    font-weight: bold;
  }
}

.moushikomi {
  display: none;
}

@media (min-width: 1080px) {
  .moushikomi {
    display: block;
    box-sizing: border-box;
    text-align: center;
    width: 210px;
    height: 78px;
    line-height: 78px;
    border-radius: 39px;
    background-color: var(--color-yellow);
    box-shadow: 0px 3px #e9d100;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    padding: 0 15px;
    margin-bottom: 5px;
  }
}

.moushikomi:hover {
  transition: all 0.4s;
  background-color: var(--color-green);
  box-shadow: 0px 3px #389f9f;
}

.moushikomi a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
}

.moushikomi a {
  color: var(--color-gray);
  text-decoration: none;
}

.moushikomi a:hover {
  color: #fff;
  text-decoration: none;
}

.moushikomi i {
  font-size: 1.7rem;
  margin-right: 6px;
  vertical-align: text-bottom;
}

@media (min-width: 1080px) {
  .moushikomi i {
    font-size: 1.9rem;
    margin-right: 8px;
  }
}

/*---------------------------------------------------------------------------
 gnav
---------------------------------------------------------------------------*/
.gnav {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  height: auto;
}

@media (min-width: 1080px) {
  .gnav {
    background: none;
  }
}

.gnav li {
  box-sizing: border-box;
  text-align: left;
  width: 50%;
  height: 40px;
  line-height: 40px;
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  border-bottom: 1px solid #e0e0e0;
}

.gnav li:nth-child(odd) {
  border-right: 1px solid #e0e0e0;
}

.gnav li:nth-child(6):hover {
  background: #e23e3d;
}

.gnav li:nth-child(6) {
  background: #35318d;
}

.gnav li:nth-child(6) a,
.gnav li:nth-child(6) a:hover {
  color: #fff;
}

@media (min-width: 1080px) {
  .gnav li {
    text-align: center;
    width: inherit;
    height: 90px;
    line-height: 128px;
    background: url(../img/common/gnav/line.png) no-repeat center right;
    border-bottom: none;
  }

  .gnav li:nth-child(odd) {
    border-right: none;
  }

  .gnav li:nth-child(6):hover {
    background: url(../img/common/gnav/line2.png) no-repeat center right #e23e3d;
  }

  .gnav li:nth-child(6) {
    background: url(../img/common/gnav/line3.png) no-repeat center right #35318d;
  }
}

.gnav li a {
  font-weight: bold;
}

.gnav li:nth-child(1) a {
  box-sizing: border-box;
  background: url("../img/common/gnav/home.png") left 13px center no-repeat;
  background-size: 22px 20px;
  padding-left: 46px;
}

.gnav li:nth-child(2) a {
  box-sizing: border-box;
  background: url("../img/common/gnav/book.png") left 17px center no-repeat;
  background-size: 17px 21px;
  padding-left: 42px;
}

.gnav li:nth-child(3) a {
  box-sizing: border-box;
  background: url("../img/common/gnav/gift.png") left 15px center no-repeat;
  background-size: 17px 20px;
  padding-left: 46px;
}

.gnav li:nth-child(4) a {
  box-sizing: border-box;
  background: url("../img/common/gnav/sp.png") left 19px center no-repeat;
  background-size: 12px 22px;
  padding-left: 42px;
}

.gnav li:nth-child(5) a {
  box-sizing: border-box;
  background: url("../img/common/gnav/option.png") left 12px center no-repeat;
  background-size: 23px 19px;
  padding-left: 46px;
}

.gnav li:nth-child(6) a {
  box-sizing: border-box;
  background: url("../img/common/gnav/review.png") left 15px center no-repeat;
  background-size: 23px 21px;
  padding-left: 46px;
}

@media (min-width: 1080px) {
  .gnav li a {
    font-weight: normal;
  }

  .gnav li:nth-child(1) a {
    width: 140px;
    background: url("../img/common/gnav/home.png") center top 20px no-repeat;
    background-size: 22px 20px;
    padding-left: 0;
  }

  .gnav li:nth-child(2) a {
    width: 215px;
    background: url("../img/common/gnav/book.png") center top 20px no-repeat;
    background-size: 17px 21px;
    padding-left: 0;
  }

  .gnav li:nth-child(3) a {
    width: 215px;
    background: url("../img/common/gnav/gift.png") center top 20px no-repeat;
    background-size: 17px 20px;
    padding-left: 0;
  }

  .gnav li:nth-child(4) a {
    width: 160px;
    background: url("../img/common/gnav/sp.png") center top 20px no-repeat;
    background-size: 12px 22px;
    padding-left: 0;
  }

  .gnav li:nth-child(5) a {
    width: 160px;
    background: url("../img/common/gnav/option.png") center top 20px no-repeat;
    background-size: 23px 19px;
    padding-left: 0;
  }

  .gnav li:nth-child(6) a {
    width: 190px;
    background: url("../img/common/gnav/review.png") center top 20px no-repeat;
    background-size: 23px 21px;
    padding-left: 0;
  }
}

.gnav li:hover {
  background: linear-gradient(#f1f1f1 0%, #f1f1f1 5%, #fcfcfc 95%, #fcfcfc 100%);
  transition: background-color 0.5s;
}

@media (min-width: 1080px) {
  .gnav li:hover {
    background: url(../img/common/gnav/line.png) no-repeat center right,
      linear-gradient(#f1f1f1 0%, #f1f1f1 5%, #fcfcfc 95%, #fcfcfc 100%);
    transition: background-color 0.5s;
  }

  .gnav li:first-child {
    background: url(../img/common/gnav/line.png) no-repeat center left,
      url(../img/common/gnav/line.png) no-repeat center right;
  }

  .gnav li:hover:first-child {
    background: url(../img/common/gnav/line.png) no-repeat center left,
      url(../img/common/gnav/line.png) no-repeat center right,
      linear-gradient(#f1f1f1 0%, #f1f1f1 5%, #fcfcfc 95%, #fcfcfc 100%);
    transition: background-color 0.5s;
  }
}

.gnav li a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-gray);
  text-decoration: none;
  font-weight: bold;
}

.gnav li a:hover {
  color: var(--color-gray);
  text-decoration: none;
}

/*---------------------------------------------------------------------------
 footer Externallink
---------------------------------------------------------------------------*/
.footer-externallink {
  margin: 0 auto 10px;
}

.footer-externallink li {
  background-color: #fff;
  margin: 0 10px 3px;
  font-size: 1.3rem;
  line-height: 1.6;
}

.footer-externallink a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-gray);
  text-decoration: none;
  padding: 12px;
}

.footer-externallink a:hover {
  background-color: #cc0033;
  color: #fff;
  text-decoration: none;
}

.footer-externallink i {
  margin-right: 4px;
}

@media (min-width: 1080px) {
  .footer-externallink {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 3rem auto;
  }

  .footer-externallink li {
    background-color: inherit;
    font-size: 1.2rem;
    line-height: 2;
    margin: 0 2rem 0 0;
  }

  .footer-externallink li:last-child {
    margin-right: 0;
  }

  .footer-externallink a {
    color: var(--color-gray);
    text-decoration: none;
    padding: 0;
  }

  .footer-externallink a:hover {
    background-color: inherit;
    color: #fc3737;
    text-decoration: underline;
  }
}

/*---------------------------------------------------------------------------
 footer link
---------------------------------------------------------------------------*/
.footer-link {
  margin: 15px auto 15px;
}

.footer-link li {
  background-color: #fff;
  margin: 0 15px 3px;
  font-size: 1.3rem;
}

.home .footer-link li {
  background-color: #fff;
}

.footer-link a {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-gray);
  text-decoration: none;
  padding: 12px;
}

.footer-link a:hover {
  background-color: var(--color-red);
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1080px) {
  .footer-link {
    display: flex;
    justify-content: center;
    margin: 3rem auto;
  }

  .footer-link li {
    background-color: inherit;
    font-size: 1.3rem;
    margin: 0 2rem 0 0;
  }

  .home .footer-link li {
    background-color: inherit;
  }

  .footer-link li:last-child {
    margin-right: 0;
  }

  .footer-link a {
    color: var(--color-gray);
    text-decoration: none;
    padding: 0;
  }

  .footer-link a:hover {
    background-color: inherit;
    color: var(--link);
    text-decoration: underline;
  }
}

/*---------------------------------------------------------------------------
 footer
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  padding: 10px 0 12px;
}

.fixmenu-true {
  margin-bottom: 70px;
}

footer small {
  font-weight: bold;
  font-style: normal;
  font-size: 1.1rem;
  letter-spacing: 0.08rem;
  line-height: 1.8;
  color: #fff;
}

footer a {
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

@media (min-width: 1080px) {
  footer {
    padding: 20px 0;
    background: none;
  }

  .fixmenu-true {
    margin-bottom: 0;
  }

  footer small {
    font-size: 1.3rem;
  }
}

/*---------------------------------------------------------------------------
 pagetop
---------------------------------------------------------------------------*/
.top {
  visibility: hidden;
}

@media (min-width: 1080px) {
  .top {
    visibility: visible;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 15px;
    font-family: Arial, Helvetica, "sans-serif";
  }

  .top a {
    text-align: center;
    display: block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    box-sizing: border-box;
    color: var(--color-gray);
    background-color: var(--color-yellow);
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 35px;
    font-weight: bold;
  }

  .top a:hover {
    transition: all 0.4s;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-green);
  }
}

/*---------------------------------------------------------------------------
 パンくずリスト
---------------------------------------------------------------------------*/
.bread {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 15px 15px 15px;
}

.bread i {
  font-size: 1.3rem;
  margin-right: 3px;
}

.bread a {
  color: var(--color-gray);
  text-decoration: none;
  padding-right: 4px;
}

.bread a:hover {
  text-decoration: underline;
}

@media (min-width: 1080px) {
  .bread {
    font-size: 1.3rem;
    margin: 30px 0 0;
  }
}

/*---------------------------------------------------------------------------
 fix-menu sp only
---------------------------------------------------------------------------*/
.fix-menu {
  position: fixed;
  z-index: 1000;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  /*border-top: 1px solid #fff;*/
}

.fix-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: #fff;
  border-top: 2px solid #fff;
  background: var(--bg-ptn-sp);
}

.fix-menu li {
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  height: 60px;
  border-right: 2px solid #fff;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  /*background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-violet) 94%, var(--color-yellow) 94%, var(--color-yellow) 100%);*/
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 94%,
      var(--color-yellow) 94%,
      var(--color-yellow) 100%);
}

.fix-menu li:last-child {
  border-right: none;
}

.fix-menu li a {
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.fix-menu li a:hover {
  text-decoration: none;
}

.fix-menu li i {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}

.fix-menu_copyRight {
  font-size: 10px;
  font-weight: bold;
  background: var(--bg-ptn-sp);
  border-top: 2px solid #fff;
  color: #fff;
  text-align: center;
  padding: 0.8em;
  padding-bottom: calc(env(safe-area-inset-bottom) + 0.8em);
}

@media (min-width: 1080px) {
  .fix-menu {
    display: none;
  }
}

/*---------------------------------------------------------------------------
 contents
---------------------------------------------------------------------------*/
.contents {
  box-sizing: border-box;
  width: auto;
  height: auto;
  margin: 18px 0;
}

@media (min-width: 1080px) {
  .contents {
    display: flex;
    flex-direction: row;
    width: 1080px;
    margin: 40px 0 60px;
    align-items: flex-start;
  }
}

.contents-body {
  box-sizing: border-box;
  width: auto;
  height: auto;
  padding: 20px 18px;
  background-color: #fff;
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .contents-body {
    width: 790px;
    padding: 40px;
    margin-bottom: 0;
    border-radius: 20px;
  }
}

.sidebar {
  width: auto;
  height: auto;
  margin: 0 15px 15px;
}

@media (min-width: 1080px) {
  .sidebar {
    width: 250px;
    margin: 0 0 0 auto;
  }
}

.t-form .contents {
  padding: 15px;
  margin: 0 auto;
  background: #fff;
}

@media (min-width: 1080px) {
  .t-form .contents {
    padding: 60px;
    margin: 40px auto;
    border-radius: 8px;
  }
}

/*---------------------------------------------------------------------------
 sidebar
---------------------------------------------------------------------------*/
.sidebar-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: auto;
  height: auto;
  padding: 15px;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 0 0 20px 20px;
}

@media (min-width: 1080px) {
  .sidebar-menu {
    margin-bottom: 30px;
  }
}

.sidebar-menu li {
  text-align: center;
  box-sizing: border-box;
  width: 50%;
  height: auto;
  margin: 0;
  padding: 0 7px 10px;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.04rem;
  background: #fff;
  border-right: 2px dotted #e6e6e6;
  border-bottom: 2px dotted #e6e6e6;
}

.sidebar-menu li:nth-last-child(1) {
  border-bottom: 0;
}

.sidebar-menu li:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.sidebar-menu li:hover {
  background: url("../img/common/arrow.png") no-repeat right 2px bottom 2px;
  background-size: 12px 12px;
}

.sidebar-menu li:nth-child(even) {
  border-right: 0;
}

.sidebar-menu img {
  display: block;
  margin: 0 auto 0;
}

.sidebar-menu a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-gray);
  text-decoration: none;
}

.sidebar-menu a:hover {
  color: var(--color-gray);
  text-decoration: none;
}

.sidebar-menu-title {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  color: #fff;
  background: var(--color-violet);
  padding: 18px;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
}

/* .sidebar-menu-title:last-of-type {
  display: none;
} */
.sp-dn {
  display: none;
}

@media (min-width: 1080px) {
  .sp-dn {
    display: block;
  }
}

@media (min-width: 1080px) {
  .sidebar-menu-title {
    font-weight: normal;
    letter-spacing: 0.06rem;
  }

  .sidebar-menu-title:last-of-type {
    display: block;
  }
}

.sidebar-prize {
  display: block;
  box-sizing: border-box;
  text-align: center;
  padding: 18px 15px;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 0 0 20px 20px;
}

.sidebar-prize img:hover {
  animation: yure 2.5s ease infinite;
}

.sidebar-contact {
  display: none;
}

@media (min-width: 1080px) {
  .sidebar-contact {
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 5px 15px 18px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
  }

  .sidebar-contact p:nth-child(1) {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    margin: 0;
  }

  .sidebar-contact p:nth-child(2) {
    font-size: 2.2rem;
    font-family: "Century Gothic", "sans-serif";
    letter-spacing: 0.02rem;
    line-height: 1;
    margin: 0 0 10px;
    color: var(--color-red);
  }

  .sidebar-contact p:nth-child(2) a {
    font-weight: bold;
    text-decoration: none;
    color: var(--color-red);
  }

  .sidebar-contact p:nth-child(3) {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
    line-height: 1.7;
    margin: 0;
  }

  .sidebar-contact i {
    color: var(--color-gray);
    font-size: 2.2rem;
    margin-right: 8px;
    vertical-align: text-bottom;
  }

  .sidebar-moushikomi {
    display: block;
    box-sizing: border-box;
    text-align: center;
    width: auto;
    height: 48px;
    line-height: 48px;
    border-radius: 6px;
    background: #ffe13c;
    box-shadow: 0px 3px #eaca1b;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }

  .sidebar-moushikomi:hover {
    transition: all 0.4s;
    background: #ff7416;
    box-shadow: 0px 3px #ffb1b1;
  }

  .sidebar-moushikomi a {
    display: block;
    width: 100%;
    height: 100%;
    font-weight: bold;
  }

  .sidebar-moushikomi a {
    color: var(--color-gray);
    text-decoration: none;
  }

  .sidebar-moushikomi a:hover {
    color: #fff;
    text-decoration: none;
  }

  .sidebar-moushikomi i {
    font-size: 1.9rem;
    margin-right: 8px;
    vertical-align: text-bottom;
  }
}

.talentbox {
  box-sizing: border-box;
  width: auto;
  height: auto;
  background-color: var(--color-violet);
  padding: 7px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.talentbox:hover {
  animation: yure 2.5s ease infinite;
}

.talent a {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 7px;
  border-radius: 16px;
}

@media (min-width: 1080px) {
  .talentbox {
    margin-bottom: 30px;
  }

  .talent a {
    justify-content: flex-start;
  }
}

.talent div:nth-child(odd) {
  flex: 0 0 auto;
  margin-right: 15px;
}

.talent p:nth-child(1) {
  font-size: 11px;
  line-height: 1.4;
  margin-top: 5px;
  margin: 6px 0 0;
  font-weight: bold;
  color: var(--color-gray);
  letter-spacing: 0;
}

.talent p:nth-child(2) {
  font-size: 15px;
  margin: 0;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fc3737;
}

.talent p:nth-child(2) span {
  font-size: 11px;
  line-height: 1.4;
  margin-left: 3px;
  font-weight: bold;
  color: var(--color-gray);
  letter-spacing: 0;
}

.talent a {
  text-decoration: none;
}

.side-container {
  margin-bottom: 20px;
  border-radius: 0 0 20px 20px;
}

@media (min-width: 1080px) {
  .side-container {
    margin-bottom: 30px;
  }
}

.side-container li {
  box-sizing: border-box;
  width: auto;
  padding: 15px;
  background: #fff;
  margin-bottom: 2px;
}

.side-container li:last-child {
  border-radius: 0 0 20px 20px;
}

@media (min-width: 1080px) {
  .side-container li {
    width: 250px;
  }
}

.side-container li>div {
  display: flex;
}

.side-container p {
  text-align: justify;
  font-size: 1.3rem;
  letter-spacing: 0.015rem;
  line-height: 1.6;
  margin: 0;
  color: var(--color-gray);
}

@media (min-width: 1080px) {
  .side-container p {
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1.6;
  }
}

@media (min-width: 1080px) {
  .side-container-layout {
    margin-bottom: 15px;
  }
}

.side-container-layout div:nth-child(1) {
  flex: 0 0 auto;
  width: 100px;
  margin-right: 18px;
}

@media (min-width: 1080px) {
  .side-container-layout div:nth-child(1) {
    margin-right: 15px;
  }
}

.side-container-layout div:nth-child(2) {
  width: auto;
}

@media (min-width: 1080px) {
  .side-container-layout div:nth-child(2) {
    width: 105px;
  }
}

.side-container .side-option-detail {
  text-align: right;
}

.side-container .side-option-detail i {
  margin-left: 4px;
}

.side-container a {
  color: var(--color-gray);
  text-decoration: none;
}

.side-container a:hover {
  color: #f24141;
  text-decoration: underline;
}

/*---------------------------------------------------------------------------
 見出し
---------------------------------------------------------------------------*/
.title-1 {
  position: relative;
  margin-bottom: 20px;
  color: var(--color-gray);
  background: #fff;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.3rem;
  border-radius: 4px;
  padding: 12px 12px 14px;
  border: solid 2px var(--color-violet);
  border-left: solid 5rem var(--color-violet);
  font-weight: bold;
}

.title-1 span {
  font-weight: bold;
}

.title-1:before {
  position: absolute;
  font-family: icomoon;
  content: "\e917";
  left: -3.25rem;
  top: 48%;
  padding: 0;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 1080px) {
  .title-1 {
    margin-bottom: 40px;
    font-size: 2.6rem;
    letter-spacing: 0.25rem;
    padding: 26px 30px;
    border: solid 5px var(--color-violet);
    border-left: solid 10rem var(--color-violet);
    font-weight: normal;
  }

  .title-1 span {
    font-weight: normal;
  }

  .title-1:before {
    left: -6.5rem;
    font-size: 3.2rem;
  }
}

.title-2 {
  padding: 18px 16px 20px;
  margin: 3rem 0 1.5rem;
  border-left: 7px solid var(--color-violet);
  background-color: var(--color-lightgray);
  color: var(--color-gray);
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.15rem;
}

.step {
  display: table;
  color: #fff;
  background: var(--bg-ptn-sp);
  padding: 3px 5px 4px 6px;
  border-radius: 4px;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-family: Verdana, Geneva, "sans-serif";
  margin-bottom: 10px;
}

@media (min-width: 1080px) {
  .title-2 {
    padding: 30px 28px 32px;
    margin: 6rem 0 4rem;
    border-left: 8px solid var(--color-violet);
    background-color: var(--color-lightgray);
    font-size: 2.1rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.15rem;
  }

  .step {
    display: inline-block;
    vertical-align: middle;
    padding: 6px 10px 7px 12px;
    font-size: 1.6rem;
    margin-right: 20px;
    margin-bottom: 0;
  }
}

.title-3 {
  padding: 10px 18px;
  margin: 3rem 0 1.5rem;
  background-color: var(--color-violet);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  border-radius: 4px;
}

.title-3 span {
  display: block;
  font-weight: bold;
  border-left: 6px solid var(--color-yellow);
  padding: 2px 0 3px 12px;
}

@media (min-width: 1080px) {
  .title-3 {
    padding: 10px 18px;
    margin: 6rem 0 4rem;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
  }

  .title-3 span {
    font-weight: normal;
    border-left: 7px solid var(--color-yellow);
    padding: 1px 0 0 15px;
  }
}

.title-4 {
  padding: 10px 14px;
  margin: 3rem 0 1.75rem;
  border-left: 7px solid var(--color-yellow);
  background-color: var(--color-lightgray);
  color: var(--color-gray);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.15rem;
}

@media (min-width: 1080px) {
  .title-4 {
    padding: 12px 20px;
    margin: 6rem 0 3.5rem;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.15rem;
  }
}

.title-5 {
  padding: 6px 12px 6px;
  margin: 3rem 0 1.75rem;
  border-left: 6px solid var(--color-gray);
  background-color: var(--color-lightgray);
  color: var(--color-gray);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.15rem;
}

@media (min-width: 1080px) {
  .title-5 {
    padding: 8px 14px 7px;
    margin: 6rem 0 3.5rem;
    border-left: 7px solid var(--color-gray);
    font-size: 1.7rem;
    font-weight: normal;
    line-height: 1.6;
    letter-spacing: 0.1rem;
  }
}

/*---------------------------------------------------------------------------
 align
---------------------------------------------------------------------------*/
.right {
  text-align: right;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.justify {
  text-align: justify;
}

.contents-body .center {
  text-align: center;
}

.contents-body .right {
  text-align: right;
}

/*---------------------------------------------------------------------------
 color
---------------------------------------------------------------------------*/
.red {
  color: var(--color-red);
}

.bg-white {
  background-color: #fff;
}

.bg-red {
  background-color: var(--color-red);
}

.bg-img {
  background-image: var(--bg-img2);
}

@media (min-width: 1080px) {
  .bg-img {
    background-image: var(--bg-img);
  }
}

.bg-gnav {
  /*background: var(--bg-ptn);*/
  background: linear-gradient(#fcfcfc 0%, #fcfcfc 15%, #f1f1f1 85%, #f1f1f1 100%);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #fcfcfc;
}

@media (min-width: 1080px) {
  .bg-gnav {
    border-top: 1px solid #e8e8e8;
  }
}

@media (min-width: 1080px) {
  .line {
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
    background: #fff;
  }
}

/*---------------------------------------------------------------------------
 border
---------------------------------------------------------------------------*/
.border-top {
  border-top: 1px solid #f0f0f0;
}

/*---------------------------------------------------------------------------
 other
---------------------------------------------------------------------------*/
.bold {
  font-weight: bold;
}

.line {
  text-decoration: line-through;
}

.roman {
  font-family: "Times New Roman", Times, "serif";
}

.marker {
  background: linear-gradient(transparent 60%, #ace3ff 60%);
  padding: 0 5px 0;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .marker {
    padding: 0 5px 2px;
  }
}

.detail-link i,
.external-link i {
  font-size: 1.7rem;
  margin-left: 6px;
  vertical-align: text-bottom;
}

.detail-link i,
.external-link i {
  color: var(--color-gray);
}

.footer-link i {
  font-size: 1.5rem;
  margin-right: 4px;
  vertical-align: text-bottom;
}

.detail-button {
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: auto;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  background-color: var(--color-yellow);
  box-shadow: 0px 3px #e9d100;
  font-size: 1.1rem;
  letter-spacing: 0;
  padding: 0 10px;
}

@media (min-width: 1080px) {
  .detail-button {
    height: 54px;
    line-height: 54px;
    border-radius: 27px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    padding: 0 15px;
  }
}

.detail-button:hover {
  transition: all 0.4s;
  background-color: var(--color-green);
  box-shadow: 0px 3px #389f9f;
}

.detail-button a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
}

.detail-button a {
  color: var(--color-gray);
  text-decoration: none;
}

.detail-button a:hover {
  color: #fff;
  text-decoration: none;
}

.detail-button i {
  font-size: 1.5rem;
  margin-left: 4px;
  vertical-align: text-bottom;
}

@media (min-width: 1080px) {
  .detail-button i {
    font-size: 1.9rem;
    margin-left: 8px;
  }
}

.detail-button-2 {
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: auto;
  height: 44px;
  line-height: 44px;
  border-radius: 22px;
  background-color: var(--color-yellow);
  box-shadow: 0px 3px #e9d100;
  font-size: 1.1rem;
  letter-spacing: 0;
  padding: 0 10px;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .detail-button-2 {
    width: 50%;
    height: 56px;
    line-height: 56px;
    border-radius: 28px;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    padding: 0 15px;
  }
}

.detail-button-2:hover {
  transition: all 0.4s;
  background-color: var(--color-green);
  box-shadow: 0px 3px #389f9f;
}

.detail-button-2 a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
}

.detail-button-2 a {
  color: var(--color-gray);
  text-decoration: none;
}

.detail-button-2 a:hover {
  color: #fff;
  text-decoration: none;
}

.detail-button-2 i {
  font-size: 1.5rem;
  margin-left: 4px;
  vertical-align: text-bottom;
}

@media (min-width: 1080px) {
  .detail-button-2 i {
    font-size: 1.9rem;
    margin-left: 8px;
  }
}

.frame {
  padding: 25px 20px 25px 35px;
  background: var(--color-lightgray);
  border-radius: 6px;
}

@media (min-width: 1080px) {
  .frame {
    border-radius: 8px;
    padding: 35px 30px 35px 50px;
  }
}

.frame2 {
  display: inline-block;
  text-align: center;
  padding: 3px 16px;
  color: #fff;
  background: #f40000;
  border-radius: 4px;
  font-weight: bold;
  margin: 0 0 1rem;
}

@media (min-width: 1080px) {
  .frame2 {
    margin: 0 0 2rem;
  }
}

.frame3 {
  text-align: left;
  padding: 15px 20px 20px 25px;
  background: var(--color-lightgray);
  border-radius: 6px;
  margin-bottom: 2rem;
}

.frame3 p {
  line-height: 1;
  margin-bottom: 0;
}

.frame3 p span {
  display: block;
}

@media (min-width: 1080px) {
  .frame3 {
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 4rem;
  }

  .frame3 p span {
    display: inline;
  }
}

.border {
  border: 2px solid #f3f3f3;
}

/*---------------------------------------------------------------------------
 font-size
---------------------------------------------------------------------------*/
.fs-s {
  font-size: 1.1rem;
}

.fs-m {
  font-size: 1.2rem;
}

.fs-l {
  font-size: 1.6rem;
}

.fs-2l {
  font-size: 2rem;
}

.fs-3l {
  font-size: 2.4rem;
}

.fs-4l {
  font-size: 3.6rem;
}

@media (min-width: 1080px) {
  .fs-s {
    font-size: 1.3rem;
  }

  .fs-m {
    font-size: 1.6rem;
  }

  .fs-l {
    font-size: 1.8rem;
  }

  .fs-2l {
    font-size: 2.4rem;
  }

  .fs-3l {
    font-size: 3rem;
  }

  .fs-4l {
    font-size: 4rem;
  }
}

/*---------------------------------------------------------------------------
 margin-top
---------------------------------------------------------------------------*/
.mt {
  margin-top: 1.5rem;
}

@media (min-width: 1080px) {
  .mt {
    margin-top: 3rem;
  }
}

.mt2 {
  margin-top: 0.75rem;
}

@media (min-width: 1080px) {
  .mt2 {
    margin-top: 1.5rem;
  }
}

/*---------------------------------------------------------------------------
 margin-bottom
---------------------------------------------------------------------------*/
.mb0 {
  margin-bottom: 0;
}

.mb-s {
  margin-bottom: 0.5rem;
}

.mb-m {
  margin-bottom: 1rem;
}

.mb-l {
  margin-bottom: 1.5rem;
}

.mb-2l {
  margin-bottom: 2rem;
}

.mb-3l {
  margin-bottom: 3rem;
}

.mb-4l {
  margin-bottom: 5rem;
}

@media (min-width: 1080px) {
  .mb-s {
    margin-bottom: 1rem;
  }

  .mb-m {
    margin-bottom: 2rem;
  }

  .mb-l {
    margin-bottom: 3rem;
  }

  .mb-2l {
    margin-bottom: 4rem;
  }

  .mb-3l {
    margin-bottom: 6rem;
  }

  .mb-4l {
    margin-bottom: 10rem;
  }
}

.text-margin {
  margin-right: 4px;
  margin-left: 4px;
}

/*---------------------------------------------------------------------------
 list
---------------------------------------------------------------------------*/
.items {
  list-style-type: disc;
}

.items li {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

@media (min-width: 1080px) {
  .items li {
    line-height: 2;
    margin-bottom: 2.8rem;
  }
}

.items li:last-child {
  margin-bottom: 0;
}

.ordered {
  list-style-type: decimal;
}

.list-none {
  list-style-type: none;
}

.items-margin {
  margin-left: 3rem;
  margin-right: 1.5rem;
}

.items-margin2 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

@media (min-width: 1080px) {
  .items-margin {
    margin-left: 5rem;
    margin-right: 3rem;
  }

  .items-margin2 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.table .items li {
  line-height: 1.4;
}

@media (min-width: 1080px) {
  .table .items li {
    line-height: 1.6;
  }
}

.items dt {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 1080px) {
  .items dt {
    font-size: 1.7rem;
    line-height: 2;
    margin-bottom: 1.5rem;
  }
}

.items dd {
  line-height: 1.8;
  margin-bottom: 3rem;
  border-left: 3px solid #e0e0e0;
  padding-left: 1.75rem;
}

.items dd:last-child {
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .items dd {
    line-height: 2;
    margin-bottom: 5rem;
  }
}

/*---------------------------------------------------------------------------
 scroll table
---------------------------------------------------------------------------*/
.scroll {
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
}

.scroll:before {
  content: "※スワイプで表全体を確認できます";
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.5px;
  color: var(--color-red);
}

.scroll table {
  overflow: auto;
  margin-top: 8px;
}

@media (min-width: 1080px) {
  .scroll {
    display: none;
  }
}

/*---------------------------------------------------------------------------
 table
---------------------------------------------------------------------------*/
.table {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border-top: 2px solid #e5e5e5;
  border-left: 2px solid #e5e5e5;
  background-color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.15rem;
  white-space: nowrap;
}

.table th {
  vertical-align: middle;
  font-weight: bold;
  border-bottom: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  padding: 25px;
  background: var(--color-lightgray);
}

.table td {
  vertical-align: middle;
  border-bottom: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  padding: 25px;
}

.table td.dotline-right {
  border-right: 2px dotted #e2e2e2;
}

.table p:last-child {
  margin-bottom: 0;
}

.table p {
  line-height: 1.8;
  letter-spacing: 0.1rem;
  margin-right: auto;
  margin-left: auto;
}

.table th p {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .table {
    font-size: 1.6rem;
    white-space: inherit;
  }

  .table th {
    padding: 30px;
  }

  .table td {
    padding: 30px;
  }
}

.bg-tr th,
.bg-tr td {
  background: #fffbeb;
}

/*---------------------------------------------------------------------------
 table flexible
---------------------------------------------------------------------------*/
.flexible,
.flexible tbody,
.flexible tr,
.flexible th,
.flexible td {
  white-space: inherit;
}

@media (max-width: 640px) {

  .flexible,
  .flexible tbody,
  .flexible tr,
  .flexible th,
  .flexible td {
    display: block;
    word-break: break-all;
  }

  .flexible th {
    width: auto;
    height: auto;
  }

  .flexible td {
    width: auto;
    height: auto;
  }
}

/*---------------------------------------------------------------------------
 table cell size
---------------------------------------------------------------------------*/
.cell-60 {
  width: 60%;
}

.cell-55 {
  width: 55%;
}

.cell-50 {
  width: 50%;
}

.cell-45 {
  width: 45%;
}

.cell-40 {
  width: 40%;
}

.cell-35 {
  width: 35%;
}

.cell-30 {
  width: 30%;
}

.cell-25 {
  width: 25%;
}

.cell-20 {
  width: 20%;
}

.cell-15 {
  width: 15%;
}

.cell-10 {
  width: 10%;
}

/*---------------------------------------------------------------------------
 TAX
---------------------------------------------------------------------------*/
.tax {
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03rem;
  margin: 4rem 0 0;
  padding: 4px 10px 5px;
  color: var(--color-lightgray);
  background: var(--color-violet);
  border-radius: 5px;
}

@media (min-width: 1080px) {
  .tax {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 0.03rem;
    padding: 8px 10px 7px;
    margin: 8rem 0 0;
    font-weight: normal;
  }
}

/*---------------------------------------------------------------------------
 HOME
---------------------------------------------------------------------------*/
.mainimg {
  margin: 0 0 20px;
}

@media (min-width: 1080px) {
  .mainimg {
    margin: 40px 0;
  }
}

.mainimg a {
  position: relative;
  height: 0;
  display: block;
  overflow: hidden;
  padding-top: calc(1100 / 750 * 100%);
}

@media (min-width: 641px) and (max-width: 999px) {
  .mainimg a {
    padding-top: calc(580 / 1080 * 100%);
  }
}

@media (min-width: 1000px) and (max-width: 1079px) {
  .mainimg a {
    padding-top: calc(580 / 1080 * 100%);
  }
}

@media (min-width: 1080px) {
  .mainimg a {
    padding-top: calc(580 / 1080 * 100%);
  }
}

.mainimg a img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*---------------------------------------------------------------------------
 会社概要
---------------------------------------------------------------------------*/
.google-map {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media (min-width: 1080px) {
  .google-map {
    padding-bottom: 50%;
  }
}

/*---------------------------------------------------------------------------
 youtube
---------------------------------------------------------------------------*/
.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 30px;
}

.video:last-of-type {
  margin-bottom: 15px;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.best-agency {
  margin-bottom: 20px;
}

.youtube {
  position: relative;
  width: 100%;
  margin: 20px 0 20px;
  padding-top: 56.25%;
}

.best-agency p {
  text-align: justify;
  /*margin-left: 1.5rem;
  margin-right: 1.5rem;*/
}

.youtube img,
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 600px) {
  .best-agency {
    display: none;
  }
}

/*---------------------------------------------------------------------------
 マーキー
---------------------------------------------------------------------------*/
.marqueeRightLeft {
  box-sizing: border-box;
  width: auto;
  padding: 0.75em 0;
  margin: 20px 15px 25px;
  position: relative;
  overflow: hidden;
  text-align: left;
  font-weight: bold;
  color: var(--color-gray);
  background-color: #fff;
  border-radius: 10px;
}

.mainimg-bg .marqueeRightLeft {
  border: 2px solid var(--color-violet);
}

@media (min-width: 1080px) {
  .marqueeRightLeft {
    margin: 40px auto 45px;
  }
}

.marqueeRightLeft:before {
  content: "重要なお知らせ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-left: 0.25em;
  padding: 1em 0.9em;
  z-index: 5;
  color: #fff;
  background: var(--color-violet);
  border-radius: 6px 0 0 6px;
  font-size: 0.85em;
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .marqueeRightLeft:before {
    padding: 1em 1.25em;
  }
}

@media (min-width: 1080px) {
  .marqueeRightLeft:before {
    font-weight: normal;
  }
}

.marqueeRightLeft p:after {
  content: "";
  white-space: nowrap;
}

.marqueeRightLeft p {
  font-size: 0.9em;
  color: #666;
  margin: 0;
  line-height: 1;
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  -webkit-animation: marqueeRL 20s linear infinite;
  animation: marqueeRL 20s linear infinite;
}

@-webkit-keyframes marqueeRL {
  from {
    -webkit-transform: translate(0);
  }

  to {
    -webkit-transform: translate(-100%);
  }
}

@keyframes marqueeRL {
  from {
    -webkit-transform: translate(0);
    transform: translate(0);
  }

  to {
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
}

/*---------------------------------------------------------------------------
 CTA
---------------------------------------------------------------------------*/
.cta-copy {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin: 0.5rem 2rem 2rem;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .cta-copy {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.15rem;
    margin: 0 0 2rem;
    font-weight: normal;
  }
}

.cta-text {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  margin: 0 0.5rem 1.5rem;
}

@media (min-width: 1080px) {
  .cta-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 1rem 1.5rem;
  }
}

.cta-wrap {
  border-radius: 30px;
  padding: 165px 20px 25px;
  background: url(../img/home/cta-illust.png) no-repeat top 18px center #fff;
  background-size: 255px 124px;
  margin: 0 15px;
}

@media (min-width: 1080px) {
  .cta-wrap {
    border-radius: 30px;
    padding: 27px 27px 29px;
    background: url(../img/home/cta-illust.png) no-repeat top 18px left 45px #fff;
    background-size: 255px 124px;
    margin: 0;
  }
}

.cta-box {
  width: auto;
}

@media (min-width: 1080px) {
  .cta-box {
    margin-left: 310px;
    width: 720px;
  }
}

/*---------------------------------------------------------------------------
 Prize
---------------------------------------------------------------------------*/
.prize-copy {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  margin: 0.5rem 2rem 2rem;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .prize-copy {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.15rem;
    margin: 0 0 2rem;
    font-weight: normal;
  }
}

.prize-text {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  margin: 0 0.5rem 1.5rem;
}

@media (min-width: 1080px) {
  .prize-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 1rem 1.5rem;
  }
}

.prize-wrap {
  border-radius: 30px;
  padding: 165px 20px 25px;
  background: url(../img/home/home-prize.png) no-repeat top 25px center #fff;
  background-size: 266px 124px;
  margin: 0 15px;
}

@media (min-width: 1080px) {
  .prize-wrap {
    border-radius: 30px;
    padding: 27px 27px 29px;
    background: url(../img/home/home-prize.png) no-repeat top 23px left 35px #fff;
    background-size: 266px 124px;
    margin: 0;
  }
}

.prize-box {
  width: auto;
}

@media (min-width: 1080px) {
  .prize-box {
    margin-left: 310px;
    width: 720px;
  }
}

/*---------------------------------------------------------------------------
画像
---------------------------------------------------------------------------*/
.img-margin {
  margin: 2.5rem 1rem 1.75rem;
}

@media (min-width: 1080px) {
  .img-margin {
    margin: 5rem 0 3rem;
  }
}

/*---------------------------------------------------------------------------
ギミック
---------------------------------------------------------------------------*/
@keyframes yure {
  0% {
    transform: translateY(0);
  }

  5% {
    transform: translateY(0);
  }

  10% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-8px);
  }

  25% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

.opacity {
  opacity: 1;
}

.opacity:hover {
  opacity: 0.75;
  animation: yure 2.5s ease infinite;
}

/*---------------------------------------------------------------------------
 タレントプロフィール
---------------------------------------------------------------------------*/
.talent-mainimg {
  margin-bottom: 35px;
}

@media (min-width: 1080px) {
  .talent-mainimg {
    margin-bottom: 70px;
  }
}

.talent-layout {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .talent-layout {
    flex-direction: row-reverse;
    margin-bottom: 65px;
  }
}

.talent-layout div:first-child {
  width: auto;
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .talent-layout div:first-child {
    width: 350px;
    margin-bottom: 0;
  }
}

.talent-layout div:first-child p {
  text-align: justify;
}

.talent-layout div:first-child p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .talent-layout div:first-child p {
    text-align: justify;
    margin-right: 0;
    margin-left: 0;
  }
}

.talent-layout div:last-child {
  width: auto;
  flex: 0 0 auto;
}

@media (min-width: 1080px) {
  .talent-layout div:last-child {
    width: 300px;
  }
}

.talent-layout div:last-child img {
  width: 180px;
  height: auto;
}

@media (min-width: 1080px) {
  .talent-layout div:last-child img {
    width: inherit;
    height: auto;
  }
}

.staff {
  text-align: center;
  background: #f5f5f5;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}

/*---------------------------------------------------------------------------
 開通までの流れ
---------------------------------------------------------------------------*/
.step-icon {
  text-align: center;
  letter-spacing: 0;
}

.step-icon i {
  display: block;
  font-size: 5rem;
  margin-bottom: 0.3rem;
  color: var(--color-violet);
}

@media (min-width: 1080px) {
  .step-icon {
    font-size: 1.6rem;
  }

  .step-icon i {
    font-size: 6rem;
    margin-bottom: 1rem;
  }
}

.type-new {
  text-align: center;
  background: #4fbfc0;
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  margin: 0 0 9px;
}

@media (min-width: 1080px) {
  .type-new {
    margin: 0 0 12px;
  }
}

.type-change {
  text-align: center;
  background: #bb5958;
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  margin: 0 0 9px;
}

@media (min-width: 1080px) {
  .type-change {
    margin: 0 0 12px;
  }
}

/*---------------------------------------------------------------------------
 CTA
---------------------------------------------------------------------------*/
.cta-wrap {
  position: relative;
}

/*---------------------------------------------------------------------------
 レビューを書く
---------------------------------------------------------------------------*/
.write-review {
  text-align: center;
  margin: 20px 15px;
}

@media (min-width: 1080px) {
  .write-review {
    margin: 30px 0;
  }
}

/*---------------------------------------------------------------------------
 理由（トップページ）
---------------------------------------------------------------------------*/
.home-reason {
  margin: 30px 20px 40px;
}

@media (min-width: 1080px) {
  .home-reason {
    margin: 70px 0 80px;
  }
}

.home-reason-top {
  text-align: center;
  /*background: url(../img/home/home-reason-talent.png) no-repeat bottom right 50%;
  background-size: auto 180px;
  padding-bottom: 160px;*/
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .home-reason-top {
    /*background: url(../img/home/home-reason-talent.png) no-repeat left top;
    background-size: 266px 271px;
    min-height: 271px;
    padding-top: 20px;
    padding-left: 315px;
    padding-bottom: 0;*/
    margin-bottom: 80px;
  }
}

.home-reason-title {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (min-width: 1080px) {
  .home-reason-title {
    /* text-align: left; */
    font-size: 3.8rem;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    font-weight: normal;
    margin-bottom: 30px;
  }
}

.home-reason-title span {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-reason-title span {
    font-weight: normal;
  }
}

@media (min-width: 1080px) {
  .home-reason-title span:nth-child(1) {
    display: block;
  }
}

.home-reason-title span:nth-child(2) {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-red);
  padding: 0 4px;
}

@media (min-width: 1080px) {
  .home-reason-title span:nth-child(2) {
    font-size: 5.2rem;
    font-weight: normal;
    padding: 0 5px;
  }
}

.home-reason-body {
  text-align: justify;
  line-height: 2.1;
  width: auto;
}

@media (min-width: 1080px) {
  .home-reason-body {
    margin: 0 50px;
  }
}

.home-reason-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-reason-box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 60px;
  padding: 60px 20px 30px;
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .home-reason-box {
    width: 510px;
    border-radius: 120px;
    padding: 65px 75px;
    margin-bottom: 60px;
  }
}

.home-reason-box-title {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 15px;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-reason-box-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: 0.2rem;
    font-weight: normal;
  }
}

.home-reason-box-title span {
  display: block;
  margin-top: 5px;
  color: var(--color-red);
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-reason-box-title span {
    font-weight: normal;
  }
}

.home-reason-box-body {
  text-align: justify;
  font-size: 1.5rem;
  margin: 0 20px 0;
}

.label {
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 50px;
  margin: 0;
  padding: 9px 0 8px;
  z-index: 2;
  width: 40px;
  text-align: center;
  color: #fdd23c;
  font-size: 20px;
  font-family: Arial, Helvetica, "sans-serif";
  background: linear-gradient(to right, var(--color-violet) 0%, var(--color-violet) 100%);
  border-radius: 2px 0 0 0;
}

@media (min-width: 1080px) {
  .label {
    top: -6px;
    left: 87px;
  }
}

.label:before {
  position: absolute;
  content: "";
  top: 0;
  right: -6px;
  border: none;
  border-bottom: solid 6px #a7a4ee;
  border-right: solid 6px transparent;
}

.label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  height: 0;
  width: 0;
  border-left: 20px solid var(--color-violet);
  border-right: 20px solid var(--color-violet);
  border-bottom: 10px solid transparent;
}

.list-bottom-text {
  text-align: justify;
  font-size: 1.3rem;
  margin: 0 3rem 30px;
}

@media (min-width: 1080px) {
  .list-bottom-text {
    margin: 0 3rem 60px;
  }
}

/*---------------------------------------------------------------------------
特長（トップページ）
---------------------------------------------------------------------------*/
.home-feature {
  margin: 25px 20px 30px;
}

@media (min-width: 1080px) {
  .home-feature {
    margin: 40px 0 80px;
  }
}

.home-feature-top {
  /* background: url(../img/home/home-feature-talent.png) no-repeat bottom right 50%;
  background-size: auto 180px;
  padding-bottom: 175px; */
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .home-feature-top {
    /* background: url(../img/home/home-feature-talent.png) no-repeat right 18px top;
    background-size: 279px 258px;
    min-height: 258px; */
    padding-top: 20px;
    padding-bottom: 0;
    margin-bottom: 80px;
  }
}

.home-feature-title {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (min-width: 1080px) {
  .home-feature-title {
    font-size: 3.8rem;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    font-weight: normal;
    margin-bottom: 30px;
  }
}

.home-feature-title span {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-feature-title span {
    font-weight: normal;
  }
}

.home-feature-title span:nth-child(2) {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-red);
  padding: 0 4px;
}

@media (min-width: 1080px) {
  .home-feature-title span:nth-child(2) {
    font-size: 5.2rem;
    font-weight: normal;
    padding: 0 5px;
  }
}

.home-feature-body {
  line-height: 2.1;
  width: auto;
}

@media (min-width: 1080px) {
  .home-feature-body {
    margin: 0 50px;
  }
}

.home-feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-feature-box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 60px;
  padding: 40px 30px 30px;
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .home-feature-box {
    width: 510px;
    border-radius: 120px;
    padding: 65px 75px;
    margin-bottom: 60px;
  }
}

.home-feature-box-title {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-feature-box-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-weight: normal;
  }
}

.home-feature-box-title span {
  margin-top: 5px;
  color: var(--color-red);
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-feature-box-title span {
    font-weight: normal;
  }
}

.bg-feature {
  background: url(../img/home/bg-feature.png) no-repeat bottom left;
  padding-bottom: 1px;
}

@media (min-width: 1080px) {
  .bg-feature {
    background: url(../img/home/bg-feature.png) no-repeat bottom center;
    padding-bottom: 1px;
  }
}

/*---------------------------------------------------------------------------
 料金（トップページ）
---------------------------------------------------------------------------*/
.home-fee {
  margin: 0 20px 40px;
  padding-top: 30px;
}

@media (min-width: 1080px) {
  .home-fee {
    padding-top: 0;
    margin: 80px 0 80px;
  }
}

.home-fee-top {
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .home-fee-top {
    margin-bottom: 60px;
  }
}

.home-fee-title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (min-width: 1080px) {
  .home-fee-title {
    font-size: 3.8rem;
    line-height: 1.2;
    letter-spacing: 0.15rem;
    font-weight: normal;
    margin-bottom: 40px;
  }
}

.home-fee-title span:nth-child(1) {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-fee-title span:nth-child(1) {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
  }
}

.home-fee-title span:nth-child(2) {
  font-weight: bold;
  color: var(--color-red);
  padding: 0 4px;
}

@media (min-width: 1080px) {
  .home-fee-title span:nth-child(2) {
    font-weight: normal;
    padding: 0 5px;
  }
}

.home-fee-body {
  text-align: justify;
  line-height: 2.1;
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 1080px) {
  .home-fee-body {
    text-align: center;
  }
}

.home-fee-img {
  margin-bottom: 25px;
}

@media (min-width: 1080px) {
  .home-fee-img {
    margin-bottom: 50px;
  }
}

.home-fee-text {
  text-align: justify;
  line-height: 2.1;
  width: auto;
  font-size: 1.1rem;
  margin: 0 20px 30px;
}

@media (min-width: 1080px) {
  .home-fee-text {
    text-align: left;
    margin: 0 30px 60px;
    font-size: 1.3rem;
  }
}

/*---------------------------------------------------------------------------
 セット割（トップページ）
---------------------------------------------------------------------------*/
.home-setwari {
  padding: 35px 20px 40px;
}

@media (min-width: 1080px) {
  .home-setwari {
    padding: 80px 0;
  }
}

.home-setwari-top {
  margin-bottom: 40px;
  color: #fff;
}

@media (min-width: 1080px) {
  .home-setwari-top {
    margin-bottom: 80px;
  }
}

.home-setwari-title {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  padding: 0 30px;
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .home-setwari-title {
    font-size: 3.8rem;
    line-height: 1.4;
    letter-spacing: 0.2rem;
    font-weight: normal;
    padding: 0;
    margin-bottom: 50px;
  }
}

.home-setwari-title span {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-setwari-title span {
    display: block;
    font-weight: normal;
  }
}

.home-setwari-body {
  text-align: justify;
  line-height: 2.1;
  width: auto;
  margin: 0 15px 0;
}

@media (min-width: 1080px) {
  .home-setwari-body {
    text-align: center;
    margin: 0 30px;
  }
}

.home-setwari-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home-setwari-box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 65px 40px 40px 40px;
  padding: 45px 40px 30px;
  margin-bottom: 35px;
}

.home-setwari-box:last-child {
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .home-setwari-box {
    width: 510px;
    border-radius: 80px;
    padding: 65px 75px 60px;
    margin-bottom: 0;
  }
}

.home-setwari-box-title {
  text-align: center;
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-setwari-box-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    letter-spacing: 0.2rem;
    font-weight: normal;
  }
}

.setwari-label-wrap {
  position: absolute;
  top: -7px;
  left: -6px;
  width: 89px;
  height: 91px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

@media (min-width: 1080px) {
  .setwari-label-wrap {
    position: absolute;
    top: -7px;
    left: -6px;
  }
}

.setwari-label {
  display: inline-block;
  position: absolute;
  right: -24px;
  top: 22px;
  width: 160px;
  font-family: Arial, Helvetica, "sans-serif";
  line-height: 16px;
  text-align: center;
  background: linear-gradient(to left, var(--color-blue) 0%, var(--color-blue) 100%);
  color: #fff;
  letter-spacing: 0.05em;
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.setwari-label:before,
.setwari-label:after {
  position: absolute;
  content: "";
  border-top: 4px solid #006c93;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: -4px;
}

.setwari-label:before {
  right: 14px;
}

.setwari-label:after {
  left: 18px;
}

.label-au {
  font-size: 18px;
  padding: 6px 0 8px;
}

.label-uq {
  font-size: 14px;
  padding: 7px 0;
}

/*---------------------------------------------------------------------------
 オプション（トップページ）
---------------------------------------------------------------------------*/
.home-option {
  text-align: center;
  padding: 35px 20px 40px;
}

@media (min-width: 1080px) {
  .home-option {
    padding: 80px 0;
  }
}

.home-option-top {
  margin-bottom: 40px;
}

@media (min-width: 1080px) {
  .home-option-top {
    margin-bottom: 80px;
  }
}

.home-option-title {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  padding: 0 30px;
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .home-option-title {
    font-size: 3.8rem;
    line-height: 1.4;
    letter-spacing: 0.2rem;
    font-weight: normal;
    padding: 0;
    margin-bottom: 50px;
  }
}

.home-option-title span {
  display: block;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .home-option-title span {
    font-weight: normal;
  }
}

.home-option-body {
  text-align: justify;
  line-height: 2.1;
  width: auto;
  margin: 0 20px 0;
}

@media (min-width: 1080px) {
  .home-option-body {
    text-align: center;
    margin: 0 30px;
  }
}

.home-option-box {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  margin: 0 0 40px;
}

@media (min-width: 1080px) {
  .home-option-box {
    flex-direction: row-reverse;
    margin: 0 0 80px;
  }
}

.home-option-box img {
  flex-shrink: 0;
  border-radius: 60px 60px 0 0;
}

@media (min-width: 728px) and (max-width: 1079px) {
  .home-option-box img {
    width: 100%;
    height: auto;
    border-radius: 60px 60px 0 0;
  }
}

@media (min-width: 1080px) {
  .home-option-box img {
    border-radius: 120px 0 0 120px;
  }
}

.home-option-box div:nth-child(1) {
  box-sizing: border-box;
  width: auto;
  padding: 30px;
  border-radius: 0 0 60px 60px;
  background: #fff;
}

@media (min-width: 1080px) {
  .home-option-box div:nth-child(1) {
    width: 630px;
    padding: 55px 90px 15px 60px;
    border-radius: 0 120px 120px 0;
  }
}

.home-option-box div:nth-child(1) h3 {
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.075rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .home-option-box div:nth-child(1) h3 {
    text-align: left;
    font-size: 2.1rem;
    letter-spacing: .1rem;
    font-weight: normal;
    margin-bottom: 25px;
  }
}

.home-option-box div:nth-child(1) p {
  text-align: justify;
  margin: 0;
}

.home-option-box div:nth-child(2) {
  width: 100%;
  border-radius: 60px 60px 0 0;
  background: #fff;
}

@media (min-width: 1080px) {
  .home-option-box div:nth-child(2) {
    border-radius: 120px 0 0 120px;
    width: 450px;
  }
}

/*---------------------------------------------------------------------------
 よくある質問（トップページ）
---------------------------------------------------------------------------*/
.faq-list {
  padding: 0 20px 25px;
}

@media (min-width: 1080px) {
  .faq-list {
    padding: 0 0 70px;
  }
}

.home-faq-title {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  padding: 20px 0 20px;
  color: #fff;
}

@media (min-width: 1080px) {
  .home-faq-title {
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0.15rem;
    font-weight: normal;
    padding: 60px 0 50px;
  }
}

.faq-list-item {
  margin-bottom: 20px;
}

.faq-list-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .faq-list-item {
    margin-bottom: 40px;
  }
}

.faq-q {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
  color: var(--color-violet);
  background-color: #fff;
  border-radius: 30px;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .faq-q {
    font-size: 1.9rem;
    font-weight: normal;
    border-radius: 30px;
    padding: 2rem 3rem;
  }
}

.faq-q:hover {
  color: var(--color-violet);
}

.faq-q:hover::after {
  color: var(--color-blue);
}

.faq-q.active {
  background: var(--color-yellow);
  color: #151515;
  border-radius: 30px 30px 0 0;
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .faq-q.active {
    border-radius: 30px 30px 0 0;
  }
}

.faq-q::after {
  font-family: "icomoon";
  content: "\e922";
  font-size: 2.6rem;
  color: var(--color-blue);
  margin-left: auto;
}

@media (min-width: 1080px) {
  .faq-q::after {
    font-size: 3.2rem;
  }
}

.faq-q.active::after {
  font-family: "icomoon";
  content: "\e923";
  color: var(--color-blue);
}

@media (min-width: 1080px) {
  .faq-q::before {
    text-align: center;
    content: "Q";
    background: var(--color-blue);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    font-family: Arial, Helvetica, "sans-serif";
    margin-right: 2.4rem;
  }
}

.faq-a {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  clear: both;
  font-size: 1.5rem;
  line-height: 1.5;
  background: #fff;
  border-radius: 0 0 30px 30px;
  transition: all 0.2s ease 0.01s;
}

@media (min-width: 1080px) {
  .faq-a {
    font-size: 1.7rem;
    border-radius: 0 0 30px 30px;
  }
}

.faq-a p {
  text-align: justify;
}

.faq-a.active {
  opacity: 1;
  max-height: 100%;
  background: #fff;
  transition: all 0.2s ease 0.01s;
  padding: 2rem 2.5rem 1.5rem;
}

@media (min-width: 1080px) {
  .faq-a.active {
    padding: 4rem 6rem 2rem;
  }
}

/*---------------------------------------------------------------------------
 レビュー（トップページ）
---------------------------------------------------------------------------*/
.review {
  text-align: center;
  padding: 35px 20px 40px;
}

@media (min-width: 1080px) {
  .review {
    padding: 80px 0;
  }
}

.review-top {
  margin-bottom: 40px;
}

@media (min-width: 1080px) {
  .review-top {
    margin-bottom: 80px;
  }
}

.review-title {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  padding: 0 30px;
  margin-bottom: 20px;
}

@media (min-width: 1080px) {
  .review-title {
    font-size: 3.8rem;
    line-height: 1.4;
    letter-spacing: 0.2rem;
    font-weight: normal;
    padding: 0;
    margin-bottom: 50px;
  }
}

.review-title span {
  display: block;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .review-title span {
    font-weight: normal;
  }
}

.review-body {
  text-align: justify;
  line-height: 2.1;
  width: auto;
  margin: 0 20px 0;
}

@media (min-width: 1080px) {
  .review-body {
    text-align: center;
    margin: 0 30px;
  }
}

/*---------------------------------------------------------------------------
 その他
---------------------------------------------------------------------------*/
.review-top-text {
  text-align: justify;
  background: #fffdd1;
  padding: 17px 26px 17px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.review-top-text p {
  margin-bottom: 0;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

.campaign-text {
  text-align: justify;
  margin: 0;
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.07rem;
  color: #666;
  font-weight: bold;
}

.campaign-text a {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .campaign-text {
    padding: 0 60px 45px;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

#original span,
#official span {
  display: block;
  font-weight: bold;
  margin-top: 5px;
}

@media (min-width: 1080px) {

  #original span,
  #official span {
    display: inline;
    font-weight: normal;
    margin-top: 0;
  }
}

.hikaku caption {
  background: var(--bg-ptn-sp);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px 12px 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  text-align: left;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .hikaku caption {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.05rem;
    font-weight: normal;
    padding: 25px 30px;
    border-radius: 30px 30px 0 0;
  }
}

.hikaku-wrap {
  width: 94%;
  margin: 0 3%;
  overflow-x: auto;
}

@media (min-width: 1080px) {
  .hikaku-wrap {
    width: auto;
    margin: 0;
    overflow-x: hidden;
  }
}

.hikaku-wrap:before {
  content: "※スワイプで表全体を確認できます";
  font-size: 9px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.5px;
  color: #ff0000;
  margin-bottom: 5px;
}

@media (min-width: 1080px) {
  .hikaku-wrap:before {
    display: none;
  }
}

.hikaku-wrap table {
  overflow: auto;
  white-space: nowrap;
}

@media (min-width: 1080px) {
  .hikaku-wrap table {
    overflow: hidden;
    white-space: inherit;
  }
}

.hikaku {
  box-sizing: border-box;
  height: auto;
  border-left: 2px solid #e5e5e5;
  background-color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 1px #fff;
  width: 100%;
  margin-bottom: 15px;
}

.hikaku th,
.hikaku td {
  line-height: 1.6;
  padding: 10px 12px;
}

.hikaku th:nth-child(1) {
  position: sticky;
  left: 0;
  width: 200px;
  background: var(--bg-ptn-sp);
  color: #fff;
}

.hikaku thead th:nth-child(2) {
  /*width: 200px;*/
}

@media (min-width: 1080px) {
  .hikaku {
    width: 1080px;
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .hikaku th,
  .hikaku td {
    padding: 12px 12px;
  }
}

.hikaku p {
  margin: 0;
}

.hikaku th {
  vertical-align: middle;
  font-weight: bold;
  border-bottom: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
  background-color: #f7f7f7;
}

.hikaku td {
  vertical-align: middle;
  border-bottom: 2px solid #e5e5e5;
  border-right: 2px solid #e5e5e5;
}

.hikaku p {
  font-weight: bold;
  line-height: 1.6;
}

.hikaku thead p {
  font-weight: bold;
}

@media (min-width: 1080px) {
  .hikaku p {
    font-weight: normal;
  }
}

.hikaku th.border-lr,
.hikaku td.border-lr {
  border-left: 4px solid #ffd600;
  border-right: 4px solid #ffd600;
  background: #fff9e8;
}

.hikaku th.border-top,
.hikaku td.border-top {
  border-top: 4px solid #ffd600;
}

.hikaku th.border-bottom,
.hikaku td.border-bottom {
  border-bottom: 4px solid #ffd600;
}

.hikaku thead th.border-lr {
  background: #ffd600;
}

@media (min-width: 1080px) {

  .hikaku th.border-lr,
  .hikaku td.border-lr {
    border-left: 8px solid #ffd600;
    border-right: 8px solid #ffd600;
    background: #fff9e8;
  }

  .hikaku th.border-top,
  .hikaku td.border-top {
    border-top: 8px solid #ffd600;
  }

  .hikaku th.border-bottom,
  .hikaku td.border-bottom {
    border-bottom: 8px solid #ffd600;
  }
}

/*list*/
.cp-notes {
  margin-bottom: 30px;
}

.cp-notes li {
  text-align: justify;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 20px 15px 30px;
}

.cp-notes li:last-child {
  margin-bottom: 0;
}

@media (min-width: 1080px) {
  .cp-notes {
    margin-bottom: 50px;
  }

  .cp-notes li {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0 30px 10px 40px;
  }
}

/*list end*/
.hikaku-fs-l {
  font-size: 2.2rem;
  font-family: "Times New Roman", Times, "serif";
  font-weight: bold;
}

@media (min-width: 1080px) {
  .hikaku-fs-l {
    font-size: 2.6rem;
  }
}

.hikaku-fs-m {
  font-size: 1.8rem;
  font-family: "Times New Roman", Times, "serif";
  font-weight: bold;
}

@media (min-width: 1080px) {
  .hikaku-fs-m {
    font-size: 2rem;
  }
}

.nnc {
  font-size: 1.3rem;
}

@media (min-width: 1080px) {
  .nnc {
    font-size: 1.6rem;
  }
}

.hikaku sup {
  font-size: 1rem;
}

.home-cphikaku-top {
  margin-top: 40px;
  margin-bottom: 25px;
}

@media (min-width: 1080px) {
  .home-cphikaku-top {
    margin-top: 80px;
    margin-bottom: 50px;
  }
}

.home-cphikaku-title {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (min-width: 1080px) {
  .home-cphikaku-title {
    font-size: 3.8rem;
    line-height: 1.2;
    letter-spacing: 0.15rem;
    font-weight: normal;
    margin-bottom: 40px;
  }
}

.home-cphikaku-title span:nth-child(1) {
  font-weight: bold;
  display: block;
}

@media (min-width: 1080px) {
  .home-cphikaku-title span:nth-child(1) {
    margin-bottom: 10px;
    font-weight: normal;
  }
}

.home-cphikaku-title span:nth-child(2) {
  font-weight: bold;
  color: var(--color-red);
  padding: 0 4px;
}

@media (min-width: 1080px) {
  .home-cphikaku-title span:nth-child(2) {
    font-weight: normal;
    padding: 0 5px;
  }
}

.home-cphikaku-body {
  text-align: justify;
  line-height: 2.1;
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 1080px) {
  .home-cphikaku-body {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}

.prize-border {
  text-align: center;
  margin-bottom: 4rem;
}

.prize-border img {
  border: 5px solid #f5f5f5;
}

/*---------------------------------------------------------------------------
 privacy
---------------------------------------------------------------------------*/
.privacypolicy-contact {
  text-align: center;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
}

.privacypolicy-handling {
  margin: 0 20px 120px;
}

.privacypolicy-handling h2 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 60px;
  margin-bottom: 40px;
  color: #191e2d;
}

.privacypolicy-handling h3 {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 0 auto 20px;
  border-left: 4px solid #191e2d;
  padding: 15px 20px;
  color: #191e2d;
  background: #f7f7f7;
  line-height: 1.6;
}

.privacypolicy-handling p {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.1em;
  margin: 0 1.5em 30px;
  color: #333;
}

.privacypolicy-handling-list {
  margin-bottom: 30px;
}

.privacypolicy-handling-list li {
  text-align: justify;
  list-style-type: decimal;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  margin: 0 10px 10px 30px;
  color: #333;
}

.privacypolicy-handling-list li>ul {
  margin: 15px 0 30px;
}

.privacypolicy-handling-list li>ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.type-none li>ul li {
  list-style-type: none;
}

.privacypolicy-handling-line {
  text-decoration: underline;
}

.privacypolicy-contact {
  text-align: center;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 6px;
}

.privacypolicy-list li {
  text-align: justify;
  list-style-type: lower-latin;
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 30px 20px;
}

/*HOME 利用料金切り替え*/
.tab-area {
  display: flex;
  justify-content: space-around;
  cursor: pointer;
  margin-top: 50px;
  border-radius: 20px;
}

.tab {
  position: relative;
  width: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.06rem;
  text-align: center;
  color: #b4b4b4;
  background-color: #fff;
  padding: 15px;
}

@media (min-width: 1080px) {
  .tab {
    font-weight: normal;
    font-size: 2rem;
  }
}

.tab:nth-child(odd) {
  border-radius: 12px 0 0 12px;
}

.tab:nth-child(even) {
  border-radius: 0 12px 12px 0;
}

.tab:hover {
  background-color: var(--color-violet);
  color: #fff;
}

.tab.active {
  background-color: var(--color-violet);
  color: #fff;
}

.tab.active:after {
  position: absolute;
  bottom: -30px;
  left: 45%;
  content: "";
  height: 15px;
  border-top: 15px solid var(--color-violet);
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.tab-content {
  display: none;
}

.tab-content.show {
  margin-top: 40px;
  display: block;
}

/*---------------------------------------------------------------------------
 ページ振り分け
---------------------------------------------------------------------------*/
.sort-box {
  background: #f5f3f1;
  padding: 12px 12px 0;
  border-radius: 16px;
  margin-bottom: 30px;
}

@media (min-width: 1080px) {
  .sort-box {
    background: #f7f6f5;
    padding: 30px 30px 0;
    border-radius: 20px;
    margin-bottom: 60px;
  }
}

.sort-detail {
  display: flex;
  flex-wrap: wrap;
}

.sort-detail li {
  text-align: center;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 10px;
  padding: 18px 18px 21px;
  margin: 0 0 15px 0;
  box-shadow: 0 2px #f5f2f0;
}

@media (min-width: 1080px) {
  .sort-detail li {
    width: 310px;
    padding: 20px 20px 22px;
    margin: 0 30px 30px 0;
    border-radius: 16px;
  }

  .sort-detail li:nth-child(2n) {
    margin-right: 0;
  }
}

.sort-detail img {
  margin: 5px 0 15px;
}

@media (min-width: 1080px) {
  .sort-detail img {
    margin: 10px 0 25px;
  }
}

.sort-detail-button {
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: auto;
  height: auto;
  border-radius: 20px;
  background-color: var(--color-yellow);
  box-shadow: 0px 2px #e9d100;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin: 0 auto;
}

@media (min-width: 1080px) {
  .sort-detail-button {
    font-size: 1.3rem;
    margin: 0 auto;
  }
}

.sort-detail-button:hover {
  transition: all 0.4s;
  color: #fff;
  background-color: var(--color-green);
  box-shadow: 0px 2px #389f9f;
}

.sort-detail-button a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px 12px 12px;
  font-weight: bold;
}

.sort-detail-button a {
  color: var(--color-darkgray);
  text-decoration: none;
}

.sort-detail-button a:hover {
  color: #fff;
  text-decoration: none;
}

.sort-detail-button i {
  font-size: 1.1rem;
  margin-left: 2px;
  vertical-align: middle;
}

@media (min-width: 1080px) {
  .sort-detail-button i {
    font-size: 1.3rem;
    margin-left: 4px;
  }
}

.warranty-type {
  text-align: center;
}

@media (min-width: 1080px) {
  .warranty-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.warranty-type li {
  width: auto;
  height: auto;
  margin-bottom: 50px;
}

@media (min-width: 1080px) {
  .warranty-type li {
    width: 330px;
    margin-bottom: 50px;
  }
}

.warranty-type figcaption {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .1rem;
  margin-top: 20px;
}

/*---------------------------------------------------------------------------
FAQアコーディオン
---------------------------------------------------------------------------*/

.faq-box {
  margin-right: 20px;
  margin-left: 20px;
  padding-bottom: 15px;
  color: #656565;
}

@media (min-width: 1080px) {
  .faq-box {
    padding-bottom: 50px;
    margin: 0;
  }
}

details.faq-item {
  border-radius: var(--radius);
  margin: 0 0 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 1080px) {
  details.faq-item {
    margin: 0 0 30px;
  }
}

details.faq-item>summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  font-weight: bold;
  line-height: 1.5;
  background: #fff;
  border-radius: 30px;
}

@media (min-width: 1080px) {
  details.faq-item>summary {
    border-radius: 40px;
    padding: 22px 32px;
    gap: 20px;
    font-weight: normal;
    font-size: 1.8rem;
  }
}

details.faq-item>summary::-webkit-details-marker {
  display: none;
}

details.faq-item>summary:focus-visible {
  outline: 2px solid rgba(30, 122, 0, .45);
  outline-offset: 2px;
}

details.faq-item[open]>summary {
  background: linear-gradient(90deg, #e3e3ff, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  color: var(--color-gray);
  border-radius: 30px 30px 0 0;
}

@media (min-width: 1080px) {
  details.faq-item[open]>summary {
    border-radius: 40px 40px 0 0;
  }
}

.q-badge {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-violet);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: bold;
}

@media (min-width: 1080px) {
  .q-badge {
    font-weight: normal;
  }
}

details.faq-item>summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 700;
  color: var(--color-red);
  width: 28px;
  text-align: center;
}

details.faq-item[open]>summary::after {
  content: "–";
  color: var(--color-red);
}

details.faq-item>.faq-body {
  max-height: none !important;
}

details.faq-item>.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows .45s cubic-bezier(.4, 0, .2, 1),
    opacity .45s ease;
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  will-change: grid-template-rows, opacity;
}

@media (min-width: 1080px) {
  details.faq-item>.faq-body {
    border-radius: 0 0 40px 40px;
  }
}

details.faq-item[open]>.faq-body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-inner {
  overflow: hidden;
  min-height: 0;
  padding: 15px 25px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

@media (min-width: 1080px) {
  .faq-inner {
    padding: 25px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  details.faq-item>.faq-body {
    transition: none;
  }
}