@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
:root {
  --main: #E67E22;
  --main-d: #A25800;
  --main-m: #D4A373;
  --sub: #E5CA97;
  --bg: #F4F1E7;
  --text: #555555;
  --white: #ffffff;
  --gray: #bebebe;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: sans-serif;
  --font-size: 1rem; /* デフォルト16px */
  --bold: 700;
  --content-width: 1280px;
  --content-width-sp: 320px;
  --space-section: 120px;
  --space-section-sp: 64px;
}
/* リセットcss */
* { margin: 0; padding: 0; box-sizing: border-box;}
html { font-size: 100%; scroll-padding-top: var(--header-height); scroll-behavior: smooth;}
body {
  font-family: var(--font-ja);
  color: var(--text);
  font-size: var(--font-size);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
ul, ol { list-style-type: none;}
h1, h2, h3, h4, h5 { font-size: inherit; font-weight: var(--bold); word-break: auto-phrase;}
a { color: var(--text); text-decoration: none; transition: all 0.3s ease;}
a::before, a::after { transition: all 0.3s ease;}
p > a { text-decoration: underline;}
img { width: 100%; height: auto; vertical-align: bottom;}
iframe { width: 100%; height: 100%; vertical-align: bottom;}
mark, em, small { color: inherit; font-style: normal; font-size: inherit; font-weight: inherit; background-color: transparent;}
strong { color: inherit; font-style: normal; font-size: inherit; font-weight: var(--bold); background-color: transparent;}

/* component */
.l-inner {
  width: 90%;
  max-width: var(--content-width);
  margin: auto;
}
.c-section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 1;
}
.c-section:last-of-type {
  padding-bottom: calc(var(--space-section) * 2);
}
.c-section-title {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 180px;
  position: relative;
  z-index: 1;
}
.c-section-title::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.c-section-title-en {
  display: block;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  color: #E5CA97;
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
}
.c-section-title-ja {
  color: var(--main-d);
  font-size: 1.5rem;
  font-weight: var(--bold);
}
.c-section-title-ja::before { content: "- ";}
.c-section-title-ja::after { content: " -";}
.c-link {
  text-align: center;
  margin-top: 64px;
}
.c-btn {
  display: inline-block;
  background-color: var(--main);
  color: var(--white);
  font-size: 1.125rem;
  text-align: center;
  border-radius: 30px;
  padding: 12px 56px;
}
.c-link .c-btn {
  padding: 16px 56px;
}
.c-btn:hover {
  opacity: .7;
}
.c-breadcrumb {
  font-size: .875rem;
}
.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  color: var(--main-d);
}
.c-breadcrumb a {
  color: var(--main-d);
}
.c-breadcrumb a::after,
.c-breadcrumb .parent::after {
  content: "/";
  margin: 0 1em;
}
.js-scroll-up {
  transition: 0.6s ease-in-out;
  transform: translateY(60px);
  opacity: 0;
}
.js-scroll-up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/* component end */

/* header */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 2% 0;
  z-index: 9;
}
.header__logo {
  width: 20%;
  min-width: 240px;
}
.header__nav-list {
  max-height: 210px;
  background-color: var(--white);
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
  row-gap: 4px;
  font-size: min(1.2vw, 1.125rem);
  border-radius: 32px;
  padding: 8px 32px;
  margin-top: 8px;
}
.header__nav-item a {
  position: relative;
  z-index: 1;
}
.header__nav-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.header__nav-item a:hover:after {
  background-color: var(--main);
}
.header__nav-sub-wrap {
  width: 0;
  display: grid;
  grid-template-rows: 0fr;
  font-size: .875rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  transition: grid-template-rows .3s;
}
.header__nav-list:hover .header__nav-sub-wrap {
  width: auto;
  grid-template-rows: 1fr;
  padding: 8px 0;
}
.header__nav-sub {
  overflow: hidden;
}
.header__nav-sub a {
  color: #707070;
}
.header__nav-sub a::after {
  content: none;
}
.header__nav-sub a:hover {
  text-decoration: underline;
}
/* header end */

/* footer */
.footer {
  display: flex;
  align-items: flex-end;
  aspect-ratio: 1920 / 780;
  background: url(../img/footer/footer.png) no-repeat left bottom;
  background-size: cover;
  color: var(--white);
  margin-top: -125px;
  padding-top: 125px;
  position: relative;
  z-index: 2;
}
.footer a {
  color: var(--white);
}
.footer__inner {
  display: flex;
  column-gap: 5%;
  width: 90%;
  max-width: var(--content-width);
  margin: 0 auto 48px;
}
.footer__info {
  width: 45%;
}
.footer__content {
  width: 55%;
}
.footer__logo {
  max-width: 400px;
  margin-bottom: 32px;
}
.footer__address {
  letter-spacing: 0.1em;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2em;
  row-gap: 1em;
  margin-bottom: 32px;
}
.footer__sns {
  display: flex;
  justify-content: flex-end;
  column-gap: 24px;
  margin-bottom: 32px;
}
.footer__sns-item {
  width: 40px;
}
.footer__copy-logo {
  width: 212px;
  margin-left: auto;
}
.footer__copy-text {
  font-size: 0.875rem;
  text-align: right;
  margin-top: 24px;
}
/* footer inner */

