@charset "UTF-8";
/* ------------------------------------------------------------
// SCSS Imports
------------------------------------------------------------ */
/* ------------------------------------------------------------
style reset
------------------------------------------------------------ */
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 {
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
table tr th {
  font-weight: normal;
}

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

button,
input {
  margin: 0;
  padding: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* ============================================================
// 初期共通設定（common.scss）
// 全プロジェクトで共通利用するベーススタイル
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

html,
body {
  height: 100%;
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.google-maps iframe {
  vertical-align: bottom;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.clickable {
  cursor: pointer;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  transform: translateY(100px);
  opacity: 0;
  z-index: 10;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
@media screen and (max-width: 575px) {
  .pagetop a img {
    width: 40px;
    height: 40px;
  }
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* tel:リンクはテキスト色を継承させる */
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}
@media print {
  a[href^="tel:"] {
    text-decoration: none;
  }
}

.reveal {
  --dur: 1.2s; /* 速度 */
  --ease: cubic-bezier(0.45, 0, 0.55, 1); /* 最初と最後がゆっくり */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: transform, opacity;
}

/* 出現方向 */
.reveal[data-anim=fade] {
  transform: none;
}

.reveal[data-anim=up] {
  transform: translateY(20px);
}

.reveal[data-anim=left] {
  transform: translateX(-20px);
}

.reveal[data-anim=right] {
  transform: translateX(20px);
}

/* 表示後の状態 */
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* 動きを減らすユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
/* 印刷時は常に表示 */
@media print {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ============================================================
// header（ヘッダー共通）
============================================================ */
header .header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: #000000;
  z-index: 100;
}
header .header-wrap .logo-txt {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
}
header .header-wrap .logo-txt .logo img {
  margin: 0 auto;
}
header .header-wrap .logo-txt .txt {
  font-size: 46px;
  color: #ffffff;
  text-align: center;
  padding-top: 80px;
}
header .header-wrap .logo-txt .txt br {
  display: none;
}
header .header-wrap nav {
  position: fixed;
  top: 40px;
  right: 60px;
  z-index: 10;
}
header .header-wrap nav ul {
  display: flex;
  gap: 40px;
}
header .header-wrap nav ul li a {
  font-size: 24px;
  color: #ffffff;
  transition: color 0.3s ease;
}
header .header-wrap video {
  position: absolute;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  opacity: 0.8;
}
header .header-wrap .sticky-bottom-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 101;
}
@media screen and (max-width: 1200px) {
  header .header-wrap .logo-txt {
    top: 40%;
    transform: translateY(-50%);
  }
  header .header-wrap .logo-txt .txt {
    font-size: 30px;
  }
  header .header-wrap nav {
    top: 20px;
    right: 20px;
  }
  header .header-wrap nav ul {
    gap: 20px;
  }
  header .header-wrap nav ul li a {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .header-wrap {
    height: 75vh;
    margin-bottom: 100px;
  }
  header .header-wrap .logo-txt {
    top: 50%;
  }
  header .header-wrap .logo-txt .logo {
    margin: 0 60px 0 50px;
  }
  header .header-wrap .logo-txt .txt {
    font-size: 18px;
    font-weight: 600;
    margin: 0 30px;
    padding-top: 40px;
  }
  header .header-wrap .logo-txt .txt br {
    display: inline;
  }
  header .header-wrap nav {
    display: none;
  }
  header .header-wrap video {
    height: 75vh;
  }
  header .header-wrap .sticky-bottom-btn {
    right: 10px;
    bottom: 10px;
    z-index: 2;
  }
  header .header-wrap .sticky-bottom-btn img {
    width: 200px;
  }
}

header.scrolled .header-wrap nav {
  top: 20px;
}
header.scrolled .header-wrap nav ul li a {
  color: #000000;
  text-shadow: 0 0 8px #ffffff;
}

/* ============================================================
// footer（フッター共通）
============================================================ */
/* ------------------------------------------------------------
// Footer Wrap
------------------------------------------------------------ */
.footer-wrap .footer-logo {
  margin-bottom: 40px;
}
.footer-wrap .footer-logo img {
  margin: 0 auto;
}
.footer-wrap .footer-box {
  padding: 30px;
  background: #ba6a22;
}
.footer-wrap .footer-box .footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
}
.footer-wrap .footer-box .footer-nav li a {
  font-size: 18px;
  color: #ffffff;
}
.footer-wrap .footer-box .copyright {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .footer-wrap .footer-logo img {
    max-width: 400px;
  }
  .footer-wrap .footer-box .footer-nav {
    gap: 20px;
  }
  .footer-wrap .footer-box .footer-nav li a {
    font-size: 16px;
  }
  .footer-wrap .footer-box .copyright {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer-wrap .footer-logo img {
    max-width: 240px;
  }
  .footer-wrap .footer-box .footer-nav {
    display: none;
  }
}

/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0.02em;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  body {
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
    font-weight: 500;
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 16px;
    font-weight: 400;
  }
}

/* ------------------------------------------------------------
// Anchor Scroll
------------------------------------------------------------ */
[id] {
  scroll-margin-top: 100px;
}

/* ------------------------------------------------------------
// Font
------------------------------------------------------------ */
.txt-red {
  color: #c1272d;
}

.txt-orange {
  color: #ba6a22;
}

.txt-area p:not(:last-child) {
  margin-bottom: 20px;
}

/* ------------------------------------------------------------
// link
------------------------------------------------------------ */
a,
a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}
a img,
a:hover img,
a:visited img,
a:active img {
  transition: opacity 0.3s;
}

a:hover img {
  opacity: 0.8;
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-ttl .box {
  text-align: center;
  margin-bottom: 60px;
}
.content-ttl .box .ttl-main {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 48px;
  line-height: 1;
}
.content-ttl .box .ttl-sub {
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .content-ttl .box .ttl-main {
    font-size: 40px;
  }
  .content-ttl .box .ttl-sub {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .content-ttl .box .ttl-main {
    font-size: 36px;
  }
}

.triangle-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto -1px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.triangle {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 110px;
  background-color: white;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .triangle {
    height: 100px;
  }
}
@media screen and (max-width: 575px) {
  .triangle {
    height: 50px;
  }
}

.bottom-right {
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
}