@charset "utf-8";

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

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

/* body {
    line-height: 1;
} */

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

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

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

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

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  outline: none;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

/* =============================================
共通
============================================= */
* {
  box-sizing: border-box;
}

:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #222;
  letter-spacing: .4px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

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

code,
blockquote {
  overflow-wrap: break-word;
}

p {
  line-height: 1.8;
  margin-bottom: 1.8em;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: 700;
}

button {
  cursor: pointer;
  color: inherit;
}

.text--marker {
  background: linear-gradient(transparent 70%, #FFE200 70%);
}

.text--green {
  color: #00AF3A !important;
}

.text--white {
  color: #fff !important;
}

.text--super-large {
  font-size: 1.4em;
}

.text--large {
  font-size: 1.2em;
}

.text--small {
  font-size: .8em;
}

.text--super-small {
  font-size: .6em;
}

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

.button {
  font-weight: 700;
  padding: 1em;
  border-radius: 10px;
}

.button--shadow {
  position: relative;
  width: fit-content;
  position: relative;
  display: grid;
  margin-inline: auto;
}

.button--shadow>a {
  z-index: 2;
  transition: .2s;
}

.button--shadow::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #ccc;
  content: "";
}

.button--orange {
  background: #FF6600 !important;
  color: #fff !important;
}

.button--green {
  background: #00AF3A !important;
  color: #fff !important;
}

.button--medium {
  font-size: 1.4em;
  padding: .8em 1.6em;
}

.button--large {
  font-size: 1.9em;
  padding: 1em 2em;
}

.link--underline {
  text-decoration: underline !important;
}

.section {
  padding: 80px 0;
}

.heading--large {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 46px;
  text-decoration: underline;
  text-decoration-color: #00AF3A;
  text-decoration-thickness: 8px;
  text-underline-offset: 10px;
  line-height: 1.4;
  text-align: center;
  margin-block-start: var(--leading-trim);
}

.heading--medium {
  font-size: 20px;
  font-weight: 700;
  background: #00AF3A;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
  padding: .8em;
  margin: 46px auto 28px;
}

.inner {
  width: 92vw;
  margin-inline: auto;
}

.inner--small {
  max-width: 850px !important;
}

.inner--medium {
  max-width: 930px !important;
}

.inner--large {
  max-width: 1200px !important;
}

.inner--full {
  width: 100% !important;
}

.bg--ivory {
  background: #FFFAEB !important;
}

.bg--green {
  background: #00AF3A !important;
}

.bg--light-green {
  background: #F3FFD8 !important;
}

.bg--gray {
  background: #eee !important;
}

.bg--light-gray {
  background: #fafafa !important;
}

.bg--white {
  background: #fff !important;
}


.hr {
  /* border: 2px solid #f3f3f3; */
  border: 1px solid #e5e5e5;
  margin: 0;
}

.break {
  display: inline-block;
}

.float--right {
  float: right;
  margin: 0 0 2em 2em;
}

.float--left {
  float: left;
  margin: 0 2em 2em 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }

  .section {
    padding: 50px 0;
  }

  .heading--large {
    font-size: 25px;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: #00AF3A;
    line-height: 1.8;
  }

  .button--medium {
    font-size: 1.2em;
    padding: .8em 1.2em;
  }

  .button--large {
    font-size: 1.3em;
    padding: 1em 1.2em;
  }

  .lead-text {
    margin-bottom: 20px;
  }
}

@media (hover: hover) {
  .button--shadow>a:hover {
    transform: translate(7px, 7px);
  }

  .link--underline:hover {
    text-decoration: none !important;
  }
}

/* =============================================
ヘッダー
============================================= */
.header {
  height: 60px;
  width: 100%;
  z-index: 99998;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}

.header__inner {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}

.header__logo-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 8px;
}

.header__inner,
.header__list,
.header__inquiry-list {
  display: flex;
}

.header__list-item {
  position: relative;
  display: flex;
  align-items: center;
}

