@charset "utf-8";

:root {
  --primary-brown: #43311f;
  --primary-darkGreen: #365c3b;
  --primary-ivory: #fff8f1;
  --primary-white: #fff;
  --primary-green: #00b900;
  --primary-violet: #9f1547;
  --primary-purple: #962fbf;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ",
    sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;
  line-height: normal;
  color: var(--primary-brown, #43311f);
  background-color: var(--primary-white, #fff);
}

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

/* ======================================
common
====================================== */
.main {
  overflow: hidden;
}
.inner {
  max-width: 1220px;
  margin: 0 auto;
  padding-inline: 5.3%;
}

.section__topic {
  width: 180px;
}
@media screen and (min-width: 769px) {
  .section__topic {
    width: 300px;
  }
  .inner {
    padding-inline: 30px;
  }
}
/*===========
inview
===========*/
/*  */

.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 2.5s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 2.5s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 2.5s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
