@charset "UTF-8";

/* CSS Document */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  color: #333;
  /* RGB */
  font-family: "Noto Sans JP", "Zen Kaku Gothic Antique", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 1;
  text-align: center;
  background-color: #ffc98f;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* フォント関連~~~ */
/* フォント各種
weightは300,400,500,600,800までのご段階
*/

h1 {
  font-size: 48px;
  font-weight: 400;
}

h2 {
  font-size: 36px;
  font-weight: 500;
}

h3 {
  font-size: 30px;
  font-weight: 500;
}

h4 {
  font-size: 24px;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-weight: 400;
}

h6 {
  font-size: 16px;
  font-weight: 400;
}

.h7 {
  font-size: 14px;
  font-weight: 500;
  color: #a15252;
}

.h8 {
  font-size: 12px;
  font-weight: 500;
  color: #a15252;
}

/* 文字の太さ>>> */
.w_1 {
  font-weight: 300;
}

.w_2 {
  font-weight: 400;
}

.w_3 {
  font-weight: 500;
}

.w_4 {
  font-weight: 600;
}

.w_5 {
  font-weight: 800;
}

.tumetume {
  letter-spacing: -0.5rem;
}

.semai {
  letter-spacing: -0.2rem;
}

/* モバイル〜〜〜 */
@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    font-weight: 400;
  }

  h2 {
    font-size: 24px;
    font-weight: 500;
  }

  h3 {
    font-size: 18px;
    font-weight: 500;
  }

  h4 {
    font-size: 18px;
    font-weight: 400;
  }

  h5 {
    font-size: 14px;
    font-weight: 400;
  }

  h6 {
    font-size: 14px;
    font-weight: 400;
  }
}

/* 〜〜〜モバイル */
/* 〜〜〜フォント関連 */

/* ぽっちを赤く */
::marker {
  color: #a12525;
}

/* ulリストにポッチをつける */
.disc {
  list-style: disc;
}

/* 頭文字が　「　の時用 */
.kakko {
  text-indent: -1rem;
}

/* 文字色をアズキにする */
.azuki {
  color: #a15252!important;
}

/* >>>高さの空白 */
.h_space {
  height: 1.8rem;
}

/* >>>ボタンの上用の空白 */
.button_space {
  margin: 20px 0 0 0;
}

/* モバイル〜〜〜 */
@media (max-width: 480px) {
  .button_space {
    margin: 20px 0 40px 0;
  }
}

/* >>>サブタイトル　「サイト概要」などの小見出し */
.sub-title {
  font-size: 18px;
  font-weight: 500;
  color: #a15252;
  position: relative;
  text-indent: 20px;
  margin: 0 0 20px 0;
}

.sub-title::before {
  height: 100%;
  width: 8px;
  background-color: #a15252;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translate(-50%, -50%);
  content: "";
  border-radius: 2px;
}