.header__list-item:not(:last-child) {
  margin-right: 30px;
}

.header__link {
  font-size: 14px;
  font-weight: 700;
}

.header__hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  display: none;
  margin-right: -14px;
}

.header__hamburger-menu-bar {
  display: inline-block;
  width: 44%;
  height: 2px;
  background: #222;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.header__hamburger-menu-bar:first-child {
  top: 16px;
}

.header__hamburger-menu-bar:nth-child(2) {
  top: 24px;
}

.header__hamburger-menu-bar:last-child {
  top: 32px;
}

.header__cta {
  padding: .6em 1em;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.25);
  transition: .5s;
}

@media (max-width: 1200px) {
  .header__link {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .header__list {
    display: none;
    background: #fff;
    position: absolute;
    top: 60px;
    width: 100%;
    max-width: 310px;
    right: 0;
    z-index: 9999;
    overflow-y: scroll;
    max-height: calc(100vh - 60px);
  }

  .header__list--open {
    display: block;
  }

  .header__list-item {
    margin-right: 0 !important;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px dashed #ccc;
  }

  .header__list-item:first-child {
    border-top: 1px dashed #ccc;
  }

  .header__link {
    font-size: 16px;
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
  }

  .header__cta {
    width: 90%;
    margin: 20px auto;
  }

  .header__hamburger-menu {
    display: block;
  }

  .header__hamburger-menu--open .header__hamburger-menu-bar {
    top: 50%;
  }

  .header__hamburger-menu--open .header__hamburger-menu-bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }

  .header__hamburger-menu--open .header__hamburger-menu-bar:nth-child(2) {
    display: none;
  }

  .header__hamburger-menu--open .header__hamburger-menu-bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .header__list {
    max-width: unset;
  }
}

@media (hover: hover) {
  .header__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .header__cta:hover {
    text-decoration: none;
    box-shadow: unset;
  }
}

/* =============================================
ファーストビュー
============================================= */
.fv {
  padding-top: 110px;
}

.fv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fv__text-wrapper {
  width: 92vw;
}

.fv__shoulder-copy {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 8px;
  text-decoration-color: #00AF3A;
  line-height: 1.4;
}

.fv__main-copy {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.fv__logo {
  margin-bottom: 24px;
}

.fv__appeal-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.fv__appeal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 4px #00AF3A;
  border-radius: calc(1px / 0);
  width: 170px;
  height: 170px;
  background: #fff;
  font-weight: 700;
}

.fv__appeal-large-text {
  font-size: 30px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
  text-decoration-color: #00AF3A;
  margin: 4px 0 14px;
}

.fv__appeal-small-text {
  font-size: 14px;
  letter-spacing: 0;
}

.fv__note {
  color: #666666;
  font-size: 12px;
  margin-bottom: 0;
}

.fv__image-wrapper {
  width: 92vw;
  max-width: 600px;
  text-align: center;
}