/* top-nav */
.top-nav {
  width: 64px;
  height: 64px;
  background: url(../img/top-nav.png) no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 48px;
  right: 2%;
  z-index: 5;
  cursor: pointer;
  opacity: 0;
  transition: opacity .5s;
}
.top-nav.on {
  opacity: 1;
}
/* top-nav end */

/* fix */
@keyframes fade {
  0% { opacity: 0;}
  100% { opacity: 1;}
}
.fix__menu {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: fixed;
  right: 0;
  bottom: 160px;
  z-index: 2;
  opacity: 0;
  animation: fade .5s 1s forwards;
}
.fix__item {
  position: relative;
}
.fix__item-link {
  display: block;
  background-color: var(--white);
  color: var(--main);
  font-size: .875rem;
  font-weight: var(--bold);
  line-height: 1.2;
  border: 4px solid var(--main);
  border-right: none;
  border-radius: 20px 0 0 20px;
  padding: 12px 8px 12px 16px;
}
.fix__item:hover .fix__item-link {
  background-color: var(--main);
  color: var(--white);
}
.fix__item-content {
  position: absolute;
  left: -380px;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-40%);
  transition: opacity .3s;
}
.fix__item:hover .fix__item-content {
  visibility: visible;
  opacity: 1;
}
.fix__item-content a {
  display: block;
  width: 340px;
  background-color: var(--white);
  text-align: center;
  border: 8px solid var(--main);
  border-radius: 30px;
  padding-bottom: 16px;
  position: relative;
}
.fix__item-content a::before,
.fix__item-content a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.fix__item-content a::before {
  border-left: 36px solid var(--main);
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  right: -36px;
}
.fix__item-content a::after {
  border-left: 25px solid var(--white);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  right: -24px;
  z-index: 1;
}
.fix__item-content img {
  border-radius: 22px 22px 0 0;
  margin-bottom: 16px;
}
.fix__item-text {
  font-size: 1.25rem;
  font-weight: var(--bold);
  word-break: auto-phrase;
}
.fix__item-text.color {
  color: var(--main);
  text-decoration: underline;
  margin-top: 8px;
}
/* fix end */

/* sp-menu */
  .sp-menu {
    display: block;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    position: relative;
  }
  .sp-menu-bar,
  .sp-menu-bar::before,
  .sp-menu-bar::after {
    width: 24px;
    height: 2px;
    background-color: var(--text);
    border-radius: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform .3s;
  }
  .sp-menu-bar::before { content: ""; margin-bottom: 6px;}
  .sp-menu-bar::after { content: ""; margin-top: 6px;}
  .active .sp-menu-bar { height: 0;}
  .active .sp-menu-bar::before { transform: rotate(45deg); margin-bottom: -1px;}
  .active .sp-menu-bar::after {transform: rotate(-45deg); margin-top: -1px;}
/* sp-menu end */

/* responsive */
@media (max-width: 1279px) {
  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .l-view-sp { display: none;}
}
@media (max-width: 1023px) {
  body { letter-spacing: 0.05em;}
  body.active { height: 100vh; overflow: hidden;}
  .l-view-pc { display: none;}
  .l-inner { max-width: 600px;}
  .c-section { padding: var(--space-section-sp) 0;}
  .c-section-title { margin-bottom: 48px; padding-top: 80px;}
  .c-section-title-en { font-size: 3rem;}
  .c-link { margin-top: 40px;}
  .c-breadcrumb { font-size: 0.75rem;}
  .header { align-items: center; padding: 0 2% 0 0;}
  .header__nav-list {
    width: 100%;
    height: 100vh;
    background-color: var(--text);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
    font-size: 1rem;
    border-radius: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s;
  }
  .header__nav-list.active { visibility: visible; opacity: 1;}
  .header__nav-item a {
    display: block;
    min-width: 300px;
    background-color: var(--white);
    text-align: center;
    border-radius: 20px;
    padding: 8px;
  }
  .header__nav-item a::after { content: none;}
  .header__nav-sub-wrap { display: none;}
  .footer { padding-top: 80px;}
  .footer__inner { flex-direction: column; row-gap: 32px; margin-bottom: 64px;}
  .footer__info, .footer__content { width: 100%;}
  .footer__logo { max-width: 280px; margin: 0 auto 32px;}
  .footer__address { font-size: .875rem;letter-spacing: 0; text-align: center;}
  .footer__nav-list {
    max-width: 280px;
    grid-template-columns: 1fr;
    row-gap: 24px;
    background-color: rgba(255, 255, 255, .9);
    text-align: center;
    border-radius: 15px;
    padding: 24px 2%;
    margin: 0 auto 32px;
  }
  .footer__nav-item a { color: #000;}
  .footer__sns { justify-content: center;}
  .footer__sns-item { width: 24px;}
  .footer__copy-logo { width: 140px; margin: 0 auto;}
  .footer__copy-text { text-align: center;}
  .top-nav { width: 40px; height: 40px; bottom: 64px}
  .fix__menu {
    width: 100%;
    background-color: var(--white);
    flex-direction: row;
    column-gap: 2px;
    bottom: 0;
  }
  .fix__item { flex: 1;}
  .fix__item-link {
    background-color: var(--main);
    color: var(--white);
    text-align: center;
    border: none;
    border-radius: 0;
  }
  .fix__item-content { display: none;}
}
/* responsive end */