@charset "UTF-8";
/* 共通部分 base + components + utils をまとめる */
/* CSS Document */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; }

/* ベース */
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333; }

@media (max-width: 991px) {
  html {
    font-size: 55% !important; } }
@media (max-width: 575px) {
  html {
    font-size: 60% !important; } }
/*a関係*/
a {
  text-decoration: none;
  /* 常時下線なし */
  color: inherit;
  /* 親要素の文字色を継承 */ }

a:hover,
a:focus {
  text-decoration: none;
  /* ホバー・フォーカス時も下線なし */
  outline: none;
  /* キーボード操作時にフォーカスを可視化 */ }

a:active {
  text-decoration: none;
  /* クリック中も下線なし */ }

/* row gutter 上書き */
.row {
  --bs-gutter-x: 1.5rem; }

/* 全体ボックスサイズ統一 */
*, *::before, *::after {
  box-sizing: border-box; }

/* Page Top */
#page-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease; }

#page-top.is-visible {
  opacity: 1;
  pointer-events: auto; }

/* =========================================
	Drawer Menu (BEM + Sass)
	テンプレート用
	========================================= */
/* カラー変数 */
/* =========================================
	Drawer Menu
========================================= */
.drawer__button {
  position: relative;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; }
  .drawer__button span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2px;
    background-color: #505050;
    transform: translateX(-50%); }
    .drawer__button span:first-child {
      transform: translate(-50%, calc(-50% - 1rem));
      transition: transform 0.3s ease; }
    .drawer__button span:nth-child(2) {
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease; }
    .drawer__button span:last-child {
      transform: translate(-50%, calc(-50% + 1rem));
      transition: transform 0.3s ease; }
  .drawer__button--active span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg); }
  .drawer__button--active span:nth-child(2) {
    opacity: 0; }
  .drawer__button--active span:last-child {
    transform: translate(-50%, -50%) rotate(45deg); }
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease; }
  .drawer__nav--active {
    opacity: 1;
    visibility: visible; }
    .drawer__nav--active .drawer__nav__inner {
      transform: translateX(0); }
  .drawer__nav__inner {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #e5f5ff;
    margin-left: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    .drawer__nav__inner__menu {
      list-style: none;
      padding-top: 6rem;
      margin: 0; }
      .drawer__nav__inner__menu li {
        border-bottom: 1px solid lightgray; }
        .drawer__nav__inner__menu li a {
          display: flex;
          justify-content: space-between;
          align-items: center;
          text-decoration: none;
          color: #505050;
          font-size: 1.6rem;
          padding: 1.5rem 2rem;
          transition: 0.3s; }
          .drawer__nav__inner__menu li a:hover {
            background-color: #a0a0a0; }
          .drawer__nav__inner__menu li a i {
            font-size: 1.6rem;
            margin-left: 1rem; }
      .drawer__nav__inner__menu li:last-child {
        border-bottom: none; }

/* =========================================
	bodyスクロール禁止（メニュー開時）
========================================= */
body.drawer-open {
  height: 100%;
  overflow: hidden; }

/* =========================================
   _inview.scss
   Inview Animation (Sass版)
   JS依存なし（IntersectionObserver前提）
   ========================================= */
.js-inview {
  will-change: opacity, transform; }

.inview {
  opacity: 0; }

.inview.is-inview {
  opacity: 1; }

.inview--fade {
  transition: opacity 0.8s ease; }

.inview--up {
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--up.is-inview {
  transform: translateY(0); }

.inview--fade-up {
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--fade-up.is-inview {
  transform: translateY(0); }

.inview--zoom {
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--zoom.is-inview {
  transform: scale(1); }

.inview--left {
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--left.is-inview {
  transform: translateX(0); }

.inview--right {
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease; }

.inview--right.is-inview {
  transform: translateX(0); }

.inner {
  width: 83%;
  margin: 0 auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 90%; } }
  @media screen and (max-width: 767px) {
    .inner {
      width: 100%; } }

header {
  background-image: repeating-linear-gradient(-45deg, #CCE9D6, #CCE9D6 15px, #DEEFE0 15px, #DEEFE0 30px);
  padding: 1rem 0; }
  @media screen and (max-width: 575px) {
    header {
      padding: 1rem; } }
  header div.d-sm-flex {
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0; }
    header div.d-sm-flex div img {
      min-width: 540px; }
      @media screen and (max-width: 991px) {
        header div.d-sm-flex div img {
          min-width: 450px; } }
      @media screen and (max-width: 767px) {
        header div.d-sm-flex div img {
          min-width: 350px; } }
      @media screen and (max-width: 575px) {
        header div.d-sm-flex div img {
          min-width: auto; } }
    header div.d-sm-flex div + div img {
      min-width: 215px; }
      @media screen and (max-width: 991px) {
        header div.d-sm-flex div + div img {
          min-width: 180px; } }
      @media screen and (max-width: 767px) {
        header div.d-sm-flex div + div img {
          min-width: 150px; } }
      @media screen and (max-width: 575px) {
        header div.d-sm-flex div + div img {
          min-width: auto;
          margin-top: 1rem; } }

footer {
  background-image: repeating-linear-gradient(-45deg, #CCE9D6, #CCE9D6 15px, #DEEFE0 15px, #DEEFE0 30px); }
  footer div p {
    text-align: center;
    font-size: 13px;
    font-size: 1.3rem;
    padding: 1rem 0;
    margin-bottom: 0; }