/* モバイル〜〜〜 */
@media (max-width: 480px) {
  .sub-title {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

/* マウスオーバーで指矢印表示 */
.hover-pointer {
  cursor: pointer;
}

/* pdf用簡易戻るボタン */
.pdf {
  width: 100px;
  height: 30px;
  background-color: #333;
  color: #fff;
  position: fixed;
  right: 10px;
  top: 10px;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ヘッダ〜〜〜 */
header {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  padding: 0 80px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

header .header-logo_yoko {
  max-width: 120px;
}

.header-logo_yoko img {
  width: 100%;
}

nav .header-menu-bar {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.header-menu-bar li {
  font-size: 16px;
  font-weight: 500;
}

div.ham {
  display: none;
}

/* タブレット〜〜〜 */
@media (max-width: 1024px) {
  header .header-logo_yoko {
    display: none;
  }

  nav .header-menu-bar {
    display: none;
  }

  div.ham {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }

  /* ハンバーガー>>> */
  .hamburger {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  .hamburger .bar {
    position: absolute;
    width: 20px;
    height: 3px;
    background-color: #a15252;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  .hamburger .bar:nth-child(1) {
    top: 20%;
    left: 0;
    transform: rotate(0);
  }

  .hamburger .bar:nth-child(2) {
    top: 40%;
    left: 0;
    transform: rotate(0);
  }

  .hamburger .bar:nth-child(3) {
    top: 60%;
    left: 0;
    transform: rotate(0);
  }

  .hamburger.openbtn8.active .bar:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .hamburger.openbtn8.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.openbtn8.active .bar:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* >>>ハンバーガー */
}

/* 〜〜〜タブレット */
/* 〜〜〜ヘッダ */

/*---[フェードイン関連]---*/
/* [スクロールで通常フェード] */
.v3_fade {
  opacity: 0;
  transition: all 1s;
}

.v3_fade.scrollin {
  opacity: 1;
}

/* [スクロール不要タイプ] */
.v3_fade-in {
  opacity: 0;
  transition: all 1s;
}

.v3_fade-in.go {
  opacity: 1;
}


/* [下から上] */
.v3_fade-du {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1s;
}

.v3_fade-du.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* [上から下] */
.v3_fade-ud {
  opacity: 0;
  transform: translate(0, -50px);
  transition: all 1s;
}

.v3_fade-ud.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* [左から右] */
.v3_fade-lr {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 1s;
}

.v3_fade-lr.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* [右から左] */
.v3_fade-rl {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 1s;
}

.v3_fade-rl.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*---[フェードイン関連]END*/

/* ナビメニュー〜〜〜 */
section.section-navi {
  background-color: #ffc98f;
  height: 80vh;
  width: 60%;
  position: fixed;
  right: -50%;
  z-index: 100;
  border-radius: 0 0 0 50px;
  opacity: 0;
  transition-duration: 0.5s;
}

/*ハンバーガーボタンを押すとナビ開く〜〜〜*/
section.section-navi.active {
  right: 0;
  display: block;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
  opacity: 1;
}

/*〜〜〜ハンバーガーボタン押すとナビ開く*/

nav .section-navi__menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/*ナビの外側の暗黒部分〜〜〜*/
section.section-dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

section.section-dark.active {
  opacity: 1;
  pointer-events: auto;
}

/*〜〜〜ナビの外側の暗黒部分*/

/* 〜〜〜ナビメニュー */

.pc {
  display: inline-block;
}

.pc2 {
  display: inline-block;
}

.tab {
  display: none;
}

.mob {
  display: none;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }

  .tab {
    display: block;
  }
}

@media (max-width: 480px) {
  .pc2 {
    display: none;
  }

  .mob {
    display: block;
  }
}

.under {
  border-bottom: 2px solid #a15252;
  /* 枠の太さとスタイル */
  padding: 10px 0;
  margin: 0 0 10px 0;
  /* テキストと枠の間隔 */
  display: inline-block;
  width: auto;
}

/* モバイル〜〜〜 */
@media (max-width: 480px) {
  .under {
    padding: 5px 0;
    margin: 0 0 5px 0;
  }
}

/* 〜〜〜モバイル */

.title {
  padding: 0 0 100px;
}

.title2 {
  padding: 0 0 40px;
}

/* タブレット>>> */
@media (max-width: 1024px) {
  .title {
    padding: 0 0 40px;
  }
}

/* >>>タブレット */

/* 矢印ボタン018~~~ */
.button018 a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 0px 10px 25px;
  color: #333;
  transition: 0.3s ease-in-out;
}

.button018 a:before,
.button018 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 51%;
}

.button018 a:before {
  width: 0.8rem;
  height: 0.8rem;
  left: 1.8rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}

.button018 a:after {
  left: 0;
  background: #f99532;
  z-index: 1;
  width: 5rem;
  height: 5rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.button018 a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}

.button018 a:hover span {
  color: #fff;
}

.button018 a:hover:before {
  left: 2rem;
}

.button018 a:hover:after {
  right: 0;
  width: 100%;
}

/* モバイル>>> */
@media (max-width: 480px) {
  .button018 a {
    max-width: 180px;
  }

  .button018 a:before {
    width: 0.5rem;
    height: 0.5rem;
    left: 1rem;
  }

  .button018 a:after {
    width: 3rem;
    height: 3rem;
  }
}

/* >>>モバイル */
/* 〜〜〜ボタン018 */

/* ミニ矢印>>> */
.arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding: 0 30px 0 0;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.mini::before {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f99532;
}

.mini::after {
  right: 8px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* >>>ミニ矢印 */

/* フッター〜〜〜 */
footer {
  background-color: #f2b886;
  padding: 80px;
  display: flex;
  justify-content: space-between;
}

/*---[上に戻るボタン関連]---*/
.pagetop {
  height: 40px;
  width: 40px;
  position: fixed;
  right: 20px;
  bottom: 70px;
  background: #ffc98f;
  border: solid 2px #ffc98f;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translateY(20%) rotate(-45deg);
}

/*---[上に戻るボタン関連]END*/

nav .footer-menu-bar {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.footer-menu-bar li {
  font-size: 16px;
  font-weight: 500;
}

.footer-logo {
  display: none;
}

.footer-logo img {
  width: 100%;
}

footer p {
  font-size: 12px;
}

/* タブレット>>> */
@media (max-width: 1024px) {
  footer {
    padding: 80px;
    display: block;
  }

  nav .footer-menu-bar {
    display: none;
  }

  .footer-logo {
    display: block;
    width: 130px;
    margin: 0 auto 20px;
  }
}

/* >>>タブレット */

/* 〜〜〜フッター */