@charset "UTF-8";
/* ------------------------default */
html {
  margin: 0;
  padding: 0;
  font-size: 62.5%; /* 1rem = 10px, デフォルト16pxを基準にリセット */
  /* scroll-behavior: smooth; */
}

/* --------------
reset
-------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

body,
div,
dl,
dt,
dd,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
section,
nav,
article,
aside,
header,
footer,
figure,
figcaption,
details,
summary,
menu {
  margin: 0;
  padding: 0;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

ol,
ul,
menu {
  list-style: none;
}

/* -----------table */
table {
  border-collapse: collapse;
  width: 100%;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

th,
td {
  border-bottom: 1px solid #cbcbcb;
  padding: 1em;
  text-align: left;
}

tr:last-child th,
tr:last-child td {
  border-bottom: none;
}

/* -----------img */
img,
video {
  max-width: 100%;
  height: auto;
}

/* --------------
base
-------------- */
body {
  width: 100%;
  font-size: 1.6rem; /* 16px */
  color: #333;
  font-family: "Noto Sans JP", "Noto Sans", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-style: normal;
  text-align: left;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------
flex
-------------- */
.flex-column--0 {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.flex-column--1 {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.flex-column--2 {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.flex-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

/* --------------
grid
-------------- */
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.gap-2 {
  gap: 2em;
}

/* --------------
Link
-------------- */
a {
  text-decoration: none;
  color: #ff0019;
}

a:hover {
  color: #d80a1e;
}

/* ---------- align */
.alc {
  text-align: center;
}

.alr {
  text-align: right;
}

.all {
  text-align: left;
}

.alt {
  vertical-align: top;
}

.alb {
  text-align: bottom;
}

/* ---------- margin,padding */
.m-auto {
  margin: 0 auto;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.pb20 {
  padding-bottom: 20px;
}

.bold {
  font-weight: bold;
}

.normal {
  font-size: 1.6rem;
}

/*------title */
.serif {
  font-family: "Yu Mincho Pr6N", "游明朝 Pr6N", "Noto Serif JP", "Noto Serif", "メイリオ", sans-serif;
  font-weight: 400;
}

h2 {
  font-size: 1.4em;
}

.ttl--h2 {
  font-family: "a-otf-ud-shin-maru-go-pr6n", "Noto Sans JP", "Noto Sans";
  position: relative;
  font-size: 4rem;
  text-align: center;
  color: #e97021;
  margin-bottom: 0.8em;
}

.ttl--h2::before,
.ttl--h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 104px;
  height: 24px;
  z-index: -1;
}

/* 左側 */
.ttl--h2::before {
  left: 8em;
  background: url(../img/ttl_left.png) no-repeat center/contain;
}

/* 右側 */
.ttl--h2::after {
  right: 8em;
  background: url(../img/ttl_right.png) no-repeat center/contain;
}

.ttl--h3 {
  font-size: 3rem;
}

.ttl--h4 {
  font-size: 2rem;
}

/*------color */
.color--white {
  color: #fff;
}

.underline--yellow {
  background-image: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(252, 245, 145, 0.6784313725) 70%);
}

/*-------- back color */
.back--yellow {
  background-color: #fcf9ea;
  border-radius: 16px;
}

/* --------------fadein */
.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
  transform: translateY(100px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------Top-------------- */
main {
  flex-grow: 1;
}

.contents {
  padding: min(10vw, 72px) min(5vw, 50px);
}

.header__nav--item a {
  position: relative;
  color: #333;
  font-size: 1.8rem;
}

.header__nav--item a:not(.contact--button)::before {
  content: "";
  background: #ff701e;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -3px;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.header__nav--item a:not(.contact--button):hover::before {
  transform: scale(1, 1);
}

/* --------- button ---------- */
.contact--button {
  background-color: #e97021;
  color: #fff !important;
  padding: 0.5em 1.5em;
  border-radius: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact--button::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 22px;
  margin-right: 8px;
  background: url(../img/icon_contact.png) no-repeat center/contain;
}

.contact--button:hover {
  transform: translateY(2px);
  background-color: #d4631c;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.main-visual {
  position: relative;
}
.main-visual__txt {
  position: absolute;
  top: 46%;
  right: 20%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 300px;
  height: auto;
}

/* ----------dl  */
.dl__wrap {
  padding: 2em 4em;
  color: #fff;
}
.dl__wrap dl {
  display: flex;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 1em;
}
.dl__wrap dt {
  width: 10em;
  flex-shrink: 0;
  font-weight: bold;
}

/* -----top ボタン------- */
.upto_button {
  position: fixed;
  bottom: 2em;
  right: 1em;
  z-index: 999;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.upto_button.show {
  opacity: 1;
  visibility: visible;
}

.upto_button a {
  color: #e97021;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ----- service ----- */
.service__item {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.08);
}

.service__item a {
  color: inherit;
}

.service__item img {
  transition: transform 0.3s ease;
}

.service__item:hover img {
  transform: scale(1.05);
}

.service__item--btn {
  position: absolute;
  bottom: 1em;
  right: 1em;
  width: 44px;
  aspect-ratio: 1/1;
  background-color: #fae97a;
  border-radius: 50%;
}

.service__item--btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-top: 4px solid #e97021;
  border-right: 4px solid #e97021;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: left 0.2s ease-in-out;
}

.service__item:hover .service__item--btn::after {
  left: 50%;
}

.service__item--txt {
  text-align: center;
  padding: 1em;
}

/* ----- banner ----- */
.banner__item {
  position: relative;
  overflow: hidden;
}

.banner__item img {
  transition: transform 0.3s ease;
}

.banner__item:hover img {
  transform: scale(1.05);
}

.banner__item--txt {
  position: absolute;
  bottom: 1em;
  right: 1em;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
}
.banner__item--txt h2 {
  position: relative;
  font-weight: normal;
  /* 矢印 */
}
.banner__item--txt h2::before {
  content: "";
  position: absolute;
  left: -2em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__item--txt h2::after {
  content: "";
  position: absolute;
  left: -1.5em;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 3px solid #e97021;
  border-right: 3px solid #e97021;
  transform: translate(-50%, -50%) rotate(45deg);
}

.banner__item--txt h2 {
  padding-bottom: 0.3em;
}

.banner__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2.5em;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 0.2em;
}

/*------- sns -------*/
.sns__wrap {
  margin-top: 2em;
}

.sns__wrap a {
  padding: 1.5em;
  border: 3px solid #fae979;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 6px 12px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sns__wrap a:hover {
  transform: translateY(3px);
  box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.2);
}

/* ------- map ------- */
.map__txt {
  padding: 1.5em;
  border: 1px solid #ffaa29;
  box-shadow: 4px 4px 0 #ffaa29;
  margin-top: 1em;
  border-radius: 16px;
}

/* ------------- footer ------------- */
.footer {
  width: 100%;
  color: #333;
  background: #fcf9ea;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.footer__nav--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4em;
}

.footer__nav--item a {
  color: #333;
}

.footer .footer__below-copy {
  text-align: center;
  font-size: 1.4rem;
}

/* ------------- sub-visual ------------- */
.sub-visual {
  position: relative;
  height: 24vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-visual::after {
  content: "";
  background: url(../img/sub_visual.webp) no-repeat center/cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sub-visual__title {
  position: relative;
  z-index: 1;
  font-size: 2.5em;
  text-align: center;
}

/* ------------- 下層-service ------------- */
.service-links {
  margin-top: 2em;
}

.service-detail__txt {
  margin-bottom: 1em;
}

.service-links__item {
  position: relative;
  display: inline-block;
  background-color: #fae97a;
  color: #333;
  padding: 1em;
  border-radius: 30px;
  text-align: center;
  box-shadow: 2px 6px 12px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-links__item:hover {
  transform: translateY(3px);
  box-shadow: 1px 3px 6px 0 rgba(0, 0, 0, 0.2);
}

.service-links__item::after {
  content: "";
  position: absolute;
  right: 2em;
  top: 34%;
  width: 12px;
  height: 12px;
  border-top: 4px solid #e97021;
  border-right: 4px solid #e97021;
  transform: rotate(135deg) translateY(-50%);
  z-index: 0;
}

/* ------------- 下層 contact ------------- */
.contact-info h3 {
  border-bottom: 1px solid #e97021;
  margin-bottom: 0.8em;
}

.list--arrow::before {
  content: "▶";
  margin-right: 0.5em;
  color: #e97021;
}

/* ------------- form ------------- */
.btn {
  border: 1px solid #fff;
  color: #333;
  border-radius: 40px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: background-position 0.5s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn--back {
  padding: 0.8em 2em;
  max-width: 220px;
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff7b0 0%, #fae97a 50%, #f6d948 100%);
  padding: 1em 2em;
  max-width: 300px;
}

.btn--primary:hover {
  background: #f6d948;
}

@media screen and (min-width: 768px) {
  /* pcで非表示 */
  .ifsp {
    display: none;
  }
  .pc-flex--2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
  }
  .pc-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
  .pc-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }
  .pc-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5em;
  }
  .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  /*------title */
  .ttl--h2 {
    letter-spacing: 8px;
  }
  /* --------- header */
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 0.5em 1.5em;
    background-color: #fcf9ea;
    box-shadow: 0px 6px 3px -3px rgba(0, 0, 0, 0.1);
  }
  .header__inner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
  /* ----------main-visual  pc*/
  .main-visual {
    margin-top: 85px;
  }
  .main-visual__content img {
    width: 100%;
    height: 80vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* ------ hamburger menu */
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5em;
  }
  .header__nav--list {
    display: flex;
    align-items: center;
    gap: 4em;
  }
  .top {
    margin-top: 85px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-column--2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  /* ------ hamburger menu */
  .sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(255, 233, 219, 0.9411764706);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-x: hidden;
    display: block;
  }
  .header__hamburger {
    height: 48px;
    width: 48px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: fixed;
    right: 2%;
    top: 2%;
    z-index: 1000;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #e97021;
  }
  .header__menu--border {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    position: relative;
  }
  .header__hamburger--line {
    background-color: #e97021;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__logo {
    margin: 3em 0 1em;
  }
  .header__nav--list {
    align-items: center;
  }
  .header__nav--list a {
    font-size: 2rem;
  }
  /* ------ hamburger menu active */
  .sp-nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
  /* ------ header  */
  .header__nav--item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fff;
  }
  .header__nav--item:last-child {
    border-bottom: none;
  }
  .header__nav--item a {
    display: block;
    width: 100%;
    padding: 0.5em 1.5em;
  }
  /*------title */
  .ttl--h2::before {
    left: 3em;
  }
  .ttl--h2::after {
    right: 3em;
  }
}
@media screen and (max-width: 767px) {
  /* spで非表示 */
  .ifpc {
    display: none;
  }
  html {
    -webkit-text-size-adjust: 100%;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
  }
  body {
    font-size: 1.4rem;
    overflow-x: hidden;
  }
  .inner {
    width: 98%;
    margin-right: auto;
    margin-left: auto;
  }
  /*------title sp*/
  h2 {
    font-size: 1.8rem;
  }
  .ttl--h2 {
    font-size: 2.4rem;
  }
  .ttl--h2::before,
  .ttl--h2::after {
    width: 60px;
    height: 12px;
  }
  /* 左側 */
  .ttl--h2::before {
    left: 0;
    background: url(../img/ttl_left.png) no-repeat center/contain;
  }
  /* 右側 */
  .ttl--h2::after {
    right: 0;
    background: url(../img/ttl_right.png) no-repeat center/contain;
  }
  .ttl--h3 {
    font-size: 1.8rem;
  }
  .ttl--h4 {
    font-size: 1.8rem;
  }
  .sp-column--1 {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .sp-column--2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  .sp-grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
  }
  .sp-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;
  }
  /* ---------main-visual sp*/
  .main-visual__txt {
    top: 35%;
    right: 8%;
    max-width: 180px;
  }
  .header__logo {
    margin: 2em 0 1em;
  }
  /* ---------table sp*/
  th,
  td {
    padding: 1.5em 0.5em;
  }
  th {
    width: 30%;
  }
  .dl__wrap {
    padding: 1em;
  }
  .dl__wrap dl {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 1.6rem;
  }
  .dl__wrap dd {
    font-size: 1.8rem;
  }
  /* ----------up to button sp*/
  .upto_button {
    width: 64px;
  }
  /* ------ hamburger menu */
  .sp-nav {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 233, 219, 0.9411764706);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    display: block;
  }
  .header__hamburger {
    height: 48px;
    width: 48px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    position: fixed;
    right: 2%;
    top: 2%;
    z-index: 1000;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid #e97021;
  }
  .header__menu--border {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    position: relative;
  }
  .header__hamburger--line {
    background-color: #e97021;
    width: 100%;
    height: 2px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header__nav--list {
    align-items: center;
  }
  /* ------ hamburger menu active */
  .sp-nav.active {
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }
  /* ------ header  sp*/
  .header__nav--item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fff;
  }
  .header__nav--item:last-child {
    border-bottom: none;
  }
  .header__nav--item a {
    display: block;
    width: 100%;
    padding: 0.5em 1.5em;
  }
  /* --------service sp -------- */
  .service__item--btn {
    width: 32px;
  }
  .service__item--btn::after {
    width: 14px;
    height: 14px;
  }
  /*------- sns -------*/
  .sns__wrap a {
    padding: 1em;
  }
  .sns__wrap img {
    width: 40px;
  }
  /* ------------- footer sp ------------- */
  .footer__nav--list {
    gap: 1em;
  }
  .footer__info {
    text-align: center;
  }
  /* ------------- sub-visual ------------- */
  .sub-visual {
    height: 14vh;
  }
  .sub-visual__title {
    font-size: 1.8em;
  }
  /* ------------- 下層-service sp------------- */
  .service-links__item {
    width: 75%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */