@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;
}

/* ------------------------------------------------------------
// Bootstrap
------------------------------------------------------------ */
.container {
  max-width: 1340px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

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

[class*=col] {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* ------------------------------------------------------------
// photo-ofi
------------------------------------------------------------ */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #fafafa;
  overflow: hidden;
  position: relative;
  padding-bottom: 75%;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------------------------------------
// paging
------------------------------------------------------------ */
div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333333;
  border: 1px solid #cccccc;
  display: inline;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
}

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #cc0000;
  border: 1px solid #663366;
  color: #ffffff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #cccccc;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

/* ============================================================
// 初期共通設定（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;
}
.pagetop a img {
  max-width: 50px;
}
@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-first {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  z-index: 500;
}
header .header-first .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-first .logo img {
  height: 76px;
}
header .header-first .nav-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
header .header-first .contact {
  display: flex;
  gap: 20px;
}
header .header-first .contact .tel {
  flex: 1;
}
header .header-first .contact .tel .txt {
  font-size: 14px;
  text-align: right;
}
header .header-first .contact .tel .number span,
header .header-first .contact .tel .number a {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
header .header-first .contact .tel .number span i,
header .header-first .contact .tel .number a i {
  font-size: 20px;
  color: #ee8742;
}
@media print, screen and (max-width: 1199px) {
  header .header-first .contact {
    margin-right: 60px;
  }
}
@media print, screen and (max-width: 767px) {
  header .header-first {
    height: 80px;
  }
  header .header-first .logo img {
    height: 60px;
  }
  header .header-first .contact {
    display: none;
  }
}
header .header-fixed {
  position: fixed;
  top: -100px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  z-index: 500;
  transition: top 0.4s ease;
}
header .header-fixed.show {
  top: 0;
}
header .header-fixed .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-fixed .logo img {
  height: 76px;
}
header .header-fixed .nav-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
header .header-fixed .contact {
  display: flex;
  gap: 20px;
}
header .header-fixed .contact .tel {
  flex: 1;
}
header .header-fixed .contact .tel .txt {
  font-size: 14px;
  text-align: right;
}
header .header-fixed .contact .tel .number span,
header .header-fixed .contact .tel .number a {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
header .header-fixed .contact .tel .number span i,
header .header-fixed .contact .tel .number a i {
  font-size: 20px;
  color: #ee8742;
}
@media print, screen and (max-width: 1199px) {
  header .header-fixed .contact {
    margin-right: 60px;
  }
}
@media print, screen and (max-width: 767px) {
  header .header-fixed {
    height: 80px;
  }
  header .header-fixed .logo img {
    height: 60px;
  }
  header .header-fixed .contact {
    display: none;
  }
}
header .header-spacer {
  height: 100px;
}
@media print, screen and (max-width: 767px) {
  header .header-spacer {
    height: 80px;
  }
}

/* ------------------------------------------------------------
// navigation
------------------------------------------------------------ */
.sp-nav-btn {
  display: none;
}
@media screen and (max-width: 1199px) {
  .sp-nav-btn {
    display: block;
  }
}

nav .sp-gnav {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  nav ul.pc-nav-first,
  nav ul.pc-nav-scroll,
  nav ul.pc-nav-contents {
    display: none !important;
  }
  nav .sp-gnav {
    display: block !important;
  }
}

nav ul.pc-nav-first {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 32px;
  margin-top: 10px;
}
nav ul.pc-nav-first li a {
  text-align: center;
}
nav ul.pc-nav-first li a .jp {
  font-size: 16px;
  color: #111111;
  font-weight: 500;
  line-height: 1.4;
  transition: 0.3s;
}
nav ul.pc-nav-first li a .en {
  font-size: 13px;
  color: #cccccc;
  transition: 0.3s;
}
nav ul.pc-nav-first li a:hover .jp, nav ul.pc-nav-first li a.current .jp {
  color: #ee8742;
}
nav ul.pc-nav-first li a:hover .en, nav ul.pc-nav-first li a.current .en {
  color: #666666;
}
nav ul.pc-nav-scroll {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 32px;
  margin-top: 10px;
}
nav ul.pc-nav-scroll li a {
  font-size: 16px;
  color: #333333;
  text-align: center;
  transition: 0.4s;
}
nav ul.pc-nav-contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 32px;
  margin-top: 10px;
}
nav ul.pc-nav-contents li a {
  font-size: 16px;
  color: #333333;
  text-align: center;
  transition: 0.4s;
}

