@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  background-color: #FFFFFD;
  font-family: "BIZ UDGothic", sans-serif;
  color: #555555;
}

.is-fixed {
  overflow: hidden;
}

.inner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.button-square {
  display: inline-block;
  max-width: 280px;
  min-width: 150px;
  width: 100%;
  font-size: 20px;
  padding: 15px 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.3rem;
  text-align: center;
  background-color: #FC6D54;
  border: 3px solid #FC6D54;
  color: #FFFFFD;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease, color 0.5s ease, background-color 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, color 0.5s ease, background-color 0.5s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.5s ease, background-color 0.5s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.5s ease, background-color 0.5s ease, -webkit-transform 0.3s ease;
}
.button-square:hover {
  color: #FC6D54;
  background-color: #FFFFFD;
  opacity: 0.8;
}
.button-square.--whiteGreen {
  border: 3px solid #98c2a6;
  background-color: #FFFFFD;
  color: #98c2a6;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button-square.--whiteGreen:hover {
  color: #FFFFFD;
  background-color: #98c2a6;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.button-square.--yellow {
  background-color: #FFFFFD;
  color: #fbce15;
  border: 3px solid #fbce15;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 250px;
}
.button-square.--yellow:hover {
  color: #FFFFFD;
  background-color: #fbce15;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.button-square.--blue {
  background-color: #FFFFFD;
  color: #07b7c7;
  border: 3px solid #07b7c7;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 250px;
}
.button-square.--blue:hover {
  color: #FFFFFD;
  background-color: #07b7c7;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.button-square.--green {
  color: #FFFFFD;
  background-color: #98c2a6;
  border: 3px solid #98c2a6;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button-square.--green:hover {
  background-color: #FFFFFD;
  color: #98c2a6;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .button-square {
    min-width: 140px;
    font-size: 16px;
    padding: 12px 10px;
  }
}

.titleWrap {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}
.titleWrap::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-8deg);
          transform: translateY(-50%) rotate(-8deg);
  width: 96px;
  height: 60px;
  background-color: #fbce15;
  opacity: 0.2;
  border-radius: 60% 40% 55% 45%/60% 50% 40% 50%;
  z-index: 0; /* 文字の裏に */
}
@media screen and (max-width: 767px) {
  .titleWrap::after {
    width: 72px;
    height: 45px;
    right: 31px;
  }
}

.titleWrap--eng::after {
  background-color: #FC6D54;
  opacity: 0.7;
}

.section-title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  max-width: 300px;
  width: 100%;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}

.section-title--eng {
  font-family: "BIZ UDGothic", sans-serif;
  letter-spacing: 0.3rem;
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 800;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 15px 50px;
  max-width: 1480px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 8px 14px;
  }
}

