@charset "UTF-8";
/* PC/SPの表示制御はBootstrapのClassを利用する
https://getbootstrap.jp/docs/5.3/utilities/display/
d-none d-sm-block d-md-block d-lg-block d-xl-block d-xxl-block
*/
/*common
==============================================*/
:root {
  --color-mainyellow:	#EFEE92;
  --color-darkgreen:	#0C5F6D;
  --text-color-base:	#1C1F24;
  --text-color-yellow:	#E8C900;
  --text-color-lightblack:	#5A5E65;
  --text-color-lightblack2:	#6F6F6F;
  --text-color-lightblack3:	#c0c0c0;
  --text-color-red:	#C43434;
  --header-height: 50px;
  /* 0. 極小：（10px → 12px） */
  --text-xxs: clamp(0.625rem, 0.579rem + 0.19vw, 0.75rem);
  /* 1. 小：（12px → 14px） */
  --text-xs: clamp(0.75rem, 0.705rem + 0.19vw, 0.875rem);
  /* 2. 標準：（14px → 16px） */
  --text-base: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
  /* 3. 中：（16px → 20px） */
  --text-md: clamp(1rem, 0.886rem + 0.47vw, 1.25rem);
  /* 3.5 中大：（20px → 24px） */
  --text-ml: clamp(1.25rem, 1.159rem + 0.37vw, 1.5rem);
  /* 4. 大：（24px → 32px） */
  --text-lg: clamp(1.5rem, 1.318rem + 0.74vw, 2rem);
  /* 5. 特大：（32px → 48px） */
  --text-xl: clamp(2rem, 1.63rem + 1.52vw, 3rem);
}

html {
  /* ブラウザ標準(16px)を維持 */
  font-size: 100%;
  /* フォントの滑らかさを向上（モダンブラウザ向け） */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* スクロールを滑らかに */
  height: 100%;
}

body {
  display: block;
  width: 100%;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: var(--text-color-base);
  line-height: 1.4;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  box-sizing: border-box;
  font-size: 1rem;
}

* {
  position: relative;
}

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

p, dt, dd, li {
  font-size: var(--text-base);
  line-height: 1.5;
  margin-bottom: 1em;
  color: var(--text-color-base);
}

p.no_margin_bottom {
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

a img:hover {
  transition: all 0.3s ease;
  opacity: 0.7;
}

/*MAIN
==============================================*/
main.main {
  padding-top: var(--header-height);
}

/*Header
==============================================*/
#header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#header .logo {
  margin-left: 10px;
  z-index: 10;
}
#header .logo img {
  height: 30px;
  width: auto;
}

/* Hamburger Icon */
.menu-btn {
  position: relative;
  width: 24px;
  height: 18px;
  z-index: 10;
  cursor: pointer;
  border: none;
  background: none;
  display: none;
  margin-right: 5vw;
}

.menu-btn__line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-color-lightblack2);
  transition: 0.3s;
}

.menu-btn__line:nth-child(1) {
  top: 0;
}

.menu-btn__line:nth-child(2) {
  top: 8px;
}

.menu-btn__line:nth-child(3) {
  top: 16px;
}

.is-active .menu-btn__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.is-active .menu-btn__line:nth-child(2) {
  opacity: 0;
}

.is-active .menu-btn__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98); /* 直接指定 */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 5;
}

.main-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0;
}
.nav-list li {
  margin-bottom: 0;
}

.nav-link {
  display: block;
  padding: 15px;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  position: relative;
}

/* Mobile specific triggers */
.menu-btn {
  display: block;
}

/* Desktop View (768px and up) */
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
  .main-nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex;
    transition: none !important;
  }
  .nav-list {
    display: flex;
    gap: 20px;
  }
  .nav-link {
    font-size: var(--text-base);
    padding: 0.75em 0;
  }
  /* ホバー時に中央から広がる下線のアニメーション */
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-mainyellow); /* 下線の色 */
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  .nav-link:hover::after {
    width: 100%;
  }
}
.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-overlay.active .nav-overlay__item:nth-child(6) {
  transition-delay: 0.6s;
}

.nav-overlay.active .nav-overlay__item:nth-child(7) {
  transition-delay: 0.7s;
}

.nav-overlay.active .nav-overlay__item:nth-child(8) {
  transition-delay: 0.8s;
}

.nav-overlay.active .nav-overlay__item:nth-child(9) {
  transition-delay: 0.9s;
}

.nav-overlay.active .nav-overlay__item:nth-child(10) {
  transition-delay: 1s;
}

/*header END*/
/*PANKUZU
==============================================*/
.pankuzu {
  padding: 1em 0 1em;
}
.pankuzu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.pankuzu ul li {
  font-size: var(--text-xs);
  margin-bottom: 0;
}
.pankuzu ul li::after {
  content: ">";
  padding: 0 0.5em;
}
.pankuzu ul li:last-child::after {
  content: "";
  padding: 0;
}

/*footer
==============================================*/
.endimage_block {
  padding: 40px 0 0;
  background-color: #fff;
}
.endimage_block .logo {
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
}