.fv__image-copy {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.confetti {
  position: relative;
}

.confetti::before {
  background: url(images/confetti.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  left: -16px;
  position: absolute;
  top: 28px;
  height: 140px;
  z-index: 2;
  width: 140px;
}

.fv__cta-inner {
  margin: 30px auto 0;
  display: grid;
  place-items: center;
}

/* カラーバリエーション */


/* Ivory */

.fv--ivory {
  background: #FFFAEB;
}

/* Green */

.fv--light-green {
  background: #EDFFE2;
}

.fv--light-green .fv__shoulder-copy,
.fv--light-green .fv__appeal-large-text {
  text-decoration-color: #FFE200;
}

.fv--light-green .fv__appeal {
  border-color: #FFE200;
}

/* White */

.fv--white {
  background: #fff;
}

.fv--white .fv__shoulder-copy {
  text-decoration-color: #FF6600;
}


/* Orange */

.fv--orange {
  background: #FFFCE5;
}

.fv--orange .fv__shoulder-copy,
.fv--orange .fv__appeal-large-text {
	text-decoration-color: #FFAA00;
}

.fv--orange .fv__appeal {
  border-color: #FFAA00;
}


/* Mix */

.fv--mix {
  background: #fff;
}

.fv--mix .fv__appeal:first-child
 {
	border-color: #89D7DB;
}

.fv--mix .fv__appeal:first-child .fv__appeal-large-text {
	text-decoration-color: #89D7DB;
}

.fv--mix .fv__appeal:nth-child(2)
 {
	border-color: #FFAA00;
}

.fv--mix .fv__appeal:nth-child(2) .fv__appeal-large-text {
	text-decoration-color: #FFAA00;
}

.fv--mix .fv__appeal:nth-child(3)
 {
	border-color: #FFE200;
}

.fv--mix .fv__appeal:nth-child(3) .fv__appeal-large-text {
	text-decoration-color: #FFE200;
}




@media (max-width: 1300px) {
  .fv__main-copy {
    font-size: 46px;
  }

  .fv__logo {
    width: 260px;
  }

  .fv__appeal {
    width: 150px;
    height: 150px;
  }

  .fv__appeal-small-text {
    font-size: 12px;
  }

  .fv__appeal-large-text {
    font-size: 22px;
    margin: 2px 0 10px;
  }

  .fv__image {
    width: 560px;
  }
}

@media (max-width: 1200px) {
  .fv__shoulder-copy {
    font-size: 18px;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-decoration-color: #00AF3A;
  }

  .fv__main-copy {
    font-size: 41px;
  }

  .fv__logo {
    width: 200px;
  }

  .fv__appeal {
    width: 120px;
    height: 120px;
  }

  .fv__appeal-small-text {
    font-size: 10px;
  }

  .fv__appeal-large-text {
    font-size: 18px;
  }

  .fv__image {
    width: 450px;
  }
}

@media (max-width: 1024px) {
  .fv__inner {
    flex-direction: column;
  }

  .fv__text-wrapper {
    text-align: center;
  }

  .fv__appeal-wrapper {
    justify-content: center;
  }

  .fv__note-wrapper {
    text-align: left;
    margin-bottom: 30px;
    width: fit-content;
    margin-inline: auto;
  }
}


@media (max-width: 768px) {
  .fv {
    padding-top: 90px;
  }

  .fv__shoulder-copy {
    font-size: 18px;
    text-decoration-thickness: 4px;
    text-align: center;
    margin-bottom: 26px;
  }

  .fv__main-copy {
    font-size: 28px;
    text-align: center;
    margin-bottom: 14px;
  }

  .fv__logo {
    width: 220px;
    margin-inline: auto;
    display: block;
    margin-bottom: 12px;
  }

  .fv__appeal-wrapper {
    justify-content: space-between;
    gap: 0;
    margin: 0 auto 10px;
    max-width: 375px;
  }

  .fv__appeal {
    border: 3px solid rgb(0, 175, 58);
    width: 110px;
    height: 110px;
  }

  .fv__appeal-small-text {
    font-size: 10px;
  }

  .fv__appeal-large-text {
    font-size: 20px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #00AF3A;
    margin: -1px 0 7px;
  }

  .fv__note {
    font-size: 8px;
  }

  .fv__image-copy {
    font-size: 14px;
  }

  .fv__image {
    width: 80%;
  }

  .confetti::before {
    left: 34px;
    top: 35px;
    height: 60px;
    width: 86px;
  }
}

/* =============================================
チェックリスト
============================================= */
.checklist {
  width: fit-content;
  max-width: 620px;
  margin-inline: auto;
  padding-left: calc(2em);
}

.checklist__item {
  position: relative;
  font-size: 24px;
  font-weight: 700;
}

.checklist__item:not(:last-child) {
  margin-bottom: 1em;
}

.checklist__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 38%;
  left: -2em;
  width: 28px;
  height: 12px;
  border-left: 7px solid #00AF3A;
  border-bottom: 7px solid #00AF3A;
  transform: rotate(-45deg) translateY(-50%);
}

@media (max-width: 768px) {
  .checklist {
    padding-left: calc(2.8em);
  }

  .checklist__item::before {
    left: -1.8em;
    width: 20px;
    height: 8px;
    border-left: 4px solid #00AF3A;
    border-bottom: 4px solid #00AF3A;
  }

  .checklist__item {
    font-size: 18px;
  }
}

/* =============================================
特徴
============================================= */
.feature__box {
  background: #fff;
  display: flex;
  gap: 40px;
  padding: 40px;
}

.feature__box:not(:last-child) {
  margin-bottom: 30px;
}


[data-feature-box-border="true"] {
  border: solid 1px #ccc;
}

.feature__text,
.feature__image {
  min-width: calc(50% - 20px);
  height: fit-content;
}

.feature__heading {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dashed #ccc;
}

.feature__description {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature__box {
    gap: 20px;
    flex-direction: column;
    padding: 20px;
  }

  .feature__heading {
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #ccc;
  }

  .feature__description {
    font-size: 14px;
  }
}

/* =============================================
数字リスト
============================================= */
.numberlist:not(:last-child) {
  margin-bottom: 40px;
}

.numberlist__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.numberlist__heading::before {
  content: attr(data-numberlist-heading-before);
  font-size: 31px;
  font-weight: 700;
  color: #fff;
  background: #00AF3A;
  font-family: "Roboto", sans-serif;
  width: 60px;
  height: 60px;
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.numberlist__description {
  padding-left: 80px;
}

@media (max-width: 768px) {
  .numberlist__heading {
    font-size: 18px;
    gap: 12px;
    margin-bottom: 8px;
  }

  .numberlist__heading::before {
    font-size: 20px;
    min-width: 36px;
    width: 36px;
    height: 36px;
  }

  .numberlist__description {
    padding-left: 50px;
  }
}

/* =============================================
パネルリスト
============================================= */
.panellist {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.panellist__item {
  background: #EEEEEE;
  padding: 20px;
}

.panellist__heading {
  font-size: 20px;
  font-weight: 700;
}

.panellist__description {
  margin: 8px 0 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .panellist {
    grid-template-columns: repeat(2, 1fr);
  }

  .panellist__item {
    font-size: 18px;
  }

  .panellist__heading {
    font-size: 18px;
  }

}

@media (max-width: 480px) {
  .panellist {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* =============================================
ソリューション
============================================= */
.solution {
  background: #00AF3A;
}

.solution__wrapper {
  background: #fff;
  padding: 40px;
  position: relative;
}

.solution__image {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  height: 320px;
}

.solution__image--left {
  left: -110px;
}

.solution__image--right {
  right: -110px;
}

.solution__maincopy {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  /* text-decoration-color: #FFE200; */
  text-underline-offset: 8px;
  margin-bottom: 0;
}

.solution__description {
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 24px;
  padding: 0 30px;
}

@media (max-width: 1200px) {
  .solution__image {
    /* top: 120%;
    height: 120px; */
    display: none;
  }

  .solution__image--left {
    left: 0;
  }

  .solution__image--right {
    right: 0;
  }

}

@media (max-width: 768px) {
  .solution__wrapper {
    padding: 22px;
  }

  .solution__maincopy {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.5;
  }

  .solution__description {
    font-size: 16px;
    margin-top: 20px;
    padding: 0;
  }
}

/* =============================================
ギャラリー
============================================= */
.gallery {
  display: grid;
  gap: 30px 20px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery__figure {
  overflow-y: hidden;
  max-height: 360px;
  position: relative;
}

.gallery__figcaption {
  width: 100%;
  position: absolute;
  color: #fff;
  font-weight: 500;
  font-size: 13px !important;
  padding: 20px 10px 10px;
  line-height: 1.3;
  text-align: left !important;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 12%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.6) 80%, #000 160%);
}

#zoomed-gallery {
  display: none;
}

#zoomed-gallery.zoomed-gallery--visible {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgb(255 255 255 / 50%);
  z-index: 9999999;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
}

#zoomed-gallery__inner {
  position: relative;
}

.zoomed-gallery__figure {
  cursor: default;
  position: relative;
  max-width: 680px;
  max-height: 80vh;
  overflow-y: scroll;
}

#zoomed-gallery__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -20px;
  right: -20px;
  cursor: pointer;
  background-size: contain;
  background: #FF6600;
  color: #fff;
  font-weight: 700;
  border-radius: calc(1px / 0);
  display: grid;
  place-items: center;
  font-size: 31px;
  line-height: 1;
}

.zoomed-gallery__image {
  /* max-width: calc(92vw - 20px); */
  /* max-height: calc(92vh - 20px); */
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
  }

  .gallery__figcaption {
    font-size: 14px;
    margin-top: 2px;
  }

  .gallery__figure {
    position: relative;
    max-height: 260px;
  }

  /* .gallery__figure:has(.gallery__image--zoomable)::after {
    font-size: 12px;
    position: absolute;
    content: "タップで拡大";
    right: 0;
    top: 0;
    background: #0000006b;
    padding: .4em .8em;
    color: #fff;
    font-weight: 700;
    z-index: 2;
  } */

  .zoomed-gallery__figure {
    max-width: calc(92vw - 20px);
  }
}