.header-logo {
  max-width: 100px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease;
  transition: opacity 0.3s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.header-logo:hover {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .header-logo {
    max-width: 80px;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header-nav {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-nav__link {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  position: relative;
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.7;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.header-nav__link.--bytheme::after {
  background-color: #fbce15;
}
.header-nav__link.--bytheme:hover {
  color: #fbce15;
}
.header-nav__link.--bytarget::after {
  background-color: #07b7c7;
}
.header-nav__link.--bytarget:hover {
  color: #07b7c7;
}
.header-nav__link:hover::after {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .header-nav__link {
    font-size: 20px;
  }
}

.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 5px;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.drawer-icon {
  display: none;
  position: fixed;
  right: 30px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
    top: 25px;
    right: 15px;
  }
}

.drawer-icon__bars {
  position: relative;
  width: 35px;
  height: 28px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  background: rgb(90, 90, 90);
  border-radius: 30px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar1.is-active {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.drawer-icon__bar2 {
  top: 12px;
}

.drawer-icon__bar2.is-active {
  background: transparent;
}

.drawer-icon__bar3 {
  top: 24px;
}

.drawer-icon__bar3.is-active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 150px 0 40px;
  background: #FFFFFD;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.7s;
  transition: -webkit-transform 0.7s;
  transition: transform 0.7s;
  transition: transform 0.7s, -webkit-transform 0.7s;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(77, 77, 77, 0.35);
          box-shadow: 0px 5px 15px 0px rgba(77, 77, 77, 0.35);
  z-index: 700;
}

.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-nav {
  max-width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}

.drawer-nav__link {
  cursor: pointer;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .drawer-nav__link {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-nav__link {
    font-size: 18px;
  }
}

.top {
  position: relative;
}

.top__buttonWrap {
  position: absolute;
  top: 8%;
  right: 8%;
  z-index: 100;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .top__buttonWrap {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top__buttonWrap {
    display: none;
  }
}.button-circle {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 10px;
  width: 200px;
  height: 200px;

  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.3rem;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  border-radius: 50%;
  color: #FFFFFD;
  background-color: #FC6D54;

  -webkit-box-shadow: 3px 6px 5px 4px rgba(159, 159, 159, 0.3);
          box-shadow: 3px 6px 5px 4px rgba(159, 159, 159, 0.3);

  -webkit-transform: translateX(-46px) rotate(10deg);
          transform: translateX(-46px) rotate(10deg);

  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.button-circle:hover {
  opacity: 0.5;
  -webkit-transform: translateX(-40px) rotate(0);
          transform: translateX(-40px) rotate(0);
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .button-circle {
    width: 150px;
    height: 150px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .button-circle {
    width: 150px;
    height: 150px;
    font-size: 20px;

    -webkit-transform: translateX(0) rotate(10deg);
            transform: translateX(0) rotate(10deg);
  }

  .button-circle:hover {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.top-news {
  margin: 30px auto 0;
  text-align: left;
  max-width: 850px;
}

@media screen and (max-width: 767px) {
  .top-news {
    max-width: 385px;
  }
}

.top-news__text {
  font-weight: 700;
}

.top-news__text + .top-news__text {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .top-news__text {
    font-size: 14px;
    line-height: 1.8;
  }
}

.top-news__label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 10px;
  background: #FC6D54;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top-news__label {
    font-size: 14px;
    padding: 0px 10px;
  }
}

.top-news__date {
  margin-left: 10px;
  color: #888;
}

@media screen and (max-width: 767px) {
  .top-news__date {
    margin-left: 8px;
    font-size: 14px;
  }

  .top-news__date::after {
    content: "";
    display: block;
    margin-bottom: 6px;
  }
}

.top-news__link {
  margin-left: 10px;
  color: #FC6D54;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  transition: opacity 0.3s;
  font-weight: 700;
}

.top-news__link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .top-news__link {
    margin-left: 0;
    font-size: 14px;
  }
}

.top__mainvisual {
  padding-top: 120px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .top__mainvisual {
    padding-top: 88px;
  }
}

.mainvisual__image {
  max-width: 480px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .mainvisual__image {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .mainvisual__image {
    width: 70%;
  }
}

.top__menuWrap {
  margin: 45px auto 0;
  max-width: 980px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .top__menuWrap {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .top__menuWrap {
    margin: 12px auto 0;
  }
}

.top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
}

.top-menu__item {
  max-width: 400px;
  width: 70%;
  aspect-ratio: 320/176;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-menu__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../../public/img/binder.png) no-repeat center center/contain;
  border-radius: 10px;
  z-index: -1;
}
.top-menu__item:hover {
  opacity: 0.7;
}
.top-menu__item:hover .top-menu__link {
  -webkit-transform: scale(1.1) rotate(0deg);
          transform: scale(1.1) rotate(0deg);
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .top-menu__item {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .top-menu__item {
    width: 86%;
  }
}

.top-menu__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.top-menu__link.--second {
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
@media screen and (max-width: 767px) {
  .top-menu__link {
    font-size: 40px;
  }
}

.top-menu__link-big {
  display: block;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.3rem;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .top-menu__link-big {
    font-size: 57px;
  }
}
@media screen and (max-width: 767px) {
  .top-menu__link-big {
    font-size: 48px;
  }
}
.top-menu__link-big.--bytheme {
  color: #fbce15;
  -webkit-text-stroke: 1.5px #888686;
  text-shadow: 0.1px 0 #888686, -0.1px 0 #888686, 0 0.1px #888686, 0 -0.1px #888686;
  letter-spacing: 0.1rem;
}
.top-menu__link-big.--bytarget {
  color: #07b7c7;
  -webkit-text-stroke: 1.5px #888686;
  text-shadow: 0.1px 0 #888686, -0.1px 0 #888686, 0 0.1px #888686, 0 -0.1px #888686;
}

.top__bgCircle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.12;
  z-index: 0;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .top__bgCircle {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 767px) {
  .top__bgCircle {
    width: 110px;
    height: 110px;
    opacity: 0.1;
  }
}

/* ===== 上ゾーン ===== */
.top__bgCircle--1 {
  top: 5%;
  left: 8%;
  background-color: #98c2a6;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--1 {
    top: 5%;
    left: 5%;
  }
}

.top__bgCircle--2 {
  top: 9%;
  right: 7%;
  background-color: #fbce15;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--2 {
    top: 10%;
    right: 0;
  }
}

.top__bgCircle--3 {
  top: 14%;
  left: 35%;
  background-color: #FC6D54;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--3 {
    top: 18%;
    left: 0;
  }
}

/* ===== 中ゾーン ===== */
.top__bgCircle--4 {
  top: 35%;
  left: 10%;
  background-color: #FC6D54;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--4 {
    top: 38%;
    left: 5%;
  }
}

.top__bgCircle--5 {
  top: 40%;
  right: 12%;
  background-color: #98c2a6;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--5 {
    top: 50%;
    right: 0;
  }
}

.top__bgCircle--6 {
  top: 60%;
  left: 10%;
  background-color: #fbce15;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--6 {
    top: 60%;
    left: 0;
  }
}

.top__bgCircle--7 {
  top: 66%;
  right: 6%;
  background-color: #98c2a6;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--7 {
    top: 66%;
    right: 0;
  }
}

/* ===== 下ゾーン ===== */
.top__bgCircle--8 {
  bottom: 15%;
  left: 12%;
  background-color: #fbce15;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--8 {
    bottom: 18%;
    left: 0;
  }
}

.top__bgCircle--9 {
  bottom: 10%;
  right: 10%;
  background-color: #FC6D54;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--9 {
    bottom: 7%;
    right: 0%;
  }
}

.top__bgCircle--10 {
  bottom: 0%;
  left: 30%;
  background-color: #98c2a6;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .top__bgCircle--10 {
    bottom: 1%;
    left: 0;
  }
}

/*==========================================================
# about
===========================================================*/
.about {
  margin-top: 300px;
  padding: 10px 0 240px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .about {
    margin-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 100px;
    padding: 10px 0 80px;
  }
}

.about__content {
  padding: 0px 0 30px;
}

.about__textBox {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__textBox {
    margin-top: 30px;
  }
}

.about__textBox-attention {
  text-align: left;
  max-width: 435px;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  .about__textBox-attention {
    max-width: 345px;
    margin: 60px auto 0;
  }
}

.about__text {
  font-weight: 700;
  line-height: 2.4;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 16px;
  }
}

.about__text--big {
  margin-top: 30px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .about__text--big {
    font-size: 18px;
  }
}

.about__text-attention {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .about__text-attention {
    font-size: 13px;
  }
}

.about__text-link {
  font-weight: 700;
  border-bottom: 2px solid #FC6D54;
  padding-bottom: 2px;
  color: #FC6D54;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.about__text-link:hover {
  opacity: 0.7;
}

.about__imgWrap {
  max-width: 200px;
  width: 100%;
  margin: 30px auto 0;
  opacity: 0.8;
}

/*==========================================================
# request
===========================================================*/
.request {
  padding: 0px 0 100px;
}
@media screen and (max-width: 767px) {
  .request {
    padding: 0px 0 80px;
  }
}

.request__content {
  padding: 0px 0 30px;
}

.request__textBox {
  margin-top: 60px;
  text-align: center;
}

.request__text {
  font-weight: 700;
  line-height: 2.4;
  font-size: 20px;
}
.request__text + .request__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .request__text {
    font-size: 15px;
  }
}

.request__text--small {
  font-size: 18px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .request__text--small {
    font-size: 16px;
  }
}