body.nav-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  z-index: 997;
  display: none;
}

.sp-nav-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0 10px;
  z-index: 999;
}
.sp-nav-btn:hover {
  cursor: pointer;
}
.sp-nav-btn span,
.sp-nav-btn span::before,
.sp-nav-btn span::after {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #333333;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.4s;
}
.sp-nav-btn span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp-nav-btn span::before {
  content: "";
  transform: translateY(-10px) rotate(0deg);
}
.sp-nav-btn span::after {
  content: "";
  transform: translateY(10px) rotate(0deg);
}

.sp-on span {
  background: transparent !important;
}
.sp-on span::before {
  transform: rotate(45deg) !important;
}
.sp-on span::after {
  transform: rotate(-45deg) !important;
}

nav .sp-gnav {
  position: fixed;
  top: 0;
  right: -100%; /* 初期位置を右側に設定 */
  width: 80%; /* 任意の幅 */
  max-height: 100vh;
  min-height: 100vh;
  background: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease; /* 右からスライドインするアニメーション */
  overflow-y: auto; /* 縦方向のみスクロール可能に */
  z-index: 998;
}
nav .sp-gnav .logo {
  display: flex;
  align-items: center;
  padding: 20px 80px 20px 15px;
  background: #ffffff;
}
nav .sp-gnav .logo img {
  max-height: 46px;
}
nav .sp-gnav ul {
  padding-bottom: 30px;
}
nav .sp-gnav ul li a {
  display: block;
  text-align: center;
  color: #333333;
  padding: 20px;
  background: #ffffff;
  border-bottom: 1px dashed #ee8742;
  transition: 0.3s;
}
nav .sp-gnav ul li a .en {
  font-size: 14px;
  color: #cccccc;
  margin-top: 2px;
}
nav .sp-gnav ul li a.current, nav .sp-gnav ul li a:hover {
  color: #ffffff;
  background: #ee8742;
  border-bottom: 1px dashed #ffffff;
}
nav .sp-gnav ul li a.current .en, nav .sp-gnav ul li a:hover .en {
  color: #ffffff;
}

/* ============================================================
// footer（フッター共通）
============================================================ */
.contact-wrap {
  background: url(../images/common/contact-bg.png) no-repeat center center;
  background-attachment: fixed;
}
.contact-wrap svg {
  margin-bottom: 90px;
}
.contact-wrap .contact-box {
  display: flex;
  gap: 40px;
  margin-bottom: 90px;
}
.contact-wrap .contact-box .box {
  width: calc(50% - 20px);
}
.contact-wrap .contact-box .box .ttl {
  margin-bottom: 30px;
}
.contact-wrap .contact-box .box .ttl .en {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
}
.contact-wrap .contact-box .box .ttl .en::first-letter {
  color: #f49e4c;
}
.contact-wrap .contact-box .box .ttl .jp {
  font-size: 15px;
  color: #999999;
}
.contact-wrap .contact-box .box .tel-box .ttl,
.contact-wrap .contact-box .box .mail-box .ttl {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 500;
}
.contact-wrap .contact-box .box .tel-box .ttl::after,
.contact-wrap .contact-box .box .mail-box .ttl::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #f49e4c;
}
.contact-wrap .contact-box .box .tel-box {
  margin-bottom: 40px;
}
.contact-wrap .contact-box .box .tel-box .tel span,
.contact-wrap .contact-box .box .tel-box .tel a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
}
.contact-wrap .contact-box .box .tel-box .tel span i,
.contact-wrap .contact-box .box .tel-box .tel a i {
  font-size: 32px;
  color: #f49e4c;
  padding-bottom: 6px;
}
.contact-wrap .contact-box .box .tel-box .tel span:hover,
.contact-wrap .contact-box .box .tel-box .tel a:hover {
  color: #333333;
}
.contact-wrap .contact-box .box .tel-box .tel span:hover i,
.contact-wrap .contact-box .box .tel-box .tel a:hover i {
  color: #f49e4c;
}
.contact-wrap .contact-box .box .tel-box .tel-time-day {
  font-size: 15px;
  margin-top: 10px;
}
.contact-wrap .contact-box .box .tel-box .tel-time-day br {
  display: none;
}
.contact-wrap .contact-box .box .mail-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 18px;
  color: #333333;
  width: 320px;
  height: 50px;
  padding: 0 0 2px 0;
  background: #ffffff;
  border: 1px solid #f49e4c;
  border-radius: 30px;
  transition: 0.3s;
}
.contact-wrap .contact-box .box .mail-box a i {
  color: #f49e4c;
}
.contact-wrap .contact-box .box .mail-box a:hover {
  color: #ffffff;
  background: #f49e4c;
}
.contact-wrap .contact-box .box .mail-box a:hover i {
  color: #ffffff;
}
@media print, screen and (max-width: 991px) {
  .contact-wrap svg {
    margin-bottom: 60px;
  }
  .contact-wrap .contact-box {
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
  }
  .contact-wrap .contact-box .box {
    width: 100%;
  }
  .contact-wrap .contact-box .box .ttl {
    justify-content: center;
    flex-wrap: wrap;
  }
  .contact-wrap .contact-box .box .ttl .en {
    font-size: 40px;
    line-height: 1;
    text-align: center;
    width: 100%;
  }
  .contact-wrap .contact-box .box .ttl .jp {
    font-size: 14px;
    text-align: center;
  }
  .contact-wrap .contact-box .box .txt {
    text-align: center;
  }
  .contact-wrap .contact-box .box .txt br {
    display: none;
  }
  .contact-wrap .contact-box .box .tel-box .ttl,
  .contact-wrap .contact-box .box .mail-box .ttl {
    font-size: 18px;
    font-weight: 500;
    justify-content: center;
    padding: 10px 0;
    border-top: 1px solid #f49e4c;
    border-bottom: 1px solid #f49e4c;
  }
  .contact-wrap .contact-box .box .tel-box .ttl::after,
  .contact-wrap .contact-box .box .mail-box .ttl::after {
    display: none;
  }
  .contact-wrap .contact-box .box .tel-box {
    margin-bottom: 60px;
  }
  .contact-wrap .contact-box .box .tel-box .tel span,
  .contact-wrap .contact-box .box .tel-box .tel a {
    justify-content: center;
    font-size: 36px;
  }
  .contact-wrap .contact-box .box .tel-box .tel span i,
  .contact-wrap .contact-box .box .tel-box .tel a i {
    font-size: 28px;
  }
  .contact-wrap .contact-box .box .tel-box .tel-time-day {
    text-align: center;
  }
  .contact-wrap .contact-box .box .tel-box .tel-time-day br {
    display: inline;
  }
  .contact-wrap .contact-box .box .mail-box a {
    width: 300px;
    margin: 0 auto;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  padding: 15px;
  border-top: 1px dashed #cccccc;
}
.footer-nav li a {
  font-size: 16px;
  color: #666666;
  padding: 5px;
  transition: 0.3s;
}
.footer-nav li a:hover {
  color: #111111;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}

.footer-content {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}
.footer-content .company-info .logo {
  margin: 0 60px 30px 0;
}
.footer-content .company-info .logo img {
  max-width: 360px;
}
.footer-content .company-info .store-address {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 15px;
}
.footer-content .company-info .store-address a {
  display: inline-block;
}
.footer-content .company-info .store-address a i {
  color: #f49e4c;
  transition: 0.3s;
}
.footer-content .company-info .store-address a i:hover {
  color: #d45e17;
}
.footer-content .contact-numbers {
  text-align: right;
}
.footer-content .contact-numbers .tel,
.footer-content .contact-numbers .fax {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.footer-content .contact-numbers .tel .prefix,
.footer-content .contact-numbers .fax .prefix {
  font-size: 16px;
}
.footer-content .contact-numbers .tel {
  margin-bottom: 10px;
}
.footer-content .link-btn {
  margin-top: 40px;
}
.footer-content .link-btn a {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  .footer-content .company-info .logo img {
    max-width: 280px;
  }
  .footer-content .company-info .store-address {
    display: block;
  }
  .footer-content .company-info .store-address a i {
    margin-left: 4px;
  }
  .footer-content .contact-numbers {
    text-align: center;
    margin: 60px 0 0;
  }
  .footer-content .contact-numbers .tel,
  .footer-content .contact-numbers .fax {
    font-size: 24px;
    justify-content: center;
  }
  .footer-content .contact-numbers .tel .prefix,
  .footer-content .contact-numbers .fax .prefix {
    font-size: 13px;
  }
  .footer-content .link-btn {
    margin-top: 20px;
  }
}

.copyright {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  background: #f49e4c;
}

/* ------------------------------------------------------------
// 印刷設定
------------------------------------------------------------ */
@media print {
  a {
    text-decoration: none !important;
  }
  table,
  p {
    page-break-inside: avoid !important;
  }
  .header-wrap {
    position: static !important;
  }
  nav,
  .hamburger,
  .header-space,
  .pagetop {
    display: none !important;
  }
}
/* ------------------------------------------------------------
// body
------------------------------------------------------------ */
body {
  font-family: "Kosugi Maru", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* ------------------------------------------------------------
// spacer
------------------------------------------------------------ */
.spacer {
  height: 120px;
}
@media screen and (max-width: 767px) {
  .spacer {
    height: 60px;
  }
}

.spacer-min {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .spacer-min {
    height: 30px;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 575px) {
  .sp-only {
    display: inline;
  }
}

@media screen and (max-width: 575px) {
  .pc-only {
    display: none;
  }
}

/* ------------------------------------------------------------
// font color
------------------------------------------------------------ */
.baloo {
  font-family: "Baloo Bhaijaan 2", sans-serif;
}

.txt-red {
  color: #d62828;
}

.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;
}

.link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 18px;
  color: #333333;
  width: 100%;
  max-width: 320px;
  height: 50px;
  background: #ffffff;
  border: 1px solid #f49e4c;
  border-radius: 30px;
  transition: 0.3s;
}
.link-btn a i {
  color: #f49e4c;
}
.link-btn a:hover {
  color: #ffffff;
  background: #f49e4c;
}
.link-btn a:hover i {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .link-btn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .link-btn a {
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------
// table
------------------------------------------------------------ */
.table-stacked {
  width: 100%;
}
.table-stacked tr {
  display: grid;
  grid-template-columns: 180px auto;
}
.table-stacked tr th,
.table-stacked tr td {
  text-align: left;
  vertical-align: top;
  padding: 15px 20px;
  border-top: 1px dashed #cccccc;
}
.table-stacked tr th {
  font-weight: 500;
  color: #e9702e;
}
.table-stacked tr td {
  background: #ffffff;
}
.table-stacked tr:first-child th, .table-stacked tr:first-child td {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .table-stacked tr {
    display: flex;
    flex-direction: column;
    border-top: none;
  }
  .table-stacked tr th,
  .table-stacked tr td {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border-bottom: none;
  }
}

/* ------------------------------------------------------------
// Common Content Styles
------------------------------------------------------------ */
.content-wrap {
  margin: 120px 0;
}
@media print, screen and (max-width: 767px) {
  .content-wrap {
    margin: 60px 0;
  }
}

.content-subttl {
  display: flex;
  gap: 10px;
  color: #333333;
  position: relative;
  padding: 0 10px 10px;
  margin-bottom: 30px;
  margin-inline: auto;
}
.content-subttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, transparent 25%, #f49e4c 25%, #f49e4c 50%, transparent 50%, transparent 75%, #f49e4c 75%, #f49e4c);
  background-size: 4px 4px;
  z-index: 0;
}
.content-subttl .icon {
  width: 32px;
}
.content-subttl .ttl {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.content-subttl .ttl .txt {
  font-size: 16px;
}
.content-subttl .ttl .baloo {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #cccccc;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
@media print, screen and (max-width: 767px) {
  .content-subttl {
    gap: 6px;
    padding: 0 5px 10px;
  }
  .content-subttl .icon {
    width: 24px;
  }
  .content-subttl .ttl {
    font-size: 22px;
    margin-bottom: 5px;
  }
}

/* ------------------------------------------------------------
// index
------------------------------------------------------------ */
/* 全体の設定 */
.main-visual {
  position: relative;
  height: 100vh; /* デフォルトは全画面の高さ */
  background: url(../images/index/main-img.png) no-repeat center center/cover;
  overflow: hidden;
}
.main-visual svg {
  position: absolute;
  bottom: -1px;
}

@media screen and (max-width: 991px) {
  .main-visual {
    height: 60vh;
  }
}
@media print {
  .main-visual {
    height: 60vh;
  }
}
/* テキストのオーバーレイ */
.overlay-txt {
  position: absolute;
  right: 0;
  bottom: 200px;
  padding: 0 40px 0 120px;
}
.overlay-txt .main-txt {
  font-size: 38px;
  color: #111111;
  line-height: 1.2;
  text-shadow: 1px 1px 2px white, -1px 1px 2px white, 1px -1px 2px white, -1px -1px 2px white; /* 左上 */
}
.overlay-txt .min-txt {
  font-size: 14px;
  color: #ffffff;
  margin: 10px 0 0 0.2em;
}
@media print, screen and (max-width: 991px) {
  .overlay-txt {
    bottom: 120px;
  }
  .overlay-txt .main-txt {
    font-size: 24px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px white, -1px 1px 2px white, 1px -1px 2px white, -1px -1px 2px white; /* 左上 */
  }
  .overlay-txt .min-txt {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media print, screen and (max-width: 767px) {
  .overlay-txt {
    bottom: 100px;
    padding: 0 15px 0 120px;
  }
  .overlay-txt .main-txt {
    font-size: 18px;
  }
  .overlay-txt .main-txt br {
    display: none;
  }
  .overlay-txt .min-txt {
    display: none;
  }
}
@media print, screen and (max-width: 575px) {
  .overlay-txt {
    bottom: 50px;
    padding: 0 15px 0 120px;
  }
  .overlay-txt .main-txt {
    font-size: 16px;
  }
}

.service-wrap {
  position: relative;
  display: flex;
  margin: 120px 0 180px;
}
.service-wrap .img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
}
.service-wrap .white-box {
  width: 680px;
  margin: 60px 0 0 auto;
  padding: 40px 60px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed #f49e4c;
  border-radius: 24px;
  z-index: 1;
}
.service-wrap .white-box .content-ttl {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.service-wrap .white-box .content-ttl .icon {
  width: 56px;
}
.service-wrap .white-box .content-ttl .ttl {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-wrap .white-box .content-ttl .ttl .en {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #111111;
  margin-bottom: -5px;
}
.service-wrap .white-box .content-ttl .ttl .en::first-letter {
  color: #f49e4c;
}
.service-wrap .white-box .content-ttl .ttl .jp {
  font-size: 14px;
  color: #cccccc;
  line-height: 1;
  margin-left: 0.2em;
}
.service-wrap .white-box .txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .service-wrap {
    margin: 60px 0 90px;
  }
  .service-wrap .img-box {
    text-align: center;
    width: 100%;
  }
  .service-wrap .img-box img {
    border-radius: 12px;
  }
  .service-wrap .white-box {
    width: calc(100% - 30px);
    margin: 130px 15px 0;
    padding: 30px 20px;
    border-radius: 12px;
  }
  .service-wrap .white-box .content-ttl .icon {
    padding-top: 0;
  }
  .service-wrap .white-box .content-ttl .ttl .en {
    font-size: 36px;
    margin-bottom: 5px;
  }
  .service-wrap .white-box .content-ttl .ttl .jp {
    font-size: 13px;
  }
  .service-wrap .white-box .link-btn a {
    margin: 0 auto !important;
  }
}

.about-wrap {
  position: relative;
  display: flex;
  margin: 120px 0;
}
.about-wrap .img-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
}
.about-wrap .white-box {
  width: 680px;
  margin: 60px 0 0 0;
  padding: 40px 60px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px dashed #f49e4c;
  border-radius: 24px;
  z-index: 1;
}
.about-wrap .white-box .content-ttl {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.about-wrap .white-box .content-ttl .icon {
  width: 56px;
}
.about-wrap .white-box .content-ttl .ttl {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.about-wrap .white-box .content-ttl .ttl .en {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: #111111;
  margin-bottom: -5px;
}
.about-wrap .white-box .content-ttl .ttl .en::first-letter {
  color: #f49e4c;
}
.about-wrap .white-box .content-ttl .ttl .jp {
  font-size: 14px;
  color: #cccccc;
  line-height: 1;
  margin-left: 0.2em;
}
.about-wrap .white-box .txt {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about-wrap {
    margin: 60px 0;
  }
  .about-wrap .img-box {
    text-align: center;
    width: 100%;
  }
  .about-wrap .img-box img {
    border-radius: 12px;
  }
  .about-wrap .white-box {
    width: calc(100% - 30px);
    margin: 130px 15px 0;
    padding: 30px 20px;
    border-radius: 12px;
  }
  .about-wrap .white-box .content-ttl .icon {
    padding-top: 0;
  }
  .about-wrap .white-box .content-ttl .ttl .en {
    font-size: 36px;
    margin-bottom: 5px;
  }
  .about-wrap .white-box .content-ttl .ttl .jp {
    font-size: 13px;
  }
  .about-wrap .white-box .link-btn a {
    margin: 0 auto !important;
  }
}