@media (hover: hover) {
  .gallery__image--zoomable:hover {
    cursor: zoom-in;
  }
}

/* =============================================
料金
============================================= */
.price__wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.price__box {
  border: solid 8px #00AF3A;
  text-align: center;
  padding: 38px 20px;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price__box:first-of-type::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: -52px;
  transform: translateY(-50%);
  font-size: 50px;
  font-weight: 700;
  color: #00AF3A;
}

.price__box:last-of-type::after {
  content: "";
  background: url(images/price-per-day.svg);
  position: absolute;
  top: -40%;
  right: -60px;
  background-repeat: no-repeat;
  width: 120px;
  height: 133px;
  background-size: contain;
}

.price__heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

.price__yen {
  margin: 0;
  color: #00AF3A;
  font-size: 39px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}

@media (max-width: 1024px) {
  .price__box:last-of-type::after {
    top: -30%;
    right: -20px;
    width: 90px;
    height: 102px;
  }
}

@media (max-width: 768px) {
  .price__wrapper {
    flex-direction: column;
  }

  .price__box {
    border: solid 5px #00AF3A;
    padding: 24px 10px;
  }

  .price__box:first-of-type::after {
    top: unset;
    right: 50%;
    bottom: -72px;
    transform: translateX(50%) translateY(0);
  }

  .price__heading {
    font-size: 18px;
  }

  .price__yen {
    font-size: 31px;
  }

  .price__box:last-of-type::after {
    top: -40%;
    right: 10px;
    width: 80px;
    height: 90px;
  }
}