.request__formArea {
  position: relative;
  margin: 40px auto 0;
  max-width: 980px;
  padding: 45px 50px 45px;
  background: #FFFBEB;
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .request__formArea {
    border-radius: 20px;
    padding: 30px 10px 30px;
  }
}

form.sent .form__items {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  border-color: #FC6D54;
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: 2px solid #FC6D54;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #FC6D54;
}

.form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 34px;
}

.form__privacy {
  margin-top: 28px;
  text-align: center;
}

.form__submit {
  margin-top: 28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form__submit .form__submit {
    margin-top: 15px;
  }
}

.request-item__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .request-item__title {
    padding-left: 10px;
  }
}

.request-item__title label {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .request-item__title label {
    font-size: 16px;
  }
}

.request-item__required {
  display: inline-block;
  margin-left: 15px;
  padding: 2px 7px;
  background: #FC6D54;
  color: #FFFFFD;
  font-weight: 700;
  border-radius: 5px;
  font-size: 13px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus,
.request-privacy__link:focus-visible,
.c-btn-request:focus-visible {
  outline: 3px solid #e8b542;
}

.request-item__input {
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .request-item__input {
    margin-top: 24px;
  }
}

.request-item__input [type=text],
.request-item__input [type=tel],
.request-item__input [type=email],
.request-item__input textarea {
  font-size: 18px;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 16px 25px;
}
@media screen and (max-width: 767px) {
  .request-item__input [type=text],
.request-item__input [type=tel],
.request-item__input [type=email],
.request-item__input textarea {
    padding: 15px 16px;
  }
}

.request-item__input [type=text]::-webkit-input-placeholder, .request-item__input [type=tel]::-webkit-input-placeholder, .request-item__input [type=email]::-webkit-input-placeholder, .request-item__input textarea::-webkit-input-placeholder {
  color: #C2C2C2;
}

.request-item__input [type=text]::-moz-placeholder, .request-item__input [type=tel]::-moz-placeholder, .request-item__input [type=email]::-moz-placeholder, .request-item__input textarea::-moz-placeholder {
  color: #C2C2C2;
}

.request-item__input [type=text]:-ms-input-placeholder, .request-item__input [type=tel]:-ms-input-placeholder, .request-item__input [type=email]:-ms-input-placeholder, .request-item__input textarea:-ms-input-placeholder {
  color: #C2C2C2;
}

.request-item__input [type=text]::-ms-input-placeholder, .request-item__input [type=tel]::-ms-input-placeholder, .request-item__input [type=email]::-ms-input-placeholder, .request-item__input textarea::-ms-input-placeholder {
  color: #C2C2C2;
}

.request-item__input [type=text]::placeholder,
.request-item__input [type=tel]::placeholder,
.request-item__input [type=email]::placeholder,
.request-item__input textarea::placeholder {
  color: #C2C2C2;
}

.request-item__input [type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.request-item__input textarea {
  height: 200px;
  resize: none;
}

@media (max-width: 767px) {
  .wpcf7-form-control,
.wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .wpcf7-form-control,
.wpcf7-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
  }
}
.wpcf7-list-item-label {
  padding: 0 0 0 34px;
  position: relative;
  cursor: pointer;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-list-item-label::before {
  background: #FFFFFD;
  width: 24px;
  height: 24px;
  left: 0;
  border-radius: 30px;
  border: 2px solid #555555;
}

.wpcf7-list-item-label::after {
  background: #FC6D54;
  width: 12px;
  height: 12px;
  left: 6px;
  border-radius: 30px;
  opacity: 0;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

input[type=checkbox]:focus + .wpcf7-list-item-label::before {
  outline: 3px solid #e8b542;
  outline-offset: 2px;
}

.request-privacy {
  margin-top: 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  padding-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .request-privacy {
    font-size: 14px;
  }
}

.request-privacy__checkBox {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
}

.request-privacy__input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 3px solid #FC6D54;
  border-radius: 4px;
  background: #FFFFFD;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.request-privacy__input:checked + .request-privacy__part {
  width: 10px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 1px;
  left: 7px;
}

.request-privacy__input:focus + .request-privacy__part::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border: 3px solid #e8b542;
}

.request-privacy__input:checked + .request-privacy__part::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-38%, -43%);
  transform: translate(-38%, -43%);
  width: 26px;
  height: 26px;
  border: 3px solid #FC6D54;
  border-radius: 100%; /* ここを追加 */
}