#footer {
  width: 100%;
}
#footer .logo {
  padding: 30px 0;
}
#footer .logo img {
  height: auto;
  width: 200px;
}

.footer-main {
  background-color: var(--color-mainyellow);
  padding: 30px 0 0px;
}

.footer_menu_sns h2 {
  display: inline-block;
  padding: 0.3em 1.5em;
  background-color: var(--text-color-base);
  border-radius: 50em;
  color: #fff;
  font-size: var(--text-base);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.footer_menu_sns li {
  font-size: var(--text-xl);
}

.footer_menu_upper li {
  font-size: var(--text-base);
  margin-bottom: 1.2em;
  padding: 0 1.5em 0 0;
  line-height: 1;
}

.footer_menu_bottom {
  padding: 20px 0;
}

.footer_menu_bottom li {
  text-align: left;
  font-size: var(--text-xs);
  margin-bottom: 1em;
  padding: 0 0.5em;
}

.copyright {
  padding: 3% 0 3%;
  text-align: center;
  background-color: #fff;
}
@media (min-width: 768px) {
  .copyright {
    padding: 15px 0 15px;
  }
}
.copyright small {
  font-size: var(--text-xs);
  text-align: center;
}

/*トップへ戻るボタン*/
#pagetop {
  position: sticky;
  left: calc(100vw - 70px);
  bottom: 10px;
  margin-bottom: 10px;
  width: 60px;
  height: 85px;
  display: none;
  z-index: 4;
}
@media (min-width: 768px) {
  #pagetop {
    right: 3%;
    bottom: 10px;
  }
}

/*------------------------------------------------------------
    margin
------------------------------------------------------------*/
.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 20px;
}

.mt-md {
  margin-top: 40px;
}

.mt-lg {
  margin-top: 80px;
}

.mt-xl {
  margin-top: 160px;
}

.mr-0 {
  margin-right: 0;
}

.mr-xs {
  margin-right: 5px;
}

.mr-md {
  margin-right: 20px;
}

.mr-lg {
  margin-right: 40px;
}

.mr-xl {
  margin-right: 80px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1em {
  margin-bottom: 1em;
}

.mb-xs {
  margin-bottom: 10px;
}

.mb-s {
  margin-bottom: 20px;
}

.mb-md {
  margin-bottom: 40px;
}

.mb-ml {
  margin-bottom: 60px;
}

.mb-lg {
  margin-bottom: 80px;
}

.mb-xl {
  margin-bottom: 160px;
}

.ml-0 {
  margin-left: 0;
}

.ml-xs {
  margin-left: 10px;
}

.ml-md {
  margin-left: 20px;
}

.ml-lg {
  margin-left: 40px;
}

.ml-xl {
  margin-left: 80px;
}

.pt-0 {
  padding-top: 0;
}

.pt-xs10 {
  padding-top: 10px;
}

.pt-xs {
  padding-top: 20px;
}

.pt-md {
  padding-top: 40px;
}

.pt-xl {
  padding-top: 80px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-xs10 {
  padding-bottom: 10px;
}

.pb-xs {
  padding-bottom: 20px;
}

.pb-md {
  padding-bottom: 40px;
}

.pb-xl {
  padding-bottom: 80px;
}

/*InView*/
.inview-fadein {
  opacity: 0;
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-done {
  opacity: 1;
}

.inview-fadein-up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-up-done {
  opacity: 1;
  transform: translate(0, 0);
}

.inview-fadein-down {
  opacity: 0;
  transform: translate(0, -10%);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-down-done {
  opacity: 1;
  transform: translate(0, 0);
}

.inview-fadein-left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-left-done {
  opacity: 1;
  transform: translate(0, 0);
}

.inview-fadein-right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 0.7s ease;
  transition-delay: 0.2s;
}

.inview-fadein-right-done {
  opacity: 1;
  transform: translate(0, 0);
}

/*Delay Timer*/
.ani-delay01 {
  transition-delay: 0.1s;
}

.ani-delay02 {
  transition-delay: 0.2s;
}

.ani-delay03 {
  transition-delay: 0.3s;
}

.ani-delay04 {
  transition-delay: 0.4s;
}

.ani-delay05 {
  transition-delay: 0.5s;
}

.ani-delay06 {
  transition-delay: 0.6s;
}

.ani-delay07 {
  transition-delay: 0.7s;
}

.ani-delay08 {
  transition-delay: 0.8s;
}

.ani-delay09 {
  transition-delay: 0.9s;
}

.ani-delay10 {
  transition-delay: 1s;
}

.ani-delay11 {
  transition-delay: 1.1s;
}

.ani-delay12 {
  transition-delay: 1.2s;
}

.ani-delay13 {
  transition-delay: 1.3s;
}

.ani-delay14 {
  transition-delay: 1.4s;
}

.ani-delay15 {
  transition-delay: 1.5s;
}

.ani-delay16 {
  transition-delay: 1.6s;
}

.ani-delay17 {
  transition-delay: 1.7s;
}

.ani-delay18 {
  transition-delay: 1.8s;
}

.ani-delay19 {
  transition-delay: 1.9s;
}

.ani-delay20 {
  transition-delay: 2s;
}/*# sourceMappingURL=style.css.map */