/* =============================================
ご利用者の声
============================================= */
.voice__box:not(:last-child) {
  margin-bottom: 50px;
}

.voice__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.voice__content {
  display: flex;
  gap: 30px;
  align-items: center;
}

.voice__image {
  border-radius: calc(1px / 0);
  width: 170px;
  height: 170px;
}

.voice__text {
  margin: 0;
}

@media (max-width: 768px) {
  .voice__box:not(:last-child) {
    margin-bottom: 30px;
  }

  .voice__heading {
    font-size: 18px;
  }

  .voice__content {
    align-items: normal;
    gap: 20px;
  }

  .voice__image {
    width: 60px;
    height: 60px;
  }

  .voice__text {
    font-size: 14px;
  }
}

/* =============================================
よくある質問
============================================= */
.faq__list {
  border: solid 1px #CCC;
  padding: 30px;
}

.faq__list:not(:last-child) {
  margin-bottom: 20px;
}

.faq__question {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  gap: 20px;
}

.faq__question::before {
  content: "Q";
  color: #00AF3A;
  font-size: 39px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}

.faq__answer {
  display: flex;
  gap: 20px;
  line-height: 1.8;
  margin-top: 20px;
}

.faq__answer::before {
  content: "A";
  color: #FFAA00;
  font-size: 39px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1;
}

@media (max-width: 768px) {
  .faq__list {
    padding: 20px;
  }

  .faq__question {
    font-size: 18px;
  }
}

/* =============================================
ご利用開始までの流れ
============================================= */
.flow__list {
  border: solid 1px #CCC;
  padding: 30px;
}

.flow__list:not(:last-child) {
  margin-bottom: 20px;
}

.flow__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow__heading::before {
  content: attr(data-flow-heading-before);
  font-size: 29px;
  font-weight: 700;
  color: #fff;
  background: #00AF3A;
  font-family: "Roboto", sans-serif;
  width: 50px;
  height: 50px;
  border-radius: calc(1px / 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__description {
  display: flex;
  gap: 20px;
  line-height: 1.8;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .flow__list {
    padding: 20px;
  }

  .flow__heading {
    font-size: 18px;
    gap: 12px;
  }

  .flow__heading::before {
    font-size: 20px;
    min-width: 36px;
    height: 36px;
  }
}

/* =============================================
テーブル
============================================= */
.plane-table {
  width: 100%;
  /* table-layout: fixed; */
}

.plane-table__heading,
.plane-table__data {
  border: solid 1px #ccc;
}

.plane-table__heading {
  background: #00AF3A;
  color: #fff;
  font-weight: 700;
  padding: 10px;
  vertical-align: middle;
}

.plane-table__data {
  padding: 14px 20px;
}

/* =============================================
画像
============================================= */
.featured-image {
  display: block;
  margin-inline: auto;
  width: 92vw;
}

.featured-image--small {
  max-width: 850px !important;
}

.featured-image--medium {
  max-width: 930px !important;
}

.featured-image--large {
  max-width: 1200px !important;
}

.featured-image--full {
  width: 100% !important;
}

@media (max-width: 768px) {}

/* =============================================
比較表
============================================= */
.js-scrollable:has(.comparison__table) {
  white-space: normal;
}

.comparison__table {
  width: 100%;
}

.comparison__heading {
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
  vertical-align: middle;
  border: solid 16px #fff;
}

.comparison__data {
  padding: 20px;
  border: solid 12px #fff;
}

[data-comparison-width="20"] {
  width: 20%;
  min-width: 70px;
}

[data-comparison-width="40"] {
  width: 40%;
  min-width: 270px;
}

.comparison__heading-text {
  text-align: center;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.comparison__description-text:last-child {
  margin: 0;
}

@media only screen and (max-width: 768px) {

  .comparison__heading,
  .comparison__heading-text {
    font-size: 16px;
  }

  .comparison__heading,
  .comparison__data {
    border: solid 12px #fff;
  }

  .comparison__heading.bg--light-gray {
    /* writing-mode: vertical-rl;
    text-orientation: sideways;
    -webkit-writing-mode: vertical-rl;
    -webkit-text-orientation: sideways; */
  }

  .comparison__description-text {
    font-size: 14px;
  }
}

/* =============================================
フッター
============================================= */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  border-top: solid 1px #ccc;
}

/* =============================================
スクロールヒント
============================================= */
.js-scrollable {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
}

.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
  width: fit-content;
  white-space: nowrap;
}

@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-40%, -50%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.scroll-hint--show {
  display: block;
}


/* =============================================
フロートCTA
============================================= */
.floating-cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 14px 0 20px;
  z-index: 99990;
  transform: translateY(110%);
  transition: transform 0.5s ease;
  will-change: transform;
}

.floating-cta.show {
  transform: translateY(0);
}

@media only screen and (max-width: 768px) {
  .floating-cta {
    transform: translateY(0);
    padding: 10px;
  }

  .button--shadow:has(.floating-cta__button)::after {
    right: -4px;
    bottom: -4px;
  }
}