.request-privacy__part {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #FFFFFD;
  border: 3px solid #FC6D54;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 200;
}

.request-privacy__circle {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: #FFFFFD;
  border-radius: 50%;
  z-index: 100;
  display: none;
}

.request-privacy__input:checked + .request-privacy__part + .request-privacy__circle {
  display: block;
}

.request-privacy__link {
  position: relative;
  margin-left: 10px;
  padding-bottom: 3px;
  font-weight: 700;
  color: #FC6D54;
}

.request-privacy__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #FC6D54;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.request-privacy__link:hover::after {
  width: 100%;
}

.form__submit {
  max-width: 250px;
  width: 100%;
  margin: 30px auto 30px;
  text-align: center;
}

.c-btn-request {
  display: inline-block;
  width: 100%;
  padding: 18px;
  font-size: 20px;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: #FFFFFD;
  text-align: center;
  cursor: pointer;
  background: #FC6D54;
  border: 2px solid #FC6D54;
  border-radius: 40px;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
@media screen and (max-width: 767px) {
  .c-btn-request {
    font-size: 16px;
  }
}

.c-btn-request:hover {
  background-color: #FFFFFD;
  color: #FC6D54;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
}

/*==========================================================
# page-bytheme/bytarget
===========================================================*/
.bytheme,
.bytarget {
  padding: 100px 0 150px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .bytheme,
.bytarget {
    padding: 80px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .bytheme,
.bytarget {
    padding: 50px 0 50px;
  }
}

.bytheme__titleWrap,
.bytarget__titleWrap,
.privacy__titleWrap {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.bytheme__title,
.bytarget__title,
.privacy__title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  max-width: 400px;
  width: 100%;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.bytheme__title.--eng,
.bytarget__title.--eng,
.privacy__title.--eng {
  font-family: "BIZ UDGothic", sans-serif;
  letter-spacing: 0.3rem;
}
.bytheme__title::after,
.bytarget__title::after,
.privacy__title::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  right: 6px;
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}

.bytheme__title::after {
  background-color: #fbce15;
}

.bytarget__title::after {
  background-color: #07b7c7;
}

.bytarget__title-caption,
.bytheme__title-caption {
  margin-top: 10px;
  font-weight: 700;
}
.bytarget__title-caption + .bytarget__title-caption,
.bytarget__title-caption + .bytheme__title-caption,
.bytheme__title-caption + .bytarget__title-caption,
.bytheme__title-caption + .bytheme__title-caption {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .bytarget__title-caption,
.bytheme__title-caption {
    font-size: 14px;
  }
}

.bytheme__content,
.bytarget__content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .bytheme__content,
.bytarget__content {
    margin-top: 30px;
  }
}

/* 全体 */
.postList {
  margin: 120px auto 0;
  width: 100%;
  max-width: 1100px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .postList {
    margin-top: 90px;
  }
}
@media screen and (max-width: 767px) {
  .postList {
    margin-top: 60px;
  }
}

/* 注意文 */
.postList__note {
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

/* タブ部分 */
.postList__tabWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .postList__tabWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .postList__tabWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.postList__tabWrap--theme .postList__tab {
  border-bottom: 3px solid #fbce15;
}

.postList__tabWrap--target .postList__tab {
  border-bottom: 3px solid #07b7c7;
}

.postList__tab {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 70px;
  font-size: 20px;
  font-weight: 700;
  color: #555555;
  background-color: #e5e2e2;
  border-right: 3px solid #c9c7c7;
  border-radius: 15px 15px 0 0;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.postList__tab:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .postList__tab {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
    height: 60px;
    font-size: 18px;
    border-radius: 0;
  }
  .postList__tab:nth-child(1), .postList__tab:nth-child(2) {
    border-radius: 15px 15px 0 0;
  }
}

.postList__tab--small {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .postList__tab--small {
    margin-top: 3px;
    font-size: 14px;
  }
}

/* ラジオボタンを隠す */
input[name=postList__tab] {
  display: none;
}

/* 選択中のタブ */
#all:checked ~ .postList__tabWrap #btn-all,
#vehicles:checked ~ .postList__tabWrap #btn-vehicles,
#animals:checked ~ .postList__tabWrap #btn-animals,
#food:checked ~ .postList__tabWrap #btn-food,
#princess:checked ~ .postList__tabWrap #btn-princess,
#adventure:checked ~ .postList__tabWrap #btn-adventure,
#seasons:checked ~ .postList__tabWrap #btn-seasons,
#others:checked ~ .postList__tabWrap #btn-others,
#message:checked ~ .postList__tabWrap #btn-message,
#instruct:checked ~ .postList__tabWrap #btn-instruct,
#rule:checked ~ .postList__tabWrap #btn-rule,
#sst:checked ~ .postList__tabWrap #btn-sst,
#fine-motor:checked ~ .postList__tabWrap #btn-fine-motor,
#gross-motor:checked ~ .postList__tabWrap #btn-gross-motor,
#attention:checked ~ .postList__tabWrap #btn-attention {
  color: #FFFFFD;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#all:checked ~ .postList__tabWrap--theme #btn-all,
#vehicles:checked ~ .postList__tabWrap--theme #btn-vehicles,
#animals:checked ~ .postList__tabWrap--theme #btn-animals,
#food:checked ~ .postList__tabWrap--theme #btn-food,
#princess:checked ~ .postList__tabWrap--theme #btn-princess,
#adventure:checked ~ .postList__tabWrap--theme #btn-adventure,
#seasons:checked ~ .postList__tabWrap--theme #btn-seasons,
#others:checked ~ .postList__tabWrap--theme #btn-others {
  background-color: #fbce15;
}

#all:checked ~ .postList__tabWrap--target #btn-all,
#message:checked ~ .postList__tabWrap--target #btn-message,
#instruct:checked ~ .postList__tabWrap--target #btn-instruct,
#rule:checked ~ .postList__tabWrap--target #btn-rule,
#sst:checked ~ .postList__tabWrap--target #btn-sst,
#fine-motor:checked ~ .postList__tabWrap--target #btn-fine-motor,
#gross-motor:checked ~ .postList__tabWrap--target #btn-gross-motor,
#attention:checked ~ .postList__tabWrap--target #btn-attention {
  background-color: #07b7c7;
}

