@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
@media screen and (max-width: 1000px) {
  :root {
    --view-size: 750;
  }
}
/* -----------------------------------
common：基本
----------------------------------- */
abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, 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, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1;
}

b {
  font-weight: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* inner関係 */
.inner {
  max-width: 63rem;
  margin-inline: auto;
}

/* -----------------------------------
common：flex
----------------------------------- */
.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  flex-direction: column;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* -----------------------------------
common：display
----------------------------------- */
.all_dn {
  display: none;
}

@media (max-width: 1000px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 1000px) {
  .sp_db {
    display: block;
  }
}

/* -----------------------------------
common：position
----------------------------------- */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* z-index */
.z_-10 {
  z-index: -10;
}

.z_10 {
  z-index: 10;
}

.z_20 {
  z-index: 20;
}

.z_30 {
  z-index: 30;
}

.z_40 {
  z-index: 40;
}

.z_50 {
  z-index: 50;
}

.z_8000 {
  z-index: 8000;
}

.z_9999 {
  z-index: 9999;
}

.shadow {
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1000px) {
  .shadow {
    box-shadow: 0 calc(8 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
  }
}

/* 
ヘッダー：ヘッダー
----------------------------------- */
.header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  padding: 0.5rem 0;
}
@media (max-width: 1000px) {
  .header {
    position: static;
    padding: calc(8 / var(--view-size) * 100vw) 0;
  }
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .header .inner {
    justify-content: center;
  }
}

.header_logo {
  width: 4.5rem;
}
@media (max-width: 1000px) {
  .header_logo {
    width: calc(72 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .header_nav {
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }
}

@media (max-width: 1000px) {
  .header_nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header_nav_list {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (max-width: 1000px) {
  .header_nav_list {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.header_nav_list li {
  width: 10rem;
  height: 4.5rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .header_nav_list li {
    width: 50%;
    height: calc(100 / var(--view-size) * 100vw);
  }
}

.header_nav_list li a {
  display: block;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.25rem;
  transition: background-color 0.6s;
}
@media (max-width: 1000px) {
  .header_nav_list li a {
    position: relative;
    font-size: calc(28 / var(--view-size) * 100vw);
    line-height: 1.2;
    border-radius: 0;
  }
}

.nav_list_link01 a {
  background-color: #7B8B47;
  line-height: 1.1;
  color: #FFFFFF;
  padding-top: 0.625rem;
}
@media (max-width: 1000px) {
  .nav_list_link01 a {
    background-color: #D83006;
    padding-top: calc(18 / var(--view-size) * 100vw);
    padding-right: calc(32 / var(--view-size) * 100vw);
  }
}

.nav_list_link01 a:hover {
  background-color: #AEBB82;
}
@media (max-width: 1000px) {
  .nav_list_link01 a:hover {
    background-color: #EF5757;
  }
}

@media (max-width: 1000px) {
  .nav_list_link01 a span {
    color: #FFE200;
  }
}

.nav_list_link02 a {
  background-color: #fff;
  border: 0.125rem solid #7B8B47;
  line-height: 1.3;
  color: #7B8B47;
  padding-top: 0.8125rem;
  transition: color 0.6s, border-color 0.6s;
}
@media (max-width: 1000px) {
  .nav_list_link02 a {
    border-width: calc(2 / var(--view-size) * 100vw);
    padding-top: calc(14 / var(--view-size) * 100vw);
    padding-right: calc(34 / var(--view-size) * 100vw);
  }
}

.nav_list_link02 a:hover {
  color: #AEBB82;
  border-color: #AEBB82;
}

@media (max-width: 1000px) {
  .nav_list_link01 a::after,
  .nav_list_link02 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(93 / var(--view-size) * 100vw);
    transform: rotate(45deg) translateY(-50%);
    width: calc(11 / var(--view-size) * 100vw);
    aspect-ratio: 1/1;
    border: solid #FFFFFF;
    border-width: calc(3 / var(--view-size) * 100vw) calc(3 / var(--view-size) * 100vw) 0 0;
  }
}

@media (max-width: 1000px) {
  .nav_list_link02 a::after {
    right: calc(104 / var(--view-size) * 100vw);
    border-color: #7B8B47;
  }
}

/* 
フッター：フッター
----------------------------------- */
.footer {
  background-color: #7B8B47;
  padding: 0.9375rem 0 1.0625rem;
}
@media (max-width: 1000px) {
  .footer {
    padding: calc(20 / var(--view-size) * 100vw) 0 calc(120 / var(--view-size) * 100vw);
  }
}

.footer_copy {
  text-align: center;
}

.footer_copy small {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (max-width: 1000px) {
  .footer_copy small {
    font-size: calc(20 / var(--view-size) * 100vw);
    font-weight: 500;
    line-height: 1.4;
  }
}

/* 上からフェードイン */
.topin1 {
  opacity: 0;
  transform: translateY(20px);
}
.topin1.active {
  animation: 0.8s forwards topin;
}

/* 下からフェードイン */
.bottomin1 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin1.active {
  animation: 0.8s forwards bottomin;
}

.bottomin2 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin2.active {
  animation: 0.8s forwards 0.3s bottomin;
}

.bottomin3 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin3.active {
  animation: 0.8s forwards 0.6s bottomin;
}

.bottomin4 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin4.active {
  animation: 0.8s forwards 0.9s bottomin;
}

.bottomin5 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin5.active {
  animation: 0.8s forwards 1.2s bottomin;
}

.bottomin6 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin6.active {
  animation: 0.8s forwards 1.5s bottomin;
}

.bounceIn {
  animation-name: bounceIn;
}

/* ペコペコへこむボタン */
.pekopeko {
  animation: pekopeko 2s infinite;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* 上からフェードイン */
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下からフェードイン */
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 回転 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ふわふわ */
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* バウンス */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/* ペコペコへこむボタン */
@keyframes pekopeko {
  0% {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    top: 3px;
  }
  20% {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    top: 3px;
  }
  40% {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    top: 0px;
  }
}
/* 
mv : メインビジュアル
----------------------------------- */
.mv {
  padding-top: 5.5rem;
}
@media (max-width: 1000px) {
  .mv {
    padding-top: 0;
  }
}

.mv_ttl {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  background-color: #D83006;
  padding: 0.6875rem 0 0.75rem;
}
@media (max-width: 1000px) {
  .mv_ttl {
    font-size: calc(40 / var(--view-size) * 100vw);
    padding: calc(20 / var(--view-size) * 100vw) 0 calc(19 / var(--view-size) * 100vw);
  }
}

.mv_ttl b {
  font-size: 2.375rem;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .mv_ttl b {
    font-size: calc(40 / var(--view-size) * 100vw);
  }
}

.mv_ttl span {
  color: #FFE200;
}

/* PC */
.mv_pc .inner {
  background-image: url("../image/mv-bg.png");
  background-size: 158.3125rem 51.75rem;
  background-position: top 0 center;
  padding-bottom: 2rem;
}

.mv_pc_inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv_pc_ttl {
  padding-top: 3.4375rem;
  padding-left: 8.75rem;
}

.ttl_desc_top {
  background-color: #FFFFFF;
  display: block;
  width: 29rem;
  padding: 0.9375rem 0 0.8125rem 2.125rem;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.desc_top_01 {
  display: inline-block;
  width: 15.8125rem;
}

.desc_top_02 {
  display: inline-block;
  width: 5.125rem;
  margin-left: 0.25rem;
  transform: translateY(-0.125rem);
}

.ttl_desc_btm {
  background-color: #FFFFFF;
  display: block;
  width: 20rem;
  padding: 0.6875rem 2.375rem 0.5625rem 2.0625rem;
  margin-top: 0.75rem;
}

.pc_ttl_cont {
  top: 13%;
  left: 2.2%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../image/mv-badge.png");
  background-size: contain;
  width: 8.653125rem;
  height: 8.75rem;
  font-size: 1.2325rem;
  font-weight: 700;
  line-height: 1.4;
}

.pc_ttl_cont b {
  font-size: 2.125rem;
  font-weight: 700;
}

.mv_pc_sub {
  background: linear-gradient(90deg, rgba(123, 139, 71, 0) 0%, #7B8B47 32.31%, #7B8B47 55.75%, rgba(123, 139, 71, 0) 96.63%);
  width: 100vw;
  padding: 0 calc(50vw - 50% + 8.75rem);
  padding-top: 1.375rem;
  padding-bottom: 1.0625rem;
  margin: 0 calc(50% - 50vw);
  margin-top: 1.3125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.mv_pc_sub span:last-of-type {
  font-size: 1.125rem;
}

.pc_sub_img {
  width: 2.001875rem;
  margin: 0 1rem;
}

.mv_pc_box {
  width: 34.8125rem;
  padding-left: 8.8125rem;
  padding-right: 4.6875rem;
  margin-top: 1.75rem;
}

.mv_pc_box::before {
  content: "";
  position: absolute;
  top: -46%;
  right: -3%;
  background-image: url("../image/mv-line.svg");
  background-size: contain;
  width: 1.1875rem;
  aspect-ratio: 17/18;
}

.mv_pc_box::after {
  content: "";
  position: absolute;
  top: -24%;
  right: -0.5%;
  background-image: url("../image/mv-img.png");
  background-size: contain;
  width: 4.6875rem;
  aspect-ratio: 1/1;
}

.pc_box_ttl {
  display: inline-block;
  background-image: url("../image/mv-wave.svg");
  background-size: contain;
  background-position: bottom 0.125rem left -0.1875rem;
  padding-bottom: 0.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.pc_box_ttl span {
  color: #D83006;
}

.pc_box_txt {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.pc_box_img {
  width: 4.1875rem;
}

.mv_pc_img {
  top: -3.5%;
  right: 1%;
  width: 25.625rem;
}

/* SP */
@media (max-width: 1000px) {
  .mv_sp .inner {
    background-image: url("../image/mv-bg-sp.png");
    background-size: 100% calc(1086 / var(--view-size) * 100vw);
    background-color: #eee;
    overflow: hidden;
    padding-bottom: calc(46 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .mv_sp_ttl {
    margin-top: calc(60 / var(--view-size) * 100vw);
  }
}

.sp_ttl_top {
  background-color: #FFFFFF;
  display: block;
  width: calc(715 / var(--view-size) * 100vw);
  padding: calc(28 / var(--view-size) * 100vw) 0 calc(27 / var(--view-size) * 100vw) calc(51 / var(--view-size) * 100vw);
}

.ttl_top_01 {
  display: inline-block;
  width: calc(481 / var(--view-size) * 100vw);
}

.ttl_top_02 {
  display: inline-block;
  width: calc(138 / var(--view-size) * 100vw);
  margin-left: calc(5 / var(--view-size) * 100vw);
  transform: translateY(calc(-3 / var(--view-size) * 100vw));
}

.sp_ttl_btm {
  background-color: #FFFFFF;
  display: block;
  width: calc(486 / var(--view-size) * 100vw);
  padding: calc(21 / var(--view-size) * 100vw) calc(23 / var(--view-size) * 100vw) calc(29 / var(--view-size) * 100vw) calc(50 / var(--view-size) * 100vw);
  margin-top: calc(16 / var(--view-size) * 100vw);
}

@media (max-width: 1000px) {
  .mv_sp_sub {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #7B8B47;
    padding: calc(20 / var(--view-size) * 100vw) calc(42 / var(--view-size) * 100vw) calc(19 / var(--view-size) * 100vw);
    margin-top: calc(40 / var(--view-size) * 100vw);
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .mv_sp_sub span:first-of-type {
    font-size: calc(38 / var(--view-size) * 100vw);
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1000px) {
  .mv_sp_sub span:last-of-type {
    font-size: calc(32 / var(--view-size) * 100vw);
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1000px) {
  .sp_sub_img {
    width: calc(32 / var(--view-size) * 100vw);
    margin: calc(5 / var(--view-size) * 100vw) 0;
  }
}

@media (max-width: 1000px) {
  .mv_sp_badge {
    padding-top: 40%;
  }
}

@media (max-width: 1000px) {
  .sp_badge_cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    top: 3%;
    left: 4.6%;
    background-image: url("../image/mv-badge.png");
    background-size: contain;
    width: calc(180 / var(--view-size) * 100vw);
    aspect-ratio: 180/181;
    font-size: calc(26 / var(--view-size) * 100vw);
    font-weight: 700;
    line-height: 1.4;
  }
}

@media (max-width: 1000px) {
  .sp_badge_cont b {
    font-size: calc(44 / var(--view-size) * 100vw);
    font-weight: 700;
  }
}

@media (max-width: 1000px) {
  .sp_badge_img {
    width: calc(220 / var(--view-size) * 100vw);
    bottom: -2.2%;
    left: 22.6%;
  }
}

@media (max-width: 1000px) {
  .mv_sp_box {
    position: relative;
    z-index: 1;
    padding: 0 calc(35 / var(--view-size) * 100vw);
    margin-top: calc(5 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .sp_box_ttl {
    display: inline-block;
    font-size: calc(40 / var(--view-size) * 100vw);
    font-weight: 700;
    padding-bottom: calc(10 / var(--view-size) * 100vw);
    background-image: url("../image/mv-wave.svg");
    background-size: contain;
    background-position: bottom 0 left calc(-5 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .sp_box_ttl span {
    color: #D83006;
  }
}

@media (max-width: 1000px) {
  .sp_box_txt {
    font-size: calc(20 / var(--view-size) * 100vw);
    font-weight: 400;
    line-height: 1.3;
    margin-top: calc(10 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .mv_sp_img {
    top: 27.6%;
    right: 0%;
    width: calc(360 / var(--view-size) * 100vw);
  }
}

/* 
end : タスポは完全終了
----------------------------------- */
.end {
  background-color: #F6F4E6;
}

.end_bg {
  background-color: #7B8B47;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 82.4%, 50% 100%, 0 82.4%);
          clip-path: polygon(0 0, 100% 0, 100% 82.4%, 50% 100%, 0 82.4%);
  padding: 5rem 0 5.125rem;
}
@media (max-width: 1000px) {
  .end_bg {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 96.5%, 50% 100%, 0 96.5%);
            clip-path: polygon(0 0, 100% 0, 100% 96.5%, 50% 100%, 0 96.5%);
    padding: calc(90 / var(--view-size) * 100vw) 0 calc(117 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .end .inner {
    padding: 0 calc(47 / var(--view-size) * 100vw);
    overflow: hidden;
  }
}

.end_ttl {
  width: 42.6875rem;
  padding: 1.4375rem 0 1.25rem;
  margin-inline: auto;
  border: solid #FFFFFF;
  border-width: 0.0625rem 0 0.0625rem 0;
  text-align: center;
}
@media (max-width: 1000px) {
  .end_ttl {
    width: calc(504 / var(--view-size) * 100vw);
    padding: calc(23 / var(--view-size) * 100vw) 0 calc(23 / var(--view-size) * 100vw);
    border-width: calc(1 / var(--view-size) * 100vw) 0 calc(1 / var(--view-size) * 100vw) 0;
  }
}

.end_ttl_sub {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
  margin-top: 0.625rem;
}
@media (max-width: 1000px) {
  .end_ttl_sub {
    font-size: calc(32 / var(--view-size) * 100vw);
    line-height: 1.4;
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.end_ttl_sub span {
  font-weight: 700;
  color: #FFE200;
}

.end_list {
  margin-top: 2.5rem;
}
@media (max-width: 1000px) {
  .end_list {
    margin-top: calc(79 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .end_list ul {
    row-gap: calc(40 / var(--view-size) * 100vw);
  }
}

.end_list_box {
  background-size: contain;
  width: 14.875rem;
  height: 13.25rem;
  padding-top: 7.75rem;
  background-image: url("../image/end-icon01.jpg");
  background-size: 11rem 6.75rem;
  background-position: top 1rem left 2.1875rem;
}
@media (max-width: 1000px) {
  .end_list_box {
    width: calc(320 / var(--view-size) * 100vw);
    height: calc(400 / var(--view-size) * 100vw);
    padding-top: calc(228 / var(--view-size) * 100vw);
    background-size: calc(293 / var(--view-size) * 100vw) calc(180 / var(--view-size) * 100vw);
    background-position: top calc(54 / var(--view-size) * 100vw) left calc(13 / var(--view-size) * 100vw);
  }
}

.end_list ul li:nth-of-type(2) .end_list_box {
  background-image: url("../image/end-icon02.jpg");
}
@media (max-width: 1000px) {
  .end_list ul li:nth-of-type(2) .end_list_box {
    background-size: calc(250 / var(--view-size) * 100vw) calc(154 / var(--view-size) * 100vw);
    background-position: top calc(73 / var(--view-size) * 100vw) left calc(37 / var(--view-size) * 100vw);
  }
}

.end_list ul li:nth-of-type(3) .end_list_box {
  background-image: url("../image/end-icon03.jpg");
}
@media (max-width: 1000px) {
  .end_list ul li:nth-of-type(3) .end_list_box {
    padding-top: calc(201 / var(--view-size) * 100vw);
    background-size: calc(250 / var(--view-size) * 100vw) calc(150 / var(--view-size) * 100vw);
    background-position: top calc(45 / var(--view-size) * 100vw) left calc(35 / var(--view-size) * 100vw);
  }
}

.end_list ul li:nth-of-type(4) .end_list_box {
  background-image: url("../image/end-icon04.jpg");
  background-size: 11.75rem 6.75rem;
  background-position: top 1.3125rem left 2.375rem;
  padding-top: 8.3125rem;
}
@media (max-width: 1000px) {
  .end_list ul li:nth-of-type(4) .end_list_box {
    padding-top: calc(202 / var(--view-size) * 100vw);
    background-size: calc(262 / var(--view-size) * 100vw) calc(150 / var(--view-size) * 100vw);
    background-position: top calc(51 / var(--view-size) * 100vw) left calc(30 / var(--view-size) * 100vw);
  }
}

.end_list_box::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/end-bg-pc.png");
  background-size: contain;
}
@media (max-width: 1000px) {
  .end_list_box::after {
    background-image: url("../image/end-bg-sp.png");
  }
}

.end_list_txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 1000px) {
  .end_list_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.end_list_txt span {
  color: #D83006;
}

.end_think {
  margin-top: 2.75rem;
  margin-left: -1.875rem;
}
@media (max-width: 1000px) {
  .end_think {
    flex-direction: column;
    margin-top: calc(48 / var(--view-size) * 100vw);
    margin-left: 0;
  }
}

.end_think_bg {
  background-image: url("../image/end-bubble.png");
  background-size: contain;
  width: 34.5rem;
  height: 8.875rem;
  padding-top: 2.125rem;
  padding-right: 2.5rem;
  animation: fuwafuwa 3s linear infinite;
}
@media (max-width: 1000px) {
  .end_think_bg {
    background-image: url("../image/end-bubble-sp.png");
    width: calc(677 / var(--view-size) * 100vw);
    height: calc(244 / var(--view-size) * 100vw);
    padding-top: calc(42 / var(--view-size) * 100vw);
    padding-right: calc(22 / var(--view-size) * 100vw);
  }
}

.end_think_txt {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1000px) {
  .end_think_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.end_think_img {
  width: 10.5rem;
  aspect-ratio: 1/1;
  border-radius: 6.25rem;
  overflow: hidden;
  margin-left: -0.9375rem;
}
@media (max-width: 1000px) {
  .end_think_img {
    width: calc(380 / var(--view-size) * 100vw);
    border-radius: calc(200 / var(--view-size) * 100vw);
    margin-top: calc(23 / var(--view-size) * 100vw);
    margin-left: 0;
  }
}

.end_roll {
  width: 8.625rem;
  aspect-ratio: 1/1;
  top: 857%;
  right: -3.5%;
}

.end_roll a {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.end_roll.active a {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.end_roll_txt {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  text-align: center;
}

.end_roll_txt b {
  font-size: 1.625rem;
  font-weight: 900;
  color: #FFE200;
}

.end_roll_bg {
  background-image: url("../image/end-circle.svg");
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: spin 4s linear infinite;
  transition: background-image 0.6s;
}

.end_roll:hover .end_roll_bg {
  background-image: url("../image/end-circle-hover.svg");
}

/* 
purchase : 法的身分証明書で購入ができるようになりました
----------------------------------- */
.purchase {
  background-color: #F6F4E6;
  padding: 5.125rem 0 6.625rem;
}
@media (max-width: 1000px) {
  .purchase {
    padding: calc(80 / var(--view-size) * 100vw) 0 calc(115 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .purchase .inner {
    padding: 0 calc(35 / var(--view-size) * 100vw);
  }
}

.purchase_ttl {
  row-gap: 1rem;
}
@media (max-width: 1000px) {
  .purchase_ttl {
    row-gap: calc(24 / var(--view-size) * 100vw);
  }
}

.purchase_ttl_top {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .purchase_ttl_top {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.purchase_ttl_top::before,
.purchase_ttl_top::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 0.125rem;
  height: 2.5rem;
  background-color: #222222;
}
@media (max-width: 1000px) {
  .purchase_ttl_top::before,
  .purchase_ttl_top::after {
    width: calc(2 / var(--view-size) * 100vw);
    height: calc(48 / var(--view-size) * 100vw);
  }
}

.purchase_ttl_top::before {
  left: -1.0625rem;
  transform: rotate(-25deg);
}
@media (max-width: 1000px) {
  .purchase_ttl_top::before {
    left: calc(-21 / var(--view-size) * 100vw);
  }
}

.purchase_ttl_top::after {
  right: -1.0625rem;
  transform: rotate(25deg);
}
@media (max-width: 1000px) {
  .purchase_ttl_top::after {
    right: calc(-21 / var(--view-size) * 100vw);
  }
}

.purchase_ttl_btm {
  width: 39.875rem;
}
@media (max-width: 1000px) {
  .purchase_ttl_btm {
    width: calc(678 / var(--view-size) * 100vw);
  }
}

.purchase_sub {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  justify-content: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 39.875rem;
  background-color: #7B8B47;
  padding: 0.0625rem 0 0;
  border-radius: 6.25rem;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .purchase_sub {
    font-size: calc(32 / var(--view-size) * 100vw);
    font-weight: 500;
    line-height: 1.4;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    width: 100%;
    padding: calc(9 / var(--view-size) * 100vw) 0 calc(8 / var(--view-size) * 100vw);
    border-radius: 0;
    margin-top: calc(37 / var(--view-size) * 100vw);
  }
}

.purchase_box {
  margin-top: 5.875rem;
}
@media (max-width: 1000px) {
  .purchase_box {
    margin-top: calc(140 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .purchase_flow {
    row-gap: calc(136 / var(--view-size) * 100vw);
  }
}

.purchase_flow li {
  display: flex;
  flex-direction: column;
  width: 15rem;
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 1rem 0.75rem;
}
@media (max-width: 1000px) {
  .purchase_flow li {
    width: calc(616 / var(--view-size) * 100vw);
    border-radius: calc(8 / var(--view-size) * 100vw);
    padding: calc(29 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) calc(32 / var(--view-size) * 100vw);
    margin-inline: auto;
    box-shadow: 0 calc(4 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
  }
}

.purchase_flow li::after {
  content: "";
  position: absolute;
  top: -16.7%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.875rem;
  background-image: url("../image/check-circle.svg");
  background-size: contain;
}
@media (max-width: 1000px) {
  .purchase_flow li::after {
    top: -13.8%;
    width: calc(80 / var(--view-size) * 100vw);
    height: calc(92 / var(--view-size) * 100vw);
  }
}

.purchase_flow_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin-top: 1rem;
}
@media (max-width: 1000px) {
  .purchase_flow_txt {
    margin-top: calc(30 / var(--view-size) * 100vw);
  }
}

.purchase_flow_txt p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1000px) {
  .purchase_flow_txt p {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.purchase_flow_txt p b {
  font-weight: 500;
  color: #D83006;
}

/* 
taspo : タスポがなくてもOK
----------------------------------- */
.taspo {
  background-color: #F6F4E6;
  padding: 0 0 4.9375rem;
}
@media (max-width: 1000px) {
  .taspo {
    padding: 0 0 calc(82 / var(--view-size) * 100vw);
  }
}

.taspo_ttl {
  background-color: #7B8B47;
  padding: 2.1875rem 0;
  text-align: center;
}
@media (max-width: 1000px) {
  .taspo_ttl {
    padding: calc(44 / var(--view-size) * 100vw) 0;
  }
}

.taspo_ttl_top {
  display: inline-block;
  width: 28.5rem;
}
@media (max-width: 1000px) {
  .taspo_ttl_top {
    width: calc(529 / var(--view-size) * 100vw);
    padding-right: calc(16 / var(--view-size) * 100vw);
  }
}

.taspo_ttl_bubble {
  top: -22%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .taspo_ttl_bubble {
    top: -26%;
  }
}

.ttl_bubble_txt {
  background-color: #FFFFFF;
  display: inline-block;
  width: 13.375rem;
  padding: 0.25rem 0;
  margin-bottom: 0.75rem;
  border: 0.1875rem solid #7B8B47;
  border-radius: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1000px) {
  .ttl_bubble_txt {
    width: calc(230 / var(--view-size) * 100vw);
    padding: 0;
    margin-bottom: calc(27 / var(--view-size) * 100vw);
    border-width: calc(3 / var(--view-size) * 100vw);
    border-radius: calc(27 / var(--view-size) * 100vw);
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.ttl_bubble_txt::before,
.ttl_bubble_txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  translate: -50% 100%;
}

.ttl_bubble_txt::before {
  border-width: 0.75rem 0.5rem 0 0.5rem;
  border-color: #7B8B47 transparent transparent;
}
@media (max-width: 1000px) {
  .ttl_bubble_txt::before {
    border-width: calc(27 / var(--view-size) * 100vw) calc(17 / var(--view-size) * 100vw) 0 calc(17 / var(--view-size) * 100vw);
  }
}

.ttl_bubble_txt::after {
  border-width: 0.4125rem 0.275rem 0 0.275rem;
  border-color: #FFFFFF transparent transparent;
}
@media (max-width: 1000px) {
  .ttl_bubble_txt::after {
    border-width: calc(21.4 / var(--view-size) * 100vw) calc(13.5 / var(--view-size) * 100vw) 0 calc(13.5 / var(--view-size) * 100vw);
  }
}

.taspo .inner {
  max-width: 50rem;
}
@media (max-width: 1000px) {
  .taspo .inner {
    max-width: 100%;
    padding: 0 calc(35 / var(--view-size) * 100vw);
  }
}

.taspo_num {
  padding: 3.4375rem 0 0;
  margin-top: 2.5rem;
}
@media (max-width: 1000px) {
  .taspo_num {
    padding: calc(90 / var(--view-size) * 100vw) 0 0;
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.taspo_num_img {
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media (max-width: 1000px) {
  .taspo_num_img {
    -moz-column-gap: calc(20 / var(--view-size) * 100vw);
         column-gap: calc(20 / var(--view-size) * 100vw);
  }
}

.num_img {
  width: 12.5rem;
}
@media (max-width: 1000px) {
  .num_img {
    width: calc(330 / var(--view-size) * 100vw);
  }
}

.num_img::before {
  content: "";
  position: absolute;
  top: -41%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.875rem;
  background-image: url("../image/check-circle.svg");
  background-size: contain;
}
@media (max-width: 1000px) {
  .num_img::before {
    width: calc(66 / var(--view-size) * 100vw);
    height: calc(76 / var(--view-size) * 100vw);
  }
}

.taspo_num_txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 1000px) {
  .taspo_num_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
    line-height: 1.4;
    text-align: left;
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.taspo_num_txt b {
  font-weight: 700;
  color: #D83006;
}
.taspo_merit {
  margin-top: 2.5rem;
}
@media (max-width: 1000px) {
  .taspo_merit {
    margin-top: calc(56 / var(--view-size) * 100vw);
  }
}

.taspo_merit_ttl {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.4;
  color: #FFFFFF;
  text-align: center;
  width: 14.875rem;
  background-color: #7B8B47;
  border-radius: 0.25rem 0 0 0;
  -webkit-clip-path: polygon(0 0, 86.5% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 86.5% 0, 100% 100%, 0% 100%);
  padding: 0.125rem 0;
}
@media (max-width: 1000px) {
  .taspo_merit_ttl {
    font-size: calc(32 / var(--view-size) * 100vw);
    width: calc(283 / var(--view-size) * 100vw);
    border-radius: calc(6.8 / var(--view-size) * 100vw) 0 0 0;
    -webkit-clip-path: polygon(0 0, 81.8% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 81.8% 0, 100% 100%, 0% 100%);
    padding: calc(8 / var(--view-size) * 100vw) 0;
  }
}

.taspo_merit_list {
  background-color: #FFFFFF;
  border: 0.1875rem solid #7B8B47;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
  padding: 2.25rem 2.25rem 2.3125rem;
}
@media (max-width: 1000px) {
  .taspo_merit_list {
    border-width: calc(2.55 / var(--view-size) * 100vw);
    border-radius: 0 calc(6.8 / var(--view-size) * 100vw) calc(6.8 / var(--view-size) * 100vw) calc(6.8 / var(--view-size) * 100vw);
    padding: calc(29 / var(--view-size) * 100vw) calc(34 / var(--view-size) * 100vw) calc(30 / var(--view-size) * 100vw) calc(31 / var(--view-size) * 100vw);
  }
}

.taspo_merit_list li:not(:first-of-type) {
  margin-top: 1rem;
}
@media (max-width: 1000px) {
  .taspo_merit_list li:not(:first-of-type) {
    margin-top: calc(14 / var(--view-size) * 100vw);
  }
}

.merit_list_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.375rem;
}
@media (max-width: 1000px) {
  .merit_list_ttl {
    font-size: calc(40 / var(--view-size) * 100vw);
    padding-left: calc(64 / var(--view-size) * 100vw);
  }
}

.merit_list_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.375rem;
  background-image: url("../image/check-square.svg");
  background-size: contain;
}
@media (max-width: 1000px) {
  .merit_list_ttl::before {
    width: calc(41 / var(--view-size) * 100vw);
    height: calc(37 / var(--view-size) * 100vw);
    top: calc(13 / var(--view-size) * 100vw);
    transform: translateY(0);
  }
}

.merit_list_txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 2.125rem;
}
@media (max-width: 1000px) {
  .merit_list_txt {
    font-size: calc(30 / var(--view-size) * 100vw);
    padding-left: calc(58 / var(--view-size) * 100vw);
  }
}

.merit_list_txt:first-of-type {
  margin-top: 0.25rem;
}
@media (max-width: 1000px) {
  .merit_list_txt:first-of-type {
    margin-top: calc(7 / var(--view-size) * 100vw);
  }
}

/* 
intro : 製品紹介
----------------------------------- */
.intro {
  background-color: #7B8B47;
  padding: 5rem 0 5rem;
}
@media (max-width: 1000px) {
  .intro {
    padding: calc(39 / var(--view-size) * 100vw) 0 calc(40 / var(--view-size) * 100vw);
  }
}

.intro .inner {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 2.5rem 3.375rem;
}
@media (max-width: 1000px) {
  .intro .inner {
    width: calc(710 / var(--view-size) * 100vw);
    border-radius: calc(8 / var(--view-size) * 100vw);
    padding: calc(52 / var(--view-size) * 100vw) calc(48 / var(--view-size) * 100vw) calc(41 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

.intro_ttl {
  text-align: center;
}

.intro_ttl span {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.3125rem;
  border-bottom: 0.125rem solid #222222;
}
@media (max-width: 1000px) {
  .intro_ttl span {
    width: calc(188 / var(--view-size) * 100vw);
    padding-bottom: calc(19 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
  }
}

.intro_info {
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
}
@media (max-width: 1000px) {
  .intro_info {
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.intro_info_img {
  width: 15rem;
}
@media (max-width: 1000px) {
  .intro_info_img {
    width: calc(400 / var(--view-size) * 100vw);
    margin-inline: auto;
  }
}

.intro_info_cont {
  width: 38.75rem;
}
@media (max-width: 1000px) {
  .intro_info_cont {
    width: 100%;
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.info_cont_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .info_cont_ttl {
    font-size: calc(32 / var(--view-size) * 100vw);
    text-align: center;
    padding-bottom: calc(14 / var(--view-size) * 100vw);
    border-bottom: calc(2 / var(--view-size) * 100vw) solid #222222;
  }
}

.info_cont_txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.5rem;
}
@media (max-width: 1000px) {
  .info_cont_txt {
    font-size: calc(32 / var(--view-size) * 100vw);
    line-height: 1.4;
    margin-top: calc(16 / var(--view-size) * 100vw);
  }
}

.intro_features {
  background-color: #F6F4E6;
  width: 56.25rem;
  border-radius: 0.5rem;
  padding: 2.5rem 5.375rem;
  margin-inline: auto;
  margin-top: 3.875rem;
}
@media (max-width: 1000px) {
  .intro_features {
    width: 100%;
    border-radius: calc(8 / var(--view-size) * 100vw);
    padding: calc(40 / var(--view-size) * 100vw) calc(36 / var(--view-size) * 100vw);
    margin-top: calc(108 / var(--view-size) * 100vw);
  }
}

.intro_features_ttl {
  top: -1.375rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1000px) {
  .intro_features_ttl {
    top: calc(-26 / var(--view-size) * 100vw);
  }
}

.intro_features_ttl span {
  display: inline-block;
  background-color: #7B8B47;
  width: 18.375rem;
  padding: 0.25rem 0;
  border-radius: 6.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1000px) {
  .intro_features_ttl span {
    width: calc(405 / var(--view-size) * 100vw);
    padding: calc(4 / var(--view-size) * 100vw) 0;
    border-radius: calc(200 / var(--view-size) * 100vw);
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.intro_features_list li:not(:first-of-type) {
  margin-top: 0.5rem;
}
@media (max-width: 1000px) {
  .intro_features_list li:not(:first-of-type) {
    margin-top: calc(28 / var(--view-size) * 100vw);
  }
}

.intro_features_list li {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 2rem;
}
@media (max-width: 1000px) {
  .intro_features_list li {
    font-size: calc(32 / var(--view-size) * 100vw);
    padding-left: calc(56 / var(--view-size) * 100vw);
  }
}

.intro_features_list li b {
  font-weight: 700;
  color: #D83006;
}

.intro_features_list li::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 1.5rem;
  height: 1.375rem;
  background-image: url("../image/check-square.svg");
  background-size: contain;
}
@media (max-width: 1000px) {
  .intro_features_list li::before {
    top: calc(12 / var(--view-size) * 100vw);
    width: calc(40 / var(--view-size) * 100vw);
    height: calc(36 / var(--view-size) * 100vw);
  }
}

/* 
price : 料金表
----------------------------------- */
.price {
  background-color: #F6F4E6;
  padding: 5.625rem 0 5rem;
}
@media (max-width: 1000px) {
  .price {
    padding: calc(96 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
  }
}

.price_ttl {
  text-align: center;
}

.price_ttl span {
  display: inline-block;
  width: 6.4375rem;
  padding-bottom: 0.9375rem;
  border-bottom: 0.0625rem solid #222222;
}
@media (max-width: 1000px) {
  .price_ttl span {
    width: calc(146 / var(--view-size) * 100vw);
    padding-bottom: calc(20 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
  }
}

.price_table {
  margin-top: 2.6875rem;
}
@media (max-width: 1000px) {
  .price_table {
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.table_scroll {
  overflow: hidden;
}
@media (max-width: 1000px) {
  .table_scroll {
    overflow-x: auto;
    padding: 0 calc(23 / var(--view-size) * 100vw) calc(16 / var(--view-size) * 100vw) calc(23 / var(--view-size) * 100vw);
  }
}

.price_table table {
  width: 100%;
  border: 0.0625rem solid #ABABAB;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
@media (max-width: 1000px) {
  .price_table table {
    width: calc(1345 / var(--view-size) * 100vw);
    border-width: calc(1 / var(--view-size) * 100vw);
  }
}

.price_table table thead tr th {
  background-color: #7B8B47;
  border: 0.0625rem solid #ABABAB;
  padding: 0.875rem 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1000px) {
  .price_table table thead tr th {
    border-width: calc(1 / var(--view-size) * 100vw);
    padding: calc(30 / var(--view-size) * 100vw) 0 calc(26 / var(--view-size) * 100vw);
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.price_table tbody tr td {
  font-size: 1rem;
  font-weight: 400;
  background-color: #FFFFFF;
  border: 0.0625rem solid #ABABAB;
  text-align: center;
}
@media (max-width: 1000px) {
  .price_table tbody tr td {
    font-size: calc(28 / var(--view-size) * 100vw);
    border-width: calc(1 / var(--view-size) * 100vw);
  }
}

.price_table tbody tr td:last-of-type {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 1000px) {
  .price_table tbody tr td:last-of-type {
    font-size: calc(32 / var(--view-size) * 100vw);
  }
}

.price_table_name {
  width: 20rem;
}
@media (max-width: 1000px) {
  .price_table_name {
    width: calc(320 / var(--view-size) * 100vw);
  }
}

.price_table_num {
  width: 30.6875rem;
}
@media (max-width: 1000px) {
  .price_table_num {
    width: calc(792 / var(--view-size) * 100vw);
  }
}

.price_table_value {
  width: 12.3125rem;
}
@media (max-width: 1000px) {
  .price_table_value {
    width: calc(233 / var(--view-size) * 100vw);
  }
}

.price_table_head {
  background-color: #E2DEC8 !important;
  padding: 0.9375rem 0;
}
@media (max-width: 1000px) {
  .price_table_head {
    padding: calc(30 / var(--view-size) * 100vw) 0;
  }
}

.price_table_ttl {
  background-color: #B5C091;
  width: 5.6875rem;
  border-radius: 6.25rem;
  padding: 0.0625rem 0;
  margin-inline: auto;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 1000px) {
  .price_table_ttl {
    width: calc(172 / var(--view-size) * 100vw);
    border-radius: calc(200 / var(--view-size) * 100vw);
    padding: calc(2 / var(--view-size) * 100vw) 0;
    font-size: calc(26 / var(--view-size) * 100vw);
    font-weight: 500;
  }
}

.price_table_img {
  width: 5rem;
  margin-inline: auto;
  margin-top: 0.75rem;
}
@media (max-width: 1000px) {
  .price_table_img {
    width: calc(160 / var(--view-size) * 100vw);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.price_table_txt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.75rem;
}
@media (max-width: 1000px) {
  .price_table_txt {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.price_table_cont {
  padding: 0.5625rem 2.5rem 0.8125rem 1.8125rem;
}
@media (max-width: 1000px) {
  .price_table_cont {
    padding: calc(44 / var(--view-size) * 100vw) calc(40 / var(--view-size) * 100vw) calc(47 / var(--view-size) * 100vw) calc(37 / var(--view-size) * 100vw);
  }
}

.price_table_num .price_table_cont {
  padding: 0.9375rem 2.5rem 0.8125rem 1.8125rem;
}
@media (max-width: 1000px) {
  .price_table_num .price_table_cont {
    padding: calc(33 / var(--view-size) * 100vw) calc(40 / var(--view-size) * 100vw) calc(47 / var(--view-size) * 100vw) calc(33 / var(--view-size) * 100vw);
  }
}

.price_table_cont p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
}
@media (max-width: 1000px) {
  .price_table_cont p {
    font-size: calc(28 / var(--view-size) * 100vw);
    -moz-column-gap: calc(8 / var(--view-size) * 100vw);
         column-gap: calc(8 / var(--view-size) * 100vw);
  }
}

.price_table_cont p:not(:first-of-type) {
  margin-top: 0.25rem;
}
@media (max-width: 1000px) {
  .price_table_cont p:not(:first-of-type) {
    margin-top: calc(8 / var(--view-size) * 100vw);
  }
}

.price_table_cont p b {
  font-weight: 500;
}

.price_table_num .price_table_cont p b {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1000px) {
  .price_table_num .price_table_cont p b {
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}

.line {
  flex: 1;
  border: 0.0625rem dashed #222222;
}
@media (max-width: 1000px) {
  .line {
    border-width: calc(1 / var(--view-size) * 100vw);
  }
}

.price_cta {
  margin-top: 2.8125rem;
}
@media (max-width: 1000px) {
  .price_cta {
    margin-top: calc(63 / var(--view-size) * 100vw);
  }
}

.price_cta_img {
  background-image: url("../image/price-bubble.png");
  background-size: contain;
  width: 23rem;
  height: 5.6875rem;
  padding-top: 1.5rem;
  padding-right: 6.5rem;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .price_cta_img {
    background-size: calc(495 / var(--view-size) * 100vw) calc(170 / var(--view-size) * 100vw);
    width: calc(672 / var(--view-size) * 100vw);
    height: calc(170 / var(--view-size) * 100vw);
    padding-top: calc(45 / var(--view-size) * 100vw);
    padding-right: calc(195 / var(--view-size) * 100vw);
  }
}

.cta_img_txt {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 1000px) {
  .cta_img_txt {
    font-size: calc(30 / var(--view-size) * 100vw);
  }
}

.cta_img_cont {
  top: -1.125rem;
  right: 0;
  width: 6.5rem;
}
@media (max-width: 1000px) {
  .cta_img_cont {
    top: calc(-32 / var(--view-size) * 100vw);
    width: calc(190 / var(--view-size) * 100vw);
  }
}

.price_cta_btn {
  z-index: 10;
  width: 22.75rem;
  border: 0.125rem solid #FFFFFF;
  border-radius: 6.25rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.125rem rgba(0, 0, 0, 0.15);
  margin-inline: auto;
  margin-top: 0.625rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .price_cta_btn {
    width: calc(680 / var(--view-size) * 100vw);
    border-width: calc(5.6 / var(--view-size) * 100vw);
    border-radius: calc(100 / var(--view-size) * 100vw);
    box-shadow: 0 calc(3.73 / var(--view-size) * 100vw) calc(3.73 / var(--view-size) * 100vw) rgba(0, 0, 0, 0.15);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.price_cta_btn a {
  background-color: #7B8B47;
  transition: background-color 0.6s;
}

.price_cta_btn a:hover {
  background-color: #AEBB82;
}

.price_cta_btn a {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 0.8125rem 0;
}
@media (max-width: 1000px) {
  .price_cta_btn a {
    font-size: calc(44 / var(--view-size) * 100vw);
    padding: calc(24 / var(--view-size) * 100vw) 0;
  }
}

.price_cta_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  width: 0.53125rem;
  height: 0.53125rem;
  border: solid #FFFFFF;
  border-width: 0.125rem 0.125rem 0 0;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1000px) {
  .price_cta_btn a::after {
    width: calc(17 / var(--view-size) * 100vw);
    height: calc(17 / var(--view-size) * 100vw);
    border-width: calc(4 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) 0 0;
  }
}

/* 
faq : FAQ
----------------------------------- */
.faq {
  padding: 5.875rem 0 5rem;
}
@media (max-width: 1000px) {
  .faq {
    padding: calc(98 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
  }
}

.faq_ttl {
  text-align: center;
}

.faq_ttl > span {
  display: inline-block;
  width: 4.75rem;
  padding-bottom: 1rem;
  border-bottom: 0.125rem solid #222222;
}
@media (max-width: 1000px) {
  .faq_ttl > span {
    width: calc(114 / var(--view-size) * 100vw);
    padding-bottom: calc(16 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
  }
}

.faq_box {
  margin-top: 5rem;
}
@media (max-width: 1000px) {
  .faq_box {
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.faq_box_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFFFFF;
  text-align: left;
  flex-wrap: nowrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  background-color: #7B8B47;
  border-radius: 0.5rem;
  padding: 1.25rem 2.5rem;
}
@media (max-width: 1000px) {
  .faq_box_ttl {
    font-size: calc(36 / var(--view-size) * 100vw);
    -moz-column-gap: calc(32 / var(--view-size) * 100vw);
         column-gap: calc(32 / var(--view-size) * 100vw);
    border-radius: 0;
    padding: calc(40 / var(--view-size) * 100vw) calc(35 / var(--view-size) * 100vw);
  }
}

.faq_box_ttl b {
  font-size: 2.5rem;
}
@media (max-width: 1000px) {
  .faq_box_ttl b {
    font-size: calc(72 / var(--view-size) * 100vw);
  }
}

.faq_box_cont {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  flex-wrap: nowrap;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  background-color: #FFFFFF;
  padding: 1.25rem 2.5rem;
}
@media (max-width: 1000px) {
  .faq_box_cont {
    font-size: calc(32 / var(--view-size) * 100vw);
    -moz-column-gap: calc(32 / var(--view-size) * 100vw);
         column-gap: calc(32 / var(--view-size) * 100vw);
    padding: calc(40 / var(--view-size) * 100vw) calc(35 / var(--view-size) * 100vw);
  }
}

.faq_box_cont b {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #7B8B47;
}
@media (max-width: 1000px) {
  .faq_box_cont b {
    font-size: calc(72 / var(--view-size) * 100vw);
  }
}

.faq_btn {
  margin-top: 5rem;
}
@media (max-width: 1000px) {
  .faq_btn {
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.faq_btn_top {
  width: 24.3125rem;
  margin-inline: auto;
  border-radius: 6.25rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}
@media (max-width: 1000px) {
  .faq_btn_top {
    width: calc(680 / var(--view-size) * 100vw);
    border-radius: calc(100 / var(--view-size) * 100vw);
    box-shadow: 0 calc(3.5 / var(--view-size) * 100vw) calc(3.5 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.15);
  }
}

.faq_btn_top a {
  background-color: #7B8B47;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  padding: 1.375rem 0;
  padding-right: 1.75rem;
  transition: background-color 0.6s;
}
@media (max-width: 1000px) {
  .faq_btn_top a {
    font-size: calc(42 / var(--view-size) * 100vw);
    padding: calc(37 / var(--view-size) * 100vw) 0;
    padding-right: calc(49 / var(--view-size) * 100vw);
  }
}

.faq_btn_top a:hover {
  background-color: #AEBB82;
}

.faq_btn_top a span {
  font-weight: 900;
  letter-spacing: 0.15em;
}

.faq_btn_top a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10.5%;
  width: 0.75rem;
  height: 0.75rem;
  border: solid #FFFFFF;
  border-width: 0.1875rem 0.1875rem 0 0;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 1000px) {
  .faq_btn_top a::after {
    width: calc(20 / var(--view-size) * 100vw);
    height: calc(20 / var(--view-size) * 100vw);
    border-width: calc(5 / var(--view-size) * 100vw) calc(5 / var(--view-size) * 100vw) 0 0;
  }
}

.faq_btn_btm {
  width: 15.625rem;
  margin-inline: auto;
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .faq_btn_btm {
    width: calc(400 / var(--view-size) * 100vw);
    margin-top: calc(32 / var(--view-size) * 100vw);
  }
}

.faq_btn_btm a {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #7B8B47;
  background-color: #FFFFFF;
  border: 0.125rem solid #7B8B47;
  border-radius: 6.25rem;
  padding: 0.875rem 0;
  padding-right: 1.875rem;
  transition: color 0.6s, border-color 0.6s;
  box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.15);
}
@media (max-width: 1000px) {
  .faq_btn_btm a {
    font-size: calc(26 / var(--view-size) * 100vw);
    border-radius: calc(100 / var(--view-size) * 100vw);
    border-width: calc(3.21 / var(--view-size) * 100vw);
    box-shadow: 0 calc(3.5 / var(--view-size) * 100vw) calc(3.5 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.15);
    padding: calc(21 / var(--view-size) * 100vw) 0;
    padding-right: calc(43 / var(--view-size) * 100vw);
  }
}

.faq_btn_btm a:hover {
  color: #AEBB82;
  border-color: #AEBB82;
}

.faq_btn_btm:hover a::after {
  border-color: #AEBB82;
}

.faq_btn_btm a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16%;
  width: 0.75rem;
  height: 0.75rem;
  border: solid #7B8B47;
  border-width: 0.125rem 0.125rem 0 0;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.6s;
}
@media (max-width: 1000px) {
  .faq_btn_btm a::after {
    width: calc(12 / var(--view-size) * 100vw);
    height: calc(12 / var(--view-size) * 100vw);
    border-width: calc(3.21 / var(--view-size) * 100vw) calc(3.21 / var(--view-size) * 100vw) 0 0;
  }
}/*# sourceMappingURL=style.css.map */