/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* ここからリセットCSS */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  color: #222;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #222;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
button,
input,
optgroup,
select,
textarea {
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td,
th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}
a,
span {
  display: inline-block;
}
/* リセットCSSここまで */

/* ------------------------------------------------------------ */
/* wrap の中央寄せ / LP 全体共通設定 */
/* ------------------------------------------------------------ */
.wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}

/* ------------------------------------------------------------ */
/* 共通ボタンアニメーション */
/* ------------------------------------------------------------ */
.btn {
  position: absolute;
  left: 10%;
  animation: bound 2.8s infinite;
}
@keyframes bound {
  0%, 5%, 10% { transform: translateY(0); }
  20%, 30% { transform: translateY(-10px); }
  25%, 50%, 100% { transform: translateY(0); }
}
.btn a { transition: 0.3s; }
.btn a img { width: 81.25vw; max-width: 650px; }
@media (any-hover: hover) {
  .btn a:hover { opacity: 0.7; }
  .links a:hover img { opacity: 0.7; }
}
@media (min-width: 800px) {
  .btn a img { width: 650px; }
}

/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.header { position: relative; }
.header .btn { bottom: 10vw; }
@media (min-width: 800px) { .header .btn { bottom: 70px; } }

/* ------------------------------------------------------------ */
/* area セクション */
/* ------------------------------------------------------------ */
.area-section {
  position: relative;
  width: 100%;
  margin-bottom: 0rem;
}
.area-bg {
  display: block;
  width: 100%;
  height: auto;
}
.area-buttons {
  position: absolute;
  /* area.jpg の空白部分に合わせて調整 */
  top: 30%;
  left: 50%;
  transform: translateX(-52%);
  /* ボタンの幅を少し狭くして背景文字と重ならないよう調整 */
  width: 72%;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列表示 */
  gap: 3px; /* ボタン間の余白を拡大 */
}
.area-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.area-btn img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.2s;
}
.area-btn:active img {
  opacity: 0.8;
}




/* ------------------------------------------------------------ */
/* target */
/* ------------------------------------------------------------ */
.target { position: relative; }
.target::before {
  content: "";
  position: absolute;
  width: 12.5vw;
  height: 7.625vw;
  background: url(assets/images/main/triangle.png) no-repeat center / contain;
  bottom: -7.5vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 800px) {
  .target::before {
    width: 100px;
    height: 61px;
    bottom: -60px;
  }
}

/* ------------------------------------------------------------ */
/* case */
/* ------------------------------------------------------------ */
.case { position: relative; }
.case .btn { bottom: 4.5vw; }
@media (min-width: 800px) { .case .btn { bottom: 40px; } }

/* ------------------------------------------------------------ */
/* three-point （旧 .3point） */
/* ------------------------------------------------------------ */
.three-point { margin-bottom: 2rem; }
.three-point_img img { display: block; width: 100%; height: auto; }

/* ------------------------------------------------------------ */
/* map */
/* ------------------------------------------------------------ */
.map { position: relative; margin-bottom: 0rem; }
.map iframe {
  position: absolute;
  bottom: 8.125vw;
  left: 50%;
  transform: translateX(-50%);
  width: 77.5vw;
  height: 75vw;
}
@media (min-width: 800px) {
  .map iframe {
    width: 620px;
    height: 600px;
    bottom: 65px;
  }
}

/* ------------------------------------------------------------ */
/* step */
/* ------------------------------------------------------------ */
.step { position: relative; margin-bottom: 0rem; }

/* ------------------------------------------------------------ */
/* present */
/* ------------------------------------------------------------ */
.present { position: relative; }
.present .btn { bottom: 4.375vw; }
@media (min-width: 800px) { .present .btn { bottom: 35px; } }

/* ------------------------------------------------------------ */
/* terms */
/* ------------------------------------------------------------ */
.terms { position: relative; }
.terms .btn { bottom: 3.75vw; }
@media (min-width: 800px) { .terms .btn { bottom: 30px; } }

/* ------------------------------------------------------------ */
/* company */
/* ------------------------------------------------------------ */
.company { position: relative; margin-bottom: 0rem; }
.company .links {
  position: absolute;
  bottom: 10vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7.5vw;
}
.links a { position: relative; display: inline-block; }
.links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -3.5vw;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: #fff;
}
.links a img { width: 100%; scale: 1.05; transition: 0.3s; }
@media (min-width: 800px) {
  .company .links { bottom: 80px; gap: 60px; }
  .links a:not(:last-child)::after { right: -28px; }
}

.copyrihgt { margin-bottom: 0rem; }

/* ------------------------------------------------------------ */
/* ポップアップ用（モーダル）CSS */
/* ------------------------------------------------------------ */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.popup-overlay.active { display: flex; }
.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.popup-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #fff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.popup-close:hover { background-color: #f2f2f2; }

/* ------------------------------------------------------------ */
/* レスポンシブ調整不要（常に2列表示） */
/* ------------------------------------------------------------ */