/* コンテンツエリア */
.postList__contentWrap {
  background-color: #FFFFFD;
  border-radius: 0 0 15px 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 60px 40px;
}
@media screen and (max-width: 767px) {
  .postList__contentWrap {
    padding: 40px 10px;
  }
}

/* タブ切り替え中身の初期状態（非表示） */
.postList__content {
  display: none;
}

/* 選択中のみ表示*/
#all:checked ~ .postList__contentWrap #all_content,
#vehicles:checked ~ .postList__contentWrap #vehicles_content,
#animals:checked ~ .postList__contentWrap #animals_content,
#food:checked ~ .postList__contentWrap #food_content,
#princess:checked ~ .postList__contentWrap #princess_content,
#adventure:checked ~ .postList__contentWrap #adventure_content,
#seasons:checked ~ .postList__contentWrap #seasons_content,
#others:checked ~ .postList__contentWrap #others_content,
#rule:checked ~ .postList__contentWrap #rule_content,
#instruct:checked ~ .postList__contentWrap #instruct_content,
#message:checked ~ .postList__contentWrap #message_content,
#sst:checked ~ .postList__contentWrap #sst_content,
#fine-motor:checked ~ .postList__contentWrap #fine-motor_content,
#gross-motor:checked ~ .postList__contentWrap #gross-motor_content,
#attention:checked ~ .postList__contentWrap #attention_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  #all:checked ~ .postList__contentWrap #all_content,
#vehicles:checked ~ .postList__contentWrap #vehicles_content,
#animals:checked ~ .postList__contentWrap #animals_content,
#food:checked ~ .postList__contentWrap #food_content,
#princess:checked ~ .postList__contentWrap #princess_content,
#adventure:checked ~ .postList__contentWrap #adventure_content,
#seasons:checked ~ .postList__contentWrap #seasons_content,
#others:checked ~ .postList__contentWrap #others_content,
#rule:checked ~ .postList__contentWrap #rule_content,
#instruct:checked ~ .postList__contentWrap #instruct_content,
#message:checked ~ .postList__contentWrap #message_content,
#sst:checked ~ .postList__contentWrap #sst_content,
#fine-motor:checked ~ .postList__contentWrap #fine-motor_content,
#gross-motor:checked ~ .postList__contentWrap #gross-motor_content,
#attention:checked ~ .postList__contentWrap #attention_content {
    gap: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  #all:checked ~ .postList__contentWrap #all_content,
