@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/************************** reset設定 **************************/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

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

input,
select {
  vertical-align: middle;
}

*:after,
*:before,
a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
button,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", Arial, sans-serif;
  font-weight: bold;
  position: relative;
  left: 0;
  right: 0;
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #000000;
  font-size: 18px;
  word-break: break-all;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #000000;
  outline: 0;
  transition: opacity 0.6s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

img {
  border: 0;
  vertical-align: middle;
}
img:not([width]) {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
}

@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 75px;
  }
}
em,
i {
  font-style: normal;
}

option {
  outline: 0;
}

sup {
  position: relative;
  top: -0.7em;
  font-size: 70%;
}

a[href^="tel:"].tel_disable {
  pointer-events: none;
  text-decoration: none;
}

@-ms-viewport {
  width: device-width;
}
/*
 * Container style
 */
.ps {
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

@media screen and (max-width: 767px) {
  .ps {
    overflow: hidden !important;
  }
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 18px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  background: #f2f2f2;
  /* please don't change 'position' */
  position: absolute;
  border-radius: 15px;
}

.ps__rail-y {
  display: none;
  opacity: 1;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 8px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 5px;
  background: #f1f1f1;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
}

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #555555;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 18px;
  border-radius: 15px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #c1c1c1;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 8px;
  /* there must be 'right' for ps__thumb-y */
  right: 0px;
  /* please don't change 'position' */
  position: absolute;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.shiny a {
  display: inline-block;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.shiny a:before {
  display: block;
  position: absolute;
  z-index: 10;
  left: -100%;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%, rgba(255, 255, 255, 0) 100%);
  animation: shiny 4s infinite linear 0s;
}

/*光の起点と終点の指定*/
@keyframes shiny {
  0% {
    left: -100%;
  }
  20%, 100% {
    left: 100%;
  }
}
.gbtn {
  max-width: 785px;
  margin: 0 auto;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.gbtn.gbtn_w a {
  color: #0cad2e;
  background: #FFFFFF;
}
.gbtn.gbtn_w a::before {
  border-color: #0cad2e;
}
.gbtn a {
  font-weight: bold;
  color: #fff;
  background: #0cad2e;
  display: block;
  padding: 25px 50px;
  position: relative;
  border-radius: 45px;
  box-shadow: 0 5px 0 0 #00651e;
  transition: 0.5s ease-in-out;
}
.gbtn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
.gbtn a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .gbtn {
    font-size: 17px;
    max-width: 335px;
  }
  .gbtn a {
    padding: 12px 30px;
  }
  .gbtn a::before {
    right: 18px;
  }
}

#form_modal,
#form_modal_model {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  background: #efefef;
  font-weight: bold;
  display: none;
  border-radius: 15px;
}

.c-form-modal__close {
  color: #333;
  float: right;
  font-size: 35px;
  font-weight: bold;
  margin-top: 0;
  position: absolute;
  right: 30px;
  top: 15px;
  z-index: 99;
}

.step-title {
  font-weight: bold;
  font-size: 22px;
  color: #333;
  font-family: "Noto Sans JP", san-serif, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: 99;
}

.brand-title-close-ctn .step-title,
.brand-title-close-ctn .c-form-modal__close {
  display: none;
}

.model-title-close-ctn .step-title,
.model-title-close-ctn .c-form-modal__close {
  display: none;
}

.c-form-modal__close:hover,
.c-form-modal__close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.jp-syllabary-list {
  background: #fff;
  z-index: 9999;
  position: absolute;
  left: auto;
  right: 10px;
  top: 75px;
  width: 54px;
  font-size: 14px;
  list-style: none;
  height: 450px;
  display: none;
  border-radius: 10px;
}

.jp-syllabary-list li {
  /* padding: 0 10px; */
  border-bottom: 1px solid #ccc;
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jp-syllabary-list li:first-of-type a {
  border-top-right-radius: 15px;
}

.jp-syllabary-list li:last-of-type a {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.jp-syllabary-list li a {
  color: #333333;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-family: "Noto Sans JP", san-serif, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.c-form-relative {
  position: relative;
  padding: 0 15px 15px;
  background: #f4f4f4;
  margin-top: 75px;
}

.c-form-modal__step__contents {
  background: #fff;
}

.c-form-modal__step__contents p {
  color: #000;
  padding: 5px 10px 5px;
  font-family: "Noto Sans JP", san-serif, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}

.c-form-modal__step__contents p.m-maker {
  cursor: pointer;
}

.c-form-modal__step__contents p.m-maker:hover {
  opacity: 0.7;
}

.c-form-modal__step__contents .syllab {
  padding: 5px 10px 5px;
}

/** form 2 */
.next_step_btn.form2_box_check_link.submit {
  /* font-size: 23px; */
  font-size: min(4.5vw, 20px);
}

.recap-content {
  background: #fff386;
  padding: 10px;
  font-weight: bold;
  font-size: 22px;
  color: #333;
  font-family: "Noto Sans JP", san-serif, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 35px;
}

.jp-syllabary-list li:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .jp-syllabary-list {
    height: 350px;
    /* top: 75px; */
  }
  .fv #contact {
    width: 100%;
  }
  .c-form-relative {
    /* margin-top: 75px; */
  }
  .recap-content {
    font-size: 1rem;
  }
}
input {
  border: 1px solid #d0d0d0;
  font-size: min(2vw, 18px);
}

.recap-content-2 {
  font-size: min(2vw, 18px);
}

.show-brand-title-close .brand-title-close-ctn .step-title,
.show-brand-title-close .brand-title-close-ctn .c-form-modal__close {
  display: block;
}

.show-brand-title-close .brand-title-close-ctn {
  display: block;
  background: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 50px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.show-model-title-close .model-title-close-ctn .step-title,
.show-model-title-close .model-title-close-ctn .c-form-modal__close {
  display: block;
  font-size: 18px;
}

.show-model-title-close .model-title-close-ctn {
  display: block;
  background: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 75px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

@media screen and (max-width: 768px) {
  .show-brand-title-close .brand-title-close-ctn .step-title,
  .show-brand-title-close .brand-title-close-ctn .c-form-modal__close .step-title,
  .show-model-title-close .model-title-close-ctn .step-title,
  .show-model-title-close .model-title-close-ctn .c-form-modal__close .step-title {
    font-size: 16px;
    background: #f4f4f4;
  }
  .show-brand-title-close .brand-title-close-ctn .c-form-modal__close,
  .show-model-title-close .model-title-close-ctn .c-form-modal__close {
    right: 10px;
    font-size: 25px;
  }
  .show-model-title-close .model-title-close-ctn .step-title,
  .show-model-title-close .model-title-close-ctn .c-form-modal__close .step-title {
    padding-right: 75px;
    width: calc(100% - 4vw);
  }
}
.fv .web-form .title {
  width: auto !important;
  margin-bottom: 10px !important;
}

.u-fontcolor-white {
  color: #fff;
}

.fv .web-form .title span {
  color: #fff;
}

p.formError {
  color: #ff0001;
  font-weight: bold;
  font-size: 16px;
  margin-top: 5px;
}

.fv-ziko {
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.fv-ziko .fv-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.fv-ziko .fv-title-color1 {
  color: #00ba00;
}
.fv-ziko .fv-title-bg1 {
  display: inline-block;
  background: #fff083;
  padding: 1px 5px;
  line-height: 1.4;
}
.fv-ziko .fv-title-bg2 {
  display: inline-block;
  background: #f40618;
  color: #fff;
  padding: 1px 5px;
  line-height: 1.4;
}
.fv-ziko .main-ttl {
  text-align: center;
  font-size: 66px;
  font-weight: bold;
}
.fv-ziko .main-ttl .m1 {
  margin-right: 30px;
  display: inline-block;
}
.fv-ziko .main-ttl .m2 {
  color: #00ba00;
  font-size: 136.4%;
}
@media only screen and (max-width: 1260px) {
  .fv-ziko .main-ttl {
    font-size: 5vw;
  }
  .fv-ziko .area_logo {
    max-width: 24.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .fv-ziko {
    padding: 15px;
  }
  .fv-ziko .fv-title {
    font-size: 17px;
  }
  .fv-ziko .area-logo {
    max-width: 30vw;
  }
  .fv-ziko .main-ttl .m1 {
    margin: 0;
    margin-left: 10px;
  }
  .fv-ziko .main-ttl .m2 {
    font-size: 196.4%;
  }
}
.fv-ziko.damage_page {
  max-width: 100%;
  padding: 0;
}
.fv-ziko.damage_page .damage_inner {
  background: #e3f5e9;
  padding: 40px 0;
}
.fv-ziko.damage_page .damage_mv {
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
}
.fv-ziko.damage_page .damage_mv .main-ttl {
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 1260px) {
  .fv-ziko.damage_page .damage_mv .main-ttl {
    font-size: 6vw;
  }
}
@media only screen and (max-width: 767px) {
  .fv-ziko.damage_page .damage_mv .main-ttl {
    position: inherit;
  }
}
.fv-ziko.damage_page .damage_mv .main-ttl .m3 {
  font-size: 97%;
  color: #00ba00;
}
@media only screen and (max-width: 767px) {
  .fv-ziko.damage_page .damage_mv .main-ttl .m3 {
    font-size: 37px;
  }
}
.fv-ziko.damage_page .damage_mv .main-ttl .m4 {
  font-size: 70%;
}
@media only screen and (max-width: 767px) {
  .fv-ziko.damage_page .damage_mv .main-ttl .m4 {
    font-size: 27px;
  }
}

/* fv */
.fv {
  position: relative;
}

@media screen and (max-width: 1080px) {
  .fv {
    height: auto;
  }
}
.sp {
  display: none !important;
}

@media screen and (max-width: 800px) {
  .sp {
    display: block !important;
  }
}
.pc {
  display: block !important;
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}
select::-ms-expand {
  display: none;
}

input,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}

input,
select {
  vertical-align: middle;
  border: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input {
  width: 100%;
  padding: 0.729vw 0 0.781vw 0.98vw;
  font-family: YakuHanJP, "Noto Sans JP", san-serif, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 0.9375vw;
  color: #000;
  background-color: #fff;
}

input::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

input::-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

input:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

input::-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

@media screen and (max-width: 800px) {
  input {
    font-size: 3.2vw;
    padding: 2.667vw 3.733vw 2.933vw;
  }
}
select {
  width: 100%;
  padding: 15px 10px;
  cursor: pointer;
  font-family: YakuHanJP, "Noto Sans JP", san-serif, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 0.9375vw;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #000;
  background-color: #fff;
}

select:invalid {
  color: #ccc;
}

select.initial_select {
  color: #ccc;
}

select option {
  color: #000;
}

select option:first-child {
  color: #ccc;
}

@media screen and (max-width: 800px) {
  select {
    font-size: 3.2vw;
    padding: 2.667vw 3.733vw 2.933vw;
  }
}
option {
  color: #000;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 800px) {
  .sp {
    display: block !important;
  }
}
.pc {
  display: block !important;
}

@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}
.contact {
  width: 79.94792vw;
  margin: 0 auto;
  -webkit-box-shadow: 0.13vw 0.13vw 1.2vw 0 rgba(94, 94, 94, 0.8);
  box-shadow: 0.13vw 0.13vw 1.2vw 0 rgba(94, 94, 94, 0.8);
  position: relative;
  background-color: #f4f4f4;
  border-radius: 2.656vw;
}

.contact .contact__inner {
  padding: 20px 25px;
}

.contact__headline {
  padding: 15px 15px;
  font-weight: bold;
  display: block;
  background-color: #63b719;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-radius: 2.656vw 2.656vw 0 0;
  position: relative;
  text-align: center;
}

.contact__headline > span {
  position: relative;
  z-index: 2;
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.03em;
}

.contact__headline > span > em {
  color: #fff100;
}

.contact__headline::before {
  margin-left: -14px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 12px solid #63b719;
  position: absolute;
  bottom: -10px;
  left: 50%;
  content: "";
}

@media screen and (max-width: 800px) {
  .contact {
    width: 86.66667vw;
    box-shadow: 2vw 2vw 1.667vw 0 rgba(94, 94, 94, 0.25);
    background-color: #f2f2f2;
  }
  .contact .contact__inner {
    padding: 5.333vw 6.667vw 6.667vw;
  }
  .contact__headline {
    padding: 3.15vw 0.5vw 3.5vw 0.5vw;
    -webkit-box-shadow: 0.33333vw 0.57733vw 2.66667vw 0 rgba(94, 94, 94, 0.2);
    box-shadow: 0.33333vw 0.57733vw 2.66667vw 0 rgba(94, 94, 94, 0.2);
  }
  .contact__headline > span {
    font-size: 4.967vw;
    line-height: 1.389;
    letter-spacing: normal;
    text-align: center;
    display: block;
  }
  .contact__headline::before {
    margin-left: -12px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 9px solid rgba(99, 183, 25, 0.9);
    bottom: -9px;
    left: 50%;
  }
}
/* fv */
.fv {
  margin: 0 auto;
}

.fv .fv_visual {
  padding: 40px 0 0;
}

.fv .fv_visual .inner_box {
  margin: 0 auto;
  max-width: 1320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.fv .fv_visual .title {
  /*  margin-right: -1.563vw;
  width: 52.812vw; */
  width: 68.812vw;
  padding: 0;
}

.fv #contact {
  margin: -0.885vw 0 2.448vw;
  width: 35.2vw;
  /*  width: 28.2vw; */
  max-width: 584px;
}

@media screen and (max-width: 1080px) {
  .fv #contact {
    width: 86.66667vw;
    margin: 0 auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .fv {
    position: relative;
  }
  .fv .fv_visual {
    padding: 0;
    /*  background-image: url(../img/sp_fv_bg.jpg); */
  }
  .fv .fv_visual .inner_box {
    padding-right: 0;
    width: 100%;
    display: block;
  }
  .fv .fv_visual .title {
    margin: 0 1vw 2vw;
    width: auto;
  }
}
/* form */
.form_block {
  margin-bottom: 20px;
}

.form_block dt {
  font-size: min(2vw, 19px);
  color: #333333;
  font-weight: bold;
  padding: 0 0 0 5px;
  border-left: 4px #000000 solid;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.form_block dt span {
  font-size: min(1.1vw, 13px);
  padding: 0 5px;
  margin: 0 0 0 5px;
  line-height: 1.9;
}

.form_block .form_block__select select {
  background: #fff386;
  border: 1px solid #d0d0d0;
  font-size: min(2vw, 18px);
}

.form_block .form_block__select.norequired__select select {
  background: #e5e5e5;
}

.form_block .form_block__input input {
  border: 1px solid #d0d0d0;
  font-size: min(2vw, 18px);
  background: #f4f4f4;
}

.form_block__select {
  position: relative;
}

.form_block__select::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  right: 1.041vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #333333 transparent transparent transparent;
  pointer-events: none;
}

.f-required {
  background-color: #f03c46;
  color: #fff;
}

.f-norequired {
  background-color: #cccccc;
}

.form-submit input {
  background: #f03c46;
  color: #fff;
  font-size: min(2.2vw, 20px);
  text-align: center;
  line-height: 50px;
  border-radius: 10px;
  font-weight: bold;
  padding-left: 30px;
}

.form-submit {
  position: relative;
}

.form-submit::before {
  position: absolute;
  content: "24時間\a受付";
  background: #fff;
  max-width: 57px;
  max-height: 57px;
  width: 4.5vw;
  height: 4.5vw;
  border-radius: 50%;
  left: 1.2vw;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: min(1.88vw, 15px);
  color: #f03c46;
  white-space: pre;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  min-width: 57px;
  min-height: 57px;
}

.form-submit::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffffff;
  top: calc(50% - 5px);
  right: 28px;
}

@media screen and (max-width: 800px) {
  .form_block dt {
    font-size: min(3.8vw, 24px);
  }
  .form_block dt span {
    font-size: min(3vw, 16px);
  }
  .form_block .form_block__select select {
    font-size: min(3.2vw, 20px);
  }
  .form_block .form_block__input input {
    font-size: min(3.2vw, 20px);
  }
  .form_block__select::after {
    right: 2.7vw;
  }
  .f-required {
    font-size: 24px;
    font-size: 3.2vw;
    padding: 4px 5px 3px;
    margin: -4px 0 0 5px;
  }
  .f-norequired {
    font-size: 24px;
    font-size: 3.2vw;
    padding: 4px 5px 3px;
    margin: -4px 0 0 5px;
  }
  .form-submit input {
    font-size: min(4.5vw, 20px);
    line-height: 60px;
  }
  .form-submit::before {
    width: 66px;
    height: 66px;
    left: 1.7vw;
    font-size: min(3.5vw, 16px);
  }
  .form_block__select::after {
    border-width: 7px 7.5px 0 7.5px;
  }
}
@media screen and (max-width: 374px) {
  .form-submit::before {
    width: 13vw;
    height: 13vw;
  }
  .form_block dt span {
    font-size: min(3vw, 16px);
  }
}
/* com_box */
.contact__details {
  overflow: hidden;
}

.fv #contact {
  min-height: 554px;
}

@media screen and (max-width: 768px) {
  .recap-content,
  .recap-content-2 {
    font-size: 16px;
  }
  input {
    font-size: 16px;
  }
  input:placeholder {
    font-size: 16px;
  }
  .form_block .form_block__select select,
  .form_block .form_block__input input {
    font-size: 16px;
  }
}
.fv .fv_visual .step_form_2 .title,
.fv .fv_visual .step_form_3 .title {
  background: #63b719;
}

.fv .fv_visual .step_form_2 input,
.fv .fv_visual .step_form_3 input,
.fv .fv_visual .step_form_3 a {
  font-size: 18px;
}

@media screen and (min-width: 801px) and (max-width: 1240px) {
  .fv #contact {
    min-height: auto;
    height: 550px;
    width: 41.2vw;
  }
  .form-submit::after {
    top: calc(50% - 9px);
  }
  .fv .fv_visual .inner_box {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
  }
  .fv .fv_visual .title {
    width: auto;
  }
}
/* モーダルここから */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.5s ease-out;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer !important;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-container {
  padding: 15px;
  cursor: default;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
  display: inline-block;
  width: auto;
}

.mfp-iframe-holder .mfp-close {
  width: 20px;
}

.sale_modal {
  position: relative;
  padding: 25px;
  max-width: 1200px;
  margin: 0 auto;
  display: none;
  box-sizing: content-box;
}

.mfp-content .sale_modal {
  display: block;
}

.sale_modal .sale_modal_inner {
  background: #fff;
  border-radius: 50px;
  border: 10px solid #20BA31;
  padding: 70px 80px 30px;
}

#sale_modal .mfp-close {
  right: 25px;
  top: 25px;
  background: #20BA31;
  border-radius: 50%;
  color: #fff !important;
  opacity: 1;
  text-align: center;
}

.sale_modal .mfp-close:hover {
  opacity: 0.7;
}

.sale_modal h2 {
  font-size: 40px;
  color: #23BE4F;
  font-weight: bold;
  text-align: center;
  border: 4px solid #00A831;
  padding: 30px 15px;
  border-radius: 50px;
  margin-bottom: 50px;
  position: relative;
}

.sale_modal h2 img {
  max-width: 100%;
  width: auto;
  position: absolute;
  right: -5px;
  bottom: -1px;
}

.sale_modal h3 {
  text-align: center;
  font-weight: bold;
  font-size: 70px;
  line-height: 1.4;
  color: #23BE4F;
  margin-bottom: 20px;
}

.sale_modal h3 .sale_modal_small {
  font-size: 85%;
}

.sale_modal h3 .sale_modal_mark {
  background: #FFEA01;
  display: inline-block;
  color: #000000;
  padding: 0 3px;
}

.sale_modal .sale_modal_btn {
  margin-bottom: 40px;
}

.sale_modal .sale_modal_btn a {
  background: #23BE4F;
  padding: 25px 15px 55px;
  font-weight: bold;
  display: block;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  border-radius: 22px;
  position: relative;
  filter: drop-shadow(0px 12px 0px #00661a);
  transition: 0.4s ease-in-out;
}

.sale_modal .sale_modal_btn a:hover {
  filter: drop-shadow(0px 0px 0px #00661a);
  transform: translateY(3px);
}

.sale_modal .sale_modal_btn a::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.sale_modal .sale_modal_btn span {
  display: block;
}

.sale_modal .sale_modal_btn .sale_modal_s1 {
  font-size: 30px;
}

.sale_modal .sale_modal_btn .sale_modal_s1 + span {
  font-size: 55px;
}

.sale_modal .indent {
  font-size: 23px;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
}

.sale_modal .sale_modal_tel {
  padding-top: 25px;
  border-top: 4px solid #00A831;
  text-align: center;
  line-height: 1.5;
}

.sale_modal .sale_modal_tel h4 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
  color: #000000;
}

.sale_modal .sale_modal_tel .sale_modal_tel_tel {
  color: #ED3C46;
  font-weight: bold;
  font-size: 80px;
  letter-spacing: -0.01em;
}

.sale_modal .sale_modal_tel .sale_modal_tel_tel img {
  margin-right: 10px;
  width: auto;
  max-width: 100%;
  position: relative;
  top: -15px;
}

.sale_modal .sale_modal_tel .sale_modal_tel_sub {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background: #ED3C46;
  border-radius: 23px;
  color: #fff;
  max-width: 715px;
  margin: 0 auto;
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn {
  width: 100%;
  outline: 0;
  display: block;
  background: #ed3c46;
  padding: 10px 10px;
  border: 0;
  appearance: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 45px;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn::before {
  content: "";
  display: block;
  position: absolute;
  right: 35px;
  top: 50%;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg) translateY(-50%);
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn > span {
  display: inline-block;
  vertical-align: middle;
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn {
  display: flex;
  justify-content: center;
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn > button:hover {
  transform: translateY(3px);
  opacity: 0.7;
  filter: drop-shadow(0px 0px 0px #b21625);
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn_p {
  display: none;
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn img {
  max-width: 100%;
  width: 30px;
  display: inline-block;
  letter-spacing: normal;
  margin-right: 10px;
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn > span {
  display: inline-block;
  letter-spacing: normal;
  /* width: calc(100% - 30px); */
}

.sale_modal .sale_modal_tel .sale_modal_tel_btn .sale_modal_tel_btn_s1 {
  display: block;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .sale_modal {
    max-width: 860px;
  }
  .sale_modal .sale_modal_inner {
    padding: 25px 30px;
  }
  .sale_modal h2 {
    font-size: 31px;
    padding: 25px 15px;
    margin-bottom: 30px;
  }
  .sale_modal h2 img {
    max-width: 110px;
  }
  .sale_modal h3 {
    font-size: 42px;
  }
  .sale_modal .sale_modal_btn .sale_modal_s1 {
    font-size: 20px;
  }
  .sale_modal .sale_modal_btn .sale_modal_s1 + span {
    font-size: 40px;
  }
  .sale_modal .indent {
    font-size: 14px;
  }
  .sale_modal .sale_modal_tel h4 {
    font-size: 25px;
  }
  .sale_modal .sale_modal_tel .sale_modal_tel_tel {
    font-size: 60px;
  }
  .sale_modal .sale_modal_tel .sale_modal_tel_tel img {
    max-width: 80px;
  }
  .sale_modal .sale_modal_tel .sale_modal_tel_sub {
    font-size: 27px;
    max-width: 615px;
  }
}
@media screen and (max-width: 767px) {
  .sale_modal {
    padding: 15px;
  }
  .sale_modal .sale_modal_inner {
    padding: 40px 10px;
    border-width: 5px;
  }
  #sale_modal .mfp-close {
    right: 15px;
    top: 5px;
  }
  .sale_modal h2 {
    font-size: 15px;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-width: 2px;
  }
  .sale_modal h2 img {
    max-width: 60px;
  }
  .sale_modal h3 {
    font-size: 21px;
  }
  .sale_modal .sale_modal_btn a {
    padding-bottom: 40px;
  }
  .sale_modal .sale_modal_btn a::before {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
  .sale_modal .sale_modal_btn .sale_modal_s1 {
    font-size: 14px;
  }
  .sale_modal .sale_modal_btn .sale_modal_s1 + span {
    font-size: 21px;
  }
  .sale_modal .indent {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .sale_modal .sale_modal_tel {
    padding-top: 20px;
    border-width: 2px;
  }
  .sale_modal .sale_modal_tel h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .sale_modal .sale_modal_tel .sale_modal_tel_tel,
  .sale_modal .sale_modal_tel .sale_modal_tel_sub {
    display: none;
  }
  .sale_modal .sale_modal_tel .sale_modal_tel_btn_p {
    display: block;
  }
}
#line-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ポップアップが有効になった時 */
#line-popup-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* コンテンツエリア（画像のサイズに合わせて可変） */
.line-popup-content {
  position: relative;
  width: 90%;
  max-width: 450px; /* バナーの横幅に合わせて適宜調整してください */
  line-height: 0; /* 画像の下隙間をなくす */
}

/* バナー画像のレスポンシブ設定 */
.line-popup-banner {
  width: 100%;
  height: auto;
  border-radius: 12px; /* 画像の角を少し丸くする（不要なら削除） */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

/* 閉じるボタン（画像の右上外側に配置） */
.line-popup-close {
  position: absolute;
  top: -60px;
  right: -60px;
  color: #fff;
  font-size: 30px;
  border-radius: 1000px;
  font-weight: bold;
  cursor: pointer;
  background: #38905c;
  border: none;
  padding: 5px;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .line-popup-close {
    right: 0;
    top: 110%;
  }
}

#l_form {
  padding: 100px 0;
}

.is-modal-open {
  overflow: hidden;
}

.p_only-button {
  padding: 100px 0;
}

.assessment-btn-wrapper {
  text-align: center;
  padding: 40px 0;
}

.assessment-btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-design1 {
  font-size: 1.8rem;
  max-width: 900px;
  width: 92%;
  position: relative;
  padding: 2rem 6rem 2rem 4rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-gradient(linear, left top, right top, from(#7eb91c), to(#38be60));
  background-image: -webkit-linear-gradient(left, #7eb91c 0%, #38be60 100%);
  background-image: linear-gradient(to right, #7eb91c 0%, #38be60 100%);
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1000px) {
  .btn-design1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .btn-design1 {
    font-size: 1.2rem;
    padding: 20px 40px 24px 40px;
  }
}
.btn-design1 .fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}
@media (max-width: 768px) {
  .btn-design1 .fa-position-right {
    right: 10px;
  }
}
.btn-design1:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  color: #fff;
}
.btn-design1 br {
  display: none;
}
@media (max-width: 768px) {
  .btn-design1 br {
    display: block;
  }
}

.btn-design2 {
  max-width: 900px;
  width: 92%;
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .btn-design2 {
    font-size: 1.2rem;
  }
}
.btn-design2 br {
  display: none;
}
@media (max-width: 768px) {
  .btn-design2 br {
    display: block;
  }
}
.btn-design2:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);
  border: 2px solid #000;
  border-radius: inherit;
  background: #ccc100;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}
.btn-design2 .btn-text {
  position: relative;
  display: block;
  padding: 1.5rem 5rem 1.5rem 5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #000;
  border-radius: inherit;
  background: #fff100;
}
@media (max-width: 768px) {
  .btn-design2 .btn-text {
    padding: 15px 30px 20px 10px;
  }
}
.btn-design2 .fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}
.btn-design2 .fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}
@media (max-width: 768px) {
  .btn-design2 .fa-position-right {
    right: 10px;
  }
}
.btn-design2 .btn-text:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
  background: #fff100;
}
.btn-design2 .btn-text:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0.5rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}
.btn-design2 .btn-text:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}
.btn-design2 .btn-text:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

.btn-design3 {
  max-width: 900px;
  width: 92%;
  font-size: 2.2rem;
  position: relative;
  padding: 2.75rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: #e94919;
  -webkit-box-shadow: 0 5px 0 #d44114;
  box-shadow: 0 5px 0 #d44114;
}
@media (max-width: 768px) {
  .btn-design3 {
    font-size: 1.3rem;
    padding: 30px 12px 20px 16px;
  }
}
.btn-design3 span {
  font-size: 1.5rem;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.2rem 0;
  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .btn-design3 span {
    font-size: 1rem;
  }
}
.btn-design3 span:before,
.btn-design3 span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
.btn-design3 span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}
.btn-design3 span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.btn-design3 i {
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .btn-design3 i {
    margin-right: -3px;
    font-size: 1rem;
  }
}
.btn-design3:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #eb5b30;
  -webkit-box-shadow: 0 2px 0 #d44114;
  box-shadow: 0 2px 0 #d44114;
}
.btn-design3 .fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}
@media (max-width: 768px) {
  .btn-design3 .fa-position-right {
    right: 10px;
  }
}

.assessment-embedded-widget-onecolumn {
  background-color: #f9fce3;
  padding: 60px 0;
}
.assessment-embedded-widget-onecolumn .assessment-embedded-widget__box {
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.assessment-embedded-widget-onecolumn .widget-header {
  text-align: center;
  margin-bottom: 25px;
}
.assessment-embedded-widget-onecolumn .widget-header .time-badge {
  background: #fadd2d;
  padding: 6px 20px;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.assessment-embedded-widget-onecolumn .widget-header .time-badge__textSmall {
  font-size: 1.2rem;
}
.assessment-embedded-widget-onecolumn .widget-header .main-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
@media (max-width: 600px) {
  .assessment-embedded-widget-onecolumn .widget-header .main-title {
    font-size: 20px;
  }
}
.assessment-embedded-widget-onecolumn .widget-header .main-title__textStrong {
  font-size: 1.6rem;
  color: #ef1919;
}
.assessment-embedded-widget-onecolumn .widget-body {
  padding-bottom: 30px;
}
.assessment-embedded-widget-onecolumn .widget-body .widget-row {
  display: flex;
  width: 90%;
  gap: 40px;
  margin: 0 auto 15px;
}
@media (max-width: 1000px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-row {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-row {
    flex-direction: column;
    gap: 20px;
  }
}
.assessment-embedded-widget-onecolumn .widget-body .widget-group {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-group {
    display: flex;
  }
}
@media (max-width: 360px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-group {
    display: block;
  }
}
.assessment-embedded-widget-onecolumn .widget-body .widget-group label {
  display: block;
  padding: 14px 0;
  text-align: center;
  font-weight: bold;
  color: #333;
  font-size: 14px;
  width: 25%;
}
@media (max-width: 1000px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-group label {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-group label {
    width: 104px;
    font-size: 15px;
    padding-right: 16px;
  }
}
@media (max-width: 360px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-group label {
    width: 100%;
  }
}
.assessment-embedded-widget-onecolumn .widget-body .widget-input {
  position: relative;
  border: 1px solid #00a030;
  border-radius: 6px;
  padding: 14px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 75%;
  cursor: pointer;
  background: #f3f3f3;
  transition: background 0.2s;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-input {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .assessment-embedded-widget-onecolumn .widget-body .widget-input {
    width: 80%;
  }
}
.assessment-embedded-widget-onecolumn .widget-body .widget-input:hover {
  background: #f8ffbb;
  border: 1px solid #dac6c8;
}
.assessment-embedded-widget-onecolumn .widget-body .widget-input .js-display-text {
  font-size: 1rem;
  color: #cdcdcd;
  font-weight: 300;
}
.assessment-embedded-widget-onecolumn .widget-body .widget-input .plus-icon {
  position: absolute;
  right: 12px;
  font-style: normal;
  color: #00a030;
  font-weight: bold;
  font-size: 1.8rem;
}
.assessment-embedded-widget-onecolumn .widget-body [data-modal=form_modal_brand].widget-input {
  border-color: #0cad2e !important;
  box-shadow: 0 0 0 2px #0cad2e;
  border-radius: 8px;
  animation-name: focusWave;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  -webkit-animation-name: focusWave;
}
.assessment-embedded-widget-onecolumn .widget-footer .widget-submit-btn {
  width: 40%;
  display: block;
  margin: 0 auto;
  background: #e63946;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 0 #b32a35;
  transition: transform 0.1s;
}
.assessment-embedded-widget-onecolumn .widget-footer .widget-submit-btn:hover {
  transform: translateY(2px);
  box-shadow: none;
}
@media (max-width: 768px) {
  .assessment-embedded-widget-onecolumn .widget-footer .widget-submit-btn {
    width: 80%;
  }
}

.p_twocolumn {
  border-top: 1px solid #ddd;
  padding: 100px 0;
  background-color: #44c0b7;
}
.p_twocolumn .inner {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 901px) {
  .p_twocolumn .inner {
    flex-wrap: wrap;
    display: block;
  }
}

.assessment-embedded-widget-twocolumn .assessment-embedded-widget__box {
  border-radius: 20px;
  background: #fff;
  padding: min(4vw, 70px) 0 0;
  box-sizing: border-box;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
}
@media (max-width: 901px) {
  .assessment-embedded-widget-twocolumn .assessment-embedded-widget__box {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .assessment-embedded-widget-twocolumn .assessment-embedded-widget__box {
    width: 90%;
  }
}
@media only screen and (min-width: 768px) {
  .assessment-embedded-widget-twocolumn .assessment-embedded-widget__box {
    padding-top: 0;
  }
}
.assessment-embedded-widget-twocolumn .assessment_head {
  position: absolute;
  top: 0;
  border-radius: 20px 20px 0 0;
  background: #ffea01;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .assessment-embedded-widget-twocolumn .assessment_head {
    display: none;
  }
}
.assessment-embedded-widget-twocolumn .assessment_head .text_flex {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  position: relative;
  font-weight: bold;
  font-size: min(1.5vw, 21px);
}
.assessment-embedded-widget-twocolumn .assessment_head .text_flex small {
  background: #f0101d;
  width: 93px;
  height: 30px;
  min-width: 75px;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin-right: 10px;
}
.assessment-embedded-widget-twocolumn .assessment_head .text_flex span {
  font-size: min(2vw, 38px);
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .assessment_head .text_flex span {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .assessment_head .text_flex {
    font-size: 16px;
    line-height: 1.4;
  }
}
.assessment-embedded-widget-twocolumn .assessment_head .text_flex::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -23px;
  width: 28px;
  height: 14px;
  background-color: #ffea01;
  clip-path: polygon(50% 14px, 0% 0%, 28px 0%);
  left: 50%;
  transform: translateX(-50%);
}
.assessment-embedded-widget-twocolumn .assessment_head .text_flex .flex_inner {
  display: flex;
  align-items: baseline;
  font-size: min(1.5vw, 21px);
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .assessment_head .text_flex .flex_inner {
    font-size: 16px;
  }
}
.assessment-embedded-widget-twocolumn .assessment_head .text_flex .flex_inner .font_big {
  font-size: min(2vw, 38px);
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .assessment_head .text_flex .flex_inner .font_big {
    font-size: 24px;
  }
}
.assessment-embedded-widget-twocolumn .assessment_catch {
  text-align: center;
  font-weight: bold;
  font-size: min(1.5vw, 22px);
  line-height: 1.4;
  color: #000;
  margin-bottom: min(1.4vw, 30px);
  background: none;
  padding: 25px 0 0;
}
@media only screen and (min-width: 768px) {
  .assessment-embedded-widget-twocolumn .assessment_catch {
    display: none;
  }
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .assessment_catch {
    margin: 50px 0 20px;
    font-size: 20px;
    padding: 0;
  }
}
.assessment-embedded-widget-twocolumn .assessment_catch span {
  /*  font-size: min(2vw, 30px); */
  color: #f0101d;
  font-size: 140%;
  /* @media (max-width: 900px) {
      font-size: 24px;
  } */
}
.assessment-embedded-widget-twocolumn .widget-body {
  display: flex;
  gap: 20px 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px 40px;
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .widget-body {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .assessment-embedded-widget-twocolumn .widget-body {
    padding: min(4.167vw, 50px);
  }
}
.assessment-embedded-widget-twocolumn .widget-row {
  width: 100%;
}
@media (min-width: 901px) {
  .assessment-embedded-widget-twocolumn .widget-row {
    max-width: 700px;
    margin: 0 auto;
  }
}
.assessment-embedded-widget-twocolumn .widget-group {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  /* width: 48%; */
  width: 100%;
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .widget-group {
    width: 100%;
  }
}
.assessment-embedded-widget-twocolumn .widget-group + .widget-group {
  margin-top: 20px;
}
.assessment-embedded-widget-twocolumn .widget-group label {
  font-size: 18px;
  color: #000;
  font-weight: bold;
  width: 90px;
  min-width: 90px;
  border: none;
  margin: 0;
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .widget-group label {
    font-size: 16px;
    text-align: center;
  }
}
.assessment-embedded-widget-twocolumn .widget-input {
  width: calc(100% - 90px);
  position: relative;
  display: flex;
  justify-content: space-between;
  background: #f8f8f8;
  border: 1px solid #1080d0;
  font-size: 18px;
  border-radius: 8px;
  padding: 17px 10px;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
  margin: 0;
  color: #cdcdcd;
  cursor: pointer;
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .widget-input {
    font-size: 16px;
    padding: 10px;
  }
}
.assessment-embedded-widget-twocolumn .widget-input::after {
  display: none;
}
.assessment-embedded-widget-twocolumn .widget-input.norequired__select select {
  background: #e5e5e5;
}
.assessment-embedded-widget-twocolumn .widget-input .input-focus {
  border-color: #0cad2e !important;
  box-shadow: 0 0 0 2px #0cad2e;
  border-radius: 8px;
  animation-name: focusWave;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  -webkit-animation-name: focusWave;
}
.assessment-embedded-widget-twocolumn .widget-input .plus-icon {
  position: relative;
  color: #fff;
}
.assessment-embedded-widget-twocolumn .widget-input .plus-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url("../../resatei_includes/img/common/plus_blue.svg") no-repeat center center/contain;
  pointer-events: none;
  width: 21px;
  height: 21px;
  z-index: 1;
}
@keyframes focusWave {
  0% {
    box-shadow: 0 0 0 1px #deef68, 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 10px rgba(100, 37, 16, 0);
  }
  100% {
    box-shadow: 0 0 0 1px #deef68, 0 0 0 1px #fff, 0 0 0 2px #deef68;
  }
}
.assessment-embedded-widget-twocolumn .widget-footer {
  margin-top: 10px;
  width: 100%;
}
.assessment-embedded-widget-twocolumn .widget-submit-btn {
  width: 100%;
  outline: 0;
  display: block;
  background: #ed3c46;
  padding: 12px 0;
  border: 0;
  appearance: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 45px;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .assessment-embedded-widget-twocolumn .widget-submit-btn {
    font-size: min(20px, 6vw);
    width: 80%;
  }
}
@media (max-width: 500px) {
  .assessment-embedded-widget-twocolumn .widget-submit-btn {
    width: 92%;
  }
}
.assessment-embedded-widget-twocolumn .widget-submit-btn:hover {
  transform: translateY(3px);
  opacity: 0.7;
  filter: drop-shadow(0px 0px 0px #b21625);
}
.assessment-embedded-widget-twocolumn .widget-submit-btn::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 24px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .assessment-embedded-widget-twocolumn .widget-submit-btn::before {
    inset: 0 20px 0 auto;
  }
}
.assessment-embedded-widget-twocolumn .widget-submit-btn::after {
  position: absolute;
  content: "";
  background: url(../images/index/monitor.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  margin: auto;
  inset: 0 auto 0 24px;
}
@media only screen and (max-width: 960px) {
  .assessment-embedded-widget-twocolumn .widget-submit-btn::after {
    inset: 0 auto 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .assessment-embedded-widget-twocolumn .widget-submit-btn::after {
    width: 5vw;
    height: 5.6vw;
    inset: 0 auto 0 6vw;
  }
}
@media (max-width: 374px) {
  .assessment-embedded-widget-twocolumn .widget-submit-btn::after {
    width: 23px;
    height: 16px;
    inset: 0 auto 0 16px;
  }
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt1 {
  margin-top: 1px !important;
}

.mr1 {
  margin-right: 1px !important;
}

.ml1 {
  margin-left: 1px !important;
}

.mb1 {
  margin-bottom: 1px !important;
}

.pt1 {
  padding-top: 1px !important;
}

.pr1 {
  padding-right: 1px !important;
}

.pl1 {
  padding-left: 1px !important;
}

.pb1 {
  padding-bottom: 1px !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mr2 {
  margin-right: 2px !important;
}

.ml2 {
  margin-left: 2px !important;
}

.mb2 {
  margin-bottom: 2px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.pr2 {
  padding-right: 2px !important;
}

.pl2 {
  padding-left: 2px !important;
}

.pb2 {
  padding-bottom: 2px !important;
}

.mt3 {
  margin-top: 3px !important;
}

.mr3 {
  margin-right: 3px !important;
}

.ml3 {
  margin-left: 3px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.pt3 {
  padding-top: 3px !important;
}

.pr3 {
  padding-right: 3px !important;
}

.pl3 {
  padding-left: 3px !important;
}

.pb3 {
  padding-bottom: 3px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mr4 {
  margin-right: 4px !important;
}

.ml4 {
  margin-left: 4px !important;
}

.mb4 {
  margin-bottom: 4px !important;
}

.pt4 {
  padding-top: 4px !important;
}

.pr4 {
  padding-right: 4px !important;
}

.pl4 {
  padding-left: 4px !important;
}

.pb4 {
  padding-bottom: 4px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.mt6 {
  margin-top: 6px !important;
}

.mr6 {
  margin-right: 6px !important;
}

.ml6 {
  margin-left: 6px !important;
}

.mb6 {
  margin-bottom: 6px !important;
}

.pt6 {
  padding-top: 6px !important;
}

.pr6 {
  padding-right: 6px !important;
}

.pl6 {
  padding-left: 6px !important;
}

.pb6 {
  padding-bottom: 6px !important;
}

.mt7 {
  margin-top: 7px !important;
}

.mr7 {
  margin-right: 7px !important;
}

.ml7 {
  margin-left: 7px !important;
}

.mb7 {
  margin-bottom: 7px !important;
}

.pt7 {
  padding-top: 7px !important;
}

.pr7 {
  padding-right: 7px !important;
}

.pl7 {
  padding-left: 7px !important;
}

.pb7 {
  padding-bottom: 7px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.ml8 {
  margin-left: 8px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pr8 {
  padding-right: 8px !important;
}

.pl8 {
  padding-left: 8px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.mt9 {
  margin-top: 9px !important;
}

.mr9 {
  margin-right: 9px !important;
}

.ml9 {
  margin-left: 9px !important;
}

.mb9 {
  margin-bottom: 9px !important;
}

.pt9 {
  padding-top: 9px !important;
}

.pr9 {
  padding-right: 9px !important;
}

.pl9 {
  padding-left: 9px !important;
}

.pb9 {
  padding-bottom: 9px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mr105 {
  margin-right: 105px !important;
}

.ml105 {
  margin-left: 105px !important;
}

.mb105 {
  margin-bottom: 105px !important;
}

.pt105 {
  padding-top: 105px !important;
}

.pr105 {
  padding-right: 105px !important;
}

.pl105 {
  padding-left: 105px !important;
}

.pb105 {
  padding-bottom: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mr110 {
  margin-right: 110px !important;
}

.ml110 {
  margin-left: 110px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pr110 {
  padding-right: 110px !important;
}

.pl110 {
  padding-left: 110px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mr115 {
  margin-right: 115px !important;
}

.ml115 {
  margin-left: 115px !important;
}

.mb115 {
  margin-bottom: 115px !important;
}

.pt115 {
  padding-top: 115px !important;
}

.pr115 {
  padding-right: 115px !important;
}

.pl115 {
  padding-left: 115px !important;
}

.pb115 {
  padding-bottom: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mr120 {
  margin-right: 120px !important;
}

.ml120 {
  margin-left: 120px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pr120 {
  padding-right: 120px !important;
}

.pl120 {
  padding-left: 120px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.mr125 {
  margin-right: 125px !important;
}

.ml125 {
  margin-left: 125px !important;
}

.mb125 {
  margin-bottom: 125px !important;
}

.pt125 {
  padding-top: 125px !important;
}

.pr125 {
  padding-right: 125px !important;
}

.pl125 {
  padding-left: 125px !important;
}

.pb125 {
  padding-bottom: 125px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mr130 {
  margin-right: 130px !important;
}

.ml130 {
  margin-left: 130px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pr130 {
  padding-right: 130px !important;
}

.pl130 {
  padding-left: 130px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.mr135 {
  margin-right: 135px !important;
}

.ml135 {
  margin-left: 135px !important;
}

.mb135 {
  margin-bottom: 135px !important;
}

.pt135 {
  padding-top: 135px !important;
}

.pr135 {
  padding-right: 135px !important;
}

.pl135 {
  padding-left: 135px !important;
}

.pb135 {
  padding-bottom: 135px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mr140 {
  margin-right: 140px !important;
}

.ml140 {
  margin-left: 140px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pr140 {
  padding-right: 140px !important;
}

.pl140 {
  padding-left: 140px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.mr145 {
  margin-right: 145px !important;
}

.ml145 {
  margin-left: 145px !important;
}

.mb145 {
  margin-bottom: 145px !important;
}

.pt145 {
  padding-top: 145px !important;
}

.pr145 {
  padding-right: 145px !important;
}

.pl145 {
  padding-left: 145px !important;
}

.pb145 {
  padding-bottom: 145px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mr150 {
  margin-right: 150px !important;
}

.ml150 {
  margin-left: 150px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pr150 {
  padding-right: 150px !important;
}

.pl150 {
  padding-left: 150px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.mt155 {
  margin-top: 155px !important;
}

.mr155 {
  margin-right: 155px !important;
}

.ml155 {
  margin-left: 155px !important;
}

.mb155 {
  margin-bottom: 155px !important;
}

.pt155 {
  padding-top: 155px !important;
}

.pr155 {
  padding-right: 155px !important;
}

.pl155 {
  padding-left: 155px !important;
}

.pb155 {
  padding-bottom: 155px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mr160 {
  margin-right: 160px !important;
}

.ml160 {
  margin-left: 160px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.pr160 {
  padding-right: 160px !important;
}

.pl160 {
  padding-left: 160px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.mt165 {
  margin-top: 165px !important;
}

.mr165 {
  margin-right: 165px !important;
}

.ml165 {
  margin-left: 165px !important;
}

.mb165 {
  margin-bottom: 165px !important;
}

.pt165 {
  padding-top: 165px !important;
}

.pr165 {
  padding-right: 165px !important;
}

.pl165 {
  padding-left: 165px !important;
}

.pb165 {
  padding-bottom: 165px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.mr170 {
  margin-right: 170px !important;
}

.ml170 {
  margin-left: 170px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.pt170 {
  padding-top: 170px !important;
}

.pr170 {
  padding-right: 170px !important;
}

.pl170 {
  padding-left: 170px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.mt175 {
  margin-top: 175px !important;
}

.mr175 {
  margin-right: 175px !important;
}

.ml175 {
  margin-left: 175px !important;
}

.mb175 {
  margin-bottom: 175px !important;
}

.pt175 {
  padding-top: 175px !important;
}

.pr175 {
  padding-right: 175px !important;
}

.pl175 {
  padding-left: 175px !important;
}

.pb175 {
  padding-bottom: 175px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mr180 {
  margin-right: 180px !important;
}

.ml180 {
  margin-left: 180px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.pt180 {
  padding-top: 180px !important;
}

.pr180 {
  padding-right: 180px !important;
}

.pl180 {
  padding-left: 180px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.mt185 {
  margin-top: 185px !important;
}

.mr185 {
  margin-right: 185px !important;
}

.ml185 {
  margin-left: 185px !important;
}

.mb185 {
  margin-bottom: 185px !important;
}

.pt185 {
  padding-top: 185px !important;
}

.pr185 {
  padding-right: 185px !important;
}

.pl185 {
  padding-left: 185px !important;
}

.pb185 {
  padding-bottom: 185px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.mr190 {
  margin-right: 190px !important;
}

.ml190 {
  margin-left: 190px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.pt190 {
  padding-top: 190px !important;
}

.pr190 {
  padding-right: 190px !important;
}

.pl190 {
  padding-left: 190px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.mt195 {
  margin-top: 195px !important;
}

.mr195 {
  margin-right: 195px !important;
}

.ml195 {
  margin-left: 195px !important;
}

.mb195 {
  margin-bottom: 195px !important;
}

.pt195 {
  padding-top: 195px !important;
}

.pr195 {
  padding-right: 195px !important;
}

.pl195 {
  padding-left: 195px !important;
}

.pb195 {
  padding-bottom: 195px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.mr200 {
  margin-right: 200px !important;
}

.ml200 {
  margin-left: 200px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.pr200 {
  padding-right: 200px !important;
}

.pl200 {
  padding-left: 200px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

@media screen and (max-width: 812px) {
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mb1_sp {
    margin-bottom: 1px !important;
  }
  .mb2_sp {
    margin-bottom: 2px !important;
  }
  .mb3_sp {
    margin-bottom: 3px !important;
  }
  .mb4_sp {
    margin-bottom: 4px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mb6_sp {
    margin-bottom: 6px !important;
  }
  .mb7_sp {
    margin-bottom: 7px !important;
  }
  .mb8_sp {
    margin-bottom: 8px !important;
  }
  .mb9_sp {
    margin-bottom: 9px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .mb105_sp {
    margin-bottom: 105px !important;
  }
  .mb110_sp {
    margin-bottom: 110px !important;
  }
  .mb115_sp {
    margin-bottom: 115px !important;
  }
  .mb120_sp {
    margin-bottom: 120px !important;
  }
  .mb125_sp {
    margin-bottom: 125px !important;
  }
  .mb130_sp {
    margin-bottom: 130px !important;
  }
  .mb135_sp {
    margin-bottom: 135px !important;
  }
  .mb140_sp {
    margin-bottom: 140px !important;
  }
  .mb145_sp {
    margin-bottom: 145px !important;
  }
  .mb150_sp {
    margin-bottom: 150px !important;
  }
  .mb155_sp {
    margin-bottom: 155px !important;
  }
  .mb160_sp {
    margin-bottom: 160px !important;
  }
  .mb165_sp {
    margin-bottom: 165px !important;
  }
  .mb170_sp {
    margin-bottom: 170px !important;
  }
  .mb175_sp {
    margin-bottom: 175px !important;
  }
  .mb180_sp {
    margin-bottom: 180px !important;
  }
  .mb185_sp {
    margin-bottom: 185px !important;
  }
  .mb190_sp {
    margin-bottom: 190px !important;
  }
  .mb195_sp {
    margin-bottom: 195px !important;
  }
  .mb200_sp {
    margin-bottom: 200px !important;
  }
}
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
}
.l_header__top {
  height: 100px;
  padding: 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l_header__top {
    height: 60px;
  }
}
.l_header .logo {
  font-size: 12px;
}
.l_header .sub_actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.l_header .sub_actions > li {
  margin-right: 10px;
}
.l_header .sub_actions > li:first-of-type {
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
.l_header .sub_actions > li:first-of-type a {
  height: 60px;
  display: block;
}
.l_header .sub_actions > li:first-of-type a img {
  height: 100%;
}
.l_header .sub_actions > li:not(:first-of-type) a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
.l_header .sub_actions > li:not(:first-of-type) a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
.l_header .gnav {
  background: #efefef;
  letter-spacing: -0.5em;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
}
.l_header .gnav ul > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  position: relative;
}
.l_header .gnav ul > li::before, .l_header .gnav ul > li:last-child:after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 1px;
  background: #dddddd;
}
.l_header .gnav ul > li:last-child::after {
  left: auto;
  right: 0;
}
.l_header .gnav ul > li > a {
  display: block;
  padding: 10px 20px;
  position: relative;
}
@media only screen and (max-width: 1520px) {
  .l_header .sub_actions {
    max-width: 900px;
  }
}
@media only screen and (max-width: 1260px) {
  .l_header {
    height: 145px;
  }
  .l_header .logo {
    left: 15px;
  }
  .l_header .logo img {
    max-width: 180px;
  }
  .l_header .sub_actions {
    max-width: 800px;
    width: 68%;
    right: 15px;
    top: 20px;
  }
  .l_header .gnav {
    font-size: 15px;
  }
  .l_header .gnav ul > li > a {
    padding: 10px min(2vw, 10px);
  }
}
@media only screen and (max-width: 900px) {
  .l_header .gnav ul > li > a {
    padding: 10px 5px;
  }
}
@media only screen and (max-width: 767px) {
  .l_header {
    position: fixed;
    height: auto;
    border-bottom: 1px solid #dddddd;
  }
  .l_header .sub_actions,
  .l_header .gnav {
    display: none;
  }
  .l_header .logo img {
    max-width: 130px;
  }
}

#hd .btn_nav {
  position: absolute;
  right: 0px;
  bottom: 0;
  display: none;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 99999999;
  background: #efefef;
}
#hd .btn_nav::before {
  content: "メニュー";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: 4px;
  font-size: 10px;
  color: #000000;
}
#hd .btn_nav hr {
  background: #000000;
  height: 2px;
  position: absolute;
  border: none;
  transform-origin: center center;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 23px;
  margin: 0 auto;
  transition: top 0.2s ease-in-out 0.3s, transform 0.2s ease-in-out 0s;
  transform: rotate(0deg);
}
#hd .btn_nav hr:nth-child(1) {
  top: 11px;
}
#hd .btn_nav hr:nth-child(2) {
  top: 19px;
}
#hd .btn_nav hr:nth-child(3) {
  top: 26px;
}
#hd .btn_nav.opened hr {
  transition: top 0.2s ease-in-out 0s, transform 0.2s ease-in-out 0.3s;
}
#hd .btn_nav.opened hr:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
#hd .btn_nav.opened hr:nth-child(2) {
  transform: scaleX(0);
  top: 19px;
}
#hd .btn_nav.opened hr:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}
#hd .gnav_sp {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  overflow-y: scroll !important;
  background: #fffffc;
  z-index: 999999;
  display: none;
  height: calc(100vh - 74px);
}
#hd .gnav_sp > .gnav_sp_inner {
  background: #efefef;
}
#hd .gnav_sp > .gnav_sp_inner > div:nth-child(1) {
  padding-bottom: 100px;
}
#hd .gnav_sp .gnav_spnav a {
  display: block;
  padding: 15px 35px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid #dddddd;
}
@media only screen and (max-width: 767px) {
  #hd .btn_nav {
    display: block;
  }
}

.contact_bnsec {
  padding: 40px 0 75px;
  background: var(--bgcolor);
}
.contact_bnsec .contact_bn_ttl_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1260px;
  margin: 0 auto;
}
.contact_bnsec .contact_bn_ttl_block > p:nth-of-type(1) {
  order: 1;
  width: 28.26%;
}
.contact_bnsec .contact_bn_ttl_block > p:nth-of-type(2) {
  order: 3;
  width: 19.53%;
}
.contact_bnsec .contact_bn_ttl_block h3 {
  order: 2;
  font-size: 56px;
  font-weight: bold;
  padding: 0 65px;
  background: url("../images/common/contact_bn_l.svg") no-repeat center left, url("../images/common/contact_bn_r.svg") no-repeat center right;
  margin-bottom: 70px;
}
.contact_bnsec .contact_bn_ttl_block h3 > span {
  color: #00a831;
  font-size: 117.86%;
}
.contact_bnsec .contact_bn_block {
  display: flex;
  justify-content: space-between;
  margin-top: -1px;
}
.contact_bnsec .contact_bn_block h3 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 6px 10px;
  background: var(--bgcolor);
  margin-bottom: 30px;
  border-radius: 30px;
  position: relative;
}
.contact_bnsec .contact_bn_block h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 18px 0 18px;
  border-color: var(--bgcolor) transparent transparent transparent;
}
.contact_bnsec .contact_bn_block > div:nth-child(1) {
  width: 31.4%;
}
.contact_bnsec .contact_bn_block > div:nth-child(2) {
  width: 65.64%;
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > h3 {
  color: #fff;
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > ul {
  display: flex;
  justify-content: space-between;
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li {
  width: 47.83%;
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li > a {
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li > a:hover {
  filter: drop-shadow(0px 0px 0px #fff) !important;
  transform: translateY(3px);
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li:nth-child(2) > a {
  filter: drop-shadow(0px 4px 0px #00661a);
}
.contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li img {
  width: 100%;
}
@media only screen and (max-width: 1260px) {
  .contact_bnsec .contact_bn_ttl_block h3 {
    font-size: 4vw;
    padding: 0 42px;
    margin-bottom: 30px;
    background-size: 30px;
  }
  .contact_bnsec .contact_bn_block h3 {
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 767px) {
  .contact_bnsec .contact_bn_ttl_block {
    flex-wrap: wrap;
    text-align: center;
  }
  .contact_bnsec .contact_bn_ttl_block h3 {
    width: auto;
    margin: 0 auto 15px;
    font-size: 7.4vw;
    padding: 0 30px;
    background-size: 20px;
  }
  .contact_bnsec .contact_bn_ttl_block > p:first-of-type {
    order: 2;
  }
  .contact_bnsec .contact_bn_ttl_block > p:nth-of-type(1) {
    padding-left: 25px;
    width: 56.26%;
  }
  .contact_bnsec .contact_bn_ttl_block > p:nth-of-type(2) {
    width: 35.53%;
    padding-right: 25px;
  }
}
@media screen and (max-width: 640px) {
  .contact_bnsec {
    padding: 40px 0 50px;
  }
  .contact_bnsec .contact_bn_block h3 {
    font-size: 18px;
  }
  .contact_bnsec .contact_bn_block {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .contact_bnsec .contact_bn_block > div:nth-child(1) {
    width: auto;
    margin-bottom: 30px;
  }
  .contact_bnsec .contact_bn_block > div:nth-child(2) {
    width: auto;
  }
  .contact_bnsec .contact_bn_block > div:nth-child(2) > ul {
    display: block;
  }
  .contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li {
    width: auto;
    margin-bottom: 20px;
  }
  .contact_bnsec .contact_bn_block > div:nth-child(2) > ul > li:last-child {
    margin-bottom: 0;
  }
}

#footer .footer_navblock {
  padding: 75px 0 57px;
  background: #00a831;
  color: #fff;
}
#footer h2 {
  font-weight: bold;
  margin-bottom: 12px;
}
#footer h2 a {
  color: #fff;
}
#footer .footer_nav {
  display: flex;
  justify-content: space-between;
}
#footer .footer_nav > div {
  padding-right: 10px;
}
#footer .footer_nav > div:nth-child(1) {
  width: 36.25%;
}
#footer .footer_nav > div:nth-child(2) {
  width: 23.34%;
}
#footer .footer_nav > div:nth-child(3) {
  width: 23.34%;
}
#footer .footer_nav > div:nth-child(4) {
  width: 17.5%;
  padding-right: 0;
}
#footer .footer_nav .nav2col {
  display: flex;
}
#footer .footer_nav .nav2col > ul:nth-child(1) {
  width: 41.38%;
  padding-right: 15px;
}
#footer .footer_nav ul > li {
  margin-bottom: 5px;
}
#footer .footer_nav ul > li:last-child {
  margin-bottom: 0;
}
#footer .footer_nav ul > li a {
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
  padding-left: 13px;
  position: relative;
  font-weight: normal;
}
#footer .footer_nav ul > li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 8px;
}
#footer .snslist {
  letter-spacing: -0.8em;
  text-align: right;
}
#footer .snslist > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
}
#footer .snslist > li:not(:last-child) {
  margin-right: 11px;
}
#footer .area_list_nav {
  padding-top: 55px;
  margin-top: 55px;
  border-top: 1px solid #ffffff;
}
#footer .area_list_nav ul {
  line-height: 1.3;
  letter-spacing: -0.5em;
}
#footer .area_list_nav ul > li {
  display: inline-block;
  letter-spacing: normal;
  padding-right: 7px;
  margin-right: 7px;
  font-size: 14px;
  border-right: 1px solid #fff;
}
#footer .area_list_nav ul > li a {
  font-weight: normal;
  display: block;
  color: #fff;
}
#footer .network_list {
  padding-top: 55px;
  margin-top: 55px;
  border-top: 1px solid #ffffff;
}
#footer .network_list a {
  color: #fff;
}
#footer .network_list .network_2col {
  display: flex;
}
#footer .network_list .network_2col > div {
  padding-right: 20px;
}
#footer .network_list .network_2col > div:nth-child(1) {
  width: 47.92%;
}
#footer .network_list .network_2col > div:nth-child(2) {
  width: 52.09%;
}
#footer .network_list .network_2col dl {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}
#footer .network_list .network_2col dl dt,
#footer .network_list .network_2col dl dd {
  margin-bottom: 10px;
}
#footer .network_list .network_2col dl dt {
  width: 60px;
  padding-right: 10px;
}
#footer .network_list .network_2col dl dd {
  width: calc(100% - 60px);
}
#footer .network_list .network_2col dl dd > ul {
  font-weight: normal;
  letter-spacing: -0.8em;
}
#footer .network_list .network_2col dl dd > ul > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
}
#footer .network_list .network_2col dl dd > ul > li a {
  padding-left: 10px;
  position: relative;
}
#footer .network_list .network_2col dl dd > ul > li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 8px;
}
#footer .network_list .network_2col dl dd > ul > li:not(:last-child) {
  margin-right: 10px;
}
#footer .copyright {
  padding: 12px 10px;
  color: #999999;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
}
@media only screen and (max-width: 960px) {
  #footer .footer_nav {
    flex-wrap: wrap;
  }
  #footer .footer_nav > div {
    width: 49% !important;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #footer {
    padding-bottom: 85px;
  }
  #footer .footer_navblock {
    padding: 45px 0 30px;
  }
  #footer .footer_nav {
    display: block;
  }
  #footer .snslist {
    text-align: center;
  }
  #footer .snslist > li:nth-child(3) {
    margin-right: 0;
  }
  #footer .snslist > li:last-child {
    display: block;
    margin-top: 20px;
  }
  #footer .network_list .network_2col {
    display: block;
  }
  #footer .footer_nav > div {
    width: auto !important;
  }
  #footer .network_list .network_2col > div {
    width: auto !important;
    padding-right: 0;
  }
  #footer .area_list_nav,
  #footer .network_list {
    padding: 40px 15px 0;
    margin: 40px -15px 0;
  }
  #footer .copyright {
    font-size: 10px;
  }
}

.footer_actions_sp {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99999;
  padding: 10px 15px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
  display: none;
}
@media only screen and (max-width: 767px) {
  .footer_actions_sp {
    pointer-events: all;
    opacity: 1;
    display: block;
  }
}
.footer_actions_sp.scrolled {
  pointer-events: all;
  opacity: 1;
}
.footer_actions_sp > ul {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footer_actions_sp > ul > li {
  width: 49.32%;
}
.footer_actions_sp > ul > li img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer_actions_sp {
    display: block;
  }
}

.page_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 50px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.page_top.scrolled {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .page_top {
    bottom: 100px;
  }
}

body#assessment .step .ttl_txt,
body#haisya .step .ttl_txt,
#top_resemble .ttl_txt,
#area_template .ttl_txt {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
body#assessment .step .ttl_txt > span,
body#haisya .step .ttl_txt > span,
#top_resemble .ttl_txt > span,
#area_template .ttl_txt > span {
  display: block;
}
body#assessment .step .ttl_txt > span.en,
body#haisya .step .ttl_txt > span.en,
#top_resemble .ttl_txt > span.en,
#area_template .ttl_txt > span.en {
  color: #00a831;
  font-size: 18px;
}
body#assessment .step .ttl,
body#haisya .step .ttl,
#top_resemble .ttl,
#area_template .ttl {
  font-size: 56px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 45px;
}
body#assessment .step .slick-prev,
body#assessment .step .slick-next,
body#haisya .step .slick-prev,
body#haisya .step .slick-next,
#top_resemble .slick-prev,
#top_resemble .slick-next,
#area_template .slick-prev,
#area_template .slick-next {
  width: 60px;
  height: 60px;
  background: url("../images/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
body#assessment .step .slick-prev:hover,
body#assessment .step .slick-next:hover,
body#haisya .step .slick-prev:hover,
body#haisya .step .slick-next:hover,
#top_resemble .slick-prev:hover,
#top_resemble .slick-next:hover,
#area_template .slick-prev:hover,
#area_template .slick-next:hover {
  opacity: 0.7;
}
body#assessment .step .slick-prev::before,
body#assessment .step .slick-next::before,
body#haisya .step .slick-prev::before,
body#haisya .step .slick-next::before,
#top_resemble .slick-prev::before,
#top_resemble .slick-next::before,
#area_template .slick-prev::before,
#area_template .slick-next::before {
  content: none;
}
body#assessment .step .slick-prev,
body#haisya .step .slick-prev,
#top_resemble .slick-prev,
#area_template .slick-prev {
  left: 20px;
  background: url("../images/prev.svg") no-repeat center center;
  background-size: contain;
}
body#assessment .step .slick-next,
body#haisya .step .slick-next,
#top_resemble .slick-next,
#area_template .slick-next {
  right: 20px;
}
body#assessment .step .p_purchase_list,
body#haisya .step .p_purchase_list,
#top_resemble .p_purchase_list,
#area_template .p_purchase_list {
  padding: 0 80px;
}
body#assessment .step .p_purchase_list__item,
body#haisya .step .p_purchase_list__item,
#top_resemble .p_purchase_list__item,
#area_template .p_purchase_list__item {
  padding: 0 20px;
}
body#assessment .step .p_purchase_card,
body#haisya .step .p_purchase_card,
#top_resemble .p_purchase_card,
#area_template .p_purchase_card {
  background: #fff;
  border: 2px solid #000000;
  display: block;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#assessment .step .p_purchase_card__head,
body#haisya .step .p_purchase_card__head,
#top_resemble .p_purchase_card__head,
#area_template .p_purchase_card__head {
  font-weight: bold;
  text-align: center;
  font-size: 15px;
  padding: 8px 16px;
  background-color: #f1f6f3;
}
body#assessment .step .p_purchase_card__head_price,
body#haisya .step .p_purchase_card__head_price,
#top_resemble .p_purchase_card__head_price,
#area_template .p_purchase_card__head_price {
  font-size: 1.1em;
}
body#assessment .step .p_purchase_card__souba,
body#haisya .step .p_purchase_card__souba,
#top_resemble .p_purchase_card__souba,
#area_template .p_purchase_card__souba {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 4px 11px;
  line-height: 1.1;
  font-size: 18px;
  font-weight: bold;
  background: #ffea01;
  border-radius: 14px;
  font-size: 14px;
}
body#assessment .step .p_purchase_card__media,
body#haisya .step .p_purchase_card__media,
#top_resemble .p_purchase_card__media,
#area_template .p_purchase_card__media {
  position: relative;
}
body#assessment .step .p_purchase_card__media img,
body#haisya .step .p_purchase_card__media img,
#top_resemble .p_purchase_card__media img,
#area_template .p_purchase_card__media img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#assessment .step .p_purchase_card__body,
body#haisya .step .p_purchase_card__body,
#top_resemble .p_purchase_card__body,
#area_template .p_purchase_card__body {
  padding: 19px 20px 10px;
  text-align: center;
}
body#assessment .step .p_purchase_card__price,
body#haisya .step .p_purchase_card__price,
#top_resemble .p_purchase_card__price,
#area_template .p_purchase_card__price {
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}
body#assessment .step .p_purchase_card__highlight,
body#haisya .step .p_purchase_card__highlight,
#top_resemble .p_purchase_card__highlight,
#area_template .p_purchase_card__highlight {
  background: linear-gradient(transparent 70%, #ffea01 70%);
  display: inline;
}
body#assessment .step .p_purchase_card__highlight_amount,
body#haisya .step .p_purchase_card__highlight_amount,
#top_resemble .p_purchase_card__highlight_amount,
#area_template .p_purchase_card__highlight_amount {
  font-size: 260%;
  line-height: 0.7;
  display: inline-block;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  color: #00a831;
}
body#assessment .step .p_purchase_card__highlight_unit,
body#haisya .step .p_purchase_card__highlight_unit,
#top_resemble .p_purchase_card__highlight_unit,
#area_template .p_purchase_card__highlight_unit {
  font-size: 73.53%;
}
body#assessment .step .p_purchase_card__spec_row,
body#haisya .step .p_purchase_card__spec_row,
#top_resemble .p_purchase_card__spec_row,
#area_template .p_purchase_card__spec_row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.4;
}
body#assessment .step .p_purchase_card__spec_term, body#assessment .step .p_purchase_card__spec_desc,
body#haisya .step .p_purchase_card__spec_term,
body#haisya .step .p_purchase_card__spec_desc,
#top_resemble .p_purchase_card__spec_term,
#top_resemble .p_purchase_card__spec_desc,
#area_template .p_purchase_card__spec_term,
#area_template .p_purchase_card__spec_desc {
  margin-bottom: 10px;
  text-align: left;
}
body#assessment .step .p_purchase_card__spec_term,
body#haisya .step .p_purchase_card__spec_term,
#top_resemble .p_purchase_card__spec_term,
#area_template .p_purchase_card__spec_term {
  width: 80px;
  background: #e5e5e5;
  text-align: center;
  font-size: 16px;
  padding: 4px 5px;
  font-weight: normal;
}
body#assessment .step .p_purchase_card__spec_desc,
body#haisya .step .p_purchase_card__spec_desc,
#top_resemble .p_purchase_card__spec_desc,
#area_template .p_purchase_card__spec_desc {
  width: calc(100% - 100px);
}
@media only screen and (max-width: 1260px) {
  body#assessment .step .top_slider,
  body#haisya .step .top_slider,
  #top_resemble .top_slider,
  #area_template .top_slider {
    padding: 0 50px;
  }
  body#assessment .step .top_slider .slick-prev,
  body#assessment .step .top_slider .slick-next,
  body#haisya .step .top_slider .slick-prev,
  body#haisya .step .top_slider .slick-next,
  #top_resemble .top_slider .slick-prev,
  #top_resemble .top_slider .slick-next,
  #area_template .top_slider .slick-prev,
  #area_template .top_slider .slick-next {
    width: 40px;
    height: 40px;
  }
  body#assessment .step .p_purchase_card__price,
  body#haisya .step .p_purchase_card__price,
  #top_resemble .p_purchase_card__price,
  #area_template .p_purchase_card__price {
    font-size: 15px;
  }
  body#assessment .step .p_purchase_card__spec_term,
  body#haisya .step .p_purchase_card__spec_term,
  #top_resemble .p_purchase_card__spec_term,
  #area_template .p_purchase_card__spec_term {
    font-size: 14px;
  }
  body#assessment .step .p_purchase_card__spec_desc,
  body#haisya .step .p_purchase_card__spec_desc,
  #top_resemble .p_purchase_card__spec_desc,
  #area_template .p_purchase_card__spec_desc {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body#assessment .step .ttl,
  body#haisya .step .ttl,
  #top_resemble .ttl,
  #area_template .ttl {
    font-size: 6.67vw;
    margin-bottom: 30px;
  }
  body#assessment .step .top_slider,
  body#haisya .step .top_slider,
  #top_resemble .top_slider,
  #area_template .top_slider {
    padding: 0;
  }
  body#assessment .step .top_slider .slick-list,
  body#haisya .step .top_slider .slick-list,
  #top_resemble .top_slider .slick-list,
  #area_template .top_slider .slick-list {
    padding: 0 11.2% 0 !important;
  }
  body#assessment .step .top_slider li,
  body#haisya .step .top_slider li,
  #top_resemble .top_slider li,
  #area_template .top_slider li {
    padding: 0 10px;
  }
  body#assessment .step .top_slider li .icon_list > li,
  body#haisya .step .top_slider li .icon_list > li,
  #top_resemble .top_slider li .icon_list > li,
  #area_template .top_slider li .icon_list > li {
    font-size: 14px;
  }
  body#assessment .step .ttl_txt,
  body#haisya .step .ttl_txt,
  #top_resemble .ttl_txt,
  #area_template .ttl_txt {
    font-size: 6.94vw;
  }
  body#assessment .step .ttl_txt > span.en,
  body#haisya .step .ttl_txt > span.en,
  #top_resemble .ttl_txt > span.en,
  #area_template .ttl_txt > span.en {
    font-size: 2.67vw;
  }
}

#top_resemble .purchase,
#area_template .purchase {
  padding: 155px 0 100px;
  background: #0cad2e;
}
#top_resemble .purchase .ttl,
#area_template .purchase .ttl {
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
#top_resemble .purchase .ttl > span,
#area_template .purchase .ttl > span {
  padding-bottom: 25px;
  display: inline-block;
  border-bottom: 8px solid #ffffff;
}
#top_resemble .purchase .ttl ruby,
#area_template .purchase .ttl ruby {
  color: #ffea01;
  font-size: 110%;
}
#top_resemble .purchase .ttl ruby .circle,
#area_template .purchase .ttl ruby .circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ffea01;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #top_resemble .purchase,
  #area_template .purchase {
    padding: 60px 0 60px;
  }
  #top_resemble .purchase .ttl > span,
  #area_template .purchase .ttl > span {
    padding-bottom: 15px;
    border-bottom-width: 5px;
  }
  #top_resemble .purchase .ttl ruby .circle,
  #area_template .purchase .ttl ruby .circle {
    width: 7px;
    height: 7px;
  }
}

body#top_page .mainobi .obi_txt,
#top_resemble .mainobi .obi_txt,
#area_template .mainobi .obi_txt {
  padding: 30px 10px;
  background: #e3f5e9;
  text-align: center;
  color: #00a831;
  position: relative;
}
body#top_page .mainobi .obi_txt::before,
#top_resemble .mainobi .obi_txt::before,
#area_template .mainobi .obi_txt::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 55px 0 55px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  border-color: #e3f5e9 transparent transparent transparent;
}
body#top_page .mainobi .obi_txt p,
body#top_page .mainobi .obi_txt h2,
body#top_page .mainobi .obi_txt h3,
#top_resemble .mainobi .obi_txt p,
#top_resemble .mainobi .obi_txt h2,
#top_resemble .mainobi .obi_txt h3,
#area_template .mainobi .obi_txt p,
#area_template .mainobi .obi_txt h2,
#area_template .mainobi .obi_txt h3 {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.2;
}
body#top_page .mainobi .obi_txt p > span,
body#top_page .mainobi .obi_txt h2 > span,
body#top_page .mainobi .obi_txt h3 > span,
#top_resemble .mainobi .obi_txt p > span,
#top_resemble .mainobi .obi_txt h2 > span,
#top_resemble .mainobi .obi_txt h3 > span,
#area_template .mainobi .obi_txt p > span,
#area_template .mainobi .obi_txt h2 > span,
#area_template .mainobi .obi_txt h3 > span {
  display: inline-block;
  background: #ffea01;
}
body#top_page .mainobi .refund_bg,
#top_resemble .mainobi .refund_bg,
#area_template .mainobi .refund_bg {
  padding: 80px 0 60px;
  background: #0cad2e;
  text-align: center;
  color: #ffffff;
}
body#top_page .mainobi .refund_bg .refund_ttl,
#top_resemble .mainobi .refund_bg .refund_ttl,
#area_template .mainobi .refund_bg .refund_ttl {
  margin-bottom: 25px;
}
body#top_page .mainobi .refund_bg .refund_ttl h3,
#top_resemble .mainobi .refund_bg .refund_ttl h3,
#area_template .mainobi .refund_bg .refund_ttl h3 {
  line-height: 1.2;
  font-size: 46px;
  display: inline-block;
  font-weight: bold;
  padding: 0 180px;
  position: relative;
}
body#top_page .mainobi .refund_bg .refund_ttl h3::before, body#top_page .mainobi .refund_bg .refund_ttl h3::after,
#top_resemble .mainobi .refund_bg .refund_ttl h3::before,
#top_resemble .mainobi .refund_bg .refund_ttl h3::after,
#area_template .mainobi .refund_bg .refund_ttl h3::before,
#area_template .mainobi .refund_bg .refund_ttl h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 175px;
  background: url("../images/refund_l.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
}
body#top_page .mainobi .refund_bg .refund_ttl h3::after,
#top_resemble .mainobi .refund_bg .refund_ttl h3::after,
#area_template .mainobi .refund_bg .refund_ttl h3::after {
  left: auto;
  right: 0;
  background: url("../images/refund_r.svg") no-repeat center center;
  background-size: contain;
}
body#top_page .mainobi .refund_bg .refund_ttl .price,
#top_resemble .mainobi .refund_bg .refund_ttl .price,
#area_template .mainobi .refund_bg .refund_ttl .price {
  color: #ffea01;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 217.4%;
  line-height: 1;
}
body#top_page .mainobi .refund_bg .refund_ttl .m1,
#top_resemble .mainobi .refund_bg .refund_ttl .m1,
#area_template .mainobi .refund_bg .refund_ttl .m1 {
  color: #ffea01;
  font-size: 108.7%;
}
body#top_page .mainobi .refund_bg .refund_ttl .m2,
#top_resemble .mainobi .refund_bg .refund_ttl .m2,
#area_template .mainobi .refund_bg .refund_ttl .m2 {
  font-size: 147.83%;
  color: #ffea01;
}
body#top_page .mainobi .refund_bg .refund_ttl + p,
#top_resemble .mainobi .refund_bg .refund_ttl + p,
#area_template .mainobi .refund_bg .refund_ttl + p {
  font-weight: normal;
  font-size: 14px;
}
@media only screen and (max-width: 1260px) {
  body#top_page .mainobi .refund_bg .refund_ttl h3,
  #top_resemble .mainobi .refund_bg .refund_ttl h3,
  #area_template .mainobi .refund_bg .refund_ttl h3 {
    font-size: 3.9vw;
    padding: 0 13vw;
  }
  body#top_page .mainobi .refund_bg .refund_ttl h3:after,
  body#top_page .mainobi .refund_bg .refund_ttl h3:before,
  #top_resemble .mainobi .refund_bg .refund_ttl h3:after,
  #top_resemble .mainobi .refund_bg .refund_ttl h3:before,
  #area_template .mainobi .refund_bg .refund_ttl h3:after,
  #area_template .mainobi .refund_bg .refund_ttl h3:before {
    width: 12vw;
    height: 12vw;
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .mainobi .obi_txt,
  #top_resemble .mainobi .obi_txt,
  #area_template .mainobi .obi_txt {
    padding: 20px 10px;
  }
  body#top_page .mainobi .obi_txt p,
  body#top_page .mainobi .obi_txt h2,
  body#top_page .mainobi .obi_txt h3,
  #top_resemble .mainobi .obi_txt p,
  #top_resemble .mainobi .obi_txt h2,
  #top_resemble .mainobi .obi_txt h3,
  #area_template .mainobi .obi_txt p,
  #area_template .mainobi .obi_txt h2,
  #area_template .mainobi .obi_txt h3 {
    font-size: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .mainobi .obi_txt::before,
  #top_resemble .mainobi .obi_txt::before,
  #area_template .mainobi .obi_txt::before {
    border-width: 16px 22.5px 0 22.5px;
  }
  body#top_page .mainobi .refund_bg,
  #top_resemble .mainobi .refund_bg,
  #area_template .mainobi .refund_bg {
    padding: 25px 0;
  }
  body#top_page .mainobi .refund_bg .refund_ttl + p,
  #top_resemble .mainobi .refund_bg .refund_ttl + p,
  #area_template .mainobi .refund_bg .refund_ttl + p {
    font-size: 10px;
  }
}

body#top_page .new_example,
#top_resemble .new_example,
#area_template .new_example {
  padding: 90px 0 75px;
  background: #e3f5e9;
}
body#top_page .new_example .ttl > span,
#top_resemble .new_example .ttl > span,
#area_template .new_example .ttl > span {
  display: inline-block;
  background: url("../images/new_ttlbg.svg") no-repeat left top;
  padding: 30px 50px 0;
}
body#top_page .new_example .ttl > span > span,
#top_resemble .new_example .ttl > span > span,
#area_template .new_example .ttl > span > span {
  font-size: 110%;
  color: #00a831;
}
@media only screen and (max-width: 767px) {
  body#top_page .new_example,
  #top_resemble .new_example,
  #area_template .new_example {
    padding: 40px 0 60px;
  }
}

body#top_page .point,
#top_resemble .point,
#area_template .point {
  background: url("../images/point_bg.png") no-repeat center bottom;
  background-size: cover;
  background-color: #f6ff94;
  position: relative;
  padding-bottom: 180px;
}
body#top_page .point::before,
#top_resemble .point::before,
#area_template .point::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  transform: translateY(-100%);
  padding-top: 5.37%;
  background: url("../images/point_bghead.png") no-repeat center top;
  background-size: cover;
}
body#top_page .point .ttl_block,
#top_resemble .point .ttl_block,
#area_template .point .ttl_block {
  font-size: 20px;
  text-align: center;
}
body#top_page .point .ttl_block h2,
#top_resemble .point .ttl_block h2,
#area_template .point .ttl_block h2 {
  margin-bottom: 15px;
}
body#top_page .point .point_items,
#top_resemble .point .point_items,
#area_template .point .point_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body#top_page .point .point_items .item,
#top_resemble .point .point_items .item,
#area_template .point .point_items .item {
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #000000;
  width: 48.34%;
  margin-bottom: 70px;
  background: #fff;
}
body#top_page .point .point_items .item:nth-child(1),
#top_resemble .point .point_items .item:nth-child(1),
#area_template .point .point_items .item:nth-child(1) {
  width: 100%;
}
body#top_page .point .point_items .item .item_head,
#top_resemble .point .point_items .item .item_head,
#area_template .point .point_items .item .item_head {
  padding: 24px 10px 15px;
  background: #0cad2e;
  text-align: center;
  position: relative;
}
body#top_page .point .point_items .item .item_head h3,
#top_resemble .point .point_items .item .item_head h3,
#area_template .point .point_items .item .item_head h3 {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
  display: inline-block;
  padding: 5px 35px;
  background: #ffea01;
  border-radius: 27px;
}
body#top_page .point .point_items .item .item_head h3 > span,
#top_resemble .point .point_items .item .item_head h3 > span,
#area_template .point .point_items .item .item_head h3 > span {
  line-height: 0.7;
  display: inline-block;
  font-size: 161.54%;
  position: relative;
  top: 2px;
}
body#top_page .point .point_items .item .item_head h4,
#top_resemble .point .point_items .item .item_head h4,
#area_template .point .point_items .item .item_head h4 {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
}
body#top_page .point .point_items .item .item_head h4 > span,
#top_resemble .point .point_items .item .item_head h4 > span,
#area_template .point .point_items .item .item_head h4 > span {
  font-size: 68%;
}
body#top_page .point .point_items .item .item_body,
#top_resemble .point .point_items .item .item_body,
#area_template .point .point_items .item .item_body {
  padding: 25px 30px;
}
body#top_page .point .point_items .item .item_body.item_body2col,
#top_resemble .point .point_items .item .item_body.item_body2col,
#area_template .point .point_items .item .item_body.item_body2col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body#top_page .point .point_items .item .item_body.item_body2col > div:nth-child(1),
#top_resemble .point .point_items .item .item_body.item_body2col > div:nth-child(1),
#area_template .point .point_items .item .item_body.item_body2col > div:nth-child(1) {
  width: 48.42%;
}
body#top_page .point .point_items .item .item_body.item_body2col > div:nth-child(1) .color1,
#top_resemble .point .point_items .item .item_body.item_body2col > div:nth-child(1) .color1,
#area_template .point .point_items .item .item_body.item_body2col > div:nth-child(1) .color1 {
  font-size: 20px;
}
body#top_page .point .point_items .item .item_body.item_body2col > div:nth-child(2),
#top_resemble .point .point_items .item .item_body.item_body2col > div:nth-child(2),
#area_template .point .point_items .item .item_body.item_body2col > div:nth-child(2) {
  width: 47.54%;
}
body#top_page .point .point_items .item .item_body .check_list > ul > li,
#top_resemble .point .point_items .item .item_body .check_list > ul > li,
#area_template .point .point_items .item .item_body .check_list > ul > li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 12px;
  font-size: 30px;
}
body#top_page .point .point_items .item .item_body .check_list > ul > li .color1,
#top_resemble .point .point_items .item .item_body .check_list > ul > li .color1,
#area_template .point .point_items .item .item_body .check_list > ul > li .color1 {
  font-size: 113.34%;
}
body#top_page .point .point_items .item .item_body .check_list > ul > li:last-child,
#top_resemble .point .point_items .item .item_body .check_list > ul > li:last-child,
#area_template .point .point_items .item .item_body .check_list > ul > li:last-child {
  margin-bottom: 0;
}
body#top_page .point .point_items .item .item_body .check_list > ul > li::before,
#top_resemble .point .point_items .item .item_body .check_list > ul > li::before,
#area_template .point .point_items .item .item_body .check_list > ul > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 29px;
  height: 20px;
  background: url("../images/check.svg") no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  body#top_page .point,
  #top_resemble .point,
  #area_template .point {
    background: url("../images/point_bg_sp.png") no-repeat center bottom;
    background-size: cover;
    background-color: #f6ff94;
    padding-top: 20px;
  }
  body#top_page .point .ttl_block,
  #top_resemble .point .ttl_block,
  #area_template .point .ttl_block {
    font-size: 15px;
  }
  body#top_page .point .point_items,
  #top_resemble .point .point_items,
  #area_template .point .point_items {
    display: block;
  }
  body#top_page .point .point_items .item .item_head h3,
  #top_resemble .point .point_items .item .item_head h3,
  #area_template .point .point_items .item .item_head h3 {
    font-size: 18px;
  }
  body#top_page .point .point_items .item .item_head h4,
  #top_resemble .point .point_items .item .item_head h4,
  #area_template .point .point_items .item .item_head h4 {
    font-size: 7.4vw;
  }
  body#top_page .point .point_items .item .item_body.item_body2col,
  #top_resemble .point .point_items .item .item_body.item_body2col,
  #area_template .point .point_items .item .item_body.item_body2col {
    display: block;
  }
  body#top_page .point .point_items .item .item_body.item_body2col > div:nth-child(1),
  #top_resemble .point .point_items .item .item_body.item_body2col > div:nth-child(1),
  #area_template .point .point_items .item .item_body.item_body2col > div:nth-child(1) {
    width: auto;
    margin-bottom: 20px;
  }
  body#top_page .point .point_items .item .item_body.item_body2col > div:nth-child(2),
  #top_resemble .point .point_items .item .item_body.item_body2col > div:nth-child(2),
  #area_template .point .point_items .item .item_body.item_body2col > div:nth-child(2) {
    width: auto;
  }
  body#top_page .point .point_items .item,
  #top_resemble .point .point_items .item,
  #area_template .point .point_items .item {
    width: auto;
    margin-bottom: 8%;
  }
  body#top_page .point .point_items .item .item_body .check_list,
  #top_resemble .point .point_items .item .item_body .check_list,
  #area_template .point .point_items .item .item_body .check_list {
    display: flex;
    justify-content: center;
  }
  body#top_page .point .point_items .item .item_body .check_list > ul > li,
  #top_resemble .point .point_items .item .item_body .check_list > ul > li,
  #area_template .point .point_items .item .item_body .check_list > ul > li {
    font-size: 4vw;
  }
}
@media screen and (max-width: 460px) {
  body#top_page .point .point_items .item .item_body,
  #top_resemble .point .point_items .item .item_body,
  #area_template .point .point_items .item .item_body {
    padding: 20px 15px;
  }
  body#top_page .point .point_items .item .item_body .check_list > ul > li,
  #top_resemble .point .point_items .item .item_body .check_list > ul > li,
  #area_template .point .point_items .item .item_body .check_list > ul > li {
    padding-left: 30px;
  }
  body#top_page .point .point_items .item .item_body .check_list > ul > li::before,
  #top_resemble .point .point_items .item .item_body .check_list > ul > li::before,
  #area_template .point .point_items .item .item_body .check_list > ul > li::before {
    top: 7px;
    width: 23px;
    height: 15px;
  }
}

body#top_page .merit,
#top_resemble .merit,
#area_template .merit {
  padding-bottom: 30px;
  position: relative;
}
body#top_page .merit .merit_ttl,
#top_resemble .merit .merit_ttl,
#area_template .merit .merit_ttl {
  margin-top: -200px;
}
body#top_page .merit::before,
#top_resemble .merit::before,
#area_template .merit::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  transform: translateY(100%);
  border-style: solid;
  border-width: 5.73vw 50vw 0 50vw;
  border-color: #ffffff transparent transparent transparent;
}
body#top_page .merit .merit_table + h3,
body#top_page .merit .merit_table + p,
#top_resemble .merit .merit_table + h3,
#top_resemble .merit .merit_table + p,
#area_template .merit .merit_table + h3,
#area_template .merit .merit_table + p {
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body#top_page .merit #merit_table,
  #top_resemble .merit #merit_table,
  #area_template .merit #merit_table {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    background: none !important;
  }
  body#top_page .merit #merit_table img,
  #top_resemble .merit #merit_table img,
  #area_template .merit #merit_table img {
    min-width: 900px;
  }
  body#top_page .merit .merit_table + h3,
  body#top_page .merit .merit_table + p,
  #top_resemble .merit .merit_table + h3,
  #top_resemble .merit .merit_table + p,
  #area_template .merit .merit_table + h3,
  #area_template .merit .merit_table + p {
    font-size: 15px;
    text-align: left;
  }
  body#top_page .merit .merit_ttl,
  #top_resemble .merit .merit_ttl,
  #area_template .merit .merit_ttl {
    margin: -29.5vw -15px 0;
  }
}

body#top_page .top_popular,
#top_resemble .top_popular,
#area_template .top_popular {
  padding: 100px 0 75px;
  background-size: auto auto;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
body#top_page .top_popular h2.popular_ttl,
#top_resemble .top_popular h2.popular_ttl,
#area_template .top_popular h2.popular_ttl {
  padding: 10px 15px;
  background: #00a831;
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
body#top_page .top_popular .popularlist,
#top_resemble .top_popular .popularlist,
#area_template .top_popular .popularlist {
  display: flex;
  flex-wrap: wrap;
  gap: 1.0375%;
  text-align: center;
}
body#top_page .top_popular .popularlist > li,
#top_resemble .top_popular .popularlist > li,
#area_template .top_popular .popularlist > li {
  width: 19.17%;
  margin-bottom: 1.0375%;
}
body#top_page .top_popular .popularlist > li a,
#top_resemble .top_popular .popularlist > li a,
#area_template .top_popular .popularlist > li a {
  padding: 10px 10px;
  display: block;
  background: #fff;
  border: 1px solid #000000;
  border-radius: 4px;
}
body#top_page .top_popular h2.popular_sub_ttl,
#top_resemble .top_popular h2.popular_sub_ttl,
#area_template .top_popular h2.popular_sub_ttl {
  font-size: 42px;
  text-align: center;
  font-weight: bold;
}
body#top_page .top_popular h2.popular_sub_ttl > span,
#top_resemble .top_popular h2.popular_sub_ttl > span,
#area_template .top_popular h2.popular_sub_ttl > span {
  padding-bottom: 10px;
  border-bottom: 8px solid #0cad2e;
  display: inline-block;
}
body#top_page .top_popular .imgblock,
#top_resemble .top_popular .imgblock,
#area_template .top_popular .imgblock {
  display: flex;
  justify-content: space-between;
}
body#top_page .top_popular .imgblock > li,
#top_resemble .top_popular .imgblock > li,
#area_template .top_popular .imgblock > li {
  width: 31.67%;
  font-size: 30px;
  text-align: center;
}
body#top_page .top_popular .imgblock > li h3,
body#top_page .top_popular .imgblock > li h4,
#top_resemble .top_popular .imgblock > li h3,
#top_resemble .top_popular .imgblock > li h4,
#area_template .top_popular .imgblock > li h3,
#area_template .top_popular .imgblock > li h4 {
  font-weight: bold;
}
body#top_page .top_popular .imgblock > li .img,
#top_resemble .top_popular .imgblock > li .img,
#area_template .top_popular .imgblock > li .img {
  margin-bottom: 15px;
  border: 2px solid #000000;
}
@media only screen and (max-width: 767px) {
  body#top_page .top_popular,
  #top_resemble .top_popular,
  #area_template .top_popular {
    padding: 50px 0;
  }
  body#top_page .top_popular h2.popular_ttl,
  #top_resemble .top_popular h2.popular_ttl,
  #area_template .top_popular h2.popular_ttl {
    font-size: 21px;
  }
  body#top_page .top_popular .popularlist,
  #top_resemble .top_popular .popularlist,
  #area_template .top_popular .popularlist {
    justify-content: space-between;
  }
  body#top_page .top_popular .popularlist > li,
  #top_resemble .top_popular .popularlist > li,
  #area_template .top_popular .popularlist > li {
    width: 48.56%;
    margin-bottom: 2.88%;
  }
  body#top_page .top_popular h2.popular_sub_ttl,
  #top_resemble .top_popular h2.popular_sub_ttl,
  #area_template .top_popular h2.popular_sub_ttl {
    font-size: 21px;
  }
  body#top_page .top_popular h2.popular_sub_ttl > span,
  #top_resemble .top_popular h2.popular_sub_ttl > span,
  #area_template .top_popular h2.popular_sub_ttl > span {
    border-bottom-width: 5px;
  }
  body#top_page .top_popular .imgblock,
  #top_resemble .top_popular .imgblock,
  #area_template .top_popular .imgblock {
    gap: 2.88%;
    flex-wrap: wrap;
    justify-content: center;
  }
  body#top_page .top_popular .imgblock > li,
  #top_resemble .top_popular .imgblock > li,
  #area_template .top_popular .imgblock > li {
    width: 48.56%;
    font-size: 18px;
  }
  body#top_page .top_popular .imgblock > li:not(:nth-child(-n+2)),
  #top_resemble .top_popular .imgblock > li:not(:nth-child(-n+2)),
  #area_template .top_popular .imgblock > li:not(:nth-child(-n+2)) {
    margin-top: 18px;
  }
  body#top_page .top_popular .imgblock > li .img,
  #top_resemble .top_popular .imgblock > li .img,
  #area_template .top_popular .imgblock > li .img {
    margin-bottom: 7px;
  }
}

#top_resemble .voice,
#area_template .voice {
  padding: 100px 0 70px;
  background: #ffffdd;
}
#top_resemble .voice #voice_slider,
#area_template .voice #voice_slider {
  padding: 0 80px;
  display: none;
}
#top_resemble .voice #voice_slider .slick-track,
#area_template .voice #voice_slider .slick-track {
  display: flex;
}
#top_resemble .voice #voice_slider .slick-slide,
#area_template .voice #voice_slider .slick-slide {
  height: auto !important;
}
#top_resemble .voice #voice_slider .slick-slide > div,
#top_resemble .voice #voice_slider .slick-slide li > div,
#top_resemble .voice #voice_slider .slick-slide li,
#top_resemble .voice #voice_slider .slick-slide a,
#area_template .voice #voice_slider .slick-slide > div,
#area_template .voice #voice_slider .slick-slide li > div,
#area_template .voice #voice_slider .slick-slide li,
#area_template .voice #voice_slider .slick-slide a {
  height: 100%;
}
#top_resemble .voice #voice_slider.slick-initialized,
#area_template .voice #voice_slider.slick-initialized {
  display: block;
}
#top_resemble .voice #voice_slider .slick-prev,
#top_resemble .voice #voice_slider .slick-next,
#area_template .voice #voice_slider .slick-prev,
#area_template .voice #voice_slider .slick-next {
  width: 60px;
  height: 60px;
  background: url("../images/next.svg") no-repeat center center;
  background-size: contain;
  transition: opacity 0.4s ease-in-out;
  z-index: 99;
}
#top_resemble .voice #voice_slider .slick-prev:hover,
#top_resemble .voice #voice_slider .slick-next:hover,
#area_template .voice #voice_slider .slick-prev:hover,
#area_template .voice #voice_slider .slick-next:hover {
  opacity: 0.7;
}
#top_resemble .voice #voice_slider .slick-prev::before,
#top_resemble .voice #voice_slider .slick-next::before,
#area_template .voice #voice_slider .slick-prev::before,
#area_template .voice #voice_slider .slick-next::before {
  content: none;
}
#top_resemble .voice #voice_slider .slick-prev,
#area_template .voice #voice_slider .slick-prev {
  left: 20px;
  background: url("../images/prev.svg") no-repeat center center;
  background-size: contain;
}
#top_resemble .voice #voice_slider .slick-next,
#area_template .voice #voice_slider .slick-next {
  right: 20px;
}
#top_resemble .voice #voice_slider li,
#area_template .voice #voice_slider li {
  padding: 15px 25px;
}
#top_resemble .voice #voice_slider li > div,
#top_resemble .voice #voice_slider li a,
#area_template .voice #voice_slider li > div,
#area_template .voice #voice_slider li a {
  pointer-events: none;
  display: block;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #000000;
  background: #fff;
  padding: 25px 30px;
}
#top_resemble .voice #voice_slider li .slider_head,
#area_template .voice #voice_slider li .slider_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #dddddd;
  line-height: 1.3;
}
#top_resemble .voice #voice_slider li .slider_head dl,
#area_template .voice #voice_slider li .slider_head dl {
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
#top_resemble .voice #voice_slider li .slider_head dl dt,
#area_template .voice #voice_slider li .slider_head dl dt {
  font-weight: bold;
  width: calc(100% - 100px);
  padding-right: 15px;
}
#top_resemble .voice #voice_slider li .slider_head dl dd,
#area_template .voice #voice_slider li .slider_head dl dd {
  font-weight: normal;
  background: #e5e5e5;
  line-height: 1.1;
  width: 100px;
  text-align: center;
  padding: 5px 2px;
}
#top_resemble .voice #voice_slider li .slider_head h3,
#area_template .voice #voice_slider li .slider_head h3 {
  font-size: 30px;
  font-weight: bold;
  color: #ffa31e;
}
#top_resemble .voice #voice_slider li .slider_head > div:nth-child(1),
#area_template .voice #voice_slider li .slider_head > div:nth-child(1) {
  width: 130px;
}
#top_resemble .voice #voice_slider li .slider_head > div:nth-child(2),
#area_template .voice #voice_slider li .slider_head > div:nth-child(2) {
  width: calc(100% - 155px);
}
#top_resemble .voice #voice_slider li .slider_head .icon,
#area_template .voice #voice_slider li .slider_head .icon {
  border-radius: 50%;
  background: #ffffdd;
}
#top_resemble .voice #voice_slider li .slider_head .icon img,
#area_template .voice #voice_slider li .slider_head .icon img {
  width: 100%;
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
}
#top_resemble .voice #voice_slider li .slider_body,
#area_template .voice #voice_slider li .slider_body {
  font-weight: normal;
}
@media screen and (max-width: 1650px) {
  #top_resemble .voice #voice_slider li .slider_head dl,
  #area_template .voice #voice_slider li .slider_head dl {
    font-size: 18px;
  }
  #top_resemble .voice #voice_slider li .slider_head h3,
  #area_template .voice #voice_slider li .slider_head h3 {
    font-size: 23px;
  }
  #top_resemble .voice #voice_slider li .slider_head > div:nth-child(1),
  #area_template .voice #voice_slider li .slider_head > div:nth-child(1) {
    width: 20%;
  }
  #top_resemble .voice #voice_slider li .slider_head > div:nth-child(2),
  #area_template .voice #voice_slider li .slider_head > div:nth-child(2) {
    width: 75%;
  }
}
@media only screen and (max-width: 1260px) {
  #top_resemble .voice #voice_slider,
  #area_template .voice #voice_slider {
    padding: 0 50px;
  }
  #top_resemble .voice #voice_slider .slick-prev,
  #top_resemble .voice #voice_slider .slick-next,
  #area_template .voice #voice_slider .slick-prev,
  #area_template .voice #voice_slider .slick-next {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble .voice,
  #area_template .voice {
    padding: 45px 0 60px;
  }
  #top_resemble .voice #voice_slider,
  #area_template .voice #voice_slider {
    padding: 0;
  }
  #top_resemble .voice #voice_slider .slick-list,
  #area_template .voice #voice_slider .slick-list {
    padding: 0 11.2% 0 !important;
  }
  #top_resemble .voice #voice_slider li,
  #area_template .voice #voice_slider li {
    padding: 0 10px;
  }
  #top_resemble .voice #voice_slider li > div,
  #top_resemble .voice #voice_slider li a,
  #area_template .voice #voice_slider li > div,
  #area_template .voice #voice_slider li a {
    padding: 15px 10px;
  }
  #top_resemble .voice #voice_slider li .slider_head,
  #area_template .voice #voice_slider li .slider_head {
    display: block;
  }
  #top_resemble .voice #voice_slider li .slider_head > div:nth-child(1),
  #area_template .voice #voice_slider li .slider_head > div:nth-child(1) {
    width: auto;
    margin-bottom: 15px;
  }
  #top_resemble .voice #voice_slider li .slider_head > div:nth-child(2),
  #area_template .voice #voice_slider li .slider_head > div:nth-child(2) {
    width: auto;
  }
  #top_resemble .voice #voice_slider li .slider_head .icon,
  #area_template .voice #voice_slider li .slider_head .icon {
    max-width: 65px;
    margin: 0 auto;
  }
}

body#assessment .step,
body#haisya .step,
body#yard .step,
body#top_page .step,
body#purchase .step,
body#network .step,
#top_resemble .step,
#area_template .step {
  padding: 60px 0 77px;
  background: #0cad2e;
}
body#assessment .step > .under_wrap,
body#haisya .step > .under_wrap,
body#yard .step > .under_wrap,
body#top_page .step > .under_wrap,
body#purchase .step > .under_wrap,
body#network .step > .under_wrap,
#top_resemble .step > .under_wrap,
#area_template .step > .under_wrap {
  max-width: 1720px;
}
body#assessment .step .sub_txt,
body#haisya .step .sub_txt,
body#yard .step .sub_txt,
body#top_page .step .sub_txt,
body#purchase .step .sub_txt,
body#network .step .sub_txt,
#top_resemble .step .sub_txt,
#area_template .step .sub_txt {
  color: #ffea01;
  font-size: 26px;
  text-align: center;
}
body#assessment .step .sub_txt > span,
body#haisya .step .sub_txt > span,
body#yard .step .sub_txt > span,
body#top_page .step .sub_txt > span,
body#purchase .step .sub_txt > span,
body#network .step .sub_txt > span,
#top_resemble .step .sub_txt > span,
#area_template .step .sub_txt > span {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  line-height: 1.1;
}
body#assessment .step .sub_txt > span::before, body#assessment .step .sub_txt > span::after,
body#haisya .step .sub_txt > span::before,
body#haisya .step .sub_txt > span::after,
body#yard .step .sub_txt > span::before,
body#yard .step .sub_txt > span::after,
body#top_page .step .sub_txt > span::before,
body#top_page .step .sub_txt > span::after,
body#purchase .step .sub_txt > span::before,
body#purchase .step .sub_txt > span::after,
body#network .step .sub_txt > span::before,
body#network .step .sub_txt > span::after,
#top_resemble .step .sub_txt > span::before,
#top_resemble .step .sub_txt > span::after,
#area_template .step .sub_txt > span::before,
#area_template .step .sub_txt > span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: rotate(-25deg);
  background: #ffea01;
}
body#assessment .step .sub_txt > span::after,
body#haisya .step .sub_txt > span::after,
body#yard .step .sub_txt > span::after,
body#top_page .step .sub_txt > span::after,
body#purchase .step .sub_txt > span::after,
body#network .step .sub_txt > span::after,
#top_resemble .step .sub_txt > span::after,
#area_template .step .sub_txt > span::after {
  left: auto;
  right: 0;
  transform: rotate(25deg);
}
body#assessment .step .step_items,
body#haisya .step .step_items,
body#yard .step .step_items,
body#top_page .step .step_items,
body#purchase .step .step_items,
body#network .step .step_items,
#top_resemble .step .step_items,
#area_template .step .step_items {
  display: flex;
  justify-content: space-between;
  position: relative;
}
body#assessment .step .step_items::before,
body#haisya .step .step_items::before,
body#yard .step .step_items::before,
body#top_page .step .step_items::before,
body#purchase .step .step_items::before,
body#network .step .step_items::before,
#top_resemble .step .step_items::before,
#area_template .step .step_items::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}
body#assessment .step .step_items > .item,
body#haisya .step .step_items > .item,
body#yard .step .step_items > .item,
body#top_page .step .step_items > .item,
body#purchase .step .step_items > .item,
body#network .step .step_items > .item,
#top_resemble .step .step_items > .item,
#area_template .step .step_items > .item {
  border: 2px solid #000000;
  background: #ffffff;
  position: relative;
  z-index: 5;
  width: 18.61%;
}
body#assessment .step .step_items > .item .item_head,
body#haisya .step .step_items > .item .item_head,
body#yard .step .step_items > .item .item_head,
body#top_page .step .step_items > .item .item_head,
body#purchase .step .step_items > .item .item_head,
body#network .step .step_items > .item .item_head,
#top_resemble .step .step_items > .item .item_head,
#area_template .step .step_items > .item .item_head {
  background: #ffea01;
  padding: 10px 10px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
body#assessment .step .step_items > .item .item_body,
body#haisya .step .step_items > .item .item_body,
body#yard .step .step_items > .item .item_body,
body#top_page .step .step_items > .item .item_body,
body#purchase .step .step_items > .item .item_body,
body#network .step .step_items > .item .item_body,
#top_resemble .step .step_items > .item .item_body,
#area_template .step .step_items > .item .item_body {
  padding: 30px 10px;
  text-align: center;
}
body#assessment .step .step_items > .item .item_body .img,
body#haisya .step .step_items > .item .item_body .img,
body#yard .step .step_items > .item .item_body .img,
body#top_page .step .step_items > .item .item_body .img,
body#purchase .step .step_items > .item .item_body .img,
body#network .step .step_items > .item .item_body .img,
#top_resemble .step .step_items > .item .item_body .img,
#area_template .step .step_items > .item .item_body .img {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
body#assessment .step .step_items > .item .item_body h3,
body#haisya .step .step_items > .item .item_body h3,
body#yard .step .step_items > .item .item_body h3,
body#top_page .step .step_items > .item .item_body h3,
body#purchase .step .step_items > .item .item_body h3,
body#network .step .step_items > .item .item_body h3,
#top_resemble .step .step_items > .item .item_body h3,
#area_template .step .step_items > .item .item_body h3 {
  color: #00a831;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
body#assessment .step .ttl,
body#haisya .step .ttl,
body#yard .step .ttl,
body#top_page .step .ttl,
body#purchase .step .ttl,
body#network .step .ttl,
#top_resemble .step .ttl,
#area_template .step .ttl {
  color: #fff;
}
@media screen and (max-width: 1500px) {
  body#assessment .step .step_items > .item .item_body,
  body#haisya .step .step_items > .item .item_body,
  body#yard .step .step_items > .item .item_body,
  body#top_page .step .step_items > .item .item_body,
  body#purchase .step .step_items > .item .item_body,
  body#network .step .step_items > .item .item_body,
  #top_resemble .step .step_items > .item .item_body,
  #area_template .step .step_items > .item .item_body {
    font-size: 1.1vw;
  }
}
@media only screen and (max-width: 1260px) {
  body#assessment .step .step_items > .item .item_body,
  body#haisya .step .step_items > .item .item_body,
  body#yard .step .step_items > .item .item_body,
  body#top_page .step .step_items > .item .item_body,
  body#purchase .step .step_items > .item .item_body,
  body#network .step .step_items > .item .item_body,
  #top_resemble .step .step_items > .item .item_body,
  #area_template .step .step_items > .item .item_body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 960px) {
  body#assessment .step .step_items,
  body#haisya .step .step_items,
  body#yard .step .step_items,
  body#top_page .step .step_items,
  body#purchase .step .step_items,
  body#network .step .step_items,
  #top_resemble .step .step_items,
  #area_template .step .step_items {
    flex-wrap: wrap;
  }
  body#assessment .step .step_items > .item,
  body#haisya .step .step_items > .item,
  body#yard .step .step_items > .item,
  body#top_page .step .step_items > .item,
  body#purchase .step .step_items > .item,
  body#network .step .step_items > .item,
  #top_resemble .step .step_items > .item,
  #area_template .step .step_items > .item {
    width: 47.83%;
  }
  body#assessment .step .step_items > .item:not(:nth-child(-n+2)),
  body#haisya .step .step_items > .item:not(:nth-child(-n+2)),
  body#yard .step .step_items > .item:not(:nth-child(-n+2)),
  body#top_page .step .step_items > .item:not(:nth-child(-n+2)),
  body#purchase .step .step_items > .item:not(:nth-child(-n+2)),
  body#network .step .step_items > .item:not(:nth-child(-n+2)),
  #top_resemble .step .step_items > .item:not(:nth-child(-n+2)),
  #area_template .step .step_items > .item:not(:nth-child(-n+2)) {
    margin-top: 4.34%;
  }
  body#assessment .step .step_items::before,
  body#haisya .step .step_items::before,
  body#yard .step .step_items::before,
  body#top_page .step .step_items::before,
  body#purchase .step .step_items::before,
  body#network .step .step_items::before,
  #top_resemble .step .step_items::before,
  #area_template .step .step_items::before {
    content: none;
  }
  body#assessment .step .step_items > .item:nth-child(odd)::before,
  body#haisya .step .step_items > .item:nth-child(odd)::before,
  body#yard .step .step_items > .item:nth-child(odd)::before,
  body#top_page .step .step_items > .item:nth-child(odd)::before,
  body#purchase .step .step_items > .item:nth-child(odd)::before,
  body#network .step .step_items > .item:nth-child(odd)::before,
  #top_resemble .step .step_items > .item:nth-child(odd)::before,
  #area_template .step .step_items > .item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
  }
  body#assessment .step .step_items > .item:nth-child(3)::before,
  body#haisya .step .step_items > .item:nth-child(3)::before,
  body#yard .step .step_items > .item:nth-child(3)::before,
  body#top_page .step .step_items > .item:nth-child(3)::before,
  body#purchase .step .step_items > .item:nth-child(3)::before,
  body#network .step .step_items > .item:nth-child(3)::before,
  #top_resemble .step .step_items > .item:nth-child(3)::before,
  #area_template .step .step_items > .item:nth-child(3)::before {
    left: -10%;
    width: 110vw;
  }
  body#assessment .step .step_items > .item:nth-child(5)::before,
  body#haisya .step .step_items > .item:nth-child(5)::before,
  body#yard .step .step_items > .item:nth-child(5)::before,
  body#top_page .step .step_items > .item:nth-child(5)::before,
  body#purchase .step .step_items > .item:nth-child(5)::before,
  body#network .step .step_items > .item:nth-child(5)::before,
  #top_resemble .step .step_items > .item:nth-child(5)::before,
  #area_template .step .step_items > .item:nth-child(5)::before {
    left: -30%;
    width: 30vw;
  }
  body#assessment .step .step_items > .item .item_head,
  body#haisya .step .step_items > .item .item_head,
  body#yard .step .step_items > .item .item_head,
  body#top_page .step .step_items > .item .item_head,
  body#purchase .step .step_items > .item .item_head,
  body#network .step .step_items > .item .item_head,
  #top_resemble .step .step_items > .item .item_head,
  #area_template .step .step_items > .item .item_head {
    font-size: 20px;
  }
  body#assessment .step .step_items > .item .item_body h3,
  body#haisya .step .step_items > .item .item_body h3,
  body#yard .step .step_items > .item .item_body h3,
  body#top_page .step .step_items > .item .item_body h3,
  body#purchase .step .step_items > .item .item_body h3,
  body#network .step .step_items > .item .item_body h3,
  #top_resemble .step .step_items > .item .item_body h3,
  #area_template .step .step_items > .item .item_body h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  body#assessment .step,
  body#haisya .step,
  body#yard .step,
  body#top_page .step,
  body#purchase .step,
  body#network .step,
  #top_resemble .step,
  #area_template .step {
    padding: 50px 0 60px;
  }
  body#assessment .step .sub_txt,
  body#haisya .step .sub_txt,
  body#yard .step .sub_txt,
  body#top_page .step .sub_txt,
  body#purchase .step .sub_txt,
  body#network .step .sub_txt,
  #top_resemble .step .sub_txt,
  #area_template .step .sub_txt {
    font-size: 19px;
  }
  body#assessment .step .step_items > .item .item_body,
  body#haisya .step .step_items > .item .item_body,
  body#yard .step .step_items > .item .item_body,
  body#top_page .step .step_items > .item .item_body,
  body#purchase .step .step_items > .item .item_body,
  body#network .step .step_items > .item .item_body,
  #top_resemble .step .step_items > .item .item_body,
  #area_template .step .step_items > .item .item_body {
    padding: 20px 15px;
  }
  body#assessment .step .step_items > .item .item_body .img,
  body#haisya .step .step_items > .item .item_body .img,
  body#yard .step .step_items > .item .item_body .img,
  body#top_page .step .step_items > .item .item_body .img,
  body#purchase .step .step_items > .item .item_body .img,
  body#network .step .step_items > .item .item_body .img,
  #top_resemble .step .step_items > .item .item_body .img,
  #area_template .step .step_items > .item .item_body .img {
    height: 60px;
  }
  body#assessment .step .step_items > .item .item_body .img picture,
  body#haisya .step .step_items > .item .item_body .img picture,
  body#yard .step .step_items > .item .item_body .img picture,
  body#top_page .step .step_items > .item .item_body .img picture,
  body#purchase .step .step_items > .item .item_body .img picture,
  body#network .step .step_items > .item .item_body .img picture,
  #top_resemble .step .step_items > .item .item_body .img picture,
  #area_template .step .step_items > .item .item_body .img picture {
    height: 60px;
  }
  body#assessment .step .step_items > .item .item_body .img img,
  body#haisya .step .step_items > .item .item_body .img img,
  body#yard .step .step_items > .item .item_body .img img,
  body#top_page .step .step_items > .item .item_body .img img,
  body#purchase .step .step_items > .item .item_body .img img,
  body#network .step .step_items > .item .item_body .img img,
  #top_resemble .step .step_items > .item .item_body .img img,
  #area_template .step .step_items > .item .item_body .img img {
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
  body#assessment .step .step_items > .item .item_body h3 + p,
  body#haisya .step .step_items > .item .item_body h3 + p,
  body#yard .step .step_items > .item .item_body h3 + p,
  body#top_page .step .step_items > .item .item_body h3 + p,
  body#purchase .step .step_items > .item .item_body h3 + p,
  body#network .step .step_items > .item .item_body h3 + p,
  #top_resemble .step .step_items > .item .item_body h3 + p,
  #area_template .step .step_items > .item .item_body h3 + p {
    text-align: left;
  }
}

#haisya .question .ttl,
body#top_page .question .ttl,
#top_resemble .question .ttl,
#area_template .question .ttl {
  padding-top: 60px;
  background: url("../images/qa_icon.svg") no-repeat center top;
}
#haisya .question h3.ttl_sub,
body#top_page .question h3.ttl_sub,
#top_resemble .question h3.ttl_sub,
#area_template .question h3.ttl_sub {
  font-size: 36px;
  font-weight: bold;
  border-bottom: 4px solid #0cad2e;
  padding-bottom: 6px;
  margin-bottom: 30px;
}
#haisya .question .question_block > div,
body#top_page .question .question_block > div,
#top_resemble .question .question_block > div,
#area_template .question .question_block > div {
  padding: 40px 30px;
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
#haisya .question .question_block > div:last-child,
body#top_page .question .question_block > div:last-child,
#top_resemble .question .question_block > div:last-child,
#area_template .question .question_block > div:last-child {
  margin-bottom: 0;
}
#haisya .question .question_block > div dl dt,
body#top_page .question .question_block > div dl dt,
#top_resemble .question .question_block > div dl dt,
#area_template .question .question_block > div dl dt {
  position: relative;
  padding-left: 85px;
  font-size: 28px;
  color: #ffa31e;
  margin-bottom: 50px;
}
#haisya .question .question_block > div dl dt::before,
body#top_page .question .question_block > div dl dt::before,
#top_resemble .question .question_block > div dl dt::before,
#area_template .question .question_block > div dl dt::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: url("../images/qa_icon1.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -13px;
  left: 0;
}
#haisya .question .question_block > div dl dd,
body#top_page .question .question_block > div dl dd,
#top_resemble .question .question_block > div dl dd,
#area_template .question .question_block > div dl dd {
  position: relative;
  padding-left: 85px;
}
#haisya .question .question_block > div dl dd::before,
body#top_page .question .question_block > div dl dd::before,
#top_resemble .question .question_block > div dl dd::before,
#area_template .question .question_block > div dl dd::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  background: url("../images/qa_icon2.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -18px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  #haisya .question .ttl,
  body#top_page .question .ttl,
  #top_resemble .question .ttl,
  #area_template .question .ttl {
    background-size: 40px;
    padding-top: 35px;
  }
  #haisya .question h3.ttl_sub,
  body#top_page .question h3.ttl_sub,
  #top_resemble .question h3.ttl_sub,
  #area_template .question h3.ttl_sub {
    font-size: 26px;
  }
  #haisya .question .question_block > div,
  body#top_page .question .question_block > div,
  #top_resemble .question .question_block > div,
  #area_template .question .question_block > div {
    padding: 20px 20px;
  }
  #haisya .question .question_block > div dl dt::before,
  #haisya .question .question_block > div dl dd::before,
  body#top_page .question .question_block > div dl dt::before,
  body#top_page .question .question_block > div dl dd::before,
  #top_resemble .question .question_block > div dl dt::before,
  #top_resemble .question .question_block > div dl dd::before,
  #area_template .question .question_block > div dl dt::before,
  #area_template .question .question_block > div dl dd::before {
    width: 35px;
    height: 35px;
    top: 0px;
  }
  #haisya .question .question_block > div dl dt,
  #haisya .question .question_block > div dl dd,
  body#top_page .question .question_block > div dl dt,
  body#top_page .question .question_block > div dl dd,
  #top_resemble .question .question_block > div dl dt,
  #top_resemble .question .question_block > div dl dd,
  #area_template .question .question_block > div dl dt,
  #area_template .question .question_block > div dl dd {
    padding-left: 45px;
  }
  #haisya .question .question_block > div dl dt,
  body#top_page .question .question_block > div dl dt,
  #top_resemble .question .question_block > div dl dt,
  #area_template .question .question_block > div dl dt {
    font-size: 19px;
    margin-bottom: 30px;
  }
}

body#top_page .info,
#top_resemble .info,
#area_template .info {
  background: #f9f9f9;
  padding: 100px 0 50px;
}
body#top_page .info > .under_wrap,
#top_resemble .info > .under_wrap,
#area_template .info > .under_wrap {
  max-width: 1720px;
}
body#top_page .info .info_block,
#top_resemble .info .info_block,
#area_template .info .info_block {
  display: flex;
  justify-content: space-between;
}
body#top_page .info .info_block > article,
#top_resemble .info .info_block > article,
#area_template .info .info_block > article {
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  width: 23.26%;
  border: 2px solid #000000;
  background: #ffffff;
}
body#top_page .info .info_block > article .article_body,
#top_resemble .info .info_block > article .article_body,
#area_template .info .info_block > article .article_body {
  padding: 25px 15px;
}
body#top_page .info .info_block > article h3,
#top_resemble .info .info_block > article h3,
#area_template .info .info_block > article h3 {
  color: #00a831;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  margin-bottom: 19px;
}
@media only screen and (max-width: 960px) {
  body#top_page .info .info_block,
  #top_resemble .info .info_block,
  #area_template .info .info_block {
    font-size: 15px;
  }
  body#top_page .info .info_block > article h3,
  #top_resemble .info .info_block > article h3,
  #area_template .info .info_block > article h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .info,
  #top_resemble .info,
  #area_template .info {
    padding: 47px 0 25px;
  }
  body#top_page .info .info_block,
  #top_resemble .info .info_block,
  #area_template .info .info_block {
    flex-wrap: wrap;
  }
  body#top_page .info .info_block > article,
  #top_resemble .info .info_block > article,
  #area_template .info .info_block > article {
    width: 47.83%;
  }
  body#top_page .info .info_block > article:not(:nth-child(-n+2)),
  #top_resemble .info .info_block > article:not(:nth-child(-n+2)),
  #area_template .info .info_block > article:not(:nth-child(-n+2)) {
    margin-top: 4.34%;
  }
  body#top_page .info .info_block > article .article_body,
  #top_resemble .info .info_block > article .article_body,
  #area_template .info .info_block > article .article_body {
    padding: 18px 10px;
  }
}

body#center .column,
body#top_page .column,
body#purchase .column,
body#network .column,
#top_resemble .column,
#area_template .column {
  padding: 55px 0 100px;
  background: #f9f9f9;
}
body#center .column > .under_wrap,
body#top_page .column > .under_wrap,
body#purchase .column > .under_wrap,
body#network .column > .under_wrap,
#top_resemble .column > .under_wrap,
#area_template .column > .under_wrap {
  max-width: 1720px;
}
body#center .column .column_blocks,
body#top_page .column .column_blocks,
body#purchase .column .column_blocks,
body#network .column .column_blocks,
#top_resemble .column .column_blocks,
#area_template .column .column_blocks {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body#center .column .column_blocks > article,
body#top_page .column .column_blocks > article,
body#purchase .column .column_blocks > article,
body#network .column .column_blocks > article,
#top_resemble .column .column_blocks > article,
#area_template .column .column_blocks > article {
  width: 48.84%;
}
body#center .column .column_blocks > article:not(:nth-child(-n+2)),
body#top_page .column .column_blocks > article:not(:nth-child(-n+2)),
body#purchase .column .column_blocks > article:not(:nth-child(-n+2)),
body#network .column .column_blocks > article:not(:nth-child(-n+2)),
#top_resemble .column .column_blocks > article:not(:nth-child(-n+2)),
#area_template .column .column_blocks > article:not(:nth-child(-n+2)) {
  margin-top: 40px;
}
body#center .column .column_blocks > article a,
body#top_page .column .column_blocks > article a,
body#purchase .column .column_blocks > article a,
body#network .column .column_blocks > article a,
#top_resemble .column .column_blocks > article a,
#area_template .column .column_blocks > article a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}
body#center .column .column_blocks > article a .img,
body#top_page .column .column_blocks > article a .img,
body#purchase .column .column_blocks > article a .img,
body#network .column .column_blocks > article a .img,
#top_resemble .column .column_blocks > article a .img,
#area_template .column .column_blocks > article a .img {
  width: 23.81%;
}
body#center .column .column_blocks > article a .img img,
body#top_page .column .column_blocks > article a .img img,
body#purchase .column .column_blocks > article a .img img,
body#network .column .column_blocks > article a .img img,
#top_resemble .column .column_blocks > article a .img img,
#area_template .column .column_blocks > article a .img img {
  display: block;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
body#center .column .column_blocks > article a > div,
body#top_page .column .column_blocks > article a > div,
body#purchase .column .column_blocks > article a > div,
body#network .column .column_blocks > article a > div,
#top_resemble .column .column_blocks > article a > div,
#area_template .column .column_blocks > article a > div {
  width: 72.03%;
  padding: 15px 0;
  padding-right: 15px;
  display: flex;
  align-items: center;
}
body#center .column .column_blocks > article a > div time,
body#top_page .column .column_blocks > article a > div time,
body#purchase .column .column_blocks > article a > div time,
body#network .column .column_blocks > article a > div time,
#top_resemble .column .column_blocks > article a > div time,
#area_template .column .column_blocks > article a > div time {
  color: #00a831;
  font-size: 16px;
}
body#center .column .column_blocks > article a > div h3,
body#top_page .column .column_blocks > article a > div h3,
body#purchase .column .column_blocks > article a > div h3,
body#network .column .column_blocks > article a > div h3,
#top_resemble .column .column_blocks > article a > div h3,
#area_template .column .column_blocks > article a > div h3 {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  body#center .column,
  body#top_page .column,
  body#purchase .column,
  body#network .column,
  #top_resemble .column,
  #area_template .column {
    padding: 25px 0 60px;
  }
  body#center .column .column_blocks > article a > div time,
  body#top_page .column .column_blocks > article a > div time,
  body#purchase .column .column_blocks > article a > div time,
  body#network .column .column_blocks > article a > div time,
  #top_resemble .column .column_blocks > article a > div time,
  #area_template .column .column_blocks > article a > div time {
    font-size: 14px;
  }
  body#center .column .column_blocks > article a > div h3,
  body#top_page .column .column_blocks > article a > div h3,
  body#purchase .column .column_blocks > article a > div h3,
  body#network .column .column_blocks > article a > div h3,
  #top_resemble .column .column_blocks > article a > div h3,
  #area_template .column .column_blocks > article a > div h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  body#center .column .column_blocks,
  body#top_page .column .column_blocks,
  body#purchase .column .column_blocks,
  body#network .column .column_blocks,
  #top_resemble .column .column_blocks,
  #area_template .column .column_blocks {
    display: block;
  }
  body#center .column .column_blocks > article,
  body#top_page .column .column_blocks > article,
  body#purchase .column .column_blocks > article,
  body#network .column .column_blocks > article,
  #top_resemble .column .column_blocks > article,
  #area_template .column .column_blocks > article {
    width: auto;
  }
  body#center .column .column_blocks > article:not(:nth-child(-n+1)),
  body#top_page .column .column_blocks > article:not(:nth-child(-n+1)),
  body#purchase .column .column_blocks > article:not(:nth-child(-n+1)),
  body#network .column .column_blocks > article:not(:nth-child(-n+1)),
  #top_resemble .column .column_blocks > article:not(:nth-child(-n+1)),
  #area_template .column .column_blocks > article:not(:nth-child(-n+1)) {
    margin-top: 15px;
  }
  body#center .column .column_blocks > article a .img,
  body#top_page .column .column_blocks > article a .img,
  body#purchase .column .column_blocks > article a .img,
  body#network .column .column_blocks > article a .img,
  #top_resemble .column .column_blocks > article a .img,
  #area_template .column .column_blocks > article a .img {
    width: 100px;
  }
  body#center .column .column_blocks > article a > div,
  body#top_page .column .column_blocks > article a > div,
  body#purchase .column .column_blocks > article a > div,
  body#network .column .column_blocks > article a > div,
  #top_resemble .column .column_blocks > article a > div,
  #area_template .column .column_blocks > article a > div {
    width: calc(100% - 120px);
  }
  body#center .column .column_blocks > article a,
  body#top_page .column .column_blocks > article a,
  body#purchase .column .column_blocks > article a,
  body#network .column .column_blocks > article a,
  #top_resemble .column .column_blocks > article a,
  #area_template .column .column_blocks > article a {
    height: auto;
  }
}

.region .region_obi {
  background: #ffa31e;
  color: #fff;
  font-size: 42px;
  text-align: center;
  padding: 12px 10px;
  font-weight: bold;
}
.region .region2col {
  display: flex;
  justify-content: space-between;
}
.region .region2col > div {
  width: 48.34%;
}
.region .region2col > div > div:not(:last-child) {
  margin-bottom: 50px;
}
.region .region2col h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
.region .region2col ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1466666667%;
  text-align: center;
}
.region .region2col ul > li {
  width: 24.14%;
  margin-bottom: 7px;
}
.region .region2col ul a {
  display: block;
  padding: 10px 10px;
  background: #efefef;
  border-radius: 5px;
}
.region .region2col ul a h4 {
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  .region .region2col ul {
    gap: 2.165%;
  }
  .region .region2col ul > li {
    width: 31.89%;
  }
}
@media only screen and (max-width: 767px) {
  .region h2 {
    font-size: 23px;
  }
  .region .region2col h3 {
    font-size: 20px;
  }
  .region .region2col {
    display: block;
  }
  .region .region2col > div {
    width: auto;
    margin-bottom: 25px;
  }
  .region .region2col > div:last-child {
    margin-bottom: 0;
  }
  .region .region2col ul a {
    font-size: 14px;
  }
  .region .region2col > div > div:not(:last-child) {
    margin-bottom: 25px;
  }
}

body#top_page .television_cm {
  background-size: auto auto;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
  padding: 100px 0;
}
body#top_page .television_cm .television_cm_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  body#top_page .television_cm .television_cm_ttl {
    flex-wrap: wrap;
  }
}
body#top_page .television_cm .television_cm_ttl h2 {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
}
@media only screen and (max-width: 767px) {
  body#top_page .television_cm .television_cm_ttl h2 {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
body#top_page .television_cm .television_cm_ttl h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 60px;
}
body#top_page .television_cm .television_cm_ttl h2 > span::before, body#top_page .television_cm .television_cm_ttl h2 > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 37px;
  height: 57px;
}
@media only screen and (max-width: 767px) {
  body#top_page .television_cm .television_cm_ttl h2 > span::before, body#top_page .television_cm .television_cm_ttl h2 > span::after {
    width: 22px;
    height: 40px;
  }
}
body#top_page .television_cm .television_cm_ttl h2 > span::before {
  left: 0;
  background: url("../images/video_l.png") no-repeat center center;
  background-size: contain;
}
body#top_page .television_cm .television_cm_ttl h2 > span::after {
  right: 0;
  background: url("../images/video_r.png") no-repeat center center;
  background-size: contain;
}
body#top_page .television_cm .television_cm_ttl h2 > span > span:nth-child(1) {
  font-size: 143%;
}
body#top_page .television_cm .television_cm_ttl h3 {
  padding: 0 10px;
}
body#top_page .television_cm .television_cm_ttl + .ta_c {
  font-size: clamp(20px, 2.3vw, 40px);
}
body#top_page .television_cm .television_slider .slick-list {
  padding: 0 40px;
}
@media only screen and (max-width: 767px) {
  body#top_page .television_cm .television_slider .slick-list {
    padding: 0 10vw;
  }
}
body#top_page .television_cm .television_slider .slick-list {
  /* .slick-slide {
    width: 25% !important;
  } */
}
body#top_page .television_cm .television_slider li {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  body#top_page .television_cm .television_slider li {
    padding: 0 10px;
  }
}
body#top_page .television_cm .television_slider li > div {
  background: #fff;
  padding: 10px;
}
body#top_page .television_cm .television_slider li > div a {
  display: block;
}
body#top_page .television_cm .television_slider li > div a img {
  max-width: 100%;
}
body#top_page .television_cm .television_slider li > div p {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  margin-top: 5px;
}
body#top_page .television_cm .television_slider .slick-prev,
body#top_page .television_cm .television_slider .slick-next {
  width: 40px;
  height: 40px;
  background: url("../images/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  body#top_page .television_cm .television_slider .slick-prev,
  body#top_page .television_cm .television_slider .slick-next {
    width: 8vw;
    height: 8vw;
  }
}
body#top_page .television_cm .television_slider .slick-prev:hover,
body#top_page .television_cm .television_slider .slick-next:hover {
  opacity: 0.7;
}
body#top_page .television_cm .television_slider .slick-prev::before,
body#top_page .television_cm .television_slider .slick-next::before {
  content: none;
}
body#top_page .television_cm .television_slider .slick-prev {
  left: 20px;
  background: url("../images/prev.svg") no-repeat center center;
  background-size: contain;
}
body#top_page .television_cm .television_slider .slick-next {
  right: 20px;
}
body#top_page .television_cm .television_slider .slick-dots {
  bottom: -40px;
}
body#top_page .television_cm .television_slider .slick-dots li button::before {
  color: gray;
  font-size: 12px;
  opacity: 1;
}
body#top_page .television_cm .television_slider .slick-dots li.slick-active button::before {
  color: #00a832;
}

body#first .way_sec,
body#area_template .way_sec,
body#top_page .way_sec {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  body#first .way_sec,
  body#area_template .way_sec,
  body#top_page .way_sec {
    padding: 50px 0;
  }
}
body#first .way_sec .way,
body#area_template .way_sec .way,
body#top_page .way_sec .way {
  margin-bottom: 50px;
}
body#first .way_sec .way_inner,
body#area_template .way_sec .way_inner,
body#top_page .way_sec .way_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  body#first .way_sec .way_inner,
  body#area_template .way_sec .way_inner,
  body#top_page .way_sec .way_inner {
    grid-template-columns: 1fr;
    gap: 3vw;
  }
}
body#first .way_sec .way_inner .notebook,
body#area_template .way_sec .way_inner .notebook,
body#top_page .way_sec .way_inner .notebook {
  background: url(../images/way_block.png) no-repeat center top/cover;
  padding: 30px 0 0 20px;
  font-weight: normal;
  margin: 0 auto 10px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body#first .way_sec .way_inner .notebook,
  body#area_template .way_sec .way_inner .notebook,
  body#top_page .way_sec .way_inner .notebook {
    padding: 35px 0 0 4vw;
  }
}
body#first .way_sec .way_inner .notebook .txt_area,
body#area_template .way_sec .way_inner .notebook .txt_area,
body#top_page .way_sec .way_inner .notebook .txt_area {
  margin-bottom: 20px;
  width: 55%;
}
body#first .way_sec .way_inner .notebook .txt_area figure,
body#area_template .way_sec .way_inner .notebook .txt_area figure,
body#top_page .way_sec .way_inner .notebook .txt_area figure {
  margin-bottom: 5px;
  width: 100%;
}
body#first .way_sec .way_inner .notebook .txt_area p,
body#area_template .way_sec .way_inner .notebook .txt_area p,
body#top_page .way_sec .way_inner .notebook .txt_area p {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  body#first .way_sec .way_inner .notebook .txt_area p,
  body#area_template .way_sec .way_inner .notebook .txt_area p,
  body#top_page .way_sec .way_inner .notebook .txt_area p {
    font-size: min(4vw, 24px);
  }
}
body#first .way_sec .way_inner .notebook .txt_area p .txt_red,
body#area_template .way_sec .way_inner .notebook .txt_area p .txt_red,
body#top_page .way_sec .way_inner .notebook .txt_area p .txt_red {
  color: #dc0000;
}
body#first .way_sec .way_inner .notebook figure,
body#area_template .way_sec .way_inner .notebook figure,
body#top_page .way_sec .way_inner .notebook figure {
  width: 45%;
}
body#first .way_sec .way_inner .notebook figure img,
body#area_template .way_sec .way_inner .notebook figure img,
body#top_page .way_sec .way_inner .notebook figure img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}
body#first .way_sec .comment,
body#area_template .way_sec .comment,
body#top_page .way_sec .comment {
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: 0;
}
body#first .way_sec .comment .txt_red,
body#area_template .way_sec .comment .txt_red,
body#top_page .way_sec .comment .txt_red {
  color: #dc0000;
}

body#top_page .television,
body#area_template .television {
  background-size: auto auto;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
  padding: 100px 0;
}
body#top_page .television .television_layout,
body#area_template .television .television_layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
body#top_page .television .television_layout::before,
body#area_template .television .television_layout::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../images/video_bg.png") no-repeat left 0 top;
  width: 287px;
  height: 227px;
  z-index: 1;
  left: -130px;
  top: -45px;
}
body#top_page .television .television_layout > div:nth-child(1),
body#area_template .television .television_layout > div:nth-child(1) {
  width: 35.84%;
  position: relative;
  z-index: 2;
}
body#top_page .television .television_layout > div:nth-child(1) h2,
body#area_template .television .television_layout > div:nth-child(1) h2 {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
}
body#top_page .television .television_layout > div:nth-child(1) h2 > span,
body#area_template .television .television_layout > div:nth-child(1) h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 60px;
}
body#top_page .television .television_layout > div:nth-child(1) h2 > span::before,
body#area_template .television .television_layout > div:nth-child(1) h2 > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 37px;
  height: 57px;
  background: url("../images/video_l.png") no-repeat center center;
  background-size: contain;
}
body#top_page .television .television_layout > div:nth-child(1) h2 > span::after,
body#area_template .television .television_layout > div:nth-child(1) h2 > span::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 37px;
  height: 57px;
  background: url("../images/video_r.png") no-repeat center center;
  background-size: contain;
}
body#top_page .television .television_layout > div:nth-child(1) h2 > span > span:nth-child(1),
body#area_template .television .television_layout > div:nth-child(1) h2 > span > span:nth-child(1) {
  font-size: 143%;
}
body#top_page .television .television_layout > div:nth-child(1) .gbtn,
body#area_template .television .television_layout > div:nth-child(1) .gbtn {
  font-size: 24px;
}
body#top_page .television .television_layout > div:nth-child(1) h3,
body#area_template .television .television_layout > div:nth-child(1) h3 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
body#top_page .television .television_layout > div:nth-child(1) h3 > span,
body#area_template .television .television_layout > div:nth-child(1) h3 > span {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
body#top_page .television .television_layout > div:nth-child(1) h3 > span > span:nth-child(1),
body#area_template .television .television_layout > div:nth-child(1) h3 > span > span:nth-child(1) {
  font-size: 145%;
}
body#top_page .television .television_layout > div:nth-child(2),
body#area_template .television .television_layout > div:nth-child(2) {
  width: 60%;
}
body#top_page .television .television_layout > div:nth-child(2) .video,
body#area_template .television .television_layout > div:nth-child(2) .video {
  border: 2px solid #000000;
  box-shadow: 0 0 8px gray;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
body#top_page .television .television_layout > div:nth-child(2) .video iframe,
body#area_template .television .television_layout > div:nth-child(2) .video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1260px) {
  body#top_page .television .television_layout > div:first-child h2,
  body#area_template .television .television_layout > div:first-child h2 {
    font-size: 17px;
  }
  body#top_page .television .television_layout > div:nth-child(1) h2 > span,
  body#area_template .television .television_layout > div:nth-child(1) h2 > span {
    padding: 0 50px;
  }
  body#top_page .television .television_layout > div:first-child h2 > span::before,
  body#top_page .television .television_layout > div:first-child h2 > span:after,
  body#area_template .television .television_layout > div:first-child h2 > span::before,
  body#area_template .television .television_layout > div:first-child h2 > span:after {
    width: 22px;
    height: 40px;
  }
  body#top_page .television .television_layout > div:nth-child(1) h3,
  body#area_template .television .television_layout > div:nth-child(1) h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .television,
  body#area_template .television {
    padding: 40px 0;
  }
  body#top_page .television .television_layout,
  body#area_template .television .television_layout {
    display: block;
  }
  body#top_page .television .television_layout > div:first-child,
  body#area_template .television .television_layout > div:first-child {
    width: auto;
    margin-bottom: 45px;
  }
  body#top_page .television .television_layout > div:nth-child(2),
  body#area_template .television .television_layout > div:nth-child(2) {
    width: auto;
  }
  body#top_page .television .television_layout > div:nth-child(1) .gbtn,
  body#area_template .television .television_layout > div:nth-child(1) .gbtn {
    font-size: 17px;
  }
}
body#top_page .cm_sec .cm_bg,
body#top_resemble .cm_sec .cm_bg,
body#area_template .cm_sec .cm_bg {
  padding: 65px 15px;
  background: url("../images/cm_bg.png") no-repeat center center;
  background-size: cover;
  text-align: center;
}
body#top_page .cm_sec .cm_bg h2,
body#top_resemble .cm_sec .cm_bg h2,
body#area_template .cm_sec .cm_bg h2 {
  margin-left: 15%;
}
body#top_page .cm_sec .cm_achie,
body#top_resemble .cm_sec .cm_achie,
body#area_template .cm_sec .cm_achie {
  margin-top: -170px;
  margin-bottom: -40px;
  position: relative;
}
body#top_page .cm_sec .cm_achie img,
body#top_resemble .cm_sec .cm_achie img,
body#area_template .cm_sec .cm_achie img {
  position: relative;
  z-index: 99;
}
body#top_page .cm_sec .cm_achie::before,
body#top_resemble .cm_sec .cm_achie::before,
body#area_template .cm_sec .cm_achie::before {
  content: "";
  display: block;
  background: #ffea01;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 39px;
  z-index: 1;
  height: 112px;
}
@media only screen and (max-width: 1260px) {
  body#top_page .cm_sec .cm_achie,
  body#top_resemble .cm_sec .cm_achie,
  body#area_template .cm_sec .cm_achie {
    margin-top: -13.5vw;
  }
  body#top_page .cm_sec .cm_achie:before,
  body#top_resemble .cm_sec .cm_achie:before,
  body#area_template .cm_sec .cm_achie:before {
    height: 8.5vw;
    bottom: 3.2vw;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .cm_sec .cm_bg,
  body#top_resemble .cm_sec .cm_bg,
  body#area_template .cm_sec .cm_bg {
    padding: 30px 15px;
  }
}

@media only screen and (max-width: 960px) {
  body#top_page .mainobi .obi_txt,
  body#top_resemble .mainobi .obi_txt {
    padding: 42px 10px 20px;
  }
}
body#top_page #column .assessment .assessment_body h4,
body#top_page #column .assessment .assessment_body .step_ttl,
#area_template #column .assessment .assessment_body h4,
#area_template #column .assessment .assessment_body .step_ttl {
  background: #cecece;
}

body#top_page .mainobi2,
#area_template .mainobi2,
#top_resemble .mainobi2 {
  background: #ffea01;
  position: relative;
  padding: 10px 15px;
  text-align: center;
}
body#top_page .mainobi2.bg_color2,
#area_template .mainobi2.bg_color2,
#top_resemble .mainobi2.bg_color2 {
  background: #ada142;
}
body#top_page .mainobi2.bg_color2::before,
#area_template .mainobi2.bg_color2::before,
#top_resemble .mainobi2.bg_color2::before {
  border-color: #ada142 transparent transparent transparent;
}
body#top_page .mainobi2 dl,
#area_template .mainobi2 dl,
#top_resemble .mainobi2 dl {
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#top_page .mainobi2 dl dt,
#area_template .mainobi2 dl dt,
#top_resemble .mainobi2 dl dt {
  background: #ed3c46;
  padding: 4px 10px 10px;
  line-height: 1.2;
  color: #fff;
  font-size: 26px;
  min-width: 200px;
  margin-right: 20px;
  border-radius: 35px;
}
body#top_page .mainobi2 dl dt > span,
#area_template .mainobi2 dl dt > span,
#top_resemble .mainobi2 dl dt > span {
  font-size: 176.93%;
  position: relative;
  top: 3px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
}
body#top_page .mainobi2 dl .red_txt,
#area_template .mainobi2 dl .red_txt,
#top_resemble .mainobi2 dl .red_txt {
  color: #f40618;
}
body#top_page .mainobi2 dl dd,
#area_template .mainobi2 dl dd,
#top_resemble .mainobi2 dl dd {
  font-size: 32px;
  line-height: 1.2;
  text-align: left;
}
body#top_page .mainobi2 dl dd h3,
#area_template .mainobi2 dl dd h3,
#top_resemble .mainobi2 dl dd h3 {
  font-weight: bold;
}
body#top_page .mainobi2 dl dd span,
#area_template .mainobi2 dl dd span,
#top_resemble .mainobi2 dl dd span {
  font-size: 125%;
}
body#top_page .mainobi2::before,
#area_template .mainobi2::before,
#top_resemble .mainobi2::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 55px 0 55px;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  border-color: #ffea01 transparent transparent transparent;
}
@media only screen and (max-width: 767px) {
  body#top_page .mainobi2 dl,
  #area_template .mainobi2 dl,
  #top_resemble .mainobi2 dl {
    display: block;
  }
  body#top_page .mainobi2 dl dt,
  #area_template .mainobi2 dl dt,
  #top_resemble .mainobi2 dl dt {
    font-size: 17px;
    min-width: auto;
    width: auto;
    max-width: 140px;
    margin: 0 auto 10px;
  }
  body#top_page .mainobi2 dl dd,
  #area_template .mainobi2 dl dd,
  #top_resemble .mainobi2 dl dd {
    text-align: center;
    font-size: 19px;
  }
  body#top_page .mainobi2::before,
  #area_template .mainobi2::before,
  #top_resemble .mainobi2::before {
    border-width: 16px 22.5px 0 22.5px;
  }
}

.main_cm img {
  width: 100%;
}

#area_template .news .ttl_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid #0cad2e;
}
#area_template .news .ttl_wrap > h2 {
  font-size: 32px;
  font-weight: bold;
  width: calc(100% - 320px);
}
#area_template .news .ttl_wrap .gbtn {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #area_template .news .ttl_wrap .ttl_wrap {
    display: block;
  }
  #area_template .news .ttl_wrap .ttl_wrap > h2 {
    width: auto;
    font-size: 20px;
  }
  #area_template .news .ttl_wrap .news_btn {
    display: none;
  }
  #area_template .news .ttl_wrap .news_dl a {
    padding: 15px 0px;
  }
}

#top_page .news .news_btn,
#area_template .news .news_btn {
  max-width: 300px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
#top_page .news .news_btn a,
#area_template .news .news_btn a {
  color: #fff;
  background: #0cad2e;
  display: block;
  padding: 12px 50px;
  position: relative;
  border-radius: 45px;
  box-shadow: 0 5px 0 0 #00651e;
  transition: 0.5s ease-in-out;
}
#top_page .news .news_btn a:hover,
#area_template .news .news_btn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#top_page .news .news_btn a::before,
#area_template .news .news_btn a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
#top_page .news .news_dl,
#area_template .news .news_dl {
  border-top: 1px solid #dddddd;
  font-weight: normal;
  font-size: 16px;
}
#top_page .news .news_dl dt,
#area_template .news .news_dl dt {
  margin-bottom: 8px;
}
#top_page .news .news_dl dt time,
#area_template .news .news_dl dt time {
  color: #555555;
}
#top_page .news .news_dl a,
#area_template .news .news_dl a {
  padding: 15px 20px;
  display: block;
  border-bottom: 1px solid #dddddd;
  opacity: 1;
  transition: background 0.4s ease-in-out;
}
#top_page .news .news_dl a:hover,
#area_template .news .news_dl a:hover {
  background: #f9f9f9;
}
#top_page .news .news_dl time,
#area_template .news .news_dl time {
  margin-right: 10px;
}
#top_page .news .news_dl .new_icon,
#area_template .news .news_dl .new_icon {
  background: #f03c46;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  padding: 3px 15px;
}
#top_page .simulator,
#area_template .simulator {
  padding: 70px 0;
  background-size: auto auto;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
#top_page .simulator h2,
#area_template .simulator h2 {
  font-size: 46px;
  text-align: center;
  font-weight: bold;
  color: #0dad2f;
  padding: 20px 15px;
  background: #fff;
  margin-bottom: 60px;
}
#top_page .simulator .under_wrap,
#area_template .simulator .under_wrap {
  max-width: 1720px;
}
#top_page .simulator .simulator_block,
#area_template .simulator .simulator_block {
  display: flex;
  justify-content: space-between;
}
#top_page .simulator .simulator_block > div:nth-child(1),
#area_template .simulator .simulator_block > div:nth-child(1) {
  width: 44.77%;
}
#top_page .simulator .simulator_block > div:nth-child(2),
#area_template .simulator .simulator_block > div:nth-child(2) {
  width: 51.17%;
}
#top_page .simulator .simulator_block h3,
#area_template .simulator .simulator_block h3 {
  font-size: 46px;
  font-weight: bold;
  padding-bottom: 18px;
  margin-bottom: 40px;
  line-height: 1.2;
  border-bottom: 8px solid #0dad2f;
}
#top_page .simulator .simulator_block h3 > span,
#area_template .simulator .simulator_block h3 > span {
  color: #0cad2c;
}
#top_page .simulator .simulator_block h3 + p,
#area_template .simulator .simulator_block h3 + p {
  font-size: 20px;
}
#top_page .simulator .simulator_block .indent,
#area_template .simulator .simulator_block .indent {
  font-weight: normal;
  max-width: 780px;
  margin: 0 auto;
  font-size: 14px;
}
@media only screen and (max-width: 1260px) {
  #top_page .simulator h2,
  #area_template .simulator h2 {
    font-size: 34px;
  }
  #top_page .simulator .simulator_block h3,
  #area_template .simulator .simulator_block h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 960px) {
  #top_page .simulator,
  #area_template .simulator {
    padding: 45px 0;
  }
  #top_page .simulator h2,
  #area_template .simulator h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  #top_page .simulator .simulator_block,
  #area_template .simulator .simulator_block {
    max-width: 770px;
    margin: 0 auto;
    display: block;
  }
  #top_page .simulator .simulator_block > div:first-child,
  #area_template .simulator .simulator_block > div:first-child {
    width: auto;
    margin-bottom: 25px;
  }
  #top_page .simulator .simulator_block > div:nth-child(2),
  #area_template .simulator .simulator_block > div:nth-child(2) {
    width: auto;
  }
  #top_page .simulator .simulator_block h3,
  #area_template .simulator .simulator_block h3 {
    font-size: 25px;
    border-bottom-width: 5px;
  }
  #top_page .simulator .simulator_block h3 + p,
  #area_template .simulator .simulator_block h3 + p {
    font-size: 16px;
  }
}
#top_page .floting_side {
  display: none;
  position: fixed;
  width: 90px;
  height: 90px;
  bottom: 100px;
  right: 10px;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  #top_page .floting_side {
    bottom: 110px;
  }
}
#top_page .floting_side .banner-close {
  position: absolute;
  top: -7px;
  right: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
#top_page .floting_side.scrolled {
  display: block;
}
#top_page {
  /* .page_top {
    @include mq(only_sp) {
      bottom: 215px;
    }
  } */
}
#top_page .attention .under_wrap {
  padding: 30px;
  margin-bottom: 50px;
  border: 3px solid red;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  #top_page .attention .under_wrap {
    padding: 20px;
  }
}
#top_page .attention .under_wrap strong {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
#top_page .attention .under_wrap p {
  font-weight: 400;
  font-size: 16px;
}
#top_page .attention.black .under_wrap {
  border-color: #000;
}
#top_page .present_link {
  background: #ffa31e;
  position: relative;
  display: block;
  border-radius: 45px;
  -webkit-box-shadow: 0 5px 0 0 #ce7c06;
  box-shadow: 0 5px 0 0 #ce7c06;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  padding: 25px;
  color: #fff;
  font-weight: bold;
  font-size: min(2.3vw, 24px);
  margin: 0 auto 60px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #top_page .present_link {
    font-size: min(4vw, 20px);
  }
}
#top_page .present_link::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #top_page .present_link::before {
    right: 20px;
  }
}
#top_page .present_link::after {
  position: absolute;
  content: "";
  background: url("../images/icon_present.svg") no-repeat center center/contain;
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  left: 40px;
}
@media only screen and (max-width: 767px) {
  #top_page .present_link::after {
    left: 20px;
    width: 35px;
    height: 35px;
  }
}
@media only screen and (max-width: 767px) {
  #top_page .present_link span {
    display: block;
    font-size: 80%;
  }
}
#top_page .present_link:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
#top_page .sec_jpuc {
  margin: 50px auto;
}
#top_page .sec_jpuc .under_wrap {
  border: 5px solid #0cad2e;
  padding: 30px;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_jpuc .under_wrap {
    padding: 20px;
  }
}
#top_page .sec_jpuc .under_wrap h2 {
  color: #0cad2e;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}
#top_page .sec_jpuc .under_wrap .jpuc_wrap {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_jpuc .under_wrap .jpuc_wrap {
    display: block;
  }
}
#top_page .sec_jpuc .under_wrap .jpuc_wrap .img {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_jpuc .under_wrap .jpuc_wrap .img {
    width: 50%;
    margin: 0 auto 30px;
  }
}
#top_page .sec_jpuc .under_wrap .jpuc_wrap .img img {
  display: block;
  margin: 0 auto;
}
#top_page .sec_jpuc .under_wrap .jpuc_wrap .txt {
  width: 78%;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_jpuc .under_wrap .jpuc_wrap .txt {
    width: 100%;
  }
}
#top_page .sec_jpuc .under_wrap .jpuc_wrap .txt p {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_jpuc .under_wrap .jpuc_wrap .txt p {
    font-size: 14px;
  }
}
#top_page .sec_kansyu .under_wrap {
  max-width: 1200px;
  padding: 50px 0;
  border-top: 5px solid #0cad2e;
}
#top_page .sec_kansyu .under_wrap h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 5px solid #29a7bd;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_kansyu .under_wrap h2 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}
#top_page .sec_kansyu .under_wrap .kansyu_wrap {
  display: flex;
  gap: 0 30px;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_kansyu .under_wrap .kansyu_wrap {
    display: block;
  }
}
#top_page .sec_kansyu .under_wrap .kansyu_wrap .img {
  width: 10%;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_kansyu .under_wrap .kansyu_wrap .img {
    width: 50%;
    margin: 0 auto 20px;
  }
}
#top_page .sec_kansyu .under_wrap .kansyu_wrap .img img {
  display: block;
  margin: 0 auto;
}
#top_page .sec_kansyu .under_wrap .kansyu_wrap .txt {
  width: 88%;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_kansyu .under_wrap .kansyu_wrap .txt {
    width: 100%;
  }
}
#top_page .sec_kansyu .under_wrap .kansyu_wrap .txt p {
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #top_page .sec_kansyu .under_wrap .kansyu_wrap .txt p {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
  }
}

body#top_page .rain_emergency {
  font-size: min(3.6vw, 18px);
}
body#top_page .rain_emergency2 {
  font-size: min(3.2vw, 16px);
  font-weight: 400;
}
body#top_page .rain_emergency2 a {
  text-decoration: underline;
}
body#top_page .rain_emergency2 a:hover {
  text-decoration: none;
}

.index_ttl {
  color: #01a832;
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  .index_ttl {
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  .index_ttl {
    font-size: min(36px, 7vw);
  }
}
.index_ttl .underlined {
  border-bottom: 4px solid #0cad2e;
  display: inline-block;
  padding-bottom: 6px;
}
.index_ttl .index_ttl_sub {
  font-size: 77%;
}
@media only screen and (min-width: 768px) {
  .index_ttl .index_ttl_sub {
    font-size: 88%;
  }
}
.index_ttl .small {
  font-size: 55%;
}
.index_ttl.black {
  color: #000;
}

body#top_page {
  font-family: "Noto Sans JP", sans-serif;
}
body#top_page .note {
  font-size: 14px;
}
body#top_page .area_ttl.area_ttl_bg4 {
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  body#top_page .area_ttl.area_ttl_bg4 {
    padding: 15px 0 10px;
  }
}
body#top_page .area_ttl.area_ttl_bg4 h1 {
  font-size: min(4vw, 14px);
}
@media only screen and (min-width: 768px) {
  body#top_page .area_ttl.area_ttl_bg4 h1 {
    font-size: 20px;
  }
}
body#top_page .maker {
  background: linear-gradient(transparent 70%, #ffee30 70%);
}
body#top_page .with_side_slash {
  position: relative;
  padding: 0 1em;
  text-align: center;
  display: inline-block;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.04em;
}
@media (max-width: 374px) {
  body#top_page .with_side_slash {
    font-size: min(20px, 4.5vw);
  }
}
body#top_page .with_side_slash::before, body#top_page .with_side_slash::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 90%;
  background: #000;
  margin: auto;
}
body#top_page .with_side_slash::before {
  inset: 0 auto 0 0;
  transform: rotate(-30deg);
}
body#top_page .with_side_slash::after {
  inset: 0 0 0 auto;
  transform: rotate(30deg);
}
body#top_page .with_side_slash.red::before, body#top_page .with_side_slash.red::after {
  background: #f0101d;
}
body#top_page .with_side_slash span .fn30 {
  font-size: 150%;
}
body#top_page .btn_rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  color: #fff;
  font-weight: bold;
  border-radius: 85px;
  transition: 0.5s ease-in-out;
  position: relative;
  text-align: center;
  height: 90px;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  body#top_page .btn_rounded {
    height: 64px;
  }
}
body#top_page .btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625;
  background: #ed3c46;
}
body#top_page .btn_rounded.green {
  box-shadow: 0 4px 0 0 #00661a;
  background: #01a832;
}
body#top_page .btn_rounded.yellow {
  box-shadow: 0 4px 0 0 #de8300;
  background: #ffa31e;
}
body#top_page .btn_rounded.yellow div {
  display: flex;
  flex-direction: column;
}
body#top_page .btn_rounded.yellow .tel_icon {
  position: relative;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
  line-height: 1;
  text-align: left;
}
body#top_page .btn_rounded.yellow .tel_icon::before {
  position: absolute;
  content: "";
  background: url(../images/index/free.svg) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  margin: auto;
  inset: 0 auto 0 0;
}
body#top_page .btn_rounded:hover {
  box-shadow: none;
  transform: translateY(3px);
}
body#top_page .btn_rounded::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  body#top_page .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
body#top_page .btn_rounded.type_web span {
  position: relative;
  padding-left: 2em;
}
body#top_page .btn_rounded.type_web span::after {
  position: absolute;
  content: "";
  background: url(../images/index/monitor.svg) no-repeat center center/contain;
  width: 36px;
  height: 26px;
  margin: auto;
  inset: 0 auto 0 0;
}
@media (max-width: 374px) {
  body#top_page .btn_rounded.type_web span::after {
    width: 28px;
    height: 20px;
    inset: 0 auto 0 16px;
  }
}
body#top_page .btn_rounded.type_16 {
  font-size: clamp(16px, 1.8vw, 22px);
}
body#top_page .btn_rounded.phone > span {
  position: relative;
  padding: 0 2em 0 2.5em;
}
body#top_page .btn_rounded.phone > span::after {
  position: absolute;
  content: "";
  background: url(../images/index/phone.svg) no-repeat center center/contain;
  width: 30px;
  height: 37px;
  margin: auto;
  inset: 0 auto 0 0;
}
body#top_page .slick-prev,
body#top_page .slick-next {
  width: 40px;
  height: 40px;
  background: url("../images/index/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  body#top_page .slick-prev,
  body#top_page .slick-next {
    width: 60px;
    height: 60px;
  }
}
body#top_page .slick-prev:hover,
body#top_page .slick-next:hover {
  opacity: 0.7;
}
body#top_page .slick-prev::before,
body#top_page .slick-next::before {
  content: none;
}
body#top_page .slick-prev {
  left: 20px;
  background: url("../images/index/prev.svg") no-repeat center center;
  background-size: contain;
}
body#top_page .slick-next {
  right: 20px;
}
body#top_page .slick-dots {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
body#top_page .slick-dots li {
  width: 8px;
  height: 8px;
}
body#top_page .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
}
body#top_page .slick-dots li button::before {
  opacity: 1;
  content: "";
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
body#top_page .slick-dots li.slick-active button:before {
  background: #01a832;
}
body#top_page .fv .mvArea {
  position: relative;
}
body#top_page .fv .mvArea .ttl_mv-cm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #01a832;
  padding: 10px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body#top_page .fv .mvArea .ttl_mv-cm {
    position: inherit;
  }
}
body#top_page .fv .mvArea .ttl_mv-cm img {
  height: 80px;
  padding: 10px;
}
@media (max-width: 1000px) {
  body#top_page .fv .mvArea .ttl_mv-cm img {
    height: 60px;
  }
}
@media (max-width: 768px) {
  body#top_page .fv .mvArea .ttl_mv-cm img {
    height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .fv .mvArea .ttl_mv-cm img {
    height: 40px;
    padding: 0;
  }
}
body#top_page #popup_form {
  background: #f9fce3;
}
body#top_page .sec_index_top {
  background: #d9f2e0;
  padding: 50px 0 30px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .high_price_slider {
    padding: 0 80px;
  }
}
body#top_page .sec_index_top .high_price_slider .slick-track {
  display: flex;
}
body#top_page .sec_index_top .high_price_slider .slick-slide {
  margin: 10px 20px;
  height: auto;
}
@media only screen and (max-width: 1260px) {
  body#top_page .sec_index_top .high_price_slider .slick-slide {
    margin: 10px;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_index_top .high_price_slider .slick-slide {
    margin: 0 15px 0 0;
  }
}
body#top_page .sec_index_top .high_price_slider .slick-slide > div {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_index_top .high_price_slider .slick-prev {
    display: none !important;
  }
  body#top_page .sec_index_top .high_price_slider .slick-list {
    overflow: visible;
    margin-left: 0;
    padding-right: 10%;
  }
}
body#top_page .sec_index_top .high_price_item {
  height: 100%;
  display: block;
  background: #fff;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .high_price_item {
    padding: 25px;
  }
}
body#top_page .sec_index_top .high_price_item .high_price_head {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 374px) {
  body#top_page .sec_index_top .high_price_item .high_price_head {
    flex-wrap: wrap;
  }
}
body#top_page .sec_index_top .high_price_item .high_price_head .icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
}
@media only screen and (max-width: 960px) {
  body#top_page .sec_index_top .high_price_item .high_price_head .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}
body#top_page .sec_index_top .high_price_item .high_price_head .ttl h4 {
  color: #01a832;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-size: clamp(16px, 1.6vw, 18px);
}
body#top_page .sec_index_top .high_price_item .high_price_head .ttl dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
body#top_page .sec_index_top .high_price_item .high_price_head .ttl dl dt {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #000;
  padding: 0 10px;
  font-size: clamp(12px, 1.2vw, 14px);
}
body#top_page .sec_index_top .high_price_item .high_price_head .ttl dl dd {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
}
body#top_page .sec_index_top .high_price_item figure {
  aspect-ratio: 27/16;
}
body#top_page .sec_index_top .high_price_item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#top_page .sec_index_top .high_price_item .high_price_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
body#top_page .sec_index_top .high_price_item .high_price_detail .car_name {
  padding: 8px 4px;
  background: #f7ffbc;
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  width: auto;
  min-width: 40%;
  text-align: center;
  max-width: 54%;
}
@media only screen and (max-width: 1260px) {
  body#top_page .sec_index_top .high_price_item .high_price_detail .car_name {
    max-width: 50%;
  }
}
body#top_page .sec_index_top .high_price_item .high_price_detail .price {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
}
body#top_page .sec_index_top .high_price_item .high_price_detail .price span {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 3vw, 56px);
  line-height: 1;
}
@media only screen and (max-width: 1260px) {
  body#top_page .sec_index_top .high_price_item .high_price_detail .price span {
    font-size: clamp(26px, 2.8vw, 56px);
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_index_top .high_price_item .high_price_detail .price span {
    font-size: min(56px, 12vw);
  }
}
body#top_page .sec_index_top .car_model_list {
  border: 3px solid #01a832;
  background: #fff;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .car_model_list {
    padding: 40px 30px;
  }
}
body#top_page .sec_index_top .car_model_list .model_list_ttl {
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .car_model_list .model_list_ttl {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin: 0 0 30px;
  }
}
body#top_page .sec_index_top .car_model_list ul {
  display: flex;
  justify-content: center;
  gap: 8px;
}
body#top_page .sec_index_top .car_model_list ul li {
  background: #f7ffbc;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 3px 12px;
  font-size: clamp(16px, 1.8vw, 20px);
}
body#top_page .sec_index_top .car_model_list h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.04em;
}
body#top_page .sec_index_top .car_model_list .car_model_name {
  color: #333;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 1.8vw, 22px);
  word-break: keep-all;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .car_model_list .car_model_name {
    max-width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_index_top .car_model_list .car_model_name {
    font-size: min(16px, 3.6vw);
    max-width: 540px;
    margin: 0 auto 20px;
  }
}
body#top_page .sec_index_top .car_model_list .car_model_name span {
  white-space: nowrap;
}
body#top_page .sec_index_top .car_model_list .btn_area {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_index_top .car_model_list .btn_area {
    flex-direction: column;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .campaign_slider {
    padding: 0 80px;
  }
}
body#top_page .sec_index_top .campaign_slider .slick-slide {
  margin: 0 30px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_top .campaign_slider .slick-slide {
    margin: 0 10px;
  }
}
body#top_page .sec_want_sell {
  background: #f9fce3;
  padding: 30px 0;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_want_sell {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_want_sell .with_side_slash {
    font-size: min(20px, 4.5vw);
  }
}
body#top_page .sec_want_sell .want_sell_bns {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_want_sell .want_sell_bns {
    flex-direction: column;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_want_sell .want_sell_item {
    width: calc(50% - 15px);
  }
}
body#top_page .sec_want_sell .want_sell_item a {
  display: block;
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_want_sell .want_sell_item a {
    min-height: 200px;
  }
}
body#top_page .sec_want_sell .want_sell_item a h4 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin: 10px 0 5px 15px;
}
body#top_page .sec_want_sell .want_sell_item a ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 60%;
  margin: 0 auto 10px 15px;
}
body#top_page .sec_want_sell .want_sell_item a ul li {
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 32px;
  border: 1px solid #ffe09f;
  color: #333;
}
body#top_page .sec_want_sell .want_sell_item a p {
  color: #fff;
  position: relative;
  padding: 7px 36px 7px 0;
  border-radius: 0 0 8px 8px;
  text-align: right;
}
body#top_page .sec_want_sell .want_sell_item a p::before {
  position: absolute;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  margin: auto;
  inset: 0 20px 0 auto;
}
body#top_page .sec_want_sell .want_sell_item.type_haisya a {
  border-color: #ff9500;
  background: #fff2d7 url(../images/index/img_want_sell01.webp) no-repeat center right/52%;
}
body#top_page .sec_want_sell .want_sell_item.type_haisya a h4 {
  color: #ff9500;
}
body#top_page .sec_want_sell .want_sell_item.type_haisya a ul li {
  border-color: #ffe09f;
}
body#top_page .sec_want_sell .want_sell_item.type_haisya a p {
  background: #ff9500;
}
body#top_page .sec_want_sell .want_sell_item.type_jikosha a {
  border-color: #278fda;
  background: #d9fffc url(../images/index/img_want_sell02.webp) no-repeat center right/52%;
}
body#top_page .sec_want_sell .want_sell_item.type_jikosha a h4 {
  color: #278fda;
}
body#top_page .sec_want_sell .want_sell_item.type_jikosha a ul li {
  border-color: #b8eaff;
}
body#top_page .sec_want_sell .want_sell_item.type_jikosha a p {
  background: #278fda;
}
body#top_page .sec_reason {
  padding: 50px 0;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
body#top_page .sec_reason .reason_ttl {
  display: flex;
  position: relative;
  align-items: center;
  padding-bottom: 15px;
  gap: 20px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .reason_ttl {
    width: auto;
    gap: 5px;
    margin: 0 6vw 30px;
    justify-content: center;
  }
}
body#top_page .sec_reason .reason_ttl::before, body#top_page .sec_reason .reason_ttl::after {
  position: absolute;
  content: "";
  margin: auto;
}
body#top_page .sec_reason .reason_ttl::before {
  background: #01a832;
  height: 4px;
  left: 0;
  bottom: 0;
  inset: auto 0 0 0;
}
body#top_page .sec_reason .reason_ttl::after {
  width: 26px;
  height: 14px;
  background-color: #01a832;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
}
body#top_page .sec_reason .reason_ttl .total_medal {
  aspect-ratio: 1/1;
  color: #000;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .reason_ttl .total_medal {
    min-width: 130px;
    width: 33.3vw;
    max-width: 130px;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .reason_ttl > div {
    width: calc(100% - 370px);
  }
}
body#top_page .sec_reason .reason_ttl h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .reason_ttl h2 {
    width: 44.4vw;
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  body#top_page .sec_reason .reason_ttl h2 {
    font-size: min(28px, 5.5vw);
  }
}
body#top_page .sec_reason .reason_ttl h2 span {
  color: #fff;
  font-size: 36px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .reason_ttl h2 span {
    font-size: min(36px, 7.5vw);
  }
}
@media (max-width: 374px) {
  body#top_page .sec_reason .reason_ttl h2 span {
    font-size: min(28px, 6vw);
  }
}
body#top_page .sec_reason .reason_ttl h2 span::after {
  position: absolute;
  content: "";
  background: #01a832;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
body#top_page .sec_reason .reason_catch_wrap {
  display: flex;
  justify-content: center;
  width: 88%;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .reason_catch_wrap {
    display: none;
  }
}
body#top_page .sec_reason .reason_catch_wrap figure {
  width: 28.4vw;
  height: 34.3vw;
  max-width: 111px;
  max-height: 134px;
  margin-bottom: -10px;
}
body#top_page .sec_reason .reason_catch {
  padding-top: 30px;
  position: relative;
  font-size: clamp(16px, 1.8vw, 22px);
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .reason_catch {
    font-size: min(16px, 4vw);
    padding: 0;
  }
}
@media (max-width: 374px) {
  body#top_page .sec_reason .reason_catch {
    font-size: min(16px, 3.5vw);
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .reason_catch::before {
    position: absolute;
    content: "";
    background: url(../images/index/check_man.webp) no-repeat bottom right/contain;
    width: 150px;
    height: 180px;
    right: -150px;
    bottom: 0;
  }
}
body#top_page .sec_reason .grid-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 900px;
  justify-content: center;
}
body#top_page .sec_reason .grid-container .reason_item {
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
}
body#top_page .sec_reason .grid-container .reason_item.reason01 {
  background: #fff url(../images/index/reason01.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item.reason01 {
    background: #fff url(../images/index/reason01.png) no-repeat top 10px right 6%/120px;
  }
}
body#top_page .sec_reason .grid-container .reason_item.reason02 {
  background: #fff url(../images/index/reason02.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item.reason02 {
    background: #fff url(../images/index/reason02.png) no-repeat top 10px right 6%/120px;
  }
}
body#top_page .sec_reason .grid-container .reason_item.reason03 {
  background: #fff url(../images/index/reason03.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item.reason03 {
    background: #fff url(../images/index/reason03.png) no-repeat top 10px right 6%/120px;
  }
}
body#top_page .sec_reason .grid-container .reason_item.reason04 {
  background: #fff url(../images/index/reason04.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item.reason04 {
    background: #fff url(../images/index/reason04.png) no-repeat top 30px right 7%/120px;
  }
}
body#top_page .sec_reason .grid-container .reason_item .label {
  background: #01a832;
  border-radius: 0 50px 50px 0;
  width: 92px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .grid-container .reason_item .label {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 37px;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item .label {
    width: 15%;
  }
}
body#top_page .sec_reason .grid-container .reason_item .label strong {
  font-weight: bold;
  color: #fff153;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 185%;
}
body#top_page .sec_reason .grid-container .reason_item .reason_item_ttl {
  font-size: clamp(18px, 2vw, 22px);
  margin: 63px 10px 20px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item .reason_item_ttl {
    width: 70%;
    margin: 20px 0;
    min-height: 130px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 15% 0 0;
  }
}
body#top_page .sec_reason .grid-container .reason_item .reason_item_ttl strong {
  font-weight: bold;
  font-size: 122%;
}
body#top_page .sec_reason .grid-container .reason_item .reason_item_txt {
  color: #333;
  margin: 0 10px 10px;
  letter-spacing: 0.04em;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_reason .grid-container .reason_item .reason_item_txt {
    font-size: 14px;
    width: auto;
    text-align: left;
  }
}
body#top_page .sec_reason .grid-container .reason_item .reason_item_txt img {
  display: block;
  margin: 10px auto;
}
body#top_page .sec_reason .grid-container .reason_item .reason_item_txt p + p {
  margin-top: 1em;
}
body#top_page .sec_reason .grid-container .reason_item .reason_button {
  border-radius: 0 0 10px 10px;
  background: #d9f2e0;
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_reason .grid-container .reason_item .reason_button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
body#top_page .sec_reason .grid-container .reason_item .reason_button::before {
  position: absolute;
  content: "";
  border-right: 2px solid #01a832;
  border-bottom: 2px solid #01a832;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin: auto;
  inset: 0 0 5px 0;
}
body#top_page .sec_reason .grid-container .reason_item .reason_button.active::before {
  transform: rotate(-135deg);
  inset: 0 0 -10px 0;
}
body#top_page .assessment-embedded-widget-onecolumn {
  padding: 60px 0;
}
body#top_page .sec_top_satei {
  background: #d9f2e0;
  padding: 50px 0;
}
body#top_page .sec_top_satei p {
  letter-spacing: 0.04em;
}
body#top_page .sec_top_satei .color4 {
  font-size: clamp(20px, 2.4vw, 24px);
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_top_satei .color4 {
    font-size: min(20px, 4.5vw);
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_top_satei .txt {
    font-size: min(16px, 4vw);
    margin-bottom: 0;
  }
}
body#top_page .sec_top_satei .fs14 {
  font-size: 14px;
  color: #333;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_top_satei .sec_top_satei_inner {
    display: grid;
    grid-template-columns: 55% 38%;
    align-items: center;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  body#top_page .sec_top_satei .sec_top_satei_inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_top_satei .sec_top_satei_inner .top_satei_text {
    padding-right: 50px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_top_satei .sec_top_satei_inner .top_satei_text::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 42px;
    background-color: #ffea01;
    clip-path: polygon(24px 50%, 0% 0%, 0% 42px);
    margin: auto;
    inset: 0 8% 0 auto;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  body#top_page .sec_top_satei .sec_top_satei_inner .top_satei_text::before {
    inset: 0 20px 0 auto;
  }
}
body#top_page .sec_top_satei .sec_top_satei_inner .top_satei_text .pc {
  font-size: clamp(20px, 2.4vw, 40px);
  text-align: left;
  width: fit-content;
  margin: 0 auto 40px;
}
body#top_page .purchase {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  body#top_page .purchase .top_slider {
    padding: 0 80px;
  }
}
body#top_page .purchase .top_slider .slick-slide {
  margin: 10px;
  background: #f9fce3;
}
body#top_page .purchase .top_slider .p_purchase_list__item {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  body#top_page .purchase .top_slider .p_purchase_list__item {
    padding: 20px;
  }
}
body#top_page .purchase .top_slider .p_purchase_card__head {
  font-weight: bold;
  text-align: center;
}
body#top_page .purchase .top_slider .p_purchase_card__media {
  aspect-ratio: 27/17;
}
body#top_page .purchase .top_slider .p_purchase_card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#top_page .purchase .top_slider .p_purchase_card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0;
  /* @media (min-width: 768px) and (max-width: 1400px) {
  flex-direction: column;
  } */
}
body#top_page .purchase .top_slider .p_purchase_card__price .souba {
  background: #01a832;
  width: 30%;
  position: relative;
  text-align: center;
}
body#top_page .purchase .top_slider .p_purchase_card__price .souba .p_purchase_card__souba {
  line-height: 1.3;
  padding: 5px 0;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: min(1vw, 14px);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body#top_page .purchase .top_slider .p_purchase_card__price .souba .p_purchase_card__souba {
    font-size: min(14px, 3.5vw);
  }
}
body#top_page .purchase .top_slider .p_purchase_card__price .souba span {
  font-size: 17px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body#top_page .purchase .top_slider .p_purchase_card__price .souba span {
    font-size: min(17px, 4vw);
  }
}
body#top_page .purchase .top_slider .p_purchase_card__price .arrow {
  position: relative;
}
body#top_page .purchase .top_slider .p_purchase_card__price .arrow::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 14px;
  background-color: #ffea01;
  clip-path: polygon(8px 50%, 0% 0%, 0% 14px);
  margin: auto;
  inset: 0 auto 0 -4px;
}
body#top_page .purchase .top_slider .p_purchase_card__price .kaitori {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60%;
  gap: 5px;
}
body#top_page .purchase .top_slider .p_purchase_card__price .kaitori > p {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
}
body#top_page .purchase .top_slider .p_purchase_card__price .kaitori > div {
  white-space: nowrap;
  display: flex;
  align-items: baseline;
}
body#top_page .purchase .top_slider .p_purchase_card__price .kaitori .p_purchase_card__highlight_amount {
  color: #f0101d;
  font-weight: bold;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 56px;
  line-height: 1;
}
body#top_page .purchase .top_slider .p_purchase_card__price .kaitori .p_purchase_card__highlight_unit {
  color: #f0101d;
  font-weight: bold;
  font-size: 18px;
  font-weight: 900;
}
body#top_page .purchase .top_slider .p_purchase_card__spec_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body#top_page .purchase .top_slider .p_purchase_card__spec_row dt {
  width: 70px;
  background: #fff;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 500;
}
body#top_page .purchase .top_slider .p_purchase_card__spec_row dd {
  width: calc(100% - 80px);
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 18px);
}
body#top_page .purchase .slick-dots li button::before {
  background: #ccc;
}
body#top_page .purchase .slick-dots li.slick-active button::before {
  background: #01a832;
}
body#top_page .sec_voice {
  background: #d9f2e0;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_voice #voice_slider {
    padding: 0 80px;
  }
}
body#top_page .sec_voice #voice_slider .slick-slide {
  margin: 10px;
  background: #fff;
}
body#top_page .sec_voice #voice_slider .voice_slide_item {
  background: #fff;
  padding: 15px 20px;
}
body#top_page .sec_voice #voice_slider .slider_head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
body#top_page .sec_voice #voice_slider .slider_head .icon {
  width: 80px;
  height: 80px;
}
body#top_page .sec_voice #voice_slider .slider_head dl {
  display: flex;
  gap: 8px;
}
body#top_page .sec_voice #voice_slider .slider_head dl dt {
  background: #e4e4e4;
  border-radius: 20px;
  text-align: center;
  padding: 2px 20px;
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
body#top_page .sec_voice #voice_slider .slider_head dl dd {
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
body#top_page .sec_voice #voice_slider .slider_head h4 {
  line-height: 1.3;
  color: #01a832;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
}
body#top_page .sec_voice #voice_slider .slider_body {
  margin-top: 1px;
}
body#top_page .sec_voice #voice_slider .slider_body p {
  font-weight: 400;
  color: #333;
  font-size: clamp(14px, 1.4vw, 16px);
}
body#top_page .sec_interview {
  background: #f9fce3;
  padding: 50px 0;
}
body#top_page .sec_interview .index_lead {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_interview .index_lead {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_interview .interview_slider {
    padding: 0 80px;
  }
}
body#top_page .sec_interview .interview_slider .slick-slide {
  margin: 0 10px;
  height: auto;
  background: #fff;
  border-radius: 10px;
}
body#top_page .sec_interview .interview_slider .slick-slide > div {
  height: 100%;
}
body#top_page .sec_interview .interview_slider .slick-track {
  display: flex !important;
  align-items: stretch;
  padding: 30px 0 20px;
}
body#top_page .sec_interview .interview_slider .interview_card {
  height: 100%;
}
body#top_page .sec_interview .interview_slider .interview_card a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 4px 4px 7px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_interview .interview_slider .interview_card a {
    padding: 15px;
  }
}
body#top_page .sec_interview .interview_slider .interview_card a:hover {
  background: #f9fffb;
  box-shadow: 0 0 0 2px #01a832;
  opacity: 1;
}
body#top_page .sec_interview .interview_slider .interview_card a:hover .interview_ttl {
  color: #01a832;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail {
  display: flex;
  gap: 0 17px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail .detail_taxonomy {
  display: flex;
  gap: 16px;
  width: 100%;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail .detail_taxonomy .interview_manufacturer {
  position: relative;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail .detail_taxonomy .interview_manufacturer::before {
  position: absolute;
  content: "";
  background: #333;
  width: 1px;
  height: 14px;
  margin: auto;
  inset: 0 -8px 0 auto;
  transform: rotate(15deg);
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail .detail_taxonomy .interview_manufacturer::before {
    height: 12px;
  }
}
body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail p {
  color: #333;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.06em;
  font-weight: 400;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail p a {
  color: #333;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_interview .interview_slider .interview_card .interview_info_detail p.interview_network {
    width: 100%;
  }
}
body#top_page .sec_interview .interview_slider .interview_card figure {
  aspect-ratio: 501/376;
  overflow: hidden;
  margin-bottom: 10px;
}
body#top_page .sec_interview .interview_slider .interview_card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_ttl {
  font-weight: bold;
  line-height: 1.5;
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 3em; /* 2行分の固定高さ */
}
body#top_page .sec_interview .interview_slider .interview_card .interview_conts {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: normal;
}
body#top_page .sec_interview .interview_slider .interview_card .interview_conts strong {
  color: #01a832;
  font-weight: bold;
}
body#top_page .sec_interview .interview_slider .interview_card time {
  color: #777;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.06em;
  display: block;
  margin: 0 0 0 auto;
  font-weight: 400;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_interview .interview_slider .interview_card time {
    width: 100%;
  }
}
body#top_page .sec_step {
  padding: 50px 0;
}
body#top_page .sec_step > .under_wrap {
  max-width: 1720px;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .index_ttl .index_ttl_sub {
    font-size: min(28px, 6.5vw);
  }
}
body#top_page .sec_step .step_items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_items {
    flex-direction: column;
    gap: 15px;
  }
}
body#top_page .sec_step .step_items::after {
  position: absolute;
  content: "";
  background: #deef68;
  width: 20px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_step .step_items::after {
    width: 90%;
    height: 30px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .sec_step .step_items::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_items::after {
    display: block;
  }
}
body#top_page .sec_step .step_item {
  background: #d9f2e0;
  padding: 15px;
  display: flex;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_step .step_item {
    flex-direction: column;
    align-items: center;
    width: calc(20% - 20px);
    padding: 20px 10px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .sec_step .step_item {
    width: calc(50% - 20px);
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_item {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .sec_step .step_item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: #deef68;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_item:nth-child(odd)::before {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .sec_step .step_item:nth-child(3)::before {
    left: -10%;
    width: 110vw;
  }
}
@media only screen and (max-width: 960px) {
  body#top_page .sec_step .step_item:nth-child(5)::before {
    left: -30%;
    width: 30vw;
  }
}
body#top_page .sec_step .step_item figure {
  width: 65px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_step .step_item figure {
    height: 100px;
    width: 100%;
    text-align: center;
  }
}
body#top_page .sec_step .step_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_item .txtarea {
    width: calc(100% - 80px);
  }
}
body#top_page .sec_step .step_item h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_step .step_item h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_item h3 {
    font-size: min(22px, 4.5vw);
  }
}
body#top_page .sec_step .step_item h3 span {
  background: #ffea01;
  border-radius: 20px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 0 10px;
  font-weight: 600;
}
body#top_page .sec_step .step_item p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_step .step_item p {
    font-size: min(16px, 3.7vw);
  }
}
body#top_page .sec_try {
  padding: 50px 0;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_try .under_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_try .try_in {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
body#top_page .sec_try .try_ttl {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_try .try_ttl {
    width: 100%;
    margin-bottom: 40px;
  }
}
body#top_page .sec_try .try_ttl .with_side_slash {
  font-size: clamp(28px, 2.8vw, 32px);
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_try .try_ttl .with_side_slash {
    font-size: min(28px, 6.5vw);
  }
}
body#top_page .sec_try .try_ttl .bg {
  color: #fff;
  font-size: 128%;
  line-height: 1;
  position: relative;
}
body#top_page .sec_try .try_ttl .bg::after {
  position: absolute;
  content: "";
  background: #01a832;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_try figure {
    width: 50%;
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_try .txtarea {
    width: 50%;
  }
}
body#top_page .sec_try .txtarea .gbtn {
  max-width: 700px;
}
body#top_page .sec_try ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
body#top_page .sec_try ul li {
  background: #fff;
  border-radius: 4px;
  padding: 2px 14px;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_try ul li {
    font-size: min(20px, 4.5vw);
  }
}
body#top_page .sec_try h3 {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}
body#top_page .sec_try h3 span {
  font-size: 128%;
}
body#top_page .sec_try h4 {
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_try h4 {
    font-size: min(16px, 4vw);
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_try .btn_rounded {
    width: 500px;
  }
}
body#top_page .sec_faq {
  background: #f9fce3;
  padding: 50px 0;
}
body#top_page .sec_faq .faq_ttl {
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_faq .faq_ttl {
    margin-bottom: 25px;
  }
}
body#top_page .sec_faq .faq_ttl span {
  position: relative;
  padding-left: 2.2em;
  font-weight: bold;
  font-size: clamp(22px, 2.2vw, 26px);
  display: block;
}
body#top_page .sec_faq .faq_ttl span::after {
  position: absolute;
  content: "Q";
  background: #01a832;
  color: #fff;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: bold;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin: auto;
  inset: 0 auto 0 0;
  text-align: center;
}
body#top_page .sec_faq .question_block div + div {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_faq .question_block div + div {
    margin-top: 20px;
  }
}
body#top_page .sec_faq .question_block dl {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  font-size: clamp(16px, 1.8vw, 20px);
}
body#top_page .sec_faq .question_block dl dt {
  font-weight: bold;
  position: relative;
  position: relative;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 20px 40px 20px 20px;
}
body#top_page .sec_faq .question_block dl dt::before, body#top_page .sec_faq .question_block dl dt::after {
  position: absolute;
  content: "";
  background: #01a832;
  width: 16px;
  height: 2px;
  margin: auto;
  inset: 0 20px 0 auto;
  transition: 0.3s ease-in-out;
}
body#top_page .sec_faq .question_block dl dt::after {
  transform: rotate(90deg);
}
body#top_page .sec_faq .question_block dl dt.on::after {
  transform: rotate(180deg);
}
body#top_page .sec_faq .question_block dl dd {
  font-size: clamp(14px, 1.6vw, 18px);
  display: none;
  font-weight: 400;
  color: #333;
  padding: 0 20px 20px 20px;
  letter-spacing: 0.04em;
}
body#top_page .sec_middle_hub {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
body#top_page .sec_middle_hub .hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
body#top_page .sec_middle_hub .hub_item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_middle_hub .hub_item.hub01, body#top_page .sec_middle_hub .hub_item.hub04 {
    width: calc(60% - 7px);
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_middle_hub .hub_item.hub02, body#top_page .sec_middle_hub .hub_item.hub03 {
    width: calc(40% - 7px);
  }
}
body#top_page .sec_middle_hub .hub_item a {
  display: block;
  border-radius: 10px;
  border: 1px solid #ccc;
  height: 100%;
  width: 100%;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_middle_hub .hub_item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
body#top_page .sec_middle_hub .hub_item .hub_head {
  border-radius: 10px 10px 0 0;
  background: #fffdb7;
  display: flex;
  align-items: center;
  padding: 18px;
  gap: 12px;
}
body#top_page .sec_middle_hub .hub_item .hub_head figure {
  width: 60px;
  height: 60px;
}
body#top_page .sec_middle_hub .hub_item .hub_head h3 {
  color: #01a832;
  font-size: clamp(22px, 2.2vw, 26px);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
body#top_page .sec_middle_hub .hub_item .hub_head h3 span {
  color: #000;
  font-size: 72%;
  display: block;
}
body#top_page .sec_middle_hub .hub_item .hub_txt {
  padding: 16px 20px;
}
body#top_page .sec_middle_hub .hub_item .hub_txt p {
  color: #333;
  letter-spacing: 0.04em;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 500;
}
body#top_page .sec_middle_hub .hub_item .hub_txt ul li {
  letter-spacing: 0.04em;
  position: relative;
  font-weight: 500;
  padding-left: 20px;
}
body#top_page .sec_middle_hub .hub_item .hub_txt ul li::after {
  content: "";
  position: absolute;
  margin: auto;
  inset: 0 auto 0 0;
  width: 10px;
  height: 8px;
  border-left: 2px solid #f0101d;
  border-bottom: 2px solid #f0101d;
  transform: rotate(-45deg);
}
body#top_page .sec_middle_hub .hub_item .hub_link {
  background: #01a832;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 12px 33px 12px 0;
  border-radius: 0 0 10px 10px;
  text-align: right;
}
body#top_page .sec_middle_hub .hub_item .hub_link::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
body#top_page .sec_index_btnarea {
  background: #d9f2e0;
  padding: 50px 0;
}
body#top_page .sec_index_btnarea > .under_wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  body#top_page .sec_index_btnarea > .under_wrap {
    padding: 0 30px;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_btnarea .btnarea_box {
    width: 35%;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_btnarea .btnarea_box.long {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  body#top_page .sec_index_btnarea .btnarea_box.long .gbtn {
    display: flex;
    gap: 10px;
  }
}
body#top_page .sec_index_btnarea .comment {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin-bottom: 25px;
}
body#top_page .sec_index_btnarea .comment::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
body#top_page .region {
  padding: 50px 0 0;
}
@media only screen and (min-width: 768px) {
  body#top_page .news .ttl_wrap {
    display: flex;
    justify-content: space-between;
  }
}
body#top_page .news .ttl_wrap .index_ttl {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body#top_page .news .news_btn {
    display: none;
  }
}

/* =======================================

    共通 要素

======================================= */
#contents {
  position: relative;
  z-index: 49;
  display: block;
  background: #fff;
  margin-top: 150px;
}
@media only screen and (max-width: 1260px) {
  #contents {
    margin-top: 145px;
  }
}
@media only screen and (max-width: 767px) {
  #contents {
    margin-top: 60px;
  }
}

#wrap {
  overflow: hidden;
}

.ta_l {
  text-align: left;
}

.ta_r {
  text-align: right;
}

.ta_c {
  text-align: center;
}

.tel-disable {
  pointer-events: none;
  text-decoration: none !important;
}

@media only screen and (max-width: 767px) {
  .ta_lsp {
    text-align: left;
  }
}
.under_wrap {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}

.under_wrap2 {
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}

.under_wrap3,
.content {
  max-width: 960px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.no_link {
  pointer-events: none;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.color1 {
  color: #f40618;
}

.color2 {
  color: #0cad2e;
}

.color3 {
  color: #ffa31e;
}

.color4 {
  color: #f0101d;
}

.color5 {
  color: #01a832;
}

.red_txt {
  color: #e00000;
}

.c_pageTitle {
  background: #0cad2e;
  color: #fff;
  padding: 33px 10px;
  font-size: 40px;
  text-align: center;
}
.c_pageTitle__title {
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .c_pageTitle {
    font-size: 23px;
    padding: 25px 10px;
  }
  .c_pageTitle__title {
    font-size: 15px;
  }
}

.l-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 10px;
  margin-top: 8px;
  margin-bottom: 75px;
  font-size: 14px;
  color: #777777;
}
.l-breadcrumb a {
  opacity: 1;
}
.l-breadcrumb a:hover {
  text-decoration: underline;
}
.l-breadcrumb p {
  display: inline-block;
  text-align: left;
}
.l-breadcrumb .l-breadcrumb-inner > span:last-child > a,
.l-breadcrumb .l-breadcrumb-inner > span:last-child {
  color: #777777;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .l-breadcrumb {
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.gborder_ttl {
  font-size: 23px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #0cad2e;
}
@media only screen and (max-width: 767px) {
  .gborder_ttl {
    font-size: 20px;
  }
}

#contents {
  font-weight: normal;
  font-size: 16px;
}

body#top_page #contents,
#top_resemble #contents,
#area_template #contents {
  font-weight: bold;
  font-size: 18px;
}

body:not(#top_page) #contents .contact_bnsec:last-of-type {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  body:not(#top_page) #contents .contact_bnsec:last-of-type {
    margin-top: 70px;
  }
}

.no_link {
  pointer-events: none;
  opacity: 0.4;
}

body#line .ttl_border,
body#column .ttl_border {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
body#line .ttl_border > span,
body#column .ttl_border > span {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 8px solid #0cad2e;
}
@media only screen and (max-width: 767px) {
  body#line .ttl_border,
  body#column .ttl_border {
    font-size: 6.67vw;
  }
}

.fs20 {
  font-size: 20px;
}

.fs18 {
  font-size: 18px;
}

.fs14 {
  font-size: 14px;
}

.fs16 {
  font-size: 16px;
}

.fs12 {
  font-size: 12px;
}

@media only screen and (max-width: 767px) {
  .fs20 {
    font-size: 15px;
  }
  .fs18 {
    font-size: 16px;
  }
}
.link_under {
  text-decoration: underline;
}
.link_under:hover {
  text-decoration: none;
}

body#yard .ttl_txt,
body#purchase .ttl_txt,
body#network .ttl_txt {
  font-size: 46px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 40px;
}
body#yard .ttl_txt > span,
body#purchase .ttl_txt > span,
body#network .ttl_txt > span {
  display: block;
}
body#yard .ttl_txt > span.en,
body#purchase .ttl_txt > span.en,
body#network .ttl_txt > span.en {
  color: #00a831;
  font-size: 18px;
}
body#yard .ttl,
body#purchase .ttl,
body#network .ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 45px;
}
body#yard .ttl > span,
body#purchase .ttl > span,
body#network .ttl > span {
  font-size: 119.05%;
}
body#yard .ttl_border,
body#purchase .ttl_border,
body#network .ttl_border {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
body#yard .ttl_border > span,
body#purchase .ttl_border > span,
body#network .ttl_border > span {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 8px solid #0cad2e;
}
@media only screen and (max-width: 767px) {
  body#yard .ttl,
  body#purchase .ttl,
  body#network .ttl {
    font-size: 6.67vw;
    margin-bottom: 30px;
  }
  body#yard .ttl_txt,
  body#purchase .ttl_txt,
  body#network .ttl_txt {
    font-size: 6.94vw;
  }
  body#yard .ttl_txt > span.en,
  body#purchase .ttl_txt > span.en,
  body#network .ttl_txt > span.en {
    font-size: 2.67vw;
  }
  body#yard .ttl_border,
  body#purchase .ttl_border,
  body#network .ttl_border {
    font-size: 6.67vw;
  }
  body#yard .ttl_border > span,
  body#purchase .ttl_border > span,
  body#network .ttl_border > span {
    border-bottom-width: 5px;
  }
}

.obi_common_txt {
  padding: 55px 0;
  background: #ffffdd;
}
.obi_common_txt h3 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .obi_common_txt {
    padding: 30px 0;
  }
  .obi_common_txt h3 {
    font-size: 15px;
    text-align: left;
  }
}

body#kobutsu .l-breadcrumb,
body#glossary .l-breadcrumb,
body#faq .l-breadcrumb,
body#area .l-breadcrumb,
body#simulator .l-breadcrumb {
  margin-bottom: 10px;
}

body#kobutsu .kobutsu_sec1 .txt_listbox {
  display: flex;
}
body#kobutsu .kobutsu_sec1 .txt_listbox > ul {
  width: 33.3333333%;
  padding-right: 15px;
}
body#kobutsu .kobutsu_sec1 .txt_listbox > ul li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}
body#kobutsu .kobutsu_sec1 .txt_listbox > ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
  background: #ffea01;
}
@media only screen and (max-width: 767px) {
  body#kobutsu .kobutsu_sec1 .txt_listbox {
    display: block;
  }
  body#kobutsu .kobutsu_sec1 .txt_listbox > ul {
    width: auto;
    padding-right: 0;
  }
}

body#announcement .content {
  max-width: 960px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}

body#announcement .announcement .wpTxt {
  margin-bottom: 20px;
}
body#announcement .announcement .txtList > li {
  text-indent: -2em;
  padding-left: 2em;
  margin-bottom: 20px;
}
body#announcement .announcement .txtList > li.no_indent {
  text-indent: 0;
  padding-left: 0;
}
body#announcement .announcement .txtList > li:last-child {
  margin-bottom: 0;
}
body#announcement .announcement .txtList > li > p {
  margin-bottom: 7px;
}
body#announcement .announcement .txtList > li > p:last-child {
  margin-bottom: 0;
}
body#announcement .announcement .txtList > li .txtList_ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 11px;
  display: block;
}
body#announcement .announcement .comBorTxt {
  margin-bottom: 35px;
  padding: 0 0 30px;
  border-bottom: 1px solid #707070;
}
body#announcement .announcement .enactment {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement {
    font-size: 14px;
  }
  body#announcement .announcement .txtList > li .txtList_ttl {
    font-size: 15px;
  }
}
body#announcement .announcement .gborder_ttl.center {
  text-align: center;
}
body#announcement .announcement .intro_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement .intro_ttl {
    font-size: 16px;
  }
}
body#announcement .announcement .intro_ttl + p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement .intro_ttl + p {
    font-size: 16px;
  }
}
body#announcement .announcement .txtDl {
  margin: 40px 0 77px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 0;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement .txtDl {
    align-items: flex-start;
  }
}
body#announcement .announcement .txtDl dt {
  float: left;
  color: #5db31e;
  font-size: 48px;
  line-height: 1;
  font-weight: bold;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body#announcement .announcement .txtDl dd {
  line-height: 1.6;
  position: relative;
  width: calc(100% - 80px);
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement .txtDl dd {
    font-size: 16px;
  }
}
body#announcement .announcement .txtDl dd:after {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #707070;
  content: "";
}
body#announcement .announcement .midTxt {
  margin-bottom: 60px;
  line-height: 1.6;
  text-align: center;
}
body#announcement .announcement .rTxt {
  margin: 0 35px 110px;
  line-height: 1.8;
  text-align: right;
}
body#announcement .announcement .bottomTxt {
  margin: 60px auto 30px;
  line-height: 1.6;
  text-align: left;
}
body#announcement .announcement .comContactBox {
  padding: 10px;
  border: 1px solid #5db31e;
}
body#announcement .announcement .comContactBox p {
  margin: 0 15px 8px 15px;
  padding: 0 10px 15px;
  line-height: 1.6;
  border-bottom: 2px dotted #707070;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement .comContactBox p {
    margin: 0 0 15px;
  }
}
body#announcement .announcement .comContactBox p .method {
  display: block;
  font-weight: bold;
}
body#announcement .announcement .comContactBox p:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  body#announcement .announcement .comContactBox p:last-child {
    margin: 0;
  }
}
body#announcement .announcement .comContactBox .title {
  margin: 0 0 25px;
  padding: 10px;
  color: #fff;
  text-align: center;
  background-color: #5db31e;
}

body#company .content {
  max-width: 960px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}

body#company .company .company_table > table {
  width: 100%;
}
body#company .company .company_table tbody tr:first-child th {
  border-top: 1px solid #0cad2e;
}
body#company .company .company_table tbody tr:first-child td {
  border-top: 1px solid #dddddd;
}
body#company .company .company_table th,
body#company .company .company_table td {
  padding: 15px 15px;
}
body#company .company .company_table th {
  border-bottom: 1px solid #0cad2e;
  text-align: left;
  font-weight: bold;
  width: 200px;
}
body#company .company .company_table td {
  border-bottom: 1px solid #dddddd;
}
body#company .company .company_table td .link {
  text-decoration: underline;
}
body#company .company .company_table td .link:hover {
  text-decoration: none;
  color: #333333;
}
body#company .company .company_table td .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 37.5%;
  position: relative;
}
body#company .company .company_table td .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
body#company .company .company_table td .company_name {
  font-size: 18px;
  font-weight: bold;
}
body#company .company .company_table td .circle_list > li {
  margin-bottom: 7px;
  padding-left: 16px;
  position: relative;
}
body#company .company .company_table td .circle_list > li:last-child {
  margin-bottom: 0;
}
body#company .company .company_table td .circle_list > li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  background: #ffea01;
}
body#company .company .fmark {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body#company .company .fmark > li {
  width: 29.17%;
}
body#company .company .fmark > li:not(:nth-child(-n+3)) {
  margin-top: 5.5%;
}
@media only screen and (max-width: 767px) {
  body#company .company .company_table > table,
  body#company .company .company_table tbody,
  body#company .company .company_table tr,
  body#company .company .company_table th,
  body#company .company .company_table td {
    display: block;
    width: 100%;
  }
  body#company .company .company_table tbody tr:first-child th {
    border-top-color: #dddddd;
  }
  body#company .company .company_table tbody tr:first-child td {
    border-top: 0;
  }
  body#company .company .company_table th,
  body#company .company .company_table td {
    padding: 15px 0;
  }
  body#company .company .company_table th {
    border-bottom: 0;
    padding-bottom: 10px;
  }
  body#company .company .company_table td {
    padding-top: 0;
  }
}

body#document .content {
  max-width: 960px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}

body#document .document .document_tab {
  display: flex;
  justify-content: space-between;
}
body#document .document .document_tab > li {
  width: 49.59%;
}
body#document .document .document_tab > li a {
  display: block;
  background: #e3f5e9;
  font-size: 20px;
  font-weight: bold;
  opacity: 1;
  padding: 26px 10px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  color: #555555;
  position: relative;
}
body#document .document .document_tab > li a.active {
  background: #0cad2e;
  color: #fff;
}
body#document .document .document_tab > li a.active::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 14px 0 14px;
  border-color: #0cad2f transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
body#document .document .document_tab > li a > span {
  font-size: 140%;
}
body#document .document .document_contents {
  display: none;
}
body#document .document .document_contents.active {
  display: block;
}
body#document .document .document_contents h4 {
  background: #deef68;
  font-size: 20px;
  padding: 12px 20px;
  margin-bottom: 25px;
  font-weight: bold;
}
body#document .document .document_contents .item_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.38666%;
  text-align: center;
  font-weight: bold;
}
body#document .document .document_contents .item_list > li {
  width: 23.96%;
}
body#document .document .document_contents .item_list > li:not(:nth-child(-n+4)) {
  margin-top: 30px;
}
body#document .document .document_contents .item_list > li .img {
  margin-bottom: 10px;
}
body#document .document .document_contents .item_list > li .img img {
  width: 100%;
  aspect-ratio: 1/0.66;
  object-fit: contain;
  object-position: center center;
}
body#document .document .document_contents .item_list > li .download_btn {
  margin-top: 10px;
  text-align: center;
}
body#document .document .document_contents .item_list > li .download_btn a {
  display: block;
  padding: 5px 10px;
  border: 2px solid #0cad2e;
  border-radius: 17px;
  position: relative;
}
body#document .document .document_contents .item_list > li .download_btn a::before {
  content: "";
  display: block;
  width: 12px;
  height: 14px;
  background: url("../images/document/pdf.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
body#document .document .document_contents .certificate_block {
  position: relative;
}
body#document .document .document_contents .certificate_block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  background: #ffffdd;
  z-index: -1;
}
body#document .document .document_contents .certificate_block .certificate_item {
  margin-bottom: 43px;
  border: 2px solid #000000;
  background: #fff;
}
body#document .document .document_contents .certificate_block .certificate_item .item_head dl {
  display: flex;
}
body#document .document .document_contents .certificate_block .certificate_item .item_head dl dt {
  width: 100px;
  padding: 7px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffea01;
}
body#document .document .document_contents .certificate_block .certificate_item .item_head dl dt > span {
  font-size: 125%;
}
body#document .document .document_contents .certificate_block .certificate_item .item_head dl dd {
  width: calc(100% - 100px);
  font-size: 20px;
  font-weight: bold;
  background: #f9f9f9;
  padding: 10px 16px;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body {
  padding: 20px 25px;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block {
  display: flex;
  justify-content: space-between;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block > div:nth-child(1) {
  width: 56.3%;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block > div:nth-child(2) {
  width: 41.95%;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .check {
  display: flex;
  flex-wrap: wrap;
  background: #e3f5e9;
  font-weight: bold;
  margin-bottom: 16px;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .check > dt {
  width: 90px;
  position: relative;
  background: #0cad2e;
  color: #fff;
  padding: 6px 10px;
  display: flex;
  align-items: center;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .check > dt::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 7px;
  border-color: transparent transparent transparent #0cad2f;
}
body#document .document .document_contents .certificate_block .certificate_item .item_body .check > dd {
  width: calc(100% - 90px);
  padding: 6px 10px;
}
body#document .document .document_contents .certificate_block .certificate_item:last-child {
  margin-bottom: 0;
}
body#document .document .document_contents .circle_list > li {
  margin-bottom: 7px;
  padding-left: 16px;
  position: relative;
}
body#document .document .document_contents .circle_list > li:last-child {
  margin-bottom: 0;
}
body#document .document .document_contents .circle_list > li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  background: #ffea01;
}
body#document .document .document_contents .tel_block {
  padding: 25px 15px;
  background: #ffffdd;
  text-align: center;
  font-weight: bold;
  font-size: 50px;
  line-height: 1.1;
}
body#document .document .document_contents .tel_block a {
  color: #ffa31e;
}
body#document .document .document_contents .tel_block img {
  position: relative;
  top: -5px;
}
@media only screen and (max-width: 767px) {
  body#document .document .document_tab > li a {
    font-size: 15px;
    padding: 12px 10px;
  }
  body#document .document .document_tab > li a > span {
    font-size: 125%;
  }
  body#document .document .document_tab > li a.active:before {
    border-width: 10px 8px 0 8px;
  }
  body#document .document .document_contents h4 {
    font-size: 17px;
  }
  body#document .document .document_contents .item_list {
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
  }
  body#document .document .document_contents .item_list > li {
    width: 48.5%;
  }
  body#document .document .document_contents .item_list > li:not(:nth-child(-n+2)) {
    margin-top: 30px;
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_body {
    padding: 15px 15px;
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_head dl dt {
    font-size: 13px;
    width: 70px;
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_head dl dd {
    font-size: 15px;
    width: calc(100% - 70px);
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block {
    display: block;
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block > div {
    width: auto !important;
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block > div:nth-child(1) {
    margin-bottom: 10px;
  }
  body#document .document .document_contents .certificate_block .certificate_item .item_body .img2block > div:nth-child(2) {
    text-align: center;
  }
  body#document .document .document_contents .tel_block {
    font-size: 30px;
  }
  body#document .document .document_contents .tel_block img {
    max-width: 35px;
    top: -2px;
  }
}

#faq .faq .faq_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.38666%;
}
#faq .faq .faq_nav > li {
  width: 23.96%;
  margin-bottom: 20px;
}
#faq .faq .faq_nav > li a {
  display: block;
  background: #0cad2e;
  color: #fff;
  position: relative;
  padding: 12px 25px;
  text-align: center;
  border-radius: 25px;
  filter: drop-shadow(0px 4px 0px #00661a);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.2;
  transition: 0.4s ease-in-out;
}
#faq .faq .faq_nav > li a:hover {
  filter: drop-shadow(0px 0px 0px #fff);
  transform: translateY(3px);
}
#faq .faq .faq_nav > li a::before {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 41%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
#faq .faq .faq_items .item {
  margin-bottom: 75px;
}
#faq .faq .faq_items .item:last-child {
  margin-bottom: 0;
}
#faq .faq .faq_items .dl_block dl {
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
#faq .faq .faq_items .dl_block dl:last-child {
  margin-bottom: 0;
}
#faq .faq .faq_items .dl_block dl dt,
#faq .faq .faq_items .dl_block dl dd > div.answer_inner {
  position: relative;
}
#faq .faq .faq_items .dl_block dl dt::before,
#faq .faq .faq_items .dl_block dl dd > div.answer_inner::before {
  content: "";
  background: url("../images/qa_icon1.svg") no-repeat center center;
  background-size: contain;
  width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 9px;
  left: 27px;
}
#faq .faq .faq_items .dl_block dl dd > div.answer_inner::before {
  background: url("../images/qa_icon2.svg") no-repeat center center;
  background-size: contain;
}
#faq .faq .faq_items .dl_block dl dt {
  padding: 18px 46px;
  padding-left: 87px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}
#faq .faq .faq_items .dl_block dl dt::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  right: 25px;
  top: 20px;
  transition: 0.3s ease-in-out;
}
#faq .faq .faq_items .dl_block dl dt.active::after {
  transform: rotate(-135deg);
  top: 34px;
}
#faq .faq .faq_items .dl_block dl dd {
  background: #ffffdd;
  display: none;
}
#faq .faq .faq_items .dl_block dl dd a {
  text-decoration: underline;
  color: blue;
}
#faq .faq .faq_items .dl_block dl dd a:hover {
  text-decoration: none;
}
#faq .faq .faq_items .dl_block dl dd > div.answer_inner {
  position: relative;
  padding: 18px 25px;
  padding-left: 87px;
}
@media only screen and (max-width: 767px) {
  #faq .faq .faq_items .item {
    margin-bottom: 40px;
  }
  #faq .faq .faq_nav {
    justify-content: space-between;
  }
  #faq .faq .faq_nav > li {
    width: 49%;
    font-size: 14px;
  }
  #faq .faq .faq_nav > li a:before {
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
  #faq .faq .faq_items .dl_block dl dt {
    font-size: 17px;
  }
  #faq .faq .faq_items .dl_block dl dd > div.answer_inner:before, #faq .faq .faq_items .dl_block dl dt:before {
    width: 38px;
    height: 38px;
    font-size: 20px;
    top: 15px;
    left: 18px;
  }
  #faq .faq .faq_items .dl_block dl dd > div.answer_inner, #faq .faq .faq_items .dl_block dl dt {
    padding: 18px 37px;
    padding-left: 74px;
  }
  #faq .faq .faq_items .dl_block dl dt::after {
    right: 15px;
    width: 12px;
    height: 12px;
    border-width: 1px;
    top: 23px;
  }
  #faq .faq .faq_items .dl_block dl dd {
    font-size: 14px;
  }
}

body#glossary .page_nav ul {
  max-width: 790px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body#glossary .page_nav ul > li {
  width: 48.11%;
}
body#glossary .page_nav ul > li a {
  display: block;
  background: #0cad2e;
  color: #fff;
  position: relative;
  padding: 17px 18px;
  text-align: center;
  border-radius: 25px;
  filter: drop-shadow(0px 4px 0px #00661a);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1.2;
  transition: 0.4s ease-in-out;
}
body#glossary .page_nav ul > li a:hover {
  filter: drop-shadow(0px 0px 0px #fff);
  transform: translateY(3px);
}
body#glossary .page_nav ul > li a::before {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  top: 41%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media only screen and (max-width: 767px) {
  body#glossary .page_nav ul {
    gap: 20px;
  }
  body#glossary .page_nav ul > li {
    width: 100%;
  }
  body#glossary .page_nav ul > li a {
    font-size: 14px;
  }
  body#glossary .page_nav ul > li a::before {
    width: 6px;
    height: 6px;
    border-width: 1px;
  }
}

body#glossary .glossary_bg > section {
  padding: 90px 0;
}
body#glossary .glossary_bg > section:nth-child(2n) {
  background: #f9f9f9;
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary_bg > section {
    padding: 50px 0;
  }
}

body#glossary .glossary .page_ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
body#glossary .glossary .page_ttl > span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 8px solid #0cad2e;
}
body#glossary .glossary .single_inner p {
  font-size: 21px;
}
@media only screen and (max-width: 960px) {
  body#glossary .glossary .single_inner p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary .single_inner p {
    font-size: 16px;
  }
}
body#glossary .glossary .glossary_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.826%;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 20px;
}
body#glossary .glossary .glossary_nav > li {
  width: 8.34%;
}
body#glossary .glossary .glossary_nav > li a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #000000;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
body#glossary .glossary .glossary_nav > li a.no_active {
  background: #cccccc;
  pointer-events: none;
  color: #777777;
  border-color: #cccccc;
}
body#glossary .glossary .glossary_nav > li a:hover {
  background: #0cad2e;
  border-color: #0cad2e;
  color: #fff;
}
body#glossary .glossary .glossary_connection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary .glossary_connection {
    grid-template-columns: repeat(1, 1fr);
  }
}
body#glossary .glossary .glossary_connection li a {
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  display: block;
  padding: 18px 40px 18px 25px;
  padding-right: 25px;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary .glossary_connection li a {
    font-size: 16px;
    padding: 13px 40px 13px 25px;
  }
}
body#glossary .glossary .glossary_connection li a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(-45deg);
  position: absolute;
  margin: auto;
  inset: 0 20px 0 auto;
  transition: 0.3s ease-in-out;
}
body#glossary .glossary .main_items {
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 3.125%;
}
body#glossary .glossary .main_items > li {
  width: 31.25%;
  margin-bottom: 12px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary .main_items > li {
    width: 100%;
  }
}
body#glossary .glossary .main_items > li a {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  height: 100%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#glossary .glossary .main_items > li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#glossary .glossary .main_items > li .item_body {
  padding: 15px 15px;
}
body#glossary .glossary .main_items > li .item_body .catdl {
  font-size: 14px;
  margin-bottom: 12px;
}
body#glossary .glossary .main_items > li .item_body .catdl dt ul {
  letter-spacing: -0.5em;
}
body#glossary .glossary .main_items > li .item_body .catdl dt ul > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 6px;
  padding: 3px 10px;
  background: #ffea01;
}
body#glossary .glossary .main_items > li .item_body .catdl dd {
  font-size: 12px;
  position: relative;
  top: 5px;
  color: #555555;
}
body#glossary .glossary .main_items > li .item_body h4 {
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
body#glossary .glossary .main_items > li .item_body .tag {
  margin-top: 20px;
  letter-spacing: -0.5em;
  font-size: 14px;
}
body#glossary .glossary .main_items > li .item_body .tag > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 10px;
  background: #e5e5e5;
  padding: 2px 15px;
  border-radius: 12px;
}
body#glossary .glossary .glossary_item {
  margin-bottom: 50px;
}
body#glossary .glossary .glossary_item:last-of-type {
  margin-bottom: 0;
}
body#glossary .glossary .bg_ttl {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background: #deef68;
  padding: 7px 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary .bg_ttl {
    font-size: 21px;
  }
}
body#glossary .glossary .dl_block dl {
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
body#glossary .glossary .dl_block dl:last-child {
  margin-bottom: 0;
}
body#glossary .glossary .dl_block dl dt {
  padding: 18px 25px;
  padding-right: 55px;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  cursor: pointer;
  position: relative;
}
body#glossary .glossary .dl_block dl dt::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  transform: rotate(45deg);
  position: absolute;
  right: 25px;
  top: 20px;
  transition: 0.3s ease-in-out;
}
body#glossary .glossary .dl_block dl dt.active::after {
  transform: rotate(-135deg);
  top: 34px;
}
body#glossary .glossary .dl_block dl dd {
  padding: 18px 25px;
  background: #ffffdd;
  display: none;
}
body#glossary .glossary .dl_block dl dd a {
  text-decoration: underline;
  color: blue;
}
body#glossary .glossary .dl_block dl dd a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 960px) {
  body#glossary .glossary .glossary_nav {
    gap: 1.25%;
    font-size: 16px;
  }
  body#glossary .glossary .glossary_nav > li {
    width: 32.5%;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body#glossary .glossary .page_ttl {
    font-size: 25px;
    margin-bottom: 30px;
  }
  body#glossary .glossary .page_ttl > span {
    border-bottom-width: 4px;
  }
  body#glossary .glossary .glossary_nav {
    justify-content: space-between;
  }
  body#glossary .glossary .glossary_nav > li {
    width: 49%;
  }
  body#glossary .glossary .glossary_item {
    margin-bottom: 35px;
  }
  body#glossary .glossary h4 {
    font-size: inherit;
  }
  body#glossary .glossary .dl_block dl dt {
    font-size: 17px;
    padding: 13px 25px;
    padding-right: 40px;
  }
  body#glossary .glossary .dl_block dl dt:after {
    right: 15px;
    width: 12px;
    height: 12px;
    border-width: 1px;
    top: 15px;
  }
  body#glossary .glossary .dl_block dl dd {
    font-size: 14px;
    padding: 13px 25px;
  }
}

body#first .l-breadcrumb,
body#assessment .l-breadcrumb {
  margin-bottom: 10px;
}
body#first h2.ttl,
body#assessment h2.ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
body#first h2.ttl > span,
body#assessment h2.ttl > span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 8px solid #0cad2e;
}
body#first h2.ttl + p,
body#assessment h2.ttl + p {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body#first h2.ttl,
  body#assessment h2.ttl {
    font-size: 25px;
    margin-bottom: 30px;
  }
  body#first h2.ttl > span,
  body#assessment h2.ttl > span {
    border-bottom-width: 4px;
  }
  body#first h2.ttl + p,
  body#assessment h2.ttl + p {
    font-size: 15px;
  }
}

body#first .purchase,
body#assessment .purchase {
  padding: 60px 0 0;
  background: #ffffdd;
}
body#first .purchase h3,
body#assessment .purchase h3 {
  text-align: center;
  font-size: 46px;
  font-weight: bold;
}
body#first .purchase h3 + p,
body#assessment .purchase h3 + p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
body#first .purchase h3 > span,
body#assessment .purchase h3 > span {
  font-size: 121%;
}
body#first .purchase .check_block,
body#assessment .purchase .check_block {
  max-width: 1080px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -30px;
}
body#first .purchase .check_block > div:nth-child(1),
body#assessment .purchase .check_block > div:nth-child(1) {
  width: 74.08%;
  padding-right: 15px;
}
body#first .purchase .check_block > div:nth-child(2),
body#assessment .purchase .check_block > div:nth-child(2) {
  width: 27.04%;
  position: relative;
  top: 15px;
}
body#first .purchase .check_block .checklist,
body#assessment .purchase .check_block .checklist {
  font-size: 34px;
  font-weight: bold;
}
body#first .purchase .check_block .checklist > li,
body#assessment .purchase .check_block .checklist > li {
  margin-bottom: 17px;
  padding-left: 50px;
  position: relative;
}
body#first .purchase .check_block .checklist > li::before,
body#assessment .purchase .check_block .checklist > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 31px;
  height: 28px;
  background: url("../images/expensive/check.svg") no-repeat center center;
  background-size: contain;
}
body#first .purchase .check_block .checklist > li:last-child,
body#assessment .purchase .check_block .checklist > li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1260px) {
  body#first .purchase .check_block,
  body#assessment .purchase .check_block {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 960px) {
  body#first .purchase,
  body#assessment .purchase {
    padding: 40px 0 0;
  }
  body#first .purchase h3,
  body#assessment .purchase h3 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  body#first .purchase h3 + p,
  body#assessment .purchase h3 + p {
    font-size: 15px;
  }
  body#first .purchase .check_block,
  body#assessment .purchase .check_block {
    margin-top: 30px;
    display: block;
  }
  body#first .purchase .check_block .checklist,
  body#assessment .purchase .check_block .checklist {
    font-size: 22px;
  }
  body#first .purchase .check_block .checklist > li,
  body#assessment .purchase .check_block .checklist > li {
    padding-left: 40px;
  }
  body#first .purchase .check_block .checklist > li::before,
  body#assessment .purchase .check_block .checklist > li::before {
    width: 23px;
    height: 22px;
    top: 6px;
  }
  body#first .purchase .check_block > div:nth-child(1),
  body#assessment .purchase .check_block > div:nth-child(1) {
    width: auto;
    margin-bottom: 25px;
  }
  body#first .purchase .check_block > div:nth-child(2),
  body#assessment .purchase .check_block > div:nth-child(2) {
    width: auto;
    max-width: 140px;
    margin-left: auto;
    top: 10px;
    margin-top: -45px;
  }
}

body#first .power,
body#assessment .power {
  padding: 50px 15px;
  background: #e3f5e9;
  border-radius: 10px;
}
body#first .power h3,
body#assessment .power h3 {
  font-size: 42px;
  color: #00a831;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
}
body#first .power h3 + p,
body#assessment .power h3 + p {
  text-align: center;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  body#first .power,
  body#assessment .power {
    padding: 30px 15px;
  }
  body#first .power h3,
  body#assessment .power h3 {
    font-size: 25px;
  }
  body#first .power h3 + p,
  body#assessment .power h3 + p {
    text-align: left;
    font-size: 15px;
  }
}

body#first .point,
body#assessment .point {
  font-weight: bold;
  background: url("../images/point_bg.png") no-repeat center bottom;
  background-size: cover;
  background-color: #f6ff94;
  position: relative;
  padding: 60px 0 90px;
}
body#first .point .point_items .item,
body#assessment .point .point_items .item {
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #000000;
  margin-bottom: 70px;
  background: #fff;
  margin-bottom: 70px;
}
body#first .point .point_items .item:last-child,
body#assessment .point .point_items .item:last-child {
  margin-bottom: 0;
}
body#first .point .point_items .item .item_head,
body#assessment .point .point_items .item .item_head {
  padding: 24px 10px 15px;
  background: #0cad2e;
  text-align: center;
  position: relative;
}
body#first .point .point_items .item .item_head h3,
body#assessment .point .point_items .item .item_head h3 {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
  display: inline-block;
  padding: 5px 35px;
  background: #ffea01;
  border-radius: 27px;
}
body#first .point .point_items .item .item_head h3 > span,
body#assessment .point .point_items .item .item_head h3 > span {
  line-height: 0.7;
  display: inline-block;
  font-size: 161.54%;
  position: relative;
  top: 2px;
}
body#first .point .point_items .item .item_head h4,
body#assessment .point .point_items .item .item_head h4 {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
}
body#first .point .point_items .item .item_head h4 > span,
body#assessment .point .point_items .item .item_head h4 > span {
  font-size: 68%;
}
body#first .point .point_items .item .item_body,
body#assessment .point .point_items .item .item_body {
  padding: 25px 30px;
}
body#first .point .point_items .item .item_body.item_body2col,
body#assessment .point .point_items .item .item_body.item_body2col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body#first .point .point_items .item .item_body.item_body2col > div:nth-child(1),
body#assessment .point .point_items .item .item_body.item_body2col > div:nth-child(1) {
  width: 48.42%;
}
body#first .point .point_items .item .item_body.item_body2col > div:nth-child(1) .color1,
body#assessment .point .point_items .item .item_body.item_body2col > div:nth-child(1) .color1 {
  font-size: 20px;
}
body#first .point .point_items .item .item_body.item_body2col > div:nth-child(2),
body#assessment .point .point_items .item .item_body.item_body2col > div:nth-child(2) {
  width: 47.54%;
}
body#first .point .point_items .item .item_body .check_list > ul > li,
body#assessment .point .point_items .item .item_body .check_list > ul > li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 12px;
  font-size: 30px;
}
body#first .point .point_items .item .item_body .check_list > ul > li > p,
body#assessment .point .point_items .item .item_body .check_list > ul > li > p {
  font-size: 20px;
}
body#first .point .point_items .item .item_body .check_list > ul > li .color1,
body#assessment .point .point_items .item .item_body .check_list > ul > li .color1 {
  font-size: 113.34%;
}
body#first .point .point_items .item .item_body .check_list > ul > li:last-child,
body#assessment .point .point_items .item .item_body .check_list > ul > li:last-child {
  margin-bottom: 0;
}
body#first .point .point_items .item .item_body .check_list > ul > li::before,
body#assessment .point .point_items .item .item_body .check_list > ul > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  width: 29px;
  height: 20px;
  background: url("../images/check.svg") no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  body#first .point,
  body#assessment .point {
    background: url("../images/point_bg_sp.png") no-repeat center bottom;
    background-size: cover;
    background-color: #f6ff94;
    padding-top: 20px;
  }
  body#first .point .point_items,
  body#assessment .point .point_items {
    display: block;
  }
  body#first .point .point_items .item .item_head h3,
  body#assessment .point .point_items .item .item_head h3 {
    font-size: 18px;
  }
  body#first .point .point_items .item .item_head h4,
  body#assessment .point .point_items .item .item_head h4 {
    font-size: 7.4vw;
  }
  body#first .point .point_items .item .item_body.item_body2col,
  body#assessment .point .point_items .item .item_body.item_body2col {
    display: block;
  }
  body#first .point .point_items .item .item_body.item_body2col > div:nth-child(1),
  body#assessment .point .point_items .item .item_body.item_body2col > div:nth-child(1) {
    width: auto;
    margin-bottom: 20px;
  }
  body#first .point .point_items .item .item_body.item_body2col > div:nth-child(2),
  body#assessment .point .point_items .item .item_body.item_body2col > div:nth-child(2) {
    width: auto;
  }
  body#first .point .point_items .item,
  body#assessment .point .point_items .item {
    width: auto;
    margin-bottom: 8%;
  }
  body#first .point .point_items .item .item_body .check_list,
  body#assessment .point .point_items .item .item_body .check_list {
    display: flex;
    justify-content: center;
  }
  body#first .point .point_items .item .item_body .check_list > ul > li,
  body#assessment .point .point_items .item .item_body .check_list > ul > li {
    font-size: 4vw;
  }
  body#first .point .point_items .item .item_body .check_list > ul > li > p,
  body#assessment .point .point_items .item .item_body .check_list > ul > li > p {
    font-size: 14px;
  }
}
@media screen and (max-width: 460px) {
  body#first .point .point_items .item .item_body,
  body#assessment .point .point_items .item .item_body {
    padding: 20px 15px;
  }
  body#first .point .point_items .item .item_body .check_list > ul > li,
  body#assessment .point .point_items .item .item_body .check_list > ul > li {
    padding-left: 30px;
  }
  body#first .point .point_items .item .item_body .check_list > ul > li::before,
  body#assessment .point .point_items .item .item_body .check_list > ul > li::before {
    top: 7px;
    width: 23px;
    height: 15px;
  }
}

body#first .merit,
body#assessment .merit {
  padding-bottom: 30px;
  position: relative;
}
body#first .merit .merit_table + p,
body#assessment .merit .merit_table + p {
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  body#first .merit #merit_table,
  body#assessment .merit #merit_table {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    background: none !important;
  }
  body#first .merit #merit_table img,
  body#assessment .merit #merit_table img {
    min-width: 900px;
  }
  body#first .merit .merit_table + p,
  body#assessment .merit .merit_table + p {
    font-size: 15px;
    text-align: left;
  }
}

body#first .way_sec .way_intro {
  font-size: clamp(20px, 3.5vw, 40px);
  line-height: 1.2;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  body#first .way_sec .way_intro {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  body#voice .c_pageTitle {
    font-size: min(5vw, 23px);
  }
}
body#voice .l-breadcrumb {
  margin-bottom: 10px;
}

body#voice .voice {
  padding: 75px 0;
  background: #ffffdd;
}
body#voice .voice .voice_inner {
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}
body#voice .voice .items {
  display: flex;
  gap: 2.9%;
  flex-wrap: wrap;
}
body#voice .voice .items .item {
  width: 31.4%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #000000;
  background: #fff;
  padding: 25px 30px;
  font-size: 18px;
}
body#voice .voice .items .item:not(:nth-child(-n+3)) {
  margin-top: 40px;
}
body#voice .voice .items .item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #dddddd;
  line-height: 1.3;
}
body#voice .voice .items .item_head dl {
  font-size: 24px;
}
body#voice .voice .items .item_head dl dd {
  font-weight: bold;
}
body#voice .voice .items .item_head dl dt {
  font-weight: normal;
  background: #e5e5e5;
  line-height: 1.1;
  display: inline-block;
  text-align: center;
  padding: 5px 15px;
  margin-bottom: 10px;
}
body#voice .voice .items .item_head > div:nth-child(1) {
  width: 130px;
}
body#voice .voice .items .item_head > div:nth-child(2) {
  width: calc(100% - 155px);
}
body#voice .voice .items .item_head .icon {
  border-radius: 50%;
  background: #ffffdd;
}
body#voice .voice .items .item_head .icon img {
  width: 100%;
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
}
body#voice .voice .items .item_head h1 {
  color: #0cad2e;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 1650px) {
  body#voice .voice .items .item_head dl {
    font-size: 17px;
  }
  body#voice .voice .items .item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1260px) {
  body#voice .voice .items {
    gap: 0;
    justify-content: space-between;
  }
  body#voice .voice .items .item {
    width: 49%;
  }
  body#voice .voice .items .item:not(:nth-child(-n+2)) {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  body#voice .voice {
    padding: 40px 0;
  }
  body#voice .voice .items {
    display: block;
  }
  body#voice .voice .items .item {
    width: auto;
    padding: 15px 15px;
  }
  body#voice .voice .items .item:not(:nth-child(-n+1)) {
    margin-top: 20px;
  }
  body#voice .voice .items .item_head > div:nth-child(1) {
    width: 75px;
  }
  body#voice .voice .items .item_head > div:nth-child(2) {
    width: calc(100% - 100px);
  }
}

body#voice .voice_single {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single {
    padding-top: 30px;
  }
}
body#voice .voice_single .voice_ttl {
  background: #0cad2e;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: clamp(20px, 1.6vw, 35px);
  padding: 10px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .voice_ttl {
    font-size: 16px;
    margin: 20px 0;
  }
}
body#voice .voice_single .star5 {
  background: url(../images/voice/star5.svg) no-repeat center left/contain;
}
body#voice .voice_single .star4 {
  background: url(../images/voice/star4.svg) no-repeat center left/contain;
}
body#voice .voice_single .star3 {
  background: url(../images/voice/star3.svg) no-repeat center left/contain;
}
body#voice .voice_single .star2 {
  background: url(../images/voice/star2.svg) no-repeat center left/contain;
}
body#voice .voice_single .star1 {
  background: url(../images/voice/star1.svg) no-repeat center left/contain;
}
body#voice .voice_single .star_img {
  width: 100%;
  height: 75px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .star_img {
    height: 30px;
  }
}
body#voice .voice_single .star_wap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .star_wap {
    gap: 6px;
  }
}
body#voice .voice_single .star_number {
  font-weight: bold;
  white-space: nowrap;
  font-size: min(6vw, 70px);
  color: #0cad2e;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .star_number {
    font-size: 20px;
  }
}
body#voice .voice_single .sub_star {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}
body#voice .voice_single .sub_star h4 {
  font-weight: bold;
  font-size: clamp(20px, 1.6vw, 35px);
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .sub_star h4 {
    font-size: clamp(10px, 3vw, 14px);
  }
}
body#voice .voice_single .sub_star .star_img {
  height: 30px;
  min-width: 200px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .sub_star .star_img {
    height: max(2vw, 15px);
    width: min(33vw, 60px);
    min-width: inherit;
  }
}
body#voice .voice_single .sub_star .star_number {
  font-size: min(5vw, 50px);
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .sub_star .star_number {
    font-size: 16px;
  }
}
body#voice .voice_single .item_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 5%;
}
body#voice .voice_single .item_head aside {
  width: 20%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .item_head aside {
    width: 30%;
  }
}
body#voice .voice_single .item_head figure {
  max-width: 340px;
  width: 100%;
}
body#voice .voice_single .item_head figure img {
  width: 100%;
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
}
body#voice .voice_single .item_head dl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .item_head dl {
    gap: 5px;
  }
}
body#voice .voice_single .item_head dl dt {
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 35px);
  background: #d9d9d9;
  padding: 10px;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .item_head dl dt {
    font-size: clamp(10px, 3vw, 14px);
    padding: 5px;
  }
}
body#voice .voice_single .item_head dl dd {
  font-weight: bold;
  font-size: clamp(20px, 1.6vw, 35px);
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .item_head dl dd {
    font-size: clamp(10px, 3vw, 14px);
  }
}
body#voice .voice_single .item_head > div {
  width: 70%;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .item_head > div {
    width: 65%;
  }
}
body#voice .voice_single .item_body .voice_detail {
  margin-bottom: 50px;
}
body#voice .voice_single .item_body .voice_detail .border_ttl {
  border-left: 10px solid #0cad2e;
  padding-left: 30px;
  font-weight: bold;
  font-size: clamp(20px, 1.6vw, 35px);
  margin-bottom: 30px;
}
body#voice .voice_single .item_body .voice_detail.area_link a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
body#voice .voice_single .item_body .voice_detail.area_link a:hover {
  text-decoration: none;
}
body#voice .voice_single .item_body .voice_detail.manager_comment {
  background: #e8f38d;
  padding: 25px;
}
body#voice .voice_single .item_body .voice_detail.manager_comment h3 {
  text-align: center;
  font-size: clamp(20px, 1.6vw, 35px);
  font-weight: bold;
  margin-bottom: 20px;
}
body#voice .voice_single .item_body .voice_detail ul {
  display: flex;
  flex-wrap: wrap;
}
body#voice .voice_single .item_body .voice_detail ul li {
  width: 33%;
  padding-left: 40px;
  /*   font-size: 25px; */
  background: url(../images/voice/checked.svg) no-repeat left center/25px;
}
@media only screen and (max-width: 767px) {
  body#voice .voice_single .item_body .voice_detail ul li {
    width: 100%;
    /*  font-size: 16px; */
    padding-left: 30px;
  }
}

body#purchase .obi_txt {
  padding: 28px 0;
  background: #ffffdd;
}
body#purchase .obi_txt .check_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body#purchase .obi_txt .check_block > div:nth-child(2) {
  width: 16.59%;
  margin-bottom: -63px;
  order: 1;
}
body#purchase .obi_txt .check_block > div:nth-child(1) {
  width: 51.67%;
  order: 2;
}
body#purchase .obi_txt .check_block > div:nth-child(3) {
  width: 21.34%;
  margin-bottom: -63px;
  order: 3;
}
body#purchase .obi_txt .check_block ul {
  font-size: 32px;
}
body#purchase .obi_txt .check_block ul > li {
  padding-left: 45px;
  position: relative;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}
body#purchase .obi_txt .check_block ul > li:last-child {
  margin-bottom: 0;
}
body#purchase .obi_txt .check_block ul > li::before {
  content: "";
  display: block;
  width: 31px;
  height: 28px;
  background: url("../images/purchase/check.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 10px;
}
@media only screen and (max-width: 1260px) {
  body#purchase .obi_txt .check_block ul {
    font-size: 2.5vw;
  }
  body#purchase .obi_txt .check_block ul > li::before {
    top: 2px;
  }
}
@media only screen and (max-width: 767px) {
  body#purchase .obi_txt .check_block {
    flex-wrap: wrap;
  }
  body#purchase .obi_txt .check_block > div:nth-child(1) {
    width: 100%;
    order: 0;
    display: flex;
    justify-content: center;
  }
  body#purchase .obi_txt .check_block ul {
    font-size: 4.2vw;
  }
  body#purchase .obi_txt .check_block ul > li {
    padding-left: 29px;
  }
  body#purchase .obi_txt .check_block ul > li::before {
    width: 21px;
    height: 17px;
  }
  body#purchase .obi_txt .check_block > div:nth-child(2),
  body#purchase .obi_txt .check_block > div:nth-child(3) {
    margin-bottom: -9vw;
  }
}

body#purchase .maker {
  padding: 95px 0;
}
body#purchase .maker.maker_bg {
  background: #e3f5e9;
}
body#purchase .maker .cats .cat {
  margin-bottom: 40px;
}
body#purchase .maker .cats .cat:last-child {
  margin-bottom: 0;
}
body#purchase .maker .cats h4 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  padding: 12px 10px;
  background: #deef68;
  margin-bottom: 20px;
}
body#purchase .maker .cats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.10666%;
}
body#purchase .maker .cats ul > li {
  width: 24.17%;
  margin-bottom: 12px;
}
body#purchase .maker .cats ul > li a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #000000;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
body#purchase .maker .cats ul > li a:hover {
  background: #0cad2e;
  border-color: #0cad2e;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  body#purchase .maker {
    padding: 40px 0;
  }
  body#purchase .maker .cats .cat {
    margin-bottom: 25px;
  }
  body#purchase .maker .cats h4 {
    font-size: 18px;
  }
  body#purchase .maker .cats ul {
    justify-content: space-between;
  }
  body#purchase .maker .cats ul > li {
    width: 48.5%;
  }
}

body#purchase .purchase_bg > section {
  padding: 70px 0;
  background: #e3f5e9;
}
body#purchase .purchase_bg > section:nth-child(2n) {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  body#purchase .purchase_bg > section {
    padding: 40px 0;
  }
}

body#purchase .purchase .maker_btn {
  max-width: 360px;
  margin-left: auto;
  margin-bottom: 60px;
}
body#purchase .purchase .maker_btn a {
  color: #fff;
  background: #0cad2e;
  display: block;
  padding: 14px 15px;
  position: relative;
  border-radius: 45px;
  -webkit-box-shadow: 0 5px 0 0 #00651e;
  box-shadow: 0 5px 0 0 #00651e;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  text-align: center;
  font-size: 18px;
}
body#purchase .purchase .maker_btn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
body#purchase .purchase .maker_btn a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
body#purchase .purchase .item_list {
  display: flex;
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
  font-weight: bold;
  flex-wrap: wrap;
  gap: 2.32%;
}
body#purchase .purchase .item_list li {
  width: 23.26%;
  margin-bottom: 40px;
}
body#purchase .purchase .item_list li a {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  height: 100%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#purchase .purchase .item_list li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#purchase .purchase .item_list li .item_body {
  padding: 19px 20px 10px;
}
body#purchase .purchase .item_list li .item_body h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
body#purchase .purchase .item_list li .item_body h3 .marker {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
body#purchase .purchase .item_list li .item_body h3 .marker > span {
  color: #00a831;
}
body#purchase .purchase .item_list li .item_body h3 .marker > span.m1 {
  font-size: 283.34%;
  line-height: 0.7;
  display: inline-block;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
}
body#purchase .purchase .item_list li .item_body h3 .marker > span.m1 > span {
  font-size: 73.53%;
}
body#purchase .purchase .item_list li .item_body > dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.4;
}
body#purchase .purchase .item_list li .item_body > dl dt,
body#purchase .purchase .item_list li .item_body > dl dd {
  margin-bottom: 10px;
}
body#purchase .purchase .item_list li .item_body > dl dt {
  width: 80px;
  background: #e5e5e5;
  text-align: center;
  font-size: 16px;
  padding: 4px 5px;
  font-weight: normal;
}
body#purchase .purchase .item_list li .item_body > dl dd {
  width: calc(100% - 100px);
}
@media only screen and (max-width: 1260px) {
  body#purchase .purchase .item_list {
    justify-content: space-between;
  }
  body#purchase .purchase .item_list li {
    width: 48.5%;
    margin-bottom: 25px;
  }
  body#purchase .purchase .item_list li .item_body h3 {
    font-size: 15px;
  }
  body#purchase .purchase .item_list li .item_body > dl dt {
    font-size: 14px;
  }
  body#purchase .purchase .item_list li .item_body > dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body#purchase .purchase .maker_btn {
    max-width: 280px;
    margin-bottom: 30px;
  }
  body#purchase .purchase .maker_btn a {
    font-size: 15px;
  }
  body#purchase .purchase .maker_btn a:before {
    width: 7px;
    height: 7px;
    border-width: 1px;
    right: 20px;
  }
  body#purchase .purchase .item_list {
    display: block;
  }
  body#purchase .purchase .item_list li {
    width: auto;
  }
}

body#purchase .purchase_cat {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
body#purchase .purchase_cat > .purchase_main {
  width: calc(100% - 240px);
}
body#purchase .purchase_cat > .purchase_main .main_items {
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 3.125%;
}
body#purchase .purchase_cat > .purchase_main .main_items > li {
  width: 31.25%;
  margin-bottom: 12px;
  margin-bottom: 30px;
}
body#purchase .purchase_cat > .purchase_main .main_items > li a {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  height: 100%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#purchase .purchase_cat > .purchase_main .main_items > li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body {
  padding: 19px 20px 10px;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 .marker {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 .marker > span {
  color: #00a831;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 .marker > span.m1 {
  font-size: 283.34%;
  line-height: 0.7;
  display: inline-block;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 .marker > span.m1 > span {
  font-size: 73.53%;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body > dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.4;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body > dl dt,
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body > dl dd {
  margin-bottom: 10px;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body > dl dt {
  width: 80px;
  background: #e5e5e5;
  text-align: center;
  font-size: 16px;
  padding: 4px 5px;
  font-weight: normal;
}
body#purchase .purchase_cat > .purchase_main .main_items > li .item_body > dl dd {
  width: calc(100% - 100px);
}
body#purchase .purchase_cat > aside {
  width: 200px;
}
body#purchase .purchase_cat > aside h3 {
  font-size: 20px;
  background: #0cad2e;
  padding: 10px 10px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 1260px) {
  body#purchase .purchase_cat .purchase_main .main_items {
    justify-content: space-between;
    gap: 0;
  }
  body#purchase .purchase_cat .purchase_main .main_items > li {
    width: 48.5%;
  }
  body#purchase .purchase_cat .purchase_main .main_items li .item_body h3 {
    font-size: 15px;
  }
  body#purchase .purchase_cat .purchase_main .main_items li .item_body > dl dt {
    font-size: 14px;
  }
  body#purchase .purchase_cat .purchase_main .main_items li .item_body > dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body#purchase .purchase_cat {
    display: block;
  }
  body#purchase .purchase_cat > .purchase_main {
    width: auto;
    margin-bottom: 45px;
  }
  body#purchase .purchase_cat > aside {
    width: auto;
  }
  body#purchase .purchase_cat .purchase_main .main_items {
    display: block;
  }
  body#purchase .purchase_cat .purchase_main .main_items > li {
    width: auto;
  }
}

body#purchase .purchase_cat .side_nav > li {
  margin-top: 4px;
}
body#purchase .purchase_cat .side_nav > li a {
  background: #efefef;
  padding: 12px 20px;
  font-weight: bold;
  display: block;
  position: relative;
}
body#purchase .purchase_cat .side_nav > li a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}

body#purchase .page_ttl {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
body#purchase .page_ttl > span {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 8px solid #0cad2e;
}
body#purchase .purchase_slider {
  padding: 0 80px;
  display: none;
}
body#purchase .purchase_slider.slick-initialized {
  display: block;
}
body#purchase .purchase_slider .slick-track {
  display: flex;
}
body#purchase .purchase_slider .slick-slide {
  height: auto !important;
}
body#purchase .purchase_slider .slick-slide > div,
body#purchase .purchase_slider .slick-slide li,
body#purchase .purchase_slider .slick-slide a {
  height: 100%;
}
body#purchase .purchase_slider .slick-prev,
body#purchase .purchase_slider .slick-next {
  width: 60px;
  height: 60px;
  background: url("../images/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
body#purchase .purchase_slider .slick-prev:hover,
body#purchase .purchase_slider .slick-next:hover {
  opacity: 0.7;
}
body#purchase .purchase_slider .slick-prev::before,
body#purchase .purchase_slider .slick-next::before {
  content: none;
}
body#purchase .purchase_slider .slick-prev {
  left: 20px;
  background: url("../images/prev.svg") no-repeat center center;
  background-size: contain;
}
body#purchase .purchase_slider .slick-next {
  right: 20px;
}
body#purchase .purchase_slider li {
  padding: 0 20px;
}
body#purchase .purchase_slider li a {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#purchase .purchase_slider li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#purchase .purchase_slider li .slider_body {
  padding: 19px 20px 10px;
}
body#purchase .purchase_slider li .slider_body h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
body#purchase .purchase_slider li .slider_body h3 .marker {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
body#purchase .purchase_slider li .slider_body h3 .marker > span {
  color: #00a831;
}
body#purchase .purchase_slider li .slider_body h3 .marker > span.m1 {
  font-size: 283.34%;
  line-height: 0.7;
  display: inline-block;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
}
body#purchase .purchase_slider li .slider_body h3 .marker > span.m1 > span {
  font-size: 73.53%;
}
body#purchase .purchase_slider li .slider_body > dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.4;
}
body#purchase .purchase_slider li .slider_body > dl dt,
body#purchase .purchase_slider li .slider_body > dl dd {
  margin-bottom: 10px;
}
body#purchase .purchase_slider li .slider_body > dl dt {
  width: 80px;
  background: #e5e5e5;
  text-align: center;
  font-size: 16px;
  padding: 4px 5px;
  font-weight: normal;
}
body#purchase .purchase_slider li .slider_body > dl dd {
  width: calc(100% - 100px);
}
@media only screen and (max-width: 1260px) {
  body#purchase .purchase_slider {
    padding: 0 50px;
  }
  body#purchase .purchase_slider .slick-prev,
  body#purchase .purchase_slider .slick-next {
    width: 40px;
    height: 40px;
  }
  body#purchase .purchase_slider li .slider_body h3 {
    font-size: 15px;
  }
  body#purchase .purchase_slider li .slider_body > dl dt {
    font-size: 14px;
  }
  body#purchase .purchase_slider li .slider_body > dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body#purchase .page_ttl {
    font-size: 25px;
    margin-bottom: 30px;
  }
  body#purchase .purchase_slider {
    padding: 0;
  }
  body#purchase .purchase_slider .slick-list {
    padding: 20px 11.2% 0 !important;
  }
  body#purchase .purchase_slider li {
    padding: 0 10px;
  }
  body#purchase .page_ttl > span {
    border-bottom-width: 4px;
  }
}

body#purchase .purchase_nav_sec .purchase_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.750909%;
  margin-bottom: 35px;
  font-size: 20px;
}
body#purchase .purchase_nav_sec .purchase_nav > li {
  width: 8.34%;
}
body#purchase .purchase_nav_sec .purchase_nav > li a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #000000;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
body#purchase .purchase_nav_sec .purchase_nav > li a:hover {
  background: #0cad2e;
  border-color: #0cad2e;
  color: #fff;
}
body#purchase .purchase_nav_sec h4 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background: #deef68;
  padding: 7px 10px;
  margin-bottom: 20px;
}
body#purchase .purchase_nav_sec .purchase_content {
  margin-bottom: 50px;
}
body#purchase .purchase_nav_sec .purchase_content:last-of-type {
  margin-bottom: 0;
}
body#purchase .purchase_nav_sec .purchase_content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.10666%;
}
body#purchase .purchase_nav_sec .purchase_content ul > li {
  width: 24.17%;
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
}
body#purchase .purchase_nav_sec .purchase_content ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border: 1px solid #000000;
  font-weight: bold;
  border-radius: 4px;
  height: 100%;
}
@media only screen and (max-width: 960px) {
  body#purchase .purchase_nav_sec .purchase_nav {
    gap: 1.25%;
    font-size: 16px;
  }
  body#purchase .purchase_nav_sec .purchase_nav > li {
    width: 32.5%;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body#purchase .purchase_nav_sec .purchase_nav {
    justify-content: space-between;
  }
  body#purchase .purchase_nav_sec .purchase_nav > li {
    width: 49%;
  }
  body#purchase .purchase_nav_sec h4 {
    font-size: 21px;
  }
  body#purchase .purchase_nav_sec .purchase_content ul {
    justify-content: space-between;
  }
  body#purchase .purchase_nav_sec .purchase_content ul > li {
    width: 48.5%;
    font-size: 16px;
  }
}

body#purchase .ranking_sec {
  background: #e3f5e9;
  padding: 50px 0;
}
body#purchase .ranking_sec .purchase_slider li .img {
  position: relative;
}
body#purchase .ranking_sec .purchase_slider .slick-list {
  padding-top: 30px;
}
body#purchase .ranking_sec .purchase_slider li .rank {
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  width: 98px;
  height: 80px;
  background: url("../images/purchase/rank4.svg") no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  left: -21px;
  top: -20px;
}
body#purchase .ranking_sec .purchase_slider li .rank.rank1 {
  background: url("../images/purchase/rank1.svg") no-repeat center center;
  background-size: contain;
}
body#purchase .ranking_sec .purchase_slider li .rank.rank2 {
  background: url("../images/purchase/rank2.svg") no-repeat center center;
  background-size: contain;
}
body#purchase .ranking_sec .purchase_slider li .rank.rank3 {
  background: url("../images/purchase/rank3.svg") no-repeat center center;
  background-size: contain;
}
body#purchase .ranking_sec .purchase_slider li .rank > span {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  body#purchase .ranking_sec .purchase_slider li .rank {
    width: 66px;
    height: 48px;
    font-size: 21px;
  }
}

body#purchase .recommend_sec {
  padding: 50px 0;
}
body#purchase .recommend_sec .purchase_slider li .icons {
  letter-spacing: -0.5em;
  margin-bottom: 7px;
}
body#purchase .recommend_sec .purchase_slider li .icons > div {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  background: #ffea01;
  padding: 4px 17px;
  border-radius: 17px;
}
body#purchase .recommend_sec .purchase_slider li .slider_body h3 {
  font-size: 21px;
  text-align: left;
}
body#purchase .recommend_sec .purchase_slider .slick-prev {
  background: url("../images/purchase/prev.svg") no-repeat center center;
  background-size: contain;
}
body#purchase .recommend_sec .purchase_slider .slick-next {
  background: url("../images/purchase/next.svg") no-repeat center center;
  background-size: contain;
}

body#purchase .purchase_detail {
  background: #ffffdd;
  padding: 70px 0;
}
body#purchase .purchase_detail .purchase_block {
  display: flex;
  justify-content: space-between;
}
body#purchase .purchase_detail .purchase_block .img {
  border: 4px solid #000000;
}
body#purchase .purchase_detail .purchase_block .img img {
  width: 100%;
}
body#purchase .purchase_detail .purchase_block > div:nth-child(1) {
  width: 56.67%;
}
body#purchase .purchase_detail .purchase_block > div:nth-child(2) {
  width: 39.17%;
}
body#purchase .purchase_detail .purchase_block h2,
body#purchase .purchase_detail .purchase_block h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}
body#purchase .purchase_detail .purchase_block .purchase_amount_dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body#purchase .purchase_detail .purchase_block .purchase_amount_dl.pc_only {
  display: flex;
}
@media only screen and (max-width: 960px) {
  body#purchase .purchase_detail .purchase_block .purchase_amount_dl.pc_only {
    display: none;
  }
}
body#purchase .purchase_detail .purchase_block .purchase_amount_dl.sp_only {
  display: none;
}
@media only screen and (max-width: 960px) {
  body#purchase .purchase_detail .purchase_block .purchase_amount_dl.sp_only {
    display: flex;
  }
}
body#purchase .purchase_detail .purchase_block .purchase_amount_dl dt {
  width: 100px;
  font-size: 20px;
  background: #ffea01;
  padding: 5px 10px;
  font-weight: bold;
  text-align: center;
}
body#purchase .purchase_detail .purchase_block .purchase_amount_dl dd {
  width: calc(100% - 120px);
  color: #00a831;
  font-size: clamp(55px, 4vw, 70px);
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.1;
}
body#purchase .purchase_detail .purchase_block .purchase_amount_dl dd > span {
  font-size: 42.86%;
}
body#purchase .purchase_detail .purchase_block .sub_area {
  padding: 17px 20px;
  background: #fff;
}
body#purchase .purchase_detail .purchase_block .sub_area dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body#purchase .purchase_detail .purchase_block .sub_area dl dt,
body#purchase .purchase_detail .purchase_block .sub_area dl dd {
  margin-bottom: 10px;
}
body#purchase .purchase_detail .purchase_block .sub_area dl dt {
  width: 110px;
  background: #e5e5e5;
  padding: 6px 10px;
  text-align: center;
}
body#purchase .purchase_detail .purchase_block .sub_area dl dd {
  width: calc(100% - 130px);
  font-weight: bold;
  font-size: 18px;
  position: relative;
  top: 4px;
}
body#purchase .purchase_detail .purchase_block .sub_area dl dd a {
  color: blue;
  text-decoration: underline;
}
body#purchase .purchase_detail .purchase_block .sub_area dl dd a:hover {
  text-decoration: none;
}
body#purchase .purchase_detail .add_block {
  background: #fce5cd;
  padding: 20px;
}
body#purchase .purchase_detail .add_block h2 {
  font-size: 120%;
  text-align: center;
}
body#purchase .purchase_detail .check_btn {
  max-width: 760px;
  margin: 0 auto;
}
body#purchase .purchase_detail .check_btn > a {
  display: block;
  background: #ed3c46;
  padding: 10px 10px;
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  border-radius: 45px;
  transition: 0.4s ease-in-out;
  filter: drop-shadow(0px 4px 0px #b21625);
  position: relative;
}
body#purchase .purchase_detail .check_btn > a::before {
  content: "";
  display: block;
  position: absolute;
  right: 35px;
  top: 44%;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateY(-50%);
}
body#purchase .purchase_detail .check_btn > a .free {
  display: inline-block;
  line-height: 66px;
  width: 66px;
  background: #ffea01;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  margin-right: 20px;
}
body#purchase .purchase_detail .check_btn > a:hover {
  transform: translateY(3px);
  filter: drop-shadow(0px 0px 0px #b21625);
}
@media only screen and (max-width: 1260px) {
  body#purchase .purchase_detail .purchase_block h2,
  body#purchase .purchase_detail .purchase_block h3 {
    font-size: 22px;
  }
  body#purchase .purchase_detail .purchase_block .purchase_amount_dl dt {
    font-size: 15px;
  }
  body#purchase .purchase_detail .purchase_block .purchase_amount_dl dd {
    font-size: min(10vw, 52px);
  }
}
@media only screen and (max-width: 960px) {
  body#purchase .purchase_detail {
    padding: 45px 0;
  }
  body#purchase .purchase_detail .purchase_block {
    display: block;
  }
  body#purchase .purchase_detail .purchase_block > div:nth-child(1) {
    width: auto;
    max-width: 680px;
    margin: 0 auto 20px;
  }
  body#purchase .purchase_detail .purchase_block > div:nth-child(2) {
    width: auto;
  }
  body#purchase .purchase_detail .purchase_block .sub_area dl dt {
    font-size: 13px;
    width: 90px;
  }
  body#purchase .purchase_detail .purchase_block .sub_area dl dd {
    font-size: 15px;
    width: calc(100% - 110px);
  }
  body#purchase .purchase_detail .check_btn > a {
    font-size: 16px;
  }
  body#purchase .purchase_detail .check_btn > a .free {
    width: 45px;
    line-height: 45px;
    font-size: 13px;
  }
  body#purchase .purchase_detail .check_btn > a::before {
    width: 8px;
    height: 8px;
    right: 25px;
  }
}
#purchase #contact,
#column #contact,
#assessment #contact {
  position: relative;
}
#purchase #contact .brand-title-close-ctn,
#purchase #contact .model-title-close-ctn,
#column #contact .brand-title-close-ctn,
#column #contact .model-title-close-ctn,
#assessment #contact .brand-title-close-ctn,
#assessment #contact .model-title-close-ctn {
  border-radius: 0 !important;
}

#purchase .assessment .assessment_form,
#column .assessment .assessment_form,
#assessment .assessment .assessment_form {
  border: 1px solid #000000;
}
#purchase .assessment .form_block dt,
#column .assessment .form_block dt,
#assessment .assessment .form_block dt {
  font-size: 16px;
}
#purchase .assessment h3.assessment_ttl,
#column .assessment h3.assessment_ttl,
#assessment .assessment h3.assessment_ttl {
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px;
  color: #fff;
  text-align: center;
  background: #0cad2e;
}
#purchase .assessment h3.assessment_ttl > span,
#column .assessment h3.assessment_ttl > span,
#assessment .assessment h3.assessment_ttl > span {
  color: #ffea01;
}
#purchase .assessment h3.assessment_ttl.bg_color2,
#column .assessment h3.assessment_ttl.bg_color2,
#assessment .assessment h3.assessment_ttl.bg_color2 {
  background: #3cac67;
}
#purchase .assessment h3.assessment_ttl.bg_color2 > span,
#column .assessment h3.assessment_ttl.bg_color2 > span,
#assessment .assessment h3.assessment_ttl.bg_color2 > span {
  color: #ada142;
}
#purchase .assessment .form_block dt span,
#column .assessment .form_block dt span,
#assessment .assessment .form_block dt span {
  font-size: 12px;
}
#purchase .assessment .form_block__select select,
#purchase .assessment .form_block__input input,
#column .assessment .form_block__select select,
#column .assessment .form_block__input input,
#assessment .assessment .form_block__select select,
#assessment .assessment .form_block__input input {
  padding: 10px 10px;
  font-size: 16px;
}
#purchase .assessment .assessment_body,
#column .assessment .assessment_body,
#assessment .assessment .assessment_body {
  padding: 20px 15px;
  max-width: 960px;
  margin: 0 auto;
  box-sizing: content-box;
}
#purchase .assessment .step_ttl,
#purchase .assessment h4,
#column .assessment .step_ttl,
#column .assessment h4,
#assessment .assessment .step_ttl,
#assessment .assessment h4 {
  background: #e3f5e9;
  padding: 10px 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#purchase .assessment .assessment_block,
#column .assessment .assessment_block,
#assessment .assessment .assessment_block {
  display: flex;
  gap: 3.125%;
}
#purchase .assessment .assessment_block > dl,
#column .assessment .assessment_block > dl,
#assessment .assessment .assessment_block > dl {
  width: 31.25%;
}
#purchase .assessment .assessment_block dl dt,
#column .assessment .assessment_block dl dt,
#assessment .assessment .assessment_block dl dt {
  border-left: 0;
  padding-left: 0;
}
#purchase .assessment .assessment_block dl dd > p,
#column .assessment .assessment_block dl dd > p,
#assessment .assessment .assessment_block dl dd > p {
  font-size: 15px;
}
#purchase .assessment .assessment_btn,
#column .assessment .assessment_btn,
#assessment .assessment .assessment_btn {
  max-width: 760px;
  margin: 0 auto;
}
#purchase .assessment .assessment_btn > button,
#column .assessment .assessment_btn > button,
#assessment .assessment .assessment_btn > button {
  width: 100%;
  outline: 0;
  display: block;
  background: #ed3c46;
  padding: 10px 10px;
  border: 0;
  appearance: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 45px;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}
#purchase .assessment .assessment_btn > button::before,
#column .assessment .assessment_btn > button::before,
#assessment .assessment .assessment_btn > button::before {
  content: "";
  display: block;
  position: absolute;
  right: 35px;
  top: 50%;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg) translateY(-50%);
}
#purchase .assessment .assessment_btn > button > span,
#column .assessment .assessment_btn > button > span,
#assessment .assessment .assessment_btn > button > span {
  display: inline-block;
  vertical-align: middle;
}
#purchase .assessment .assessment_btn > button > .free,
#column .assessment .assessment_btn > button > .free,
#assessment .assessment .assessment_btn > button > .free {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #ffffff;
  color: #ed3c46;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.2;
  margin-right: 20px;
  position: relative;
  vertical-align: middle;
}
#purchase .assessment .assessment_btn > button > .free > span,
#column .assessment .assessment_btn > button > .free > span,
#assessment .assessment .assessment_btn > button > .free > span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
#purchase .assessment .assessment_btn > button:hover,
#column .assessment .assessment_btn > button:hover,
#assessment .assessment .assessment_btn > button:hover {
  transform: translateY(3px);
  opacity: 0.7;
  filter: drop-shadow(0px 0px 0px #b21625);
}
#purchase .assessment .radio_box,
#column .assessment .radio_box,
#assessment .assessment .radio_box {
  text-align: center;
  padding: 20px 0 10px;
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  margin-bottom: 30px;
}
#purchase .assessment .radio_box > p,
#purchase .assessment .radio_box h2,
#column .assessment .radio_box > p,
#column .assessment .radio_box h2,
#assessment .assessment .radio_box > p,
#assessment .assessment .radio_box h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#purchase .assessment .radio_box .f-required,
#column .assessment .radio_box .f-required,
#assessment .assessment .radio_box .f-required {
  font-size: 12px;
  padding: 3px 5px;
  margin: 0 0 0 5px;
  line-height: 1.9;
  margin-left: 10px;
}
#purchase .assessment .radio_list,
#column .assessment .radio_list,
#assessment .assessment .radio_list {
  letter-spacing: -0.5em;
}
#purchase .assessment .radio_list input,
#column .assessment .radio_list input,
#assessment .assessment .radio_list input {
  display: none;
}
#purchase .assessment .radio_list > li,
#column .assessment .radio_list > li,
#assessment .assessment .radio_list > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 25px;
  margin-bottom: 10px;
}
#purchase .assessment .radio_list > li:last-child,
#column .assessment .radio_list > li:last-child,
#assessment .assessment .radio_list > li:last-child {
  margin-right: 0;
}
#purchase .assessment .radio_list > li span,
#column .assessment .radio_list > li span,
#assessment .assessment .radio_list > li span {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  display: inline-block;
  font-weight: normal;
}
#purchase .assessment .radio_list > li span:before,
#column .assessment .radio_list > li span:before,
#assessment .assessment .radio_list > li span:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 7px;
  background: #e2e2e2;
  border: 1px solid #999999;
}
#purchase .assessment .radio_list > li span::after,
#column .assessment .radio_list > li span::after,
#assessment .assessment .radio_list > li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 6px;
  width: 5px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  display: none;
}
#purchase .assessment .radio_list > li input:checked + span::before,
#column .assessment .radio_list > li input:checked + span::before,
#assessment .assessment .radio_list > li input:checked + span::before {
  background: #00a832;
}
#purchase .assessment .radio_list > li input:checked + span::after,
#column .assessment .radio_list > li input:checked + span::after,
#assessment .assessment .radio_list > li input:checked + span::after {
  display: block;
}
#purchase .assessment .policy_txt,
#column .assessment .policy_txt,
#assessment .assessment .policy_txt {
  text-align: center;
  font-weight: normal;
  margin-bottom: 20px;
}
#purchase .assessment .policy_txt a,
#column .assessment .policy_txt a,
#assessment .assessment .policy_txt a {
  color: blue;
  text-decoration: underline;
}
#purchase .assessment .policy_txt a:hover,
#column .assessment .policy_txt a:hover,
#assessment .assessment .policy_txt a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 1260px) {
  #purchase .assessment .assessment_block,
  #column .assessment .assessment_block,
  #assessment .assessment .assessment_block {
    display: block;
  }
  #purchase .assessment .assessment_block > dl,
  #column .assessment .assessment_block > dl,
  #assessment .assessment .assessment_block > dl {
    width: auto;
  }
}
@media only screen and (max-width: 960px) {
  #purchase .assessment .assessment_body,
  #column .assessment .assessment_body,
  #assessment .assessment .assessment_body {
    padding: 20px 15px;
  }
  #purchase .assessment .assessment_body .step_ttl,
  #purchase .assessment .assessment_body h4,
  #column .assessment .assessment_body .step_ttl,
  #column .assessment .assessment_body h4,
  #assessment .assessment .assessment_body .step_ttl,
  #assessment .assessment .assessment_body h4 {
    font-size: 16px;
  }
  #purchase .assessment .assessment_btn > button,
  #column .assessment .assessment_btn > button,
  #assessment .assessment .assessment_btn > button {
    font-size: 16px;
  }
  #purchase .assessment .assessment_btn > button .free,
  #column .assessment .assessment_btn > button .free,
  #assessment .assessment .assessment_btn > button .free {
    width: 45px;
    height: 45px;
    font-size: 11px;
  }
  #purchase .assessment .assessment_btn > button::before,
  #column .assessment .assessment_btn > button::before,
  #assessment .assessment .assessment_btn > button::before {
    width: 8px;
    height: 8px;
    right: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #purchase .assessment .radio_box,
  #column .assessment .radio_box,
  #assessment .assessment .radio_box {
    text-align: left;
  }
  #purchase .assessment .radio_list > li,
  #column .assessment .radio_list > li,
  #assessment .assessment .radio_list > li {
    display: block;
  }
  #purchase .assessment .policy_txt,
  #column .assessment .policy_txt,
  #assessment .assessment .policy_txt {
    font-size: 12px;
  }
  #purchase .assessment .radio_box .f-required,
  #column .assessment .radio_box .f-required,
  #assessment .assessment .radio_box .f-required {
    display: inline-block;
    margin-left: 0;
  }
}

#top_resemble .merit:before {
  content: none !important;
}

#top_resemble .top_checkbn h2 {
  font-weight: bold;
  font-size: 52px;
  padding: 0 15px;
}
#top_resemble .top_checkbn h2 > span {
  font-size: 120%;
}
#top_resemble .top_checkbn h2 img {
  margin-right: 40px;
}
@media only screen and (max-width: 1260px) {
  #top_resemble .top_checkbn h2 {
    font-size: 30px;
  }
  #top_resemble .top_checkbn h2 img {
    max-width: 190px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble .top_checkbn h2 {
    font-size: 24px;
  }
  #top_resemble .top_checkbn h2 img {
    max-width: 140px;
  }
}

#top_resemble .new_example .ziko_items {
  display: flex;
  flex-wrap: wrap;
  max-width: 1720px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
  gap: 2.32%;
}
#top_resemble .new_example .ziko_items > li {
  width: 23.26%;
  margin-bottom: 40px;
  background: #fff;
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
#top_resemble .new_example .ziko_items > li .icon_list {
  position: absolute;
  left: 10px;
  top: 10px;
  letter-spacing: -0.5em;
}
#top_resemble .new_example .ziko_items > li .icon_list > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 4px 11px;
  line-height: 1.1;
  font-size: 18px;
  font-weight: bold;
  background: #ffea01;
  border-radius: 14px;
}
#top_resemble .new_example .ziko_items > li .img {
  position: relative;
}
#top_resemble .new_example .ziko_items > li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
#top_resemble .new_example .ziko_items > li .slider_body {
  padding: 19px 20px 10px;
}
#top_resemble .new_example .ziko_items > li .slider_body h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
#top_resemble .new_example .ziko_items > li .slider_body h3 .marker {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
#top_resemble .new_example .ziko_items > li .slider_body h3 .marker > span {
  color: #00a831;
}
#top_resemble .new_example .ziko_items > li .slider_body h3 .marker > span.m1 {
  font-size: 283.34%;
  line-height: 0.7;
  display: inline-block;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
}
#top_resemble .new_example .ziko_items > li .slider_body h3 .marker > span.m1 > span {
  font-size: 73.53%;
}
#top_resemble .new_example .ziko_items > li .slider_body > dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.4;
}
#top_resemble .new_example .ziko_items > li .slider_body > dl dt,
#top_resemble .new_example .ziko_items > li .slider_body > dl dd {
  margin-bottom: 10px;
}
#top_resemble .new_example .ziko_items > li .slider_body > dl dt {
  width: 80px;
  background: #e5e5e5;
  text-align: center;
  font-size: 16px;
  padding: 4px 5px;
  font-weight: normal;
}
#top_resemble .new_example .ziko_items > li .slider_body > dl dd {
  width: calc(100% - 100px);
}
@media only screen and (max-width: 1260px) {
  #top_resemble .new_example .ziko_items {
    justify-content: space-between;
  }
  #top_resemble .new_example .ziko_items > li {
    width: 48.5%;
    margin-bottom: 25px;
  }
  #top_resemble .new_example .ziko_items > li .icon_list > li {
    font-size: 14px;
  }
  #top_resemble .new_example .ziko_items > li .item_body h3 {
    font-size: 15px;
  }
  #top_resemble .new_example .ziko_items > li .item_body > dl dt {
    font-size: 14px;
  }
  #top_resemble .new_example .ziko_items > li .item_body > dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble .new_example .ziko_items {
    display: block;
  }
  #top_resemble .new_example .ziko_items > li {
    width: auto;
  }
}

#top_resemble span.inline-block {
  display: inline-block;
}

body.ziko .assessment-embedded-widget-onecolumn {
  padding: 60px 0;
}

body.ziko#top_resemble .assessment .step_ttl, body.ziko#first .assessment .step_ttl, body.ziko#flow .assessment .step_ttl, body.ziko#purchase .assessment .step_ttl, body.ziko#column .assessment .step_ttl {
  background: #b7bb5b !important;
  color: #fff !important;
}
body.ziko#top_resemble .color2, body.ziko#first .color2, body.ziko#flow .color2, body.ziko#purchase .color2, body.ziko#column .color2 {
  color: #3cac67 !important;
}
body.ziko#top_resemble #column .assessment h3.assessment_ttl, body.ziko#first #column .assessment h3.assessment_ttl, body.ziko#flow #column .assessment h3.assessment_ttl, body.ziko#purchase #column .assessment h3.assessment_ttl, body.ziko#column #column .assessment h3.assessment_ttl {
  background: #3cac67 !important;
}
body.ziko#top_resemble #column .assessment h3.assessment_ttl > span, body.ziko#first #column .assessment h3.assessment_ttl > span, body.ziko#flow #column .assessment h3.assessment_ttl > span, body.ziko#purchase #column .assessment h3.assessment_ttl > span, body.ziko#column #column .assessment h3.assessment_ttl > span {
  color: #c6af24 !important;
}
body.ziko#top_resemble .mainobi2 dl dd, body.ziko#first .mainobi2 dl dd, body.ziko#flow .mainobi2 dl dd, body.ziko#purchase .mainobi2 dl dd, body.ziko#column .mainobi2 dl dd {
  color: #fff !important;
}
body.ziko#top_resemble .item_head h3, body.ziko#first .item_head h3, body.ziko#flow .item_head h3, body.ziko#purchase .item_head h3, body.ziko#column .item_head h3 {
  background: #f3f3f3 !important;
  color: #38453c;
  border: 2px solid #444;
}
body.ziko#top_resemble .point, body.ziko#first .point, body.ziko#flow .point, body.ziko#purchase .point, body.ziko#column .point {
  background: #fff9d7 !important;
}
body.ziko#top_resemble .point:before, body.ziko#first .point:before, body.ziko#flow .point:before, body.ziko#purchase .point:before, body.ziko#column .point:before {
  background: url(../images/ziko/point_bghead_ziko.png) no-repeat center top !important;
}
body.ziko#top_resemble .point_items .item .item_head, body.ziko#first .point_items .item .item_head, body.ziko#flow .point_items .item .item_head, body.ziko#purchase .point_items .item .item_head, body.ziko#column .point_items .item .item_head {
  background: #3cac67 !important;
}
body.ziko#top_resemble .point_items .item .item_body .check_list > ul > li:before, body.ziko#first .point_items .item .item_body .check_list > ul > li:before, body.ziko#flow .point_items .item .item_body .check_list > ul > li:before, body.ziko#purchase .point_items .item .item_body .check_list > ul > li:before, body.ziko#column .point_items .item .item_body .check_list > ul > li:before {
  background: url(../images/ziko/check.svg) no-repeat center center !important;
}
body.ziko#top_resemble .new_example, body.ziko#first .new_example, body.ziko#flow .new_example, body.ziko#purchase .new_example, body.ziko#column .new_example {
  background-color: #c7e5d0 !important;
}
body.ziko#top_resemble .new_example .ttl > span > span, body.ziko#first .new_example .ttl > span > span, body.ziko#flow .new_example .ttl > span > span, body.ziko#purchase .new_example .ttl > span > span, body.ziko#column .new_example .ttl > span > span {
  color: #3cac67 !important;
}
body.ziko#top_resemble .new_example .marker, body.ziko#first .new_example .marker, body.ziko#flow .new_example .marker, body.ziko#purchase .new_example .marker, body.ziko#column .new_example .marker {
  background: linear-gradient(transparent 70%, #d9cb59 70%) !important;
}
body.ziko#top_resemble .new_example .marker span, body.ziko#first .new_example .marker span, body.ziko#flow .new_example .marker span, body.ziko#purchase .new_example .marker span, body.ziko#column .new_example .marker span {
  color: #3cac67 !important;
}
body.ziko#top_resemble .voice, body.ziko#first .voice, body.ziko#flow .voice, body.ziko#purchase .voice, body.ziko#column .voice {
  background: #f6f5ee !important;
}
body.ziko#top_resemble .gbtn a, body.ziko#first .gbtn a, body.ziko#flow .gbtn a, body.ziko#purchase .gbtn a, body.ziko#column .gbtn a {
  background-color: #3cac67 !important;
  box-shadow: 0 5px 0 0 #052b10 !important;
}
body.ziko#top_resemble .notice h2, body.ziko#first .notice h2, body.ziko#flow .notice h2, body.ziko#purchase .notice h2, body.ziko#column .notice h2 {
  background: #4894ac !important;
  color: #fff !important;
  margin-bottom: 60px;
}
body.ziko#top_resemble #voice_slider h3, body.ziko#first #voice_slider h3, body.ziko#flow #voice_slider h3, body.ziko#purchase #voice_slider h3, body.ziko#column #voice_slider h3 {
  color: #c6af24 !important;
}
body.ziko#top_resemble .contact_bn_ttl_block h3 > span, body.ziko#first .contact_bn_ttl_block h3 > span, body.ziko#flow .contact_bn_ttl_block h3 > span, body.ziko#purchase .contact_bn_ttl_block h3 > span, body.ziko#column .contact_bn_ttl_block h3 > span {
  color: #3cac67 !important;
}
body.ziko#top_resemble .step, body.ziko#first .step, body.ziko#flow .step, body.ziko#purchase .step, body.ziko#column .step {
  background: #3cac67 !important;
}
body.ziko#top_resemble .step .item_head, body.ziko#first .step .item_head, body.ziko#flow .step .item_head, body.ziko#purchase .step .item_head, body.ziko#column .step .item_head {
  background: #b7bb5b !important;
  color: #fff;
}
body.ziko#top_resemble .step .item_body h3, body.ziko#first .step .item_body h3, body.ziko#flow .step .item_body h3, body.ziko#purchase .step .item_body h3, body.ziko#column .step .item_body h3 {
  color: #3cac67 !important;
}
body.ziko#top_resemble .step .sub_txt, body.ziko#first .step .sub_txt, body.ziko#flow .step .sub_txt, body.ziko#purchase .step .sub_txt, body.ziko#column .step .sub_txt {
  color: #ffe12c !important;
}
body.ziko#top_resemble .step .sub_txt > span::before, body.ziko#top_resemble .step .sub_txt > span::after, body.ziko#first .step .sub_txt > span::before, body.ziko#first .step .sub_txt > span::after, body.ziko#flow .step .sub_txt > span::before, body.ziko#flow .step .sub_txt > span::after, body.ziko#purchase .step .sub_txt > span::before, body.ziko#purchase .step .sub_txt > span::after, body.ziko#column .step .sub_txt > span::before, body.ziko#column .step .sub_txt > span::after {
  background: #ffe12c !important;
}
body.ziko#top_resemble .question .ttl, body.ziko#first .question .ttl, body.ziko#flow .question .ttl, body.ziko#purchase .question .ttl, body.ziko#column .question .ttl {
  background: url(../images/ziko/qa_icon_ziko.svg) no-repeat center top !important;
  background-size: 77px !important;
}
@media only screen and (max-width: 767px) {
  body.ziko#top_resemble .question .ttl, body.ziko#first .question .ttl, body.ziko#flow .question .ttl, body.ziko#purchase .question .ttl, body.ziko#column .question .ttl {
    background-size: 40px !important;
  }
}
body.ziko#top_resemble .question .question_block dt::before, body.ziko#first .question .question_block dt::before, body.ziko#flow .question .question_block dt::before, body.ziko#purchase .question .question_block dt::before, body.ziko#column .question .question_block dt::before {
  background: url(../images/ziko/qa_icon1.svg) no-repeat center center !important;
}
body.ziko#top_resemble .question .question_block dd::before, body.ziko#first .question .question_block dd::before, body.ziko#flow .question .question_block dd::before, body.ziko#purchase .question .question_block dd::before, body.ziko#column .question .question_block dd::before {
  background: url(../images/ziko/qa_icon2.svg) no-repeat center center !important;
}
body.ziko#top_resemble .more_block, body.ziko#first .more_block, body.ziko#flow .more_block, body.ziko#purchase .more_block, body.ziko#column .more_block {
  background: #3cac67 !important;
}
body.ziko#top_resemble .more_block h3, body.ziko#first .more_block h3, body.ziko#flow .more_block h3, body.ziko#purchase .more_block h3, body.ziko#column .more_block h3 {
  color: #3cac67 !important;
}
body.ziko#top_resemble .more_block a, body.ziko#first .more_block a, body.ziko#flow .more_block a, body.ziko#purchase .more_block a, body.ziko#column .more_block a {
  color: #3cac67 !important;
}
body.ziko#top_resemble .more_block a::before, body.ziko#first .more_block a::before, body.ziko#flow .more_block a::before, body.ziko#purchase .more_block a::before, body.ziko#column .more_block a::before {
  border-right: 2px solid #3cac67 !important;
  border-bottom: 2px solid #3cac67 !important;
}
body.ziko#top_resemble .more_block ul > li::before, body.ziko#first .more_block ul > li::before, body.ziko#flow .more_block ul > li::before, body.ziko#purchase .more_block ul > li::before, body.ziko#column .more_block ul > li::before {
  background: #3cac67 !important;
}
body.ziko#top_resemble .more_block.more_block_type2, body.ziko#first .more_block.more_block_type2, body.ziko#flow .more_block.more_block_type2, body.ziko#purchase .more_block.more_block_type2, body.ziko#column .more_block.more_block_type2 {
  background-color: #f6f5ee !important;
}
body.ziko#top_resemble .more_block.more_block_type2 h2, body.ziko#first .more_block.more_block_type2 h2, body.ziko#flow .more_block.more_block_type2 h2, body.ziko#purchase .more_block.more_block_type2 h2, body.ziko#column .more_block.more_block_type2 h2 {
  color: #3cac67;
}
body.ziko#top_resemble .more_block.more_block_type2 h2 > span, body.ziko#first .more_block.more_block_type2 h2 > span, body.ziko#flow .more_block.more_block_type2 h2 > span, body.ziko#purchase .more_block.more_block_type2 h2 > span, body.ziko#column .more_block.more_block_type2 h2 > span {
  border-bottom-color: #3cac67 !important;
  color: #3cac67;
}
body.ziko#top_resemble .useful_column, body.ziko#first .useful_column, body.ziko#flow .useful_column, body.ziko#purchase .useful_column, body.ziko#column .useful_column {
  background: #c7e5d0 !important;
}
body.ziko#top_resemble .useful_column li a:before, body.ziko#first .useful_column li a:before, body.ziko#flow .useful_column li a:before, body.ziko#purchase .useful_column li a:before, body.ziko#column .useful_column li a:before {
  border-right: 2px solid #c6af24 !important;
  border-bottom: 2px solid #c6af24 !important;
}
body.ziko#top_resemble .region h2, body.ziko#first .region h2, body.ziko#flow .region h2, body.ziko#purchase .region h2, body.ziko#column .region h2 {
  background: #4894ac !important;
  margin-bottom: 60px;
}
body.ziko#top_resemble .contact_bnsec .contact_bn_block div:nth-of-type(2) h3, body.ziko#first .contact_bnsec .contact_bn_block div:nth-of-type(2) h3, body.ziko#flow .contact_bnsec .contact_bn_block div:nth-of-type(2) h3, body.ziko#purchase .contact_bnsec .contact_bn_block div:nth-of-type(2) h3, body.ziko#column .contact_bnsec .contact_bn_block div:nth-of-type(2) h3 {
  background: #3cac67 !important;
}
body.ziko#top_resemble #footer .footer_navblock, body.ziko#first #footer .footer_navblock, body.ziko#flow #footer .footer_navblock, body.ziko#purchase #footer .footer_navblock, body.ziko#column #footer .footer_navblock {
  background: #389e60 !important;
}
body.ziko#top_resemble #footer .snslist li a img, body.ziko#first #footer .snslist li a img, body.ziko#flow #footer .snslist li a img, body.ziko#purchase #footer .snslist li a img, body.ziko#column #footer .snslist li a img {
  width: 34px !important;
}
body.ziko#top_resemble #footer .snslist li:last-of-type a img, body.ziko#first #footer .snslist li:last-of-type a img, body.ziko#flow #footer .snslist li:last-of-type a img, body.ziko#purchase #footer .snslist li:last-of-type a img, body.ziko#column #footer .snslist li:last-of-type a img {
  width: auto !important;
}
body.ziko#top_resemble .c_pageTitle, body.ziko#first .c_pageTitle, body.ziko#flow .c_pageTitle, body.ziko#purchase .c_pageTitle, body.ziko#column .c_pageTitle {
  background: #389e60;
}
body.ziko#top_resemble ._pagenav .wp-pagenavi .nextpostslink,
body.ziko#top_resemble ._pagenav .wp-pagenavi .previouspostslink,
body.ziko#top_resemble ._pagenav .wp-pagenavi span.current,
body.ziko#top_resemble ._pagenav .wp-pagenavi a:hover, body.ziko#first ._pagenav .wp-pagenavi .nextpostslink,
body.ziko#first ._pagenav .wp-pagenavi .previouspostslink,
body.ziko#first ._pagenav .wp-pagenavi span.current,
body.ziko#first ._pagenav .wp-pagenavi a:hover, body.ziko#flow ._pagenav .wp-pagenavi .nextpostslink,
body.ziko#flow ._pagenav .wp-pagenavi .previouspostslink,
body.ziko#flow ._pagenav .wp-pagenavi span.current,
body.ziko#flow ._pagenav .wp-pagenavi a:hover, body.ziko#purchase ._pagenav .wp-pagenavi .nextpostslink,
body.ziko#purchase ._pagenav .wp-pagenavi .previouspostslink,
body.ziko#purchase ._pagenav .wp-pagenavi span.current,
body.ziko#purchase ._pagenav .wp-pagenavi a:hover, body.ziko#column ._pagenav .wp-pagenavi .nextpostslink,
body.ziko#column ._pagenav .wp-pagenavi .previouspostslink,
body.ziko#column ._pagenav .wp-pagenavi span.current,
body.ziko#column ._pagenav .wp-pagenavi a:hover {
  background: #3cac67 !important;
}
body.ziko#top_resemble .wp-pagenavi .first,
body.ziko#top_resemble .wp-pagenavi .last, body.ziko#first .wp-pagenavi .first,
body.ziko#first .wp-pagenavi .last, body.ziko#flow .wp-pagenavi .first,
body.ziko#flow .wp-pagenavi .last, body.ziko#purchase .wp-pagenavi .first,
body.ziko#purchase .wp-pagenavi .last, body.ziko#column .wp-pagenavi .first,
body.ziko#column .wp-pagenavi .last {
  background: #3cac67 !important;
}
body.ziko#first .power {
  background: #c7e5d0;
}
body.ziko#first .power h3 {
  color: #3cac67;
}
body.ziko#first h2.ttl > span {
  border-bottom: 8px solid #3cac67;
}
body.ziko#first .purchase .check_block .checklist > li:before {
  background: url("../images/ziko/check_ziko.svg") no-repeat center center;
}
body.ziko#flow .flow .flow_items .item .item_head {
  background: #4894ac !important;
}
body.ziko#flow .flow .flow_items .item .item_head h3 {
  background: transparent !important;
  border: none;
  color: #fff;
}
body.ziko#flow .flow .flow_items .item .item_body .img_layout h3 {
  color: #3cac67 !important;
}
body.ziko#flow .flow .flow_items .item .item_body .step_btn a {
  background-color: #389e60 !important;
  box-shadow: 0 5px 0 0 #052b10 !important;
}
body.ziko#purchase .purchase_cat > aside h3 {
  background: #3cac67 !important;
}
body.ziko#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 .marker {
  background: linear-gradient(transparent 70%, #c6af24 70%);
}
body.ziko#purchase .purchase_cat > .purchase_main .main_items > li .item_body h3 .marker > span {
  color: #3cac67;
}
body.ziko#purchase .column .column_blocks > article a > div time {
  color: #3cac67;
}
body.ziko#purchase .comment_wrap h4 {
  position: relative;
}
body.ziko#purchase .comment_wrap h4::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #3cac67;
  position: absolute;
  left: 0;
  top: 50%;
}
body.ziko#purchase .comment_wrap h4 span {
  color: #3cac67;
  font-weight: bold;
  font-size: 15px;
  background: #fff;
  position: relative;
  padding-right: 8px;
}
body.ziko#purchase .comment_wrap p {
  font-weight: normal;
  font-size: 15px;
}
body.ziko#purchase .comment_wrap.large_pc h4 span {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  body.ziko#purchase .comment_wrap.large_pc h4 span {
    font-size: 15px;
  }
}
body.ziko#purchase .comment_wrap.large_pc p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body.ziko#purchase .comment_wrap.large_pc p {
    font-size: 15px;
  }
}
body.ziko#purchase .purchase_detail .purchase_block .purchase_amount_dl dt {
  background: #ada142 !important;
  color: #fff;
}
body.ziko#purchase .purchase_detail .purchase_block .purchase_amount_dl dd {
  color: #3cac67 !important;
}
body.ziko#purchase .ttl_border > span {
  border-bottom: 8px solid #3cac67 !important;
}
body.ziko#purchase .purchase_detail {
  background: #f6f5ee !important;
}
body.ziko#purchase .purchase_cat > .purchase_main .main_items li > div {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  height: 100%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body.ziko#purchase .purchase_cat > .purchase_main .main_items li a {
  background: transparent;
  border: none;
  box-shadow: none;
  text-decoration: underline;
}
body.ziko#purchase .purchase_cat > .purchase_main .main_items li .item_body dl dd .network_wrap {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
}
body.ziko#column .column_sec1 h3 {
  color: #3cac67 !important;
}
body.ziko#column .ttl_border > span {
  border-bottom: 8px solid #3cac67;
}
body.ziko#column .column_block > aside h3 {
  background: #3cac67 !important;
}
body.ziko#column .column_listsec .main_items > li .item_body .catdl dt ul > li {
  background: #c6af24 !important;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .under_wrap p {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
body.ziko #process.ziko_top section .sec > div {
  margin-bottom: 20px;
}
body.ziko #process.ziko_top section .sec > div .inner_ttl {
  color: #0cad2e;
  font-size: 20px;
  font-weight: bold;
}
body.ziko #process.ziko_top section .sec p {
  font-weight: normal;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .sec p {
    font-size: 14px;
  }
}
body.ziko #process.ziko_top section .sec .green_dots {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .sec .green_dots {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .sec .yback_ttl {
    margin: 20px 0 14px;
  }
}
body.ziko #process.ziko_top section .sec .img_wrap {
  padding: 0 8.3%;
}
body.ziko #process.ziko_top section .gborder_ttl {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .gborder_ttl {
    margin-top: 24px;
  }
}
body.ziko #process.ziko_top section .has_number_list li {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .has_number_list li {
    font-size: 14px;
  }
}
body.ziko #process.ziko_top section .has_number_list li .number {
  margin-top: 1px;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section .has_number_list li .number {
    max-width: 22px;
    height: 22px;
  }
}
body.ziko #process.ziko_top section .step {
  padding: 40px 1.6% 30px;
}
body.ziko #process.ziko_top section.index > div h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  body.ziko #process.ziko_top section.index > div h3 {
    margin-top: 14px;
  }
}
body.ziko #process.ziko_top section.index > div .index_ul {
  margin-bottom: 10px;
}
body.ziko #process.ziko_top section.index > div .index_ul li {
  border-bottom: none;
  font-size: 16px;
  margin-bottom: 4px;
}
body.ziko #process.ziko_top section.index > div .index_ul li a {
  display: block;
  font-weight: normal;
  margin-bottom: 4px;
  padding-left: 15px;
  position: relative;
}
body.ziko #process.ziko_top section.index > div .index_ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #0cad2e;
  border-bottom: 1px solid #0cad2e;
  transform: rotate(-45deg);
}
body.ziko .sec_ziko_case .under_wrap .text {
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body.ziko .sec_ziko_case .under_wrap .text {
    font-size: 14px !important;
  }
}
body.ziko .sec_ziko_case .main_items {
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 3.125%;
}
body.ziko .sec_ziko_case .main_items li {
  width: 31.25%;
  margin-bottom: 12px;
  margin-bottom: 30px;
  padding: 15px 25px;
}
body.ziko .sec_ziko_case .main_items li > div {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  height: 100%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body.ziko .sec_ziko_case .main_items li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body.ziko .sec_ziko_case .main_items li .item_body {
  padding: 19px 20px 10px;
}
body.ziko .sec_ziko_case .main_items li .item_body h3 {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
body.ziko .sec_ziko_case .main_items li .item_body h3 .marker {
  background: linear-gradient(transparent 70%, #c6af24 70%);
}
body.ziko .sec_ziko_case .main_items li .item_body h3 .marker > span {
  color: #3cac67;
}
body.ziko .sec_ziko_case .main_items li .item_body h3 .marker > span.m1 {
  font-size: 283.34%;
  line-height: 0.7;
  display: inline-block;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
}
body.ziko .sec_ziko_case .main_items li .item_body h3 .marker > span.m1 > span {
  font-size: 73.53%;
}
body.ziko .sec_ziko_case .main_items li .item_body dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1.4;
}
body.ziko .sec_ziko_case .main_items li .item_body dl dt,
body.ziko .sec_ziko_case .main_items li .item_body dl dd {
  margin-bottom: 10px;
}
body.ziko .sec_ziko_case .main_items li .item_body dl dt {
  width: 80px;
  background: #e5e5e5;
  text-align: center;
  font-size: 16px;
  padding: 4px 5px;
  font-weight: normal;
}
body.ziko .sec_ziko_case .main_items li .item_body dl dd {
  width: calc(100% - 100px);
}
body.ziko .sec_ziko_case .main_items li .item_body dl dd .network_wrap {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
}
body.ziko .sec_ziko_case .main_items li .item_body dl dd .network_wrap a {
  text-decoration: underline;
}
body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap h4 {
  position: relative;
}
body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap h4::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #3cac67;
  position: absolute;
  left: 0;
  top: 50%;
}
body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap h4 span {
  color: #3cac67;
  font-weight: bold;
  font-size: 15px;
  background: #fff;
  position: relative;
  padding-right: 8px;
}
body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap p {
  font-weight: normal;
  font-size: 15px;
}
body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap.large_pc h4 span {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap.large_pc h4 span {
    font-size: 15px;
  }
}
body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap.large_pc p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body.ziko .sec_ziko_case .main_items li .item_body .comment_wrap.large_pc p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1260px) {
  body.ziko .sec_ziko_case .purchase_main .main_items {
    justify-content: space-between;
    gap: 0;
  }
  body.ziko .sec_ziko_case .purchase_main .main_items > li {
    width: 48.5%;
  }
  body.ziko .sec_ziko_case .purchase_main .main_items li .item_body h3 {
    font-size: 15px;
  }
  body.ziko .sec_ziko_case .purchase_main .main_items li .item_body > dl dt {
    font-size: 14px;
  }
  body.ziko .sec_ziko_case .purchase_main .main_items li .item_body > dl dd {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  body.ziko .sec_ziko_case > .purchase_main {
    width: auto;
    margin-bottom: 45px;
  }
  body.ziko .sec_ziko_case .purchase_main .main_items {
    display: block;
  }
  body.ziko .sec_ziko_case .purchase_main .main_items > li {
    width: auto;
  }
}
body.ziko .sec_ziko_case #ziko_case_slider {
  padding: 0 60px;
  display: none;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-track {
  display: flex;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-slide {
  height: auto !important;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-slide > div,
body.ziko .sec_ziko_case #ziko_case_slider .slick-slide li > div,
body.ziko .sec_ziko_case #ziko_case_slider .slick-slide li,
body.ziko .sec_ziko_case #ziko_case_slider .slick-slide a {
  height: 100%;
}
body.ziko .sec_ziko_case #ziko_case_slider.slick-initialized {
  display: block;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-prev,
body.ziko .sec_ziko_case #ziko_case_slider .slick-next {
  width: 60px;
  height: 60px;
  background: url("../images/next.svg") no-repeat center center;
  background-size: contain;
  transition: opacity 0.4s ease-in-out;
  z-index: 99;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-prev:hover,
body.ziko .sec_ziko_case #ziko_case_slider .slick-next:hover {
  opacity: 0.7;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-prev::before,
body.ziko .sec_ziko_case #ziko_case_slider .slick-next::before {
  content: none;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-prev {
  left: 10px;
  background: url("../images/prev.svg") no-repeat center center;
  background-size: contain;
}
body.ziko .sec_ziko_case #ziko_case_slider .slick-next {
  right: 10px;
}
body.ziko .sec_ziko_case #ziko_case_slider li {
  padding: 15px;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px dotted #dddddd;
  line-height: 1.3;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head dl {
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head dl dt {
  font-weight: bold;
  width: calc(100% - 100px);
  padding-right: 15px;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head dl dd {
  font-weight: normal;
  background: #e5e5e5;
  line-height: 1.1;
  width: 100px;
  text-align: center;
  padding: 5px 2px;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head h3 {
  font-size: 30px;
  font-weight: bold;
  color: #ffa31e;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head > div:nth-child(1) {
  width: 130px;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head > div:nth-child(2) {
  width: calc(100% - 155px);
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head .icon {
  border-radius: 50%;
  background: #ffffdd;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_head .icon img {
  width: 100%;
  object-fit: contain;
  object-position: center center;
  aspect-ratio: 1/1;
}
body.ziko .sec_ziko_case #ziko_case_slider li .slider_body {
  font-weight: normal;
}
@media screen and (max-width: 1650px) {
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head dl {
    font-size: 18px;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head h3 {
    font-size: 23px;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head > div:nth-child(1) {
    width: 20%;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head > div:nth-child(2) {
    width: 75%;
  }
}
@media only screen and (max-width: 1260px) {
  body.ziko .sec_ziko_case #ziko_case_slider {
    padding: 0 50px;
  }
  body.ziko .sec_ziko_case #ziko_case_slider .slick-prev,
  body.ziko .sec_ziko_case #ziko_case_slider .slick-next {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.ziko .sec_ziko_case #ziko_case_slider {
    padding: 0;
  }
  body.ziko .sec_ziko_case #ziko_case_slider .slick-list {
    padding: 0 11.2% 0 !important;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li {
    padding: 0 10px;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head {
    display: block;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head > div:nth-child(1) {
    width: auto;
    margin-bottom: 15px;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head > div:nth-child(2) {
    width: auto;
  }
  body.ziko .sec_ziko_case #ziko_case_slider li .slider_head .icon {
    max-width: 65px;
    margin: 0 auto;
  }
}
body .sec_ziko_satei {
  background: #b6dbec;
  padding: 50px 0;
}
body .sec_ziko_satei p {
  letter-spacing: 0.04em;
}
body .sec_ziko_satei .color4 {
  font-size: clamp(20px, 2.4vw, 24px);
}
@media only screen and (max-width: 767px) {
  body .sec_ziko_satei .color4 {
    font-size: min(20px, 4.5vw);
  }
}
@media only screen and (max-width: 767px) {
  body .sec_ziko_satei .txt {
    font-size: min(16px, 4vw);
    margin-bottom: 0;
  }
}
body .sec_ziko_satei .fs14 {
  font-size: 14px;
  color: #333;
}
@media only screen and (min-width: 768px) {
  body .sec_ziko_satei .sec_ziko_satei_inner {
    display: grid;
    grid-template-columns: 55% 38%;
    align-items: center;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  body .sec_ziko_satei .sec_ziko_satei_inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  body .sec_ziko_satei .sec_ziko_satei_inner .ziko_satei_text {
    padding-right: 50px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  body .sec_ziko_satei .sec_ziko_satei_inner .ziko_satei_text::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 42px;
    background-color: #ffea01;
    clip-path: polygon(24px 50%, 0% 0%, 0% 42px);
    margin: auto;
    inset: 0 8% 0 auto;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  body .sec_ziko_satei .sec_ziko_satei_inner .ziko_satei_text::before {
    inset: 0 20px 0 auto;
  }
}
body .sec_ziko_satei .sec_ziko_satei_inner .ziko_satei_text .pc {
  font-size: clamp(20px, 2.4vw, 40px);
  text-align: left;
  width: fit-content;
  margin: 0 auto 40px;
}

body#top_resemble .area_ttl {
  background: #2243b6;
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  body#top_resemble .area_ttl {
    padding: 15px 0 10px;
  }
}
body#top_resemble .area_ttl h1 {
  font-size: min(4vw, 18px);
}
@media only screen and (min-width: 768px) {
  body#top_resemble .area_ttl h1 {
    font-size: 20px;
  }
}
body#top_resemble .area_ttl h1 span {
  color: #ffff01;
  font-size: 122%;
}
body#top_resemble .fv-ziko {
  padding: 0;
  max-width: none;
  margin: 0;
}
body#top_resemble .fv-ziko img {
  width: 100%;
  height: auto;
}
body#top_resemble .p_purchase_card {
  background: transparent;
  border: none;
  box-shadow: none;
}
body#top_resemble .p_purchase_card .p_purchase_card__head {
  background: transparent;
}

body.ziko#top_resemble .region {
  padding: 50px 0 0;
}
body.ziko#top_resemble .region h2 {
  background: transparent !important;
}
body.ziko#top_resemble .region h2.index_ttl {
  color: #246fdf;
}
body.ziko#top_resemble .region h2.index_ttl .underlined {
  border-bottom: 4px solid #246fdf;
}
body.ziko#top_resemble .sec_btn .gbtn a {
  background-color: #fff !important;
  box-shadow: 0 4px 0 0 #0143a6 !important;
}
body.ziko#top_resemble .gbtn a.btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625 !important;
  background: #ed3c46 !important;
}
body.ziko#top_resemble .gbtn a.btn_rounded.green {
  box-shadow: 0 4px 0 0 #00661a !important;
  background: #01a832 !important;
}
body.ziko#top_resemble .gbtn a.btn_rounded.yellow {
  box-shadow: 0 4px 0 0 #de8300 !important;
  background: #ffa31e !important;
}

body.ziko#top_resemble.newForm #popup_form {
  background: #faffc3;
}
@media only screen and (min-width: 768px) {
  body.ziko#top_resemble.newForm #popup_form {
    padding: 30px 0 50px;
  }
}
body.ziko#top_resemble.newForm #popup_form .assessment_catch {
  display: none;
}
body.ziko#top_resemble.newForm #popup_form > #contact .assessment_form .assessment_body .step_form_2 {
  margin-top: 40px;
  padding-top: 25px;
}

body.ziko#top_resemble.newForm #popup_form > #contact .assessment_form .assessment_body .assessment_catch span {
  color: #246fdf;
}

body.ziko#top_resemble.newForm #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select select {
  border: 1px solid #1080d0;
}

body.ziko#top_resemble.newForm #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select:before {
  background: url("../../resatei_includes/img/common/plus_blue.svg") no-repeat center center/contain;
}

body.ziko#top_resemble #footer .footer_navblock {
  background: #00a831 !important;
}

#process .in-block {
  display: inline-block;
}
#process .l-breadcrumb {
  margin-bottom: 10px !important;
}
#process .text-center {
  text-align: center;
}
#process .obi_common_txt h3 {
  font-size: 30px;
  font-weight: bold;
  color: #0cad2e;
  margin-bottom: 30px;
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  #process .obi_common_txt h3 {
    font-size: 20px;
  }
}
#process .obi_common_txt .top_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #0cad2e;
  margin-bottom: 30px;
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  #process .obi_common_txt .top_ttl {
    font-size: 20px;
  }
}
#process .obi_common_txt p {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #process .obi_common_txt p {
    font-size: 14px;
  }
}
#process .actions_wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 55px;
}
@media only screen and (max-width: 767px) {
  #process .actions_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#process .actions_wrap li {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #process .actions_wrap li {
    text-align: center;
  }
}
#process .actions_wrap li a {
  width: 100%;
}
#process .actions_wrap li a img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #process .actions_wrap li a img {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  #process .actions_wrap li:nth-child(2) {
    width: 50%;
    text-align: end;
  }
}
#process .actions_wrap li:nth-child(2) a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
#process .actions_wrap li:nth-child(2) a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
#process .actions_wrap li:nth-child(3) {
  width: 79%;
}
@media only screen and (max-width: 767px) {
  #process .actions_wrap li:nth-child(3) {
    width: 40%;
    text-align: left;
  }
}
#process .actions_wrap li:nth-child(3) a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
#process .actions_wrap li:nth-child(3) a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
#process .bg-gray {
  background: #f9f9f9;
  padding: 30px 40px;
}
@media only screen and (max-width: 767px) {
  #process .bg-gray {
    padding: 30px 15px;
  }
}
#process .bg-gray .gborder_ttl {
  margin-top: 0;
}
#process .bg-gray .index_ul li {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  #process .bg-gray .index_ul li {
    font-size: 16px;
  }
}
#process .bg-gray .index_ul li a {
  display: block;
  margin-bottom: 4px;
}
#process .bg-gray .index_ul.border-less li {
  border-bottom: none;
  position: relative;
  margin-bottom: 6px;
  padding-left: 12px;
}
#process .bg-gray .index_ul.border-less li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #0cad2e;
  border-right: solid 1px #0cad2e;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#process .index_number {
  background: #deef68;
  border-radius: 50px;
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 4px;
  vertical-align: middle;
  text-indent: 0;
  padding-left: 0;
}
#process .gborder_ttl {
  margin-top: 50px;
}
#process .gborder_ttl .index_number {
  margin-bottom: 6px;
  text-indent: 0;
  padding-left: 0;
}
#process .sec p {
  margin-bottom: 20px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #process .sec p {
    font-size: 14px;
  }
}
#process .sec p:last-child {
  margin-bottom: 0;
}
#process .sec p span.green {
  color: #0cad2e;
}
#process .sec p span.fs-20 {
  font-size: 20px;
}
#process .sec p.no_refund {
  background: #e3f5e9;
  padding: 20px;
  font-size: 22px;
}
#process .sec .yback_ttl {
  background: #deef68;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 40px 0 20px;
}
@media only screen and (max-width: 767px) {
  #process .sec .yback_ttl {
    font-size: 16px;
  }
}
#process .sec table {
  border: 2px #cccccc solid;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #process .sec table tbody {
    display: block;
  }
}
#process .sec table tbody tr {
  border-bottom: 1px #cccccc solid;
}
@media only screen and (max-width: 767px) {
  #process .sec table tbody tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
#process .sec table tbody tr:last-child {
  border-bottom: none;
}
#process .sec table tbody tr th {
  font-weight: normal;
  background: #eaeaea;
  max-width: 200px;
  width: 20%;
  padding: 12px 20px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #process .sec table tbody tr th {
    max-width: none;
    width: 100%;
  }
}
#process .sec table tbody tr td {
  width: 80%;
  padding: 12px 20px;
}
@media only screen and (max-width: 767px) {
  #process .sec table tbody tr td {
    width: 100%;
  }
}
#process .sec table tbody tr td ul li {
  font-weight: bold;
  padding-left: 16px;
  position: relative;
}
#process .sec table tbody tr td ul li::before {
  position: absolute;
  content: "";
  background-size: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #deef68;
  top: 10px;
  left: 0;
}
#process .sec table tbody tr td p {
  line-height: 1.8;
  margin-bottom: 0 !important;
  padding-left: 16px;
}
#process span.red {
  color: #ed3c46;
}
#process span.bold {
  font-weight: bold;
}
#process .column_wrap {
  padding: 90px 0 80px;
  background: #e3f5e9;
}
#process .column_wrap h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #process .column_wrap h3 {
    font-size: 20px;
  }
}
#process .column_wrap ul {
  border-top: 2px #0cad2e solid;
  background: #fff;
  margin-bottom: 50px;
}
#process .column_wrap ul li {
  border-top: 1px #ccc solid;
  position: relative;
}
#process .column_wrap ul li::before {
  position: absolute;
  content: "";
  left: 14px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #0cad2e;
  border-right: 1px solid #0cad2e;
  top: calc(50% - 4px);
  transform: rotate(45deg);
}
#process .column_wrap ul li a {
  display: block;
  padding: 15px;
  padding-left: 40px;
}
#process .certificate_block {
  position: relative;
}
#process .certificate_block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  background: #ffffdd;
  z-index: -1;
}
#process .certificate_block .certificate_item {
  margin-bottom: 43px;
  border: 2px solid #000000;
  background: #fff;
}
#process .certificate_block .certificate_item .item_head .dl {
  display: flex;
}
#process .certificate_block .certificate_item .item_head .dl .dt {
  width: 100px;
  padding: 7px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffea01;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}
#process .certificate_block .certificate_item .item_head .dl .dt .fs-l {
  font-size: 125%;
}
#process .certificate_block .certificate_item .item_head .dl .dd {
  width: calc(100% - 100px);
  font-size: 20px;
  font-weight: bold;
  background: #f9f9f9;
  padding: 10px 16px;
}
#process .certificate_block .certificate_item .item_body {
  padding: 20px 25px;
}
#process .certificate_block .certificate_item .item_body .img2block {
  display: flex;
  justify-content: space-between;
}
#process .certificate_block .certificate_item .item_body .img2block > div:nth-child(1) {
  width: 56.3%;
}
#process .certificate_block .certificate_item .item_body .img2block > div:nth-child(2) {
  width: 41.95%;
}
#process .certificate_block .certificate_item .item_body .check {
  display: flex;
  flex-wrap: wrap;
  background: #e3f5e9;
  font-weight: bold;
  margin-bottom: 16px;
}
#process .certificate_block .certificate_item .item_body .check > dt {
  width: 90px;
  position: relative;
  background: #0cad2e;
  color: #fff;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  margin: 0;
}
#process .certificate_block .certificate_item .item_body .check > dt::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 7px;
  border-color: transparent transparent transparent #0cad2f;
}
#process .certificate_block .certificate_item .item_body .check > dd {
  width: calc(100% - 90px);
  padding: 6px 10px;
}
#process .certificate_block .certificate_item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #process .certificate_block .certificate_item .item_body {
    padding: 15px 15px;
  }
  #process .certificate_block .certificate_item .item_head dl dt {
    font-size: 13px;
    width: 70px;
  }
  #process .certificate_block .certificate_item .item_head dl dd {
    font-size: 15px;
    width: calc(100% - 70px);
  }
  #process .certificate_block .certificate_item .item_body .img2block {
    display: block;
  }
  #process .certificate_block .certificate_item .item_body .img2block > div {
    width: auto !important;
  }
  #process .certificate_block .certificate_item .item_body .img2block > div:nth-child(1) {
    margin-bottom: 10px;
  }
  #process .certificate_block .certificate_item .item_body .img2block > div:nth-child(2) {
    text-align: center;
  }
}
#process .dot_list li {
  padding-left: 16px;
  position: relative;
}
#process .dot_list li::before {
  position: absolute;
  content: "";
  background-size: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #deef68;
  top: 10px;
  left: 0;
}

#top_resemble {
  font-family: "Noto Sans JP", sans-serif;
}
#top_resemble .btn_rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  color: #fff;
  font-weight: bold;
  border-radius: 85px;
  transition: 0.5s ease-in-out;
  position: relative;
  text-align: center;
  height: 90px;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #top_resemble .btn_rounded {
    height: 64px;
  }
}
#top_resemble .btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625 !important;
  background: #ed3c46 !important;
}
#top_resemble .btn_rounded.green {
  box-shadow: 0 4px 0 0 #00661a !important;
  background: #01a832 !important;
}
#top_resemble .btn_rounded.yellow {
  box-shadow: 0 4px 0 0 #de8300 !important;
  background: #ffa31e !important;
}
#top_resemble .btn_rounded.yellow div {
  display: flex;
  flex-direction: column;
}
#top_resemble .btn_rounded.yellow .tel_icon {
  position: relative;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
  line-height: 1;
  text-align: left;
}
#top_resemble .btn_rounded.yellow .tel_icon::before {
  position: absolute;
  content: "";
  background: url(../images/index/free.svg) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  margin: auto;
  inset: 0 auto 0 0;
}
#top_resemble .btn_rounded:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#top_resemble .btn_rounded::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  #top_resemble .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
#top_resemble .btn_rounded.type_web span {
  position: relative;
  padding-left: 2em;
}
#top_resemble .btn_rounded.type_web span::after {
  position: absolute;
  content: "";
  background: url(../images/index/monitor.svg) no-repeat center center/contain;
  width: 36px;
  height: 26px;
  margin: auto;
  inset: 0 auto 0 0;
}
@media (max-width: 374px) {
  #top_resemble .btn_rounded.type_web span::after {
    width: 28px;
    height: 20px;
    inset: 0 auto 0 16px;
  }
}
#top_resemble .btn_rounded.type_16 {
  font-size: clamp(16px, 1.8vw, 22px);
  color: #1f6bdd;
  border: 2px solid #1f6bdd;
}
#top_resemble .btn_rounded.type_16::before {
  border-right: 2px solid #1f6bdd;
  border-bottom: 2px solid #1f6bdd;
}
@media only screen and (max-width: 767px) {
  #top_resemble .btn_rounded.type_16 {
    line-height: 1.3em;
  }
}
#top_resemble .btn_rounded.phone > span {
  position: relative;
  padding: 0 2em 0 2.5em;
}
#top_resemble .btn_rounded.phone > span::after {
  position: absolute;
  content: "";
  background: url(../images/index/phone.svg) no-repeat center center/contain;
  width: 30px;
  height: 37px;
  margin: auto;
  inset: 0 auto 0 0;
}
#top_resemble .btn_rounded.btn_ziko_tel {
  background: #ffa31e;
  box-shadow: 0 4px 0 0 #de8300;
  padding-right: 5%;
}
@media only screen and (max-width: 767px) {
  #top_resemble .btn_rounded.btn_ziko_tel {
    height: 82px;
    padding-right: 15%;
  }
}
#top_resemble .btn_rounded.btn_ziko_tel .btn-badge {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background-color: #fff155;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  #top_resemble .btn_rounded.btn_ziko_tel .btn-badge {
    width: 70px;
    height: 70px;
  }
}
#top_resemble .btn_rounded.btn_ziko_tel .btn-badge .badge-small {
  font-size: 12px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #top_resemble .btn_rounded.btn_ziko_tel .btn-badge .badge-small {
    font-size: 14px;
  }
}
#top_resemble .btn_rounded.btn_ziko_tel .btn-badge .badge-large {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  #top_resemble .btn_rounded.btn_ziko_tel .btn-badge .badge-large {
    font-size: 18px;
  }
}
#top_resemble .btn_rounded.btn_ziko_tel .tel_icon {
  margin: 0 auto;
}
#top_resemble .btn_rounded.btn_ziko_tel .btn-content {
  text-align: center;
  color: #fff;
  padding-left: 22px;
}
#top_resemble .btn_rounded.btn_ziko_tel .btn-content .btn_text_small {
  font-size: 12px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #top_resemble .btn_rounded.btn_ziko_tel .btn-content .btn_text_small {
    font-size: 14px;
  }
}
#top_resemble .sec_ziko_btnarea {
  background: #c4f0ff;
  padding: 50px 0;
}
#top_resemble .sec_ziko_btnarea > .under_wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #top_resemble .sec_ziko_btnarea > .under_wrap {
    padding: 0 30px;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble .sec_ziko_btnarea .btnarea_box {
    width: 35%;
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble .sec_ziko_btnarea .btnarea_box.long {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble .sec_ziko_btnarea .btnarea_box.long .gbtn {
    display: flex;
    gap: 10px;
  }
}
#top_resemble .sec_ziko_btnarea .comment {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin-bottom: 25px;
  font-size: 18px !important;
}
#top_resemble .sec_ziko_btnarea .comment::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#top_resemble .fv-ziko {
  padding: 0;
  max-width: none;
  margin: 0;
}
#top_resemble .fv-ziko img {
  width: 100%;
  height: auto;
}
#top_resemble .fv-ziko .c-banner {
  width: 100%;
  background: url(../images/ziko/ziko_fv_back.webp) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #top_resemble .fv-ziko .c-banner {
    background: url(../images/ziko/ziko_fv_back_sp.webp) no-repeat center center/cover;
  }
}
#top_resemble .fv-ziko .c-banner__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #top_resemble .fv-ziko .c-banner__inner {
    padding: 20px 15px 0;
  }
}
#top_resemble .fv-ziko .c-banner__content {
  position: relative;
  z-index: 5;
  width: 55%;
}
@media only screen and (max-width: 767px) {
  #top_resemble .fv-ziko .c-banner__content {
    width: 64%;
  }
}
#top_resemble .fv-ziko .c-banner__title {
  margin-bottom: 40px;
}
#top_resemble .fv-ziko .c-banner__visual {
  position: relative;
  z-index: 5;
}
#top_resemble .fv-ziko .c-banner__visual-img {
  max-width: 670px;
  width: 100%;
}
#top_resemble .fv-ziko .c-banner__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53%;
  max-width: 647px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  #top_resemble .fv-ziko .c-banner__person {
    width: 47%;
    max-width: none;
    bottom: -20%;
  }
}
#top_resemble .fv-ziko .c-banner__features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.3%;
  z-index: 20;
  max-width: 680px;
}
@media only screen and (min-width: 768px) {
  #top_resemble .fv-ziko .c-banner__features {
    width: 56%;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble .fv-ziko .c-banner__features {
    gap: 5px;
    padding-left: 1.5%;
    padding-bottom: 12px;
    max-width: none;
  }
}
#top_resemble .fv-ziko .c-banner__features picture {
  width: 100%;
}
#top_resemble .fv-ziko .c-banner__bottom {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  #top_resemble .fv-ziko .c-banner__bottom {
    background-color: #13328b;
    padding: 20px 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble .fv-ziko .c-banner__bottom {
    padding-top: 0;
    position: relative;
    z-index: 11;
  }
}
#top_resemble .fv-ziko .c-banner__bottom__inner {
  max-width: 970px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #top_resemble .fv-ziko .c-banner__bottom__inner {
    display: flex;
    gap: 2%;
    padding-right: 2%;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble .fv-ziko .c-banner__decoration {
    width: 41.7%;
  }
}
#top_resemble #process .newForm #popup_form {
  background: #faffc3;
}
#top_resemble #process .index_ttl {
  color: #246fdf;
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .index_ttl {
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  #top_resemble #process .index_ttl {
    font-size: min(36px, 7vw);
  }
}
#top_resemble #process .index_ttl .underlined {
  border-bottom: 4px solid #246fdf;
  display: inline-block;
  padding-bottom: 6px;
}
#top_resemble #process .index_ttl .index_ttl_sub {
  font-size: 77%;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .index_ttl .index_ttl_sub {
    font-size: 88%;
  }
}
#top_resemble #process .index_ttl .small {
  font-size: 55%;
}
#top_resemble #process .index_ttl.black {
  color: #000;
}
#top_resemble #process .maker {
  background: linear-gradient(transparent 70%, #ffee30 70%);
}
#top_resemble #process .color_blue {
  color: #1f6bdd;
}
#top_resemble #process .with_side_slash {
  position: relative;
  padding: 0 1em;
  text-align: center;
  display: inline-block;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.04em;
}
@media (max-width: 374px) {
  #top_resemble #process .with_side_slash {
    font-size: min(20px, 4.5vw);
  }
}
#top_resemble #process .with_side_slash::before, #top_resemble #process .with_side_slash::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 90%;
  background: #000;
  margin: auto;
}
#top_resemble #process .with_side_slash::before {
  inset: 0 auto 0 0;
  transform: rotate(-30deg);
}
#top_resemble #process .with_side_slash::after {
  inset: 0 0 0 auto;
  transform: rotate(30deg);
}
#top_resemble #process .with_side_slash.red::before, #top_resemble #process .with_side_slash.red::after {
  background: #f0101d;
}
#top_resemble #process .with_side_slash span .fn30 {
  font-size: 150%;
}
#top_resemble #process .slick-prev,
#top_resemble #process .slick-next {
  width: 40px;
  height: 40px;
  background: url("../images/index/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .slick-prev,
  #top_resemble #process .slick-next {
    width: 60px;
    height: 60px;
  }
}
#top_resemble #process .slick-prev:hover,
#top_resemble #process .slick-next:hover {
  opacity: 0.7;
}
#top_resemble #process .slick-prev::before,
#top_resemble #process .slick-next::before {
  content: none;
}
#top_resemble #process .slick-prev {
  left: 20px;
  background: url("../images/index/prev.svg") no-repeat center center;
  background-size: contain;
}
#top_resemble #process .slick-next {
  right: 20px;
}
#top_resemble #process .slick-dots {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#top_resemble #process .slick-dots li {
  width: 8px;
  height: 8px;
}
#top_resemble #process .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
}
#top_resemble #process .slick-dots li button::before {
  opacity: 1;
  content: "";
  background: #ccc;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
#top_resemble #process .slick-dots li.slick-active button:before {
  background: #1f6bdd;
}
#top_resemble #process section.top {
  background: #e9f9ff;
  padding: 50px 0 30px;
}
#top_resemble #process section.top .ttl_area h2 {
  line-height: 1.3em;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .ziko_high_price_slider {
    padding: 0 80px;
  }
}
#top_resemble #process section.top .ziko_high_price_slider .slick-track {
  display: flex;
}
#top_resemble #process section.top .ziko_high_price_slider .slick-slide {
  margin: 10px 20px;
  height: auto;
}
@media only screen and (max-width: 1260px) {
  #top_resemble #process section.top .ziko_high_price_slider .slick-slide {
    margin: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .ziko_high_price_slider .slick-slide {
    margin: 0 15px 0 0;
  }
}
#top_resemble #process section.top .ziko_high_price_slider .slick-slide > div {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .ziko_high_price_slider .slick-prev {
    display: none !important;
  }
  #top_resemble #process section.top .ziko_high_price_slider .slick-list {
    overflow: visible;
    margin-left: 0;
    padding-right: 10%;
  }
}
#top_resemble #process section.top .slick-dots li button::before {
  background: rgba(36, 111, 223, 0.2);
}
#top_resemble #process section.top .slick-dots li.slick-active button:before {
  background: #1f6bdd;
}
#top_resemble #process section.top .high_price_item {
  height: 100%;
  display: block;
  background: #fff;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .high_price_item {
    padding: 25px;
  }
}
#top_resemble #process section.top .high_price_item .high_price_head {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 374px) {
  #top_resemble #process section.top .high_price_item .high_price_head {
    flex-wrap: wrap;
  }
}
#top_resemble #process section.top .high_price_item .high_price_head .icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
}
@media only screen and (max-width: 960px) {
  #top_resemble #process section.top .high_price_item .high_price_head .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}
#top_resemble #process section.top .high_price_item .high_price_head .ttl-wrap {
  margin-bottom: 0;
}
#top_resemble #process section.top .high_price_item .high_price_head .ttl-wrap .high_price_title {
  color: #2243b6;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-size: clamp(16px, 1.6vw, 18px);
  text-align: left;
}
#top_resemble #process section.top .high_price_item .high_price_head .ttl-wrap dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
#top_resemble #process section.top .high_price_item .high_price_head .ttl-wrap dl dt {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #000;
  padding: 0 10px;
  font-size: clamp(12px, 1.2vw, 14px);
}
#top_resemble #process section.top .high_price_item .high_price_head .ttl-wrap dl dd {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
}
#top_resemble #process section.top .high_price_item figure {
  aspect-ratio: 27/16;
}
#top_resemble #process section.top .high_price_item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top_resemble #process section.top .high_price_item .high_price_detail {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
#top_resemble #process section.top .high_price_item .high_price_detail .car_name {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  width: auto;
  /* min-width: 40%; */
  text-align: center;
  max-width: 54%;
}
@media only screen and (max-width: 1260px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .car_name {
    max-width: 60%;
  }
}
#top_resemble #process section.top .high_price_item .high_price_detail .car_name dl {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
#top_resemble #process section.top .high_price_item .high_price_detail .car_name dl:first-of-type {
  margin-bottom: 5px;
}
#top_resemble #process section.top .high_price_item .high_price_detail .car_name dl dt {
  background: #faffbf;
  text-align: center;
  min-width: 63px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 400;
}
#top_resemble #process section.top .high_price_item .high_price_detail .car_name dl dd {
  font-size: 12px;
  text-align: left;
  font-weight: 500;
  line-height: 1.3rem;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .car_name dl dd {
    font-size: 14px;
  }
}
#top_resemble #process section.top .high_price_item .high_price_detail .kaitori_flex {
  display: flex;
  gap: 10px;
  margin-bottom: auto;
}
@media (max-width: 1300px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .kaitori_flex {
    align-items: center;
  }
}
#top_resemble #process section.top .high_price_item .high_price_detail .kaitori {
  border: 1px solid #f0101d;
  border-radius: 2px;
  line-height: 1.4;
  font-size: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 1rem;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .kaitori {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .kaitori {
    font-size: 14px;
  }
}
#top_resemble #process section.top .high_price_item .high_price_detail .price {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
#top_resemble #process section.top .high_price_item .high_price_detail .price span {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1;
}
@media only screen and (max-width: 1260px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .price span {
    font-size: clamp(26px, 2.8vw, 56px);
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .high_price_item .high_price_detail .price span {
    font-size: min(56px, 12vw);
  }
}
#top_resemble #process section.top .car_model_list {
  border: 3px solid #2243b6;
  background: #fff;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .car_model_list {
    padding: 40px 30px;
  }
}
#top_resemble #process section.top .car_model_list .model_list_ttl {
  margin: 0 0 20px;
}
#top_resemble #process section.top .car_model_list .model_list_ttl h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .car_model_list .model_list_ttl h2 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin: 0 0 30px;
  }
}
#top_resemble #process section.top .car_model_list .model_list_ttl h2 .model_list_ttl_flex {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
}
#top_resemble #process section.top .car_model_list .model_list_ttl h2 .model_list_ttl_flex .medium {
  background: #f7ffbc;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 3px 12px;
  font-size: clamp(16px, 1.8vw, 20px);
}
#top_resemble #process section.top .car_model_list .car_model_name {
  color: #333;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 1.8vw, 22px);
  word-break: keep-all;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process section.top .car_model_list .car_model_name {
    max-width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .car_model_list .car_model_name {
    font-size: min(16px, 3.6vw);
    max-width: 540px;
    margin: 0 auto 20px;
  }
}
#top_resemble #process section.top .car_model_list .car_model_name span {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .car_model_list .with_side_slash {
    letter-spacing: -0.08em;
  }
}
#top_resemble #process section.top .car_model_list .btn_area {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process section.top .car_model_list .btn_area {
    flex-direction: column;
    margin-top: 0;
  }
}
#top_resemble #process .sec_ziko_reason {
  padding: 50px 0;
  background-color: rgb(187, 223, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(180, 219, 255) 5px, rgb(180, 219, 255) 10px);
}
#top_resemble #process .sec_ziko_reason .catch-text {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin: 0 auto 25px;
  max-width: 330px;
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .catch-text {
    font-size: 22px;
  }
}
#top_resemble #process .sec_ziko_reason .catch-text:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#top_resemble #process .sec_ziko_reason .reason_ttl {
  margin: 0 auto 30px;
}
#top_resemble #process .sec_ziko_reason .reason_ttl .reason_sub_ttl {
  font-size: clamp(28px, 3vw, 36px);
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl .reason_sub_ttl {
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl .reason_sub_ttl {
    font-size: min(28px, 5.5vw);
  }
}
#top_resemble #process .sec_ziko_reason .reason_ttl h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  color: #000;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl h2 {
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl h2 {
    font-size: min(28px, 5.5vw);
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl h2 {
    margin-bottom: 0;
  }
}
#top_resemble #process .sec_ziko_reason .reason_ttl h2 span.blue {
  color: #fff;
  font-size: 36px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl h2 span.blue {
    font-size: min(36px, 7.5vw);
  }
}
@media (max-width: 374px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl h2 span.blue {
    font-size: min(28px, 6vw);
  }
}
#top_resemble #process .sec_ziko_reason .reason_ttl h2 span.blue::after {
  position: absolute;
  content: "";
  background: #2243b6;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
#top_resemble #process .sec_ziko_reason .reason_ttl .reason_catch {
  padding-top: 30px;
  position: relative;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl .reason_catch {
    font-size: min(16px, 4vw);
    padding: 0;
  }
}
@media (max-width: 374px) {
  #top_resemble #process .sec_ziko_reason .reason_ttl .reason_catch {
    font-size: min(16px, 3.5vw);
  }
}
#top_resemble #process .sec_ziko_reason .reason_ttl .reason_catch.strong {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: bold;
}
#top_resemble #process .sec_ziko_reason .grid-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 900px;
  justify-content: center;
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item {
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason01 {
  background: #fff url(../images/ziko/ziko_reason01.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason01 {
    background: #fff url(../images/ziko/ziko_reason01.png) no-repeat top 10px right 6%/120px;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason02 {
  background: #fff url(../images/ziko/ziko_reason02.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason02 {
    background: #fff url(../images/ziko/ziko_reason02.png) no-repeat top 10px right 6%/120px;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason03 {
  background: #fff url(../images/ziko/ziko_reason03.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason03 {
    background: #fff url(../images/ziko/ziko_reason03.png) no-repeat top 10px right 6%/120px;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason04 {
  background: #fff url(../images/index/reason04.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item.reason04 {
    background: #fff url(../images/index/reason04.png) no-repeat top 30px right 7%/120px;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .label {
  background: #2243b6;
  border-radius: 0 50px 50px 0;
  width: 92px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item .label {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 37px;
  }
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item .label {
    width: 15%;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .label strong {
  font-weight: bold;
  color: #fff153;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 185%;
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_ttl {
  font-size: clamp(18px, 2vw, 22px);
  margin: 63px 10px 20px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_ttl {
    width: 70%;
    margin: 20px 0;
    min-height: 130px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 15% 0 0;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_ttl strong {
  font-weight: bold;
  font-size: 122%;
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_txt {
  color: #333;
  margin: 0 10px 10px;
  letter-spacing: 0.04em;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_txt {
    font-size: 14px;
    width: auto;
    text-align: left;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_txt img {
  display: block;
  margin: 10px auto;
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_item_txt p + p {
  margin-top: 1em;
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_button {
  border-radius: 0 0 10px 10px;
  background: #e9f9ff;
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_button::before {
  position: absolute;
  content: "";
  border-right: 2px solid #2243b6;
  border-bottom: 2px solid #2243b6;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin: auto;
  inset: 0 0 5px 0;
}
#top_resemble #process .sec_ziko_reason .grid-container .reason_item .reason_button.active::before {
  transform: rotate(-135deg);
  inset: 0 0 -10px 0;
}
#top_resemble #process .purchase {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .purchase h2 .with_side_slash {
    line-height: 1.3em;
  }
}
#top_resemble #process .purchase .ziko_top_slider {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .purchase .ziko_top_slider {
    padding: 0 80px;
  }
}
#top_resemble #process .purchase .ziko_top_slider .slick-track {
  display: flex;
}
#top_resemble #process .purchase .ziko_top_slider .slick-slide {
  margin: 10px;
  background: #f9fce3;
  height: auto;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_list__item {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .purchase .ziko_top_slider .p_purchase_list__item {
    padding: 20px;
  }
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__head {
  font-weight: bold;
  text-align: center;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__media {
  aspect-ratio: 27/17;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(transparent 70%, #ffee30 70%);
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori {
    gap: 10px;
  }
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori > p {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori > p {
    font-size: 21px;
  }
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori > div {
  white-space: nowrap;
  display: flex;
  align-items: baseline;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori .p_purchase_card__highlight_amount {
  color: #f0101d;
  font-weight: bold;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 56px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori .p_purchase_card__highlight_amount {
    font-size: 60px;
  }
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori .p_purchase_card__highlight_unit {
  color: #f0101d;
  font-weight: bold;
  font-size: 18px;
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .purchase .ziko_top_slider .p_purchase_card__price .kaitori .p_purchase_card__highlight_unit {
    font-size: 21px;
  }
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__body {
  padding: 0;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__spec_row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__spec_row dt {
  width: 70px;
  background: #fff;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 500;
  padding: 0;
  margin-bottom: 0;
}
#top_resemble #process .purchase .ziko_top_slider .p_purchase_card__spec_row dd {
  width: calc(100% - 80px);
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 18px);
}
#top_resemble #process .purchase .slick-dots li {
  padding: 0;
}
#top_resemble #process .purchase .slick-dots li button::before {
  background: #ccc;
}
#top_resemble #process .purchase .slick-dots li.slick-active button::before {
  background: #1f6bdd;
}
#top_resemble #process .sec_ziko_step {
  padding: 50px 0;
}
#top_resemble #process .sec_ziko_step > .under_wrap {
  max-width: 1720px;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .index_ttl {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .index_ttl .index_ttl_sub {
    font-size: min(28px, 6.5vw);
  }
}
#top_resemble #process .sec_ziko_step .step_items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_items {
    flex-direction: column;
    gap: 15px;
  }
}
#top_resemble #process .sec_ziko_step .step_items::after {
  position: absolute;
  content: "";
  background: #ffea01;
  width: 20px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_step .step_items::after {
    width: 90%;
    height: 30px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 960px) {
  #top_resemble #process .sec_ziko_step .step_items::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_items::after {
    display: block;
  }
}
#top_resemble #process .sec_ziko_step .step_item {
  background: #fcffd8;
  padding: 15px;
  display: flex;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_step .step_item {
    flex-direction: column;
    align-items: center;
    width: calc(25% - 15px);
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 960px) {
  #top_resemble #process .sec_ziko_step .step_item {
    width: calc(50% - 20px);
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item {
    width: 100%;
    align-items: center;
  }
}
@media only screen and (max-width: 960px) {
  #top_resemble #process .sec_ziko_step .step_item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: #deef68;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item:nth-child(odd)::before {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #top_resemble #process .sec_ziko_step .step_item:nth-child(3)::before {
    left: -10%;
    width: 110vw;
  }
}
@media only screen and (max-width: 960px) {
  #top_resemble #process .sec_ziko_step .step_item:nth-child(5)::before {
    left: -30%;
    width: 30vw;
  }
}
#top_resemble #process .sec_ziko_step .step_item .step_item_num {
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item .step_item_num {
    display: none;
  }
}
#top_resemble #process .sec_ziko_step .step_item .step_item_num span {
  background: #ffea01;
  border-radius: 20px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 5px 15px;
  font-weight: 600;
  white-space: nowrap;
}
#top_resemble #process .sec_ziko_step .step_item figure {
  width: 65px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_step .step_item figure {
    height: 100px;
    width: 100%;
    text-align: center;
  }
}
#top_resemble #process .sec_ziko_step .step_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item .txtarea {
    width: calc(100% - 80px);
  }
}
#top_resemble #process .sec_ziko_step .step_item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_step .step_item h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item h3 {
    font-size: min(22px, 4.5vw);
    justify-content: flex-start;
    text-align: left;
    line-height: 1.3em;
    margin-bottom: 5px;
  }
}
#top_resemble #process .sec_ziko_step .step_item h3 span {
  background: #ffea01;
  border-radius: 20px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 0 10px;
  font-weight: 600;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item h3 span {
    line-height: 1.6;
  }
}
#top_resemble #process .sec_ziko_step .step_item p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_step .step_item p {
    font-size: min(16px, 3.7vw);
    text-align: left;
  }
}
#top_resemble #process .sec_ziko_guide {
  padding: 50px 0;
  background-color: rgb(187, 223, 255);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(180, 219, 255) 5px, rgb(180, 219, 255) 10px);
}
#top_resemble #process .sec_ziko_guide .sub-title {
  font-size: 20px;
  font-weight: bold;
  color: #f0101d;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_guide .sub-title {
    margin-bottom: 0;
  }
}
#top_resemble #process .sec_ziko_guide .hero-area {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .hero-area {
    max-width: 800px;
    margin: 0 auto 80px;
  }
}
#top_resemble #process .sec_ziko_guide .hero-area .balloon-box {
  position: relative;
  background-color: #fff;
  border: 2px solid #1a62d6;
  border-radius: 8px;
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  width: calc(100% - 120px);
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .hero-area .balloon-box {
    font-size: 24px;
    width: calc(100% - 260px);
    text-align: center;
    border: 4px solid #1a62d6;
    margin-left: 10%;
  }
}
#top_resemble #process .sec_ziko_guide .hero-area .balloon-box::before, #top_resemble #process .sec_ziko_guide .hero-area .balloon-box::after {
  content: "";
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
}
#top_resemble #process .sec_ziko_guide .hero-area .balloon-box::before {
  right: -20px;
  border-left: 20px solid #1a62d6;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
#top_resemble #process .sec_ziko_guide .hero-area .balloon-box::after {
  right: -16px;
  border-left: 17px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .hero-area .balloon-box::after {
    right: -14px;
  }
}
#top_resemble #process .sec_ziko_guide .hero-area .balloon-box .strong {
  font-size: 20px;
  margin-top: 4px;
  letter-spacing: -0.1em;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .hero-area .balloon-box .strong {
    font-size: 30px;
  }
}
#top_resemble #process .sec_ziko_guide .hero-area .illust-box {
  position: absolute;
  width: 130px;
  top: 0;
  right: 0;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .hero-area .illust-box {
    width: 160px;
  }
}
#top_resemble #process .sec_ziko_guide .hero-area .illust-box img {
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_guide .mt15_sp {
    margin-top: 15px;
  }
}
#top_resemble #process .sec_ziko_guide .check-list {
  list-style: none;
  text-align: left;
  margin: 0 auto 10px;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .check-list {
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
#top_resemble #process .sec_ziko_guide .check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .check-list li {
    font-size: 26px;
    padding-left: 30px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_guide .check-list li {
    margin-bottom: 5px;
  }
}
#top_resemble #process .sec_ziko_guide .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.75em;
  height: 0.5em;
  border-left: 2px solid #f0101d;
  border-bottom: 2px solid #f0101d;
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_guide .check-list li::before {
    border-left: 3px solid #f0101d;
    border-bottom: 3px solid #f0101d;
  }
}
#top_resemble #process .sec_ziko_voice {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_voice #ziko_voice_slider {
    padding: 0 80px;
  }
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slick-track {
  display: flex;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slick-slide {
  margin: 10px;
  background: #e9f9ff;
  height: auto;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .voice_slide_item {
  background: #e9f9ff;
  padding: 15px 20px;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head .icon {
  width: 80px;
  height: 80px;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head dl {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head dl dt {
  background: #e4e4e4;
  border-radius: 20px;
  text-align: center;
  padding: 2px 20px;
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
@media only screen and (max-width: 767px) {
  #top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head dl dt {
    padding: 2px 15px;
  }
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head dl dd {
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_head .voice_slide_title {
  line-height: 1.3;
  color: #1f6bdd;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_body {
  margin-top: 1px;
}
#top_resemble #process .sec_ziko_voice #ziko_voice_slider .slider_body p {
  font-weight: 400;
  color: #333;
  font-size: clamp(14px, 1.4vw, 16px);
}
#top_resemble #process .sec_ziko_faq {
  background: #f9fce3;
  padding: 50px 0;
}
#top_resemble #process .sec_ziko_faq .faq_ttl {
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_faq .faq_ttl {
    margin-bottom: 25px;
  }
}
#top_resemble #process .sec_ziko_faq .faq_ttl span {
  position: relative;
  padding-left: 2.2em;
  font-weight: bold;
  font-size: clamp(22px, 2.2vw, 26px);
  display: block;
}
#top_resemble #process .sec_ziko_faq .faq_ttl span::after {
  position: absolute;
  content: "Q";
  background: #1f6bdd;
  color: #fff;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: bold;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  margin: auto;
  inset: 0 auto 0 0;
  text-align: center;
}
#top_resemble #process .sec_ziko_faq .question_block div + div {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_faq .question_block div + div {
    margin-top: 20px;
  }
}
#top_resemble #process .sec_ziko_faq .question_block dl {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  font-size: clamp(16px, 1.8vw, 20px);
}
#top_resemble #process .sec_ziko_faq .question_block dl dt {
  font-weight: bold;
  position: relative;
  position: relative;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 20px 40px 20px 20px;
}
#top_resemble #process .sec_ziko_faq .question_block dl dt::before, #top_resemble #process .sec_ziko_faq .question_block dl dt::after {
  position: absolute;
  content: "";
  background: #1f6bdd;
  width: 16px;
  height: 2px;
  margin: auto;
  inset: 0 20px 0 auto;
  transition: 0.3s ease-in-out;
}
#top_resemble #process .sec_ziko_faq .question_block dl dt::after {
  transform: rotate(90deg);
}
#top_resemble #process .sec_ziko_faq .question_block dl dt.on::after {
  transform: rotate(180deg);
}
#top_resemble #process .sec_ziko_faq .question_block dl dd {
  font-size: clamp(14px, 1.6vw, 18px);
  display: none;
  font-weight: 400;
  color: #333;
  padding: 0 20px 20px 20px;
  letter-spacing: 0.04em;
}
#top_resemble #process .sec_ziko_point {
  background: #e9f9ff;
  padding: 50px 0;
}
#top_resemble #process .sec_ziko_point .question_block div + div {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_point .question_block div + div {
    margin-top: 20px;
  }
}
#top_resemble #process .sec_ziko_point .question_block dl {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  font-size: clamp(16px, 1.8vw, 20px);
}
#top_resemble #process .sec_ziko_point .question_block dl dt {
  font-weight: bold;
  position: relative;
  position: relative;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 20px 40px 20px 20px;
  display: flex;
  align-items: center;
}
#top_resemble #process .sec_ziko_point .question_block dl dt .step_num {
  display: flex;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  background-color: #1a62d6;
  color: #fff;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  font-family: "Bahnschrift";
}
#top_resemble #process .sec_ziko_point .question_block dl dt::before, #top_resemble #process .sec_ziko_point .question_block dl dt::after {
  position: absolute;
  content: "";
  background: #1f6bdd;
  width: 16px;
  height: 2px;
  margin: auto;
  inset: 0 20px 0 auto;
  transition: 0.3s ease-in-out;
}
#top_resemble #process .sec_ziko_point .question_block dl dt::after {
  transform: rotate(90deg);
}
#top_resemble #process .sec_ziko_point .question_block dl dt.on::after {
  transform: rotate(180deg);
}
#top_resemble #process .sec_ziko_point .question_block dl dd {
  font-size: clamp(14px, 1.6vw, 18px);
  display: none;
  font-weight: 400;
  color: #333;
  padding: 0 20px 20px 20px;
  letter-spacing: 0.04em;
}
#top_resemble #process .sec_ziko_point .disc_list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}
#top_resemble #process .sec_ziko_point .disc_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1a62d6;
}
#top_resemble #process .sec_ziko_column {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_column .ziko_column_slider {
    padding: 0 80px;
  }
}
#top_resemble #process .sec_ziko_column .ziko_column_slider .slick-track {
  display: flex;
}
#top_resemble #process .sec_ziko_column .ziko_column_slider .slick-slide {
  margin: 10px;
  background: #f9fce3;
  height: auto;
}
#top_resemble #process .sec_ziko_column .ziko_column_slider article {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_column .ziko_column_slider article {
    padding: 20px;
  }
}
#top_resemble #process .sec_ziko_column .ziko_column_slider h3 {
  font-weight: bold;
}
#top_resemble #process .sec_ziko_column .ziko_column_slider .img {
  aspect-ratio: 27/17;
}
#top_resemble #process .sec_ziko_column .ziko_column_slider .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top_resemble #process .sec_ziko_column .ziko_column_slider .cat_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 15px 0;
}
#top_resemble #process .sec_ziko_column .ziko_column_slider .cat_list span {
  font-size: 12px;
  color: #1f6bdd;
  font-weight: 500;
  display: inline-block;
  background: #fff;
  border-radius: 30px;
  padding: 2px 15px 0;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  #top_resemble #process .sec_ziko_column .ziko_column_slider .cat_list span {
    font-size: 14px;
  }
}

body#flow .obi_txt {
  padding: 55px 0;
  background: #ffffdd;
}
body#flow .obi_txt h3 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body#flow .obi_txt {
    padding: 30px 0;
  }
  body#flow .obi_txt h3 {
    font-size: 15px;
    text-align: left;
  }
}

body#flow .l-breadcrumb {
  margin-bottom: 10px;
}
body#flow .flow .flow_items {
  position: relative;
}
body#flow .flow .flow_items::before {
  content: "";
  display: block;
  width: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffdd;
  z-index: -1;
}
body#flow .flow .flow_items .item {
  border: 1px solid #000000;
  margin-bottom: 40px;
  background: #fff;
}
body#flow .flow .flow_items .item:last-child {
  margin-bottom: 0;
}
body#flow .flow .flow_items .item .item_head {
  background: #ffea01;
  padding: 10px 10px;
}
body#flow .flow .flow_items .item .item_head h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
body#flow .flow .flow_items .item .item_head h3 > span {
  font-size: 117%;
}
body#flow .flow .flow_items .item .item_body {
  padding: 20px 50px;
}
body#flow .flow .flow_items .item .item_body .img_layout {
  display: flex;
  justify-content: space-between;
}
body#flow .flow .flow_items .item .item_body .img_layout > div:nth-child(1) {
  width: 140px;
  text-align: center;
}
body#flow .flow .flow_items .item .item_body .img_layout > div:nth-child(2) {
  width: calc(100% - 170px);
}
body#flow .flow .flow_items .item .item_body .img_layout h3 {
  font-size: 26px;
  color: #00a831;
  margin-bottom: 10px;
  font-weight: bold;
}
body#flow .flow .flow_items .item .item_body .img_layout .btns {
  padding: 20px 15px;
  background: #ffffdd;
  text-align: center;
}
body#flow .flow .flow_items .item .item_body .img_layout .btns > ul {
  display: flex;
  max-width: 607px;
  margin: 0 auto;
  justify-content: center;
  gap: 2%;
}
body#flow .flow .flow_items .item .item_body .img_layout .btns .btn_link a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
body#flow .flow .flow_items .item .item_body .img_layout .btns .btn_link a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
body#flow .flow .flow_items .item .item_body .step_btn {
  max-width: 360px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
body#flow .flow .flow_items .item .item_body .step_btn a {
  color: #fff;
  background: #0cad2e;
  display: block;
  padding: 12px 15px;
  position: relative;
  border-radius: 45px;
  box-shadow: 0 5px 0 0 #00651e;
  transition: 0.5s ease-in-out;
}
body#flow .flow .flow_items .item .item_body .step_btn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
body#flow .flow .flow_items .item .item_body .step_btn a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  body#flow .flow .flow_items .item .item_body {
    padding: 20px 25px;
  }
  body#flow .flow .flow_items .item .item_body .img_layout {
    display: block;
  }
  body#flow .flow .flow_items .item .item_body .img_layout > div:first-child {
    width: auto;
    margin-bottom: 15px;
  }
  body#flow .flow .flow_items .item .item_body .img_layout > div:nth-child(2) {
    width: auto;
  }
  body#flow .flow .flow_items .item .item_body .img_layout h3 {
    font-size: 20px;
  }
  body#flow .flow .flow_items .item .item_head h3 {
    font-size: 20px;
  }
  body#flow .flow .flow_items .item .item_body .img_layout .btns {
    padding: 10px 10px;
  }
  body#flow .flow .flow_items .item .item_body .step_btn a {
    font-size: 15px;
  }
}

body#line .l-breadcrumb {
  margin-bottom: 10px;
}

body#line .line_sec1 {
  padding: 50px 0;
  background: #ffffdd;
  text-align: center;
  font-weight: bold;
}
body#line .line_sec1 h3 {
  font-size: 46px;
  font-weight: bold;
}
body#line .line_sec1 h3 > span {
  font-size: 121.74%;
}
body#line .line_sec1 h3 + p {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  body#line .line_sec1 {
    padding: 30px 0;
  }
  body#line .line_sec1 h3 {
    font-size: 25px;
  }
  body#line .line_sec1 h3 + p {
    font-size: 15px;
  }
}

body#line .line_sec2 .steps {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
}
body#line .line_sec2 .steps::before {
  content: "";
  display: block;
  height: 60px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffdd;
  z-index: -1;
}
body#line .line_sec2 .steps .item {
  width: 31.25%;
  border: 1px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}
body#line .line_sec2 .steps .item .item_head {
  background: #ffea01;
  padding: 10px 10px;
}
body#line .line_sec2 .steps .item .item_head h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
body#line .line_sec2 .steps .item .item_head h4 > span {
  font-size: 117%;
}
body#line .line_sec2 .steps .item .item_body {
  padding: 20px 15px;
  text-align: center;
}
body#line .line_sec2 .steps .item .item_body h5 {
  font-size: 26px;
  font-weight: bold;
  color: #00a831;
  margin-top: 14px;
}
body#line .line_sec2 .assessment {
  background: #e3f5e9;
  border-radius: 10px;
  padding: 40px 15px;
  text-align: center;
}
body#line .line_sec2 .assessment > h3 {
  font-size: 42px;
  color: #00a831;
  font-weight: bold;
  margin-bottom: 20px;
}
body#line .line_sec2 .assessment > h3 + p {
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  body#line .line_sec2 .steps {
    display: block;
  }
  body#line .line_sec2 .steps:before {
    top: 0;
    bottom: 0;
    height: 100%;
    width: 60px;
    left: 50%;
    transform: translateX(-50%);
  }
  body#line .line_sec2 .steps .item {
    width: auto;
    margin-bottom: 40px;
  }
  body#line .line_sec2 .steps .item:last-child {
    margin-bottom: 0;
  }
  body#line .line_sec2 .steps .item .item_head h4 {
    font-size: 17px;
  }
  body#line .line_sec2 .steps .item .item_body h5 {
    font-size: 18px;
  }
  body#line .line_sec2 .assessment {
    padding: 20px 15px;
  }
  body#line .line_sec2 .assessment > h3 {
    font-size: 24px;
  }
  body#line .line_sec2 .assessment > h3 + p {
    font-size: 15px;
    text-align: left;
  }
}

body#line .line_sec3 {
  padding: 85px 0;
  background: #ffffdd;
}
body#line .line_sec3 .steps {
  position: relative;
}
body#line .line_sec3 .steps::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  background: #fefefe;
  z-index: 1;
}
body#line .line_sec3 .steps .item {
  border: 1px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin-bottom: 40px;
  position: relative;
  z-index: 9;
}
body#line .line_sec3 .steps .item:last-child {
  margin-bottom: 0;
}
body#line .line_sec3 .steps .item .item_head {
  background: #ffea01;
  padding: 10px 10px;
}
body#line .line_sec3 .steps .item .item_head h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
body#line .line_sec3 .steps .item .item_head h4 > span {
  font-size: 117%;
}
body#line .line_sec3 .steps .item .item_body {
  padding: 20px 30px;
}
body#line .line_sec3 .steps .item .item_body .img_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(1) {
  width: 130px;
  text-align: center;
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) {
  width: calc(100% - 180px);
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) h5 {
  font-size: 26px;
  color: #00a831;
  font-weight: bold;
  margin-bottom: 7px;
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) h6 {
  font-size: 18px;
  background: #deef68;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 12px;
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) .circle_list > li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) .circle_list > li:last-child {
  margin-bottom: 0;
}
body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) .circle_list > li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #ffea01;
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}
body#line .line_sec3 .steps .item .item_body .box_bg {
  background: #f9f9f9;
  padding: 20px 15px;
}
body#line .line_sec3 .steps .item .item_body .box_bg2 {
  background: #e3f5e9;
  padding: 20px 15px;
}
body#line .line_sec3 .steps .item .item_body .img_list {
  display: flex;
  margin-top: 5px;
}
body#line .line_sec3 .steps .item .item_body .img_list > li {
  width: 25%;
}
body#line .line_sec3 .steps .item .item_body .img_list > li img {
  width: 100%;
}
body#line .line_sec3 .steps .item .item_body .qr_block {
  display: flex;
  justify-content: space-between;
}
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(1) {
  width: 57.75%;
}
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(1) dl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(1) dl dt {
  width: 24px;
  line-height: 24px;
  background: #ffea01;
  border-radius: 50%;
  text-align: center;
}
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(1) dl dd {
  width: calc(100% - 34px);
}
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(1) dl dt,
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(1) dl dd {
  margin-bottom: 6px;
}
body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(2) {
  width: 38.46%;
}
@media only screen and (max-width: 767px) {
  body#line .line_sec3 {
    padding: 30px 0;
  }
  body#line .line_sec3 .steps .item .item_head h4 {
    font-size: 17px;
  }
  body#line .line_sec3 .steps .item .item_body .img_block {
    display: block;
  }
  body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(1) {
    width: auto;
    margin-bottom: 25px;
  }
  body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) {
    width: auto;
  }
  body#line .line_sec3 .steps .item .item_body .img_block > div:nth-child(2) h5 {
    font-size: 18px;
  }
  body#line .line_sec3 .steps .item .item_body .qr_block {
    display: block;
  }
  body#line .line_sec3 .steps .item .item_body {
    padding: 20px 15px;
  }
  body#line .line_sec3 .steps .item .item_body .qr_block > div:first-child {
    width: auto;
    margin-bottom: 15px;
  }
  body#line .line_sec3 .steps .item .item_body .qr_block > div:nth-child(2) {
    width: auto;
    text-align: center;
  }
}

body#column #contents .contact_bnsec:last-of-type {
  margin-top: 0;
}
body#column .l-breadcrumb {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  body#column .l-breadcrumb {
    padding-top: 30px;
  }
}
body#column .column_slider {
  display: none;
}
body#column .column_slider.slick-initialized {
  display: block;
}
body#column .column_slider .slick-track {
  display: flex;
}
body#column .column_slider .slick-slide {
  height: auto !important;
}
body#column .column_slider .slick-slide > div,
body#column .column_slider .slick-slide li,
body#column .column_slider .slick-slide a {
  height: 100%;
}
body#column .column_slider .slick-prev,
body#column .column_slider .slick-next {
  width: 60px;
  height: 60px;
  background: url("../images/purchase/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
body#column .column_slider .slick-prev:hover,
body#column .column_slider .slick-next:hover {
  opacity: 0.7;
}
body#column .column_slider .slick-prev::before,
body#column .column_slider .slick-next::before {
  content: none;
}
body#column .column_slider .slick-prev {
  left: -12px;
  background: url("../images/purchase/prev.svg") no-repeat center center;
  background-size: contain;
}
body#column .column_slider .slick-next {
  right: -12px;
}
body#column .column_slider li {
  padding: 0 20px;
}
body#column .column_slider li a {
  display: block;
  background: #fff;
  border: 2px solid #000000;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#column .column_slider li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#column .column_slider li .slider_body {
  padding: 15px 15px;
}
body#column .column_slider li .slider_body .catdl {
  font-size: 14px;
  margin-bottom: 12px;
}
body#column .column_slider li .slider_body .catdl dt ul {
  letter-spacing: -0.5em;
}
body#column .column_slider li .slider_body .catdl dt ul > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 7px;
  padding: 3px 10px;
  background: #ffea01;
}
body#column .column_slider li .slider_body .catdl dd {
  font-size: 12px;
  position: relative;
  top: 5px;
  color: #555555;
}
body#column .column_slider li .slider_body h4 {
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
body#column .column_slider li .slider_body .tag {
  margin-top: 20px;
  letter-spacing: -0.5em;
  font-size: 14px;
}
body#column .column_slider li .slider_body .tag > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 10px;
  background: #e5e5e5;
  padding: 2px 15px;
  border-radius: 12px;
}
@media only screen and (max-width: 1260px) {
  body#column .column_slider .slick-next,
  body#column .column_slider .slick-prev {
    width: 40px;
    height: 40px;
  }
  body#column .column_slider .slick-prev {
    left: 0;
  }
  body#column .column_slider .slick-next {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  body#column .column_slider .slick-prev {
    left: 20px;
  }
  body#column .column_slider .slick-next {
    right: 20px;
  }
  body#column .column_slider .slick-list {
    padding: 20px 11.2% 0 !important;
  }
  body#column .column_slider li {
    padding: 0 10px;
  }
}

body#column .column_sec1 {
  padding: 50px 0;
  background: #ffffdd;
  text-align: center;
}
body#column .column_sec1 h3 {
  font-size: 30px;
  color: #00a831;
  font-weight: bold;
}
body#column .column_sec1 h3 + p {
  font-size: 18px;
}
body#column .column_sec1 .btns > ul {
  display: flex;
  max-width: 607px;
  margin: 0 auto;
  justify-content: center;
  gap: 2%;
}
body#column .column_sec1 .btns .btn_link a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
body#column .column_sec1 .btns .btn_link a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
@media only screen and (max-width: 767px) {
  body#column .column_sec1 {
    padding: 30px 0;
  }
  body#column .column_sec1 h3 {
    font-size: 24px;
  }
  body#column .column_sec1 h3 + p {
    text-align: left;
    font-size: 15px;
  }
}

body#column .column_block {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
body#column .column_block > div.column_main {
  width: calc(100% - 320px);
}
body#column .column_block > div.column_main .anchorLink {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px;
  color: #fff;
  text-align: center;
  background: #0cad2e;
  position: relative;
}
body#column .column_block > div.column_main .anchorLink span {
  color: #ffea01;
}
body#column .column_block > div.column_main .anchorLink strong {
  display: inline-block;
  background: #ffa31e;
  margin-left: 15px;
  padding: 0 15px;
  border-radius: 30px;
}
body#column .column_block > aside {
  width: 280px;
}
body#column .column_block > aside h3 {
  font-size: 16px;
  background: #0cad2e;
  padding: 10px 10px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
body#column .column_block > aside .side_nav > li {
  margin-top: 4px;
}
body#column .column_block > aside .side_nav > li a {
  background: #efefef;
  padding: 12px 15px;
  padding-right: 25px;
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: bold;
  display: block;
  font-size: 14px;
  position: relative;
}
body#column .column_block > aside .side_nav > li a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}
body#column .column_block > aside .p_sidebar__simulator, body#column .column_block > aside .p_sidebar__youtube {
  margin-bottom: 20px;
}
body#column .column_block > aside .side_btns > li {
  margin-bottom: 20px;
}
body#column .column_block > aside .side_btns > li:last-child {
  margin-bottom: 0;
}
body#column .column_block > aside .side_btns > li a {
  display: block;
  filter: drop-shadow(0px 4px 0px #d37a07);
  transition: 0.4s ease-in-out;
}
body#column .column_block > aside .side_btns > li a:hover {
  filter: drop-shadow(0px 0px 0px #d37a07);
  transform: translateY(3px);
}
body#column .column_block > aside .side_tag {
  letter-spacing: -0.5em;
  font-size: 12px;
}
body#column .column_block > aside .side_tag > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 6px;
}
body#column .column_block > aside .side_tag > li a {
  display: block;
  background: #e5e5e5;
  padding: 2px 7px;
  border-radius: 10px;
}
body#column .column_block > aside .side_popular {
  font-size: 12px;
  counter-reset: listnum; /* カウンターをリセット */
  list-style: none; /* 標準のスタイルは消す */
}
body#column .column_block > aside .side_popular > li {
  margin-top: 4px;
}
body#column .column_block > aside .side_popular > li a {
  background: #efefef;
  padding: 15px 15px;
  padding-left: 40px;
  line-height: 140%;
  font-weight: normal;
  display: block;
  font-size: 14px;
  position: relative;
}
body#column .column_block > aside .side_popular > li a::before {
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: counter(listnum);
  text-align: center;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
body#column .column_block > aside .side_popular > li:nth-child(1) a, body#column .column_block > aside .side_popular > li:nth-child(2) a, body#column .column_block > aside .side_popular > li:nth-child(3) a {
  background: #ffffdd;
}
body#column .column_block > aside .side_popular > li:nth-child(1) a::before, body#column .column_block > aside .side_popular > li:nth-child(2) a::before, body#column .column_block > aside .side_popular > li:nth-child(3) a::before {
  color: #fff;
}
body#column .column_block > aside .side_popular > li:nth-child(1) a::before {
  background: #d1c100;
}
body#column .column_block > aside .side_popular > li:nth-child(2) a::before {
  background: #b7b7b7;
}
body#column .column_block > aside .side_popular > li:nth-child(3) a::before {
  background: #cc7e6b;
}
body#column .column_block > aside .free_search input[type=text] {
  background: #f4f4f4;
  border: 1px solid #d0d0d0;
  padding: 4px 10px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
body#column .column_block > aside .free_search .search_btn {
  max-width: 120px;
  margin: 0 auto;
  position: relative;
}
body#column .column_block > aside .free_search .search_btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  background: url("../images/common/search.svg") no-repeat center center;
  background-size: contain;
  top: 9px;
  left: 19px;
  z-index: 5;
}
body#column .column_block > aside .free_search .search_btn button {
  cursor: pointer;
  display: block;
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  outline: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 13px;
  filter: drop-shadow(0px 4px 0px #111111);
  transition: opacity 0.4s ease-in-out;
}
body#column .column_block > aside .free_search .search_btn button:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  body#column .column_block {
    display: block;
  }
  body#column .column_block > div.column_main {
    width: auto;
    margin-bottom: 25px;
  }
  body#column .column_block > aside {
    width: auto;
  }
  body#column .column_block > aside .side_btns {
    display: flex;
    justify-content: space-between;
  }
  body#column .column_block > aside .side_btns > li {
    width: 48.5%;
    margin-bottom: 15px;
  }
}

body#column .column_listsec .main_items {
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  gap: 3.125%;
}
body#column .column_listsec .main_items > li {
  width: 31.25%;
  margin-bottom: 12px;
  margin-bottom: 30px;
}
body#column .column_listsec .main_items > li a {
  display: block;
  background: #fff;
  border: 1px solid #898989;
  height: 100%;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
body#column .column_listsec .main_items > li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
body#column .column_listsec .main_items > li .item_body {
  padding: 15px 15px;
}
body#column .column_listsec .main_items > li .item_body .catdl {
  font-size: 14px;
  margin-bottom: 12px;
}
body#column .column_listsec .main_items > li .item_body .catdl dt ul {
  letter-spacing: -0.5em;
}
body#column .column_listsec .main_items > li .item_body .catdl dt ul > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 6px;
  padding: 3px 10px;
  background: #ffea01;
}
body#column .column_listsec .main_items > li .item_body .catdl dd {
  font-size: 12px;
  position: relative;
  top: 5px;
  color: #555555;
}
body#column .column_listsec .main_items > li .item_body h4 {
  color: #333;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
body#column .column_listsec .main_items > li .item_body .tag {
  margin-top: 20px;
  letter-spacing: -0.5em;
  font-size: 14px;
}
body#column .column_listsec .main_items > li .item_body .tag > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 10px;
  background: #e5e5e5;
  padding: 2px 15px;
  border-radius: 12px;
}
@media only screen and (max-width: 1260px) {
  body#column .column_listsec .main_items {
    justify-content: space-between;
    gap: 0;
  }
  body#column .column_listsec .main_items > li {
    width: 48.5%;
  }
}
@media only screen and (max-width: 767px) {
  body#column .column_listsec .main_items {
    display: block;
  }
  body#column .column_listsec .main_items > li {
    width: auto;
  }
}
body#column .column_listsec {
  /* CTA全体のスタイル */
}
body#column .column_listsec .custom-cta-box {
  margin: 30px 0;
  padding: 25px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fcfcfc;
  text-align: center;
}
body#column .column_listsec .cta-message {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
body#column .column_listsec .cta-buttons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
body#column .column_listsec .cta-img-btn {
  display: inline-block;
  max-width: 45%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body#column .column_listsec .cta-img-btn img {
  width: 100%;
  height: auto;
  display: block;
}
body#column .column_listsec .cta-img-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  body#column .column_listsec .cta-buttons-container {
    flex-direction: column; /* 縦並びにする */
    align-items: center;
    gap: 15px;
  }
  body#column .column_listsec .cta-img-btn {
    max-width: 100%; /* スマホでは横幅いっぱいに（必要に応じて80%等に調整してください） */
  }
}

body#column .column_header .column_ttl {
  padding-bottom: 18px;
  border-bottom: 4px solid #0cad2e;
  margin-bottom: 40px;
}
body#column .column_header .column_ttl .sub_dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
body#column .column_header .column_ttl .sub_dl > dt {
  width: 100px;
  position: relative;
  top: 6px;
}
body#column .column_header .column_ttl .sub_dl > dd {
  width: calc(100% - 100px);
}
body#column .column_header .column_ttl .sub_dl > dd ul {
  letter-spacing: -0.5em;
}
body#column .column_header .column_ttl .sub_dl > dd ul > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 6px;
  margin-bottom: 6px;
  font-size: 14px;
}
body#column .column_header .column_ttl .sub_dl > dd ul > li a {
  background: #fff589;
  padding: 4px 10px;
  display: block;
}
body#column .column_header .column_ttl .column_title {
  font-size: 32px;
  font-weight: bold;
}
body#column .column_header .column_ttl .tag {
  margin-top: 25px;
  letter-spacing: -0.5em;
  font-size: 14px;
}
body#column .column_header .column_ttl .tag > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 10px;
}
body#column .column_header .column_ttl .tag > li a {
  display: block;
  background: #e5e5e5;
  padding: 2px 15px;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  body#column .column_header .column_ttl {
    border-bottom-width: 2px;
  }
  body#column .column_header .column_ttl .column_title {
    font-size: 19px;
  }
  body#column .column_header .column_ttl .tag {
    margin-top: 15px;
  }
  body#column .column_header .column_ttl .sub_dl > dt {
    top: 2px;
  }
}
body#column .eyecatch img {
  width: 100%;
}
body#column .column_body a {
  color: blue;
  text-decoration: underline;
}
body#column .column_body a:hover {
  text-decoration: none;
}
body#column .column_body .column_content #ez-toc-container {
  margin-top: 24px;
  font-size: 20px;
  background-color: #fffcf5;
  border: 1px solid #c6c6c6;
  border-radius: 20px;
  padding: 30px 40px;
}
body#column .column_body .column_content #ez-toc-container li {
  margin-top: 4px;
}
body#column .column_body .column_content #ez-toc-container a {
  color: #666;
}
body#column .column_body .column_content h1,
body#column .column_body .column_content h2 {
  font-size: 32px;
  font-weight: bold;
  background: #deef68;
  padding: 15px 15px;
  line-height: 1.3;
  margin: 60px 0 24px;
}
body#column .column_body .column_content h3 {
  font-size: 26px;
  color: #0cad2e;
  padding-bottom: 8px;
  font-weight: bold;
  border-bottom: 2px solid #0cad2e;
  margin: 60px 0 15px;
}
body#column .column_body .column_content h4 {
  font-size: 22px;
  color: #0cad2e;
  font-weight: bold;
  margin: 40px 0 10px;
}
body#column .column_body .column_content h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  margin: 40px 0 10px;
}
body#column .column_body .column_content h6 {
  font-weight: bold;
}
body#column .column_body .column_content p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 200%;
  color: #444;
}
body#column .column_body .column_content .wp-block-image {
  margin-bottom: 60px;
}
body#column .column_body .column_content ol {
  display: block;
  margin-left: 1.5em;
  list-style-position: outside;
  list-style-type: decimal;
}
body#column .column_body .column_content ol li {
  display: list-item;
  list-style-type: inherit;
}
body#column .column_body .column_content ul {
  display: block;
  margin-left: 1.5em;
  list-style-position: outside;
  list-style-type: disc;
}
body#column .column_body .column_content ul li {
  display: list-item;
  list-style-type: inherit;
}
body#column .column_body .column_content .wp-block-vk-blocks-border-box {
  margin: 40px 0;
}
body#column .column_body .column_content .wp-block-vk-blocks-border-box li {
  margin-bottom: 12px;
  font-size: 105%;
  color: #555;
}
body#column .column_body .column_content .vk_borderBox_title, body#column .column_body .column_content .vk_button_link_txt {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  body#column .column_body .column_content .amount h3 {
    font-size: 25px;
  }
  body#column .column_body .column_content h1,
  body#column .column_body .column_content h2 {
    font-size: 22px;
  }
  body#column .column_body .column_content h3 {
    font-size: 21px;
  }
  body#column .column_body .column_content h4 {
    font-size: 20px;
  }
  body#column .column_body .column_content h5 {
    font-size: 18px;
  }
  body#column .column_body .column_content p {
    font-size: 16px;
  }
  body#column .column_body .column_content #ez-toc-container {
    margin-top: 24px;
    font-size: 18px;
    background-color: #fffcf5;
    border: 1px solid #c6c6c6;
    border-radius: 20px;
    padding: 18px 24px;
  }
  body#column .column_body .column_content #ez-toc-container ul {
    margin-left: 12px;
  }
  body#column .column_body .column_content #ez-toc-container li {
    margin-top: 4px;
  }
}
body#column .column_body {
  /* 共通CTA全体のスタイル */
}
body#column .column_body .custom-cta-box {
  margin: 60px 0;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}
body#column .column_body .cta-message {
  font-size: 21px;
  font-weight: bold;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.5;
}
body#column .column_body .cta-buttons-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body#column .column_body .cta-img-btn {
  display: inline-block;
  max-width: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
body#column .column_body .cta-img-btn img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
body#column .column_body .cta-img-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  body#column .column_body .custom-cta-box {
    padding: 0;
  }
  body#column .column_body .cta-buttons-container {
    flex-direction: column; /* 縦並びにする */
    align-items: center;
    gap: 15px;
    max-width: 420px;
    margin: 0 auto;
  }
  body#column .column_body .cta-message {
    font-size: 18px;
  }
  body#column .column_body .cta-img-btn {
    max-width: 100%; /* スマホでは横幅いっぱいに（必要に応じて80%等に調整してください） */
  }
}
body#column .column_block {
  padding: 0;
}
body#column .amount {
  padding: 35px 15px;
  background: #ffffdd;
}
body#column .amount h3 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4px;
}
body#column .amount h3 > span {
  font-size: 120%;
}
body#column .amount h3 + p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
body#column .amount h3 {
  font-size: 40px;
  font-weight: bold;
  padding-bottom: 0;
  border-bottom: 0;
  color: #333;
}
body#column .amount .apply_btn a {
  text-decoration: none;
}
body#column .amount ul,
body#column .amount ol {
  margin-left: 0;
}
body#column .amount ul > li,
body#column .amount ol > li {
  display: block;
}
body#column .amount_block {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body#column .amount_block > div:nth-child(1) {
  width: 51.22%;
}
body#column .amount_block > div:nth-child(1) ul {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
}
body#column .amount_block > div:nth-child(1) ul > li {
  padding-left: 48px;
  position: relative;
  margin-bottom: 15px;
}
body#column .amount_block > div:nth-child(1) ul > li:last-child {
  margin-bottom: 0;
}
body#column .amount_block > div:nth-child(1) ul > li::before {
  content: "";
  display: block;
  width: 31px;
  height: 28px;
  background: url("../images/column/check.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 4px;
}
body#column .amount_block > div:nth-child(2) {
  width: 43.91%;
}
body#column .amount_block .apply_btn a {
  position: relative;
  display: block;
  text-align: center;
}
body#column .amount_block .apply_btn a::before {
  content: "無料";
  display: block;
  position: absolute;
  width: 70px;
  line-height: 70px;
  background: #ffea01;
  border-radius: 50%;
  left: -29px;
  top: -26px;
  color: #000000;
  text-align: center;
  z-index: 9;
  font-size: 20px;
  font-weight: bold;
}
body#column .amount_block .apply_btn a > span {
  display: block;
  position: relative;
  font-size: 26px;
  color: #fff;
  background: #ed3c46;
  padding: 30px 30px;
  border-radius: 10px;
  font-weight: bold;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
}
body#column .amount_block .apply_btn a > span:hover {
  filter: drop-shadow(0px 0px 0px #b21625);
  transform: translateY(3px);
}
@media only screen and (max-width: 960px) {
  body#column h3 {
    font-size: 25px;
  }
  body#column h3 + p {
    font-size: 16px;
  }
  body#column .amount_block {
    display: block;
  }
  body#column .amount_block > div:nth-child(1) {
    width: auto;
  }
  body#column .amount_block > div:nth-child(2) {
    width: auto;
  }
  body#column .amount_block > div:first-child ul {
    font-size: 24px;
    margin-bottom: 30px;
  }
  body#column .amount_block > div:first-child ul > li {
    padding-left: 38px;
  }
  body#column .amount_block > div:nth-child(1) ul > li::before {
    width: 27px;
    height: 24px;
    top: 4px;
  }
}
@media only screen and (max-width: 767px) {
  body#column {
    padding: 25px 15px;
  }
  body#column .amount_block .apply_btn {
    max-width: 330px;
    margin: 0 auto;
  }
  body#column .amount_block .apply_btn a > span {
    font-size: 20px;
    padding: 19px 24px;
  }
}

body#column .column_block .contact_bnsec {
  padding: 30px 0 40px;
}
body#column .column_block .contact_bnsec h2 {
  max-width: 750px;
  margin: 0 auto;
}
body#column .column_block .contact_bnsec .contact_bn_block {
  max-width: 820px;
  margin: 0 auto;
}
body#column .column_block .contact_bnsec h3,
body#column .column_block .contact_bnsec .contact_bn_block > div:nth-child(2) > h3 {
  font-size: 18px;
  margin-bottom: 15px;
}
body#column .column_block .contact_bnsec h3:before {
  border-width: 11px 9px 0 9px;
}

body#column .create_user {
  border: 1px solid #cccccc;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body#column .create_user > div:nth-child(1) {
  width: 150px;
}
body#column .create_user > div:nth-child(1) img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 100%;
}
body#column .create_user > div:nth-child(2) {
  width: calc(100% - 190px);
}
body#column .create_user > div:nth-child(2) h3 {
  font-size: 20px;
  font-weight: bold;
}
body#column .create_user > div:nth-child(2) h3 + p {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  body#column .create_user {
    padding: 25px 20px;
    display: block;
  }
  body#column .create_user > div:first-child {
    width: 70px;
    margin: 0 auto 25px;
  }
  body#column .create_user > div:nth-child(2) {
    width: auto;
  }
  body#column .create_user > div:nth-child(2) h3 {
    font-size: 19px;
  }
  body#column .create_user > div:nth-child(2) h3 + p {
    font-size: 14px;
  }
}

body#yard .network_sec .network_block,
body#network .network_sec .network_block {
  margin-bottom: 50px;
}
body#yard .network_sec .network_block:last-of-type,
body#network .network_sec .network_block:last-of-type {
  margin-bottom: 0;
}
body#yard .network_sec .network_block h3,
body#network .network_sec .network_block h3 {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background: #deef68;
  padding: 7px 10px;
  margin-bottom: 20px;
}
body#yard .network_sec .network_block ul,
body#network .network_sec .network_block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.0375%;
}
body#yard .network_sec .network_block ul > li,
body#network .network_sec .network_block ul > li {
  width: 19.17%;
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
}
body#yard .network_sec .network_block ul > li a,
body#network .network_sec .network_block ul > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border: 1px solid #000000;
  font-weight: bold;
  border-radius: 4px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  body#yard .network_sec .network_block h3,
  body#network .network_sec .network_block h3 {
    font-size: 21px;
  }
  body#yard .network_sec .network_block ul,
  body#network .network_sec .network_block ul {
    justify-content: space-between;
  }
  body#yard .network_sec .network_block ul > li,
  body#network .network_sec .network_block ul > li {
    width: 48.5%;
    font-size: 16px;
  }
}

body#network .network_detail .network_content dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
body#network .network_detail .network_content dl dt,
body#network .network_detail .network_content dl dd {
  margin-bottom: 10px;
}
body#network .network_detail .network_content dl dt {
  width: 110px;
  line-height: 1.3;
  background: #e5e5e5;
  padding: 4px 10px;
  text-align: center;
}
body#network .network_detail .network_content dl dd {
  width: calc(100% - 134px);
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: 2px;
}
body#network .network_detail .network_content dl dd a {
  color: #333;
  text-decoration: none;
}
body#network .network_detail .network_content dl dd a:hover {
  text-decoration: underline;
}
body#network .network_detail .network_content h1,
body#network .network_detail .network_content h2,
body#network .network_detail .network_content h3,
body#network .network_detail .network_content h4,
body#network .network_detail .network_content h5,
body#network .network_detail .network_content h6 {
  font-size: 32px;
  font-weight: bold;
  background: #deef68;
  padding: 8px 15px;
  line-height: 1.3;
  margin-bottom: 15px;
}
body#network .network_detail .network_content h3 {
  font-size: 26px;
}
body#network .network_detail .network_content h4 {
  font-size: 22px;
}
body#network .network_detail .network_content h5 {
  font-size: 18px;
}
body#network .network_detail .network_content h6 {
  font-size: 16px;
}
body#network .network_detail .network_content p {
  margin-bottom: 15px;
}
body#network .network_detail .network_content a {
  color: blue;
  text-decoration: underline;
}
body#network .network_detail .network_content a:hover {
  text-decoration: none;
}
body#network .network_detail .network_content ul,
body#network .network_detail .network_content ol {
  display: block;
  margin-left: 1.5em;
  list-style-position: outside;
  list-style-type: decimal;
}
body#network .network_detail .network_content ul li,
body#network .network_detail .network_content ol li {
  display: list-item;
  list-style-type: inherit;
}
body#network .network_detail .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 52.09%;
  position: relative;
}
body#network .network_detail .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
body#network .network_detail .bottom_btns {
  background: #ffffdd;
  padding: 45px 15px;
}
body#network .network_detail .bottom_btns > ul {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1.55%;
}
body#network .network_detail .bottom_btns > ul > li {
  width: 32.3%;
}
body#network .network_detail .bottom_btns > ul a {
  display: block;
  filter: drop-shadow(0px 4px 0px #00661a);
  transition: 0.4s ease-in-out;
}
body#network .network_detail .bottom_btns > ul a:hover {
  filter: drop-shadow(0px 0px 0px #00661a);
  transform: translateY(3px);
}
@media only screen and (max-width: 767px) {
  body#network .network_detail .bottom_btns {
    padding: 20px 15px;
  }
  body#network .network_detail .network_content dl dt {
    font-size: 14px;
  }
  body#network .network_detail .network_content dl dd {
    font-size: 15px;
  }
  body#network .network_detail .network_content h1,
  body#network .network_detail .network_content h2 {
    font-size: 27px;
  }
  body#network .network_detail .network_content h3 {
    font-size: 24px;
  }
  body#network .network_detail .network_content h4 {
    font-size: 20px;
  }
  body#network .network_detail .network_content h5 {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  body#network .network_detail .bottom_btns > ul {
    display: block;
    max-width: 250px;
    margin: 0 auto;
  }
  body#network .network_detail .bottom_btns > ul > li {
    width: auto;
    margin-bottom: 15px;
  }
  body#network .network_detail .bottom_btns > ul > li:last-child {
    margin-bottom: 0;
  }
}

body#standard .l-breadcrumb,
body#light .l-breadcrumb,
body#resident .l-breadcrumb,
body#operation .l-breadcrumb {
  margin-bottom: 10px;
}
body#standard .circle_list > li,
body#light .circle_list > li,
body#resident .circle_list > li,
body#operation .circle_list > li {
  margin-bottom: 7px;
  padding-left: 16px;
  position: relative;
}
body#standard .circle_list > li:last-child,
body#light .circle_list > li:last-child,
body#resident .circle_list > li:last-child,
body#operation .circle_list > li:last-child {
  margin-bottom: 0;
}
body#standard .circle_list > li::before,
body#light .circle_list > li::before,
body#resident .circle_list > li::before,
body#operation .circle_list > li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  background: #ffea01;
}
body#standard .ttl,
body#light .ttl,
body#resident .ttl,
body#operation .ttl {
  font-weight: bold;
  background: #deef68;
  padding: 8px 20px;
  font-size: 20px;
}
body#standard .col2block,
body#light .col2block,
body#resident .col2block,
body#operation .col2block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body#standard .col2block > div,
body#light .col2block > div,
body#resident .col2block > div,
body#operation .col2block > div {
  width: 48.96%;
}
body#standard .assessment_btn,
body#light .assessment_btn,
body#resident .assessment_btn,
body#operation .assessment_btn {
  max-width: 760px;
  margin: 0 auto;
}
body#standard .assessment_btn > a,
body#standard .assessment_btn > button,
body#light .assessment_btn > a,
body#light .assessment_btn > button,
body#resident .assessment_btn > a,
body#resident .assessment_btn > button,
body#operation .assessment_btn > a,
body#operation .assessment_btn > button {
  width: 100%;
  outline: 0;
  display: block;
  background: #ed3c46;
  padding: 10px 10px;
  border: 0;
  appearance: none;
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  border-radius: 45px;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}
body#standard .assessment_btn > a::before,
body#standard .assessment_btn > button::before,
body#light .assessment_btn > a::before,
body#light .assessment_btn > button::before,
body#resident .assessment_btn > a::before,
body#resident .assessment_btn > button::before,
body#operation .assessment_btn > a::before,
body#operation .assessment_btn > button::before {
  content: "";
  display: block;
  position: absolute;
  right: 35px;
  top: 50%;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg) translateY(-50%);
}
body#standard .assessment_btn > a > span,
body#standard .assessment_btn > button > span,
body#light .assessment_btn > a > span,
body#light .assessment_btn > button > span,
body#resident .assessment_btn > a > span,
body#resident .assessment_btn > button > span,
body#operation .assessment_btn > a > span,
body#operation .assessment_btn > button > span {
  display: inline-block;
  vertical-align: middle;
}
body#standard .assessment_btn > a > .free,
body#standard .assessment_btn > button > .free,
body#light .assessment_btn > a > .free,
body#light .assessment_btn > button > .free,
body#resident .assessment_btn > a > .free,
body#resident .assessment_btn > button > .free,
body#operation .assessment_btn > a > .free,
body#operation .assessment_btn > button > .free {
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #ffffff;
  color: #ed3c46;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.2;
  margin-right: 20px;
  position: relative;
  vertical-align: middle;
}
body#standard .assessment_btn > a > .free > span,
body#standard .assessment_btn > button > .free > span,
body#light .assessment_btn > a > .free > span,
body#light .assessment_btn > button > .free > span,
body#resident .assessment_btn > a > .free > span,
body#resident .assessment_btn > button > .free > span,
body#operation .assessment_btn > a > .free > span,
body#operation .assessment_btn > button > .free > span {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
body#standard .assessment_btn > a:hover,
body#standard .assessment_btn > button:hover,
body#light .assessment_btn > a:hover,
body#light .assessment_btn > button:hover,
body#resident .assessment_btn > a:hover,
body#resident .assessment_btn > button:hover,
body#operation .assessment_btn > a:hover,
body#operation .assessment_btn > button:hover {
  transform: translateY(3px);
  opacity: 0.7;
  filter: drop-shadow(0px 0px 0px #b21625);
}
body#standard .assessment_btn_bg,
body#light .assessment_btn_bg,
body#resident .assessment_btn_bg,
body#operation .assessment_btn_bg {
  padding: 60px 15px;
  background: #ffffdd;
  margin-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  body#standard .ttl,
  body#light .ttl,
  body#resident .ttl,
  body#operation .ttl {
    font-size: 17px;
  }
  body#standard .col2block,
  body#light .col2block,
  body#resident .col2block,
  body#operation .col2block {
    display: block;
  }
  body#standard .col2block > div,
  body#light .col2block > div,
  body#resident .col2block > div,
  body#operation .col2block > div {
    width: auto;
    margin-bottom: 20px;
  }
  body#standard .col2block > div:last-child,
  body#light .col2block > div:last-child,
  body#resident .col2block > div:last-child,
  body#operation .col2block > div:last-child {
    margin: 0;
  }
  body#standard .assessment_btn > a,
  body#standard .assessment_btn > button,
  body#light .assessment_btn > a,
  body#light .assessment_btn > button,
  body#resident .assessment_btn > a,
  body#resident .assessment_btn > button,
  body#operation .assessment_btn > a,
  body#operation .assessment_btn > button {
    font-size: 16px;
  }
  body#standard .assessment_btn > a .free,
  body#standard .assessment_btn > button .free,
  body#light .assessment_btn > a .free,
  body#light .assessment_btn > button .free,
  body#resident .assessment_btn > a .free,
  body#resident .assessment_btn > button .free,
  body#operation .assessment_btn > a .free,
  body#operation .assessment_btn > button .free {
    width: 45px;
    height: 45px;
    font-size: 11px;
  }
  body#standard .assessment_btn > a::before,
  body#standard .assessment_btn > button::before,
  body#light .assessment_btn > a::before,
  body#light .assessment_btn > button::before,
  body#resident .assessment_btn > a::before,
  body#resident .assessment_btn > button::before,
  body#operation .assessment_btn > a::before,
  body#operation .assessment_btn > button::before {
    width: 8px;
    height: 8px;
    right: 25px;
  }
  body#standard .assessment_btn_bg,
  body#light .assessment_btn_bg,
  body#resident .assessment_btn_bg,
  body#operation .assessment_btn_bg {
    margin-bottom: 60px;
    padding: 30px 15px;
  }
}

body#standard .standard_obi,
body#light .standard_obi,
body#resident .standard_obi,
body#operation .standard_obi {
  background: #ffffdd;
  padding: 50px 0;
}
body#standard .standard_obi .obi_block,
body#light .standard_obi .obi_block,
body#resident .standard_obi .obi_block,
body#operation .standard_obi .obi_block {
  display: flex;
  justify-content: space-between;
}
body#standard .standard_obi .obi_block > div:nth-child(1),
body#light .standard_obi .obi_block > div:nth-child(1),
body#resident .standard_obi .obi_block > div:nth-child(1),
body#operation .standard_obi .obi_block > div:nth-child(1) {
  width: 52.09%;
}
body#standard .standard_obi .obi_block > div:nth-child(2),
body#light .standard_obi .obi_block > div:nth-child(2),
body#resident .standard_obi .obi_block > div:nth-child(2),
body#operation .standard_obi .obi_block > div:nth-child(2) {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  body#standard .standard_obi,
  body#light .standard_obi,
  body#resident .standard_obi,
  body#operation .standard_obi {
    padding: 30px 0;
  }
  body#standard .standard_obi .obi_block,
  body#light .standard_obi .obi_block,
  body#resident .standard_obi .obi_block,
  body#operation .standard_obi .obi_block {
    display: block;
  }
  body#standard .standard_obi .obi_block > div:first-child,
  body#light .standard_obi .obi_block > div:first-child,
  body#resident .standard_obi .obi_block > div:first-child,
  body#operation .standard_obi .obi_block > div:first-child {
    width: auto;
    margin-bottom: 25px;
  }
  body#standard .standard_obi .obi_block > div:nth-child(2),
  body#light .standard_obi .obi_block > div:nth-child(2),
  body#resident .standard_obi .obi_block > div:nth-child(2),
  body#operation .standard_obi .obi_block > div:nth-child(2) {
    width: auto;
    max-width: 400px;
    margin: 0 auto;
  }
}

body#standard .standard .table_scroll,
body#light .standard .table_scroll {
  text-align: center;
  letter-spacing: -0.04em;
  position: relative;
}
body#standard .standard .table_scroll > table,
body#light .standard .table_scroll > table {
  width: 100%;
}
body#standard .standard .table_scroll thead,
body#light .standard .table_scroll thead {
  background: #eaeaea;
}
body#standard .standard .table_scroll th,
body#light .standard .table_scroll th {
  background: #eaeaea;
}
body#standard .standard .table_scroll th,
body#standard .standard .table_scroll td,
body#light .standard .table_scroll th,
body#light .standard .table_scroll td {
  border: 2px solid #cccccc;
  padding: 15px 5px;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
}
body#standard .standard .table_scroll tbody td,
body#light .standard .table_scroll tbody td {
  width: 80px;
}
body#standard .standard .table_scroll tbody td.tborder_topl,
body#light .standard .table_scroll tbody td.tborder_topl {
  position: relative;
}
body#standard .standard .table_scroll tbody td.tborder_topl::before,
body#light .standard .table_scroll tbody td.tborder_topl::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-left: 2px solid #0cad2e;
  border-top: 2px solid #0cad2e;
}
body#standard .standard .table_scroll tbody td.tborder_topr,
body#light .standard .table_scroll tbody td.tborder_topr {
  position: relative;
}
body#standard .standard .table_scroll tbody td.tborder_topr::before,
body#light .standard .table_scroll tbody td.tborder_topr::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-right: 2px solid #0cad2e;
  border-top: 2px solid #0cad2e;
}
body#standard .standard .table_scroll tbody td.tborder_bodyl,
body#light .standard .table_scroll tbody td.tborder_bodyl {
  position: relative;
}
body#standard .standard .table_scroll tbody td.tborder_bodyl::before,
body#light .standard .table_scroll tbody td.tborder_bodyl::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-left: 2px solid #0cad2e;
}
body#standard .standard .table_scroll tbody td.tborder_bodyr,
body#light .standard .table_scroll tbody td.tborder_bodyr {
  position: relative;
}
body#standard .standard .table_scroll tbody td.tborder_bodyr::before,
body#light .standard .table_scroll tbody td.tborder_bodyr::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-right: 2px solid #0cad2e;
}
body#standard .standard .table_scroll tbody td.tborder_bottoml,
body#light .standard .table_scroll tbody td.tborder_bottoml {
  position: relative;
}
body#standard .standard .table_scroll tbody td.tborder_bottoml::before,
body#light .standard .table_scroll tbody td.tborder_bottoml::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-left: 2px solid #0cad2e;
  border-bottom: 2px solid #0cad2e;
}
body#standard .standard .table_scroll tbody td.tborder_bottomr,
body#light .standard .table_scroll tbody td.tborder_bottomr {
  border-right: 2px solid #0cad2e;
  border-bottom: 2px solid #0cad2e;
}
@media only screen and (max-width: 767px) {
  body#standard .standard .table_scroll,
  body#light .standard .table_scroll {
    white-space: nowrap;
    padding-bottom: 40px;
  }
}

body#standard .standard2 .dl_block dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
body#standard .standard2 .dl_block dl > dt,
body#standard .standard2 .dl_block dl > dd {
  margin-bottom: 18px;
}
body#standard .standard2 .dl_block dl > dt {
  width: 25px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  background: #ffea01;
}
body#standard .standard2 .dl_block dl > dd {
  width: calc(100% - 34px);
}
body#standard .standard2 .bgblock3col {
  display: flex;
  justify-content: space-between;
}
body#standard .standard2 .bgblock3col > div {
  width: 32.3%;
  background: #e3f5e9;
  padding: 25px 15px;
  text-align: center;
}
body#standard .standard2 .bgblock3col > div h5 {
  color: #00a831;
  font-weight: bold;
  margin-bottom: 12px;
}
body#standard .standard2 .bggray {
  background: #f9f9f9;
  padding: 15px;
}
@media only screen and (max-width: 767px) {
  body#standard .standard2 .bgblock3col {
    display: block;
  }
  body#standard .standard2 .bgblock3col > div {
    width: auto;
    margin-bottom: 25px;
  }
  body#standard .standard2 .bgblock3col > div:last-child {
    margin-bottom: 0;
  }
}

body#light .create_user,
body#standard .create_user {
  border: 1px solid #cccccc;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body#light .create_user > div:nth-child(1),
body#standard .create_user > div:nth-child(1) {
  width: 150px;
}
body#light .create_user > div:nth-child(1) img,
body#standard .create_user > div:nth-child(1) img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 100%;
}
body#light .create_user > div:nth-child(2),
body#standard .create_user > div:nth-child(2) {
  width: calc(100% - 190px);
}
body#light .create_user > div:nth-child(2) h3,
body#standard .create_user > div:nth-child(2) h3 {
  font-size: 20px;
  font-weight: bold;
}
body#light .create_user > div:nth-child(2) h3 + p,
body#standard .create_user > div:nth-child(2) h3 + p {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  body#light .create_user,
  body#standard .create_user {
    padding: 25px 20px;
    display: block;
  }
  body#light .create_user > div:first-child,
  body#standard .create_user > div:first-child {
    width: 70px;
    margin: 0 auto 25px;
  }
  body#light .create_user > div:nth-child(2),
  body#standard .create_user > div:nth-child(2) {
    width: auto;
  }
  body#light .create_user > div:nth-child(2) h3,
  body#standard .create_user > div:nth-child(2) h3 {
    font-size: 19px;
  }
  body#light .create_user > div:nth-child(2) h3 + p,
  body#standard .create_user > div:nth-child(2) h3 + p {
    font-size: 14px;
  }
}
body#light .create_user a,
body#standard .create_user a {
  color: blue;
  text-decoration: underline;
}
body#light .create_user a:hover,
body#standard .create_user a:hover {
  text-decoration: none;
}

body#light .light .step_items {
  display: flex;
  justify-content: space-between;
  position: relative;
  font-weight: bold;
}
body#light .light .step_items::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 60px;
  background: #fbfbd9;
}
body#light .light .step_items > .item {
  background: #ffffff;
  position: relative;
  z-index: 5;
  width: 23.26%;
}
body#light .light .step_items > .item::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 2px solid #000000;
}
body#light .light .step_items > .item .item_head {
  background: #ffea01;
  padding: 10px 10px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
body#light .light .step_items > .item .item_body {
  padding: 30px 10px;
  text-align: center;
  background: #fff;
}
body#light .light .step_items > .item .item_body .img {
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
body#light .light .step_items > .item .item_body h3 {
  color: #00a831;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 1500px) {
  body#light .light .step_items > .item .item_body {
    font-size: 1.1vw;
  }
}
@media only screen and (max-width: 1260px) {
  body#light .light .step_items > .item .item_body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 960px) {
  body#light .light .step_items {
    flex-wrap: wrap;
  }
  body#light .light .step_items > .item {
    width: 47.83%;
  }
  body#light .light .step_items > .item:not(:nth-child(-n+2)) {
    margin-top: 4.34%;
  }
  body#light .light .step_items::before {
    content: none;
  }
  body#light .light .step_items > .item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: #fbfbd9;
    z-index: -1;
  }
  body#light .light .step_items > .item:nth-child(3)::before {
    left: -15%;
    width: 58vw;
  }
  body#light .light .step_items > .item .item_head {
    font-size: 20px;
  }
  body#light .light .step_items > .item .item_body h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  body#light .light .step_items > .item .item_body {
    padding: 20px 15px;
  }
  body#light .light .step_items > .item .item_body .img {
    height: 60px;
  }
  body#light .light .step_items > .item .item_body .img img {
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
  body#light .light .step_items > .item .item_body h3 + p {
    text-align: left;
  }
}

body#resident .resident .ttl {
  margin-bottom: 20px;
}
body#resident .resident .residentcol_base > div {
  background: #e3f5e9;
  padding: 25px 15px;
  text-align: center;
}
body#resident .resident .residentcol_base > div h5 {
  color: #00a831;
  font-weight: bold;
  margin-bottom: 12px;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#resident .resident .residentcol_base > div h5 + p {
  text-align: left;
}
body#resident .resident .resident4col {
  display: flex;
  justify-content: space-between;
}
body#resident .resident .resident4col > div {
  width: 23.96%;
}
body#resident .resident .resident2col {
  display: flex;
  justify-content: space-between;
}
body#resident .resident .resident2col > div {
  width: 48.96%;
}
body#resident .resident .resident3col {
  display: flex;
  justify-content: space-between;
}
body#resident .resident .resident3col h5 {
  color: #00a831;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}
body#resident .resident .resident3col h5 + p {
  text-align: left;
}
body#resident .resident .resident3col > div {
  width: 32.3%;
  border: 2px solid #e3f5e9;
  background: #fff;
}
body#resident .resident .resident3col > div > div:nth-child(1) {
  background: #e3f5e9;
  padding: 20px 15px;
}
body#resident .resident .resident3col .bg_white {
  background: #fff;
  text-align: left;
  padding: 15px 15px;
}
body#resident .resident .resident3col .bg_white h6 {
  font-weight: bold;
}
body#resident .resident .circle_list_inline {
  background: #f9f9f9;
  padding: 14px 20px 5px;
}
body#resident .resident .circle_list_inline > ul > li {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 10px;
}
body#resident .resident .block2col {
  display: flex;
  justify-content: space-between;
}
body#resident .resident .block2col > div {
  width: 48.96%;
}
body#resident .resident .block2col > div .circle_block {
  display: flex;
  justify-content: space-between;
}
body#resident .resident .block2col > div .circle_block > ul {
  width: 50%;
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  body#resident .resident .resident4col {
    display: block;
  }
  body#resident .resident .resident4col > div {
    width: auto;
    margin-bottom: 15px;
  }
  body#resident .resident .resident4col > div:last-child {
    margin-bottom: 0;
  }
  body#resident .resident .resident2col {
    display: block;
  }
  body#resident .resident .resident2col > div {
    width: auto;
    margin-bottom: 15px;
  }
  body#resident .resident .resident2col > div:last-child {
    margin-bottom: 0;
  }
  body#resident .resident .resident3col {
    display: block;
  }
  body#resident .resident .resident3col > div {
    width: auto;
    margin-bottom: 15px;
  }
  body#resident .resident .resident3col > div:last-child {
    margin-bottom: 0;
  }
  body#resident .resident .block2col {
    display: block;
  }
  body#resident .resident .block2col > div {
    width: auto;
    margin-bottom: 25px;
  }
  body#resident .resident .block2col > div:last-child {
    margin-bottom: 0;
  }
}

body#operation .operation .ttl.ttl_bg1 {
  background: #0cad2e;
  color: #fff;
  margin-bottom: 10px;
}
body#operation .operation .ttl.ttl_bg2 {
  background: #ffa31e;
  color: #fff;
  margin-bottom: 10px;
}
body#operation .operation .block2col {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
body#operation .operation .block2col > div {
  width: 48.96%;
}
body#operation .operation .block2col h4.ttl {
  margin-bottom: 20px;
  text-align: center;
}
body#operation .operation .block2col .bg_arrow {
  background: #e3f5e9;
  padding: 15px 10px;
  margin-bottom: 45px;
  position: relative;
  text-align: center;
}
body#operation .operation .block2col .bg_arrow::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50px 0 50px;
  border-color: #e3f5e9 transparent transparent transparent;
}
body#operation .operation .block2col h5 {
  color: #00a831;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}
body#operation .operation .flow_items {
  position: relative;
}
body#operation .operation .flow_items::before {
  content: "";
  display: block;
  width: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffdd;
  z-index: -1;
}
body#operation .operation .flow_items .item {
  border: 1px solid #000000;
  margin-bottom: 40px;
  background: #fff;
}
body#operation .operation .flow_items .item:last-child {
  margin-bottom: 0;
}
body#operation .operation .flow_items .item .item_head {
  background: #ffea01;
  padding: 10px 10px;
}
body#operation .operation .flow_items .item .item_head h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
body#operation .operation .flow_items .item .item_head h3 > span {
  font-size: 117%;
}
body#operation .operation .flow_items .item .item_body {
  padding: 20px 50px;
}
body#operation .operation .flow_items .item .item_body .img_layout {
  display: flex;
  justify-content: space-between;
}
body#operation .operation .flow_items .item .item_body .img_layout > div:nth-child(1) {
  width: 140px;
  text-align: center;
}
body#operation .operation .flow_items .item .item_body .img_layout > div:nth-child(2) {
  width: calc(100% - 170px);
}
body#operation .operation .flow_items .item .item_body .img_layout h3 {
  font-size: 26px;
  color: #00a831;
  margin-bottom: 10px;
  font-weight: bold;
}
body#operation .operation .flow_items .item .item_body .step_btn {
  max-width: 360px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
body#operation .operation .flow_items .item .item_body .step_btn a {
  color: #fff;
  background: #0cad2e;
  display: block;
  padding: 12px 15px;
  position: relative;
  border-radius: 45px;
  box-shadow: 0 5px 0 0 #00651e;
  transition: 0.5s ease-in-out;
}
body#operation .operation .flow_items .item .item_body .step_btn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
body#operation .operation .flow_items .item .item_body .step_btn a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  body#operation .operation .flow_items .item .item_body {
    padding: 20px 25px;
  }
  body#operation .operation .flow_items .item .item_body .img_layout {
    display: block;
  }
  body#operation .operation .flow_items .item .item_body .img_layout > div:first-child {
    width: auto;
    margin-bottom: 15px;
  }
  body#operation .operation .flow_items .item .item_body .img_layout > div:nth-child(2) {
    width: auto;
  }
  body#operation .operation .flow_items .item .item_body .img_layout h3 {
    font-size: 20px;
  }
  body#operation .operation .flow_items .item .item_head h3 {
    font-size: 20px;
  }
  body#operation .operation .flow_items .item .item_body .img_layout .btns {
    padding: 10px 10px;
  }
  body#operation .operation .flow_items .item .item_body .step_btn a {
    font-size: 15px;
  }
  body#operation .operation .block2col {
    display: block;
  }
  body#operation .operation .block2col > div {
    width: auto;
    margin-bottom: 25px;
  }
  body#operation .operation .block2col > div:last-child {
    margin-bottom: 0;
  }
  body#operation .operation .block2col h5 {
    font-size: 19px;
  }
}

body#sitemap .sitemap .block2col {
  display: flex;
  justify-content: space-between;
}
body#sitemap .sitemap .block2col > div {
  width: 50%;
  padding-right: 15px;
}
body#sitemap .sitemap .block2col ul > li {
  padding-left: 16px;
  position: relative;
  line-height: 1.3;
  margin-bottom: 12px;
}
body#sitemap .sitemap .block2col ul > li:last-child {
  margin-bottom: 0;
}
body#sitemap .sitemap .block2col ul > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #0cad2e;
  border-bottom: 1px solid #0cad2e;
  transform: rotate(-45deg);
}
body#sitemap .sitemap .block2col .network_1col {
  width: 100%;
}
body#sitemap .sitemap .block2col .network_1col dl {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
body#sitemap .sitemap .block2col .network_1col dl dt {
  width: 80px;
  line-height: 1.3;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  body#sitemap .sitemap .block2col .network_1col dl dt {
    width: 60px;
  }
}
body#sitemap .sitemap .block2col .network_1col dl dd {
  width: calc(100% - 80px);
}
@media only screen and (max-width: 767px) {
  body#sitemap .sitemap .block2col .network_1col dl dd {
    width: calc(100% - 60px);
  }
}
body#sitemap .sitemap .block2col .network_1col dl dd ul {
  display: flex;
  flex-wrap: wrap;
}
body#sitemap .sitemap .block2col .network_1col dl dd ul li:last-child {
  margin-bottom: 12px;
}
body#sitemap .sitemap .block2col .network_1col dl dd ul li a {
  padding-right: 20px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  body#sitemap .sitemap .block2col .network_1col dl dd ul li a {
    padding-right: 12px;
  }
}

.not_found {
  text-align: center;
  padding-top: 55px;
}
.not_found h2 + p {
  font-size: 22px;
  font-weight: bold;
}
.not_found .gbtn {
  font-size: 18px;
  max-width: 360px;
}
.not_found .gbtn a {
  padding: 14px 15px;
}
@media only screen and (max-width: 767px) {
  .not_found {
    padding-top: 35px;
  }
  .not_found h2 + p {
    font-size: 18px;
  }
}

#area .point_bgobi {
  padding: 60px 0 0;
  background: #ffffdd;
}
#area .point_bgobi > div {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}
#area .point_bgobi h3 {
  font-size: 46px;
  font-weight: bold;
}
#area .point_bgobi h3 > span {
  font-size: 121%;
}
#area .point_bgobi ul.pointlist {
  display: flex;
  justify-content: space-between;
}
#area .point_bgobi ul.pointlist + p {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
#area .point_bgobi ul.pointlist > li {
  width: 31.58%;
}
#area .point_bgobi .point_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#area .point_bgobi .point_block > div:nth-child(1) {
  width: 70.38%;
  padding-right: 15px;
}
#area .point_bgobi .point_block > div:nth-child(2) {
  width: 27.04%;
  position: relative;
  top: 15px;
}
@media screen and (max-width: 767px) {
  #area .point_bgobi .vpc767 {
    display: none !important;
  }
}
@media not screen, screen and (min-width: 768px) {
  #area .point_bgobi .vsp767 {
    display: none !important;
  }
}
@media only screen and (max-width: 1260px) {
  #area .point_bgobi h3 {
    font-size: 23px;
    text-align: center;
  }
  #area .point_bgobi ul.pointlist + p {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  #area .point_bgobi {
    padding: 30px 0 0;
  }
  #area .point_bgobi .point_block {
    align-items: center;
  }
  #area .point_bgobi ul.pointlist + p {
    font-size: 19px;
    text-align: left;
  }
  #area .point_bgobi .point_block > div:nth-child(2) {
    top: 4px;
  }
}

#area .area_sec img {
  max-width: 100%;
}
#area .area_sec .map_links .item {
  border: 2px solid #000000;
  margin-bottom: 20px;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
#area .area_sec .map_links .item:last-child {
  margin-bottom: 0;
}
#area .area_sec .map_links .item h3 {
  font-size: 24px;
  color: #fff;
  background: var(--bg-color);
  padding: 15px 15px;
  line-height: 1.1;
  text-align: center;
  font-weight: bold;
}
#area .area_sec .map_links .item .item_body {
  padding: 20px 20px 14px;
  background: #fff;
}
#area .area_sec .map_links .item .item_body > ul {
  flex-wrap: wrap;
  display: flex;
  gap: 2.375%;
}
#area .area_sec .map_links .item .item_body > ul > li {
  width: 31.75%;
  margin-bottom: 10px;
}
#area .area_sec .map_links .item .item_body > ul > li.break1 {
  margin-right: 68.25%;
}
#area .area_sec .map_links .item .item_body > ul > li a {
  display: block;
  padding: 10px;
  background: #efefef;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  border-radius: 5px;
}

#area_template .new_example.new_example_bg1,
body#top_page .new_example.new_example_bg1,
body#top_resemble .new_example.new_example_bg1 {
  background: #fff;
}
#area_template .new_example .ttl > span,
body#top_page .new_example .ttl > span,
body#top_resemble .new_example .ttl > span {
  background: none;
  padding: 0;
}
#area_template .imgblock4col,
body#top_page .imgblock4col,
body#top_resemble .imgblock4col {
  display: flex;
  justify-content: space-between;
}
#area_template .imgblock4col > li,
body#top_page .imgblock4col > li,
body#top_resemble .imgblock4col > li {
  width: 23.34%;
  font-size: 30px;
  text-align: center;
}
#area_template .imgblock4col > li h3,
#area_template .imgblock4col > li h4,
body#top_page .imgblock4col > li h3,
body#top_page .imgblock4col > li h4,
body#top_resemble .imgblock4col > li h3,
body#top_resemble .imgblock4col > li h4 {
  font-weight: bold;
}
#area_template .imgblock4col > li .img,
body#top_page .imgblock4col > li .img,
body#top_resemble .imgblock4col > li .img {
  margin-bottom: 15px;
  border: 2px solid #000000;
}
#area_template .contact_bnsec h2,
body#top_page .contact_bnsec h2,
body#top_resemble .contact_bnsec h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: -47px;
}
#area_template .contact_bnsec .contact_bn_ttl_block > p:nth-of-type(1),
body#top_page .contact_bnsec .contact_bn_ttl_block > p:nth-of-type(1),
body#top_resemble .contact_bnsec .contact_bn_ttl_block > p:nth-of-type(1) {
  margin-left: -30px;
}
#area_template .voice #voice_slider li .slider_head dl,
body#top_page .voice #voice_slider li .slider_head dl,
body#top_resemble .voice #voice_slider li .slider_head dl {
  display: block;
}
#area_template .voice #voice_slider li .slider_head dl dt,
body#top_page .voice #voice_slider li .slider_head dl dt,
body#top_resemble .voice #voice_slider li .slider_head dl dt {
  margin-bottom: 10px;
  width: auto;
}
@media screen and (max-width: 1400px) {
  #area_template .contact_bn_ttl_block > p:nth-of-type(1),
  body#top_page .contact_bn_ttl_block > p:nth-of-type(1),
  body#top_resemble .contact_bn_ttl_block > p:nth-of-type(1) {
    margin-left: 0;
  }
  #area_template .contact_bnsec h2,
  body#top_page .contact_bnsec h2,
  body#top_resemble .contact_bnsec h2 {
    margin-bottom: 0px;
  }
  #area_template .contact_bnsec h2 + h3,
  body#top_page .contact_bnsec h2 + h3,
  body#top_resemble .contact_bnsec h2 + h3 {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .imgblock4col,
  body#top_page .imgblock4col,
  body#top_resemble .imgblock4col {
    gap: 2.88%;
    flex-wrap: wrap;
    justify-content: center;
  }
  #area_template .imgblock4col > li,
  body#top_page .imgblock4col > li,
  body#top_resemble .imgblock4col > li {
    width: 48.56%;
    font-size: 18px;
  }
  #area_template .imgblock4col > li:not(:nth-child(-n+2)),
  body#top_page .imgblock4col > li:not(:nth-child(-n+2)),
  body#top_resemble .imgblock4col > li:not(:nth-child(-n+2)) {
    margin-top: 18px;
  }
  #area_template .imgblock4col > li .img,
  body#top_page .imgblock4col > li .img,
  body#top_resemble .imgblock4col > li .img {
    margin-bottom: 7px;
  }
  #area_template .contact_bnsec h2,
  body#top_page .contact_bnsec h2,
  body#top_resemble .contact_bnsec h2 {
    font-size: 5vw;
    margin-bottom: 10px;
  }
}

#haisya .area_ttl,
#area_template .area_ttl,
body#top_page .area_ttl,
#top_resemble .area_ttl {
  background: #0cad2e;
  padding: 20px 15px;
  text-align: center;
  color: #fff;
}
#haisya .area_ttl.area_ttl_bg1,
#area_template .area_ttl.area_ttl_bg1,
body#top_page .area_ttl.area_ttl_bg1,
#top_resemble .area_ttl.area_ttl_bg1 {
  background: #ffea01;
  color: #000000;
}
#haisya .area_ttl.area_ttl_bg2,
#area_template .area_ttl.area_ttl_bg2,
body#top_page .area_ttl.area_ttl_bg2,
#top_resemble .area_ttl.area_ttl_bg2 {
  background: #389e60;
}
#haisya .area_ttl.area_ttl_bg3,
#area_template .area_ttl.area_ttl_bg3,
body#top_page .area_ttl.area_ttl_bg3,
#top_resemble .area_ttl.area_ttl_bg3 {
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  #haisya .area_ttl.area_ttl_bg3,
  #area_template .area_ttl.area_ttl_bg3,
  body#top_page .area_ttl.area_ttl_bg3,
  #top_resemble .area_ttl.area_ttl_bg3 {
    padding: 15px 0 10px;
  }
}
#haisya .area_ttl.area_ttl_bg3 h1,
#area_template .area_ttl.area_ttl_bg3 h1,
body#top_page .area_ttl.area_ttl_bg3 h1,
#top_resemble .area_ttl.area_ttl_bg3 h1 {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  #haisya .area_ttl.area_ttl_bg3 h1,
  #area_template .area_ttl.area_ttl_bg3 h1,
  body#top_page .area_ttl.area_ttl_bg3 h1,
  #top_resemble .area_ttl.area_ttl_bg3 h1 {
    font-size: min(2.6vw, 12px);
  }
}
#haisya .area_ttl h1,
#haisya .area_ttl h2,
#area_template .area_ttl h1,
#area_template .area_ttl h2,
body#top_page .area_ttl h1,
body#top_page .area_ttl h2,
#top_resemble .area_ttl h1,
#top_resemble .area_ttl h2 {
  line-height: 1.4;
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.07em;
}
#haisya .area_ttl h1 > span.ttl_bg,
#haisya .area_ttl h2 > span.ttl_bg,
#area_template .area_ttl h1 > span.ttl_bg,
#area_template .area_ttl h2 > span.ttl_bg,
body#top_page .area_ttl h1 > span.ttl_bg,
body#top_page .area_ttl h2 > span.ttl_bg,
#top_resemble .area_ttl h1 > span.ttl_bg,
#top_resemble .area_ttl h2 > span.ttl_bg {
  background: #ffea01;
  padding: 2px 5px;
  line-height: 1.1;
  display: inline-block;
  color: #000000;
  font-size: 176.5%;
}
#haisya .area_ttl h1 .m1,
#haisya .area_ttl h2 .m1,
#area_template .area_ttl h1 .m1,
#area_template .area_ttl h2 .m1,
body#top_page .area_ttl h1 .m1,
body#top_page .area_ttl h2 .m1,
#top_resemble .area_ttl h1 .m1,
#top_resemble .area_ttl h2 .m1 {
  font-size: 135.3%;
}
@media only screen and (max-width: 767px) {
  #haisya .area_ttl h1,
  #haisya .area_ttl h2,
  #area_template .area_ttl h1,
  #area_template .area_ttl h2,
  body#top_page .area_ttl h1,
  body#top_page .area_ttl h2,
  #top_resemble .area_ttl h1,
  #top_resemble .area_ttl h2 {
    font-size: 5vw;
  }
}

#area_template .main,
body#top_page .main {
  padding: 30px;
}
#area_template .main .main_ttl,
body#top_page .main .main_ttl {
  text-align: center;
  margin: 20px 0 15px;
  font-size: 66px;
  font-weight: bold;
  letter-spacing: -0.08em;
}
#area_template .main .main_ttl h2,
body#top_page .main .main_ttl h2 {
  font-weight: bold;
}
#area_template .main .main_ttl .m1,
body#top_page .main .main_ttl .m1 {
  margin: 0 30px;
}
#area_template .main .main_ttl .m2,
body#top_page .main .main_ttl .m2 {
  color: #e00000;
  line-height: 1.3;
  display: inline-block;
  font-size: 136.4%;
}
#area_template .main .main_ttl .m2.m2_black,
body#top_page .main .main_ttl .m2.m2_black {
  color: #000000;
}
#area_template .main .main_ttl_sub,
body#top_page .main .main_ttl_sub {
  font-weight: bold;
  text-align: center;
  font-size: 50px;
  line-height: 1.2;
  margin-top: -15px;
}
#area_template .main .main_ttl_sub .m1,
body#top_page .main .main_ttl_sub .m1 {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  color: #e00000;
  display: inline-block;
  line-height: 1.2;
  font-size: 160%;
}
#area_template .main .main_ttl_sub .m1 > .m1_lettr1,
body#top_page .main .main_ttl_sub .m1 > .m1_lettr1 {
  letter-spacing: -0.2em;
}
#area_template .main .main_ttl_sub .s1,
body#top_page .main .main_ttl_sub .s1 {
  font-size: 80%;
}
#area_template .main .main_ttl_sub .s1.s1_red,
body#top_page .main .main_ttl_sub .s1.s1_red {
  color: #e00000;
}
@media only screen and (max-width: 1260px) {
  #area_template .main .main_ttl,
  body#top_page .main .main_ttl {
    font-size: 4.6vw;
  }
  #area_template .main .main_ttl_sub,
  body#top_page .main .main_ttl_sub {
    font-size: 4vw;
  }
  #area_template .main .area_logo,
  body#top_page .main .area_logo {
    max-width: 24.5vw;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .main,
  body#top_page .main {
    padding: 15px;
  }
  #area_template .main .main_ttl_sub,
  body#top_page .main .main_ttl_sub {
    margin-top: 10px;
    font-size: 5vw;
  }
  #area_template .main .main_ttl_sub .m1,
  body#top_page .main .main_ttl_sub .m1 {
    font-size: 140%;
  }
  #area_template .main .area_logo,
  body#top_page .main .area_logo {
    max-width: 30vw;
  }
  #area_template .main .main_ttl .m1,
  body#top_page .main .main_ttl .m1 {
    margin: 0 15px;
  }
  #area_template .main .main_ttl .m2,
  body#top_page .main .main_ttl .m2 {
    font-size: 196.4%;
  }
}

#area_template .area_links,
body#top_page .area_links {
  padding: 100px 0;
  background: #ffffdd;
}
#area_template .area_links h2,
body#top_page .area_links h2 {
  background: #ffa31e;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  margin-bottom: 30px;
}
#area_template .area_links .links,
body#top_page .area_links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5%;
}
#area_template .area_links .links > li,
body#top_page .area_links .links > li {
  width: 16.25%;
  margin-bottom: 6px;
}
#area_template .area_links .links > li a,
body#top_page .area_links .links > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 6px 10px;
  text-align: center;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #area_template .area_links,
  body#top_page .area_links {
    padding: 35px 0;
  }
  #area_template .area_links h2,
  body#top_page .area_links h2 {
    font-size: 22px;
  }
  #area_template .area_links .links,
  body#top_page .area_links .links {
    justify-content: space-between;
  }
  #area_template .area_links .links > li,
  body#top_page .area_links .links > li {
    width: 48%;
  }
}

#area_template .association,
body#top_page .association {
  padding: 60px 0 80px;
}
#area_template .association h2,
body#top_page .association h2 {
  background: #00a831;
  color: #fff;
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  margin-bottom: 30px;
}
#area_template .association h3,
body#top_page .association h3 {
  font-size: 36px;
  font-weight: bold;
  border-bottom: 4px solid #0cad2e;
  padding-bottom: 6px;
  margin-bottom: 18px;
}
#area_template .association .table_wrap,
body#top_page .association .table_wrap {
  font-size: 16px;
  margin-bottom: 50px;
}
#area_template .association .table_wrap:last-of-type,
body#top_page .association .table_wrap:last-of-type {
  margin-bottom: 0;
}
#area_template .association .table_wrap > table,
body#top_page .association .table_wrap > table {
  width: 100%;
}
#area_template .association .table_wrap th,
#area_template .association .table_wrap td,
body#top_page .association .table_wrap th,
body#top_page .association .table_wrap td {
  padding: 10px 10px;
  border: 1px solid #dddddd;
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
#area_template .association .table_wrap thead th,
body#top_page .association .table_wrap thead th {
  background: #9b9b9b;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
#area_template .association .table_wrap thead th:nth-child(1),
body#top_page .association .table_wrap thead th:nth-child(1) {
  border-left: 0;
}
#area_template .association .table_wrap thead th:nth-last-of-type(1),
body#top_page .association .table_wrap thead th:nth-last-of-type(1) {
  border-right: 0;
}
#area_template .association .table_wrap tbody tr:nth-child(even),
body#top_page .association .table_wrap tbody tr:nth-child(even) {
  background: #f2f2f2;
}
#area_template .association .table_wrap tbody a,
body#top_page .association .table_wrap tbody a {
  text-decoration: underline;
}
#area_template .association .table_wrap tbody a:hover,
body#top_page .association .table_wrap tbody a:hover {
  text-decoration: none;
}
#area_template .association .table_wrap tbody td:nth-of-type(1),
#area_template .association .table_wrap tbody td:nth-of-type(3),
body#top_page .association .table_wrap tbody td:nth-of-type(1),
body#top_page .association .table_wrap tbody td:nth-of-type(3) {
  text-align: center;
}
#area_template .association .table_wrap tbody th,
body#top_page .association .table_wrap tbody th {
  text-align: center;
}
#area_template .association .table_wrap tbody th:nth-child(1),
body#top_page .association .table_wrap tbody th:nth-child(1) {
  border-left: 0;
}
#area_template .association .table_wrap tbody td:nth-last-of-type(1),
body#top_page .association .table_wrap tbody td:nth-last-of-type(1) {
  border-right: 0;
}
@media only screen and (max-width: 767px) {
  #area_template .association,
  body#top_page .association {
    padding: 45px 0 65px;
  }
  #area_template .association h2,
  body#top_page .association h2 {
    font-size: 22px;
  }
  #area_template .association h3,
  body#top_page .association h3 {
    font-size: 26px;
  }
  #area_template .association .table_wrap,
  body#top_page .association .table_wrap {
    padding-bottom: 30px;
    overflow-y: scroll;
  }
  #area_template .association .table_wrap > table,
  body#top_page .association .table_wrap > table {
    white-space: nowrap;
  }
}

#area_template .more_block,
body#top_page .more_block,
body#top_resemble .more_block {
  padding: 70px 0;
  background: #0cad2e;
}
#area_template .more_block.more_block_type2,
body#top_page .more_block.more_block_type2,
body#top_resemble .more_block.more_block_type2 {
  background-size: auto auto;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
#area_template .more_block.more_block_type2 h2,
body#top_page .more_block.more_block_type2 h2,
body#top_resemble .more_block.more_block_type2 h2 {
  color: #00a831;
}
#area_template .more_block.more_block_type2 h2 > span,
body#top_page .more_block.more_block_type2 h2 > span,
body#top_resemble .more_block.more_block_type2 h2 > span {
  border-bottom-color: #00a831;
}
#area_template .more_block h2,
body#top_page .more_block h2,
body#top_resemble .more_block h2 {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
#area_template .more_block h2 > span,
body#top_page .more_block h2 > span,
body#top_resemble .more_block h2 > span {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 38px;
  border-bottom: 4px solid #ffffff;
}
#area_template .more_block ul > li,
body#top_page .more_block ul > li,
body#top_resemble .more_block ul > li {
  position: relative;
  padding-left: 17px;
}
#area_template .more_block ul > li::before,
body#top_page .more_block ul > li::before,
body#top_resemble .more_block ul > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00a831;
  border-radius: 50%;
  left: 0;
  top: 12px;
}
#area_template .more_block .more_jscontent,
body#top_page .more_block .more_jscontent,
body#top_resemble .more_block .more_jscontent {
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  padding: 25px 35px;
  background: #fff;
  border: 2px solid #000000;
  height: 295px;
  overflow: hidden;
  font-size: 16px;
  position: relative;
  font-weight: normal;
  line-height: 1.9;
}
#area_template .more_block .more_jscontent.active,
body#top_page .more_block .more_jscontent.active,
body#top_resemble .more_block .more_jscontent.active {
  height: auto;
}
#area_template .more_block .more_jscontent.active::before,
body#top_page .more_block .more_jscontent.active::before,
body#top_resemble .more_block .more_jscontent.active::before {
  content: none;
}
#area_template .more_block .more_jscontent.active .more_click,
body#top_page .more_block .more_jscontent.active .more_click,
body#top_resemble .more_block .more_jscontent.active .more_click {
  display: none;
}
#area_template .more_block .more_jscontent h3,
body#top_page .more_block .more_jscontent h3,
body#top_resemble .more_block .more_jscontent h3 {
  font-size: 20px;
  font-weight: bold;
  color: #00a831;
  line-height: 1.3;
  margin-bottom: 14px;
}
#area_template .more_block .more_jscontent .more_click,
body#top_page .more_block .more_jscontent .more_click,
body#top_resemble .more_block .more_jscontent .more_click {
  position: absolute;
  right: 35px;
  bottom: 25px;
  z-index: 99;
  line-height: 1.2;
}
#area_template .more_block .more_jscontent .more_click a,
body#top_page .more_block .more_jscontent .more_click a,
body#top_resemble .more_block .more_jscontent .more_click a {
  color: #00a831;
  cursor: pointer;
  text-decoration: underline;
  padding-right: 17px;
  position: relative;
}
#area_template .more_block .more_jscontent .more_click a::before,
body#top_page .more_block .more_jscontent .more_click a::before,
body#top_resemble .more_block .more_jscontent .more_click a::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #00a831;
  border-bottom: 2px solid #00a831;
  transform: rotate(45deg);
}
#area_template .more_block .more_jscontent .more_click a:hover,
body#top_page .more_block .more_jscontent .more_click a:hover,
body#top_resemble .more_block .more_jscontent .more_click a:hover {
  text-decoration: none;
}
#area_template .more_block .more_jscontent::before,
body#top_page .more_block .more_jscontent::before,
body#top_resemble .more_block .more_jscontent::before {
  content: "";
  display: block;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.14) 86.25%, rgba(255, 255, 255, 0) 100%);
  height: 150px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  #area_template .more_block,
  body#top_page .more_block,
  body#top_resemble .more_block {
    padding: 45px 0;
  }
  #area_template .more_block h2,
  body#top_page .more_block h2,
  body#top_resemble .more_block h2 {
    font-size: 24px;
  }
  #area_template .more_block h3,
  body#top_page .more_block h3,
  body#top_resemble .more_block h3 {
    font-size: 18px;
  }
  #area_template .more_block .more_jscontent,
  body#top_page .more_block .more_jscontent,
  body#top_resemble .more_block .more_jscontent {
    padding: 15px;
    height: 250px;
  }
  #area_template .more_block .more_jscontent .more_click,
  body#top_page .more_block .more_jscontent .more_click,
  body#top_resemble .more_block .more_jscontent .more_click {
    bottom: 15px;
    right: 15px;
  }
}

#area_template .voice .voice_ttl,
body#top_page .voice .voice_ttl {
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #area_template .voice .voice_ttl,
  body#top_page .voice .voice_ttl {
    font-size: 6.67vw;
    margin-bottom: 25px;
  }
}

#area_template .useful_column,
body#top_page .useful_column,
#top_resemble .useful_column {
  padding: 75px 0;
  background: #e3f5e9;
}
#area_template .useful_column h2,
body#top_page .useful_column h2,
#top_resemble .useful_column h2 {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
}
#area_template .useful_column > div > h3,
body#top_page .useful_column > div > h3,
#top_resemble .useful_column > div > h3 {
  font-size: 36px;
  font-weight: bold;
  border-bottom: 4px solid #0cad2e;
  padding-bottom: 6px;
}
#area_template .useful_column .list a,
body#top_page .useful_column .list a,
#top_resemble .useful_column .list a {
  display: block;
  position: relative;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: normal;
  background: #ffffff;
  border-bottom: 1px solid #dddddd;
}
#area_template .useful_column .list a::before,
body#top_page .useful_column .list a::before,
#top_resemble .useful_column .list a::before {
  content: "";
  display: block;
  position: absolute;
  left: 18px;
  top: 25px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffa31e;
  border-bottom: 2px solid #ffa31e;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #area_template .useful_column,
  body#top_page .useful_column,
  #top_resemble .useful_column {
    padding: 50px 0;
  }
  #area_template .useful_column h2,
  body#top_page .useful_column h2,
  #top_resemble .useful_column h2 {
    font-size: 32px;
  }
  #area_template .useful_column > div > h3,
  body#top_page .useful_column > div > h3,
  #top_resemble .useful_column > div > h3 {
    font-size: 26px;
  }
  #area_template .useful_column .list a,
  body#top_page .useful_column .list a,
  #top_resemble .useful_column .list a {
    font-size: 16px;
  }
  #area_template .useful_column .list a:before,
  body#top_page .useful_column .list a:before,
  #top_resemble .useful_column .list a:before {
    top: 23px;
    width: 6px;
    height: 6px;
  }
}

#top_resemble .notice,
#area_template .notice,
body#top_page .notice {
  padding: 115px 0 100px;
}
#top_resemble .notice h2,
#area_template .notice h2,
body#top_page .notice h2 {
  background: #e3f5e9;
  font-size: 36px;
  font-weight: bold;
  color: #0cad2e;
  text-align: center;
  padding: 15px 15px;
}
#top_resemble .notice h2 .link_green,
#area_template .notice h2 .link_green,
body#top_page .notice h2 .link_green {
  color: #0cad2e;
  position: relative;
}
#top_resemble .notice h2 .link_green::before,
#area_template .notice h2 .link_green::before,
body#top_page .notice h2 .link_green::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-right: 2px solid #0cad2e;
  border-bottom: 2px solid #0cad2e;
  position: absolute;
  right: -24px;
  top: calc(50% + 4px);
  transform: translateY(-50%) rotate(-45deg);
}
#top_resemble .notice .notice_articles > article,
#area_template .notice .notice_articles > article,
body#top_page .notice .notice_articles > article {
  margin-bottom: 40px;
  border: 1px solid #000000;
}
#top_resemble .notice .notice_articles > article:last-child,
#area_template .notice .notice_articles > article:last-child,
body#top_page .notice .notice_articles > article:last-child {
  margin-bottom: 0;
}
#top_resemble .notice .notice_articles .item_txt,
#area_template .notice .notice_articles .item_txt,
body#top_page .notice .notice_articles .item_txt {
  padding: 30px 15px 50px;
  font-size: 16px;
  font-weight: normal;
}
#top_resemble .notice .notice_articles .btns,
#area_template .notice .notice_articles .btns,
body#top_page .notice .notice_articles .btns {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top_resemble .notice .notice_articles .btns .gbtn span,
#area_template .notice .notice_articles .btns .gbtn span,
body#top_page .notice .notice_articles .btns .gbtn span {
  font-size: 130.77%;
  line-height: 0.7;
  display: inline-block;
}
#top_resemble .notice .notice_articles .btns > li,
#area_template .notice .notice_articles .btns > li,
body#top_page .notice .notice_articles .btns > li {
  width: 48.08%;
}
#top_resemble .notice .notice_articles .btns > li:not(:nth-child(-n+2)),
#area_template .notice .notice_articles .btns > li:not(:nth-child(-n+2)),
body#top_page .notice .notice_articles .btns > li:not(:nth-child(-n+2)) {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  #top_resemble .notice,
  #area_template .notice,
  body#top_page .notice {
    padding: 50px 0;
  }
  #top_resemble .notice h2,
  #area_template .notice h2,
  body#top_page .notice h2 {
    font-size: 24px;
  }
  #top_resemble .notice .notice_articles .btns,
  #area_template .notice .notice_articles .btns,
  body#top_page .notice .notice_articles .btns {
    display: block;
  }
  #top_resemble .notice .notice_articles .btns > li,
  #area_template .notice .notice_articles .btns > li,
  body#top_page .notice .notice_articles .btns > li {
    width: auto;
  }
  #top_resemble .notice .notice_articles .btns > li:not(:nth-child(-n+1)),
  #area_template .notice .notice_articles .btns > li:not(:nth-child(-n+1)),
  body#top_page .notice .notice_articles .btns > li:not(:nth-child(-n+1)) {
    margin-top: 20px;
  }
  #top_resemble .notice .notice_articles .item_txt,
  #area_template .notice .notice_articles .item_txt,
  body#top_page .notice .notice_articles .item_txt {
    padding: 20px 15px;
  }
}

#area_template .purchase .ttl > span {
  border-bottom: 0;
  padding-bottom: 0;
}

#area_template .mainobi .obi_txt:not(.not_change) {
  background: #fff;
}
#area_template .mainobi .obi_txt:not(.not_change)::before {
  border-color: #fff transparent transparent transparent;
}

#area_template .scrap_car_comment_area {
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  #area_template .scrap_car_comment_area {
    padding: 60px 0 40px;
  }
}
#area_template .scrap_car_comment_area .scrap_car_comment {
  border: 3px solid #00a831;
  position: relative;
  padding: 50px 20px 30px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #area_template .scrap_car_comment_area .scrap_car_comment {
    flex-direction: column;
    gap: 30px 0;
  }
}
#area_template .scrap_car_comment_area .scrap_car_comment > h2 {
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #area_template .scrap_car_comment_area .scrap_car_comment > h2 {
    line-height: 1.4;
    top: -40px;
  }
}
#area_template .scrap_car_comment_area .scrap_car_comment > h2 span {
  background: #fff;
  padding: 0 20px;
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #area_template .scrap_car_comment_area .scrap_car_comment > h2 span {
    font-size: 26px;
    padding: 0;
  }
}
#area_template .scrap_car_comment_area .scrap_car_comment figure {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #area_template .scrap_car_comment_area .scrap_car_comment figure {
    width: 100%;
  }
}
#area_template .scrap_car_comment_area .scrap_car_comment .txt {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #area_template .scrap_car_comment_area .scrap_car_comment .txt {
    width: 100%;
  }
}
#area_template .scrap_car_comment_area .scrap_car_comment .txt p {
  font-weight: 400;
}
#area_template .scrap_car_comment_area .scrap_car_comment .txt p strong {
  font-weight: bold;
}
#area_template .accident_car_situation_area {
  background: url("../images/area/area_list/bg_green.png") no-repeat center center/cover;
  padding: 50px 0;
}
#area_template .accident_car_situation_area h2 {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #area_template .accident_car_situation_area h2 {
    font-size: 26px;
  }
}
#area_template .accident_car_situation_area h2 .marker {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
#area_template .accident_car_situation_area .accident_car_situation {
  border: 3px solid #000;
  background: #fff;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  #area_template .accident_car_situation_area .accident_car_situation {
    padding: 20px;
  }
}
#area_template .accident_car_situation_area .accident_car_situation p {
  font-weight: 400;
}
#area_template .accident_car_situation_area .accident_car_situation p strong {
  font-weight: bold;
}
#area_template .license_return_area {
  /* background: #fffcbd; */
  background: url("../images/area/area_list/bg_yellow.jpg") no-repeat center center/cover;
  padding: 50px 0;
}
#area_template .license_return_area h2 {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #area_template .license_return_area h2 {
    font-size: 22px;
  }
}
#area_template .license_return_area .license_return {
  border: 3px solid #000;
  background: #fff;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  #area_template .license_return_area .license_return {
    padding: 20px;
  }
}
#area_template .license_return_area .license_return p {
  font-weight: 400;
}
#area_template .license_return_area .license_return p strong {
  font-weight: bold;
}
#area_template .license_return_area .license_return ul {
  margin: 20px 0;
}
#area_template .license_return_area .license_return ul li {
  font-weight: 400;
  font-size: 80%;
}
#area_template .license_return_area .license_return a {
  text-decoration: underline;
}
#area_template .license_return_area .license_return a:hover {
  text-decoration: none;
}

body#top_resemble.ziko .anchorLink {
  display: block;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px;
  color: #fff;
  text-align: center;
  background: #3cac67;
  position: relative;
}
body#top_resemble.ziko .anchorLink span {
  color: #c6af24;
}
body#top_resemble.ziko .anchorLink strong {
  display: inline-block;
  background: #ffa31e;
  margin-left: 15px;
  padding: 0 15px;
  border-radius: 30px;
}

@media only screen and (max-width: 767px) {
  #area_template .new_area_fv {
    aspect-ratio: 39/34;
  }
}
#area_template .new_area_fv > .under_wrap {
  position: relative;
  height: 100%;
  aspect-ratio: 233/128;
}
@media (min-width: 768px) and (max-width: 819px) {
  #area_template .new_area_fv > .under_wrap {
    aspect-ratio: 47/36;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv > .under_wrap {
    aspect-ratio: 39/34;
    box-sizing: border-box;
  }
}
#area_template .new_area_fv .fv_mainImg {
  aspect-ratio: 233/128;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) and (max-width: 819px) {
  #area_template .new_area_fv .fv_mainImg {
    aspect-ratio: 47/36;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_mainImg {
    aspect-ratio: 39/34;
  }
}
#area_template .new_area_fv .fv_mainImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#area_template .new_area_fv .fv_mainImg .fv_mainImg_in {
  position: relative;
  aspect-ratio: 233/128;
}
@media (min-width: 768px) and (max-width: 819px) {
  #area_template .new_area_fv .fv_mainImg .fv_mainImg_in {
    aspect-ratio: 47/36;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_mainImg .fv_mainImg_in {
    aspect-ratio: 39/34;
  }
}
#area_template .new_area_fv .fv_mainImg .fv_mainImg_in .fv_comment {
  position: absolute;
  right: min(4vw, 60px);
  writing-mode: vertical-rl;
  font-size: clamp(16px, 2.8vw, 36px);
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_mainImg .fv_mainImg_in .fv_comment {
    font-size: clamp(12px, 3.5vw, 20px);
  }
}
#area_template .new_area_fv .fv_mainImg .fv_mainImg_in .fv_comment.no_bg {
  top: 30px;
}
#area_template .new_area_fv .fv_mainImg .fv_mainImg_in .fv_comment.bg_pc {
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 0;
  color: #000;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_mainImg .fv_mainImg_in .fv_comment.bg_pc {
    background: none;
    color: #fff;
    padding: 0;
    top: inherit;
    transform: inherit;
    top: 20px;
    right: min(2vw, 20px);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}
#area_template .new_area_fv .fv_intro {
  position: absolute;
  top: -1px;
  left: 0;
  clip-path: polygon(0 0, 60% 0, 38% 100%, 0% 100%);
  background: rgba(255, 255, 255, 0.79);
  z-index: 1;
  height: calc(100% + 2px);
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro {
    clip-path: polygon(0 0, 64% 0, 50% 100%, 0% 100%);
  }
}
#area_template .new_area_fv .fv_intro .intro_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 0 min(4vw, 60px);
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .intro_inner {
    gap: 10px;
    padding: 10px;
  }
}
#area_template .new_area_fv .fv_intro .fv_h1 {
  font-weight: bold;
  letter-spacing: 0;
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .fv_h1 {
    font-size: min(17px, 4.8vw);
  }
}
#area_template .new_area_fv .fv_intro .fv_h1 strong {
  font-size: 188%;
}
#area_template .new_area_fv .fv_intro .fv_h1 span {
  display: block;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .fv_h1 span {
    font-size: 140%;
  }
}
#area_template .new_area_fv .fv_intro .fv_h1 .way_svg {
  margin-top: -20px;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .fv_h1 .way_svg {
    margin-top: 0;
  }
}
#area_template .new_area_fv .fv_intro .fv_h1 .way_svg img {
  width: 45%;
}
#area_template .new_area_fv .fv_intro .guidance img {
  width: 30%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .guidance img {
    width: 50%;
  }
}
#area_template .new_area_fv .fv_intro .fv_catch {
  font-weight: bold;
  font-size: clamp(14px, 2vw, 24px);
  letter-spacing: 0;
  line-height: 1.2;
  height: 80%;
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .fv_catch {
    font-size: clamp(10px, 3vw, 20px);
    line-height: 1.4;
  }
}
#area_template .new_area_fv .fv_intro .fv_catch span {
  font-size: clamp(16px, 2.4vw, 34px);
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv .fv_intro .fv_catch span {
    font-size: clamp(10px, 3vw, 20px);
    padding-left: 10px;
  }
}
#area_template .new_area_fv .fv_intro .fv_catch span strong {
  font-size: 188%;
}
#area_template .new_area_fv span.fv_medal {
  position: absolute;
  top: 10px;
  left: 39%;
  display: block;
  max-width: 248px;
  z-index: 2;
}
@media only screen and (max-width: 960px) {
  #area_template .new_area_fv span.fv_medal {
    max-width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .new_area_fv span.fv_medal {
    display: none;
  }
}
#area_template .new_area_fv span.fv_medal small {
  display: block;
  text-align: center;
  font-size: min(10px, 0.8vw);
  font-weight: bold;
  padding-top: 5px;
}
@media (min-width: 901px) {
  #area_template .mainobi2 {
    margin-bottom: 60px;
  }
}
#area_template .youtube_area .iframe_block {
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
}
#area_template .youtube_area .iframe_block iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#area_template .youtube_area .iframe_block p {
  text-align: center;
}
#area_template .sec_area_jpuc {
  padding: 75px 0;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc {
    padding: 40px 0;
  }
}
#area_template .sec_area_jpuc .sub_txt {
  font-size: clamp(16px, 2vw, 22px);
  text-align: center;
  font-weight: 400;
}
#area_template .sec_area_jpuc .sub_txt > span {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  line-height: 1.1;
}
#area_template .sec_area_jpuc .sub_txt > span::before, #area_template .sec_area_jpuc .sub_txt > span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: rotate(-25deg);
  background: #000;
}
#area_template .sec_area_jpuc .sub_txt > span::after {
  left: auto;
  right: 0;
  transform: rotate(25deg);
}
#area_template .sec_area_jpuc .ttl {
  font-size: clamp(20px, 2.2vw, 40px);
  line-height: 1.3;
}
#area_template .sec_area_jpuc .ttl + p.ta_c {
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .ttl + p.ta_c {
    font-size: min(3.6vw, 14px);
  }
}
#area_template .sec_area_jpuc .border_box_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 90px);
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px auto 0;
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box {
  border: 1px solid #ddd;
  padding: min(4vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head {
    gap: 8px;
  }
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head figure {
    width: calc(40% - 8px);
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head figure figcaption {
  text-align: center;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 400;
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head figure img {
  display: flex;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head figure img {
    width: 100%;
    height: auto;
    max-width: 82px;
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head h3 {
  font-weight: bold;
  font-size: clamp(20px, 2.8vw, 36px);
  letter-spacing: 0;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_head h3 {
    width: 60%;
    font-size: min(4.8vw, 20px);
  }
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box > .ta_c {
    width: calc(40% - 8px);
  }
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box > .ta_c img {
    width: 100%;
    height: auto;
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_txt {
  background: #f4f4f4;
  padding: 15px;
  font-weight: 40;
  flex-grow: 1;
  margin: 0 min(4vw, 60px);
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_txt {
    margin: 0;
    width: 60%;
    flex-grow: inherit;
    padding: 10px;
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_txt p {
  font-size: clamp(16px, 1.4vw, 20px);
}
@media only screen and (max-width: 767px) {
  #area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_txt p {
    font-size: min(14px, 4vw);
  }
}
#area_template .sec_area_jpuc .border_box_wrap > .border_box .border_box_txt strong {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #aff18d 70%);
}
#area_template .branch_info_sec > h2 {
  background-color: #ffa31e;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(20px, 3.6vw, 40px);
  padding: 30px 0;
}
@media only screen and (max-width: 767px) {
  #area_template .branch_info_sec > h2 {
    padding: 15px 0;
  }
}
#area_template .branch_info_sec > .under_wrap {
  margin: 0 auto 80px;
}
@media only screen and (max-width: 767px) {
  #area_template .branch_info_sec > .under_wrap {
    margin: 0 auto 40px;
  }
}
#area_template .branch_info_sec .branch_info_item {
  margin: 20px 0;
  border-top: #ddd 1px solid;
}
#area_template .branch_info_sec .branch_info_item > div {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: #ddd 1px solid;
  font-weight: 400;
}
#area_template .branch_info_sec .branch_info_item > div > dt {
  width: 40%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #area_template .branch_info_sec .branch_info_item > div > dt {
    width: 30%;
    font-size: 14px;
  }
}
#area_template .branch_info_sec .branch_info_item > div > dd {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  #area_template .branch_info_sec .branch_info_item > div > dd {
    width: 70%;
    font-size: 14px;
  }
}
#area_template .branch_info_sec .branch_info_item > div > dd small {
  font-size: 80%;
}
#area_template .branch_info_sec .gmap {
  aspect-ratio: 16/9;
}
#area_template .branch_info_sec .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

#news .news_sec .news_dl {
  border-top: 1px solid #dddddd;
}
#news .news_sec .news_dl dt {
  margin-bottom: 8px;
}
#news .news_sec .news_dl dt time {
  color: #555555;
}
#news .news_sec .news_dl a {
  padding: 15px 20px;
  display: block;
  border-bottom: 1px solid #dddddd;
  opacity: 1;
  transition: background 0.4s ease-in-out;
}
#news .news_sec .news_dl a:hover {
  background: #f9f9f9;
}
#news .news_sec .news_dl time {
  margin-right: 10px;
}
#news .news_sec .news_dl .new_icon {
  background: #f03c46;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  padding: 3px 15px;
}
@media only screen and (max-width: 767px) {
  #news .news_sec .news_dl a {
    padding: 15px 0px;
  }
}

body#news_detail .news_sec .news_ttl {
  padding-bottom: 18px;
  border-bottom: 4px solid #0cad2e;
  margin-bottom: 40px;
}
body#news_detail .news_sec .news_ttl .sub_dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
body#news_detail .news_sec .news_ttl .sub_dl > dt {
  width: 100px;
}
body#news_detail .news_sec .news_ttl .sub_dl > dd {
  width: calc(100% - 100px);
}
body#news_detail .news_sec .news_ttl .sub_dl > dd .new_icon {
  background: #f03c46;
  font-size: 14px;
  line-height: 1.1;
  color: #fff;
  padding: 3px 15px;
  display: inline-block;
}
body#news_detail .news_sec .news_ttl h2 {
  font-size: 32px;
  font-weight: bold;
}
body#news_detail .news_sec .news_ttl .tag {
  margin-top: 25px;
  letter-spacing: -0.5em;
  font-size: 14px;
}
body#news_detail .news_sec .news_ttl .tag > li {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 10px;
}
body#news_detail .news_sec .news_ttl .tag > li a {
  display: block;
  background: #e5e5e5;
  padding: 2px 15px;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  body#news_detail .news_sec .news_ttl {
    border-bottom-width: 2px;
  }
  body#news_detail .news_sec .news_ttl h2 {
    font-size: 19px;
  }
  body#news_detail .news_sec .news_ttl .tag {
    margin-top: 15px;
  }
  body#news_detail .news_sec .news_ttl .sub_dl > dt {
    top: 2px;
  }
}

.news_content a {
  color: blue;
  text-decoration: underline;
}
.news_content a:hover {
  text-decoration: none;
}

body#news_detail .news_sec .news_content h1,
body#news_detail .news_sec .news_content h2 {
  font-size: 32px;
  font-weight: bold;
  background: #deef68;
  padding: 15px 15px;
  line-height: 1.3;
  margin: 40px 0 15px;
}
body#news_detail .news_sec .news_content h3 {
  font-size: 26px;
  color: #0cad2e;
  padding-bottom: 15px;
  font-weight: bold;
  border-bottom: 2px solid #0cad2e;
  margin: 25px 0 15px;
}
body#news_detail .news_sec .news_content h4 {
  font-size: 22px;
  color: #0cad2e;
  font-weight: bold;
  margin-bottom: 10px;
}
body#news_detail .news_sec .news_content h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
body#news_detail .news_sec .news_content h6 {
  font-weight: bold;
}
body#news_detail .news_sec .news_content p {
  margin-bottom: 10px;
}
body#news_detail .news_sec .news_content ul,
body#news_detail .news_sec .news_content ol {
  display: block;
  margin-left: 1.5em;
  list-style-position: outside;
  list-style-type: decimal;
}
body#news_detail .news_sec .news_content ul li,
body#news_detail .news_sec .news_content ol li {
  display: list-item;
  list-style-type: inherit;
}
@media only screen and (max-width: 767px) {
  body#news_detail .news_sec .news_content h1,
  body#news_detail .news_sec .news_content h2 {
    font-size: 24px;
  }
  body#news_detail .news_sec .news_content h3 {
    font-size: 23px;
  }
  body#news_detail .news_sec .news_content h4 {
    font-size: 18px;
  }
  body#news_detail .news_sec .news_content h5 {
    font-size: 16px;
  }
}

.simulation_ttl {
  background: #ffffdd;
  text-align: center;
}
.simulation_ttl .under_wrap {
  position: relative;
  padding: 70px 15px;
  max-width: 1530px;
}
.simulation_ttl .under_wrap > div {
  position: relative;
  z-index: 9;
}
.simulation_ttl h3 {
  font-size: 26px;
  color: #ffa31e;
  font-weight: bold;
  line-height: 1.2;
}
.simulation_ttl h3 > span {
  padding: 0 20px;
  position: relative;
  display: inline-block;
}
.simulation_ttl h3 > span::before, .simulation_ttl h3 > span::after {
  content: "";
  display: block;
  width: 2px;
  background: #ffa31e;
  height: 100%;
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  transform: rotate(-18deg);
}
.simulation_ttl h3 > span::after {
  left: auto;
  right: 0;
  transform: rotate(18deg);
}
.simulation_ttl h4 {
  font-size: 46px;
  color: #00a831;
  font-weight: bold;
  margin-bottom: 40px;
}
.simulation_ttl h4 + p {
  font-size: 20px;
  font-weight: bold;
}
.simulation_ttl .bg_txt {
  max-width: 554px;
  margin: 0 auto;
  background: #ffea01;
  text-align: center;
  border-radius: 17px;
  font-weight: bold;
  font-size: 22px;
}
.simulation_ttl .expensive1 {
  position: absolute;
  width: 27.04%;
  bottom: -15px;
  right: 0;
}
@media screen and (max-width: 1600px) {
  .simulation_ttl .expensive1 {
    max-width: 220px;
  }
}
@media only screen and (max-width: 1260px) {
  .simulation_ttl h4 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 10px;
  }
  .simulation_ttl h4 + p {
    text-align: center;
    font-size: 15px;
    width: auto;
  }
  .simulation_ttl .expensive1 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .simulation_ttl .under_wrap {
    padding: 20px 15px;
  }
  .simulation_ttl h3 {
    font-size: 18px;
  }
  .simulation_ttl .bg_txt {
    font-size: 16px;
  }
}

.simulation_sec h3 {
  text-align: center;
  font-size: 26px;
  color: #00a831;
  font-weight: bold;
  margin-bottom: 25px;
}
.simulation_sec h3 > span {
  display: inline-block;
  padding: 0 30px;
  position: relative;
}
.simulation_sec h3 > span::before, .simulation_sec h3 > span::after {
  content: "";
  display: block;
  width: 2px;
  background: #00a831;
  height: 100%;
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  transform: rotate(-18deg);
}
.simulation_sec h3 > span::after {
  left: auto;
  right: 0;
  transform: rotate(18deg);
}
.simulation_sec .simulation_form {
  border: 2px solid #000000;
  position: relative;
}
.simulation_sec .simulation_form .simulation_form_img > li {
  position: absolute;
}
.simulation_sec .simulation_form .simulation_form_img > li:nth-child(1) {
  left: 35px;
  bottom: -21px;
  width: 14.07%;
}
.simulation_sec .simulation_form .simulation_form_img > li:nth-child(2) {
  width: 18.125%;
  right: 5px;
  bottom: -27px;
}
.simulation_sec .simulation_form_ttl {
  background: #ffea01;
  padding: 15px 15px;
  text-align: center;
  position: relative;
}
.simulation_sec .simulation_form_ttl h4 {
  font-size: 32px;
  font-weight: bold;
}
.simulation_sec .simulation_form_body {
  padding: 50px 60px;
}
.simulation_sec .simulation_form_dl dl {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.simulation_sec .simulation_form_dl dl:last-child {
  margin-bottom: 0;
}
.simulation_sec .simulation_form_dl dl dt {
  width: 170px;
  background: #00a831;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.simulation_sec .simulation_form_dl dl dd {
  width: calc(100% - 180px);
  margin-bottom: 0;
}
.simulation_sec .simulation_form_dl dl dd select,
.simulation_sec .simulation_form_dl dl dd select:invalid,
.simulation_sec .simulation_form_dl dl dd option:first-child {
  color: #333333;
}
.simulation_sec .simulation_form_dl dl dd .form_block__select {
  width: 100%;
}
.simulation_sec .simulation_form_dl dl dd .form_block__select::before {
  display: none;
}
.simulation_sec .simulation_form_dl dl dd .form_block__select select {
  border-radius: 0;
  border-color: #ddd;
  background: #fff386;
}
.simulation_sec .simulation_form_dl dl.year dd .form_block__select, .simulation_sec .simulation_form_dl dl.distance dd .form_block__select {
  max-width: 330px;
}
.simulation_sec .privacy_link a {
  text-decoration: underline;
}
.simulation_sec .privacy_link a:hover {
  text-decoration: none;
}
.simulation_sec .form_btn {
  max-width: 760px;
  margin: 0 auto;
}
.simulation_sec .form_btn > button {
  width: 100%;
  outline: 0;
  display: block;
  background: #ed3c46;
  padding: 25px 10px;
  border: 0;
  appearance: none;
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  border-radius: 45px;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}
.simulation_sec .form_btn > button::before {
  content: "";
  display: block;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 15px;
  height: 15px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.simulation_sec .form_btn > button:hover {
  transform: translateY(3px);
  opacity: 0.7;
  filter: drop-shadow(0px 0px 0px #b21625);
}
@media only screen and (max-width: 1260px) {
  .simulation_sec .simulation_form_ttl h4 {
    font-size: 3.5vw;
  }
  .simulation_sec .simulation_form .simulation_form_img > li:nth-child(1) {
    left: 0;
  }
  .simulation_sec .simulation_form_body {
    padding: 25px;
  }
  .simulation_sec .form_btn > button:before {
    right: 30px;
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .simulation_sec h3 {
    font-size: 16px;
  }
  .simulation_sec h3 > span {
    padding: 0 15px;
  }
  .simulation_sec .simulation_form .simulation_form_img > li:first-child {
    bottom: -12%;
  }
  .simulation_sec .simulation_form .simulation_form_img > li:nth-child(2) {
    bottom: -15%;
  }
  .simulation_sec .form_btn > button {
    font-size: 16px;
    padding: 15px 10px;
  }
  .simulation_sec .simulation_form_dl dl {
    display: block;
  }
  .simulation_sec .simulation_form_dl dl dt {
    width: auto;
    margin-bottom: 10px;
    padding: 10px 15px;
    text-align: left;
    font-size: 15px;
    display: block;
  }
  .simulation_sec .simulation_form_dl dl dd {
    width: auto;
  }
}

#simulator_result h2.ttl,
#simulator h2.ttl {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
#simulator_result h2.ttl > span,
#simulator h2.ttl > span {
  font-size: 42px;
  font-weight: bold;
  display: inline-block;
  border-bottom: 8px solid #0cad2e;
}
@media only screen and (max-width: 767px) {
  #simulator_result h2.ttl,
  #simulator h2.ttl {
    margin-bottom: 30px;
  }
  #simulator_result h2.ttl > span,
  #simulator h2.ttl > span {
    font-size: 21px;
    border-bottom-width: 5px;
  }
}

#simulator .simulator_kv {
  background: url("../images/simulation/kv_bg.png") no-repeat center top/cover;
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv {
    background: url("../images/simulation/kv_bg_sp.png") no-repeat center top/cover;
  }
}
#simulator .simulator_kv .under_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
#simulator .simulator_kv .simulator_kv_ttl {
  width: 100%;
  font-weight: bold;
  font-size: clamp(20px, 3.8vw, 48px);
  color: #333;
  margin: 20px 0 0;
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv .simulator_kv_ttl {
    text-align: center;
    margin: 10px 0;
  }
}
#simulator .simulator_kv .txt_area {
  width: 60%;
  position: relative;
}
#simulator .simulator_kv .txt_area::before {
  content: "";
  position: absolute;
  margin: auto;
  background: url("../images/simulation/simulator_kv_car.png") no-repeat center center/contain;
  max-width: 335px;
  max-height: 161px;
  right: -160px;
  top: -50px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media only screen and (max-width: 960px) {
  #simulator .simulator_kv .txt_area::before {
    max-width: 235px;
    max-height: 121px;
    right: -130px;
    top: -30px;
  }
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv .txt_area::before {
    right: -20px;
    top: 0;
    max-width: min(55%, 144px);
    max-height: min(55%, 69px);
  }
}
#simulator .simulator_kv figure {
  width: 30%;
  margin-top: -67px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv figure {
    width: 40%;
    margin: 0 -10px 0 0;
    max-width: 180px;
  }
}
#simulator .simulator_kv ul.check_list {
  display: flex;
  gap: 19px;
  align-items: center;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv ul.check_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin: 0 0 25px;
  }
}
#simulator .simulator_kv ul.check_list li {
  background: #005318;
  border-radius: 21px;
  color: #fff;
  text-align: center;
  padding: 5px 1.5em 5px 2.5em;
  position: relative;
  font-weight: bold;
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv ul.check_list li {
    font-size: clamp(10px, 3vw, 14px);
    padding: 2px 1.5em 2px 2.5em;
  }
}
@media (max-width: 400px) {
  #simulator .simulator_kv ul.check_list li {
    font-size: min(9px, 3.2vw);
  }
}
#simulator .simulator_kv ul.check_list li::before {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  inset: 0 auto 0 1em;
  width: 1em;
  height: 1em;
  background: url("../images/simulation/simulator_kv_check.png") no-repeat center center/contain;
}
#simulator .simulator_kv ul.check_list li span {
  color: #ffea01;
}
#simulator .simulator_kv ul.icon_list {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px;
}
#simulator .simulator_kv ul.icon_list li {
  background: #fff;
  border-radius: 13px;
  padding: 10px 20px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  font-size: clamp(14px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  line-height: 1;
  width: 31%;
  white-space: nowrap;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv ul.icon_list li {
    font-size: clamp(10px, 3vw, 14px);
    padding: 5px;
    border-radius: 5px;
    width: 32%;
  }
}
@media (max-width: 400px) {
  #simulator .simulator_kv ul.icon_list li {
    font-size: min(9px, 3.2vw);
  }
}
@media only screen and (max-width: 767px) {
  #simulator .simulator_kv ul.icon_list li img {
    max-width: 35px;
  }
}

.utilization_sec {
  background: #e3f5e9;
  padding: 70px 0;
}
.utilization_sec .checklist_block {
  padding: 50px 120px;
  background: #fff url("../images/simulation/simulation3.png") no-repeat right bottom;
}
.utilization_sec .checklist {
  font-size: 24px;
  font-weight: bold;
}
.utilization_sec .checklist > li {
  margin-bottom: 17px;
  padding-left: 50px;
  position: relative;
}
.utilization_sec .checklist > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  width: 28px;
  height: 28px;
  background: url("../images/expensive/check.svg") no-repeat center center;
  background-size: contain;
}
.utilization_sec .checklist > li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1260px) {
  .utilization_sec {
    padding: 40px 0;
  }
  .utilization_sec .checklist_block {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .utilization_sec .checklist_block {
    padding: 25px 25px;
    background-size: 90px;
  }
  .utilization_sec .checklist {
    font-size: 16px;
  }
  .utilization_sec .checklist > li {
    padding-left: 35px;
  }
  .utilization_sec .checklist > li:last-child {
    width: calc(100% - 80px);
  }
  .utilization_sec .checklist > li::before {
    width: 23px;
    height: 23px;
  }
}

#simulator .l__go_satei p {
  max-width: 600px;
  margin: 0 auto;
}

#simulator .way_sec {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  #simulator .way_sec {
    padding: 50px 0;
  }
}
#simulator .way_sec .way {
  margin-bottom: 50px;
}
#simulator .way_sec .way_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  #simulator .way_sec .way_inner {
    grid-template-columns: 1fr;
    gap: 3vw;
  }
}
#simulator .way_sec .way_inner .notebook {
  background: url(../images/way_block.png) no-repeat center top/cover;
  padding: 30px 0 0 20px;
  font-weight: normal;
  margin: 0 auto 10px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #simulator .way_sec .way_inner .notebook {
    padding: 35px 0 0 4vw;
  }
}
#simulator .way_sec .way_inner .notebook .txt_area {
  margin-bottom: 20px;
  width: 55%;
}
#simulator .way_sec .way_inner .notebook .txt_area figure {
  margin-bottom: 5px;
  width: 100%;
}
#simulator .way_sec .way_inner .notebook .txt_area p {
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #simulator .way_sec .way_inner .notebook .txt_area p {
    font-size: min(4vw, 24px);
  }
}
#simulator .way_sec .way_inner .notebook .txt_area p .txt_red {
  color: #dc0000;
}
#simulator .way_sec .way_inner .notebook figure {
  width: 45%;
}
#simulator .way_sec .way_inner .notebook figure img {
  max-width: 100%;
  width: 100%;
  height: 100%;
}
#simulator .way_sec .comment {
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: 0;
}
#simulator .way_sec .comment .txt_red {
  color: #dc0000;
}

#simulator .sec_reason {
  padding: 50px 0;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
#simulator .sec_reason .reason_ttl {
  display: flex;
  position: relative;
  align-items: center;
  padding-bottom: 15px;
  gap: 20px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .reason_ttl {
    width: auto;
    gap: 5px;
    margin: 0 6vw 30px;
    justify-content: center;
  }
}
#simulator .sec_reason .reason_ttl::before, #simulator .sec_reason .reason_ttl::after {
  position: absolute;
  content: "";
  margin: auto;
}
#simulator .sec_reason .reason_ttl::before {
  background: #01a832;
  height: 4px;
  left: 0;
  bottom: 0;
  inset: auto 0 0 0;
}
#simulator .sec_reason .reason_ttl::after {
  width: 26px;
  height: 14px;
  background-color: #01a832;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
}
#simulator .sec_reason .reason_ttl .total_medal {
  aspect-ratio: 1/1;
  color: #000;
  width: 200px;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .reason_ttl .total_medal {
    min-width: 130px;
    width: 33.3vw;
    max-width: 130px;
  }
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .reason_ttl > div {
    width: calc(100% - 370px);
  }
}
#simulator .sec_reason .reason_ttl h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .reason_ttl h2 {
    width: 44.4vw;
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #simulator .sec_reason .reason_ttl h2 {
    font-size: min(28px, 5.5vw);
  }
}
#simulator .sec_reason .reason_ttl h2 span {
  color: #fff;
  font-size: 36px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .reason_ttl h2 span {
    font-size: min(36px, 7.5vw);
  }
}
@media (max-width: 374px) {
  #simulator .sec_reason .reason_ttl h2 span {
    font-size: min(28px, 6vw);
  }
}
#simulator .sec_reason .reason_ttl h2 span::after {
  position: absolute;
  content: "";
  background: #01a832;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
#simulator .sec_reason .reason_catch_wrap {
  display: flex;
  justify-content: center;
  width: 88%;
  margin: 0 auto;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .reason_catch_wrap {
    display: none;
  }
}
#simulator .sec_reason .reason_catch_wrap figure {
  width: 28.4vw;
  height: 34.3vw;
  max-width: 111px;
  max-height: 134px;
  margin-bottom: -10px;
}
#simulator .sec_reason .reason_catch {
  padding-top: 30px;
  position: relative;
  font-size: clamp(16px, 1.8vw, 22px);
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .reason_catch {
    font-size: min(16px, 4vw);
    padding: 0;
  }
}
@media (max-width: 374px) {
  #simulator .sec_reason .reason_catch {
    font-size: min(16px, 3.5vw);
  }
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .reason_catch::before {
    position: absolute;
    content: "";
    background: url(../images/index/check_man.webp) no-repeat bottom right/contain;
    width: 150px;
    height: 180px;
    right: -150px;
    bottom: 0;
  }
}
#simulator .sec_reason .grid-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 900px;
  justify-content: center;
}
#simulator .sec_reason .grid-container .reason_item {
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
}
#simulator .sec_reason .grid-container .reason_item.reason01 {
  background: #fff url(../images/index/reason01.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item.reason01 {
    background: #fff url(../images/index/reason01.png) no-repeat top 10px right 6%/120px;
  }
}
#simulator .sec_reason .grid-container .reason_item.reason02 {
  background: #fff url(../images/index/reason02.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item.reason02 {
    background: #fff url(../images/index/reason02.png) no-repeat top 10px right 6%/120px;
  }
}
#simulator .sec_reason .grid-container .reason_item.reason03 {
  background: #fff url(../images/index/reason03.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item.reason03 {
    background: #fff url(../images/index/reason03.png) no-repeat top 10px right 6%/120px;
  }
}
#simulator .sec_reason .grid-container .reason_item.reason04 {
  background: #fff url(../images/index/reason04.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item.reason04 {
    background: #fff url(../images/index/reason04.png) no-repeat top 30px right 7%/120px;
  }
}
#simulator .sec_reason .grid-container .reason_item .label {
  background: #01a832;
  border-radius: 0 50px 50px 0;
  width: 92px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .grid-container .reason_item .label {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 37px;
  }
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item .label {
    width: 15%;
  }
}
#simulator .sec_reason .grid-container .reason_item .label strong {
  font-weight: bold;
  color: #fff153;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 185%;
}
#simulator .sec_reason .grid-container .reason_item .reason_item_ttl {
  font-size: clamp(18px, 2vw, 22px);
  margin: 63px 10px 20px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item .reason_item_ttl {
    width: 70%;
    margin: 20px 0;
    min-height: 130px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 15% 0 0;
  }
}
#simulator .sec_reason .grid-container .reason_item .reason_item_ttl strong {
  font-weight: bold;
  font-size: 122%;
}
#simulator .sec_reason .grid-container .reason_item .reason_item_txt {
  display: none;
  color: #333;
  margin: 0 10px 10px;
  letter-spacing: 0.04em;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_reason .grid-container .reason_item .reason_item_txt {
    font-size: 14px;
    width: auto;
    text-align: left;
  }
}
#simulator .sec_reason .grid-container .reason_item .reason_item_txt img {
  display: block;
  margin: 10px auto;
}
#simulator .sec_reason .grid-container .reason_item .reason_item_txt p + p {
  margin-top: 1em;
}
#simulator .sec_reason .grid-container .reason_item .reason_button {
  border-radius: 0 0 10px 10px;
  background: #d9f2e0;
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_reason .grid-container .reason_item .reason_button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#simulator .sec_reason .grid-container .reason_item .reason_button::before {
  position: absolute;
  content: "";
  border-right: 2px solid #01a832;
  border-bottom: 2px solid #01a832;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin: auto;
  inset: 0 0 5px 0;
}
#simulator .sec_reason .grid-container .reason_item .reason_button.active::before {
  transform: rotate(-135deg);
  inset: 0 0 -10px 0;
}
#simulator .sec_step {
  padding: 50px 0;
}
#simulator .sec_step > .under_wrap {
  max-width: 1720px;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .index_ttl .index_ttl_sub {
    font-size: min(28px, 6.5vw);
  }
}
#simulator .sec_step .step_items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_items {
    flex-direction: column;
    gap: 15px;
  }
}
#simulator .sec_step .step_items::after {
  position: absolute;
  content: "";
  background: #deef68;
  width: 20px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_step .step_items::after {
    width: 90%;
    height: 30px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 960px) {
  #simulator .sec_step .step_items::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_items::after {
    display: block;
  }
}
#simulator .sec_step .step_item {
  background: #d9f2e0;
  padding: 15px;
  display: flex;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_step .step_item {
    flex-direction: column;
    align-items: center;
    width: calc(20% - 20px);
    padding: 20px 10px;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 960px) {
  #simulator .sec_step .step_item {
    width: calc(50% - 20px);
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_item {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #simulator .sec_step .step_item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: #deef68;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_item:nth-child(odd)::before {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #simulator .sec_step .step_item:nth-child(3)::before {
    left: -10%;
    width: 110vw;
  }
}
@media only screen and (max-width: 960px) {
  #simulator .sec_step .step_item:nth-child(5)::before {
    left: -30%;
    width: 30vw;
  }
}
#simulator .sec_step .step_item figure {
  width: 65px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_step .step_item figure {
    height: 100px;
    width: 100%;
    text-align: center;
  }
}
#simulator .sec_step .step_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_item .txtarea {
    width: calc(100% - 80px);
  }
}
#simulator .sec_step .step_item h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #simulator .sec_step .step_item h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_item h3 {
    font-size: min(22px, 4.5vw);
  }
}
#simulator .sec_step .step_item h3 span {
  background: #ffea01;
  border-radius: 20px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 0 10px;
  font-weight: 600;
}
#simulator .sec_step .step_item p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  #simulator .sec_step .step_item p {
    font-size: min(16px, 3.7vw);
  }
}

#simulator_result .c_pageTitle {
  background: #ffea01;
  margin-bottom: 25px;
  color: #000000;
}
#simulator_result #column #contact .assessment .radio_box {
  margin-bottom: 0;
}
#simulator_result #column #contact .assessment .radio_box > h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#simulator_result #column #contact .assessment .radio_box > h2 > .f-required {
  white-space: nowrap;
}
#simulator_result #column #contact .assessment .radio_box2 {
  text-align: center;
  padding: 20px 0 10px;
  border-bottom: 1px solid red;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #simulator_result #column #contact .assessment .radio_box2 {
    text-align: left;
  }
}
#simulator_result #column #contact .assessment .radio_box2 > h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#simulator_result #column #contact .assessment .radio_box2 .f-required {
  font-size: 12px;
  padding: 3px 5px;
  margin: 0 0 0 5px;
  margin-left: 5px;
  line-height: 1.9;
  margin-left: 10px;
  white-space: nowrap;
}
#simulator_result #column #contact .assessment .radio_box2 p.formError {
  font-size: 20px;
  font-weight: bold;
}
#simulator_result #column #contact .assessment .radio_box2 ul.radio_list {
  width: 100%;
}
#simulator_result #column #contact .assessment ul.radio_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 500px;
  margin: 0 auto;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #simulator_result #column #contact .assessment ul.radio_list {
    width: auto;
    min-width: inherit;
  }
}
#simulator_result #column #contact .assessment ul.radio_list li {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #simulator_result #column #contact .assessment ul.radio_list li {
    width: 50%;
  }
}
#simulator_result #column #contact .assessment ul.radio_list label {
  display: block;
  width: 100%;
  background-color: #eaeaea;
  border: 1px solid #ccc;
  border-bottom: 2px solid #aaa;
  border-radius: 4px;
  line-height: 1;
  padding: 20px 12px;
  cursor: pointer;
}
#simulator_result #column #contact .assessment ul.radio_list label span {
  margin-bottom: 0;
}
#simulator_result #column #contact .assessment ul.radio_list label span:before, #simulator_result #column #contact .assessment ul.radio_list label span:after {
  top: 0 !important;
  bottom: 0 !important;
}
#simulator_result #column #contact .assessment ul.radio_list label:hover {
  background-color: #369251;
  color: #fff;
}
#simulator_result #column #contact .assessment .step_form_2 .form_block {
  display: block;
}
#simulator_result #column #contact .assessment .step_form_2 .form_block dt {
  width: auto;
}
#simulator_result #column #contact .assessment .step_form_2 .form_block dd {
  width: auto;
}
#simulator_result #column #contact .assessment .model-title-close-ctn .step-title {
  display: none;
}
#simulator_result .success_message,
#simulator_result .error_message {
  font-weight: bold;
  font-size: 20px;
}
#simulator_result .success_message h3,
#simulator_result .error_message h3 {
  font-size: 40px;
  font-weight: bold;
  color: #00a831;
}
#simulator_result .success_message {
  font-size: 14px;
  font-weight: normal;
}
#simulator_result .success_message h4 {
  font-size: 48px;
  font-weight: bold;
}
#simulator_result .success_message .success_message_color1 {
  color: #ff0000;
}
#simulator_result .success_message .success_message_color2 {
  color: #4285f4;
}
#simulator_result .success_message h5 {
  color: #000000;
  font-size: 24px;
  font-weight: bold;
}
#simulator_result .success_arrow {
  background: #ff0000;
  padding: 30px 15px 60px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  clip-path: polygon(50% 0, 100% 0, 100% 41%, 50% 100%, 0 41%, 0 0);
}
#simulator_result .success_txt {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #simulator_result .success_txt {
    font-size: 22px;
  }
}
#simulator_result .success_txt span {
  color: #ff0000;
}
#simulator_result .success_btn {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
@media only screen and (max-width: 767px) {
  #simulator_result .success_btn {
    gap: 0 2vw;
  }
}
#simulator_result .success_btn img {
  width: 490px;
}
@media only screen and (max-width: 767px) {
  #simulator_result .error_message {
    font-size: 15px;
  }
  #simulator_result .success_message h3,
  #simulator_result .error_message h3 {
    font-size: 20px;
  }
  #simulator_result .success_message h4 {
    font-size: 40px;
  }
  #simulator_result .result_detail_sec + .indent {
    font-size: 13px;
  }
  #simulator_result .success_arrow {
    font-size: 14px;
    padding: 15px 15px 25px;
    clip-path: polygon(50% 0, 100% 0, 100% 78%, 50% 100%, 0 79%, 0 0);
  }
}

@media only screen and (max-width: 767px) {
  #simulator .c_pageTitle,
  #simulator_result .c_pageTitle {
    padding: 30px 10px;
  }
}
.inputted_sec {
  padding: 80px 0;
  background: #e3f5e9;
}
.inputted_sec .inputted_block {
  border: 2px solid #000000;
  position: relative;
  background: #fff;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
.inputted_sec .inputted_block h2.inputted_block_ttl {
  background: #ffea01;
  padding: 10px 10px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}
.inputted_sec .inputted_block .inputted_block_body {
  padding: 30px 60px;
}
.inputted_sec .inputted_block_body .inputted_block_dl dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
.inputted_sec .inputted_block_body .inputted_block_dl dl:last-child {
  margin-bottom: 0;
}
.inputted_sec .inputted_block_body .inputted_block_dl dl dt {
  width: 170px;
  background: #00a831;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px;
}
.inputted_sec .inputted_block_body .inputted_block_dl dl dd {
  width: calc(100% - 200px);
  margin-bottom: 0;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .inputted_sec {
    padding: 40px 0;
  }
  .inputted_sec .inputted_block h2.inputted_block_ttl {
    font-size: 17px;
  }
  .inputted_sec .inputted_block .inputted_block_body {
    padding: 30px 15px;
  }
  .inputted_sec .inputted_block_body .inputted_block_dl dl {
    display: block;
  }
  .inputted_sec .inputted_block_body .inputted_block_dl dl dt {
    width: auto;
    font-size: 15px;
    text-align: left;
    margin-bottom: 10px;
  }
  .inputted_sec .inputted_block_body .inputted_block_dl dl dd {
    width: auto;
    font-size: 14px;
  }
}

.result_detail_sec {
  padding: 30px 15px 0;
}
.result_detail_sec.bg {
  background: #ffffdd;
}
.result_detail_sec .line_box > p {
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: 0.025em;
  font-weight: bold;
  margin: 15px 0;
}
.result_detail_sec h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
.result_detail_sec h2 > span {
  display: inline-block;
  padding: 0 60px;
  position: relative;
}
.result_detail_sec h2 > span::before, .result_detail_sec h2 > span::after {
  content: "";
  display: block;
  width: 25px;
  height: 36px;
  background: url("../images/simulation/detail_l.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.result_detail_sec h2 > span::after {
  background: url("../images/simulation/detail_r.svg") no-repeat center center;
  background-size: contain;
  left: auto;
  right: 0;
}
.result_detail_sec .detail_block {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.result_detail_sec .detail_block > div:nth-child(1) {
  width: 30.55%;
}
.result_detail_sec .detail_block > div:nth-child(2) {
  width: 65.46%;
  margin-bottom: 20px;
}
.result_detail_sec .detail_block h3 {
  font-size: 18px;
  text-align: center;
  background: #ffea01;
  padding: 5px 15px;
  border-radius: 17px;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
}
.result_detail_sec .detail_block h3::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: #ffea01 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
@media only screen and (max-width: 767px) {
  .result_detail_sec h2 {
    font-size: 20px;
  }
  .result_detail_sec h2 > span {
    padding: 0 45px;
  }
  .result_detail_sec .detail_block h3 {
    font-size: 13px;
  }
  .result_detail_sec .detail_block > div:nth-child(2) {
    margin-bottom: 10px;
  }
}

.wp-pagenavi .pages {
  display: none !important;
}

._pagenav {
  text-align: center;
  padding: 5px 0;
}
._pagenav .wp-pagenavi {
  position: relative;
  display: inline-block;
}
._pagenav .wp-pagenavi a {
  transition: background 0.5s ease-in-out, opacity 0.6s ease-in-out, color 0.6s ease-in-out;
}
._pagenav .wp-pagenavi a,
._pagenav .wp-pagenavi span {
  padding: 0px 5px;
  width: 40px;
  line-height: 40px;
  text-decoration: none;
  border-radius: 50%;
  font-weight: normal !important;
  font-family: "Lato", sans-serif;
  background: #efefef;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  display: inline-block;
  margin: 0 5px 10px;
  margin-bottom: 10px;
  opacity: 1;
  vertical-align: top;
  font-size: 20px;
}
._pagenav .wp-pagenavi a:hover {
  background: #ffa31e;
  color: #fff;
}
._pagenav .wp-pagenavi span.current {
  font-weight: bold;
}
._pagenav .wp-pagenavi .nextpostslink,
._pagenav .wp-pagenavi .previouspostslink {
  width: 40px;
  height: 40px;
  position: relative;
  text-indent: -9999em;
  background: #ffa31e;
}
._pagenav .wp-pagenavi span.extend {
  background: none;
  color: #333;
  border: 0;
  margin: 0;
  width: 34px;
}
._pagenav .wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transition: border 0.5s ease-in-out;
}
._pagenav .wp-pagenavi .previouspostslink::before {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(-135deg);
  transition: border 0.5s ease-in-out;
}
._pagenav .wp-pagenavi .nextpostslink:hover::before,
._pagenav .wp-pagenavi .previouspostslink:hover::before {
  border-color: #fff;
}
._pagenav .wp-pagenavi span.current {
  background: #ffa31e;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  ._pagenav .wp-pagenavi a,
  ._pagenav .wp-pagenavi span {
    margin: 0 5px 5px;
    width: 30px;
    line-height: 28px;
    font-size: 15px;
  }
  ._pagenav .wp-pagenavi span.extend {
    width: 20px;
  }
  ._pagenav .wp-pagenavi .nextpostslink,
  ._pagenav .wp-pagenavi .previouspostslink {
    width: 30px;
    height: 28px;
  }
  ._pagenav .wp-pagenavi .previouspostslink::before {
    width: 5px;
    height: 5px;
    border-width: 1px;
    left: 13px;
    top: 11px;
  }
  ._pagenav .wp-pagenavi .nextpostslink::before {
    width: 5px;
    height: 5px;
    border-width: 1px;
    right: 13px;
    top: 11px;
  }
}
@media only screen and (max-width: 500px) {
  ._pagenav .wp-pagenavi a,
  ._pagenav .wp-pagenavi span {
    margin: 0 2px 5px;
  }
  ._pagenav .wp-pagenavi span.extend {
    padding: 0;
    width: 16px;
  }
}

body#purchase ._pagenav .wp-pagenavi .nextpostslink, body#purchase ._pagenav .wp-pagenavi .previouspostslink,
body#purchase ._pagenav .wp-pagenavi span.current,
body#purchase ._pagenav .wp-pagenavi a:hover,
body#column ._pagenav .wp-pagenavi .nextpostslink,
body#column ._pagenav .wp-pagenavi .previouspostslink,
body#column ._pagenav .wp-pagenavi span.current,
body#column ._pagenav .wp-pagenavi a:hover,
body#news ._pagenav .wp-pagenavi .nextpostslink,
body#news ._pagenav .wp-pagenavi .previouspostslink,
body#news ._pagenav .wp-pagenavi span.current,
body#news ._pagenav .wp-pagenavi a:hover {
  background: #0cad2e;
}

.wp-pagenavi .first,
.wp-pagenavi .last {
  width: 40px;
  height: 40px;
  position: relative;
  text-indent: -9999em;
  background: #ffa31e !important;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .first,
  .wp-pagenavi .last {
    width: 30px;
    height: 28px;
  }
}
.wp-pagenavi .first::before, .wp-pagenavi .first::after,
.wp-pagenavi .last::before,
.wp-pagenavi .last::after {
  content: "";
  display: block;
  position: absolute;
  right: 12px;
  top: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  transition: border 0.5s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .first::before, .wp-pagenavi .first::after,
  .wp-pagenavi .last::before,
  .wp-pagenavi .last::after {
    width: 5px;
    height: 5px;
    border-width: 1px;
    right: 8px;
    top: 11px;
  }
}
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  right: 18px;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: 14px;
  }
}
.wp-pagenavi .last::before, .wp-pagenavi .last::after {
  right: 14px;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .last::before, .wp-pagenavi .last::after {
    right: 10px;
  }
}
.wp-pagenavi .last::after {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .wp-pagenavi .last::after {
    right: 16px;
  }
}
.wp-pagenavi .first::before, .wp-pagenavi .first::after {
  transform: rotate(-135deg);
}

body#purchase .wp-pagenavi .first,
body#purchase .wp-pagenavi .last,
body#column .wp-pagenavi .first,
body#column .wp-pagenavi .last,
body#news .wp-pagenavi .first,
body#news .wp-pagenavi .last {
  background: #0cad2e !important;
}

main .author_ttl {
  background: #0cad2e;
  color: #fff;
  font-size: 30px;
  padding: 15px 0;
  margin-bottom: 30px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  main .author_ttl {
    font-size: 20px;
  }
}
main .sec_author_list {
  margin-bottom: 100px;
}
main .sec_author_list ul {
  display: flex;
  gap: 0 2%;
}
main .sec_author_list ul li {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  main .sec_author_list ul li {
    width: 49%;
  }
}
main .sec_author_list ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .sec_author_list ul li h2 {
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
  text-align: center;
}
main .sec_author_list ul li .img {
  display: block;
  max-width: 230px;
}
@media only screen and (max-width: 767px) {
  main .sec_author_list ul li .img {
    width: 100%;
  }
}
main .sec_author_list ul li .img img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 100%;
}
main .sec_author {
  margin-bottom: 100px;
}
main .sec_author ul li {
  border: 1px solid #cccccc;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  main .sec_author ul li {
    flex-direction: column-reverse;
    padding: 20px 4%;
  }
}
main .sec_author ul li .txt {
  width: calc(100% - 280px);
}
@media only screen and (max-width: 767px) {
  main .sec_author ul li .txt {
    width: 100%;
  }
}
main .sec_author ul li .txt h2 {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  main .sec_author ul li .txt h2 {
    font-size: 20px;
  }
}
main .sec_author ul li .txt h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  main .sec_author ul li .txt h3 {
    font-size: 20px;
  }
}
main .sec_author ul li .txt .gbtn {
  max-width: 400px;
  margin: 30px 0 0 0;
}
main .sec_author ul li .txt .gbtn a {
  padding: 15px 50px;
}
main .sec_author ul li .img {
  display: block;
  max-width: 230px;
}
@media only screen and (max-width: 767px) {
  main .sec_author ul li .img {
    width: 100%;
    margin: 30px auto;
  }
}
main .sec_author ul li .img img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 100%;
}
main .sec_author .author_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
main .sec_author .author_detail .author_ttl {
  width: 100%;
}
main .sec_author .author_detail h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #0cad2e;
  padding-left: 15px;
  border-left: 4px solid #0cad2e;
}
@media only screen and (max-width: 767px) {
  main .sec_author .author_detail h3 {
    font-size: 20px;
  }
}
main .sec_author .author_detail .conts {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  main .sec_author .author_detail .conts {
    width: 49%;
  }
}
main .sec_author .author_detail .conts img {
  max-height: 400px;
  width: auto;
  display: block;
  margin: 0 auto;
}
main .sec_author .author_detail table {
  width: 100%;
  border: 1px solid #9b9b9b;
  margin-top: 20px;
}
main .sec_author .author_detail table thead th {
  background: #9b9b9b;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 7px;
  text-align: center;
}
main .sec_author .author_detail table tbody th {
  background: #dddddd;
  text-align: center;
  padding: 7px;
  font-size: 16px;
  border-bottom: 1px solid #9b9b9b;
  width: 30%;
}
main .sec_author .author_detail table tbody td {
  padding: 7px;
  font-size: 16px;
  border-bottom: 1px solid #9b9b9b;
  width: 70%;
}
main .sec_author .author_detail .txt {
  width: 100%;
}
main .sec_author_article {
  margin-bottom: 100px;
}
main .sec_author_article ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 0;
}
main .sec_author_article ul li {
  width: 49%;
  background: #fff;
  border: 2px solid #000000;
  height: 100%;
  -webkit-box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  main .sec_author_article ul li {
    width: 100%;
  }
}
main .sec_author_article ul li a {
  padding: 20px;
  display: flex;
  gap: 0 20px;
}
@media only screen and (max-width: 767px) {
  main .sec_author_article ul li a {
    padding: 20px 4%;
  }
}
main .sec_author_article ul li .img {
  width: 30%;
  aspect-ratio: 15/10;
}
main .sec_author_article ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .sec_author_article ul li .slider_body {
  width: 70%;
}
main .sec_author_article ul li .slider_body h3 {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  main .sec_author_article ul li .slider_body h3 {
    font-size: 16px;
  }
}

#sdgs .c_pageTitle {
  display: none;
}
#sdgs img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
#sdgs .l-breadcrumb {
  display: none;
}
#sdgs .l-contents * {
  box-sizing: border-box;
}
#sdgs .c-serif {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#sdgs .c-inner {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  #sdgs .c-inner {
    max-width: 650px;
  }
}
#sdgs .p-mv {
  background: url(../images/sdgs/mv.jpg) center no-repeat;
  background-size: cover;
  height: 897px;
  display: flex;
  align-items: center;
  padding-bottom: 160px;
}
@media all and (max-width: 896px) {
  #sdgs .p-mv {
    height: auto;
    padding-bottom: 0;
  }
}
@media all and (max-width: 896px) {
  #sdgs .p-mv__title {
    padding: 150px 0;
  }
}
#sdgs .p-intro {
  max-width: 1562px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 80px 0;
  transform: translateY(-50%);
  position: relative;
  z-index: 1;
}
@media all and (max-width: 896px) {
  #sdgs .p-intro {
    transform: none;
    padding: 20px 0 50px;
  }
}
#sdgs .p-intro__flex {
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  #sdgs .p-intro__flex {
    flex-direction: column;
  }
}
#sdgs .p-intro__flex .logo {
  flex-shrink: 0;
}
@media all and (max-width: 896px) {
  #sdgs .p-intro__flex .logo {
    width: 120px;
  }
}
#sdgs .p-intro__flex .textarea p {
  font-size: 14px;
  line-height: 2.5;
}
@media all and (max-width: 896px) {
  #sdgs .p-intro__flex .textarea p {
    font-size: 12px;
  }
}
#sdgs .p-fig {
  text-align: center;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-fig {
    margin-bottom: 50px;
  }
  #sdgs .p-fig img {
    max-width: 80%;
  }
}
#sdgs .p-business {
  padding: 150px 0 100px;
  background: url(../images/sdgs/earth2.png) left 20% bottom no-repeat #f5f6f5;
  background-size: 250px auto;
}
@media all and (max-width: 896px) {
  #sdgs .p-business {
    padding: 100px 0 50px;
    background-position: left 20px bottom;
    background-size: 120px;
  }
}
#sdgs .p-business__title {
  text-align: center;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__title {
    margin-bottom: 50px;
  }
  #sdgs .p-business__title img {
    height: 100px;
  }
}
#sdgs .p-business__title2 {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__title2 {
    margin-left: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}
#sdgs .p-business__title2 img {
  flex-shrink: 0;
  margin-right: 10px;
  transform: translateY(3px);
}
@media all and (max-width: 896px) {
  #sdgs .p-business__title2 img {
    width: 20px;
  }
}
#sdgs .p-business__title2 .text {
  flex-shrink: 0;
  color: #22ac38;
  font-size: 53px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__title2 .text {
    font-size: 24px;
    line-height: 1.4;
    flex-shrink: unset;
    width: calc(100% - 30px);
  }
}
#sdgs .p-business__title2:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #22ac38;
  align-self: flex-end;
  margin-left: 50px;
  transform: translateY(-10px);
}
@media all and (max-width: 896px) {
  #sdgs .p-business__title2:after {
    margin-left: 20px;
    transform: none;
    margin-top: 10px;
  }
}
#sdgs .p-business__flex {
  display: flex;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__flex {
    flex-direction: column;
  }
}
#sdgs .p-business__flex .textarea p {
  font-size: 20px;
  line-height: 2;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__flex .textarea p {
    font-size: 16px;
  }
}
#sdgs .p-business__flex .image {
  flex-shrink: 0;
  width: 499px;
  text-align: right;
  margin-left: 20px;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__flex .image {
    width: auto;
    text-align: center;
    margin-left: 0;
    margin-top: 20px;
  }
}
#sdgs .p-business__flex + .p-business__title2 {
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__flex + .p-business__title2 {
    margin-top: 50px;
  }
}
#sdgs .p-business__scroll {
  margin-top: 50px;
  text-align: center;
}
@media all and (max-width: 896px) {
  #sdgs .p-business__scroll img {
    width: 60px;
  }
}
#sdgs .p-sdgs {
  padding: 150px 0 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-sdgs {
    padding: 50px 0;
  }
}
#sdgs .p-sdgs__title {
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-sdgs__title {
    margin-bottom: 30px;
  }
}
#sdgs .p-sdgs__fig {
  text-align: center;
}
#sdgs .p-action {
  padding: 150px 0 0;
  background: url(../images/sdgs/bg.jpg) center no-repeat;
  background-size: cover;
  padding-bottom: 150px;
}
@media all and (max-width: 896px) {
  #sdgs .p-action {
    padding-top: 50px;
    padding-bottom: 90px;
  }
}
#sdgs .p-action__title {
  text-align: center;
  margin-bottom: 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-action__title {
    margin-bottom: 50px;
  }
  #sdgs .p-action__title img {
    height: 100px;
  }
}
#sdgs .p-action__logos {
  background: white;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(20, 1fr);
  padding: 40px;
  gap: 20px;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  #sdgs .p-action__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
  }
}
#sdgs .p-action__logos li {
  text-align: center;
}
@media all and (min-width: 897px) {
  #sdgs .p-action__logos li {
    grid-column: auto/4 span;
    /* &:nth-child(n + 4) {
      grid-column: auto / 4 span;
    } */
  }
}
#sdgs .p-action__title2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
#sdgs .p-action__title2 img {
  flex-shrink: 0;
  margin-right: 10px;
  width: 50px;
}
@media all and (max-width: 896px) {
  #sdgs .p-action__title2 img {
    width: 20px;
    transform: translateY(5px);
  }
}
#sdgs .p-action__title2 .text {
  font-size: 29px;
  font-weight: bold;
  line-height: 1.4;
  color: #22ac38;
}
@media all and (max-width: 896px) {
  #sdgs .p-action__title2 .text {
    font-size: 20px;
  }
}
#sdgs .p-action__text {
  font-size: 15px;
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  #sdgs .p-action__text {
    font-size: 13px;
  }
}
#sdgs .p-action__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 30px;
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  #sdgs .p-action__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
  }
}
#sdgs .p-action__grid .item .image {
  margin-bottom: 10px;
}
#sdgs .p-action__grid .item .image img {
  width: 100%;
}
#sdgs section.region {
  display: none;
}
#sdgs section.contact_bnsec {
  display: none;
}

#media main .l-breadcrumb {
  margin-bottom: 10px !important;
}
#media main .obi_common_txt h3 a {
  text-decoration: underline;
  color: #0cad2e;
}
#media main .sec_media {
  margin-bottom: 180px;
}
@media only screen and (max-width: 767px) {
  #media main .sec_media {
    margin-bottom: 100px;
  }
}
#media main table {
  width: 100%;
  margin: 10px auto 20px;
}
#media main table th {
  background: #0cad2e;
  color: #fff;
  padding: 15px 30px;
  font-weight: bold;
  font-size: 16px;
  width: 145px;
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 767px) {
  #media main table th {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 15px 4%;
  }
}
#media main table td {
  background: #e3f5e9;
  color: #333;
  padding: 15px 20px;
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid #cccccc;
}
@media only screen and (max-width: 767px) {
  #media main table td {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 15px 4%;
  }
}
#media main table td a {
  text-decoration: underline;
}
#media main table td a:hover {
  text-decoration: none;
}

#process.scrapping .gborder_ttl {
  margin-bottom: 40px;
  margin-top: 0;
}
#process.scrapping .link_green {
  color: #0cad2e;
  text-decoration: underline;
}
#process.scrapping .obi_common_txt .supervisor_info {
  font-size: 16px;
  font-weight: normal;
  color: #333;
  margin-top: 24px;
}
#process.scrapping .obi_common_txt .supervisor_info a {
  text-decoration: underline;
}
#process.scrapping .index .under_wrap3 {
  max-width: 880px;
}
#process.scrapping .index .under_wrap3 .index_ul.has_arrow li {
  border-bottom: none;
  margin-bottom: 4px;
}
#process.scrapping .index .under_wrap3 .index_ul.has_arrow li a {
  position: relative;
  padding-left: 15px;
}
#process.scrapping .index .under_wrap3 .index_ul.has_arrow li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #0cad2e;
  border-bottom: 2px solid #0cad2e;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#process.scrapping .scrapping_block {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #process.scrapping .scrapping_block {
    display: block;
  }
}
#process.scrapping .scrapping_block .scrapping_main {
  width: calc(100% - 240px);
}
@media only screen and (max-width: 767px) {
  #process.scrapping .scrapping_block .scrapping_main {
    width: auto;
    margin-bottom: 25px;
  }
}
#process.scrapping .scrapping_block .scrapping_main .sec div.text-center img {
  width: 100%;
  max-width: none;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4%;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li {
  width: 48%;
  background: #fff;
  border: 2px solid #000000;
  height: auto;
  box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li {
    width: 100%;
  }
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .img img {
  width: 100%;
  aspect-ratio: 1/0.65;
  object-fit: cover;
  object-position: center center;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body {
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body p {
  font-size: 14px;
  margin-bottom: 25px;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body .gbtn {
  width: 100%;
  max-width: 380px;
  margin-bottom: 0;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body .gbtn a {
  padding: 10px 36px;
  box-shadow: 0 2px 0 0 #00651e;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body .gbtn a:before {
  width: 8px;
  height: 8px;
  right: 20px;
}
#process.scrapping .scrapping_block .scrapping_main .scrapping_listsec .scrapping_types li .item_body .gbtn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#process.scrapping .scrapping_block .create_user {
  border: 1px solid #cccccc;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#process.scrapping .scrapping_block .create_user > div:nth-child(1) {
  width: 150px;
}
#process.scrapping .scrapping_block .create_user > div:nth-child(1) img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  height: 100%;
}
#process.scrapping .scrapping_block .create_user > div:nth-child(2) {
  width: calc(100% - 190px);
}
#process.scrapping .scrapping_block .create_user > div:nth-child(2) h3 {
  font-size: 20px;
  font-weight: bold;
}
#process.scrapping .scrapping_block .create_user > div:nth-child(2) h3 + p {
  margin-top: 10px;
}
#process.scrapping .scrapping_block .create_user > div:nth-child(2) a {
  color: blue;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #process.scrapping .scrapping_block .create_user {
    padding: 25px 20px;
    display: block;
  }
  #process.scrapping .scrapping_block .create_user > div:first-child {
    width: 70px;
    margin: 0 auto 25px;
  }
  #process.scrapping .scrapping_block .create_user > div:nth-child(2) {
    width: auto;
  }
  #process.scrapping .scrapping_block .create_user > div:nth-child(2) h3 {
    font-size: 19px;
  }
  #process.scrapping .scrapping_block .create_user > div:nth-child(2) h3 + p {
    font-size: 14px;
  }
}
#process.scrapping .scrapping_block aside {
  width: 200px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping .scrapping_block aside {
    width: auto;
  }
}
#process.scrapping .scrapping_block aside > div h3 {
  font-size: 16px;
  background: #0cad2e;
  padding: 10px 10px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
}
#process.scrapping .scrapping_block aside > div h3 span {
  font-size: 14px;
  font-weight: normal;
  display: block;
}
#process.scrapping .scrapping_block aside > div .side_nav li {
  margin-top: 4px;
}
#process.scrapping .scrapping_block aside > div .side_nav li a {
  background: #efefef;
  padding: 12px 15px;
  padding-right: 25px;
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: bold;
  display: block;
  font-size: 14px;
  position: relative;
}
#process.scrapping .scrapping_block aside > div .side_nav li a::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}
#process.scrapping.export .gborder_ttl {
  margin-bottom: 10px;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .gborder_ttl {
    margin-top: 40px;
  }
}
#process.scrapping.export .under_wrap3 .gborder_ttl {
  margin-top: 0px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .under_wrap3 .gborder_ttl {
    margin-top: 0px;
  }
}
#process.scrapping.export .gbtn_box {
  background: #ffffdd;
  padding: 40px;
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .gbtn_box {
    padding: 20px;
  }
}
#process.scrapping.export .gbtn_box .gbtn {
  width: 100%;
  max-width: 272px;
  margin-bottom: 0;
}
#process.scrapping.export .gbtn_box .gbtn a {
  padding: 10px 36px;
  box-shadow: 0 2px 0 0 #00651e;
  font-size: 14px;
}
#process.scrapping.export .gbtn_box .gbtn a:before {
  width: 8px;
  height: 8px;
  right: 20px;
}
#process.scrapping.export .gbtn_box .gbtn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#process.scrapping.export .big_gbtn_box {
  background: #ffffdd;
  padding: 40px;
  margin-top: 100px;
  margin-bottom: 80px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .big_gbtn_box {
    margin-top: 50px;
    margin-bottom: 40px;
    padding: 20px;
  }
}
#process.scrapping.export .big_gbtn_box h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .big_gbtn_box h4 {
    font-size: 20px;
  }
}
#process.scrapping.export .green_dots {
  margin-bottom: 20px;
}
#process.scrapping.export .green_dots li {
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .green_dots li {
    font-size: 14px;
  }
}
#process.scrapping.export .green_dots li::before {
  position: absolute;
  content: "";
  background-size: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #deef68;
  top: 10px;
  left: 0;
}
#process.scrapping.export .green_dots li.has_link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#process.scrapping.export .green_dots li .gbtn {
  font-size: 12px;
  margin: 0;
  margin-left: 10px;
}
#process.scrapping.export .green_dots li .gbtn a {
  padding: 1px 35px;
  box-shadow: 0 2px 0 0 #00651e;
}
#process.scrapping.export .green_dots li .gbtn a:before {
  width: 8px;
  height: 8px;
  right: 12px;
}
#process.scrapping.export .green_dots li .gbtn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#process.scrapping.export .has_number_list {
  margin-bottom: 30px;
}
#process.scrapping.export .has_number_list li {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px 10px;
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .has_number_list li {
    font-size: 16px;
  }
}
#process.scrapping.export .has_number_list li:last-of-type {
  margin-bottom: 0;
}
#process.scrapping.export .has_number_list li span {
  font-size: 16px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .has_number_list li span {
    font-size: 14px;
  }
}
#process.scrapping.export .has_number_list li .number {
  display: block;
  background: #deef68;
  color: #fff;
  width: 100%;
  max-width: 24px;
  height: 24px;
  text-align: center;
  line-height: 1em;
  font-size: 14px;
  border-radius: 50%;
  font-weight: bold;
  color: #000000;
  line-height: 1.6;
  margin-top: 4px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .has_number_list li .number {
    margin-top: 2px;
  }
}
#process.scrapping.export .has_number_list li .number.white {
  background: transparent;
}
#process.scrapping.export .has_number_list li > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}
#process.scrapping.export .has_number_list li .gbtn {
  font-size: 12px;
  margin: 0;
  margin-left: 10px;
}
#process.scrapping.export .has_number_list li .gbtn a {
  padding: 1px 35px;
  box-shadow: 0 2px 0 0 #00651e;
}
#process.scrapping.export .has_number_list li .gbtn a:before {
  width: 8px;
  height: 8px;
  right: 12px;
}
#process.scrapping.export .has_number_list li .gbtn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#process.scrapping.export .annotation_wrap {
  padding: 20px;
  border: #ddd 1px solid;
}
#process.scrapping.export .annotation_wrap p {
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}
#process.scrapping.export .certificate_block .certificate_item .item_head .dl .dt {
  font-family: Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", "Nimbus Sans Narrow", sans-serif-condensed, sans-serif;
  font-weight: bold;
  gap: 6px;
}
#process.scrapping.export .certificate_block .certificate_item .item_body p {
  margin-bottom: 4px;
}
#process.scrapping.export .merit_table {
  scrollbar-width: none;
  padding-bottom: 30px;
}
#process.scrapping.export .merit_table.table_scroll {
  position: relative;
  overflow: hidden;
}
#process.scrapping.export .merit_table.table_scroll .scrapping_table {
  min-width: 590px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .merit_table.table_scroll .scrapping_table {
    min-width: 520px;
  }
}
#process.scrapping.export .merit_table .scrapping_table {
  border: #d0d0d0 1px solid;
  min-width: 570px;
}
#process.scrapping.export .merit_table .scrapping_table thead tr {
  display: table-row !important;
}
#process.scrapping.export .merit_table .scrapping_table thead tr th {
  font-weight: bold;
  color: #fff;
  background: #0cad2e;
  border-right: #d0d0d0 1px solid;
  border-bottom: #d0d0d0 1px solid;
  text-align: center;
  padding: 5px 10px;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .merit_table .scrapping_table thead tr th {
    font-size: 14px;
  }
}
#process.scrapping.export .merit_table .scrapping_table thead tr th:last-of-type {
  border-right: none;
}
#process.scrapping.export .merit_table .scrapping_table tbody {
  display: table-row-group !important;
}
#process.scrapping.export .merit_table .scrapping_table tbody tr {
  display: table-row !important;
}
#process.scrapping.export .merit_table .scrapping_table tbody tr:nth-child(2n) {
  background: #f4f4f4;
}
#process.scrapping.export .merit_table .scrapping_table tbody tr td {
  border-right: #d0d0d0 1px solid;
  border-bottom: #d0d0d0 1px solid;
  text-align: center;
  padding: 10px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .merit_table .scrapping_table tbody tr td {
    font-size: 14px;
  }
}
#process.scrapping.export .merit_table .scrapping_table tbody tr td:last-of-type {
  border-right: none;
}
#process.scrapping.export .merit_table .scrapping_table tbody tr td span {
  color: #f03c46;
}
#process.scrapping.export .has_img {
  display: flex;
  gap: 10px;
}
#process.scrapping.export .has_img > p {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .has_img > p {
    width: 100%;
  }
}
#process.scrapping.export .has_img > div {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .has_img > div {
    width: 100%;
  }
}
#process.scrapping.export .has_img > div figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#process.scrapping.export .has_img > div figure figcaption {
  font-size: 12px;
}
#process.scrapping.export .has_img > div.flex {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  #process.scrapping.export .has_img {
    flex-direction: column;
  }
}
#process.scrapping.export .mini_gbtn {
  margin: 10px 0 30px;
  font-size: 16px;
  text-align: left;
}
#process.scrapping.export .mini_gbtn a {
  display: inline-block;
  padding: 10px 50px;
}
#process.scrapping.export .mini_gbtn a::before {
  width: 12px;
  height: 12px;
  right: 20px;
}

#transportation .page_image,
#transportation_navigation .page_image,
#transportation_detail .page_image,
#keikenkyo .page_image,
#keikenkyo_navigation .page_image,
#keikenkyo_detail .page_image {
  width: 100%;
  height: 400px;
  background: url(../images/transportation/img.png) no-repeat bottom;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #transportation .page_image,
  #transportation_navigation .page_image,
  #transportation_detail .page_image,
  #keikenkyo .page_image,
  #keikenkyo_navigation .page_image,
  #keikenkyo_detail .page_image {
    height: 20vw;
  }
}
#transportation .obi_txt,
#transportation_navigation .obi_txt,
#transportation_detail .obi_txt,
#keikenkyo .obi_txt,
#keikenkyo_navigation .obi_txt,
#keikenkyo_detail .obi_txt {
  padding: 28px 0;
  background: #ffffdd;
}
#transportation .obi_txt p,
#transportation_navigation .obi_txt p,
#transportation_detail .obi_txt p,
#keikenkyo .obi_txt p,
#keikenkyo_navigation .obi_txt p,
#keikenkyo_detail .obi_txt p {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #transportation .obi_txt p,
  #transportation_navigation .obi_txt p,
  #transportation_detail .obi_txt p,
  #keikenkyo .obi_txt p,
  #keikenkyo_navigation .obi_txt p,
  #keikenkyo_detail .obi_txt p {
    font-size: 2.4vw;
  }
}
#transportation h3,
#transportation_navigation h3,
#transportation_detail h3,
#keikenkyo h3,
#keikenkyo_navigation h3,
#keikenkyo_detail h3 {
  font-size: 32px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #transportation h3,
  #transportation_navigation h3,
  #transportation_detail h3,
  #keikenkyo h3,
  #keikenkyo_navigation h3,
  #keikenkyo_detail h3 {
    font-size: 18px;
  }
}
#transportation h3.obi_title,
#transportation_navigation h3.obi_title,
#transportation_detail h3.obi_title,
#keikenkyo h3.obi_title,
#keikenkyo_navigation h3.obi_title,
#keikenkyo_detail h3.obi_title {
  font-weight: bold;
  text-align: center;
  padding: 12px 10px;
  background: #deef68;
  margin-bottom: 20px;
}
#transportation .link_list,
#transportation_navigation .link_list,
#transportation_detail .link_list,
#keikenkyo .link_list,
#keikenkyo_navigation .link_list,
#keikenkyo_detail .link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.10666%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #transportation .link_list,
  #transportation_navigation .link_list,
  #transportation_detail .link_list,
  #keikenkyo .link_list,
  #keikenkyo_navigation .link_list,
  #keikenkyo_detail .link_list {
    gap: 10px 2%;
  }
}
#transportation .link_list > li,
#transportation_navigation .link_list > li,
#transportation_detail .link_list > li,
#keikenkyo .link_list > li,
#keikenkyo_navigation .link_list > li,
#keikenkyo_detail .link_list > li {
  width: 24.17%;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  #transportation .link_list > li,
  #transportation_navigation .link_list > li,
  #transportation_detail .link_list > li,
  #keikenkyo .link_list > li,
  #keikenkyo_navigation .link_list > li,
  #keikenkyo_detail .link_list > li {
    width: 49%;
  }
}
#transportation .link_list > li a,
#transportation_navigation .link_list > li a,
#transportation_detail .link_list > li a,
#keikenkyo .link_list > li a,
#keikenkyo_navigation .link_list > li a,
#keikenkyo_detail .link_list > li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 13px 10px;
  border: 1px solid #000000;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  opacity: 1;
  transition: 0.4s ease-in-out;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #transportation .link_list > li a,
  #transportation_navigation .link_list > li a,
  #transportation_detail .link_list > li a,
  #keikenkyo .link_list > li a,
  #keikenkyo_navigation .link_list > li a,
  #keikenkyo_detail .link_list > li a {
    font-size: 11px;
  }
  #transportation .link_list > li a strong,
  #transportation_navigation .link_list > li a strong,
  #transportation_detail .link_list > li a strong,
  #keikenkyo .link_list > li a strong,
  #keikenkyo_navigation .link_list > li a strong,
  #keikenkyo_detail .link_list > li a strong {
    font-size: 13px;
  }
}
#transportation .link_list > li a:hover,
#transportation_navigation .link_list > li a:hover,
#transportation_detail .link_list > li a:hover,
#keikenkyo .link_list > li a:hover,
#keikenkyo_navigation .link_list > li a:hover,
#keikenkyo_detail .link_list > li a:hover {
  background: #0cad2e;
  border-color: #0cad2e;
  color: #fff;
}

#transportation_navigation .block .link_list:first-of-type > li {
  width: 19.17%;
}
@media only screen and (max-width: 767px) {
  #transportation_navigation .block .link_list:first-of-type > li {
    width: 40%;
  }
}
#transportation_navigation #anker {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1%;
}
@media only screen and (max-width: 767px) {
  #transportation_navigation #anker {
    gap: 10px 1%;
  }
}
#transportation_navigation #anker .gbtn {
  width: 19.1666%;
  max-width: 360px;
  font-size: 16px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #transportation_navigation #anker .gbtn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  #transportation_navigation #anker .gbtn {
    width: 32%;
  }
}
#transportation_navigation #anker .gbtn a {
  padding-top: 12px;
  padding-bottom: 12px;
}
#transportation_navigation #anker .gbtn a::before {
  width: 12px;
  height: 12px;
  top: 42%;
  transform: translateY(-50%) rotate(45deg);
}

#transportation_detail .block:not(:first-of-type) {
  margin-top: 70px;
}
#transportation_detail .block#number div {
  padding-left: 20px;
  position: relative;
}
#transportation_detail .block#number div::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #0cad2e;
  border-bottom: 1px solid #0cad2e;
  transform: rotate(-45deg);
  position: absolute;
  left: 0;
  top: 8px;
}
#transportation_detail .block#number div:not(:first-of-type) {
  margin-top: 20px;
}
#transportation_detail .block#number div p {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #transportation_detail .block#number div p {
    font-size: 14px;
  }
}
#transportation_detail .block#number div p a {
  text-decoration: underline;
}
#transportation_detail .block#number > p {
  padding-top: 20px;
}
#transportation_detail .block#number > p img {
  margin-right: 10px;
}
#transportation_detail .block#information table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
#transportation_detail .block#information table th {
  background-color: #d9d9d9;
  padding: 0 10px;
}
#transportation_detail .block#information table td {
  padding: 0 16px;
}
#transportation_detail .block#information table td a[href*="tel:"] {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #transportation_detail .block#information table td a[href*="tel:"] {
    pointer-events: all;
  }
}
@media only screen and (max-width: 767px) {
  #transportation_detail .block#information table th,
  #transportation_detail .block#information table td {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}
#transportation_detail .block#information iframe {
  width: 100%;
  height: 800px;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  #transportation_detail .block#information iframe {
    height: 400px;
  }
}

#transportation_navigation,
#transportation_detail {
  padding-bottom: 190px;
}

#popup_form {
  background: #e3f5e9;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  #popup_form {
    padding: 40px 0;
  }
}
#popup_form > #contact {
  max-width: 1200px;
  width: 90%;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  #popup_form > #contact {
    padding: 0;
  }
}
#popup_form > #contact select.initial_select {
  color: #000;
}
#popup_form > #contact select.initial_select:invalid {
  color: #ccc;
}
#popup_form > #contact .assessment_form {
  border: none;
}
#popup_form > #contact .assessment_form .assessment_body {
  border-radius: 20px;
  background: #fff;
  padding: min(4vw, 70px) 0 0;
  box-sizing: border-box;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head {
  position: absolute;
  top: 0;
  border-radius: 20px 20px 0 0;
  background: #ffea01;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  white-space: nowrap;
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p {
  position: relative;
  font-weight: bold;
  font-size: min(1.5vw, 21px);
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_head p {
    font-size: 16px;
    line-height: 1.4;
  }
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -23px;
  width: 28px;
  height: 14px;
  background-color: #ffea01;
  clip-path: polygon(50% 14px, 0% 0%, 28px 0%);
  left: 50%;
  transform: translateX(-50%);
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p.text_flex {
  display: flex;
  align-items: center;
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p.text_flex small {
  background: #f0101d;
  width: 93px;
  height: 30px;
  min-width: 75px;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  margin-right: 10px;
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p.text_flex .flex_inner {
  display: flex;
  align-items: baseline;
  font-size: min(1.5vw, 21px);
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_head p.text_flex .flex_inner {
    font-size: 16px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p.text_flex .flex_inner .font_big {
  font-size: min(2vw, 38px);
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_head p.text_flex .flex_inner .font_big {
    font-size: 24px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p span {
  font-size: min(2vw, 38px);
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_head p span {
    font-size: 24px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .assessment_head p span {
  /* &:first-of-type {
      @media (max-width: 900px) {
          color: #ff5100;
      }
  }
  &:last-of-type {
      @media (max-width: 900px) {
          font-size: 125%;
      }
  } */
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .here {
    background: #0cad2e;
    color: #fff;
    font-weight: bold;
    font-size: min(6vw, 60px);
    padding: 30px 0 0;
    text-align: center;
  }
}
#popup_form > #contact .assessment_form .assessment_body .assessment_catch {
  text-align: center;
  font-weight: bold;
  font-size: min(1.5vw, 22px);
  line-height: 1.4;
  color: #000;
  margin-bottom: min(1.4vw, 30px);
  background: none;
  padding: 25px 0 0;
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_catch {
    margin: 40px 0 30px;
    font-size: 22px;
  }
}
@media (max-width: 370px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_catch {
    font-size: min(20px, 5.5vw);
  }
}
#popup_form > #contact .assessment_form .assessment_body .assessment_catch span {
  font-size: min(2vw, 30px);
  color: #0cad2e;
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_catch span {
    font-size: 24px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .step_form_2 {
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 10px;
}
#popup_form > #contact .assessment_form .assessment_body .assessment_block {
  display: flex;
  gap: 20px 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 min(1.8vw, 30px);
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .assessment_block {
    flex-direction: column;
    padding: 0 15px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .form_block {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: 48%;
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .form_block {
    width: 100%;
  }
}
#popup_form > #contact .assessment_form .assessment_body .form_block dt {
  font-size: 18px;
  color: #000;
  font-weight: bold;
  width: 90px;
  min-width: 90px;
  border: none;
  margin: 0;
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .form_block dt {
    font-size: 16px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .form_block dd {
  width: calc(100% - 90px);
}
#popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select {
  position: relative;
}
#popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: url("../../resatei_includes/img/common/plus.svg") no-repeat center center/contain;
  pointer-events: none;
  width: 21px;
  height: 21px;
  z-index: 1;
}
#popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select::after {
  display: none;
}
#popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select select {
  background: #f8f8f8;
  border: 1px solid #0cad2e;
  position: relative;
  font-size: 18px;
  border-radius: 8px;
  padding: 17px 10px;
  font-family: "Noto Sans JP", sans-serif;
  vertical-align: middle;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 900px) {
  #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select select {
    font-size: 16px;
    padding: 10px;
  }
}
#popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select.norequired__select select {
  background: #e5e5e5;
}
#popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select .input-focus {
  border-color: #0cad2e !important;
  box-shadow: 0 0 0 2px #0cad2e;
  border-radius: 8px;
  animation-name: focusWave;
  animation-duration: 1.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  -webkit-animation-name: focusWave;
}
@keyframes focusWave {
  0% {
    box-shadow: 0 0 0 1px #deef68, 0 0 0 8px rgba(255, 255, 255, 0), 0 0 0 10px rgba(100, 37, 16, 0);
  }
  100% {
    box-shadow: 0 0 0 1px #deef68, 0 0 0 1px #fff, 0 0 0 2px #deef68;
  }
}

.assessment_btn {
  max-width: 380px !important;
  width: 90% !important;
  margin: min(1.6vw, 40px) auto 0 !important;
  padding-bottom: min(1.6vw, 40px);
}
@media (max-width: 900px) {
  .assessment_btn {
    margin: 30px auto !important;
  }
}
.assessment_btn > button {
  width: 100%;
  outline: 0;
  display: block;
  background: #ed3c46;
  padding: 10px 10px;
  border: 0;
  appearance: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 45px;
  filter: drop-shadow(0px 4px 0px #b21625);
  transition: 0.4s ease-in-out;
  position: relative;
  cursor: pointer;
}
.assessment_btn > button::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  .assessment_btn > button::before {
    inset: 0 20px 0 auto;
  }
}
.assessment_btn > button > span {
  display: inline-block;
  vertical-align: middle;
}
.assessment_btn > button > span::before {
  right: min(2vw, 35px);
}
.assessment_btn > button > span small {
  background: #fff;
  width: 50px;
  height: 30px;
  min-width: 50px;
  border-radius: 30px;
  color: #000;
  display: inline-block;
  line-height: 30px;
  font-size: 14px;
  margin-right: 15px;
}
.assessment_btn > button:hover {
  transform: translateY(3px);
  opacity: 0.7;
  filter: drop-shadow(0px 0px 0px #b21625);
}

@media (max-width: 900px) {
  .c-form-modal_btnlist li button {
    font-size: min(3.3vw, 16px);
  }
}

.modal-content .gbtn {
  padding: 40px 0;
}
.modal-content .gbtn a {
  max-width: 500px;
  width: 90%;
  font-weight: bold;
  color: #fff;
  background: #0cad2e;
  display: block;
  margin: auto;
  padding: 10px 50px;
  position: relative;
  border-radius: 45px;
  -webkit-box-shadow: 0 5px 0 0 #00651e;
  box-shadow: 0 5px 0 0 #00651e;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  text-align: center;
  cursor: pointer;
}

.c-form-modal #guest-info #syllab {
  font-weight: bold;
  font-size: 18px;
}

#haisya {
  font-family: "Noto Sans JP", sans-serif;
}
#haisya .bold {
  font-weight: bold;
}
#haisya .red {
  color: #f0101d;
}
#haisya .area_ttl {
  background: #000 !important;
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  #haisya .area_ttl {
    padding: 15px 0 10px;
  }
}
#haisya .area_ttl h1 {
  font-size: min(4vw, 18px);
}
@media only screen and (min-width: 768px) {
  #haisya .area_ttl h1 {
    font-size: 20px;
  }
}
#haisya .area_ttl h1 span {
  color: #ffff01;
  font-size: 122%;
}
#haisya .fv-ziko {
  padding: 0;
  max-width: none;
  margin: 0;
}
#haisya .fv-ziko img {
  width: 100%;
  height: auto;
}
#haisya .fv-ziko .c-banner {
  width: 100%;
  background: #fb671b;
  overflow: hidden;
  position: relative;
}
#haisya .fv-ziko .c-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #haisya .fv-ziko .c-banner__inner {
    padding: 20px 15px 0;
  }
}
#haisya .fv-ziko .c-banner__content {
  position: relative;
  z-index: 5;
  width: 55%;
  padding-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #haisya .fv-ziko .c-banner__content {
    width: 64%;
    padding-bottom: 40px;
  }
}
#haisya .fv-ziko .c-banner__title {
  margin-bottom: 20px;
}
#haisya .fv-ziko .c-banner__visual {
  position: relative;
  z-index: 5;
}
#haisya .fv-ziko .c-banner__visual-img {
  max-width: 582px;
  width: 90%;
}
@media only screen and (max-width: 767px) {
  #haisya .fv-ziko .c-banner__visual-img {
    width: 100%;
  }
}
#haisya .fv-ziko .c-banner__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 53%;
  max-width: 647px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  #haisya .fv-ziko .c-banner__person {
    width: 47%;
    max-width: none;
  }
}
#haisya .fv-ziko .c-banner__features {
  display: flex;
  gap: 20px;
  z-index: 20;
  max-width: 815px;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 767px) {
  #haisya .fv-ziko .c-banner__features {
    gap: 5px;
    padding-left: 5px;
  }
}
#haisya .fv-ziko .c-banner__features picture {
  width: 100%;
}
#haisya .assessment-embedded-widget-onecolumn {
  background-color: #edfaf2;
}
#haisya .newForm #popup_form {
  background: #fff3df;
}
#haisya .newForm #popup_form > #contact .assessment_form .assessment_body .assessment_head {
  background: #ffd200;
}
#haisya .newForm #popup_form > #contact .assessment_form .assessment_body .assessment_head p:after {
  background: #ffd200;
}
#haisya .newForm #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select:before {
  background: url("../../resatei_includes/img/common/plus_blue.svg") no-repeat center center/contain;
}
#haisya .newForm #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select select {
  border: 1px solid #1080d0;
}
#haisya .region {
  padding: 50px 0 0;
}
#haisya .index_subttl {
  display: block;
}
#haisya .index_ttl {
  display: block;
  color: #ee9000;
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #haisya .index_ttl {
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  #haisya .index_ttl {
    font-size: min(36px, 7vw);
  }
}
#haisya .index_ttl .underlined {
  border-bottom: 4px solid #ee9000;
  display: inline-block;
  padding-bottom: 6px;
}
#haisya .index_ttl .index_ttl_sub {
  font-size: 77%;
}
@media only screen and (min-width: 768px) {
  #haisya .index_ttl .index_ttl_sub {
    font-size: 88%;
  }
}
#haisya .index_ttl .small {
  font-size: 55%;
}
#haisya .index_ttl.black {
  color: #000;
}
#haisya .maker {
  background: linear-gradient(transparent 70%, #ffee30 70%);
}
#haisya .color_orange {
  color: #ee9000;
}
#haisya .with_side_slash {
  position: relative;
  padding: 0 1em;
  text-align: center;
  display: inline-block;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.04em;
}
@media (max-width: 374px) {
  #haisya .with_side_slash {
    font-size: min(20px, 4.5vw);
  }
}
#haisya .with_side_slash::before, #haisya .with_side_slash::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 90%;
  background: #000;
  margin: auto;
}
#haisya .with_side_slash::before {
  inset: 0 auto 0 0;
  transform: rotate(-30deg);
}
#haisya .with_side_slash::after {
  inset: 0 0 0 auto;
  transform: rotate(30deg);
}
#haisya .with_side_slash.red::before, #haisya .with_side_slash.red::after {
  background: #f0101d;
}
#haisya .with_side_slash span .fn30 {
  font-size: 150%;
}
#haisya .btn_rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  color: #fff;
  font-weight: bold;
  border-radius: 85px;
  transition: 0.5s ease-in-out;
  position: relative;
  text-align: center;
  height: 90px;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #haisya .btn_rounded {
    height: 64px;
  }
}
#haisya .btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625 !important;
  background: #ed3c46 !important;
}
#haisya .btn_rounded.green {
  box-shadow: 0 4px 0 0 #00661a !important;
  background: #01a832 !important;
}
#haisya .btn_rounded.yellow {
  box-shadow: 0 4px 0 0 #de8300 !important;
  background: #ffa31e !important;
}
#haisya .btn_rounded.yellow div {
  display: flex;
  flex-direction: column;
}
#haisya .btn_rounded.yellow .tel_icon {
  position: relative;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
  line-height: 1;
  text-align: left;
}
#haisya .btn_rounded.yellow .tel_icon::before {
  position: absolute;
  content: "";
  background: url(../images/index/free.svg) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  margin: auto;
  inset: 0 auto 0 0;
}
#haisya .btn_rounded:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#haisya .btn_rounded::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  #haisya .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #haisya .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
#haisya .btn_rounded.type_web span {
  position: relative;
  padding-left: 2em;
}
#haisya .btn_rounded.type_web span::after {
  position: absolute;
  content: "";
  background: url(../images/index/monitor.svg) no-repeat center center/contain;
  width: 36px;
  height: 26px;
  margin: auto;
  inset: 0 auto 0 0;
}
@media (max-width: 374px) {
  #haisya .btn_rounded.type_web span::after {
    width: 28px;
    height: 20px;
    inset: 0 auto 0 16px;
  }
}
#haisya .btn_rounded.type_16 {
  background: #fff;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #ee9000;
  border: 2px solid #ee9000;
  box-shadow: 0 4px 0 0 #c47700;
}
#haisya .btn_rounded.type_16::before {
  border-right: 2px solid #ee9000;
  border-bottom: 2px solid #ee9000;
}
@media only screen and (max-width: 767px) {
  #haisya .btn_rounded.type_16 {
    line-height: 1.3em;
  }
}
#haisya .btn_rounded.phone > span {
  position: relative;
  padding: 0 2em 0 2.5em;
}
#haisya .btn_rounded.phone > span::after {
  position: absolute;
  content: "";
  background: url(../images/index/phone.svg) no-repeat center center/contain;
  width: 30px;
  height: 37px;
  margin: auto;
  inset: 0 auto 0 0;
}
#haisya .btn_rounded.btn_ziko_tel {
  background: #ffa31e;
  box-shadow: 0 4px 0 0 #de8300;
  padding-right: 5%;
}
@media only screen and (max-width: 767px) {
  #haisya .btn_rounded.btn_ziko_tel {
    height: 82px;
    padding-right: 15%;
  }
}
#haisya .btn_rounded.btn_ziko_tel .btn-badge {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background-color: #fff155;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  #haisya .btn_rounded.btn_ziko_tel .btn-badge {
    width: 70px;
    height: 70px;
  }
}
#haisya .btn_rounded.btn_ziko_tel .btn-badge .badge-small {
  font-size: 12px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #haisya .btn_rounded.btn_ziko_tel .btn-badge .badge-small {
    font-size: 14px;
  }
}
#haisya .btn_rounded.btn_ziko_tel .btn-badge .badge-large {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  #haisya .btn_rounded.btn_ziko_tel .btn-badge .badge-large {
    font-size: 18px;
  }
}
#haisya .btn_rounded.btn_ziko_tel .tel_icon {
  margin: 0 auto;
}
#haisya .btn_rounded.btn_ziko_tel .btn-content {
  text-align: center;
  color: #fff;
  padding-left: 22px;
}
#haisya .btn_rounded.btn_ziko_tel .btn-content .btn_text_small {
  font-size: 12px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #haisya .btn_rounded.btn_ziko_tel .btn-content .btn_text_small {
    font-size: 14px;
  }
}
#haisya .slick-prev,
#haisya .slick-next {
  width: 40px;
  height: 40px;
  background: url("../images/index/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  #haisya .slick-prev,
  #haisya .slick-next {
    width: 60px;
    height: 60px;
  }
}
#haisya .slick-prev:hover,
#haisya .slick-next:hover {
  opacity: 0.7;
}
#haisya .slick-prev::before,
#haisya .slick-next::before {
  content: none;
}
#haisya .slick-prev {
  left: 20px;
  background: url("../images/index/prev.svg") no-repeat center center;
  background-size: contain;
}
#haisya .slick-next {
  right: 20px;
}
#haisya .slick-dots {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#haisya .slick-dots li {
  width: 8px;
  height: 8px;
}
#haisya .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
}
#haisya .slick-dots li button::before {
  opacity: 1;
  content: "";
  background: #ccc;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
#haisya .slick-dots li.slick-active button:before {
  background: #ee9000;
}
#haisya .sec_haisya_top {
  background: #ffe658;
  padding: 30px 0 0;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top {
    padding: 50px 0 0;
  }
}
#haisya .sec_haisya_top .comment {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  max-width: 350px;
  line-height: 1.2;
  margin: 0 auto 25px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top .comment {
    font-size: 26px;
    max-width: 600px;
    margin: 0 auto 30px;
  }
}
#haisya .sec_haisya_top .comment:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#haisya .sec_haisya_top .comment span.font_big {
  font-size: 125%;
}
#haisya .sec_haisya_top .haisya_top_flex {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top .haisya_top_flex {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: content-box;
    align-items: center;
  }
}
#haisya .sec_haisya_top .haisya_top_flex .text_box {
  width: 60%;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top .haisya_top_flex .text_box {
    display: flex;
    justify-content: flex-end;
  }
}
#haisya .sec_haisya_top .haisya_top_flex .text_box h2 {
  font-size: clamp(18px, 2vw, 26px);
  position: relative;
  z-index: 1;
  font-weight: bold;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top .haisya_top_flex .text_box h2 {
    font-size: clamp(28px, 3vw, 36px);
  }
}
#haisya .sec_haisya_top .haisya_top_flex .text_box h2 .orange {
  color: #fff;
  font-size: 26px;
  position: relative;
  background: #f67b00;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top .haisya_top_flex .text_box h2 .orange {
    font-size: 36px;
  }
}
#haisya .sec_haisya_top .haisya_top_flex .text_box p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_top .haisya_top_flex .text_box p {
    font-size: 18px;
  }
}
#haisya .sec_haisya_top .haisya_top_flex .img_box {
  width: 40%;
}
#haisya .sec_haisya_top .haisya_top_flex .img_box img {
  width: 100%;
  height: auto;
}
#haisya section.top {
  background: #fffad8;
  padding: 40px 0 30px;
}
@media only screen and (max-width: 767px) {
  #haisya section.top {
    padding: 30px 0;
  }
}
#haisya section.top h2 {
  font-size: clamp(20px, 2vw, 24px);
}
#haisya section.top .img_area img {
  display: block;
  margin: 0 auto 20px;
  max-width: 351px;
}
@media only screen and (min-width: 768px) {
  #haisya section.top .img_area img {
    max-width: 770px;
  }
}
@media only screen and (min-width: 768px) {
  #haisya section.top .haisya_high_price_slider {
    padding: 0 80px;
  }
}
#haisya section.top .haisya_high_price_slider .slick-track {
  display: flex;
}
#haisya section.top .haisya_high_price_slider .slick-slide {
  margin: 10px 20px;
  height: auto;
}
@media only screen and (max-width: 1260px) {
  #haisya section.top .haisya_high_price_slider .slick-slide {
    margin: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #haisya section.top .haisya_high_price_slider .slick-slide {
    margin: 0 15px 0 0;
  }
}
#haisya section.top .haisya_high_price_slider .slick-slide > div {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #haisya section.top .haisya_high_price_slider .slick-prev {
    display: none !important;
  }
  #haisya section.top .haisya_high_price_slider .slick-list {
    overflow: visible;
    margin-left: 0;
    padding-right: 10%;
  }
}
#haisya section.top .high_price_item {
  height: 100%;
  display: block;
  background: #fff;
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #haisya section.top .high_price_item {
    padding: 25px;
  }
}
#haisya section.top .high_price_item .high_price_head {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 374px) {
  #haisya section.top .high_price_item .high_price_head {
    flex-wrap: wrap;
  }
}
#haisya section.top .high_price_item .high_price_head .icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
}
@media only screen and (max-width: 960px) {
  #haisya section.top .high_price_item .high_price_head .icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
}
#haisya section.top .high_price_item .high_price_head .ttl h4 {
  color: #ee9000;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-size: clamp(16px, 1.6vw, 18px);
  text-align: left;
}
#haisya section.top .high_price_item .high_price_head .ttl dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
#haisya section.top .high_price_item .high_price_head .ttl dl dt {
  border-radius: 20px;
  background: #fff;
  border: 1px solid #000;
  padding: 0 10px;
  font-size: clamp(12px, 1.2vw, 14px);
}
#haisya section.top .high_price_item .high_price_head .ttl dl dd {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 500;
}
#haisya section.top .high_price_item figure {
  aspect-ratio: 27/16;
}
#haisya section.top .high_price_item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#haisya section.top .high_price_item .high_price_detail {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
#haisya section.top .high_price_item .high_price_detail .car_name {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  width: auto;
  min-width: 40%;
  text-align: center;
  max-width: 54%;
}
@media only screen and (max-width: 1260px) {
  #haisya section.top .high_price_item .high_price_detail .car_name {
    max-width: 70%;
  }
}
#haisya section.top .high_price_item .high_price_detail .car_name dl {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
#haisya section.top .high_price_item .high_price_detail .car_name dl:first-of-type {
  margin-bottom: 5px;
}
#haisya section.top .high_price_item .high_price_detail .car_name dl dt {
  background: #ffea98;
  text-align: center;
  min-width: 63px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 400;
}
#haisya section.top .high_price_item .high_price_detail .car_name dl dd {
  font-size: 12px;
  text-align: left;
  font-weight: 500;
  line-height: 1.3rem;
}
@media only screen and (min-width: 768px) {
  #haisya section.top .high_price_item .high_price_detail .car_name dl dd {
    font-size: 14px;
  }
}
#haisya section.top .high_price_item .high_price_detail .kaitori_flex {
  display: flex;
  gap: 10px;
  margin-bottom: auto;
}
@media (max-width: 1300px) {
  #haisya section.top .high_price_item .high_price_detail .kaitori_flex {
    align-items: center;
  }
}
#haisya section.top .high_price_item .high_price_detail .kaitori {
  border: 1px solid #f0101d;
  border-radius: 2px;
  line-height: 1.4;
  font-size: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 1rem;
}
@media only screen and (max-width: 767px) {
  #haisya section.top .high_price_item .high_price_detail .kaitori {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #haisya section.top .high_price_item .high_price_detail .kaitori {
    font-size: 14px;
  }
}
#haisya section.top .high_price_item .high_price_detail .price {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
#haisya section.top .high_price_item .high_price_detail .price span {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1;
}
@media only screen and (max-width: 1260px) {
  #haisya section.top .high_price_item .high_price_detail .price span {
    font-size: clamp(26px, 2.8vw, 56px);
  }
}
@media only screen and (max-width: 767px) {
  #haisya section.top .high_price_item .high_price_detail .price span {
    font-size: min(56px, 12vw);
  }
}
#haisya section.top .car_model_list {
  border: 3px solid #ee9000;
  background: #fff;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  #haisya section.top .car_model_list {
    padding: 40px 30px;
  }
}
#haisya section.top .car_model_list .model_list_ttl {
  margin: 0 0 20px;
}
@media only screen and (min-width: 768px) {
  #haisya section.top .car_model_list .model_list_ttl {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin: 0 0 30px;
  }
}
#haisya section.top .car_model_list ul {
  display: flex;
  justify-content: center;
  gap: 8px;
}
#haisya section.top .car_model_list ul li {
  background: #ffea98;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 3px 12px;
  font-size: clamp(16px, 1.8vw, 20px);
}
#haisya section.top .car_model_list .midashi {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.04em;
}
#haisya section.top .car_model_list .car_model_name {
  color: #333;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 1.8vw, 22px);
  word-break: keep-all;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) {
  #haisya section.top .car_model_list .car_model_name {
    max-width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  #haisya section.top .car_model_list .car_model_name {
    font-size: min(16px, 3.6vw);
    max-width: 540px;
    margin: 0 auto 20px;
  }
}
#haisya section.top .car_model_list .car_model_name span {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #haisya section.top .car_model_list .with_side_slash {
    letter-spacing: -0.08em;
  }
}
#haisya section.top .car_model_list .with_side_slash {
  line-height: 1.3em;
}
#haisya section.top .car_model_list .btn_area {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #haisya section.top .car_model_list .btn_area {
    flex-direction: column;
    margin-top: 0;
  }
}
#haisya .sec_haisya_reason {
  padding: 50px 0;
  background-color: rgb(255, 237, 133);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(255, 232, 103) 5px, rgb(255, 232, 103) 10px);
}
#haisya .sec_haisya_reason .catch-text {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin: 0 auto 25px;
  max-width: 330px;
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .catch-text {
    font-size: 22px;
  }
}
#haisya .sec_haisya_reason .catch-text:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#haisya .sec_haisya_reason .reason_ttl {
  margin: 0 auto 30px;
}
#haisya .sec_haisya_reason .reason_ttl .reason_sub_ttl {
  font-size: clamp(28px, 3vw, 36px);
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_reason .reason_ttl .reason_sub_ttl {
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #haisya .sec_haisya_reason .reason_ttl .reason_sub_ttl {
    font-size: min(28px, 5.5vw);
  }
}
#haisya .sec_haisya_reason .reason_ttl h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  color: #000;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_reason .reason_ttl h2 {
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #haisya .sec_haisya_reason .reason_ttl h2 {
    font-size: min(28px, 5.5vw);
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .reason_ttl h2 {
    margin-bottom: 30px;
  }
}
#haisya .sec_haisya_reason .reason_ttl h2 span.orange {
  color: #fff;
  font-size: 36px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_reason .reason_ttl h2 span.orange {
    font-size: min(36px, 7.5vw);
  }
}
@media (max-width: 374px) {
  #haisya .sec_haisya_reason .reason_ttl h2 span.orange {
    font-size: min(28px, 6vw);
  }
}
#haisya .sec_haisya_reason .reason_ttl h2 span.orange::after {
  position: absolute;
  content: "";
  background: #f67b00;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
#haisya .sec_haisya_reason .reason_ttl .reason_catch {
  position: relative;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_reason .reason_ttl .reason_catch {
    font-size: min(16px, 4vw);
    padding: 0;
  }
}
@media (max-width: 374px) {
  #haisya .sec_haisya_reason .reason_ttl .reason_catch {
    font-size: min(16px, 3.5vw);
  }
}
#haisya .sec_haisya_reason .reason_ttl .reason_catch.strong {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: bold;
}
#haisya .sec_haisya_reason .grid-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 900px;
  justify-content: center;
}
#haisya .sec_haisya_reason .grid-container .reason_item {
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item.reason01 {
  background: #fff url(../images/haisha/haisya_reason01.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item.reason01 {
    background: #fff url(../images/haisha/haisya_reason01.png) no-repeat top 10px right 6%/120px;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item.reason02 {
  background: #fff url(../images/haisha/haisya_reason02.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item.reason02 {
    background: #fff url(../images/haisha/haisya_reason02.png) no-repeat top 10px right 6%/120px;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item.reason03 {
  background: #fff url(../images/haisha/haisya_reason03.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item.reason03 {
    background: #fff url(../images/haisha/haisya_reason03.png) no-repeat top 10px right 6%/120px;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item.reason04 {
  background: #fff url(../images/index/reason04.png) no-repeat top 10px right 10px/90px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item.reason04 {
    background: #fff url(../images/index/reason04.png) no-repeat top 30px right 7%/120px;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item .label {
  background: #f67b00;
  border-radius: 0 50px 50px 0;
  width: 92px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_reason .grid-container .reason_item .label {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 37px;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item .label {
    width: 15%;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item .label strong {
  font-weight: bold;
  color: #fff153;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 185%;
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_item_ttl {
  font-size: clamp(18px, 2vw, 22px);
  margin: 63px 10px 20px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item .reason_item_ttl {
    width: 70%;
    margin: 20px 0;
    min-height: 130px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 15% 0 0;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_item_ttl strong {
  font-weight: bold;
  font-size: 122%;
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_item_txt {
  color: #333;
  margin: 0 10px 10px;
  letter-spacing: 0.04em;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_reason .grid-container .reason_item .reason_item_txt {
    font-size: 14px;
    width: auto;
    text-align: left;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_item_txt img {
  display: block;
  margin: 10px auto;
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_item_txt p + p {
  margin-top: 1em;
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_button {
  border-radius: 0 0 10px 10px;
  background: #fff3df;
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_reason .grid-container .reason_item .reason_button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_button::before {
  position: absolute;
  content: "";
  border-right: 2px solid #ee9000;
  border-bottom: 2px solid #ee9000;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin: auto;
  inset: 0 0 5px 0;
}
#haisya .sec_haisya_reason .grid-container .reason_item .reason_button.active::before {
  transform: rotate(-135deg);
  inset: 0 0 -10px 0;
}
#haisya .sec_haisya_satei {
  background: #ffefd4;
  padding: 50px 0;
}
#haisya .sec_haisya_satei p {
  letter-spacing: 0.04em;
}
#haisya .sec_haisya_satei .color4 {
  font-size: clamp(20px, 2.4vw, 24px);
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_satei .color4 {
    font-size: min(20px, 4.5vw);
  }
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_satei .txt {
    font-size: min(16px, 4vw);
    margin-bottom: 0;
  }
}
#haisya .sec_haisya_satei .fs14 {
  font-size: 14px;
  color: #333;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_satei .sec_ziko_satei_inner {
    display: grid;
    grid-template-columns: 55% 38%;
    align-items: center;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  #haisya .sec_haisya_satei .sec_ziko_satei_inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_satei .sec_ziko_satei_inner .ziko_satei_text {
    padding-right: 50px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_satei .sec_ziko_satei_inner .ziko_satei_text::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 42px;
    background-color: #ffea01;
    clip-path: polygon(24px 50%, 0% 0%, 0% 42px);
    margin: auto;
    inset: 0 8% 0 auto;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  #haisya .sec_haisya_satei .sec_ziko_satei_inner .ziko_satei_text::before {
    inset: 0 20px 0 auto;
  }
}
#haisya .sec_haisya_satei .sec_ziko_satei_inner .ziko_satei_text .pc {
  font-size: clamp(20px, 2.4vw, 40px);
  text-align: left;
  width: fit-content;
  margin: 0 auto 40px;
}
#haisya .sec_haisya_case_list {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_case_list h2 .with_side_slash {
    line-height: 1.3em;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_case_list .haisya_case_slider {
    padding: 0 80px;
  }
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-track {
  display: flex;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide {
  margin: 10px;
  background: #f9fce3;
  height: auto;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li {
    padding: 20px;
  }
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .haisya_case_heading {
  font-size: 94%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .img {
  border: 1px solid #fff;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .img img {
  width: 100%;
  height: auto;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container {
  gap: 5px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
  margin: 10px 0 18px;
  text-align: center;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container span.maker {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container span.maker span {
  font-size: 18px;
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container span.maker span {
    font-size: 21px;
  }
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container span.maker span.red {
  color: #f0101d;
  display: flex;
  align-items: baseline;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container span.maker span.m1 {
  font-weight: bold;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 56px;
  line-height: 1;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .item_body .price_container span.maker span.m1 {
    font-size: 60px;
  }
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li dl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li dl dt {
  width: 32%;
  background: #b1af97;
  text-align: center;
  color: #fff;
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 500;
  padding: 4px 0px;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li dl dd {
  width: 64%;
  line-height: 100%;
  font-weight: 500;
  font-size: clamp(14px, 1.6vw, 17px);
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li dl dd a {
  text-decoration: underline;
  color: blue;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .comment_wrap {
  margin-top: 10px;
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .comment_wrap h4 {
  background: #ee9000;
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .comment_wrap h4 {
    font-size: 14px;
  }
}
#haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .comment_wrap p {
  background: #fff;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_case_list .haisya_case_slider .slick-slide li .comment_wrap p {
    font-size: 16px;
  }
}
#haisya .sec_haisya_case_list .slick-dots li button::before {
  background: #ccc;
}
#haisya .sec_haisya_case_list .slick-dots li.slick-active button::before {
  background: #ee9000;
}
#haisya .sec_haisya_step {
  padding: 50px 0;
}
#haisya .sec_haisya_step > .under_wrap {
  max-width: 1720px;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .index_ttl {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .index_ttl .index_ttl_sub {
    font-size: min(28px, 6.5vw);
  }
}
#haisya .sec_haisya_step .step_items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_items {
    flex-direction: column;
    gap: 15px;
  }
}
#haisya .sec_haisya_step .step_items::after {
  position: absolute;
  content: "";
  background: #ffea01;
  width: 20px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_step .step_items::after {
    width: 90%;
    height: 30px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 960px) {
  #haisya .sec_haisya_step .step_items::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_items::after {
    display: block;
  }
}
#haisya .sec_haisya_step .step_item {
  background: #fffad8;
  padding: 15px;
  display: flex;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_step .step_item {
    flex-direction: column;
    align-items: center;
    width: calc(25% - 15px);
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 960px) {
  #haisya .sec_haisya_step .step_item {
    width: calc(50% - 20px);
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #haisya .sec_haisya_step .step_item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: #deef68;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item:nth-child(odd)::before {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #haisya .sec_haisya_step .step_item:nth-child(3)::before {
    left: -10%;
    width: 110vw;
  }
}
@media only screen and (max-width: 960px) {
  #haisya .sec_haisya_step .step_item:nth-child(5)::before {
    left: -30%;
    width: 30vw;
  }
}
#haisya .sec_haisya_step .step_item .step_item_num {
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item .step_item_num {
    display: none;
  }
}
#haisya .sec_haisya_step .step_item .step_item_num span {
  background: #ffea01;
  border-radius: 20px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 5px 15px;
  font-weight: 600;
  white-space: nowrap;
}
#haisya .sec_haisya_step .step_item figure {
  width: 65px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_step .step_item figure {
    height: 100px;
    width: 100%;
    text-align: center;
  }
}
#haisya .sec_haisya_step .step_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item .txtarea {
    width: calc(100% - 80px);
  }
}
#haisya .sec_haisya_step .step_item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_step .step_item h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item h3 {
    font-size: min(22px, 4.5vw);
    justify-content: flex-start;
    text-align: left;
    line-height: 1.3em;
    margin-bottom: 5px;
  }
}
#haisya .sec_haisya_step .step_item h3 span {
  background: #ffea01;
  border-radius: 20px;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 0 10px;
  font-weight: 600;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item h3 span {
    line-height: 1.6;
  }
}
#haisya .sec_haisya_step .step_item p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_step .step_item p {
    font-size: min(16px, 3.7vw);
    text-align: left;
  }
}
#haisya .sec_haisya_voice {
  background: #fff3df;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_voice #voice_slider {
    padding: 0 80px;
  }
}
#haisya .sec_haisya_voice #voice_slider .slick-track {
  display: flex;
}
#haisya .sec_haisya_voice #voice_slider .slick-slide {
  margin: 10px;
  background: #fff;
  height: auto;
}
#haisya .sec_haisya_voice #voice_slider .voice_slide_item {
  background: #fff;
  padding: 15px 20px;
}
#haisya .sec_haisya_voice #voice_slider .slider_head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
#haisya .sec_haisya_voice #voice_slider .slider_head .icon {
  width: 80px;
  height: 80px;
}
#haisya .sec_haisya_voice #voice_slider .slider_head dl {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}
#haisya .sec_haisya_voice #voice_slider .slider_head dl dt {
  background: #e4e4e4;
  border-radius: 20px;
  text-align: center;
  padding: 2px 20px;
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_voice #voice_slider .slider_head dl dt {
    padding: 2px 15px;
  }
}
#haisya .sec_haisya_voice #voice_slider .slider_head dl dd {
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
#haisya .sec_haisya_voice #voice_slider .slider_head h4 {
  line-height: 1.3;
  color: #ee9000;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
}
#haisya .sec_haisya_voice #voice_slider .slider_body {
  margin-top: 1px;
}
#haisya .sec_haisya_voice #voice_slider .slider_body p {
  font-weight: 400;
  color: #333;
  font-size: clamp(14px, 1.4vw, 16px);
}
#haisya .sec_haisya_btnarea {
  background: #ffed88;
  padding: 50px 0;
}
#haisya .sec_haisya_btnarea > .under_wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_btnarea > .under_wrap {
    padding: 0 30px;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_btnarea .btnarea_box {
    width: 35%;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_btnarea .btnarea_box.long {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_btnarea .btnarea_box.long .gbtn {
    display: flex;
    gap: 10px;
  }
}
#haisya .sec_haisya_btnarea .comment {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin-bottom: 25px;
  font-weight: bold;
}
#haisya .sec_haisya_btnarea .comment::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#haisya .sec_haisya_faq {
  background: #fffad8;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_faq .with_side_slash {
    line-height: 1.3em;
  }
}
#haisya .sec_haisya_faq .question_block div + div {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_faq .question_block div + div {
    margin-top: 20px;
  }
}
#haisya .sec_haisya_faq .question_block dl {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  font-size: clamp(16px, 1.8vw, 20px);
}
#haisya .sec_haisya_faq .question_block dl dt {
  font-weight: bold;
  position: relative;
  position: relative;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 20px 40px 20px 20px;
}
#haisya .sec_haisya_faq .question_block dl dt::before, #haisya .sec_haisya_faq .question_block dl dt::after {
  position: absolute;
  content: "";
  background: #ee9000;
  width: 16px;
  height: 2px;
  margin: auto;
  inset: 0 20px 0 auto;
  transition: 0.3s ease-in-out;
}
#haisya .sec_haisya_faq .question_block dl dt::after {
  transform: rotate(90deg);
}
#haisya .sec_haisya_faq .question_block dl dt.on::after {
  transform: rotate(180deg);
}
#haisya .sec_haisya_faq .question_block dl dd {
  font-size: clamp(14px, 1.6vw, 18px);
  display: none;
  font-weight: 400;
  color: #333;
  padding: 0 20px 20px 20px;
  letter-spacing: 0.04em;
}
#haisya .sec_haisya_faq .question_block dl dd .disc_list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}
#haisya .sec_haisya_faq .question_block dl dd .disc_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ee9000;
}
#haisya .sec_haisya_faq .question_block dl dd .haisya_box {
  padding: 10px;
  background: #ffed88;
  border-radius: 10px;
}
#haisya .sec_haisya_faq .question_block dl dd a {
  color: #ee9000;
  text-decoration: underline;
}
#haisya .sec_haisya_faq .bottom_text {
  font-size: clamp(20px, 2vw, 24px);
}
@media only screen and (max-width: 767px) {
  #haisya .sec_haisya_faq .bottom_text {
    font-size: 18px;
  }
}
#haisya .sec_haisya_column {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_column .haisya_column_slider {
    padding: 0 80px;
  }
}
#haisya .sec_haisya_column .haisya_column_slider .slick-track {
  display: flex;
}
#haisya .sec_haisya_column .haisya_column_slider .slick-slide {
  margin: 10px;
  background: #f9fce3;
  height: auto;
}
#haisya .sec_haisya_column .haisya_column_slider article {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_column .haisya_column_slider article {
    padding: 20px;
  }
}
#haisya .sec_haisya_column .haisya_column_slider h3 {
  font-weight: bold;
}
#haisya .sec_haisya_column .haisya_column_slider .img {
  aspect-ratio: 27/17;
}
#haisya .sec_haisya_column .haisya_column_slider .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#haisya .sec_haisya_column .haisya_column_slider .cat_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 15px 0;
}
#haisya .sec_haisya_column .haisya_column_slider .cat_list span {
  font-size: 12px;
  color: #ee9000;
  font-weight: 500;
  display: inline-block;
  background: #fff;
  border-radius: 30px;
  padding: 2px 15px 0;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  #haisya .sec_haisya_column .haisya_column_slider .cat_list span {
    font-size: 14px;
  }
}

body#haisya.newForm #popup_form {
  background: #fff3df;
  padding: 20px 0 50px;
}
body#haisya.newForm #popup_form .assessment_catch {
  display: none;
}
body#haisya.newForm #popup_form > #contact .assessment_form .assessment_body .step_form_2 {
  margin-top: 40px;
  padding-top: 25px;
}
body#haisya.newForm #popup_form > #contact .assessment_form .assessment_body .assessment_head {
  background: #ffd200;
}
body#haisya.newForm #popup_form > #contact .assessment_form .assessment_body .assessment_head p:after {
  background-color: #ffd200;
}

body#haisya.newForm #popup_form > #contact .assessment_form .assessment_body .assessment_catch span {
  color: #246fdf;
}

body#haisya.newForm #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select select {
  border: 1px solid #1080d0;
}

body#haisya.newForm #popup_form > #contact .assessment_form .assessment_body .form_block .form_block__select:before {
  background: url("../../resatei_includes/img/common/plus_blue.svg") no-repeat center center/contain;
}

body#ucar main .bg_ttl {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  background: #deef68;
  padding: 7px 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  body#ucar main .bg_ttl {
    font-size: 21px;
  }
}
body#ucar main .retail_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  body#ucar main .retail_block {
    grid-template-columns: repeat(1, 1fr);
  }
}
body#ucar main .retail_block figure {
  aspect-ratio: 60/45;
  width: 100%;
  min-width: 0;
}
body#ucar main .retail_block figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#ucar main .retail_block .gmap {
  aspect-ratio: 60/45;
  width: 100%;
  min-width: 0;
}
body#ucar main .retail_block .gmap iframe {
  width: 100%;
  height: 100%;
}
body#ucar main .retail_block {
  /*  .gbtn {
      font-size: 20px;
      max-width: 360px;
      @include mq(only_sp) {
          font-size: 16px;
      }
      a {
          padding: 15px 30px;
      }
  } */
}
body#ucar main .retail_block .gbtn {
  font-size: 15px;
  margin: 0;
  max-width: 250px;
}
body#ucar main .retail_block .gbtn a {
  padding: 5px;
  box-shadow: 0 2px 0 0 #00651e;
}
body#ucar main .retail_block .gbtn a:before {
  width: 8px;
  height: 8px;
  right: 12px;
}
body#ucar main .retail_block .gbtn a:hover {
  box-shadow: none;
  transform: translateY(3px);
}
body#ucar main .green_dots {
  margin-bottom: 20px;
}
body#ucar main .green_dots li {
  padding-left: 16px;
  position: relative;
  line-height: 1.8;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  body#ucar main .green_dots li {
    font-size: 14px;
  }
}
body#ucar main .green_dots li::before {
  position: absolute;
  content: "";
  background-size: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #deef68;
  margin: auto;
  inset: 4px auto 0 0;
}

body#interview main {
  font-family: "Noto Sans JP", sans-serif;
}
body#interview main .l-breadcrumb {
  margin-bottom: 10px;
  padding-top: 5px;
}
@media only screen and (max-width: 767px) {
  body#interview main .l-breadcrumb {
    padding-top: 0;
  }
}
body#interview main .interview_info_detail {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 17px;
}
body#interview main .interview_info_detail > p {
  color: #333;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.06em;
}
body#interview main .interview_info_detail > p:not(:last-of-type) {
  position: relative;
}
body#interview main .interview_info_detail > p:not(:last-of-type)::before {
  position: absolute;
  content: "";
  background: #cccccc;
  width: 1px;
  height: 14px;
  margin: auto;
  inset: 0 -8px 0 auto;
}
@media only screen and (max-width: 767px) {
  body#interview main .interview_info_detail > p:not(:last-of-type)::before {
    height: 12px;
  }
}
body#interview main .interview_info_detail > p a {
  color: #333;
}
body#interview main .btn_rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  color: #fff;
  font-weight: bold;
  border-radius: 85px;
  transition: 0.5s ease-in-out;
  position: relative;
  text-align: center;
  height: 90px;
  width: 100%;
  padding: 0;
  gap: 30px;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  body#interview main .btn_rounded {
    height: 64px;
    line-height: 1.2;
  }
}
body#interview main .btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625;
  background: #ed3c46;
  justify-content: flex-start;
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 960px) {
  body#interview main .btn_rounded.red {
    padding: 0 50px 0 0;
    gap: 15px;
    justify-content: center;
  }
}
body#interview main .btn_rounded::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  body#interview main .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
body#interview main .btn_rounded i {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: #fff155;
  text-align: center;
  line-height: 62px;
  color: #000;
  font-size: clamp(14px, 1.4vw, 16px);
}
@media only screen and (max-width: 767px) {
  body#interview main .btn_rounded i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    line-height: 50px;
  }
}
body#interview main .btn_rounded.type_white {
  background: #fff;
  color: #01a832;
  border: #01a832 2px solid;
  height: 66px;
  font-size: clamp(16px, 1.6vw, 18px);
}
@media only screen and (max-width: 767px) {
  body#interview main .btn_rounded.type_white {
    height: 54px;
  }
}
body#interview main .btn_rounded.type_white::before {
  inset: 0 auto 0 40px;
  border-color: #01a832;
  transform: rotate(135deg);
}
body#interview main .interview_card a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
body#interview main .interview_card a:hover {
  background: #f9fffb;
  box-shadow: 0 0 0 2px #01a832;
  opacity: 1;
}
body#interview main .interview_card a:hover .interview_ttl {
  color: #01a832;
}
body#interview main .interview_card figure {
  border-radius: 10px 10px 0 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
body#interview main .interview_card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body#interview main .interview_card .interview_info {
  padding: 20px;
}
body#interview main .interview_card .interview_ttl {
  font-weight: bold;
  line-height: 1.5;
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  body#interview main .interview_card .interview_ttl {
    color: #01a832;
  }
}
body#interview main .interview_card time {
  color: #777;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.06em;
}
body#interview main .sec_interview_lead {
  background: #e8faed;
}
body#interview main .sec_interview_lead .lead_inner {
  max-width: 1280px;
  margin: 0 auto 0 calc(50% - 600px);
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  body#interview main .sec_interview_lead .lead_inner {
    margin: 0 auto;
    width: 98%;
  }
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_lead .lead_inner {
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .lead_inner {
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
}
body#interview main .sec_interview_lead .interview_lead_txtarea {
  width: 50%;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_lead .interview_lead_txtarea {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_lead_txtarea {
    width: 100%;
    padding-bottom: 20px;
  }
}
body#interview main .sec_interview_lead .lead_ttl {
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .lead_ttl {
    padding: 30px 5px 0;
    text-align: center;
  }
}
@media (max-width: 370px) {
  body#interview main .sec_interview_lead .lead_ttl {
    font-size: min(22px, 6vw);
  }
}
body#interview main .sec_interview_lead .lead_intro {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 500;
  margin: 30px 0;
  color: #000;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_lead .lead_intro {
    margin: 10px 0;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .lead_intro {
    line-height: 1.8;
    margin: 20px 0;
    padding: 0 5px;
    text-align: center;
  }
}
@media (max-width: 370px) {
  body#interview main .sec_interview_lead .lead_intro {
    font-size: min(14px, 3.6vw);
  }
}
body#interview main .sec_interview_lead .interview_number {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_lead .interview_number {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_number {
    gap: 20px;
    padding: 0 15px;
    justify-content: center;
  }
}
@media (max-width: 370px) {
  body#interview main .sec_interview_lead .interview_number {
    gap: 15px;
  }
}
body#interview main .sec_interview_lead .interview_number > div {
  position: relative;
  padding: 0 55px;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_lead .interview_number > div {
    padding: 0 45px;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_number > div {
    padding: 0 min(35px, 9vw);
  }
}
body#interview main .sec_interview_lead .interview_number > div::before, body#interview main .sec_interview_lead .interview_number > div::after {
  position: absolute;
  content: "";
  width: 38px;
  height: 90px;
  margin: auto;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_lead .interview_number > div::before, body#interview main .sec_interview_lead .interview_number > div::after {
    width: 34px;
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_number > div::before, body#interview main .sec_interview_lead .interview_number > div::after {
    width: 29px;
    height: 67px;
  }
}
body#interview main .sec_interview_lead .interview_number > div::before {
  background: url(../images/interview/leaves_left.svg) no-repeat center center/contain;
  inset: 0 auto 0 0;
}
body#interview main .sec_interview_lead .interview_number > div::after {
  background: url(../images/interview/leaves_right.svg) no-repeat center center/contain;
  inset: 0 0 0 auto;
}
body#interview main .sec_interview_lead .interview_number dt {
  color: #e3c01d;
  text-align: center;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: bold;
}
body#interview main .sec_interview_lead .interview_number dd {
  color: #e3c01d;
  text-align: center;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: 0.04em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_number dd {
    font-size: min(18px, 3.7vw);
  }
}
body#interview main .sec_interview_lead .interview_number dd strong {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: clamp(45px, 4.5vw, 60px);
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_number dd strong {
    font-size: min(45px, 11vw);
  }
}
body#interview main .sec_interview_lead .interview_number dd span {
  color: #000;
  font-size: clamp(9px, 1vw, 12px);
  position: absolute;
  bottom: 0;
  right: -80px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_lead .interview_number dd span {
    right: -65px;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_number dd span {
    right: -50px;
  }
}
@media (max-width: 370px) {
  body#interview main .sec_interview_lead .interview_number dd span {
    right: -40px;
  }
}
body#interview main .sec_interview_lead .interview_lead_imgarea {
  width: 50%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 900px) {
  body#interview main .sec_interview_lead .interview_lead_imgarea {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_lead .interview_lead_imgarea {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_lead .interview_lead_imgarea::before {
    position: absolute;
    content: "";
    display: block;
    width: 80px;
    height: 100%;
    background: #e8faed;
    clip-path: polygon(0 0, 0% 100%, 48% 0);
    margin: auto;
    inset: 0 auto 0 -1px;
  }
}
body#interview main .sec_interview_detail {
  background: #f8f8f8;
  padding: 20px 0 120px;
}
body#interview main .sec_interview_detail .asterisk_number {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_detail .asterisk_number {
    margin-bottom: 30px;
  }
}
body#interview main .sec_interview_detail .asterisk_number li {
  position: relative;
  text-indent: -2.7em;
  padding-left: 2.5em;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #333;
}
body#interview main .sec_interview_detail .interview_card_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_detail .interview_card_list {
    grid-template-columns: 1fr;
    padding: 30px 15px 0;
    border-top: 2px solid #ddd;
  }
}
body#interview main .sec_interview_single_lead {
  background: #e8faed;
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .under_wrap {
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    grid-template-rows: auto auto;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead .under_wrap {
    padding: 0;
  }
}
body#interview main .sec_interview_single_lead .interview_lead_txtarea1 {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_lead_txtarea1 {
    grid-area: 1/1/2/2;
    padding: 0;
  }
}
body#interview main .sec_interview_single_lead .interview_lead_txtarea1 time {
  display: none;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead .interview_lead_txtarea1 time {
    display: block;
    margin-bottom: 30px;
  }
}
body#interview main .sec_interview_single_lead .interview_lead_txtarea2 {
  padding: 30px 15px 0;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_lead_txtarea2 {
    grid-area: 2/1/3/2;
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_lead_imgarea {
    grid-area: 1/2/3/3;
    display: flex;
    align-items: center;
  }
}
body#interview main .sec_interview_single_lead .interview_lead_imgarea figure {
  aspect-ratio: 52/39;
}
body#interview main .sec_interview_single_lead .interview_lead_imgarea figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body#interview main .sec_interview_single_lead .interview_lead_imgarea figure figcaption {
  color: #333;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.06em;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead .interview_lead_imgarea figure figcaption {
    margin: 5px 0 0 5px;
  }
}
body#interview main .sec_interview_single_lead .single_ttl {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 15px;
}
body#interview main .sec_interview_single_lead .interview_info_detail {
  margin-bottom: 0;
}
body#interview main .sec_interview_single_lead .hand_arrow {
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
}
body#interview main .sec_interview_single_lead .hand_arrow::before {
  position: absolute;
  content: "";
  background: url("../images/interview/hand_arrow.svg") no-repeat center center/contain;
  width: 30px;
  height: 16px;
  margin: auto;
  inset: 0 auto 0 0;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead .interview_factor {
    max-height: 130px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
  }
  body#interview main .sec_interview_single_lead .interview_factor::before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(232, 250, 237, 0) 0%, #e8faed 70%);
    width: 100%;
    height: 140px;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  body#interview main .sec_interview_single_lead .interview_factor.is-open {
    max-height: 1000px;
    margin-bottom: 15px;
  }
  body#interview main .sec_interview_single_lead .interview_factor.is-open::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_factor > div {
    display: flex;
  }
}
body#interview main .sec_interview_single_lead .interview_factor > div + div {
  margin-top: 8px;
}
body#interview main .sec_interview_single_lead .interview_factor > div dt {
  display: flex;
  align-items: center;
  position: relative;
  background: #deef68;
  padding: 8px;
  font-weight: bold;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_factor > div dt {
    width: 120px;
    text-align: center;
    padding: 15px 0;
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_factor > div dt::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 20px;
    background-color: #deef68;
    clip-path: polygon(10px 50%, 0% 0%, 0% 20px);
    margin: auto;
    inset: 0 -10px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead .interview_factor > div dt br {
    display: none;
  }
}
body#interview main .sec_interview_single_lead .interview_factor > div dd {
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_factor > div dd {
    width: calc(100% - 120px);
    padding: 10px 20px;
  }
}
body#interview main .sec_interview_single_lead .interview_factor > div dd ul li {
  position: relative;
  padding-left: 1em;
}
body#interview main .sec_interview_single_lead .interview_factor > div dd ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #f0101d;
  border-bottom: 2px solid #f0101d;
  transform: rotate(-45deg);
  margin: auto;
  inset: 7px auto auto 0;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_lead .interview_factor_toggle {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_lead .interview_factor_toggle {
    text-align: right;
  }
  body#interview main .sec_interview_single_lead .interview_factor_toggle button {
    color: #01a832;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
    padding-right: 1em;
  }
  body#interview main .sec_interview_single_lead .interview_factor_toggle button:hover {
    opacity: 0.8;
  }
  body#interview main .sec_interview_single_lead .interview_factor_toggle button::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #01a832;
    border-bottom: 2px solid #01a832;
    margin: auto;
    transform: rotate(45deg);
    inset: 0 0 5px auto;
  }
  body#interview main .sec_interview_single_lead .interview_factor_toggle button.is-open::before {
    transform: rotate(-135deg);
    inset: 3px 0 0 auto;
  }
}
body#interview main .sec_interview_single_detail {
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_detail {
    padding-bottom: 80px;
  }
}
body#interview main .sec_interview_single_detail .ta_r {
  color: #777;
  font-size: 14px;
  margin: 20px 0 50px;
}
body#interview main .sec_interview_single_detail .try_block {
  margin: 30px -15px 0;
  padding: 30px min(4vw, 20px) 40px;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_detail .try_block {
    padding: 40px min(2vw, 60px);
    margin: 80px 0 0;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_single_detail .try_block {
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_detail .try_block {
    gap: 30px;
  }
}
body#interview main .sec_interview_single_detail .try_block figure {
  width: 47%;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_single_detail .try_block figure {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_detail .try_block figure {
    width: 100%;
  }
}
body#interview main .sec_interview_single_detail .try_block .txtarea {
  width: 52%;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_single_detail .try_block .txtarea {
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_detail .try_block .txtarea {
    width: 100%;
  }
}
body#interview main .sec_interview_single_detail .try_block .try_ttl {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 2.8vw, 32px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_single_detail .try_block .try_ttl {
    font-size: min(28px, 6.5vw);
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_single_detail .try_block .try_ttl {
    width: 100%;
    margin-bottom: 40px;
  }
}
body#interview main .sec_interview_single_detail .try_block .try_ttl > br {
  display: none;
}
@media only screen and (max-width: 960px) {
  body#interview main .sec_interview_single_detail .try_block .try_ttl > br {
    display: block;
  }
}
body#interview main .sec_interview_single_detail .try_block .try_ttl .bg {
  color: #fff;
  font-size: 128%;
  line-height: 1;
  position: relative;
}
body#interview main .sec_interview_single_detail .try_block .try_ttl .bg::after {
  position: absolute;
  content: "";
  background: #01a832;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
body#interview main .sec_interview_single_detail .try_block .txt {
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 20px);
}
body#interview main .sec_interview_single_detail .try_block .gbtn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body#interview main .sec_interview_single_detail .try_block .gbtn .line_txt {
  text-align: center;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
  position: relative;
  padding: 0 1.5em 10px;
  letter-spacing: 0.08em;
}
body#interview main .sec_interview_single_detail .try_block .gbtn .line_txt::before, body#interview main .sec_interview_single_detail .try_block .gbtn .line_txt::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background: #000;
  margin: auto;
}
body#interview main .sec_interview_single_detail .try_block .gbtn .line_txt::before {
  inset: -10px auto 0 0;
  transform: rotate(65deg);
}
body#interview main .sec_interview_single_detail .try_block .gbtn .line_txt::after {
  inset: -10px 0 0 auto;
  transform: rotate(-65deg);
}
body#interview main .sec_interview_single_detail .try_block .gbtn .line_txt strong {
  color: #f0101d;
  font-family: "Noto Sans JP", sans-serif;
}
body#interview main .interview_box + .interview_box {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  body#interview main .interview_box + .interview_box {
    margin-top: 40px;
  }
}
body#interview main .interview_box .interview_question {
  position: relative;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 20px;
  border-bottom: 2px solid #01a832;
  color: #01a832;
}
@media only screen and (max-width: 767px) {
  body#interview main .interview_box .interview_question {
    padding-bottom: 15px;
  }
}
body#interview main .interview_box .interview_answer {
  line-height: 1.8;
  color: #444;
  font-size: clamp(14px, 1.6vw, 16px);
}
body#interview main .interview_box .interview_answer p + p {
  margin-top: 1em;
}
body#interview main .interview_box .interview_answer p a {
  color: blue;
  text-decoration: underline;
}
body#interview main .interview_box .interview_answer p a:hover {
  text-decoration: none;
}
body#interview main .sec_interview_connection {
  background: #f8f8f8;
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_connection {
    padding: 40px 0;
  }
}
body#interview main .sec_interview_connection:has(p.no_interview_post) {
  display: none;
}
body#interview main .sec_interview_connection h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_connection h2 {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  body#interview main .sec_interview_connection .interview_post_slider {
    padding: 0 80px;
  }
}
body#interview main .sec_interview_connection .interview_post_slider .slick-slide {
  margin: 0 16px;
  height: auto;
  background: #fff;
  box-shadow: 4px 4px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_connection .interview_post_slider .slick-slide {
    margin: 0 10px;
  }
}
body#interview main .sec_interview_connection .interview_post_slider .slick-slide:hover {
  background: #f9fffb;
  box-shadow: 0 0 0 2px #01a832;
  opacity: 1;
}
body#interview main .sec_interview_connection .interview_post_slider .slick-track {
  display: flex !important;
  align-items: stretch;
  padding: 25px 0;
}
body#interview main .sec_interview_connection .interview_card {
  height: 100%;
}
body#interview main .sec_interview_connection .interview_card a {
  box-shadow: inherit;
  /*  @include mq(tab_pc) {
      border-radius: 0;
  } */
}
body#interview main .sec_interview_connection .interview_card a:hover {
  box-shadow: inherit;
}
body#interview main .sec_interview_connection .interview_card a .interview_ttl {
  color: #01a832;
}
body#interview main .sec_interview_connection .interview_card {
  /* figure {
      border-radius: 0;
  } */
}
body#interview main .sec_interview_connection .gbtn {
  text-align: center;
  max-width: 360px;
}
@media only screen and (max-width: 767px) {
  body#interview main .sec_interview_connection .gbtn {
    max-width: 84%;
  }
}
body#interview main .slick-prev,
body#interview main .slick-next {
  width: 40px;
  height: 40px;
  background: url("../images/index/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  body#interview main .slick-prev,
  body#interview main .slick-next {
    width: 60px;
    height: 60px;
  }
}
body#interview main .slick-prev:hover,
body#interview main .slick-next:hover {
  opacity: 0.7;
}
body#interview main .slick-prev::before,
body#interview main .slick-next::before {
  content: none;
}
body#interview main .slick-prev {
  left: 20px;
  background: url("../images/index/prev.svg") no-repeat center center;
  background-size: contain;
}
body#interview main .slick-next {
  right: 20px;
}
body#interview main .slick-dots {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
body#interview main .slick-dots li {
  width: 8px;
  height: 8px;
}
body#interview main .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
}
body#interview main .slick-dots li button::before {
  opacity: 1;
  content: "";
  background: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
body#interview main .slick-dots li.slick-active button:before {
  background: #01a832;
}

#guide {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#guide .l_header .gnav ul > li > a {
  font-weight: bold;
}
#guide #contents .contact_bnsec:last-of-type {
  margin-top: 0 !important;
}
#guide .c_pageTitle,
#guide .l-breadcrumb {
  display: none;
}
#guide .region {
  padding-top: 120px;
}
@media only screen and (max-width: 767px) {
  #guide .region {
    padding-top: 50px;
  }
}
#guide {
  /***********************
  　　　アニメーション
  *************************/
}
#guide .animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
#guide .animate.is-active {
  opacity: 1;
  transform: translateY(0);
}
#guide .guide-sp-only {
  display: none;
}
@media only screen and (max-width: 767px) {
  #guide .guide-sp-only {
    display: block;
  }
}
#guide .guide-pc-only {
  display: block;
}
@media only screen and (max-width: 767px) {
  #guide .guide-pc-only {
    display: none;
  }
}
#guide .guide-sp-br {
  display: none;
}
@media only screen and (max-width: 767px) {
  #guide .guide-sp-br {
    display: block;
  }
}
#guide .gide_en_font {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
#guide .guide-text-blue {
  color: #006eb0;
}
#guide .bold {
  font-weight: bold;
}
#guide .guide-header-num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  color: #ffffff;
  font-size: 64px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  border-radius: 50%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-header-num {
    width: 50px;
    height: 50px;
    font-size: 29px;
    margin-bottom: 10px;
  }
}
#guide .guide-header-title {
  font-size: 48px;
  font-weight: bold;
  margin: 0 0 60px 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-header-title {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
}
#guide .guide-marker-yellow {
  background: linear-gradient(transparent 60%, #ffe780 40%);
  padding: 0 4px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #guide .guide-marker-yellow {
    background: linear-gradient(transparent 70%, #ffe780 30%);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-marker-yellow.guide-pc-only {
    background: none;
  }
}
@media (min-width: 769px) {
  #guide .guide-marker-yellow.guide-sp-only {
    background: none;
  }
}
#guide .guide-text-green {
  color: #00a65e;
}
#guide .guide-bottom-cta-card {
  background-color: #ffffff;
  border-radius: 30px;
  padding: min(5.2vw, 100px);
  text-align: center;
  margin-top: 100px;
  border: 10px solid #eeeff0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card {
    margin-top: 50px;
    border: 5px solid #eeeff0;
  }
}
#guide .guide-bottom-cta-card .guide-cta-title {
  font-size: min(3.5vw, 40px);
  font-weight: bold;
  margin: 0 0 50px 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-cta-title {
    font-size: 19px;
    line-height: 1.5;
    margin: 0 0 20px 0;
  }
}
#guide .guide-bottom-cta-card .guide-cta-title .guide-text-green {
  font-size: 120%;
}
#guide .guide-bottom-cta-card .guide-check-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-check-list {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
  }
}
#guide .guide-bottom-cta-card .guide-check-list .guide-check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-check-list .guide-check-item {
    gap: 6px;
    font-size: 16px;
  }
}
#guide .guide-bottom-cta-card .guide-check-list .guide-check-item .guide-check-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #00a65e;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-check-list .guide-check-item .guide-check-icon {
    width: 18px;
    height: 18px;
  }
}
#guide .guide-bottom-cta-card .guide-check-list .guide-check-item .guide-check-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 20px;
  height: 15px;
  border-left: 3px solid #ffe780;
  border-bottom: 3px solid #ffe780;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-check-list .guide-check-item .guide-check-icon::after {
    top: 2px;
    left: 4px;
    width: 10px;
    height: 9px;
    border-left: 2px solid #ffe780;
    border-bottom: 2px solid #ffe780;
  }
}
#guide .guide-bottom-cta-card .guide-cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-cta-btn-group {
    flex-direction: column;
    gap: 20px;
  }
}
#guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn {
  border-radius: 50px;
  font-size: 24px;
  padding: 20px 40px;
  max-width: 560px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  line-height: 1.3;
  flex: 1;
  position: relative;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn {
    max-width: 100%;
    font-size: 18px;
    padding: 20px 30px;
  }
}
#guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn:hover {
  transform: translateY(3px);
  box-shadow: none;
  opacity: 1;
}
#guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  right: 11%;
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn::after {
    right: 20px;
    width: 8px;
    height: 8px;
  }
}
#guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn-red {
  background-color: #f45943;
  color: #ffffff;
}
#guide .guide-bottom-cta-card .guide-cta-btn-group .guide-btn-green {
  background-color: #00a65e;
  color: #ffffff;
}
#guide .guide-chat {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
}
#guide .guide-chat .guide-chat-item {
  display: flex;
  align-items: center;
  gap: 54px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-chat .guide-chat-item {
    gap: 15px;
  }
}
#guide .guide-chat .guide-chat-item.guide-chat-left {
  justify-content: flex-start;
}
#guide .guide-chat .guide-chat-item.guide-chat-left .guide-chat-bubble::before {
  left: -30px;
  border-right-color: #ffffff;
}
@media only screen and (max-width: 767px) {
  #guide .guide-chat .guide-chat-item.guide-chat-left .guide-chat-bubble::before {
    left: -8px;
  }
}
#guide .guide-chat .guide-chat-item.guide-chat-right {
  justify-content: flex-end;
}
#guide .guide-chat .guide-chat-item.guide-chat-right .guide-chat-bubble::before {
  right: -30px;
  border-right: 0;
  border-left: 30px solid #fff;
  border-left-color: #ffffff;
}
@media only screen and (max-width: 767px) {
  #guide .guide-chat .guide-chat-item.guide-chat-right .guide-chat-bubble::before {
    right: -8px;
    border-left: 8px solid #fff;
  }
}
#guide .guide-chat .guide-chat-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-chat .guide-chat-icon {
    width: 50px;
    height: 50px;
  }
}
#guide .guide-chat .guide-chat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#guide .guide-chat .guide-chat-bubble {
  position: relative;
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 790px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-chat .guide-chat-bubble {
    padding: 15px;
    font-size: 0.85rem;
  }
}
#guide .guide-chat .guide-chat-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 30px solid #fff;
}
@media only screen and (max-width: 767px) {
  #guide .guide-chat .guide-chat-bubble::before {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 8px solid #fff;
  }
}
#guide .guide-hero-section {
  position: relative;
  width: 100%;
  background-color: #ffeea5;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#guide .guide-hero-section img {
  max-width: 100%;
  height: auto;
}
#guide .guide-hero-section .guide-hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 120px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media (min-width: 769px) {
  #guide .guide-hero-section .guide-hero-inner {
    min-height: 560px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-hero-inner {
    padding: 70px 30px 150px;
  }
}
#guide .guide-hero-section .guide-decorations .guide-dec01 {
  position: absolute;
  width: 686px;
  height: auto;
  top: 41%;
  right: 79%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-decorations .guide-dec01 {
    width: 411px;
    top: -40px;
    right: auto;
    left: -70px;
  }
}
#guide .guide-hero-section .guide-decorations .guide-dec02 {
  position: absolute;
  width: 686px;
  height: auto;
  bottom: 48%;
  left: 82%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-decorations .guide-dec02 {
    width: 274px;
    bottom: 0;
    right: -135px;
    left: auto;
  }
}
#guide .guide-hero-section .guide-hero-card {
  position: relative;
  background-color: #ffffff;
  border: 6px solid #009a50;
  border-radius: 20px;
  padding: 40px 30px 50px;
  text-align: center;
  z-index: 10;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-hero-card {
    padding: 30px 20px 60px;
  }
}
#guide .guide-hero-section .guide-icon-docs {
  position: absolute;
  z-index: 11;
}
@media (min-width: 768px) {
  #guide .guide-hero-section .guide-icon-docs {
    top: -20px;
    left: max(-5vw, -100px);
    width: min(30vw, 317px);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-icon-docs {
    top: -50px;
    left: -16px;
    width: 93px;
  }
}
#guide .guide-hero-section .guide-icon-pencil {
  position: absolute;
  z-index: 11;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-icon-pencil {
    top: -35px;
    right: -6.5px;
    width: 68px;
  }
}
#guide .guide-hero-section .guide-icon-person {
  position: absolute;
  z-index: 11;
}
@media (min-width: 769px) {
  #guide .guide-hero-section .guide-icon-person {
    bottom: -180px;
    right: max(-13vw, -200px);
    width: min(25vw, 256px);
  }
}
@media (max-width: 1120px) {
  #guide .guide-hero-section .guide-icon-person {
    bottom: -180px;
    right: -5vw;
    width: 20vw;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-icon-person {
    bottom: -260px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
  }
}
#guide .guide-hero-section .guide-badge-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-badge-area {
    font-size: 16px;
  }
}
#guide .guide-hero-section .guide-badge-text {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
#guide .guide-hero-section .guide-hl-circle {
  background-color: #ffe780;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  line-height: 1;
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-hl-circle {
    font-size: 24px;
    width: 1.6em;
    height: 1.6em;
  }
}
#guide .guide-hero-section .guide-hl-circle-group {
  display: inline-flex;
  margin-left: 0.1em;
  margin-right: 0.1em;
}
#guide .guide-hero-section .guide-hl-circle-group .guide-hl-circle {
  margin-left: -0.35em;
}
#guide .guide-hero-section .guide-hl-circle-group .guide-hl-circle:first-child {
  margin-left: 0;
}
#guide .guide-hero-section .guide-green-text {
  color: #009a50;
}
#guide .guide-hero-section .guide-sub-title {
  color: #009a50;
  font-size: 40px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-sub-title {
    font-size: 20px;
  }
}
#guide .guide-hero-section .guide-catchphrase {
  color: #009a50;
  font-size: 58px;
  font-weight: bold;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-catchphrase {
    font-size: 32px;
  }
}
#guide .guide-hero-section .guide-main-title {
  font-size: clamp(65px, 6vw, 80px);
  font-weight: 900;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section .guide-main-title {
    font-size: 9vw;
  }
}
#guide .guide-survey-section img,
#guide .guide-divider-bg img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#guide .guide-survey-section p,
#guide .guide-divider-bg p {
  margin: 0;
}
#guide .guide-survey-section {
  position: relative;
  padding: 120px 20px;
  background-color: #ffffff;
  text-align: center;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section {
    padding: 50px 20px;
  }
}
#guide .guide-survey-section .guide-survey-title {
  font-size: 40px;
  font-weight: bold;
  margin: 0 0 40px 0;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-survey-title {
    font-size: 24px;
  }
}
#guide .guide-survey-section .guide-survey-title .guide-text-green {
  color: #009a50;
}
#guide .guide-survey-section .guide-survey-title .guide-text-large {
  /* margin: 0 4px; */
  font-size: 140%;
}
#guide .guide-survey-section .guide-chart-wrapper {
  max-width: 1100px;
  margin-left: min(4.688vw, 90px);
  border-left: 4px solid #000;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: left;
  padding: 35px 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-chart-wrapper {
    border-left: 2px solid #000;
    padding-left: 20px;
    gap: 30px;
  }
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-item {
    gap: 8px;
  }
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-label {
  font-weight: bold;
  font-size: 24px;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-label {
    font-size: 16px;
  }
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area {
    gap: 8px;
  }
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar {
  height: 80px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar {
    height: 40px;
  }
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar.guide-bar-1 {
  width: 85%;
  background-color: #00a65e;
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar.guide-bar-2 {
  width: 68%;
  background-color: rgba(0, 166, 94, 0.75);
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar.guide-bar-3 {
  width: 55%;
  background-color: rgba(0, 166, 94, 0.5);
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar.guide-bar-4 {
  width: 45%;
  background-color: rgba(0, 166, 94, 0.25);
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-val {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-val {
    font-size: 29px;
  }
}
#guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-val small {
  font-size: 41%;
}
#guide .guide-divider-bg {
  position: relative;
  background-color: #faf9f4;
}
#guide .guide-divider-bg .guide-triangle-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  height: 100px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-triangle-divider {
    height: 40px;
  }
}
#guide .guide-divider-bg .guide-nav-section {
  padding: 150px 20px 120px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-nav-section {
    padding: 100px 20px 50px;
  }
}
#guide .guide-divider-bg .guide-nav-header {
  position: relative;
  max-width: 1300px;
  margin: 0 auto 60px;
  text-align: center;
}
#guide .guide-divider-bg .guide-nav-header .guide-nav-title-box {
  position: relative;
  z-index: 2;
}
#guide .guide-divider-bg .guide-nav-header .guide-nav-sub {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}
#guide .guide-divider-bg .guide-nav-header .guide-nav-sub .guide-text-green {
  color: #009a50;
}
#guide .guide-divider-bg .guide-nav-header .guide-nav-main {
  font-size: 48px;
  font-weight: 900;
  margin: 0;
}
#guide .guide-divider-bg .guide-nav-header .guide-nav-img {
  position: absolute;
  right: min(3vw, 80px);
  bottom: -30px;
  width: min(15vw, 225px);
  z-index: 1;
}
@media (max-width: 1000px) {
  #guide .guide-divider-bg .guide-nav-header .guide-nav-img {
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-nav-header .guide-nav-img {
    width: 140px;
  }
}
#guide .guide-divider-bg .guide-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card {
  position: relative;
  background-color: var(--bg-color);
  border: 3px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  display: grid;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card:hover {
  transform: translateY(6px);
  box-shadow: none;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card a {
  padding: 60px 10px 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-card-container .guide-nav-card a {
    padding: 40px 10px 10px;
  }
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card.guide-card-1 {
  --num-bg: #ffd24b;
  --border-color: #ffec5c;
  --bg-color: #fff7be;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card.guide-card-2 {
  --num-bg: #68cdff;
  --border-color: #ace4ff;
  --bg-color: #d5edf9;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card.guide-card-3 {
  --num-bg: #ff938b;
  --border-color: #ffb3ad;
  --bg-color: #ffe3e1;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card.guide-card-4 {
  --num-bg: #00a65e;
  --border-color: #a6e8bc;
  --bg-color: #e3f5e9;
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-num {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--num-bg);
  color: #ffffff;
  font-size: 48px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-num {
    top: -25px;
    width: 50px;
    height: 50px;
    font-size: 29px;
  }
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-icon {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-icon {
    width: 50%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 0 auto 10px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-icon img {
    width: 100%;
    height: 60px;
    object-fit: contain;
  }
}
#guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-text {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-arrow svg {
    width: 18px;
    height: 10.5px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section .guide-text-large {
    font-size: 29px;
  }
  #guide .guide-survey-section .guide-chart-wrapper {
    border-left-width: 2px;
    padding-left: 0;
    gap: 20px;
  }
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-label {
    font-size: 0.85rem;
    padding-left: 10px;
  }
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar {
    height: 30px;
  }
  #guide .guide-survey-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-val {
    font-size: 22px;
  }
  #guide .guide-divider-bg .guide-nav-header {
    margin-bottom: 150px;
  }
  #guide .guide-divider-bg .guide-nav-header .guide-nav-main {
    font-size: 24px;
  }
  #guide .guide-divider-bg .guide-nav-header .guide-nav-sub {
    font-size: 15px;
  }
  #guide .guide-divider-bg .guide-nav-header .guide-nav-img {
    width: 150px;
    right: 50%;
    bottom: -150px;
    transform: translateX(50%);
  }
  #guide .guide-divider-bg .guide-card-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  #guide .guide-divider-bg .guide-card-container .guide-nav-card .guide-card-text {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
}
#guide .guide-flow-section {
  background-color: #fff7be;
  padding: 120px 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section {
    padding: 50px 20px;
  }
}
#guide .guide-flow-section img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#guide .guide-flow-section p {
  margin: 0;
}
#guide .guide-flow-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#guide .guide-flow-section a {
  text-decoration: none;
}
#guide .guide-flow-section .guide-flow-inner {
  max-width: 1600px;
  margin: 0 auto;
}
#guide .guide-flow-section .guide-flow-header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  #guide .guide-flow-section .guide-flow-header {
    margin-bottom: 40px;
  }
}
#guide .guide-flow-section .guide-header-num {
  background-color: #ffe780;
}
#guide .guide-flow-section .guide-header-desc {
  font-size: min(3vw, 32px);
  font-weight: 500;
}
@media (max-width: 768px) {
  #guide .guide-flow-section .guide-header-desc {
    font-size: 16px;
  }
}
#guide .guide-flow-section .guide-marker-yellow {
  padding: 0 0 0 10px;
}
#guide .guide-flow-section .guide-text-blue {
  color: #1a5f98;
  font-size: 150%;
  font-weight: bold;
}
#guide .guide-flow-section .guide-step-0-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 40px;
  height: 160px;
  position: relative;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-0-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
    height: auto;
  }
}
#guide .guide-flow-section .guide-step-0-left {
  display: flex;
  align-items: center;
  width: 32%;
  position: absolute;
  left: 20px;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-0-left {
    position: unset;
    width: 100%;
    max-width: 30%;
    justify-content: center;
    flex-direction: column;
  }
}
#guide .guide-flow-section .guide-step-0-title {
  font-size: min(3vw, 32px);
  font-weight: bold;
  margin: 0;
  width: 38%;
  margin-left: 35%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-0-title {
    font-size: 19px;
    width: auto;
    margin-left: 0;
  }
}
#guide .guide-flow-section .guide-btn-small-green {
  background-color: #00a65e;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px 10px 20px;
  border-radius: 4px;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.2s;
  position: relative;
  max-width: 240px;
  text-align: center;
  width: 100%;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-btn-small-green {
    font-size: 0.85rem;
  }
}
#guide .guide-flow-section .guide-btn-small-green:hover {
  opacity: 1;
  transform: translateY(3px);
  box-shadow: none;
}
#guide .guide-flow-section .guide-btn-small-green::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-btn-small-green::after {
    right: 12px;
    width: 5px;
    height: 5px;
  }
}
#guide .guide-flow-section .guide-step-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 50px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  gap: 4.5%;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-card {
    display: block;
    padding: 25px 20px;
    margin-bottom: 35px;
    gap: 20px;
  }
}
#guide .guide-flow-section .guide-step-with-arrow::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #ffffff;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-with-arrow::after {
    bottom: -20px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ffffff;
  }
}
#guide .guide-flow-section .guide-step-content {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-content {
    padding-top: 5px;
  }
}
#guide .guide-flow-section .guide-step-header-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-header-area {
    padding-right: 100px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
#guide .guide-flow-section .guide-step-badge {
  background-color: #ffe600;
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  padding: 4px 12px;
  border-radius: 50px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-badge {
    font-size: 13px;
    border-radius: 20px;
  }
}
#guide .guide-flow-section .guide-step-title {
  font-size: min(3.8vw, 36px);
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-title {
    font-size: 22px;
  }
}
#guide .guide-flow-section .guide-step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-list {
    gap: 10px 20px;
  }
}
#guide .guide-flow-section .guide-step-list li {
  position: relative;
  padding-left: 14px;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-list li {
    font-size: 15px;
  }
}
#guide .guide-flow-section .guide-step-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffe780;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-list li::before {
    width: 6px;
    height: 6px;
  }
}
#guide .guide-flow-section .guide-step-icon-area {
  flex-shrink: 0;
  width: 14.5%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-icon-area {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
  }
}
#guide .guide-flow-section .guide-icon-circle {
  width: 100%;
  height: auto;
  background-color: #eeeff0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-icon-circle {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
}
#guide .guide-flow-section .guide-icon-circle img {
  max-width: 80%;
  height: auto;
}
#guide .guide-flow-section .guide-icon-circle.w100 img {
  max-width: 100%;
}
#guide .guide-flow-section .guide-icon-circle.w61 img {
  max-width: 61%;
}
#guide .guide-flow-section .guide-step-action-bg {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-action-bg {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
}
#guide .guide-flow-section .guide-step-note-bg {
  background-color: #e9f5ff;
  color: #1a5f98;
  padding: 20px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-step-note-bg {
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 14px;
    gap: 10px;
  }
}
#guide .guide-flow-section .guide-note-icon {
  width: 37px;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-note-icon {
    width: 24px;
  }
}
#guide .guide-flow-section .guide-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px 15px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  line-height: 1.3;
  flex: 1;
  position: relative;
  max-width: 320px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-btn {
    font-size: 15px;
    border-radius: 8px;
  }
}
#guide .guide-flow-section .guide-btn:hover {
  transform: translateY(3px);
  box-shadow: none;
  opacity: 1;
}
#guide .guide-flow-section .guide-btn::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section .guide-btn::after {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}
#guide .guide-flow-section .guide-btn-outline-red {
  background-color: #ffffff;
  color: #f45943;
  border: 2px solid #f45943;
}
#guide .guide-flow-section .guide-btn-red {
  background-color: #f45943;
  color: #ffffff;
}
#guide .guide-flow-section .guide-btn-green {
  background-color: #00a65e;
  color: #ffffff;
  max-width: 400px;
}
#guide .guide-store-section {
  background-color: #e2f0f7;
  padding: 120px 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section {
    padding: 50px 20px;
  }
}
#guide .guide-store-section .guide-inner {
  max-width: 1600px;
  margin: 0 auto;
}
#guide .guide-store-section .guide-header {
  text-align: center;
  margin-bottom: 40px;
}
#guide .guide-store-section .guide-header .guide-header-num {
  background-color: #68cdff;
}
#guide .guide-store-section .guide-factors {
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-factors {
    margin-bottom: 30px;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-lead,
#guide .guide-store-section .guide-factors .guide-factors-tail {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-factors .guide-factors-lead,
  #guide .guide-store-section .guide-factors .guide-factors-tail {
    font-size: 19px;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-lead {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-factors .guide-factors-lead {
    margin-top: 20px;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-tail {
  margin-top: 20px;
}
#guide .guide-store-section .guide-factors .guide-factors-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-factors .guide-factors-boxes {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-box {
  background-color: #ffe600;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 33%;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-factors .guide-factors-box {
    width: 100%;
    max-width: 300px;
    padding: 15px 25px;
    border-radius: 4px;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-box .guide-check-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
@media (max-width: 1000px) {
  #guide .guide-store-section .guide-factors .guide-factors-box .guide-check-icon {
    width: 24px;
    height: 24px;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-box .guide-check-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 26px;
  height: 18px;
  border-left: 3px solid #00a65e;
  border-bottom: 3px solid #00a65e;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 1000px) {
  #guide .guide-store-section .guide-factors .guide-factors-box .guide-check-icon::after {
    top: 3px;
    left: 4px;
    width: 15px;
    height: 12px;
    border-left: 2px solid #00a65e;
    border-bottom: 2px solid #00a65e;
  }
}
#guide .guide-store-section .guide-factors .guide-factors-box .guide-box-text {
  font-weight: bold;
  font-size: min(3vw, 32px);
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-factors .guide-factors-box .guide-box-text {
    font-size: 18px;
  }
}
#guide .guide-store-section .guide-arrow {
  position: relative;
  width: 160px;
  height: 40px;
  margin: 0 auto 0px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-arrow {
    width: 80px;
    height: 20px;
    margin: 0 auto 40px;
  }
}
#guide .guide-store-section .guide-arrow::before, #guide .guide-store-section .guide-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 3px;
  background-color: #006eb0;
}
#guide .guide-store-section .guide-arrow::before {
  left: 0;
  transform: rotate(25deg);
  transform-origin: bottom right;
}
#guide .guide-store-section .guide-arrow::after {
  right: 0;
  transform: rotate(-25deg);
  transform-origin: bottom left;
}
#guide .guide-store-section .guide-catchphrase {
  text-align: center;
  font-size: min(4vw, 40px);
  font-weight: 900;
  margin: 0 0 80px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-catchphrase {
    font-size: 24px;
    margin: 0 0 50px;
  }
}
#guide .guide-store-section .guide-catchphrase .guide-marker {
  background: linear-gradient(transparent 60%, #fce7a1 40%);
  padding: 0 4px;
  display: inline-block;
}
#guide .guide-store-section .guide-catchphrase .guide-text-blue {
  color: #006eb0;
  font-size: 120%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section .guide-catchphrase {
    font-size: 19px;
  }
}
#guide .guide-tips-section {
  background-color: #ffe3e1;
  padding: 120px 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section {
    padding: 50px 20px;
  }
}
#guide .guide-tips-section .guide-inner {
  max-width: 1600px;
  margin: 0 auto;
}
#guide .guide-tips-section .guide-header {
  text-align: center;
  margin-bottom: 40px;
}
#guide .guide-tips-section .guide-header .guide-header-num {
  background-color: #ff938b;
}
#guide .guide-tips-section .guide-points {
  display: flex;
  justify-content: space-between;
  gap: 1.6%;
  margin: 0 auto 60px;
  max-width: 1600px;
}
@media (max-width: 1200px) {
  #guide .guide-tips-section .guide-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0 auto 40px;
    max-width: 800px;
  }
}
#guide .guide-tips-section .guide-points .guide-point-item {
  background-color: #ffffff;
  border-radius: 50%;
  width: 24%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  #guide .guide-tips-section .guide-points .guide-point-item {
    width: 100%;
  }
}
#guide .guide-tips-section .guide-points .guide-point-icon {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  #guide .guide-tips-section .guide-points .guide-point-icon {
    height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-points .guide-point-icon {
    height: 45px;
  }
}
#guide .guide-tips-section .guide-points .guide-point-icon img {
  max-height: 100%;
  max-width: 100%;
}
#guide .guide-tips-section .guide-points .guide-point-badge {
  background-color: #ffe600;
  color: #111;
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  padding: 3px 20px;
  border-radius: 30px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-points .guide-point-badge {
    font-size: 12px;
    padding: 3px 12px;
  }
}
#guide .guide-tips-section .guide-points .guide-point-text {
  font-weight: bold;
  font-size: 28px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-points .guide-point-text {
    font-size: 14px;
  }
}
#guide .guide-tips-section .guide-advice-banner {
  background-color: #fff8cd;
  border-radius: 8px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  height: 136px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-advice-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    height: auto;
  }
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-left {
  display: flex;
  align-items: flex-end;
  gap: 1.5%;
  width: 34%;
  position: absolute;
  left: 30px;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-advice-banner .guide-advice-left {
    position: unset;
    width: 70%;
    align-items: center;
    justify-content: center;
  }
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-left .guide-advice-label {
  width: 60.5%;
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-left .guide-advice-label img {
  width: 100%;
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-left > img {
  width: 38%;
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-label {
  display: flex;
  align-items: center;
  color: #f9462c;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-advice-banner .guide-advice-label {
    margin-bottom: 0;
  }
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-slash {
  font-size: 2rem;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-advice-banner .guide-advice-img {
    margin-bottom: 0;
  }
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-right {
  margin-left: 38%;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-advice-banner .guide-advice-right {
    margin-left: 0;
  }
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-right .guide-advice-text {
  font-weight: bold;
  font-size: min(3vw, 28px);
  line-height: 1.6;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section .guide-advice-banner .guide-advice-right .guide-advice-text {
    font-size: 16px;
  }
}
#guide .guide-tips-section .guide-advice-banner .guide-advice-right .guide-text-red {
  color: #f9462c;
}
#guide .guide-docs-section {
  background-color: #e3f5e9;
  padding: 120px 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section {
    padding: 50px 20px;
  }
}
#guide .guide-docs-section .guide-inner {
  max-width: 1600px;
  margin: 0 auto;
}
#guide .guide-docs-section .guide-header {
  text-align: center;
  margin-bottom: 40px;
}
#guide .guide-docs-section .guide-header .guide-header-num {
  background-color: #009a50;
}
#guide .guide-docs-section .guide-icon-check {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #00a65e;
  position: relative;
}
@media (max-width: 1000px) {
  #guide .guide-docs-section .guide-icon-check {
    width: 18px;
    height: 18px;
  }
}
#guide .guide-docs-section .guide-icon-check::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 20px;
  height: 15px;
  border-left: 3px solid #ffe780;
  border-bottom: 3px solid #ffe780;
  transform: rotate(-45deg);
}
@media (max-width: 1000px) {
  #guide .guide-docs-section .guide-icon-check::after {
    top: 2px;
    left: 4px;
    width: 10px;
    height: 9px;
    border-left: 2px solid #ffe780;
    border-bottom: 2px solid #ffe780;
  }
}
#guide .guide-docs-section .guide-car-cards {
  display: flex;
  gap: 2.5%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-car-cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
#guide .guide-docs-section .guide-car-cards .guide-car-card {
  flex: 1;
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-car-cards .guide-car-card {
    border-radius: 12px;
  }
}
#guide .guide-docs-section .guide-car-cards .guide-car-card-header {
  background-color: #ffe780;
  color: #006eb0;
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-car-cards .guide-car-card-header {
    padding: 15px;
    font-size: 1.25rem;
  }
}
#guide .guide-docs-section .guide-car-cards .guide-car-card-body {
  padding: 60px 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-car-cards .guide-car-card-body {
    padding: 20px;
  }
}
#guide .guide-docs-section .guide-car-cards .guide-check-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 30px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 500px) {
  #guide .guide-docs-section .guide-car-cards .guide-check-grid {
    gap: 20px 15px;
    grid-template-columns: 1fr;
  }
}
#guide .guide-docs-section .guide-car-cards .guide-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: bold;
  font-size: min(2.8vw, 24px);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-car-cards .guide-check-grid li {
    font-size: 15px;
  }
}
#guide .guide-docs-section .guide-car-cards .guide-check-grid li p {
  width: calc(100% - 42px);
}
@media (max-width: 1000px) {
  #guide .guide-docs-section .guide-car-cards .guide-check-grid li p {
    width: calc(100% - 28px);
  }
}
#guide .guide-docs-section .guide-car-cards .guide-note {
  margin: 40px 0 0 0;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 500px) {
  #guide .guide-docs-section .guide-car-cards .guide-note {
    margin: 20px 0 0 0;
    font-size: 13px;
    text-align: left;
  }
}
#guide .guide-docs-section .guide-arrow-green {
  position: relative;
  width: 220px;
  height: 50px;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-arrow-green {
    width: 100px;
    height: 25px;
  }
}
#guide .guide-docs-section .guide-arrow-green::before, #guide .guide-docs-section .guide-arrow-green::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 4px;
  background-color: #009a50;
}
#guide .guide-docs-section .guide-arrow-green::before {
  left: 0;
  transform: rotate(25deg);
  transform-origin: bottom right;
}
#guide .guide-docs-section .guide-arrow-green::after {
  right: 0;
  transform: rotate(-25deg);
  transform-origin: bottom left;
}
#guide .guide-docs-section .guide-additional-docs {
  text-align: center;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-additional-docs {
    margin-bottom: 50px;
  }
}
#guide .guide-docs-section .guide-additional-docs .guide-additional-title {
  font-size: min(4vw, 40px);
  font-weight: 900;
  margin: 0 0 60px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-additional-docs .guide-additional-title {
    font-size: 19px;
    margin: 0 0 30px;
  }
}
#guide .guide-docs-section .guide-additional-docs .guide-marker {
  background: linear-gradient(transparent 50%, #fce7a1 50%);
  padding: 0 4px;
  display: inline-block;
}
#guide .guide-docs-section .guide-additional-docs .guide-text-blue {
  font-size: 140%;
  color: #006eb0;
}
#guide .guide-docs-section .guide-additional-docs .guide-additional-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-additional-docs .guide-additional-list {
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
    margin: 0 auto;
    gap: 15px;
  }
}
#guide .guide-docs-section .guide-additional-docs .guide-additional-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: bold;
  font-size: 24px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-additional-docs .guide-additional-item {
    font-size: 16px;
    gap: 10px;
  }
}
#guide .guide-docs-section .guide-advice-banner {
  background-color: #fff8cd;
  border-radius: 8px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  height: 181px;
}
@media (max-width: 1000px) {
  #guide .guide-docs-section .guide-advice-banner {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-advice-banner {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-left {
  display: flex;
  align-items: flex-end;
  gap: 1.5%;
  width: 34%;
  position: absolute;
  left: 30px;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-advice-banner .guide-advice-left {
    position: unset;
    width: 70%;
    align-items: center;
    justify-content: center;
  }
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-left .guide-advice-label {
  width: 60.5%;
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-left .guide-advice-label img {
  width: 100%;
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-left > img {
  width: 38%;
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-label {
  display: flex;
  align-items: center;
  color: #f9462c;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-advice-banner .guide-advice-label {
    margin-bottom: 0;
  }
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-slash {
  font-size: 2rem;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-advice-banner .guide-advice-img {
    margin-bottom: 0;
  }
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-right {
  margin-left: 38%;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-advice-banner .guide-advice-right {
    margin-left: 0;
  }
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-right .guide-advice-text {
  font-weight: bold;
  font-size: min(3vw, 28px);
  line-height: 1.6;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section .guide-advice-banner .guide-advice-right .guide-advice-text {
    font-size: 16px;
  }
}
#guide .guide-docs-section .guide-advice-banner .guide-advice-right .guide-text-red {
  color: #f9462c;
}
#guide .guide-useful-section {
  background-color: #fff;
  padding: 120px 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section {
    padding: 50px 0;
  }
}
#guide .guide-useful-section .guide-section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 80px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-section-title {
    font-size: 24px;
    margin: 0 0 50px;
  }
}
#guide .guide-useful-section .guide-section-title .guide-marker {
  background: linear-gradient(transparent 60%, #fce7a1 40%);
  padding: 0 8px;
  display: inline-block;
}
#guide .guide-useful-section .guide-useful-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-list {
    gap: 40px;
  }
}
#guide .guide-useful-section .guide-useful-item {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-item {
    flex-direction: column;
    gap: 30px;
  }
}
#guide .guide-useful-section .guide-useful-item.guide-reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-item.guide-reverse {
    flex-direction: column;
  }
}
#guide .guide-useful-section .guide-useful-image {
  flex-shrink: 0;
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-image {
    width: 260px;
    margin: 0 auto;
  }
}
#guide .guide-useful-section .guide-useful-image img {
  width: 100%;
  height: auto;
}
#guide .guide-useful-section .guide-useful-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#guide .guide-useful-section .guide-useful-title {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-title {
    font-size: 21px;
    gap: 12px;
    margin: 0 0 20px;
    align-items: flex-start;
  }
}
#guide .guide-useful-section .guide-useful-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 7px solid #009a50;
  border-radius: 50%;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-title::before {
    width: 14px;
    height: 14px;
    border: 4px solid #009a50;
    margin-top: 10px;
  }
}
#guide .guide-useful-section .guide-useful-text {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 60px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-useful-text {
    font-size: 15px;
    margin: 0 0 30px;
  }
}
#guide .guide-useful-section .guide-btn-green {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00a65e;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  padding: 15px 50px 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  width: 100%;
  max-width: 240px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-btn-green {
    border-radius: 8px;
    font-size: 16px;
    padding: 15px 30px;
  }
}
#guide .guide-useful-section .guide-btn-green:hover {
  opacity: 1;
  transform: translateY(3px);
  box-shadow: none;
}
#guide .guide-useful-section .guide-btn-green::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-btn-green::after {
    width: 6px;
    height: 6px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-useful-section .guide-btn-green {
    align-self: center;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }
}
#guide .guide-faq-section {
  background-color: #fcfbf1;
  padding: 120px 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section {
    padding: 50px 0;
  }
}
#guide .guide-faq-section .guide-section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 80px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-section-title {
    font-size: 24px;
    margin: 0 0 40px;
  }
}
#guide .guide-faq-section .guide-section-title .guide-marker {
  background: linear-gradient(transparent 60%, #fce7a1 40%);
  padding: 0 8px;
  display: inline-block;
}
#guide .guide-faq-section .guide-faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-list {
    gap: 15px;
  }
}
#guide .guide-faq-section .guide-faq-item {
  background-color: #ffffff;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-item {
    border-radius: 12px;
  }
}
#guide .guide-faq-section .guide-faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  cursor: pointer;
  list-style: none; /* デフォルトの三角形を消す（モダンブラウザ） */
}
#guide .guide-faq-section .guide-faq-q::-webkit-details-marker {
  display: none;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-q {
    padding: 20px 15px;
    gap: 15px;
  }
}
#guide .guide-faq-section .guide-faq-q-icon {
  font-size: 32px;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  flex-shrink: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-q-icon {
    font-size: 24px;
  }
}
#guide .guide-faq-section .guide-faq-q-text {
  font-size: 20px;
  font-weight: 600;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-q-text {
    font-size: 15px;
  }
}
#guide .guide-faq-section .guide-faq-arrow {
  width: 30px;
  height: 15px;
  background: url("../images/guide/guide_pink_arrow.svg") no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-arrow {
    width: 20px;
    height: 10px;
  }
}
#guide .guide-faq-section .guide-faq-item[open] .guide-faq-arrow {
  transform: rotate(-180deg);
  margin-top: 6px;
}
#guide .guide-faq-section .guide-faq-a {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 30px 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-a {
    padding: 0 15px 20px;
    gap: 15px;
  }
}
#guide .guide-faq-section .guide-faq-a-icon {
  font-size: 32px;
  font-weight: 900;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  color: #26b96e;
  flex-shrink: 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-a-icon {
    font-size: 24px;
  }
}
#guide .guide-faq-section .guide-faq-a-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding-top: 4px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section .guide-faq-a-text {
    font-size: 14px;
    padding-top: 2px;
  }
}
#guide {
  /* ここから廃車買取ガイドのCSSを追記 */
}
@media only screen and (max-width: 767px) {
  #guide .haisyaguide-section .guide-header-title {
    font-size: clamp(22px, 6vw, 30px);
  }
}
#guide .guide-hero-section.haisyaguide-section {
  background-color: #e9f5ff;
}
@media (min-width: 768px) {
  #guide .guide-hero-section.haisyaguide-section .guide-icon-docs {
    top: 42px;
    left: max(-2.083vw, -40px);
    width: min(13.542vw, 260px);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.haisyaguide-section .guide-icon-docs {
    top: -51px;
    left: -17px;
    width: 131px;
  }
}
@media (min-width: 768px) {
  #guide .guide-hero-section.haisyaguide-section .guide-icon-pencil {
    top: -12px;
    right: max(-1.562vw, -30px);
    width: min(8.333vw, 160px);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.haisyaguide-section .guide-icon-pencil {
    top: -36px;
    right: -12px;
    width: 69px;
  }
}
#guide .guide-hero-section.haisyaguide-section .guide-badge-area {
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.haisyaguide-section .guide-badge-area {
    font-size: 24px;
  }
}
#guide .guide-hero-section.haisyaguide-section .guide-badge-area .to {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.haisyaguide-section .guide-badge-area .to {
    font-size: 16px;
  }
}
#guide .guide-hero-section.haisyaguide-section .guide-hl-circle-group {
  margin-left: 0;
  margin-right: 0;
}
#guide .guide-hero-section.haisyaguide-section .guide-hl-circle-group .indent01 {
  position: relative;
  margin-right: -0.2em;
  z-index: 1;
}
#guide .guide-hero-section.haisyaguide-section .guide-hl-circle-group .indent02 {
  margin-left: -0.2em;
  position: relative;
  z-index: 1;
}
#guide .guide-hero-section.haisyaguide-section .guide-hl-circle-group .guide-hl-circle.first {
  margin-left: 0;
}
#guide .guide-hero-section.haisyaguide-section .guide-hl-circle-group .guide-hl-circle.second {
  margin-left: -0.35em;
}
@media only screen and (max-width: 767px) {
  #guide .guide-survey-section.haisyaguide-section .guide-survey-title {
    font-size: min(5.581vw, 24px);
  }
}
#guide .guide-flow-section.haisyaguide-section .guide-step-0-title {
  font-size: min(2.4vw, 28px);
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section.haisyaguide-section .guide-step-0-title {
    font-size: 19px;
  }
}
#guide .guide-flow-section.haisyaguide-section .guide-step-title {
  line-height: 2.8rem;
}
@media (min-width: 768px) {
  #guide .guide-flow-section.haisyaguide-section .guide-step-title {
    width: calc(100% - 125px);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section.haisyaguide-section .guide-step-title {
    font-size: min(5.2vw, 22px);
    line-height: 2rem;
  }
}
#guide .guide-flow-section.haisyaguide-section .guide-step-header-area {
  align-items: flex-start;
}
@media (min-width: 768px) {
  #guide .guide-flow-section.haisyaguide-section .guide-step-header-area .guide-step-badge {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  #guide .guide-flow-section.haisyaguide-section .guide-btn-small-green {
    margin-left: 10px;
  }
}
#guide .guide-store-section.haisyaguide-section .guide-factors .guide-factors-boxes {
  flex-direction: column;
  gap: 20px;
}
#guide .guide-store-section.haisyaguide-section .guide-factors .guide-factors-boxes .guide-factors-box {
  padding: 20px;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section.haisyaguide-section .guide-factors .guide-factors-boxes .guide-factors-box {
    padding: 15px 20px;
    justify-content: flex-start;
  }
}
#guide .guide-store-section.haisyaguide-section .guide-factors .guide-factors-boxes .guide-factors-box .guide-check-icon {
  left: 20px;
}
#guide .guide-store-section.haisyaguide-section .guide-factors .guide-factors-boxes .guide-factors-box .guide-box-text {
  font-size: 28px;
  margin-left: 50px;
}
@media (max-width: 1000px) {
  #guide .guide-store-section.haisyaguide-section .guide-factors .guide-factors-boxes .guide-factors-box .guide-box-text {
    font-size: 18px;
    margin-left: 40px;
    text-align: left;
  }
}
#guide .guide-store-section.haisyaguide-section .guide-arrow {
  margin-bottom: 40px;
}
#guide .guide-store-section.haisyaguide-section .guide-catchphrase {
  font-size: min(3.2vw, 40px);
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section.haisyaguide-section .guide-catchphrase {
    font-size: clamp(17px, 4.533vw, 28px);
  }
}
#guide {
  /* ここから事故車買取ガイドのCSSを追記 */
}
#guide .guide-hero-section.zikoguide-section {
  background-color: #ffe3e1;
}
@media (min-width: 768px) {
  #guide .guide-hero-section.zikoguide-section .guide-icon-docs {
    top: -10px;
    left: max(-3.229vw, -62px);
    width: min(14vw, 266px);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-icon-docs {
    top: -56px;
    left: -22px;
    width: 131px;
  }
}
@media (min-width: 768px) {
  #guide .guide-hero-section.zikoguide-section .guide-icon-pencil {
    top: -21px;
    right: max(-0.833vw, -16px);
    width: min(10.208vw, 196px);
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-icon-pencil {
    top: -21px;
    right: -13px;
    width: 88px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-hero-card {
    padding: 30px 10px 60px;
  }
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-hero-card .guide-badge-area {
    gap: 0;
  }
}
#guide .guide-hero-section.zikoguide-section .guide-hero-card .guide-badge-area .guide-badge-text .mr {
  margin-right: -0.15em;
}
#guide .guide-hero-section.zikoguide-section .guide-hero-card .guide-badge-area .guide-badge-text .ml {
  margin-left: -0.5em;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-hero-card .guide-catchphrase {
    line-height: 1.3;
  }
}
#guide .guide-hero-section.zikoguide-section .guide-main-title {
  font-size: clamp(60px, 5.6vw, 72px);
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-main-title {
    font-size: 9vw;
  }
}
#guide .guide-hero-section.zikoguide-section .guide-sub-title {
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  #guide .guide-hero-section.zikoguide-section .guide-sub-title {
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
#guide .guide-survey-section.zikoguide-section .guide-chart-wrapper .guide-chart-bar-area .guide-chart-bar.guide-bar-5 {
  width: 35%;
  background-color: rgba(0, 166, 94, 0.1);
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section.zikoguide-section .guide-header-desc .guide-text-blue {
    font-size: 110%;
  }
}
#guide .guide-flow-section.zikoguide-section .guide-step-0-left {
  position: unset;
  align-items: flex-start;
}
@media (min-width: 768px) {
  #guide .guide-flow-section.zikoguide-section .guide-step-0-left .guide-step-img-con {
    transform: translateX(-20px);
  }
}
#guide .guide-flow-section.zikoguide-section .guide-step-0-title {
  font-size: min(2.4vw, 28px);
  width: 65%;
  display: flex;
  justify-content: center;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  #guide .guide-flow-section.zikoguide-section .guide-step-0-title {
    font-size: 18px;
    width: 100%;
  }
}
#guide .guide-flow-section.zikoguide-section .guide-step-list li:before {
  top: 0.65em;
  transform: none;
}
#guide .guide-store-section.zikoguide-section .guide-header {
  margin: 0;
}
#guide .guide-store-section.zikoguide-section .guide-header .guide-header-title {
  margin: 0;
}
#guide .guide-store-section.zikoguide-section .guide-factors .guide-factors-lead.guide-text-blue {
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section.zikoguide-section .guide-factors .guide-factors-lead.guide-text-blue {
    font-size: 21px;
    margin-bottom: 20px;
  }
}
#guide .guide-store-section.zikoguide-section .guide-arrow {
  margin: 0 auto 40px;
}
#guide .guide-store-section.zikoguide-section .guide-catchphrase {
  line-height: 1.2;
}
#guide .guide-store-section.zikoguide-section .guide-catchphrase .guide-text-blue {
  font-size: 120%;
  letter-spacing: -0.05em;
  margin-right: 5px;
}
#guide .guide-store-section.zikoguide-section .guide-catchphrase .guide-text-blue .font_big {
  font-size: 140%;
}
#guide .guide-store-section.zikoguide-section .guide-catchphrase .guide-marker-yellow.guide-sp-only {
  padding: 0;
}
#guide .guide-store-section.zikoguide-section .guide-factors-boxes {
  flex-direction: column;
}
#guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box {
  background: #ffe780;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
}
#guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box .guide-factors-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
#guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box .guide-factors-flex .guide-check-icon {
  top: 40px;
  transform: none;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box .guide-factors-flex .guide-check-icon {
    top: 20px;
  }
}
#guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box .guide-factors-flex .guide-box-text {
  margin-left: 52px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box .guide-factors-flex .guide-box-text {
    margin-left: 42px;
  }
}
#guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box > p {
  font-size: 20px;
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #guide .guide-store-section.zikoguide-section .guide-factors-boxes .guide-factors-box > p {
    font-size: 18px;
  }
}
#guide .guide-tips-section.zikoguide-section .guide-factors-lead {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section.zikoguide-section .guide-factors-lead {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
#guide .guide-tips-section.zikoguide-section .table-container {
  width: 100%;
  margin-bottom: 114px;
  overflow-x: auto;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section.zikoguide-section .table-container {
    margin-bottom: 50px;
  }
}
#guide .guide-tips-section.zikoguide-section .comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 1450px;
}
#guide .guide-tips-section.zikoguide-section .comparison-table th,
#guide .guide-tips-section.zikoguide-section .comparison-table td {
  padding: 25px 15px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
  font-size: 24px;
  line-height: 1.6;
  background-color: #fff;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section.zikoguide-section .comparison-table th,
  #guide .guide-tips-section.zikoguide-section .comparison-table td {
    font-size: 18px;
    padding: 10px;
  }
}
#guide .guide-tips-section.zikoguide-section .comparison-table thead th {
  background-color: #ff938b;
  color: #fff;
  font-weight: bold;
}
#guide .guide-tips-section.zikoguide-section .comparison-table th:nth-child(1) {
  width: 20%;
}
#guide .guide-tips-section.zikoguide-section .comparison-table th:nth-child(2) {
  width: 20%;
}
#guide .guide-tips-section.zikoguide-section .comparison-table th:nth-child(3) {
  width: 20%;
}
#guide .guide-tips-section.zikoguide-section .comparison-table th:nth-child(4) {
  width: 40%;
}
#guide .guide-tips-section.zikoguide-section .comparison-table .star {
  font-size: 24px;
  color: #ff938b;
}
@media only screen and (max-width: 767px) {
  #guide .guide-tips-section.zikoguide-section .comparison-table .star {
    font-size: 18px;
  }
}
#guide .guide-tips-section.zikoguide-section .comparison-table .highlight-row {
  position: relative;
  background-color: #fff;
}
#guide .guide-tips-section.zikoguide-section .comparison-table .highlight-row td {
  border-top: 4px solid #ff938b;
  border-bottom: 4px solid #ff938b;
}
#guide .guide-tips-section.zikoguide-section .comparison-table .highlight-row td:first-child {
  border-left: 4px solid #ff938b;
}
#guide .guide-tips-section.zikoguide-section .comparison-table .highlight-row td:last-child {
  border-right: 4px solid #ff938b;
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .guide-factors-lead {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 100px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .guide-factors-lead {
    font-size: 18px;
    margin-bottom: 50px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .main-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(3.5vw, 40px);
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .main-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .main-title .slash {
  color: #1a5f98;
  font-size: 36px;
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .main-title .slash.left {
  transform: rotate(20deg);
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .main-title .slash.right {
  transform: rotate(-20deg);
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .main-title .highlight {
  background: linear-gradient(transparent 60%, #ffe780 60%);
  padding: 0 5px;
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .main-title .highlight .guide-text-blue {
  font-size: 120%;
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.5%;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid {
    gap: 40px;
    margin-bottom: 40px;
    flex-direction: column;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item {
  flex: 1;
  background: #fff;
  border-radius: 40px;
  padding: 40px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item {
    padding: 20px;
    border-radius: 30px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item .info-item-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  padding-left: 46px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item .info-item-title {
    font-size: 21px;
    margin-bottom: 20px;
    padding-left: 26px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item .info-item-title .circle-icon {
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 30px;
  height: 30px;
  border: 7px solid #00a65e;
  border-radius: 50%;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item .info-item-title .circle-icon {
    top: 0.6em;
    width: 14px;
    height: 14px;
    border: 4px solid #00a65e;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item .info-item-text {
  font-size: 18px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .info-grid .info-item .info-item-text {
    font-size: 16px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container {
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container {
    margin-bottom: 40px;
    border-radius: 30px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-header {
  background-color: #ffe780;
  color: #1a5f98;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 30px;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-header {
    font-size: 20px;
    padding: 15px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body {
  padding: 50px;
  background: #fff;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body {
    padding: 20px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .checklist_inner {
  width: 100%;
  max-width: 1200px;
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.4;
  gap: 1%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row {
    font-size: 16px;
    flex-direction: column;
    gap: 5px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row .checkbox {
  width: 32px;
  height: 32px;
  background-color: #00a65e;
  margin-right: 16px;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row .checkbox {
    margin-right: 5px;
    width: 18px;
    height: 18px;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row .checkbox::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 20px;
  height: 15px;
  border-left: 3px solid #ffe780;
  border-bottom: 3px solid #ffe780;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row .checkbox::after {
    top: 2px;
    left: 4px;
    width: 10px;
    height: 9px;
    border-left: 2px solid #ffe780;
    border-bottom: 2px solid #ffe780;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row dt {
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 27%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row dt {
    width: 100%;
  }
}
#guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row dd {
  margin: 0;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #guide .guide-docs-section.zikoguide-section .car-sale-info .checklist-container .checklist-body .check-row dd {
    width: 100%;
  }
}
#guide .guide-docs-section.zikoguide-section .guide-advice-banner .guide-advice-right .guide-advice-text {
  margin-bottom: 20px;
}
#guide .guide-faq-section.zikoguide-section .guide-section-title {
  font-size: min(4.5vw, 44px);
}
@media only screen and (max-width: 767px) {
  #guide .guide-faq-section.zikoguide-section .guide-section-title {
    font-size: 24px;
  }
}
#guide {
  /***********************
  　　　横スクロール
  *************************/
}
#guide .scroll_design {
  scrollbar-color: #ff938b #fff;
  scrollbar-width: thin;
}
#guide .scroll_design::-webkit-scrollbar {
  /* スクロールバー全体の幅 */
  width: 6px;
}
#guide .scroll_design::-webkit-scrollbar-track {
  /* スクロールバーの背景 (トラック) */
  background-color: #fff;
  border-radius: 5px;
}
#guide .scroll_design::-webkit-scrollbar-thumb {
  /* スクロールバーのつまみ (thumb) */
  border-radius: 5px;
  background-color: #ff938b;
}

.p_thanks {
  padding: 60px 0;
  text-align: center;
  background-color: #fff9f2;
}
.p_thanks__ribbon {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 36px;
  border-top: 2px solid #0cad2e;
  border-bottom: 2px solid #0cad2e;
  margin-bottom: 40px;
}
.p_thanks__ribbonText {
  display: block;
  font-size: 16px;
  color: #0cad2e;
}
.p_thanks__ribbonSubText {
  font-size: 24px;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .p_thanks__ribbonSubText {
    font-size: 16px;
  }
}
.p_thanks__header {
  background-color: #fff;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .p_thanks__header {
    padding: 18px;
  }
}
.p_thanks__headerWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p_thanks__headerWrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.p_thanks__message {
  flex: 1;
}
.p_thanks__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #288f61;
}
@media (max-width: 767px) {
  .p_thanks__heading {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .p_thanks__heading {
    font-size: 16px;
  }
}
.p_thanks__heading span {
  display: inline-block;
}
.p_thanks__text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p_thanks__text {
    font-size: 15px;
    margin-top: 16px;
  }
}
.p_thanks__text--highlight {
  font-weight: bold;
  font-size: 120%;
}
.p_thanks__operatorImg {
  flex: 0 0 240px;
}
@media (max-width: 767px) {
  .p_thanks__operatorImg {
    flex: 0 0 140px;
    width: 80%;
  }
}
.p_thanks__operatorImg img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.p_thanks__lineInvite {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
}
.p_thanks__lineInvite img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

#refund .l-breadcrumb {
  margin-bottom: 0;
}
#refund .p_mv {
  background-color: #e3f5e9;
  padding: 50px 0;
}
#refund .p_mv__balloonText {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
  padding: 16px;
  border: 2px solid #f9f9f9;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
  font-size: clamp(16px, 3.5vw, 20px);
  font-weight: 700;
  line-height: 1.75;
  color: #3a3a3a;
}
#refund .p_mv__balloonText::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 72%;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: #f9f9f9 transparent transparent;
  translate: -50% 100%;
}
#refund .p_mv__balloonText::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 72%;
  border-style: solid;
  border-width: 15.2px 0 0 15.2px;
  border-color: #ffffff transparent transparent;
  translate: calc(-50% + 0.4px) 100%;
}
#refund .p_mv__messageWrapper {
  display: flex;
  justify-content: center;
  max-width: 800px;
  width: 92%;
  margin: 0 auto;
}
#refund .p_mv__message {
  margin-bottom: 20px;
  font-size: clamp(12px, 3.5vw, 28px);
  font-weight: bold;
  color: #0CAD2E;
  text-align: center;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #refund .p_mv__message {
    font-size: 20px;
  }
}
#refund .p_mv__heading {
  font-size: clamp(16px, 4.5vw, 36px);
  font-weight: bold;
}
#refund .p_mv__heading .kaigyo {
  display: inline-block;
}
#refund .p_mv__month, #refund .p_mv__amount {
  font-size: 134%;
  color: #e24d55;
}
#refund .p_mv__assistantImg {
  width: 30%;
}
#refund .p_underMv__notes {
  padding: 12px 0;
}
#refund .p_underMv__notesItem {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
  color: #3a3a3a;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  #refund .p_underMv__notesItem {
    font-size: 12px;
  }
}
#refund .p_refundIntro {
  padding: 60px 0;
}
#refund .p_refundIntro__heading {
  font-size: 30px;
  font-weight: bold;
  color: #0cad2f;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #refund .p_refundIntro__heading {
    font-size: 20px;
  }
}
#refund .p_refundIntro__heading .textDeco--underLine {
  background-image: linear-gradient(transparent 70%, rgba(219, 255, 119, 0.6) 70%);
}
#refund .p_refundIntro__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #3a3a3a;
}
@media only screen and (max-width: 767px) {
  #refund .p_refundIntro__body {
    font-size: 14px;
  }
}
#refund .p_refundIntro__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
}
@media (max-width: 767px) {
  #refund .p_refundIntro__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  #refund .p_refundIntro__listCircle:nth-child(1) {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }
  #refund .p_refundIntro__listCircleInner {
    width: 45%;
  }
  #refund .p_refundIntro__listCircle:nth-child(n+2) {
    flex: 0 0 calc(50% - 10px);
  }
}
#refund .p_refundIntro__listCircle {
  flex: 1;
  display: flex;
  justify-content: center;
}
#refund .p_refundIntro__listCircleInner {
  width: 100%;
  position: relative;
  max-width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #06c755;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  #refund .p_refundIntro__listCircleInner {
    font-size: 15px;
    max-width: 140px;
  }
}
#refund .p_refundIntro__listCircleInner::before, #refund .p_refundIntro__listCircleInner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}
#refund .p_refundIntro__listCircleInner::before {
  background-color: #a3e9a4;
  top: 8px;
  left: 8px;
}
@media (max-width: 767px) {
  #refund .p_refundIntro__listCircleInner::before {
    top: 5px;
    left: 5px;
  }
}
#refund .p_refundIntro__listCircleInner::after {
  background-color: #fff59d;
  top: -8px;
  left: -8px;
}
@media (max-width: 767px) {
  #refund .p_refundIntro__listCircleInner::after {
    top: 8px;
    left: 8px;
  }
}
#refund .p_refundIntro__leadText {
  font-size: 18px;
  width: 90%;
  margin: 0 auto;
}
#refund .p_refundIntro__leadText--textRed {
  color: #b62930;
  font-weight: bold;
}
#refund .p_nav__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 100px;
}
@media only screen and (max-width: 767px) {
  #refund .p_nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}
#refund .p_nav__listItem {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #refund .p_nav__listItem {
    width: 100%;
  }
}
#refund .p_nav__listItem a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  border-radius: 6px;
  box-shadow: 0 0 9px 2px rgba(50, 50, 50, 0.2);
  background-color: #eaeaea;
  border: 1px solid #01a832;
  color: #01a832;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#refund .p_nav__listItem a:hover {
  background-color: #0cad2f;
  color: #fff;
  text-decoration: none;
}
#refund .p_nav__listItem a:hover::after {
  border-top-color: #fff;
}
#refund .p_nav__listItem a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 7px;
  border-color: #01a832 transparent transparent transparent;
  margin-left: 12px;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
#refund .textRed {
  color: #b62930;
  font-weight: bold;
}
#refund .sec_try {
  padding: 50px 0;
  background-color: rgb(232, 243, 141);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(220, 236, 103) 5px, rgb(220, 236, 103) 10px);
}
@media only screen and (min-width: 768px) {
  #refund .sec_try .under_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  #refund .sec_try .try_in {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
#refund .sec_try .try_ttl {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  #refund .sec_try .try_ttl {
    width: 100%;
    margin-bottom: 40px;
  }
}
#refund .sec_try .try_ttl .with_side_slash {
  font-size: clamp(28px, 2.8vw, 32px);
}
@media only screen and (max-width: 767px) {
  #refund .sec_try .try_ttl .with_side_slash {
    font-size: min(28px, 6.5vw);
  }
}
#refund .sec_try .try_ttl .bg {
  color: #fff;
  font-size: 128%;
  line-height: 1;
  position: relative;
}
#refund .sec_try .try_ttl .bg::after {
  position: absolute;
  content: "";
  background: #01a832;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
@media only screen and (min-width: 768px) {
  #refund .sec_try figure {
    width: 50%;
    text-align: right;
  }
}
@media only screen and (min-width: 768px) {
  #refund .sec_try .txtarea {
    width: 50%;
  }
}
#refund .sec_try .txtarea .gbtn {
  max-width: 700px;
}
#refund .sec_try ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
#refund .sec_try ul li {
  background: #fff;
  border-radius: 4px;
  padding: 2px 14px;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  #refund .sec_try ul li {
    font-size: min(20px, 4.5vw);
  }
}
#refund .sec_try h3 {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
}
#refund .sec_try h3 span {
  font-size: 128%;
}
#refund .sec_try h4 {
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  #refund .sec_try h4 {
    font-size: min(16px, 4vw);
  }
}
#refund .sec_try .btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625;
  background: #ed3c46;
}
@media only screen and (min-width: 768px) {
  #refund .sec_try .btn_rounded {
    width: 500px;
  }
}
#refund .sec_try .btn_rounded:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#refund .sec_try .btn_rounded:hover::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  #refund .sec_try .btn_rounded:hover::before {
    inset: 0 20px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #refund .sec_try .btn_rounded:hover::before {
    inset: 0 20px 0 auto;
  }
}
#refund .sec_try .btn_rounded:hover.type_web span {
  position: relative;
  padding-left: 2em;
}
#refund .sec_try .btn_rounded:hover.type_web span::after {
  position: absolute;
  content: "";
  background: url(../images/index/monitor.svg) no-repeat center center/contain;
  width: 36px;
  height: 26px;
  margin: auto;
  inset: 0 auto 0 0;
}
@media (max-width: 374px) {
  #refund .sec_try .btn_rounded:hover.type_web span::after {
    width: 28px;
    height: 20px;
    inset: 0 auto 0 16px;
  }
}
#refund .in-block {
  display: inline-block;
}
#refund .l-breadcrumb {
  margin-bottom: 10px !important;
}
#refund .text-center {
  text-align: center;
}
#refund .obi_common_txt h3 {
  font-size: 30px;
  font-weight: bold;
  color: #0CAD2E;
  margin-bottom: 30px;
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  #refund .obi_common_txt h3 {
    font-size: 20px;
  }
}
#refund .obi_common_txt .top_ttl {
  font-size: 30px;
  font-weight: bold;
  color: #0CAD2E;
  margin-bottom: 30px;
  text-align: center !important;
}
@media only screen and (max-width: 767px) {
  #refund .obi_common_txt .top_ttl {
    font-size: 20px;
  }
}
#refund .obi_common_txt p {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #refund .obi_common_txt p {
    font-size: 14px;
  }
}
#refund .actions_wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 55px;
}
@media only screen and (max-width: 767px) {
  #refund .actions_wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
#refund .actions_wrap li {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #refund .actions_wrap li {
    text-align: center;
  }
}
#refund .actions_wrap li a {
  width: 100%;
}
#refund .actions_wrap li a img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #refund .actions_wrap li a img {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  #refund .actions_wrap li:nth-child(2) {
    width: 50%;
    text-align: end;
  }
}
#refund .actions_wrap li:nth-child(2) a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
#refund .actions_wrap li:nth-child(2) a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
#refund .actions_wrap li:nth-child(3) {
  width: 79%;
}
@media only screen and (max-width: 767px) {
  #refund .actions_wrap li:nth-child(3) {
    width: 40%;
    text-align: left;
  }
}
#refund .actions_wrap li:nth-child(3) a {
  display: block;
  filter: drop-shadow(0px 4px 0px var(--shadow-color));
  transition: 0.4s ease-in-out;
}
#refund .actions_wrap li:nth-child(3) a:hover {
  filter: drop-shadow(0px 0px 0px var(--shadow-color));
  transform: translateY(3px);
}
#refund .bg-gray {
  background: #f9f9f9;
  padding: 30px 40px;
}
@media only screen and (max-width: 767px) {
  #refund .bg-gray {
    padding: 30px 15px;
  }
}
#refund .bg-gray .gborder_ttl {
  margin-top: 0;
}
#refund .bg-gray .index_ul li {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 14px;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  #refund .bg-gray .index_ul li {
    font-size: 16px;
  }
}
#refund .bg-gray .index_ul li a {
  display: block;
  margin-bottom: 4px;
}
#refund .bg-gray .index_ul.border-less li {
  border-bottom: none;
  position: relative;
  margin-bottom: 6px;
  padding-left: 12px;
}
#refund .bg-gray .index_ul.border-less li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #0CAD2E;
  border-right: solid 1px #0CAD2E;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#refund .index_number {
  background: #DEEF68;
  border-radius: 50px;
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 4px;
  vertical-align: middle;
  text-indent: 0;
  padding-left: 0;
}
#refund .gborder_ttl {
  margin-top: 50px;
}
#refund .gborder_ttl .index_number {
  margin-bottom: 6px;
  text-indent: 0;
  padding-left: 0;
}
#refund .sec p {
  margin-bottom: 20px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #refund .sec p {
    font-size: 14px;
  }
}
#refund .sec p:last-child {
  margin-bottom: 0;
}
#refund .sec p span.green {
  color: #0CAD2E;
}
#refund .sec p span.fs-20 {
  font-size: 20px;
}
#refund .sec p.no_refund {
  padding: 20px;
  font-size: 22px;
}
#refund .sec .yback_ttl {
  background: #DEEF68;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 40px 0 20px;
}
@media only screen and (max-width: 767px) {
  #refund .sec .yback_ttl {
    font-size: 16px;
  }
}
#refund span.red {
  color: #ED3C46;
}
#refund span.bold {
  font-weight: bold;
}
#refund .column_wrap {
  padding: 90px 0 80px;
  background: #E3F5E9;
}
#refund .column_wrap h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #refund .column_wrap h3 {
    font-size: 20px;
  }
}
#refund .column_wrap ul {
  border-top: 2px #0CAD2E solid;
  background: #fff;
  margin-bottom: 50px;
}
#refund .column_wrap ul li {
  border-top: 1px #ccc solid;
  position: relative;
}
#refund .column_wrap ul li::before {
  position: absolute;
  content: "";
  left: 14px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #0CAD2E;
  border-right: 1px solid #0CAD2E;
  top: calc(50% - 4px);
  transform: rotate(45deg);
}
#refund .column_wrap ul li a {
  display: block;
  padding: 15px;
  padding-left: 40px;
}
#refund .certificate_block {
  position: relative;
}
#refund .certificate_block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  background: #ffffdd;
  z-index: -1;
}
#refund .certificate_block .certificate_item {
  margin-bottom: 43px;
  border: 2px solid #000000;
  background: #fff;
}
#refund .certificate_block .certificate_item .item_head .dl {
  display: flex;
}
#refund .certificate_block .certificate_item .item_head .dl .dt {
  width: 100px;
  padding: 7px 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffea01;
  font-size: 16px;
  font-weight: normal;
  margin: 0;
}
#refund .certificate_block .certificate_item .item_head .dl .dt .fs-l {
  font-size: 125%;
}
#refund .certificate_block .certificate_item .item_head .dl .dd {
  width: calc(100% - 100px);
  font-size: 20px;
  font-weight: bold;
  background: #f9f9f9;
  padding: 10px 16px;
}
#refund .certificate_block .certificate_item .item_body {
  padding: 20px 25px;
}
#refund .certificate_block .certificate_item .item_body .img2block {
  display: flex;
  justify-content: space-between;
}
#refund .certificate_block .certificate_item .item_body .img2block > div:nth-child(1) {
  width: 56.3%;
}
#refund .certificate_block .certificate_item .item_body .img2block > div:nth-child(2) {
  width: 41.95%;
}
#refund .certificate_block .certificate_item .item_body .check {
  display: flex;
  flex-wrap: wrap;
  background: #e3f5e9;
  font-weight: bold;
  margin-bottom: 16px;
}
#refund .certificate_block .certificate_item .item_body .check > dt {
  width: 90px;
  position: relative;
  background: #0cad2e;
  color: #fff;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  margin: 0;
}
#refund .certificate_block .certificate_item .item_body .check > dt::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 7px;
  border-color: transparent transparent transparent #0cad2f;
}
#refund .certificate_block .certificate_item .item_body .check > dd {
  width: calc(100% - 90px);
  padding: 6px 10px;
}
#refund .certificate_block .certificate_item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #refund .certificate_block .certificate_item .item_body {
    padding: 15px 15px;
  }
  #refund .certificate_block .certificate_item .item_head dl dt {
    font-size: 13px;
    width: 70px;
  }
  #refund .certificate_block .certificate_item .item_head dl dd {
    font-size: 15px;
    width: calc(100% - 70px);
  }
  #refund .certificate_block .certificate_item .item_body .img2block {
    display: block;
  }
  #refund .certificate_block .certificate_item .item_body .img2block > div {
    width: auto !important;
  }
  #refund .certificate_block .certificate_item .item_body .img2block > div:nth-child(1) {
    margin-bottom: 10px;
  }
  #refund .certificate_block .certificate_item .item_body .img2block > div:nth-child(2) {
    text-align: center;
  }
}
#refund .dot_list li {
  padding-left: 16px;
  position: relative;
}
#refund .dot_list li::before {
  position: absolute;
  content: "";
  background-size: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #DEEF68;
  top: 10px;
  left: 0;
}

#truck {
  font-family: "Noto Sans JP", sans-serif;
}
#truck #hd .gnav_sp {
  background: #efefef;
}
#truck .bold {
  font-weight: bold;
}
#truck .red {
  color: #f0101d;
}
#truck .color4 {
  color: #cb0000;
}
#truck .bg_yellow {
  background: #ffea01;
  color: #000;
  line-height: 1.3;
  display: inline-block;
  padding: 0 5px;
  margin-left: 5px;
}
#truck .area_ttl {
  background: #1e3f91 !important;
  padding: 15px 0;
}
@media only screen and (max-width: 767px) {
  #truck .area_ttl {
    padding: 15px 0 10px;
  }
}
#truck .area_ttl h1 {
  font-size: min(4vw, 18px);
  color: #fff;
  text-align: center;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}
@media only screen and (min-width: 768px) {
  #truck .area_ttl h1 {
    font-size: 20px;
  }
}
#truck .area_ttl h1 span {
  color: #ffea01;
  font-size: 122%;
}
#truck .assessment-btn-wrapper {
  padding: 32px 0 40px;
}
@media only screen and (max-width: 767px) {
  #truck .assessment-btn-wrapper {
    padding: 8px 0 40px;
  }
}
#truck .fv-ziko {
  padding: 0;
  max-width: none;
  margin: 0;
}
#truck .fv-ziko img {
  width: 100%;
  height: auto;
}
#truck .fv-ziko .c-banner {
  width: 100%;
  background: url(../images/truck/truck_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner {
    background: url(../images/truck/truck_bg_sp.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#truck .fv-ziko .c-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 30px 20px 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner__inner {
    padding: 20px 0 0;
  }
}
#truck .fv-ziko .c-banner__content {
  position: relative;
  z-index: 5;
  width: 52%;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner__content {
    width: 62.5%;
    padding-left: 10px;
  }
}
#truck .fv-ziko .c-banner__title {
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner__title {
    width: 96%;
    margin-bottom: 0;
    margin-left: 5px;
  }
}
#truck .fv-ziko .c-banner__visual {
  position: relative;
  z-index: 5;
}
#truck .fv-ziko .c-banner__visual-img {
  max-width: 600px;
  width: 90%;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner__visual-img {
    width: 100%;
  }
}
#truck .fv-ziko .c-banner__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  max-width: 647px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner__person {
    width: 48%;
    max-width: none;
  }
}
#truck .fv-ziko .c-banner__features {
  display: flex;
  z-index: 20;
  max-width: 680px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #truck .fv-ziko .c-banner__features {
    padding-left: 10px;
  }
}
#truck .fv-ziko .c-banner__features picture {
  width: 100%;
}
#truck .fv-ziko .c-banner__features .feature-panel {
  margin: 0 -2px;
}
#truck .region {
  padding: 50px 0 0;
}
@media only screen and (max-width: 767px) {
  #truck .region {
    border-top: 2px solid #ccc;
  }
}
#truck .index_subttl {
  display: block;
}
#truck .index_ttl {
  display: block;
  color: #29a5a5;
  font-size: clamp(36px, 3.3vw, 42px);
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 768px) {
  #truck .index_ttl {
    margin-bottom: 50px;
  }
}
@media (max-width: 374px) {
  #truck .index_ttl {
    font-size: min(36px, 7vw);
  }
}
#truck .index_ttl .underlined {
  border-bottom: 4px solid #29a5a5;
  display: inline-block;
  padding-bottom: 6px;
}
#truck .index_ttl .index_ttl_sub {
  font-size: 77%;
}
@media only screen and (min-width: 768px) {
  #truck .index_ttl .index_ttl_sub {
    font-size: 88%;
  }
}
#truck .index_ttl .small {
  font-size: 55%;
}
#truck .index_ttl.black {
  color: #000;
}
#truck .maker {
  background: linear-gradient(transparent 70%, #ffea01 70%);
}
#truck .color_orange {
  color: #ee9000;
}
#truck .with_side_slash {
  position: relative;
  padding: 0 1em;
  text-align: center;
  display: inline-block;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 767px) {
  #truck .with_side_slash {
    font-size: min(5vw, 20px);
  }
}
@media (max-width: 374px) {
  #truck .with_side_slash {
    font-size: min(20px, 4.5vw);
  }
}
#truck .with_side_slash::before, #truck .with_side_slash::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 90%;
  background: #000;
  margin: auto;
}
#truck .with_side_slash::before {
  inset: 0 auto 0 0;
  transform: rotate(-30deg);
}
#truck .with_side_slash::after {
  inset: 0 0 0 auto;
  transform: rotate(30deg);
}
#truck .with_side_slash.red::before, #truck .with_side_slash.red::after {
  background: #f0101d;
}
#truck .with_side_slash span .fn30 {
  font-size: 150%;
}
#truck .btn_rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 2vw, 26px);
  color: #fff;
  font-weight: bold;
  border-radius: 85px;
  transition: 0.5s ease-in-out;
  position: relative;
  text-align: center;
  height: 90px;
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  #truck .btn_rounded {
    height: 64px;
  }
}
#truck .btn_rounded.red {
  box-shadow: 0 4px 0 0 #b21625 !important;
  background: #ed3c46 !important;
}
#truck .btn_rounded.green {
  box-shadow: 0 4px 0 0 #00661a !important;
  background: #01a832 !important;
}
#truck .btn_rounded.yellow {
  box-shadow: 0 4px 0 0 #de8300 !important;
  background: #ffa31e !important;
}
#truck .btn_rounded.yellow div {
  display: flex;
  flex-direction: column;
}
#truck .btn_rounded.yellow .tel_icon {
  position: relative;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  padding-left: 24px;
  line-height: 1;
  text-align: left;
}
#truck .btn_rounded.yellow .tel_icon::before {
  position: absolute;
  content: "";
  background: url(../images/index/free.svg) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  margin: auto;
  inset: 0 auto 0 0;
}
#truck .btn_rounded:hover {
  box-shadow: none;
  transform: translateY(3px);
}
#truck .btn_rounded::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: auto;
  inset: 0 40px 0 auto;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 960px) {
  #truck .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  #truck .btn_rounded::before {
    inset: 0 20px 0 auto;
  }
}
#truck .btn_rounded.type_web span {
  position: relative;
  padding-left: 2em;
}
#truck .btn_rounded.type_web span::after {
  position: absolute;
  content: "";
  background: url(../images/index/monitor.svg) no-repeat center center/contain;
  width: 36px;
  height: 26px;
  margin: auto;
  inset: 0 auto 0 0;
}
@media (max-width: 374px) {
  #truck .btn_rounded.type_web span::after {
    width: 28px;
    height: 20px;
    inset: 0 auto 0 16px;
  }
}
#truck .btn_rounded.type_16 {
  background: #fff;
  font-size: clamp(16px, 1.8vw, 22px);
  color: #037881;
  border: 2px solid #037881;
  box-shadow: 0 4px 0 0 #064d4a;
}
#truck .btn_rounded.type_16::before {
  border-right: 2px solid #037881;
  border-bottom: 2px solid #037881;
}
@media only screen and (max-width: 767px) {
  #truck .btn_rounded.type_16 {
    line-height: 1.3em;
  }
}
#truck .btn_rounded.phone > span {
  position: relative;
  padding: 0 2em 0 2.5em;
}
#truck .btn_rounded.phone > span::after {
  position: absolute;
  content: "";
  background: url(../images/index/phone.svg) no-repeat center center/contain;
  width: 30px;
  height: 37px;
  margin: auto;
  inset: 0 auto 0 0;
}
#truck .btn_rounded.btn_ziko_tel {
  background: #ffa31e;
  box-shadow: 0 4px 0 0 #de8300;
  padding-right: 5%;
}
@media only screen and (max-width: 767px) {
  #truck .btn_rounded.btn_ziko_tel {
    height: 82px;
    padding-right: 15%;
  }
}
#truck .btn_rounded.btn_ziko_tel .btn-badge {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  background-color: #fff155;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  #truck .btn_rounded.btn_ziko_tel .btn-badge {
    width: 70px;
    height: 70px;
  }
}
#truck .btn_rounded.btn_ziko_tel .btn-badge .badge-small {
  font-size: 12px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  #truck .btn_rounded.btn_ziko_tel .btn-badge .badge-small {
    font-size: 14px;
  }
}
#truck .btn_rounded.btn_ziko_tel .btn-badge .badge-large {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 768px) {
  #truck .btn_rounded.btn_ziko_tel .btn-badge .badge-large {
    font-size: 18px;
  }
}
#truck .btn_rounded.btn_ziko_tel .tel_icon {
  margin: 0 auto;
}
#truck .btn_rounded.btn_ziko_tel .btn-content {
  text-align: center;
  color: #fff;
  padding-left: 22px;
}
#truck .btn_rounded.btn_ziko_tel .btn-content .btn_text_small {
  font-size: 12px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #truck .btn_rounded.btn_ziko_tel .btn-content .btn_text_small {
    font-size: 14px;
  }
}
#truck .slick-prev,
#truck .slick-next {
  width: 40px;
  height: 40px;
  background: url("../images/truck/next.svg") no-repeat center center;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
}
@media only screen and (min-width: 768px) {
  #truck .slick-prev,
  #truck .slick-next {
    width: 60px;
    height: 60px;
  }
}
#truck .slick-prev:hover,
#truck .slick-next:hover {
  opacity: 0.7;
}
#truck .slick-prev::before,
#truck .slick-next::before {
  content: none;
}
#truck .slick-prev {
  left: 20px;
  background: url("../images/truck/prev.svg") no-repeat center center;
  background-size: contain;
}
#truck .slick-next {
  right: 20px;
}
#truck .slick-dots {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
#truck .slick-dots li {
  width: 8px;
  height: 8px;
}
#truck .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
}
#truck .slick-dots li button::before {
  opacity: 1;
  content: "";
  background: rgba(41, 165, 165, 0.25);
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
#truck .slick-dots li.slick-active button:before {
  background: #29a5a5;
}
#truck .cta-banner {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner {
    background-color: #ffffff;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner .sp-hidden {
    display: none;
  }
}
#truck .cta-banner__inner {
  max-width: 1103px;
  margin: 0 auto;
  padding: 25px 15px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__inner {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 30px 20px;
  }
}
#truck .cta-banner__image {
  position: absolute;
  margin: 0 40px 0 0;
  padding: 0;
  left: 0;
  bottom: 0;
  width: 23%;
  max-width: 248px;
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__image {
    display: none;
  }
}
#truck .cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#truck .cta-banner__content .cta-catch {
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
}
#truck .cta-banner__content .cta-catch .with_side_slash {
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: -0.04em;
  padding: 0 0.6em;
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-catch .with_side_slash {
    padding: 0 0.75em;
  }
}
#truck .cta-banner__content .cta-catch .with_side_slash:before, #truck .cta-banner__content .cta-catch .with_side_slash:after {
  height: 120%;
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-catch .with_side_slash:before, #truck .cta-banner__content .cta-catch .with_side_slash:after {
    height: 100%;
  }
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-catch .with_side_slash .pc {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-catch {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-catch {
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
#truck .cta-banner__content .cta-btn {
  text-decoration: none;
  color: #000;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn {
    display: none;
  }
}
#truck .cta-banner__content .cta-btn__badge {
  background-color: #fff155;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-btn__badge {
    border-radius: 50px;
    padding: 10px 30px;
    font-size: clamp(16px, 1.8vw, 22px);
  }
  #truck .cta-banner__content .cta-btn__badge span:first-child {
    margin-right: 0.5em;
  }
  #truck .cta-banner__content .cta-btn__badge span:last-child {
    font-size: 136%;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn__badge {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 13px;
    flex-direction: column;
    line-height: 1.2;
  }
}
#truck .cta-banner__content .cta-btn__main {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-btn__main {
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn__main {
    align-items: flex-start;
    margin-left: 15px;
    flex-grow: 1;
  }
}
#truck .cta-banner__content .cta-btn__tel-title {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
#truck .cta-banner__content .cta-btn__tel {
  display: flex;
  align-items: center;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-btn__tel {
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn__tel {
    gap: 6px;
  }
}
#truck .cta-banner__content .cta-btn__tel .number {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-btn__tel .number {
    font-size: clamp(40px, 7vw, 74px);
    margin-top: 0.1em;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn__tel .number {
    font-size: clamp(16px, 1.8vw, 24px);
  }
}
#truck .cta-banner__content .cta-btn__time {
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .cta-btn__time {
    font-size: clamp(16px, 1.8vw, 23px);
    line-height: 1;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn__time {
    font-size: 12px;
    margin-top: 2px;
    opacity: 0.9;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .cta-btn__arrow {
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    margin-right: 10px;
  }
}
@media only screen and (min-width: 768px) {
  #truck .cta-banner__content .icon-freedial {
    width: 60px;
    height: 30px;
  }
  #truck .cta-banner__content .icon-freedial .bg {
    fill: #000;
    stroke: none;
  }
  #truck .cta-banner__content .icon-freedial .line {
    stroke: #fff;
  }
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .icon-freedial {
    width: 32px;
    height: 16px;
  }
  #truck .cta-banner__content .icon-freedial .bg {
    fill: transparent;
    stroke: #fff;
    stroke-width: 3;
  }
  #truck .cta-banner__content .icon-freedial .line {
    stroke: #fff;
  }
}
#truck .cta-banner__content .btn_rounded.pc_hidden {
  display: none;
}
@media only screen and (max-width: 767px) {
  #truck .cta-banner__content .btn_rounded.pc_hidden {
    display: flex !important;
  }
}
#truck .sec_truck_top {
  background: #ffe658;
  padding: 30px 0 0;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top {
    padding: 50px 0 0;
  }
}
#truck .sec_truck_top .comment {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  max-width: 350px;
  line-height: 1.2;
  margin: 0 auto 25px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top .comment {
    font-size: 26px;
    max-width: 600px;
    margin: 0 auto 30px;
  }
}
#truck .sec_truck_top .comment:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#truck .sec_truck_top .comment span.font_big {
  font-size: 125%;
}
#truck .sec_truck_top .truck_top_flex {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top .truck_top_flex {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: content-box;
    align-items: center;
  }
}
#truck .sec_truck_top .truck_top_flex .text_box {
  width: 60%;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top .truck_top_flex .text_box {
    display: flex;
    justify-content: flex-end;
  }
}
#truck .sec_truck_top .truck_top_flex .text_box h2 {
  font-size: clamp(18px, 2vw, 26px);
  position: relative;
  z-index: 1;
  font-weight: bold;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top .truck_top_flex .text_box h2 {
    font-size: clamp(28px, 3vw, 36px);
  }
}
#truck .sec_truck_top .truck_top_flex .text_box h2 .orange {
  color: #fff;
  font-size: 26px;
  position: relative;
  background: #f67b00;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top .truck_top_flex .text_box h2 .orange {
    font-size: 36px;
  }
}
#truck .sec_truck_top .truck_top_flex .text_box p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_top .truck_top_flex .text_box p {
    font-size: 18px;
  }
}
#truck .sec_truck_top .truck_top_flex .img_box {
  width: 40%;
}
#truck .sec_truck_top .truck_top_flex .img_box img {
  width: 100%;
  height: auto;
}
#truck .truck_top {
  background: linear-gradient(0deg, #53bcc2 0%, #53bcc2 100%);
  padding: 40px 0;
}
@media (max-width: 820px) {
  #truck .truck_top {
    padding: 30px 0 0;
  }
}
@media (max-width: 820px) {
  #truck .truck_top .ttl_area {
    padding-bottom: 170px;
    background: url("../images/truck/truck_group_sp.webp") no-repeat center top;
    background-size: cover;
  }
}
#truck .truck_top .index_subttl {
  display: block;
  font-size: clamp(13px, 2vw, 30px);
  color: #fff;
}
@media (max-width: 820px) {
  #truck .truck_top .index_subttl {
    font-size: min(4vw, 18px);
  }
}
#truck .truck_top .index_subttl .bg_yellow {
  color: #000;
}
#truck .truck_top .mv_ttl {
  color: #fff;
  font-weight: bold;
}
#truck .truck_top .mv_ttl .index_ttl {
  line-height: 1;
}
@media (max-width: 820px) {
  #truck .truck_top .mv_ttl .index_ttl {
    line-height: 1.2;
  }
}
#truck .truck_top .mv_ttl .text_stroke {
  color: #1e3f91;
  -webkit-text-stroke: 4px #ffffff;
  paint-order: stroke;
}
#truck .truck_top .mv_ttl .text--truck {
  font-size: clamp(18px, 2vw, 30px);
  letter-spacing: -0.08em;
}
@media (max-width: 820px) {
  #truck .truck_top .mv_ttl .text--truck {
    font-size: min(7.467vw, 28px);
  }
}
#truck .truck_top .mv_ttl .text--main {
  font-size: clamp(20px, 2.2vw, 35px);
}
@media (max-width: 820px) {
  #truck .truck_top .mv_ttl .text--main {
    font-size: min(9.6vw, 36px);
  }
}
#truck .truck_top .mv_ttl .text--sub {
  font-size: clamp(18px, 2vw, 30px);
  margin-left: -0.2em;
}
@media (max-width: 820px) {
  #truck .truck_top .mv_ttl .text--sub {
    font-size: min(7.467vw, 28px);
  }
}
#truck .truck_top .img_area {
  display: flex;
  align-items: center;
  max-width: 1055px;
  width: 90%;
  margin: 0 auto -15px;
}
#truck .truck_top .img_area .text {
  font-size: clamp(24px, 3.6vw, 45px);
  color: #fff;
  font-weight: bold;
  margin-left: 6%;
}
@media (min-width: 819px) {
  #truck .truck_top .img_area .text {
    width: 46%;
  }
}
@media (max-width: 820px) {
  #truck .truck_top .img_area .text {
    display: none;
  }
}
#truck .truck_top .img_area picture {
  display: block;
  margin: 0 auto 20px;
  max-width: 573px;
}
@media (min-width: 819px) {
  #truck .truck_top .img_area picture {
    width: 54%;
  }
}
#truck .truck_top_slider_flex {
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 15px;
}
@media (min-width: 819px) {
  #truck .truck_top_slider_flex {
    max-width: 1230px;
    display: flex;
    gap: 3.2%;
  }
}
@media (max-width: 820px) {
  #truck .truck_top_slider_flex {
    padding: 10px 0 0;
    background: #fff;
  }
}
@media (min-width: 819px) {
  #truck .truck_top_slider_flex .img_con {
    width: 48.4%;
  }
}
@media (max-width: 820px) {
  #truck .truck_top_slider_flex .img_con {
    display: none;
  }
}
#truck .truck_top_slider_flex .img_con img {
  border: 2px solid #eaeaea;
}
@media (min-width: 819px) {
  #truck .truck_top .truck_high_price_slider {
    width: 48.4%;
  }
}
@media (max-width: 820px) {
  #truck .truck_top .truck_high_price_slider .slick-track {
    display: flex;
  }
}
#truck .truck_top .truck_high_price_slider .slick-slide {
  border: 2px solid #eaeaea;
}
@media (max-width: 820px) {
  #truck .truck_top .truck_high_price_slider .slick-slide {
    margin: 0 15px 0 0;
    height: auto;
    border: 1px solid #eaeaea;
  }
}
#truck .truck_top .truck_high_price_slider .slick-slide > div {
  height: 100%;
}
#truck .truck_top .truck_high_price_slider .slick-next,
#truck .truck_top .truck_high_price_slider .slick-prev {
  width: 60px;
  height: 60px;
  background: url(../images/truck/next.svg) no-repeat center center;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  background-size: contain;
  z-index: 99;
  right: -30px;
}
@media (max-width: 820px) {
  #truck .truck_top .truck_high_price_slider .slick-next,
  #truck .truck_top .truck_high_price_slider .slick-prev {
    width: 40px;
    height: 40px;
    right: 30px;
  }
}
#truck .truck_top .truck_high_price_slider .slick-prev {
  background: url(../images/truck/prev.svg) no-repeat center center;
  background-size: contain;
  left: -30px;
  right: auto;
}
@media (max-width: 820px) {
  #truck .truck_top .truck_high_price_slider .slick-prev {
    left: 30px;
  }
}
#truck .truck_top .truck_high_price_slider .slick-dots {
  bottom: -25px;
}
@media (max-width: 820px) {
  #truck .truck_top .truck_high_price_slider .slick-dots {
    bottom: -30px;
  }
}
@media (min-width: 819px) {
  #truck .truck_top .truck_high_price_slider .slick-dots li button:before {
    background: #fff;
  }
}
#truck .truck_top .truck_high_price_slider .slick-dots li.slick-active button:before {
  background: #29a5a5;
}
#truck .truck_top .high_price_item {
  height: 100%;
  display: block;
  background: #eaf6f9;
  padding: 10px;
}
@media (min-width: 819px) {
  #truck .truck_top .high_price_item {
    padding: min(2.083vw, 40px);
  }
}
#truck .truck_top .high_price_item .high_price_head {
  display: flex;
  gap: 3%;
  margin-bottom: 20px;
  align-items: center;
}
@media (max-width: 374px) {
  #truck .truck_top .high_price_item .high_price_head {
    flex-wrap: wrap;
  }
}
#truck .truck_top .high_price_item .high_price_head .icon {
  width: 24%;
  height: auto;
}
#truck .truck_top .high_price_item .high_price_head .ttl {
  flex: 1;
}
#truck .truck_top .high_price_item .high_price_head .ttl dl.pref {
  display: flex;
  gap: 8px;
  letter-spacing: 0.02em;
  align-items: center;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 820px) {
  #truck .truck_top .high_price_item .high_price_head .ttl dl.pref {
    font-size: 12px;
    flex-wrap: wrap;
  }
}
#truck .truck_top .high_price_item .high_price_head .ttl dl.pref dt {
  background: #fff;
  padding: 0 10px;
}
#truck .truck_top .high_price_item .high_price_head .ttl .car_name {
  display: flex;
  letter-spacing: 0.02em;
  align-items: center;
  color: #037881;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  #truck .truck_top .high_price_item .high_price_head .ttl .car_name {
    font-size: 12px;
  }
}
#truck .truck_top .high_price_item .high_price_head .ttl .car_name_ttl {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #037881;
}
#truck .truck_top .high_price_item .high_price_head .ttl .kaitori_flex {
  display: flex;
  gap: 10px;
  margin-bottom: auto;
}
@media (max-width: 1300px) {
  #truck .truck_top .high_price_item .high_price_head .ttl .kaitori_flex {
    align-items: center;
  }
}
#truck .truck_top .high_price_item .high_price_head .ttl .kaitori {
  border: 1px solid #cb0000;
  border-radius: 2px;
  line-height: 1.4;
  font-size: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  line-height: 1rem;
}
@media only screen and (max-width: 767px) {
  #truck .truck_top .high_price_item .high_price_head .ttl .kaitori {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  #truck .truck_top .high_price_item .high_price_head .ttl .kaitori {
    font-size: 14px;
  }
}
#truck .truck_top .high_price_item .high_price_head .ttl .price {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: bold;
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
#truck .truck_top .high_price_item .high_price_head .ttl .price span {
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 3.4vw, 56px);
  line-height: 1;
}
@media only screen and (max-width: 1260px) {
  #truck .truck_top .high_price_item .high_price_head .ttl .price span {
    font-size: clamp(26px, 2.8vw, 56px);
  }
}
@media (max-width: 820px) {
  #truck .truck_top .high_price_item .high_price_head .ttl .price span {
    font-size: min(47px, 12vw);
  }
}
#truck .truck_top .high_price_item .high_price_head figure {
  width: 20%;
  background: #fff;
}
#truck .truck_top .high_price_item .high_price_text {
  font-size: clamp(20px, 2vw, 25px);
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 820px) {
  #truck .truck_top .high_price_item .high_price_text {
    font-size: 16px;
  }
}
#truck .car_model_list_contents {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  #truck .car_model_list_contents {
    padding: 35px 0;
  }
}
#truck .car_model_list_contents .car_model_list {
  border: 3px solid #29a5a5;
  background: #fff;
  padding: 30px 20px;
}
@media only screen and (min-width: 768px) {
  #truck .car_model_list_contents .car_model_list {
    padding: 40px 30px;
  }
}
#truck .car_model_list_contents .car_model_list .model_list_ttl {
  margin: 10px 0 20px;
  display: block;
}
@media only screen and (min-width: 768px) {
  #truck .car_model_list_contents .car_model_list .model_list_ttl {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin: -10px 0 30px;
  }
}
#truck .car_model_list_contents .car_model_list h2 {
  text-align: center;
  font-weight: bold;
  font-size: clamp(20px, 2vw, 33px);
}
#truck .car_model_list_contents .car_model_list .model_min_list_ttl {
  display: flex;
  justify-content: center;
  gap: 8px;
}
#truck .car_model_list_contents .car_model_list .model_min_list_ttl span {
  background: #29a5a5;
  letter-spacing: 0.02em;
  padding: 3px 12px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: #fff;
}
#truck .car_model_list_contents .car_model_list .midashi {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0.04em;
}
#truck .car_model_list_contents .car_model_list .car_model_name {
  color: #333;
  letter-spacing: 0.06em;
  font-size: clamp(16px, 1.8vw, 22px);
  word-break: keep-all;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 768px) {
  #truck .car_model_list_contents .car_model_list .car_model_name {
    max-width: 900px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .car_model_list_contents .car_model_list .car_model_name {
    font-size: min(16px, 3.6vw);
    max-width: 540px;
    margin: 0 auto 20px;
  }
}
#truck .car_model_list_contents .car_model_list .car_model_name span {
  white-space: nowrap;
}
#truck .car_model_list_contents .car_model_list .with_side_slash {
  margin: -10px 0 5px;
}
@media only screen and (max-width: 767px) {
  #truck .car_model_list_contents .car_model_list .with_side_slash {
    letter-spacing: -0.08em;
  }
}
#truck .car_model_list_contents .car_model_list .with_side_slash {
  line-height: 1.3em;
}
#truck .car_model_list_contents .car_model_list .with_side_slash:before, #truck .car_model_list_contents .car_model_list .with_side_slash:after {
  height: 110%;
}
#truck .car_model_list_contents .car_model_list .btn_area {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #truck .car_model_list_contents .car_model_list .btn_area {
    flex-direction: column;
    margin-top: 0;
  }
}
#truck .sec_truck_reason {
  padding: 50px 0;
  background-color: rgb(234, 246, 249);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(238, 248, 250) 5px, rgb(238, 248, 250) 10px);
}
#truck .sec_truck_reason .catch-text {
  letter-spacing: 0.04em;
  background: #29a5a5;
  text-align: center;
  padding: 10px;
  position: relative;
  margin: 0 auto 25px;
  max-width: 330px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_reason .catch-text {
    font-size: 22px;
  }
}
#truck .sec_truck_reason .catch-text:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #29a5a5;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#truck .sec_truck_reason .catch-text .yellow_text {
  color: #ffea01;
  display: inline-block;
  position: relative;
}
#truck .sec_truck_reason .catch-text .yellow_text:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ffea01;
  left: 0;
  bottom: -2px;
}
#truck .sec_truck_reason .reason_ttl {
  margin: 0 auto 30px;
}
#truck .sec_truck_reason .reason_ttl .reason_sub_ttl {
  font-size: clamp(28px, 3vw, 36px);
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_reason .reason_ttl .reason_sub_ttl {
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #truck .sec_truck_reason .reason_ttl .reason_sub_ttl {
    font-size: min(28px, 5.5vw);
  }
}
#truck .sec_truck_reason .reason_ttl h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.3;
  position: relative;
  z-index: 1;
  color: #000;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_reason .reason_ttl h2 {
    font-size: min(28px, 6.5vw);
  }
}
@media (max-width: 374px) {
  #truck .sec_truck_reason .reason_ttl h2 {
    font-size: min(28px, 5.5vw);
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_reason .reason_ttl h2 {
    margin-bottom: 30px;
  }
}
#truck .sec_truck_reason .reason_ttl h2 span.orange {
  color: #ffea01;
  font-size: 36px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_reason .reason_ttl h2 span.orange {
    font-size: min(36px, 7.5vw);
  }
}
@media (max-width: 374px) {
  #truck .sec_truck_reason .reason_ttl h2 span.orange {
    font-size: min(28px, 6vw);
  }
}
#truck .sec_truck_reason .reason_ttl h2 span.orange::after {
  position: absolute;
  content: "";
  background: #29a5a5;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
#truck .sec_truck_reason .reason_ttl .reason_catch {
  position: relative;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_reason .reason_ttl .reason_catch {
    font-size: min(16px, 4vw);
    padding: 0;
  }
}
@media (max-width: 374px) {
  #truck .sec_truck_reason .reason_ttl .reason_catch {
    font-size: min(16px, 3.5vw);
  }
}
#truck .sec_truck_reason .reason_ttl .reason_catch.strong {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: bold;
}
#truck .sec_truck_reason .grid-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 900px;
  justify-content: center;
}
#truck .sec_truck_reason .grid-container .reason_item {
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
  }
}
#truck .sec_truck_reason .grid-container .reason_item.reason01 {
  background: #fff url(../images/truck/truck_reason01.webp) no-repeat top 10px right 10px/90px;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item.reason01 {
    background: #fff url(../images/truck/truck_reason01.webp) no-repeat top 10px right 2.5%/120px;
  }
}
#truck .sec_truck_reason .grid-container .reason_item.reason02 {
  background: #fff url(../images/truck/truck_reason02.webp) no-repeat top 10px right 10px/90px;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item.reason02 {
    background: #fff url(../images/truck/truck_reason02.webp) no-repeat top 10px right 2.5%/120px;
  }
}
#truck .sec_truck_reason .grid-container .reason_item.reason03 {
  background: #fff url(../images/truck/truck_reason03.webp) no-repeat top 10px right 10px/90px;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item.reason03 {
    background: #fff url(../images/truck/truck_reason03.webp) no-repeat top 10px right 2.5%/120px;
  }
}
#truck .sec_truck_reason .grid-container .reason_item.reason04 {
  background: #fff url(../images/index/reason04.png) no-repeat top 10px right 10px/90px;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item.reason04 {
    background: #fff url(../images/index/reason04.png) no-repeat top 30px right 5%/120px;
  }
}
#truck .sec_truck_reason .grid-container .reason_item .label {
  background: #29a5a5;
  width: 92px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  display: block;
  text-align: center;
  font-size: clamp(16px, 1.6vw, 18px);
  position: relative;
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  padding-right: 15px;
  box-sizing: border-box;
}
@media (max-width: 849px) {
  #truck .sec_truck_reason .grid-container .reason_item .label {
    position: absolute;
    top: 10px;
    left: 0;
    line-height: 37px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    padding-right: 10px;
  }
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item .label {
    width: 14%;
  }
}
#truck .sec_truck_reason .grid-container .reason_item .label strong {
  font-weight: bold;
  color: #fff153;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 185%;
}
#truck .sec_truck_reason .grid-container .reason_item .reason_item_ttl {
  font-size: clamp(18px, 2vw, 21px);
  margin: 63px 10px 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item .reason_item_ttl {
    width: 70%;
    margin: 20px 0;
    min-height: 130px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 15% 0 0;
  }
}
@media (max-width: 849px) {
  #truck .sec_truck_reason .grid-container .reason_item .reason_item_ttl {
    font-size: min(4.615vw, 18px);
    letter-spacing: -0.08em;
  }
}
#truck .sec_truck_reason .grid-container .reason_item .reason_item_ttl strong {
  font-weight: bold;
  font-size: 128%;
}
#truck .sec_truck_reason .grid-container .reason_item .reason_item_txt {
  color: #333;
  margin: 0 10px 10px;
  letter-spacing: 0.04em;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  font-size: 16px;
  width: 100%;
  text-align: center;
}
@media (max-width: 849px) {
  #truck .sec_truck_reason .grid-container .reason_item .reason_item_txt {
    font-size: 14px;
    width: auto;
    text-align: left;
  }
}
#truck .sec_truck_reason .grid-container .reason_item .reason_item_txt img {
  display: block;
  margin: 10px auto;
}
#truck .sec_truck_reason .grid-container .reason_item .reason_item_txt p + p {
  margin-top: 1em;
}
#truck .sec_truck_reason .grid-container .reason_item .reason_button {
  border-radius: 0 0 10px 10px;
  background: #f8fcfd;
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
@media (min-width: 850px) {
  #truck .sec_truck_reason .grid-container .reason_item .reason_button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
#truck .sec_truck_reason .grid-container .reason_item .reason_button::before {
  position: absolute;
  content: "";
  border-right: 2px solid #29a5a5;
  border-bottom: 2px solid #29a5a5;
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin: auto;
  inset: 0 0 5px 0;
}
#truck .sec_truck_reason .grid-container .reason_item .reason_button.active::before {
  transform: rotate(-135deg);
  inset: 0 0 -10px 0;
}
#truck .sec_truck_satei {
  background: #fff4bc;
  padding: 80px 0;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_satei {
    padding: 35px 0 15px;
  }
}
#truck .sec_truck_satei p {
  letter-spacing: 0.04em;
}
#truck .sec_truck_satei .color4 {
  font-size: clamp(20px, 2.4vw, 24px);
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_satei .color4 {
    font-size: min(20px, 4.9vw);
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_satei .txt {
    font-size: min(16px, 4vw);
    margin-bottom: 0;
  }
}
#truck .sec_truck_satei .fs14 {
  font-size: 14px;
  color: #333;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_satei .sec_ziko_satei_inner {
    display: grid;
    grid-template-columns: 55% 38%;
    align-items: center;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  #truck .sec_truck_satei .sec_ziko_satei_inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_satei .sec_ziko_satei_inner .ziko_satei_text {
    padding-right: 50px;
    position: relative;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_satei .sec_ziko_satei_inner .ziko_satei_text::before {
    position: absolute;
    content: "";
    width: 24px;
    height: 42px;
    background-color: #29a5a5;
    clip-path: polygon(24px 50%, 0% 0%, 0% 42px);
    margin: auto;
    inset: 0 8% 0 auto;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  #truck .sec_truck_satei .sec_ziko_satei_inner .ziko_satei_text::before {
    inset: 0 20px 0 auto;
  }
}
#truck .sec_truck_satei .sec_ziko_satei_inner .ziko_satei_text .pc {
  font-size: clamp(20px, 2.4vw, 40px);
  text-align: left;
  width: fit-content;
  margin: 0 auto 40px;
}
#truck .sec_truck_case_list {
  background: #29a5a5;
  padding: 60px 0;
}
#truck .sec_truck_case_list h2 {
  color: #fff;
}
#truck .sec_truck_case_list h2 span.bold {
  display: block;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list h2 .with_side_slash {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_case_list h2 .with_side_slash {
    line-height: 1.3em;
    letter-spacing: -0.04em;
    padding: 0 0.75em;
  }
}
#truck .sec_truck_case_list h2 .with_side_slash:before, #truck .sec_truck_case_list h2 .with_side_slash:after {
  background: #fff;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list h2 .with_side_slash:before, #truck .sec_truck_case_list h2 .with_side_slash:after {
    height: 110%;
  }
}
#truck .sec_truck_case_list h2.index_ttl .underlined {
  border-bottom: 4px solid #fff;
}
@media (min-width: 800px) {
  #truck .sec_truck_case_list .truck_top_slider {
    padding: 0 80px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-track {
  display: flex;
}
#truck .sec_truck_case_list .truck_top_slider .slick-prev,
#truck .sec_truck_case_list .truck_top_slider .slick-next {
  background: url("../images/index/next.svg") no-repeat center center;
  background-size: contain;
}
#truck .sec_truck_case_list .truck_top_slider .slick-prev {
  background: url("../images/index/prev.svg") no-repeat center center;
  background-size: contain;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide {
  margin: 10px;
  background: #fff;
  height: auto;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li {
    padding: 20px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .truck_case_heading {
  font-size: clamp(16px, 1.8vw, 23px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .img {
  border: 1px solid #fff;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .img img {
  width: 100%;
  height: auto;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container {
  gap: 5px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
  margin: 10px 0 18px;
  text-align: center;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container span.maker {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container span.maker span {
  font-size: 20px;
  font-weight: 900;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container span.maker span {
    font-size: 21px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container span.maker span.red {
  color: #cb0000;
  display: flex;
  align-items: baseline;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container span.maker span.m1 {
  font-weight: bold;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: 56px;
  line-height: 1;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li .item_body .price_container span.maker span.m1 {
    font-size: 60px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li dl {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li dl dt {
  width: 32%;
  background: #e4e4e4;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 500;
  padding: 4px 0px;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li dl dt {
    font-size: 12px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li dl dd {
  width: 64%;
  line-height: 1.4;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 20px);
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li dl dd {
    font-size: 14px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li dl dd a {
  text-decoration: underline;
  color: blue;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .comment_wrap {
  margin-top: 10px;
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .comment_wrap h4 {
  background: #ee9000;
  color: #fff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li .comment_wrap h4 {
    font-size: 14px;
  }
}
#truck .sec_truck_case_list .truck_top_slider .slick-slide li .comment_wrap p {
  background: #fff;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_case_list .truck_top_slider .slick-slide li .comment_wrap p {
    font-size: 16px;
  }
}
#truck .sec_truck_case_list .slick-dots li button::before {
  background: #fff;
}
#truck .sec_truck_case_list .slick-dots li.slick-active button::before {
  background: #ffea01;
}
#truck .sec_truck_step {
  padding: 60px 0 40px;
}
#truck .sec_truck_step > .under_wrap {
  max-width: 1720px;
}
#truck .sec_truck_step h2 {
  display: flex;
  flex-direction: column;
}
#truck .sec_truck_step h2 span {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .index_ttl {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .index_ttl .index_ttl_sub {
    font-size: min(28px, 6.5vw);
  }
}
#truck .sec_truck_step .bg_yellow {
  line-height: 1;
  padding: 0 2px;
}
#truck .sec_truck_step .step_items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_items {
    flex-direction: column;
    gap: 15px;
  }
}
#truck .sec_truck_step .step_items::after {
  position: absolute;
  content: "";
  background: rgba(41, 165, 165, 0.5);
  width: 20px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_step .step_items::after {
    width: 60%;
    height: 30px;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}
@media only screen and (max-width: 960px) {
  #truck .sec_truck_step .step_items::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_items::after {
    display: block;
  }
}
#truck .sec_truck_step .step_item {
  background: #eaf6f9;
  padding: 15px;
  display: flex;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_step .step_item {
    flex-direction: column;
    align-items: center;
    width: calc(25% - 15px);
    padding: 20px 10px;
  }
}
@media only screen and (max-width: 960px) {
  #truck .sec_truck_step .step_item {
    width: calc(50% - 20px);
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item {
    width: 100%;
  }
}
@media only screen and (max-width: 960px) {
  #truck .sec_truck_step .step_item:nth-child(odd)::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100vw;
    height: 40px;
    background: rgba(41, 165, 165, 0.5);
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item:nth-child(odd)::before {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  #truck .sec_truck_step .step_item:nth-child(3)::before {
    right: 0;
    left: auto;
  }
}
#truck .sec_truck_step .step_item .step_item_num {
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item .step_item_num {
    display: none;
  }
}
#truck .sec_truck_step .step_item .step_item_num span {
  background: #ffea01;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 5px 15px;
  font-weight: 600;
  white-space: nowrap;
}
#truck .sec_truck_step .step_item figure {
  width: 65px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_step .step_item figure {
    height: 100px;
    width: 100%;
    text-align: center;
  }
}
#truck .sec_truck_step .step_item figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item .txtarea {
    width: calc(100% - 80px);
  }
}
#truck .sec_truck_step .step_item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  color: #29a5a5;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_step .step_item h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item h3 {
    font-size: min(22px, 4.5vw);
    justify-content: flex-start;
    text-align: left;
    line-height: 1.3em;
    margin-bottom: 5px;
  }
}
#truck .sec_truck_step .step_item h3 span {
  background: #ffea01;
  font-family: "Bahnschrift", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #000;
  padding: 0 10px;
  font-weight: 600;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item h3 span {
    line-height: 1.6;
  }
}
#truck .sec_truck_step .step_item p {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_step .step_item p {
    font-size: min(16px, 3.7vw);
    text-align: left;
  }
}
#truck .sec_truck_voice {
  background: #eaf6f9;
  padding: 60px 0 30px;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_voice {
    padding: 50px 0 30px;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_voice #truck_voice_slider {
    padding: 0 80px;
  }
}
#truck .sec_truck_voice #truck_voice_slider .slick-track {
  display: flex;
}
#truck .sec_truck_voice #truck_voice_slider .slick-slide {
  margin: 10px;
  background: #fff;
  height: auto;
}
#truck .sec_truck_voice #truck_voice_slider .voice_slide_item {
  background: #fff;
  padding: 15px 20px;
}
#truck .sec_truck_voice #truck_voice_slider .slider_head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
#truck .sec_truck_voice #truck_voice_slider .slider_head .icon {
  width: 80px;
  height: 80px;
}
#truck .sec_truck_voice #truck_voice_slider .slider_head dl {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}
#truck .sec_truck_voice #truck_voice_slider .slider_head dl dt {
  background: #e4e4e4;
  text-align: center;
  padding: 2px 20px;
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_voice #truck_voice_slider .slider_head dl dt {
    padding: 2px 15px;
  }
}
#truck .sec_truck_voice #truck_voice_slider .slider_head dl dd {
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 16px);
}
#truck .sec_truck_voice #truck_voice_slider .slider_head h3 {
  line-height: 1.3;
  color: #29a5a5;
  font-weight: bold;
  font-size: clamp(16px, 1.8vw, 20px);
}
#truck .sec_truck_voice #truck_voice_slider .slider_body {
  margin-top: 1px;
}
#truck .sec_truck_voice #truck_voice_slider .slider_body p {
  font-weight: 400;
  color: #333;
  font-size: clamp(14px, 1.4vw, 16px);
}
#truck .sec_truck_btnarea {
  background: #eaf6f9;
  padding: 50px 0;
}
#truck .sec_truck_btnarea > .under_wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_btnarea > .under_wrap {
    padding: 0 30px;
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_btnarea .btnarea_box {
    width: 35%;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_btnarea .btnarea_box.long {
    width: 60%;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_btnarea .btnarea_box.long .gbtn {
    display: flex;
    gap: 10px;
  }
}
#truck .sec_truck_btnarea .comment {
  letter-spacing: 0.04em;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin-bottom: 25px;
  font-weight: bold;
}
#truck .sec_truck_btnarea .comment::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(50% 14px, 0% 0%, 26px 0%);
  inset: auto 0 -13px 0;
  margin: auto;
}
#truck .sec_truck_faq {
  background: #eaf6f9;
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_faq {
    padding: 35px 0;
  }
}
#truck .sec_truck_faq .question_block div + div {
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_faq .question_block div + div {
    margin-top: 20px;
  }
}
#truck .sec_truck_faq .question_block dl {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.2);
  font-size: clamp(16px, 1.8vw, 20px);
}
#truck .sec_truck_faq .question_block dl dt h3 {
  font-weight: bold;
  position: relative;
  position: relative;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 20px 40px 20px 20px;
}
#truck .sec_truck_faq .question_block dl dt h3::before, #truck .sec_truck_faq .question_block dl dt h3::after {
  position: absolute;
  content: "";
  background: #2fa8a8;
  width: 16px;
  height: 2px;
  margin: auto;
  inset: 0 20px 0 auto;
  transition: 0.3s ease-in-out;
}
#truck .sec_truck_faq .question_block dl dt h3::after {
  transform: rotate(90deg);
}
#truck .sec_truck_faq .question_block dl dt h3.on::after {
  transform: rotate(180deg);
}
#truck .sec_truck_faq .question_block dl dd {
  font-size: clamp(14px, 1.6vw, 18px);
  display: none;
  font-weight: 400;
  color: #333;
  padding: 0 20px 20px 20px;
  letter-spacing: 0.04em;
}
#truck .sec_truck_faq .question_block dl dd .green {
  font-weight: 600;
  color: #29a5a5;
}
#truck .sec_truck_faq .question_block dl dd .disc_list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  font-weight: bold;
}
#truck .sec_truck_faq .question_block dl dd .disc_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #29a5a5;
}
#truck .sec_truck_faq .question_block dl dd .truck_box {
  padding: 10px;
  background: #ffed88;
  border-radius: 10px;
}
#truck .sec_truck_faq .question_block dl dd a {
  color: #ee9000;
  text-decoration: underline;
}
#truck .sec_truck_faq .bottom_text {
  font-size: clamp(20px, 2vw, 24px);
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_faq .bottom_text {
    font-size: 18px;
  }
}
#truck .sec_truck_try {
  padding: 50px 0;
  background-color: rgb(41, 165, 165);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgb(48, 168, 168) 5px, rgb(48, 168, 168) 10px);
}
#truck .sec_truck_try .under_wrap {
  max-width: 1147px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_try .under_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_try .try_in {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
}
#truck .sec_truck_try .try_ttl {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_try .try_ttl {
    width: 100%;
  }
}
#truck .sec_truck_try .try_ttl .with_side_slash {
  font-size: clamp(28px, 2.8vw, 28px);
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_try .try_ttl .with_side_slash {
    font-size: min(28px, 6.5vw);
  }
}
#truck .sec_truck_try .try_ttl .with_side_slash:before, #truck .sec_truck_try .try_ttl .with_side_slash:after {
  background: #fff;
}
#truck .sec_truck_try .try_ttl .bg {
  font-size: 128%;
  line-height: 1;
  position: relative;
  color: #2f2f2f;
}
#truck .sec_truck_try .try_ttl .bg::after {
  position: absolute;
  content: "";
  background: #ffea01;
  z-index: -1;
  width: 100%;
  height: 90%;
  left: 0;
  top: 10%;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_try figure {
    width: 50%;
    text-align: right;
    margin-top: -50px;
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_try .txtarea {
    width: 50%;
  }
}
#truck .sec_truck_try .txtarea .gbtn {
  max-width: 700px;
}
#truck .sec_truck_try ul {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
#truck .sec_truck_try ul li {
  background: #fff;
  padding: 2px 14px;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_try ul li {
    font-size: min(20px, 4.5vw);
  }
}
#truck .sec_truck_try .try_text {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-right: -50px;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_try .try_text {
    margin-right: -50px;
    margin-bottom: 0;
  }
}
#truck .sec_truck_try .try_text span {
  font-size: 36px;
  color: #cb0000;
  -webkit-text-stroke: 4px #ffffff;
  paint-order: stroke;
}
#truck .sec_truck_try .txt {
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.04em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #truck .sec_truck_try .txt {
    font-size: min(16px, 4vw);
  }
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_try .btn_rounded {
    width: 500px;
  }
}
#truck .sec_truck_column {
  background: url(../images/way_bg.png) no-repeat center center/cover;
  padding: 50px 0;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_column .truck_column_slider {
    padding: 0 80px;
  }
}
#truck .sec_truck_column .truck_column_slider .slick-track {
  display: flex;
}
#truck .sec_truck_column .truck_column_slider .slick-slide {
  margin: 10px;
  background: #eaf6f9;
  height: auto;
}
#truck .sec_truck_column .truck_column_slider article {
  padding: 10px;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_column .truck_column_slider article {
    padding: 20px;
  }
}
#truck .sec_truck_column .truck_column_slider h3 {
  font-weight: bold;
}
#truck .sec_truck_column .truck_column_slider .img {
  aspect-ratio: 27/17;
}
#truck .sec_truck_column .truck_column_slider .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#truck .sec_truck_column .truck_column_slider .cat_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 15px 0;
}
#truck .sec_truck_column .truck_column_slider .cat_list span {
  font-size: 12px;
  color: #29a5a5;
  font-weight: 500;
  display: inline-block;
  background: #fff;
  padding: 2px 15px 0;
  width: fit-content;
}
@media only screen and (min-width: 768px) {
  #truck .sec_truck_column .truck_column_slider .cat_list span {
    font-size: 14px;
  }
}
#truck #footer .footer_navblock {
  background: #1e3f91;
}

@media screen and (max-width: 767px) {
  .vpc767 {
    display: none;
  }
}
@media not screen, screen and (min-width: 768px) {
  .vsp767 {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .vpc640 {
    display: none;
  }
}
@media not screen, screen and (min-width: 641px) {
  .vsp640 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .vpc480 {
    display: none;
  }
}
@media not screen, screen and (min-width: 481px) {
  .vsp480 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */