@charset "UTF-8";
/* COMMON START ------------------------------------*/
/* Google CDN */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;700;900&display=swap");
/* RESET START ------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

h1, h2, h3, h4, h5, h6, p, ul, li, dl, dt, dd, figure, section {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
}

small {
  font-size: 0.8rem;
}

sub, sup {
  font-size: 0.7rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.24em;
}

sup {
  top: -0.48em;
}

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

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

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.16;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.32em 0.72em 0.64em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template, [hidden] {
  display: none;
}

/* RESET END ------------------------------------*/
/* BASE EDIT START ------------------------------*/
/* PC SP 全ページ 共通設定 -------------------------------*/
/* PC版 ------------------------------------------ */
html {
  height: 100%;
  scroll-behavior: smooth;
  background-color: #111;
}

body {
  width: 100%;
  height: 100%;
  z-index: -10;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 170%;
  color: #222222;
}

.wrapper {
  width: 100%;
}

span.anchor {
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}

.section-title {
  font-weight: 700;
  color: #000000;
  font-size: 40px;
  text-align: center;
  line-height: 140%;
}

.section-subtitle {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  line-height: 140%;
}

.section-caption {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

input.section-btn, .section-btn:link, .section-btn:visited {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 400;
  color: white;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  outline: none;
}

.section-btn:hover {
  transition: 0.4s ease;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  outline: none;
  opacity: 0.8;
}

.brank {
  display: inline-block;
}

.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}

.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #F5F5F5;
  border-top: 3px solid #F60000;
  font-size: 15px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}

.header .header-box {
  padding: 10px 20px;
  margin: 0 auto;
  display: flex;
  align-content: center;
  align-items: center;
  vertical-align: middle;
  font-weight: 400;
}

.header .header-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding-right: 24px;
}

.header .header-logo picture img {
  margin-top: 3px;
}

.header .header-navi ul {
  display: flex;
}

.header .header-navi ul li {
  padding-right: 24px;
}

.header .header-navi ul li a:link {
  text-decoration: none;
  color: #222222;
  opacity: 1;
}

.header .header-navi ul li a:hover {
  color: #222222;
  opacity: 0.5;
  transition: 0.4s ease;
}

.header .header-navi ul li a:visited {
  color: #222222;
  opacity: 1;
}

.header .header-login {
  padding: 0 20px;
  border-left: 1px solid rgba(170, 170, 170, 0.4);
}

.header .header-login a:link, .header .header-login a:visited {
  text-decoration: none;
  color: #222222;
  opacity: 1;
}

.header .header-login a:hover {
  color: #222222;
  opacity: 0.5;
  transition: 0.4s ease;
}

.header .header-contact {
  padding: 10px 14px 11px;
  background-color: #F60000;
  white-space: nowrap;
}

.footer {
  width: 100%;
  margin: 0 auto;
  color: white;
  background-color: #222222;
}

.footer .section-footer-btn {
  position: fixed;
  z-index: 0;
  width: 70px;
  height: 70px;
  right: 50px;
  bottom: 50px;
  line-height: 65px;
  background: rgba(110, 110, 110, 0.5);
  text-align: center;
  border-radius: 5px;
  border: 1px solid rgba(170, 170, 170, 0.5);
}

.footer .section-footer-btn img {
  vertical-align: middle;
}

.footer .section-footer-btn:hover {
  background: rgba(110, 110, 110, 0.8);
  transition: 0.4s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.footer .section-footer-main {
  padding: 34px;
}

.footer .section-footer-main .footer-box:nth-child(n+2) {
  padding-top: 20px;
}

.footer .section-footer-main ul {
  padding-top: 5px;
  display: flex;
  flex-wrap: wrap;
}

.footer .section-footer-main ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding-right: 24px;
  opacity: 0.7;
}

.footer .section-footer-main ul li a:hover {
  opacity: 1;
  transition: 0.4s ease;
}

.footer .section-footer-main p.footer-logo {
  font-size: 18px;
  font-weight: 700;
}

.footer .section-footer-main p.footer-logo span {
  font-size: 18px;
  padding-left: 10px;
  font-weight: 300;
  opacity: 0.5;
}

.footer .section-footer-sub {
  background-color: #111;
}

