@charset "UTF-8";
.header {
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  box-shadow: 0px 0px 2px #a59e9e;
}
.header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header__logo h1 {
  margin: 0;
}
.header__logo img {
  max-width: none;
  transition: all 0.5s;
}
.header__logo img:hover {
  opacity: 0.8;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin: 0 70px;
}
.header__nav--sp {
  display: none;
}
.header__demo a {
  display: flex;
  align-items: center;
}
.header__demo a:hover {
  opacity: 0.8;
  transition: all 0.5s;
}
.header__demo span {
  font-weight: bold;
  margin-left: 7px;
}
.header__inquiry {
  margin-left: 30px;
}
.header__inquiry:hover {
  opacity: 0.8;
  transition: all 0.5s;
}
.header__menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.header .header__menu_demo {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--color-yellow);
  color: var(--color-black);
  width: 245px;
  height: 45px;
}
.header .header__menu_demo img {
  margin-right: 10px;
}
.header .header__menu_inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--color-blue);
  color: var(--color-white);
  width: 200px;
  height: 45px;
  margin-left: 18px;
}
.header .header__menu_inquiry img {
  margin-right: 10px;
}

@media screen and (max-width: 990px) {
  .header__nav {
    margin: 0 20px;
  }
  .header__logo {
    margin: auto auto auto 6%;
  }
}
@media screen and (max-width: 890px) {
  .header__logo {
    margin: auto auto auto 5%;
  }
}
@media screen and (max-width: 790px) {
  .header__logo {
    margin: auto auto auto 4%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding-top: 0;
    padding-bottom: 0;
  }
  .header__logo {
    margin: auto auto auto 6%;
  }
  .header__menu {
    height: 100%;
    font-size: 20px;
    text-align: center;
  }
  .header__menu a {
    height: 100%;
  }
  .header__nav {
    height: 90px;
    margin: 0;
  }
  .header .header__menu_demo {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    border-radius: 0;
  }
  .header .header__menu_demo img {
    display: none;
  }
  .header .header__menu_inquiry {
    width: 100%;
    height: 100%;
    padding: 0 30px;
    border-radius: 0;
    margin-left: 0;
  }
  .header .header__menu_inquiry img {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .header__logo {
    margin: auto auto auto 4%;
  }
}
@media screen and (max-width: 595px) {
  .header__logo {
    margin: auto auto auto 6%;
  }
  .header__logo img {
    width: 90%;
  }
  .header__nav {
    height: 80px;
  }
  .header__menu {
    font-size: 18px;
  }
  .header .header__menu_demo {
    padding: 0 25px;
  }
  .header .header__menu_inquiry {
    padding: 0 15px;
  }
}
@media screen and (max-width: 530px) {
  .header__logo {
    margin: auto auto auto 4%;
  }
}
@media screen and (max-width: 510px) {
  .header__logo img {
    width: 80%;
  }
  .header__menu {
    font-size: 16px;
  }
  .header .header__menu_demo {
    padding: 0 20px;
  }
  .header .header__menu_inquiry {
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  .header__logo img {
    width: 150px;
  }
  .header__nav {
    height: 60px;
    margin: 0;
  }
  .header__menu {
    font-size: 14px;
  }
  .header .header__menu_demo {
    padding: 0 20px;
  }
  .header .header__menu_inquiry {
    padding: 0 10px;
  }
}
@media screen and (max-width: 390px) {
  .header__logo img {
    width: 120px;
  }
  .header__menu {
    font-size: 12px;
  }
  .header .header__menu_demo {
    padding: 0 15px;
  }
  .header .header__menu_inquiry {
    padding: 0 10px;
  }
}
@media screen and (max-width: 310px) {
  .header .header__menu_demo {
    padding: 0;
  }
  .header .header__menu_inquiry {
    padding: 0;
  }
}
.top-page__container {
  margin: 0 auto 30px auto;
  padding-top: 120px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.top-page:after {
  background: url(../img/top-page/top-page_right.png) no-repeat bottom right;
  content: "";
  display: block;
  width: 700px;
  height: 570px;
  position: absolute;
  top: 80px;
  right: 0;
  z-index: -1;
}
.top-page:before {
  background: url(../img/top-page/top-page_left.png) no-repeat bottom left;
  content: "";
  display: block;
  width: 118px;
  height: 570px;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: -1;
}
.top-page__button {
  background-color: var(--color-yellow);
  margin: 20px 0 40px;
  font-size: 20px;
}
.top-page__button span::after {
  background: url(../img/arrow_right.png) no-repeat;
}
.top-page__content {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  margin: 0 30px 0 0;
}
.top-page__content h2 {
  color: var(--color-blue);
  font-weight: 100;
  font-size: 22px;
  margin-bottom: 10px;
}
.top-page__content h1 {
  color: var(--color-black);
  font-weight: 100;
}
.top-page__content h1 span {
  color: var(--color-red);
}
.top-page__content h1 span:last-child {
  font-family: "Roboto-Bold", sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 54px;
}
.top-page__content p {
  font-size: 16px;
  line-height: 1.7;
}
.top-page__content p span {
  color: var(--color-blue);
}
.top-page__right {
  margin: 0 100px 0 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.top-page__right img {
  height: 468px;
}

@media screen and (max-width: 1200px) {
  .top-page__container {
    margin: 0 auto 30px auto;
    padding-top: 110px;
  }
  .top-page__content {
    width: 55%;
  }
  .top-page__content h1 {
    font-size: 32px;
  }
  .top-page__content p {
    font-size: 14px;
  }
  .top-page__right {
    margin: 0 70px 0 0;
  }
  .top-page__right img {
    height: 435px;
  }
  .top-page:after {
    height: 520px;
  }
}
@media screen and (max-width: 1080px) {
  .top-page__content {
    width: 52%;
  }
  .top-page__content h1 {
    font-size: 30px;
  }
  .top-page__content p {
    font-size: 13px;
  }
  .top-page__right img {
    height: 420px;
  }
}
@media screen and (max-width: 960px) {
  .top-page__content h1 {
    font-size: 28px;
  }
  .top-page__content h1 span:last-child {
    font-size: 40px;
  }
  .top-page__content h2 {
    font-size: 20px;
  }
  .top-page__content p {
    font-size: 12px;
  }
  .top-page__right img {
    height: 410px;
  }
  .top-page:after {
    top: 40px;
  }
}
@media screen and (max-width: 860px) {
  .top-page__content {
    width: 50%;
  }
  .top-page__right img {
    height: 390px;
  }
}
@media screen and (max-width: 810px) {
  .top-page__content {
    width: 48%;
  }
  .top-page__content h1 {
    font-size: 26px;
  }
  .top-page__content h1 span:last-child {
    font-size: 38px;
  }
  .top-page__content h2 {
    font-size: 18px;
  }
  .top-page__content p {
    font-size: 12px;
  }
  .top-page__right img {
    height: 390px;
  }
}
@media screen and (max-width: 768px) {
  .top-page:before {
    display: none;
  }
  .top-page:after {
    background-position: center;
    background-size: cover;
    width: 788px;
    height: 695px;
    top: 326px;
  }
  .top-page__container {
    margin: 120px auto 0px auto;
    padding-top: 0;
    padding-bottom: 170px;
    flex-direction: column;
  }
  .top-page__content {
    width: 100%;
    align-items: center;
    background-color: var(--color-white);
  }
  .top-page__content h2 {
    font-size: 28px;
    margin-bottom: 0;
  }
  .top-page__content h1 {
    font-size: 52px;
  }
  .top-page__content h1 span:last-child {
    font-size: 65px;
  }
  .top-page__right {
    margin: 30px 0 0 35px;
  }
  .top-page__right img {
    height: 548px;
  }
  .top-page__button {
    top: 775px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
}
@media screen and (max-width: 670px) {
  .top-page__container {
    margin: 120px auto 10px auto;
  }
  .top-page__content h1 {
    font-size: 48px;
  }
  .top-page__right {
    margin: 17px 0 0 0;
  }
  .top-page__right img {
    height: 490px;
  }
  .top-page__button {
    top: 700px;
  }
}
@media screen and (max-width: 670px) {
  .top-page__content h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 600px) {
  .top-page:after {
    top: 236px;
  }
  .top-page__content h2 {
    font-size: 22px;
    margin-bottom: 0;
  }
  .top-page__content h1 {
    font-size: 38px;
  }
  .top-page__right img {
    height: 470px;
  }
  .top-page__button {
    top: 650px;
  }
}
@media screen and (max-width: 530px) {
  .top-page__content h2 {
    font-size: 22px;
  }
  .top-page__content h1 {
    font-size: 36px;
  }
  .top-page__content h1 span:last-child {
    font-size: 50px;
  }
  .top-page__right img {
    height: 470px;
  }
  .top-page__button {
    top: 650px;
  }
}
@media screen and (max-width: 480px) {
  .top-page:after {
    top: 210px;
    width: 470px;
    height: 390px;
  }
  .top-page__container {
    margin: 50px 0 10px 0;
    padding-bottom: 100px;
  }
  .top-page__content {
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .top-page__content h2 {
    font-size: 17px;
    margin-bottom: 0;
  }
  .top-page__content h1 {
    font-size: 32px;
  }
  .top-page__content h1 span:last-child {
    font-size: 42px;
  }
  .top-page__right {
    margin-top: 5px;
  }
  .top-page__right img {
    height: 315px;
  }
  .top-page__button {
    top: 475px;
  }
}
@media screen and (max-width: 420px) {
  .top-page:after {
    top: 170px;
  }
  .top-page__content h2 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .top-page__content h1 {
    font-size: 29px;
  }
  .top-page__content h1 span:last-child {
    font-size: 36px;
  }
  .top-page__container {
    padding-bottom: 110px;
  }
  .top-page__button {
    top: 460px;
  }
}
@media screen and (max-width: 380px) {
  .top-page__content h1 {
    font-size: 28px;
  }
  .top-page__content h1 span:last-child {
    font-size: 35px;
  }
}
@media screen and (max-width: 360px) {
  .top-page__content h1 {
    font-size: 27px;
  }
  .top-page__content h1 span:last-child {
    font-size: 34px;
  }
  .top-page__container {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 350px) {
  .top-page__content h2 {
    font-size: 15px;
  }
  .top-page__content h1 {
    font-size: 25px;
  }
  .top-page__content h1 span:last-child {
    font-size: 32px;
  }
}
@media screen and (max-width: 330px) {
  .top-page__content h2 {
    font-size: 14px;
  }
  .top-page__content h1 {
    font-size: 23px;
  }
  .top-page__content h1 span:last-child {
    font-size: 30px;
  }
  .top-page__container {
    padding-bottom: 130px;
  }
}
.feature {
  overflow: hidden;
  background: url(../img/feature/bg_feature.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
.feature__container {
  margin: 0 auto;
  padding: 0;
}
.feature__list {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.feature__item {
  width: calc(33% - 36px);
  padding: 40px 20px 20px 30px;
  color: var(--color-black);
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: left;
  border-radius: 5px;
  box-shadow: 0px 3px 7px #a59e9e;
}
.feature__item h2 {
  margin: 20px auto 10px auto;
  text-align: center;
  color: var(--color-blue);
  font-size: 28px;
}
.feature__item p {
  padding: 0 3px 0 0;
  z-index: 1;
  line-height: 1.7;
}
.feature__item p span {
  position: relative;
  display: inline-block;
}
.feature__item p span:before {
  content: "";
  height: 50%;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: var(--color-yellow-light);
  z-index: -1;
}
.feature__title {
  margin: 75px auto 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.feature__title h1 {
  font-weight: 100;
}
.feature__title h1:first-child {
  margin-right: 18px;
}
.feature__title h1:first-child span:first-child {
  color: var(--color-yellow);
}
.feature__title h1:nth-child(2) {
  color: var(--color-blue);
}
.feature__title h1:nth-child(2) span:first-child {
  font-size: 60px;
  font-weight: 600;
}
.feature__title h1:nth-child(2) span:nth-child(2) {
  color: var(--color-black);
}

@media screen and (max-width: 990px) {
  .feature__item {
    padding-left: 15px;
    padding-right: 10px;
  }
  .feature__item h2 {
    font-size: 24px;
  }
  .feature__item p {
    padding: 0;
  }
}
@media screen and (max-width: 876px) {
  .feature__item h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .feature {
    background: url(../img/feature/bg_feature_sp.png) no-repeat;
  }
  .feature__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .feature__item {
    width: 90%;
    margin-bottom: 60px;
    padding: 30px 10px;
  }
  .feature__item img {
    width: 160px;
    height: auto;
    margin-bottom: 30px;
  }
  .feature__item h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }
  .feature__item p {
    font-size: 26px;
  }
  .feature__title {
    margin: 40px auto;
    flex-direction: column;
  }
  .feature__title h1:first-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .feature__container {
    margin: 30px auto;
  }
  .feature__title {
    margin: 0 auto;
  }
  .feature__title h1 {
    font-size: 26px;
    line-height: 1.2;
  }
  .feature__title h1:nth-child(2) {
    margin-bottom: 20px;
  }
  .feature__title h1:nth-child(2) span:first-child {
    font-size: 34px;
  }
  .feature__item img {
    width: 90px;
    margin-bottom: 0;
  }
  .feature__item h2 {
    font-size: 20px;
  }
  .feature__item p {
    font-size: 14px;
  }
}
.reason {
  position: relative;
  overflow: hidden;
}
.reason p {
  font-family: "HiraginoW3";
  line-height: 1.7;
  font-size: 16px;
}
.reason__container {
  margin: 0 auto;
  padding: 0;
}
.reason__container h1, .reason__container p {
  text-align: center;
}
.reason__text-bg {
  width: 1800px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.reason__text-bg p {
  font-family: "PTSansNarrow";
  font-size: 136px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 5%;
}
.reason__title-1 {
  margin-top: 85px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
}
.reason__title-1 h1:first-child {
  color: var(--color-blue);
}
.reason__title-1 h1:nth-child(2) {
  color: var(--color-red);
  font-size: 28px;
}
.reason__title-1 h1:last-child span {
  color: var(--color-yellow);
}
.reason__title-2 {
  margin-bottom: 90px;
}
.reason__title-2 span {
  color: var(--color-red);
}
.reason__title-2 span:first-child {
  font-size: 60px;
}
.reason__title-2 h1 {
  margin-bottom: 20px;
}
.reason__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.reason__item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 140px;
  justify-content: flex-start;
}
.reason__item .item-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  margin: 80px 30px 0 30px;
}
.reason__item .item-content h2, .reason__item .item-content p {
  text-align: left;
}
.reason__item .item-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.reason__item .item-bg {
  width: 60%;
  height: 92%;
  border-radius: 5px;
  position: absolute;
  top: 50px;
  z-index: -1;
}
.reason__item .item-img {
  height: auto;
  border-radius: 5px;
}
.reason__item .item-pt {
  position: absolute;
  z-index: -1;
  top: -100px;
  width: 25%;
  height: auto;
}
.reason__item.left {
  flex-direction: row;
}
.reason__item.left .item-bg {
  background-color: #EFF9FF;
  left: 0;
}
.reason__item.left .item-pt {
  right: -49%;
}
.reason__item.right {
  flex-direction: row-reverse;
}
.reason__item.right .item-bg {
  background-color: #FFF5DB;
  right: 0;
}
.reason__item.right .item-pt {
  left: -42%;
}

@media screen and (min-width: 1400px) {
  .reason__item .item-pt {
    width: 200px;
  }
  .reason__item .item-bg {
    width: 840px;
  }
}
@media screen and (max-width: 1320px) {
  .reason__title-2 {
    margin: 0 40px 90px 40px;
  }
  .reason__item .item-img {
    width: 550px;
  }
  .reason__item .item-content h2 {
    font-size: 30px;
  }
  .reason__item .item-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1220px) {
  .reason__item {
    margin-bottom: 90px;
  }
  .reason__item .item-img {
    width: 500px;
  }
  .reason__item .item-content h2 {
    font-size: 28px;
  }
  .reason__item .item-content p {
    font-size: 14px;
  }
  .reason__item .item-pt {
    top: -90px;
  }
  .reason__text-bg {
    top: 50px;
  }
  .reason__text-bg p {
    font-size: 110px;
  }
}
@media screen and (max-width: 1120px) {
  .reason__item .item-img {
    width: 470px;
  }
  .reason__item .item-content h2 {
    font-size: 26px;
  }
  .reason__item .item-bg {
    top: 40px;
  }
  .reason__item .item-pt {
    top: -80px;
  }
}
@media screen and (max-width: 1050px) {
  .reason__item {
    margin-bottom: 80px;
  }
  .reason__item .item-img {
    width: 400px;
    height: min-content;
  }
  .reason__item .item-content {
    margin: 80px 10px 0 10px;
  }
  .reason__item .item-content h2 {
    font-size: 24px;
  }
  .reason__item .item-pt {
    top: -70px;
  }
  .reason__text-bg {
    top: 60px;
  }
  .reason__text-bg p {
    font-size: 100px;
  }
}
@media screen and (max-width: 950px) {
  .reason__item .item-img {
    width: 340px;
    height: auto;
  }
  .reason__item .item-content {
    margin: 80px 10px 0 10px;
  }
  .reason__text-bg {
    top: 73px;
  }
  .reason__text-bg p {
    font-size: 85px;
  }
}
@media screen and (max-width: 862px) {
  .reason__item .item-img {
    width: 300px;
  }
  .reason__item .item-content {
    margin: 55px 10px 0 10px;
  }
}
@media screen and (max-width: 820px) {
  .reason__item {
    margin-bottom: 80px;
  }
  .reason__item .item-img {
    width: 275px;
  }
  .reason__item .item-content h2 {
    font-size: 22px;
  }
  .reason__item .item-content p {
    font-size: 13px;
  }
  .reason__item .item-pt {
    top: -70px;
  }
}
@media screen and (max-width: 768px) {
  .reason__title-1 {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
  }
  .reason__title-2 p {
    font-size: 32px;
    line-height: 40px;
  }
  .reason__container {
    margin: 50px 0 0 0;
  }
  .reason__container p {
    font-size: 26px;
    text-align: left;
  }
  .reason__text-bg {
    top: 65px;
  }
  .reason__text-bg p {
    line-height: 1;
    font-size: 100px;
  }
  .reason__item {
    margin-bottom: 170px;
  }
  .reason__item .item-img {
    width: 500px;
  }
  .reason__item .item-bg {
    width: 95%;
    height: 95%;
    position: absolute;
  }
  .reason__item .item-content {
    margin: 40px 40px 0 40px;
    margin-top: 40px;
  }
  .reason__item .item-content h2 {
    font-size: 42px;
  }
  .reason__item .item-content p {
    font-size: 26px;
    line-height: 40px;
  }
  .reason__item .item-pt {
    top: -15px;
    width: 30%;
  }
  .reason__item.left .item-bg {
    left: 0;
  }
  .reason__item.left .item-pt {
    right: -2%;
  }
  .reason__item.right .item-bg {
    right: 0;
  }
  .reason__item.right .item-pt {
    left: -2%;
  }
  .reason__item h2 {
    font-size: 44px;
    margin-right: 250px;
    line-height: 55px;
  }
  .reason__item p {
    margin-right: 40px;
  }
}
@media screen and (max-width: 750px) {
  .reason__item .item-img {
    width: 450px;
  }
}
@media screen and (max-width: 660px) {
  .reason__item h2 {
    margin-right: 0;
  }
  .reason__item .item-content {
    margin: 30px 10px 0 30px;
  }
  .reason__item .item-img {
    width: 400px;
  }
  .reason__item .item-pt {
    top: -20px;
  }
}
@media screen and (max-width: 600px) {
  .reason__item .item-img {
    width: 350px;
  }
  .reason__item .item-pt {
    top: -30px;
  }
  .reason__title-2 {
    margin: 30px 30px 80px 30px;
  }
}
@media screen and (max-width: 550px) {
  .reason__item .item-img {
    width: 330px;
  }
  .reason__title-2 h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 480px) {
  .reason__container {
    margin-top: 30px;
  }
  .reason__container h1 {
    font-size: 30px;
  }
  .reason__text-bg {
    top: 40px;
  }
  .reason__text-bg p {
    font-size: 75px;
  }
  .reason__title-2 {
    margin: 30px 15px 60px 20px;
  }
  .reason__title-2 span:first-child {
    font-size: 36px;
  }
  .reason__title-2 p {
    font-size: 16px;
    line-height: 1.7;
  }
  .reason__item {
    margin-bottom: 90px;
  }
  .reason__item .item-content {
    margin: 20px 10px 0 20px;
  }
  .reason__item .item-content h2 {
    line-height: 1.3;
    margin-right: 30px;
    font-size: 30px;
  }
  .reason__item .item-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-right: 0;
  }
  .reason__item .item-img {
    width: 275px;
  }
  .reason__item .item-pt {
    top: -30px;
  }
}
@media screen and (max-width: 450px) {
  .reason__item .item-pt {
    top: -20px;
  }
}
@media screen and (max-width: 380px) {
  .reason__container {
    margin-top: 20px;
  }
  .reason__text-bg {
    top: 30px;
  }
  .reason__text-bg p {
    font-size: 75px;
  }
  .reason__title-2 {
    margin: 20px 20px 50px 20px;
  }
  .reason__title-2 h1 {
    font-size: 26px;
  }
  .reason__title-2 p {
    font-size: 14px;
  }
  .reason__item .item-pt {
    top: -30px;
  }
  .reason__item .item-img {
    width: 235px;
  }
}
@media screen and (max-width: 330px) {
  .reason__container h1 {
    font-size: 24px;
  }
  .reason__text-bg {
    top: 30px;
  }
  .reason__text-bg p {
    font-size: 56px;
  }
  .reason__item .item-img {
    width: 210px;
  }
  .reason__item.left .item-pt {
    width: 70px;
    right: 1px;
  }
  .reason__item.right .item-pt {
    width: 70px;
    left: 1px;
  }
}
.qa {
  overflow: hidden;
  background: url(../img/qa/qa_bg.png) repeat;
  font-size: 18px;
  position: relative;
}
.qa__container {
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.qa__big-title {
  font-family: "NotoSansJP", serif;
  font-size: 55px;
  font-weight: 600;
}
.qa__big-title span {
  font-size: 80px;
}
.qa__big-title span:first-child {
  color: var(--color-blue);
}
.qa__big-title span:last-child {
  color: var(--color-red);
}
.qa__list {
  width: 78%;
  margin: 125px auto;
  padding: 50px;
  border: 3px solid var(--color-yellow);
  position: relative;
  background-color: var(--color-white);
}
.qa__list h1 {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: -60px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}
.qa__list .h1-bg {
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  top: -3px;
  left: 0;
  right: 0;
  text-align: center;
  background-color: var(--color-white);
  width: 250px;
  height: 3px;
  z-index: 0;
}
.qa__item {
  border-bottom: 1px solid var(--color-blue);
  margin-bottom: 10px;
}
.qa__title {
  padding: 10px 5px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.qa__title span {
  width: calc(100% - 30px);
  padding-right: 15px;
}
.qa__title::after {
  content: "";
  display: block;
  background: url(../img/qa/qa_btn.png) no-repeat;
  background-size: 100% 100%;
  width: 32px;
  height: 32px;
  transition: all 0.3s;
}
.qa__title.active::after {
  transform: rotate(180deg);
}
.qa__content {
  padding: 10px 5px;
  background-color: #e2eef7;
  display: none;
}
.qa__qm {
  position: absolute;
  z-index: -1;
  top: -333px;
  right: -114px;
}

@media screen and (max-width: 1200px) {
  .qa__list {
    width: 70%;
  }
  .qa__qm {
    right: -60px;
  }
}
@media screen and (max-width: 768px) {
  .qa {
    font-size: 22px;
  }
  .qa .h1-bg {
    width: 225px;
  }
  .qa__list {
    width: 85%;
    padding: 50px 25px;
  }
}
@media screen and (max-width: 568px) {
  .qa {
    font-size: 20px;
  }
  .qa__list {
    width: 88%;
    padding: 50px 18px;
  }
  .qa__big-title {
    font-size: 46px;
  }
  .qa__big-title span {
    font-size: 74px;
  }
}
@media screen and (max-width: 480px) {
  .qa {
    font-size: 16px;
  }
  .qa__item {
    margin-bottom: 5px;
  }
  .qa__big-title {
    font-size: 42px;
  }
  .qa__big-title span {
    font-size: 68px;
  }
  .qa__list h1 {
    top: -54px;
  }
}
@media screen and (max-width: 385px) {
  .qa {
    font-size: 14px;
  }
  .qa__item {
    margin-bottom: 0;
  }
  .qa__big-title {
    font-size: 40px;
  }
  .qa__big-title span {
    font-size: 64px;
  }
  .qa__list h1 {
    top: -50px;
  }
}
@media screen and (max-width: 352px) {
  .qa {
    font-size: 13px;
  }
  .qa__list {
    width: 95%;
    padding: 30px 10px;
  }
  .qa__big-title {
    font-size: 34px;
  }
  .qa__big-title span {
    font-size: 55px;
  }
  .qa .h1-bg {
    width: 150px;
  }
}
.inquiry__container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  position: relative;
}
.inquiry__bubble {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: 20px;
}
.inquiry__button {
  background-color: var(--color-yellow);
}
.inquiry__button span::after {
  background: url(../img/arrow_right.png) no-repeat;
}
.inquiry__contact {
  background-color: var(--color-blue);
  margin-bottom: 50px;
}
.inquiry__contact span {
  color: var(--color-white) !important;
}
.inquiry__contact span::after {
  background: url(../img/arrow_white.png) no-repeat;
}
.inquiry__left {
  margin-top: 210px;
  width: 32%;
}
.inquiry__left h1 {
  color: var(--color-black);
  margin: 50px 0 80px 0;
}
.inquiry__left h1 span {
  color: var(--color-red);
}
.inquiry__right {
  margin: 90px 0;
  width: 68%;
  display: flex;
  justify-content: center;
  padding-left: 90px;
  position: relative;
  flex-direction: column;
  z-index: 1;
}
.inquiry__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inquiry__item p {
  width: 70%;
  padding: 20px 40px;
  border-radius: 50px;
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 20px;
  position: relative;
}
.inquiry__item p.light-blue, .inquiry__item p .lt-lb {
  background-color: var(--color-light-blue);
}
.inquiry__item p.green, .inquiry__item p .lt-gr {
  background-color: var(--color-green);
}
.inquiry__item p.peach, .inquiry__item p .lt-pe {
  background-color: var(--color-peach);
}
.inquiry__item p.orange, .inquiry__item p .lt-or {
  background-color: var(--color-orange);
}
.inquiry__item p.lavender, .inquiry__item p .lt-la {
  background-color: var(--color-lavender);
}
.inquiry__item p i {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}
.inquiry__item p .little-3 {
  width: 22px;
  height: 22px;
  right: 0;
}
.inquiry__item p .little-2 {
  width: 16px;
  height: 16px;
  right: 0;
}
.inquiry__item p .little-1 {
  width: 12px;
  height: 12px;
  right: 0;
}
.inquiry__item.left {
  flex-direction: row;
}
.inquiry__item.left .little-3 {
  left: -10px;
}
.inquiry__item.left .little-2 {
  left: -30px;
}
.inquiry__item.left .little-1 {
  left: -50px;
}
.inquiry__item.right {
  flex-direction: row-reverse;
}
.inquiry__item.right .little-3 {
  right: -10px;
}
.inquiry__item.right .little-2 {
  right: -30px;
}
.inquiry__item.right .little-1 {
  right: -50px;
}

@media screen and (max-width: 1280px) {
  .inquiry__container {
    margin: 0 20px;
  }
  .inquiry__left {
    width: 40%;
  }
  .inquiry__left h1 {
    font-size: 36px;
  }
  .inquiry__right {
    width: 60%;
    padding-left: 30px;
  }
  .inquiry__item p {
    width: 68%;
  }
}
@media screen and (max-width: 1080px) {
  .inquiry__container {
    margin: 0 20px;
  }
  .inquiry__left {
    width: 40%;
  }
  .inquiry__left h1 {
    font-size: 36px;
  }
  .inquiry__right {
    width: 60%;
  }
  .inquiry__item p {
    width: 64%;
  }
}
@media screen and (max-width: 976px) {
  .inquiry__item p {
    width: 62%;
    font-size: 17px;
    padding: 12px 30px;
  }
  .inquiry__item img {
    width: 26%;
  }
  .inquiry__left {
    margin-top: 140px;
  }
  .inquiry__left h1 {
    font-size: 32px;
  }
  .inquiry__right {
    width: 60%;
  }
  .inquiry__bubble {
    top: 50px;
  }
}
@media screen and (max-width: 870px) {
  .inquiry__item p {
    font-size: 14px;
  }
  .inquiry__left {
    width: 38%;
    margin-top: 120px;
  }
  .inquiry__left h1 {
    font-size: 30px;
  }
  .inquiry__right {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .inquiry__container {
    flex-direction: column;
    margin-bottom: 400px;
  }
  .inquiry__bubble {
    top: 30px;
  }
  .inquiry__left {
    margin: 0;
    width: 100%;
  }
  .inquiry__left h1 {
    font-size: 44px;
    margin: 120px auto 50px 20px;
  }
  .inquiry__item {
    margin-bottom: 10px;
  }
  .inquiry__item p {
    width: 70%;
    font-size: 18px;
  }
  .inquiry__item img {
    width: 19%;
  }
  .inquiry__right {
    margin: 0 0 20px 0;
    width: 100%;
    padding: 0 20px;
  }
  .inquiry__contact {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -200px;
  }
  .inquiry__button {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -310px;
  }
}
@media screen and (max-width: 680px) {
  .inquiry__left h1 {
    font-size: 40px;
    margin: 120px auto 50px 20px;
  }
  .inquiry__right {
    margin: 0 0 10px 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 590px) {
  .inquiry__left h1 {
    font-size: 36px;
    margin: 120px auto 30px 10px;
  }
  .inquiry__right {
    margin: 0;
    padding: 0 10px;
  }
  .inquiry__item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 540px) {
  .inquiry__item p {
    width: 68%;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .inquiry__container {
    margin-bottom: 220px;
  }
  .inquiry__bubble {
    left: 0;
    width: 65%;
  }
  .inquiry__item {
    margin-bottom: 15px;
  }
  .inquiry__item p {
    padding: 12px 20px;
    width: 67%;
  }
  .inquiry__item p .little-3 {
    width: 17px;
    height: 17px;
  }
  .inquiry__item p .little-2 {
    width: 12px;
    height: 12px;
  }
  .inquiry__item p .little-1 {
    width: 9px;
    height: 9px;
  }
  .inquiry__item.right .little-3 {
    right: -7px;
  }
  .inquiry__item.right .little-2 {
    right: -25px;
  }
  .inquiry__item.right .little-1 {
    right: -40px;
  }
  .inquiry__item.left .little-3 {
    left: -7px;
  }
  .inquiry__item.left .little-2 {
    left: -25px;
  }
  .inquiry__item.left .little-1 {
    left: -40px;
  }
  .inquiry__left h1 {
    margin: 90px auto 30px 0;
    font-size: 30px;
  }
  .inquiry__right {
    padding: 0;
  }
  .inquiry__right img {
    width: 20%;
  }
  .inquiry__right p {
    font-size: 14px;
  }
  .inquiry__contact {
    bottom: -140px;
  }
  .inquiry__button {
    bottom: -195px;
  }
}
@media screen and (max-width: 400px) {
  .inquiry__left h1 {
    font-size: 26px;
  }
}
@media screen and (max-width: 330px) {
  .inquiry__left h1 {
    font-size: 24px;
  }
  .inquiry__item p {
    width: 63%;
    padding: 5px 15px;
    font-size: 12px;
  }
}
.seminar {
  background: url(../img/seminar/seminar_bg.png) no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.seminar__container {
  margin: 0 auto;
  width: 96%;
}
.seminar__container h1 {
  margin-top: 120px;
  color: var(--color-blue);
}
.seminar__container h1, .seminar__container p {
  text-align: center;
  margin-bottom: 30px;
}
.seminar__container span {
  color: var(--color-red);
}
.seminar__container p {
  font-family: "HiraginoW3";
  line-height: 1.7;
  font-size: 16px;
}
.seminar__text-bg {
  top: 25px;
  width: 1800px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.seminar__text-bg p {
  font-family: "PTSansNarrow";
  font-size: 126px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 5%;
}
.seminar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-top: 1px solid var(--color-blue);
  padding-top: 30px;
}
.seminar__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
  font-size: 20px;
}
.seminar__item img {
  width: 30%;
}
.seminar__item .item-content {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  padding-left: 50px;
}
.seminar__item .item-content p {
  text-align: left;
}
.seminar__item .item-content span {
  padding-left: 20px;
}
.seminar__item .item-content__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}
.seminar__item .item-content__title p {
  margin: 0;
}
.seminar__item .item-content a {
  text-decoration: underline;
  line-height: 1.7;
  color: var(--color-blue);
}
.seminar__button {
  height: 60px !important;
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  justify-content: center !important;
  padding-left: 0 !important;
  margin: 0 auto 50px auto;
}
.seminar__button a {
  color: var(--color-blue) !important;
}
.seminar__button a::after {
  height: 18px !important;
  width: 18px !important;
  background: url(../img/arrow_blue.png) no-repeat;
  right: 27px !important;
}

@media screen and (max-width: 900px) {
  .seminar__item {
    font-size: 18px;
  }
  .seminar__item .item-content {
    padding-left: 25px;
  }
  .seminar__item .item-content p {
    padding: 0;
  }
  .seminar__container p {
    padding: 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .seminar__container {
    margin: 0 30px 170px 30px;
    width: auto;
  }
  .seminar__container h1 {
    margin-top: 61px;
  }
  .seminar__container p {
    font-size: 26px;
    line-height: 1.7;
    text-align: left;
    padding: 0;
  }
  .seminar__text-bg {
    top: 23px;
  }
  .seminar__text-bg p {
    line-height: 1;
    font-size: 100px;
  }
  .seminar__item img {
    width: 96%;
    margin-bottom: 20px;
  }
  .seminar__item .item-content {
    padding-left: 0;
    font-size: 26px;
    width: 100%;
  }
  .seminar__item .item-content a {
    font-size: 28px;
    line-height: 1.7;
  }
  .seminar__item .item-content p {
    font-size: 24px;
    margin: 20px 0;
  }
  .seminar__button {
    height: 112px !important;
    bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  .seminar__button a::after {
    height: 24px !important;
    width: 24px !important;
    right: 36px !important;
  }
}
@media screen and (max-width: 670px) {
  .seminar__button {
    height: 100px !important;
  }
}
@media screen and (max-width: 560px) {
  .seminar__button {
    height: 80px !important;
  }
}
@media screen and (max-width: 620px) {
  .seminar__container p {
    font-size: 24px;
  }
  .seminar__text-bg p {
    font-size: 100px;
  }
  .seminar__item .item-content {
    font-size: 24px;
  }
  .seminar__item .item-content a {
    font-size: 26px;
  }
  .seminar__item .item-content p {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .seminar__container {
    margin: 0 20px 120px 20px;
  }
  .seminar__container h1 {
    margin-top: 50px;
  }
  .seminar__container p {
    font-size: 18px;
  }
  .seminar__text-bg {
    top: 15px;
  }
  .seminar__text-bg p {
    font-size: 100px;
  }
  .seminar__item .item-content {
    font-size: 18px;
  }
  .seminar__item .item-content a {
    font-size: 20px;
  }
  .seminar__item .item-content p {
    font-size: 18px;
    margin: 0;
  }
  .seminar__button {
    height: 60px !important;
  }
}
@media screen and (max-width: 425px) {
  .seminar__container {
    margin: 0 15px 120px 15px;
  }
  .seminar__container p {
    font-size: 16px;
  }
  .seminar__text-bg p {
    font-size: 100px;
  }
  .seminar__item .item-content {
    font-size: 16px;
  }
  .seminar__item .item-content a {
    font-size: 18px;
  }
  .seminar__item .item-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .button {
    padding: 5% !important;
  }
}
.past-projects {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 0 0 50px 0;
}
.past-projects h1 {
  margin: 126px 0 50px 0;
}
.past-projects__text-bg {
  top: 46px;
  width: 1800px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.past-projects__text-bg p {
  font-family: "PTSansNarrow";
  font-size: 136px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 5%;
}
.past-projects__item {
  margin: 0 40px;
}
.past-projects__item img {
  width: 100%;
}
.past-projects button.slick-prev {
  background: url(../img/arw_left.png) no-repeat;
  width: 10px;
  height: 10px;
  background-size: 100% 100%;
  left: 44%;
  z-index: 1;
  bottom: -21px;
  top: inherit;
}
.past-projects button.slick-prev::before {
  display: none;
}
.past-projects button.slick-next {
  background: url(../img/arw_right.png) no-repeat;
  width: 10px;
  height: 10px;
  background-size: 100% 100%;
  right: 44%;
  z-index: 1;
  bottom: -21px;
  top: inherit;
}
.past-projects button.slick-next::before {
  display: none;
}
.past-projects .slick-dots {
  position: inherit;
}
.past-projects .slick-dots li button {
  padding: 0;
  background: #CCCCCC;
  border-radius: 20px;
  width: 12px;
  height: 12px;
}
.past-projects .slick-dots li button::before {
  display: none;
}
.past-projects .slick-dots li.slick-active button {
  background: #2E4FB5;
}

@media screen and (max-width: 1200px) {
  .past-projects button.slick-prev {
    left: 42%;
  }
  .past-projects button.slick-next {
    right: 42%;
  }
}
@media screen and (max-width: 900px) {
  .past-projects button.slick-prev {
    left: 40%;
  }
  .past-projects button.slick-next {
    right: 40%;
  }
}
@media screen and (max-width: 768px) {
  .past-projects h1 {
    margin-top: 70px;
  }
  .past-projects__text-bg {
    top: 25px;
  }
  .past-projects__text-bg p {
    font-size: 100px;
  }
  .past-projects button.slick-prev {
    left: 40%;
  }
  .past-projects button.slick-next {
    right: 40%;
  }
  .past-projects__item {
    width: 350px !important;
  }
}
@media screen and (max-width: 668px) {
  .past-projects button.slick-prev {
    left: 38%;
  }
  .past-projects button.slick-next {
    right: 38%;
  }
}
@media screen and (max-width: 568px) {
  .past-projects button.slick-prev {
    left: 36%;
  }
  .past-projects button.slick-next {
    right: 36%;
  }
}
@media screen and (max-width: 480px) {
  .past-projects h1 {
    margin-top: 70px;
  }
  .past-projects__text-bg {
    top: 35px;
  }
  .past-projects__text-bg p {
    font-size: 90px;
  }
  .past-projects button.slick-prev {
    left: 34%;
  }
  .past-projects button.slick-next {
    right: 34%;
  }
  .past-projects__item {
    width: 300px !important;
    margin: 0px 15px;
  }
}
@media screen and (max-width: 420px) {
  .past-projects h1 {
    margin-top: 40px;
  }
  .past-projects__text-bg {
    top: 5px;
  }
  .past-projects__text-bg p {
    font-size: 80px;
  }
  .past-projects button.slick-prev {
    left: 32%;
  }
  .past-projects button.slick-next {
    right: 32%;
  }
  .past-projects__item {
    width: 275px !important;
    margin: 0px 10px;
  }
}
@media screen and (max-width: 386px) {
  .past-projects button.slick-prev {
    left: 30%;
  }
  .past-projects button.slick-next {
    right: 30%;
  }
  .past-projects__item {
    width: 250px !important;
  }
}
@media screen and (max-width: 350px) {
  .past-projects button.slick-prev {
    left: 29%;
  }
  .past-projects button.slick-next {
    right: 29%;
  }
  .past-projects__item {
    width: 300px !important;
    margin: 0px 5px;
  }
}
@media screen and (max-width: 336px) {
  .past-projects button.slick-prev {
    left: 28%;
  }
  .past-projects button.slick-next {
    right: 28%;
  }
}
.business-content {
  background: url(../img/business-content/service_bg.png) no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.business-content__text-bg {
  top: 50px;
  width: 1800px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.business-content__text-bg p {
  font-family: "PTSansNarrow";
  font-size: 136px;
  font-weight: 600;
  color: var(--color-black);
  opacity: 5%;
}
.business-content__title h1 {
  color: var(--color-blue);
  margin: 120px 0 50px 0;
}
.business-content__title p {
  line-height: 28px;
  margin-bottom: 60px;
  font-size: 20px;
}
.business-content__title p span {
  color: var(--color-red);
}
.business-content__container {
  margin: 0 auto 50px auto;
  text-align: center;
}
.business-content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 0 75px;
}
.business-content__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: 25%;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 50px;
}
.business-content__item h2 {
  color: var(--color-blue);
  font-size: 26px;
  margin-bottom: 16px;
}
.business-content__item p {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .business-content {
    background: url(../img/business-content/service_bg_sp.png) no-repeat;
    background-size: inherit;
    background-position: center;
  }
  .business-content__text-bg {
    top: 10px;
  }
  .business-content__text-bg p {
    font-size: 100px;
    line-height: 1;
  }
  .business-content__title h1 {
    margin: 60px auto 30px auto;
  }
  .business-content__title p {
    text-align: left;
    margin: 0 40px 20px 40px;
    line-height: 42px;
    font-family: "HiraginoW3";
    font-size: 24px;
  }
  .business-content__title p span {
    font-family: "HiraginoW6";
    color: var(--color-red);
  }
  .business-content__list {
    margin: 0;
    align-items: flex-start;
  }
  .business-content__item {
    flex-basis: 50%;
    margin-bottom: 15px;
  }
  .business-content__item h2 {
    font-size: 28px;
    margin-bottom: 0;
  }
  .business-content__item p {
    font-family: "HiraginoW6";
    text-align: center;
    padding: 0 30px;
    font-size: 24px;
  }
}
@media screen and (min-width: 410px) and (max-width: 768px) {
  .business-content__item {
    flex-basis: 35%;
  }
  .business-content__item:nth-child(1), .business-content__item:nth-child(2), .business-content__item:nth-child(3) {
    flex-basis: 33%;
  }
}
@media screen and (max-width: 620px) {
  .business-content__title p {
    font-size: 22px;
  }
  .business-content__item h2 {
    font-size: 24px;
  }
  .business-content__item p {
    padding: 0;
    margin: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .business-content__container h1 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .business-content__container p {
    margin: 0 20px 40px 20px;
    line-height: 1.7;
  }
  .business-content__text-bg {
    top: 0px;
  }
  .business-content__text-bg p {
    font-size: 90px;
    line-height: 1;
  }
  .business-content__item h2 {
    font-size: 20px;
  }
  .business-content__item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 409px) {
  .business-content__container h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .business-content__item img {
    max-width: 110px;
  }
}
@media screen and (max-width: 409px) {
  .business-content__item {
    flex-basis: 35%;
  }
  .business-content__item p {
    margin: 0;
  }
  .business-content__item:nth-child(1), .business-content__item:nth-child(2), .business-content__item:nth-child(3) {
    flex-basis: 33%;
  }
  .business-content__title p {
    font-size: 19px;
  }
}
@media screen and (max-width: 380px) {
  .business-content__container h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .business-content__item img {
    max-width: 110px;
  }
  .business-content__title p {
    font-size: 19px;
    margin: 0 10px 20px 20px;
  }
}
.footer__container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer__buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 90px auto;
}
.footer__button {
  background-color: var(--color-yellow);
}
.footer__button span::after {
  background: url(../img/arrow_right.png) no-repeat;
}
.footer__contact {
  background-color: var(--color-blue);
  margin-right: 60px;
}
.footer__contact span {
  color: var(--color-white) !important;
}
.footer__contact span::after {
  background: url(../img/arrow_white.png) no-repeat;
}
.footer__bottom {
  font-size: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-end;
  border-top: 1px solid var(--color-gray);
  padding: 20px 0;
}
.footer__links {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.footer__links a {
  color: var(--color-black);
}
.footer__links p {
  padding: 0 10px;
}
.footer__links p::before {
  content: "|";
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__logo img {
  height: 30px;
  width: auto;
  margin-bottom: 20px;
}
.footer__copyright {
  margin: 0;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.footer__copyright .copyright-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.footer__copyright .copyright-logo img {
  height: 35px;
  margin: 0 auto 5px;
}

@media screen and (max-width: 876px) {
  .footer__bottom {
    font-size: 9px;
  }
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    font-size: 25px;
  }
  .footer__buttons {
    flex-direction: column;
    margin: 40px auto;
  }
  .footer__button, .footer__contact {
    position: relative !important;
  }
  .footer__contact {
    margin: 0 0 30px !important;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer__logo {
    margin: 0 auto 20px;
    text-align: center;
  }
  .footer__logo img {
    height: 60px;
  }
  .footer__copyright {
    height: auto;
  }
  .footer__copyright .copyright-logo img {
    height: 100px;
    margin-bottom: 20px;
  }
  .footer__copyright .text {
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .footer__bottom {
    font-size: 23px;
  }
}
@media screen and (max-width: 650px) {
  .footer__bottom {
    font-size: 22px;
  }
  .footer__logo img {
    height: 50px;
  }
  .footer__copyright {
    height: auto;
  }
  .footer__copyright .copyright-logo img {
    height: 70px;
  }
}
@media screen and (max-width: 600px) {
  .footer__bottom {
    font-size: 20px;
  }
}
@media screen and (max-width: 550px) {
  .footer__bottom {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) {
  .footer__bottom {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .footer__bottom {
    font-size: 14px;
  }
  .footer__logo {
    margin-bottom: 5px;
  }
  .footer__logo img {
    height: 40px;
    margin-bottom: 7px;
  }
  .footer__copyright {
    height: auto;
  }
  .footer__copyright .copyright-logo img {
    height: 50px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .footer__bottom {
    font-size: 12px;
  }
}
@media screen and (max-width: 330px) {
  .footer__bottom {
    font-size: 10px;
  }
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("../fonts/NotoSansJP-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "PTSansNarrow";
  src: url("../fonts/PTSansNarrow-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "HiraginoW3";
  src: url("../fonts/HiraginoKakuGothicProW3.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "HiraginoW6";
  src: url("../fonts/HiraginoKakuGothicProW6.otf") format("opentype");
  font-display: swap;
}
:root {
  --color-white: #FFF;
  --color-black: #000;
  --color-yellow: #F7BC20;
  --color-yellow-light: #FFE49C;
  --color-blue: #2E4FB5;
  --color-red: #D50215;
  --color-gray: #9B9B9B;
  --color-light-blue: #DAE2FE;
  --color-green: #E7FEDA;
  --color-peach: #FFE2E5;
  --color-orange: #FFF1CB;
  --color-lavender: #F2DAFE;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "HiraginoW6", "NotoSansJP", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
}

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

h1, h2, h3, p {
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 40px;
}

.container {
  max-width: 1200px;
}

a, a:visited {
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.button {
  border-radius: 5px;
  box-shadow: 0px 3px 7px #a59e9e;
  height: 90px;
  width: 370px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-left: 24px;
  z-index: 1;
  font-size: 18px;
}
.button span {
  color: #000;
}
.button span:hover {
  opacity: 0.6;
  transition: all 0.5s;
}
.button span::after {
  content: "";
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 22px;
  width: 22px;
  background-size: 100% 100%;
  right: 40px;
  top: 50%;
  transform: translate(0, -50%);
}

#anchorNav {
  position: fixed;
  top: calc(50% - 100px);
  right: 30px;
  z-index: 99;
}
#anchorNav ul li {
  font-size: 11px;
  font-weight: 700;
  text-align: right;
  margin-bottom: 18px;
}
#anchorNav ul li a {
  position: relative;
  display: block;
  padding-right: 18px;
  color: transparent;
}
#anchorNav ul li a span {
  opacity: 0;
  transition: all 0.3s ease-in;
}
#anchorNav ul li a::after {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 2px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  width: 6px;
  height: 6px;
  background: var(--color-gray);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#anchorNav ul li.current > a, #anchorNav ul li:hover > a {
  color: var(--color-blue);
  text-decoration: none;
}
#anchorNav ul li.current > a span, #anchorNav ul li:hover > a span {
  opacity: 1;
  letter-spacing: 0.09em;
}
#anchorNav ul li.current > a::after, #anchorNav ul li:hover > a::after {
  content: "";
  position: absolute;
  top: 0.4em;
  right: 0;
  border: 3px solid var(--color-yellow);
  width: 10px;
  height: 10px;
  background: #FFF;
}
#anchorNav ul li.current a::before {
  content: " ";
  position: absolute;
  top: 1px;
  right: -3px;
  border: 3px solid var(--color-yellow);
  width: 16px;
  height: 16px;
  border-radius: 10px;
  animation: currentEffect 1.3s linear infinite;
}

@-webkit-keyframes currentEffect {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes currentEffect {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
  }
}
.center {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 978px) {
  .button {
    height: 80px;
    width: 330px;
    font-size: 17px;
    padding-left: 22px;
  }
  .button span::after {
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 878px) {
  .button {
    height: 80px;
    width: 280px;
    font-size: 16px;
    padding-left: 22px;
  }
  .button span::after {
    height: 20px;
    width: 20px;
    right: 20px;
  }
}
@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none;
  }

  .button {
    height: 135px;
    width: 580px;
    font-size: 33px;
    position: absolute;
    padding-left: 40px;
  }
  .button span::after {
    height: 34px;
    width: 34px;
  }
}
@media screen and (max-width: 670px) {
  .button {
    height: 120px;
    width: 530px;
    font-size: 30px;
    padding-left: 35px;
  }
  .button span::after {
    height: 30px;
    width: 30px;
  }
}
@media screen and (max-width: 560px) {
  .button {
    height: 110px;
    width: 430px;
    font-size: 24px;
    padding-left: 25px;
  }
  .button span::after {
    height: 28px;
    width: 28px;
  }
}
@media screen and (max-width: 480px) {
  .button {
    height: 80px;
    width: 321px;
    font-size: 17px;
    position: absolute;
    padding-left: 25px;
  }
  .button span::after {
    right: 20px;
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 320px) {
  .button {
    height: max-content;
    width: max-content;
    padding: 5%;
    font-size: 0.8rem;
  }
  .button span::after {
    display: none;
  }
}