#vehicles:checked ~ .postList__contentWrap #vehicles_content,
#animals:checked ~ .postList__contentWrap #animals_content,
#food:checked ~ .postList__contentWrap #food_content,
#princess:checked ~ .postList__contentWrap #princess_content,
#adventure:checked ~ .postList__contentWrap #adventure_content,
#seasons:checked ~ .postList__contentWrap #seasons_content,
#others:checked ~ .postList__contentWrap #others_content,
#rule:checked ~ .postList__contentWrap #rule_content,
#instruct:checked ~ .postList__contentWrap #instruct_content,
#message:checked ~ .postList__contentWrap #message_content,
#sst:checked ~ .postList__contentWrap #sst_content,
#fine-motor:checked ~ .postList__contentWrap #fine-motor_content,
#gross-motor:checked ~ .postList__contentWrap #gross-motor_content,
#attention:checked ~ .postList__contentWrap #attention_content {
    gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.postList__link {
  width: calc((100% - 60px) / 3);
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.postList__link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .postList__link {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .postList__link {
    width: 90%;
  }
}

/* サムネイル */
.postList__thumbnail {
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 10px;
  background-color: #eee;
}
.postList__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* タイトル */
.postList__body {
  margin-top: 20px;
  text-align: left;
}
.postList__body .postList__title {
  font-size: 18px;
  font-weight: 600;
  color: #555555;
}
@media screen and (max-width: 767px) {
  .postList__body .postList__title {
    font-size: 16px;
  }
}

.page-bottom {
  margin-top: 100px;
  text-align: center;
}

/*==========================================================
#  single-material
===========================================================*/
.material {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .material {
    padding: 48px 0;
  }
}

.material__inner {
  max-width: 1880px;
  width: 100%;
  margin: 10px auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material__inner {
    max-width: 780px;
  }
}

.material-panel {
  position: fixed;
  top: 120px;
  bottom: 40px;
  left: 40px;
  width: 560px;
  background: #FFFFFD;
  border-radius: 24px;
  padding: 40px 20px 40px 30px;
  -webkit-box-shadow: 0 0 24px rgba(95, 85, 85, 0.08);
          box-shadow: 0 0 24px rgba(95, 85, 85, 0.08);
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-panel {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .material-panel {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
  }
}

.material-panel__block + .material-panel__block {
  margin-top: 94px;
}

.material-panel__title {
  font-weight: 700;
  font-size: 26px;
  padding-bottom: 8px;
  border-bottom: 7px solid #98c2a6;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-panel__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .material-panel__title {
    font-size: 20px;
  }
}

.material-panel__attention {
  margin-top: 5px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .material-panel__attention {
    font-size: 12px;
  }
}

.material-panel__preview {
  margin: 30px auto 0;
  max-width: 300px;
  width: 100%;
  background-color: gray;
  border: 1px solid black;
}

.material-panel__description {
  margin: 15px auto 0;
  max-width: 590px;
}

.material-panel__description-title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .material-panel__description-title {
    font-size: 18px;
  }
}

.material-panel__description-text {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .material-panel__description-text {
    font-size: 16px;
  }
}

.material-panel__btnWrap {
  margin-top: 10px;
  text-align: center;
}

.material-content {
  margin-left: 620px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-content {
    margin-top: 80px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .material-content {
    margin-top: 80px;
    margin-left: 0;
  }
}

.material-content__top {
  padding-top: 30px;
}

.material-content__titleWrap {
  max-width: 840px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-content__titleWrap {
    max-width: 480px;
  }
}
@media screen and (max-width: 767px) {
  .material-content__titleWrap {
    max-width: 480px;
  }
}

.material-content-title {
  font-size: 35px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-content-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .material-content-title {
    font-size: 25px;
  }
}

.material-content__tagWrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-content__tagWrap {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .material-content__tagWrap {
    margin-top: 18px;
    gap: 8px;
  }
}

.material-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  line-height: 1.4;
}

.material-tag--bytheme,
.material-tag--bytarget {
  padding: 7px 12px 6px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .material-tag--bytheme,
.material-tag--bytarget {
    font-size: 12px;
    padding: 6px 10px 5px;
  }
}

.material-tag--bytheme {
  background-color: rgba(251, 206, 21, 0.4);
}

.material-tag--bytarget {
  background-color: rgba(7, 183, 199, 0.4);
}

.material-content__usageWrap {
  margin-top: 40px;
}

.material-usage {
  margin-top: 10px;
}
.material-usage + .material-usage {
  margin-top: 100px;
}

.material-usage__titleWrap {
  text-align: center;
}

.material-usage-title {
  font-weight: 700;
  font-size: 30px;
  display: inline-block;
  position: relative;
}
.material-usage-title::after {
  content: "";
  display: inline-block;
  width: 80px;
  height: 44px;
  position: absolute;
  background: url("../../public/img/title-accent.png") no-repeat center center/contain;
  -webkit-transform: rotate(29deg);
          transform: rotate(29deg);
  right: -58px;
  top: -33px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-usage-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .material-usage-title {
    font-size: 20px;
  }
}

.material-usage__bigImage {
  max-width: 640px;
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-usage__bigImage {
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .material-usage__bigImage {
    max-width: 420px;
  }
}

.material-usage__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-usage__list {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .material-usage__list {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }
}

.material-usage__item {
  max-width: calc((100% - 20px) / 3);
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-usage__item {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .material-usage__item {
    max-width: 450px;
    margin: 0 auto;
  }
}

.material-usage__image {
  max-width: 250px;
  min-width: 180px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.material-usage__image img {
  width: 100%;
  display: block;
}

.material-usage-subTitle {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 700;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (max-width: 767px) {
  .material-usage-subTitle {
    font-size: 18px;
  }
}

.material-usage-subTitle__circle {
  font-weight: 700;
  margin-right: 10px;
  color: #98c2a6;
}

.material-usage-desc {
  margin-top: 10px;
  border-radius: 10px;
  background-color: rgba(211, 216, 216, 0.2);
  padding: 20px 10px;
  min-height: 200px;
  height: auto;
  line-height: 1.8;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .material-usage-desc {
    height: auto;
    min-height: 180px;
  }
}
@media screen and (max-width: 767px) {
  .material-usage-desc {
    height: auto;
    min-height: 180px;
    font-size: 14px;
  }
}

.material__bottom {
  margin: 70px auto;
}

.material__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .material__bottom-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.toTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.toTop img {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.toTop:hover {
  -webkit-transform: rotate(180deg) translateY(6px);
          transform: rotate(180deg) translateY(6px);
}
.toTop:hover img {
  opacity: 0.6;
}
.toTop.is-show {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 767px) {
  .toTop {
	  bottom: 88px;
	  right: 10px;
	  width: 40px;
  }
}

/*==========================================================
# privacy
===========================================================*/
.privacy {
  padding: 120px 0 60px;
  background-color: #FFFBEB;
}
@media screen and (max-width: 767px) {
  .privacy {
    padding: 60px 0 40px;
  }
}

.privacy__inner {
  max-width: 800px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.privacy__container {
  margin-top: 30px;
  padding: 40px 30px 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(77, 77, 77, 0.2);
          box-shadow: 0px 5px 15px 0px rgba(77, 77, 77, 0.2);
}

.privacy__leadText {
  margin-top: 20px;
  text-align: center;
}

.privacy__row + .privacy__row {
  margin-top: 30px;
}

.privacy__subtitle {
  font-weight: 700;
  font-size: 16px;
}

.privacy__text {
  margin-top: 20px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    font-size: 14px;
  }
}

/*==========================================================
# footer
===========================================================*/
.footer {
  padding: 8px;
  text-align: center;
  font-size: 14px;
}