.footer .section-footer-sub p {
  padding: 16px 34px;
  font-size: 13px;
  opacity: 0.4;
}

.main {
  width: 100%;
  background-color: #F5F5F5;
}

.main-black {
  filter: brightness(0.3);
  transition: 1s ease;
  cursor: pointer;
}

.main-black a:link, .main-black input {
  pointer-events: none;
}

/* --------------------------------------- */
.section-lead {
  width: 100%;
  padding-top: 65px;
  background: url("../images/lead_photo_bg.png") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-lead-main {
  padding: 100px 40px;
}

.section-lead-main h1 {
  max-width: 600px;
  margin: 0 auto;
}

.section-lead-main p {
  max-width: 740px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: left;
}

.section-lead-main .section-btn {
  max-width: 250px;
  margin: 40px auto 0;
  padding: 20px;
  background-color: #F60000;
}

.section-lead-sub {
  padding: 100px 40px;
  background: rgba(255, 255, 255, 0.75);
  background-blend-mode: overlay;
  mix-blend-mode: normal;
  backdrop-filter: blur(8px);
}

.section-lead-sub h4 {
  margin: 0 auto;
  text-align: center;
}

.section-lead-sub p {
  width: 100%;
  max-width: 740px;
  margin: 24px auto 0 auto;
  text-align: left;
}

.section-lead-sub .section-img {
  max-width: 840px;
  margin: 30px auto 0 auto;
}

.section-feature {
  width: 100%;
  padding: 100px 40px;
  background: url("../images/feature_photo_bg.png") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-feature-main h3 {
  padding-top: 5px;
}

.section-feature-main picture.section-img {
  width: 100%;
  max-width: 864px;
  margin: 30px auto 0 auto;
}

.section-feature-sub {
  padding-top: 80px;
}

.section-feature-sub .incentive-box {
  width: 100%;
  max-width: 924px;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  margin: 30px auto 0 auto;
}

.section-feature-sub .incentive-box .incentive-box-inner {
  margin-right: 2.5vw;
  width: 100%;
  max-width: 200px;
}

.section-feature-sub .incentive-box .incentive-box-inner:last-child {
  margin-right: 0;
}

.section-feature-sub .incentive-box .incentive-box-inner figcaption {
  text-align: center;
  padding-bottom: 15px;
}

.section-feature-sub .incentive-box .incentive-box-inner img {
  width: 100%;
  max-width: 208px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}

.section-output {
  width: 100%;
  padding: 100px 40px;
  background: url("../images/output_photo_bg.png") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-output-main h3 {
  padding-top: 5px;
}

.section-output-main .output-box {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 24px;
}

.section-output-main .output-box .output-list-l {
  width: 100%;
  margin: 10px 10px 0;
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 3px solid #F60000;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}

.section-output-main .output-box .output-list-l .output-box-text {
  padding: 20px 22px;
}

.section-output-main .output-box .output-list-l h5 {
  font-size: 24px;
  line-height: 130%;
}

.section-output-main .output-box .output-list-l p {
  margin-top: 10px;
}

.section-output-main .output-box .output-list-s {
  width: 100%;
  margin: 0 10px;
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 3px solid #F60000;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
}

.section-output-main .output-box .output-list-s .output-box-text {
  padding: 16px 20px;
}

.section-output-main .output-box .output-list-s h5 {
  font-size: 24px;
  line-height: 130%;
}

.section-output-main .output-box .output-list-s p {
  margin-top: 10px;
}

.section-report {
  width: 100%;
  padding: 100px 40px;
  color: rgba(255, 255, 255, 0.9);
  background: url("../images/report_photo_bg.png") center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-report-main h2 {
  color: white;
}

.section-report-main h3 {
  padding-top: 5px;
  color: white;
}

.section-report-main p {
  padding-top: 30px;
  text-align: center;
}

.section-report-main ul.review-box {
  max-width: 980px;
  width: 100%;
  margin: 10px auto 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.section-report-main ul.review-box li.review-list {
  max-width: 460px;
  margin-top: 30px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-report-main ul.review-box li.review-list img {
  max-width: 80px;
  border-radius: 50%;
}

.section-report-main ul.review-box li.review-list p {
  width: 370px;
  margin-left: 10px;
  padding: 22px 30px;
  color: #222222;
  border-radius: 6px;
  text-align: left;
  background-color: white;
  background-image: url("../images/report_icon_wquotation_left.svg"), url("../images/report_icon_wquotation_right.svg");
  background-position: left 8px top 8px , right 8px top 8px;
  background-repeat: no-repeat,no-repeat;
}

.section-report-sub {
  margin-top: 80px;
}

.section-report-sub h4 {
  color: white;
}

.section-report-sub ul.trend-box {
  width: 100%;
  max-width: 850px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 30px;
}

.section-report-sub ul.trend-box li {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 10px 10px 0;
}

.section-report-sub ul.trend-box li picture {
  width: 100%;
}

.section-report-sub ul.trend-box li h5 {
  padding: 16px 20px 0 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #222222;
}

.section-report-sub ul.trend-box li p {
  margin-top: 5px;
  padding: 0 20px 20px 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #222222;
}

.section-plan {
  width: 100%;
  padding: 100px 40px;
  background: url("../images/plan_photo_bg.png") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-plan-main h2 {
  color: #000000;
}

.section-plan-main h3 {
  padding-top: 5px;
  color: #000000;
}

.section-plan-main .plan-box {
  width: 100%;
  max-width: 1040px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}

.section-plan-main .plan-box .plan-box-innner {
  width: 100%;
  max-width: 520px;
}

.section-plan-main .plan-box .plan-box-innner:last-of-type {
  margin-left: 100px;
}

.section-plan-main .plan-box .plan-box-innner h5 {
  display: flex;
  color: #F60000;
  font-size: 24px;
  line-height: 1;
}

.section-plan-main .plan-box .plan-box-innner h5 span {
  display: inline-block;
  margin-right: 8px;
  padding: 5px 8px;
  color: white;
  font-size: 12px;
  line-height: 1;
  background-color: #F60000;
  border-radius: 3px;
}

.section-plan-main .plan-box .plan-box-innner p {
  margin-top: 16px;
  text-align: left;
}

.section-plan-main .plan-box .plan-box-innner picture {
  width: 100%;
  margin: 30px 0 0;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
}

.section-plan-main .section-btn:link {
  max-width: 250px;
  margin: 60px auto 0;
  background-color: #F60000;
  padding: 20px;
  text-decoration: none;
}

.section-plan-main .section-btn:visited {
  text-decoration: none;
  color: white;
}

.section-advertiser {
  width: 100%;
  padding: 100px 40px;
  color: rgba(255, 255, 255, 0.9);
  background: url("../images/advertiser_photo_bg.png") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section-advertiser-main h2 {
  color: white;
}

.section-advertiser-main h3 {
  padding-top: 5px;
  color: white;
}

.section-advertiser-main p.section-text {
  max-width: 700px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
}

.section-advertiser-main h4 {
  padding-top: 30px;
  color: white;
}

.section-advertiser-main .advertiser-box {
  max-width: 860px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: normal;
}

.section-advertiser-main .advertiser-box .advertiser-list {
  width: 100%;
  margin-right: 10px;
  background: rgba(51, 51, 51, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-advertiser-main .advertiser-box .advertiser-list:last-of-type {
  margin-right: 0;
}

.section-advertiser-main .advertiser-box span {
  display: block;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  background-color: #F60000;
  font-weight: 700;
}

.section-advertiser-main .advertiser-box p {
  padding: 20px;
  text-align: left;
}

.section-advertiser-main a.section-btn:link {
  max-width: 250px;
  margin: 40px auto 0;
  padding: 20px;
  background-color: #F60000;
}

.section-advertiser-main a.section-btn:visited {
  text-decoration: none;
  color: white;
}

.inquiry, .info {
  max-width: 940px;
  margin: 0 auto;
  padding: 55px 40px 80px 40px;
}

.inquiry h1, .info h1 {
  color: #000000;
  font-size: 18px;
  margin-top: 80px;
  font-weight: 700;
}

.inquiry .required-element:after {
  content: "必須";
  color: white;
  background-color: #F60000;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 15px;
  font-weight: bold;
}

.inquiry .not-required-element:after {
  content: "任意";
  color: white;
  background-color: #9d9d9d;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 15px;
  font-weight: bold;
}

.inquiry .btn_pdf, .info .btn_pdf {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
}

.inquiry .btn_pdf a, .info .btn_pdf a {
  max-width: 390px;
  display: flex;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  line-height: 130%;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 10px;
  color: #222222;
  font-weight: 400;
  background-color: #FFF;
}

.inquiry .btn_pdf a:before, .info .btn_pdf a:before {
  content: "";
  width: 28px;
  height: 32px;
  margin-right: 15px;
  background: url("../images/icon_pdf.svg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.inquiry .btn_pdf a:hover, .info .btn_pdf a:hover {
  opacity: 0.8;
}

.inquiry .term_txt, .info .term_txt {
  margin-top: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: pre-wrap;
  line-height: 200%;
}

.section-contact {
  padding-top: 30px;
}

.section-contact dl {
  display: flex;
  align-items: top;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid rgba(153, 153, 153, 0.2);
  text-align: left;
}

.section-contact dl dt {
  min-width: 220px;
  font-size: 15px;
  font-weight: 400;
  flex-grow: 0;
}

.section-contact dl dd {
  flex-grow: 1;
}

.section-contact dl dd input, .section-contact dl dd textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 5px;
  line-height: 170%;
}

.section-contact dl dd input:focus, .section-contact dl dd textarea:focus {
  outline: none;
  border-color: #999;
}

.section-contact dl dd input:focus + label, .section-contact dl dd textarea:focus + label {
  color: #999;
}

.section-contact dl dd .error-box {
  border: 1px solid #F60000;
}

.section-contact dl dd input::placeholder {
  opacity: 0.5;
}

.section-contact dl dd .radio span {
  display: block;
  padding-bottom: 7px;
}

.section-contact dl dd .radio .radio_section:last-of-type {
  padding-bottom: 0;
}

.section-contact dl dd .radio .radio-input {
  display: none;
}

.section-contact dl dd .radio .radio-input + label {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-right: 20px;
  cursor: pointer;
}

.section-contact dl dd .radio .radio-input + label::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #999;
  border-radius: 50%;
}

.section-contact dl dd .radio .radio-input:checked + label {
  color: #222222;
}

.section-contact dl dd .radio .radio-input:checked + label::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #222222;
  border-radius: 50%;
}

.section-contact dl:last-of-type {
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  margin-bottom: 20px;
}

.section-contact dl.align_center {
  align-items: center;
  padding: 15px 0;
}

.section-contact .cv_area {
  margin-top: 10px;
  margin-left: 220px;
}

.section-contact .cv_area .btn_back {
  display: inline-block;
  width: 220px;
  margin-top: 20px;
  margin-right: 20px;
  padding: 20px;
  background-color: #222222;
}

.section-contact .cv_area .btn_cv {
  display: inline-block;
  width: 220px;
  margin-top: 20px;
  padding: 20px;
  background-color: #F60000;
}

.section-contact .caution {
  font-size: 13px;
  margin-top: 20px;
}

.section-contact .caution a.txt_link {
  color: #F60000;
  text-decoration: underline;
}

.section-contact .caution a.txt_link:hover {
  text-decoration: none;
}

.section-contact .btn-to-top {
  margin-top: 20px;
  margin-bottom: 80px;
}

.section-contact .btn-to-top a.section-btn:link {
  display: block;
  max-width: 180px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  background-color: #222222;
}

fieldset,img {
  border:0;
}

.error_message {
  color: red;
  display: block;
}

@media screen and (max-width: 950px) {
  .header .header-box {
    height: 50px;
    padding: 7px 10px;
  }
  .header .header-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 6px;
  }
  .header .header-logo picture img {
    width: 190px;
  }
  .header .header-navi {
    display: none;
  }
  .header .header-navi-on {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }
  .header .header-navi-on ul {
    z-index: -2;
    width: 100%;
    display: block;
    padding: 5px 20px;
    position: absolute;
    top: 50px;
    left: 0px;
    background-color: #F5F5F5;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
  }
  .header .header-navi-on ul li {
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
  }
  .header .header-navi-on ul li a:link {
    display: block;
  }
  .header .header-navi-on ul li a:hover {
    opacity: 0.5;
  }
  .header .header-navi-on ul li a:visited {
    opacity: 1;
  }
  .header .header-navi-on ul li:last-of-type {
    border-bottom: none;
  }
  .header .header-login {
    display: none;
    border-left: 0;
  }
  .header .header-login-on {
    display: block;
  }
  .header .header-contact {
    padding: 5px 8px;
    background-color: #F60000;
    font-size: 13px;
    white-space: nowrap;
  }
  .header .menu-trigger, .header .menu-trigger span {
    flex-shrink: 0;
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .header .menu-trigger {
    position: relative;
    width: 19px;
    height: 19px;
  }
  .header .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .header .menu-trigger span:nth-of-type(1) {
    top: 0px;
  }
  .header .menu-trigger span:nth-of-type(2) {
    top: 8px;
  }
  .header .menu-trigger span:nth-of-type(3) {
    top: 16px;
  }
  .header .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .header .onanimation {
    display: block;
  }
  .footer {
    width: 100%;
    margin: 0 auto;
  }
  .footer .section-footer-btn {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
    line-height: 42px;
  }
  .footer .section-footer-main {
    padding: 20px;
  }
  .footer .section-footer-main .footer-box:nth-child(n+2) {
    padding-top: 20px;
  }
  .footer .section-footer-main ul {
    padding-top: 5px;
    font-size: 13px;
  }
  .footer .section-footer-main p.footer-logo {
    font-size: 18px;
  }
  .footer .section-footer-main p.footer-logo span {
    font-size: 15px;
  }
  .footer .section-footer-sub p {
    padding: 10px 20px;
    font-size: 11px;
  }
}

@media screen and (max-width: 480px) {
  /* SP版 ------------------------------------------ */
  body {
    font-size: 14px;
    font-weight: 400;
  }
  .section-title {
    font-weight: 700;
    font-size: 25px;
    text-align: center;
    line-height: 140%;
  }
  .section-subtitle {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    line-height: 140%;
  }
  .section-caption {
    font-weight: 700;
    font-size: 13px;
    text-align: center;
  }
  .brank {
    display: none;
  }
  .main {
    width: 100%;
  }
  /* --------------------------------------- */
  .section-lead {
    width: 100%;
    padding-top: 52px;
    background: url("../images/lead_photo_bg_sp@2.png") center top no-repeat;
    background-color: #EBEBEB;
    background-size: cover;
    background-attachment: fixed;
  }
  .section-lead-main {
    padding: 60px 20px;
  }
  .section-lead-main h1 {
    max-width: 290px;
  }
  .section-lead-main p {
    padding: 20px 6vw 0 6vw;
  }
  .section-lead-main .section-btn {
    max-width: 240px;
    margin: 35px auto 0;
    padding: 20px;
  }
  .section-lead-sub {
    padding: 50px 20px;
  }
  .section-lead-sub h4 {
    max-width: 200px;
    margin: 0 auto;
    font-size: 18px;
  }
  .section-lead-sub p {
    padding: 20px 6vw 0 6vw;
    margin: 0 auto;
  }
  .section-lead-sub .section-img {
    max-width: 288px;
    margin: 35px auto 0 auto;
  }
  .section-feature {
    width: 100%;
    padding: 50px 20px;
    background: url("../images/feature_photo_bg_sp@2.png") center top repeat;
    background-color: #F3F3F3;
    background-size: cover;
    background-attachment: fixed;
  }
  .section-feature-main h3 {
    max-width: 280px;
    margin: 0 auto;
    padding-top: 10px;
  }
  .section-feature-main picture.section-img {
    width: 100%;
    max-width: 288px;
    margin: 30px auto 0 auto;
  }
  .section-feature-sub {
    padding-top: 50px;
  }
  .section-feature-sub h4 {
    max-width: 200px;
    margin: 0 auto;
  }
  .section-feature-sub .incentive-box {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .section-feature-sub .incentive-box .incentive-box-inner {
    margin-right: 5%;
    width: 45%;
    max-width: 140px;
  }
  .section-feature-sub .incentive-box .incentive-box-inner:nth-child(2n) {
    margin-right: 0;
  }
  .section-feature-sub .incentive-box .incentive-box-inner figcaption {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 10px;
  }
  .section-feature-sub .incentive-box .incentive-box-inner img {
    width: 100%;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
  }
  .section-output {
    width: 100%;
    padding: 50px 20px;
    background: url("../images/output_photo_bg_sp@2.png") center top no-repeat;
    background-color: #F3F3F3;
    background-size: cover;
    background-attachment: fixed;
  }
  .section-output-main h3 {
    max-width: 220px;
    margin: 0 auto;
    padding-top: 10px;
  }
  .section-output-main .output-box {
    display: block;
    margin: 0 auto;
    padding: 30px 6vw 0 6vw;
  }
  .section-output-main .output-box .output-list-l, .section-output-main .output-box .output-list-s {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 15px auto;
    border-bottom: 3px solid #F60000;
  }
  .section-output-main .output-box .output-list-l .output-box-text, .section-output-main .output-box .output-list-s .output-box-text {
    padding: 15px;
  }
  .section-output-main .output-box .output-list-l h5, .section-output-main .output-box .output-list-s h5 {
    font-size: 18px;
    line-height: 130%;
  }
  .section-output-main .output-box .output-list-l p, .section-output-main .output-box .output-list-s p {
    margin-top: 6px;
    line-height: 160%;
  }
  .section-output-main .output-box:last-of-type {
    padding-top: 0px;
  }
  .section-report {
    width: 100%;
    padding: 50px 20px;
    background: url("../images/report_photo_bg_sp@2.png") center top repeat;
    background-color: #080808;
    background-size: cover;
    background-attachment: fixed;
  }
  .section-report-main h3 {
    max-width: 240px;
    margin: 0 auto;
    padding-top: 10px;
  }
  .section-report-main p {
    padding-top: 24px;
    text-align: center;
  }
  .section-report-main ul.review-box {
    width: 100%;
    margin: 20px auto 0 auto;
    padding: 0 3vw;
  }
  .section-report-main ul.review-box li.review-list {
    width: 100%;
    margin-top: 10px;
    padding-right: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section-report-main ul.review-box li.review-list img {
    max-width: 50px;
    border-radius: 50%;
  }
  .section-report-main ul.review-box li.review-list p {
    width: 100%;
    margin-left: 10px;
    padding: 15px 20px;
    color: #222222;
    line-height: 130%;
    border-radius: 6px;
    text-align: left;
    background-color: white;
    background-image: url("../images/report_icon_wquotation_left_sp.svg"), url("../images/report_icon_wquotation_right_sp.svg");
    background-position: left 4px top 4px , right 4px top 4px;
    background-repeat: no-repeat,no-repeat;
  }
  .section-report-sub {
    margin-top: 50px;
  }
  .section-report-sub ul.trend-box {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 5px 3vw 0;
  }
  .section-report-sub ul.trend-box li {
    background-color: rgba(255, 255, 255, 0.85);
    margin: 15px auto;
  }
  .section-report-sub ul.trend-box li picture {
    width: 100%;
  }
  .section-report-sub ul.trend-box li h5 {
    padding: 10px 10px 0 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #222222;
  }
  .section-report-sub ul.trend-box li p {
    margin-top: 0px;
    padding: 0 10px 10px 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #222222;
  }
  .section-plan {
    width: 100%;
    padding: 50px 20px;
    background: url("../images/plan_photo_bg_sp@2.png") center bottom no-repeat;
    background-color: #FBFBFB;
    background-size: cover;
    background-attachment: fixed;
  }
  .section-plan-main h3 {
    max-width: 280px;
    margin: 0 auto;
    padding-top: 10px;
  }
  .section-plan-main .plan-box {
    width: 100%;
    margin: 30px auto 0;
    padding: 0 4vw;
    display: block;
  }
  .section-plan-main .plan-box .plan-box-innner {
    width: 100%;
    margin: 0 auto;
  }
  .section-plan-main .plan-box .plan-box-innner:last-of-type {
    margin-top: 40px;
    margin-left: 0;
  }
  .section-plan-main .plan-box .plan-box-innner h5 {
    display: flex;
    color: #F60000;
    font-size: 18px;
  }
  .section-plan-main .plan-box .plan-box-innner p {
    margin-top: 12px;
    text-align: left;
  }
  .section-plan-main .plan-box .plan-box-innner picture {
    width: 100%;
    margin: 26px 0 0 0;
    filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  }
  .section-plan-main a.section-btn:link {
    max-width: 250px;
    margin: 40px auto 0;
    background-color: #F60000;
    padding: 20px;
    text-decoration: none;
    color: white;
  }
  .section-plan-main a.section-btn:visited {
    text-decoration: none;
    color: white;
  }
  .section-advertiser {
    width: 100%;
    padding: 50px 20px;
    background: url("../images/advertiser_photo_bg_sp@2.png") center bottom no-repeat;
    background-color: #080808;
    background-size: cover;
    background-attachment: fixed;
  }
  .section-advertiser-main h3 {
    max-width: 280px;
    margin: 0 auto;
    padding-top: 10px;
  }
  .section-advertiser-main p.section-text {
    width: 100%;
    max-width: 280px;
    margin-top: 20px;
  }
  .section-advertiser-main h4 {
    padding-top: 32px;
  }
  .section-advertiser-main .advertiser-box {
    margin: 10px auto 0;
    padding: 0 5vw;
    display: block;
  }
  .section-advertiser-main .advertiser-box .advertiser-list {
    margin-top: 15px;
    margin-right: 0;
  }
  .section-advertiser-main .advertiser-box span {
    display: block;
    line-height: 38px;
    width: 38px;
    height: 38px;
    font-size: 18px;
    color: white;
  }
  .section-advertiser-main .advertiser-box p {
    padding: 10px 15px;
    text-align: left;
  }
  .section-advertiser-main a.section-btn:link {
    max-width: 250px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: #F60000;
  }
  .section-advertiser-main a.section-btn:visited {
    text-decoration: none;
    color: white;
  }
  .inquiry, .info {
    padding: 50px 6vw;
  }
  .inquiry h1, .info h1 {
    font-size: 18px;
    margin-top: 40px;
    font-weight: 700;
  }
  .inquiry .required-element:after {
    content: "必須";
    color: white;
    background-color: #F60000;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 15px;
    font-weight: bold;
  }
  .inquiry .not-required-element:after {
    content: "任意";
    color: white;
    background-color: #9d9d9d;
    font-size: 10px;
    padding: 2px;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 15px;
    font-weight: bold;
  }
  .inquiry .btn_pdf, .info .btn_pdf {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(153, 153, 153, 0.2);
  }
  .inquiry .btn_pdf a, .info .btn_pdf a {
    max-width: 390px;
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    line-height: 130%;
    border: 1px solid rgba(153, 153, 153, 0.2);
    border-radius: 10px;
    color: #222222;
    font-weight: 400;
    background-color: #FFF;
  }
  .inquiry .btn_pdf a:before, .info .btn_pdf a:before {
    flex-shrink: 0;
    content: "";
    width: 28px;
    height: 32px;
    margin-right: 15px;
    background: url("../images/icon_pdf.svg") no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .inquiry .btn_pdf a:hover, .info .btn_pdf a:hover {
    opacity: 0.8;
  }
  .inquiry .term_txt, .info .term_txt {
    margin-top: 20px;
  }
  .section-contact {
    padding-top: 30px;
  }
  .section-contact dl {
    display: block;
    padding: 20px 0;
  }
  .section-contact dl dt {
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
  }
  .section-contact .cv_area {
    margin-top: 10px;
    margin-left: 0;
    padding: 0 20px;
  }
  .section-contact .cv_area .btn_back {
    display: block;
    width: 100%;
    margin-top: 20px;
    margin-right: 20px;
    padding: 20px;
    background-color: #222222;
  }
  .section-contact .cv_area .btn_cv {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 20px;
    background-color: #F60000;
  }
  .section-contact .caution {
    font-size: 13px;
    margin-top: 20px;
    line-height: 140%;
  }
  .section-contact .caution a.txt_link {
    color: #F60000;
    text-decoration: underline;
  }
  .section-contact .caution a.txt_link:hover {
    text-decoration: none;
  }
  .section-contact .btn-to-top {
    margin-top: 20px;
  }
  .section-contact .btn-to-top a.section-btn:link {
    display: block;
    max-width: 240px;
    margin: 0  auto;
    padding: 20px;
    color: white;
    background-color: #222222;
  }
}

/* BASE EDIT END ---------------------------------*/
/* COMMON END ------------------------------------*/
/*# sourceMappingURL=common.css.map */
