@charset "UTF-8";
/* A Modern CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Noto+Serif+JP:wght@400;500&family=Vollkorn:wght@400;500&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
  height: 17rem;
}
@media screen and (max-width: 767.95px) {
  .nav-header {
    height: 28.5vw;
  }
}
.nav-header__header-bar {
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 15px 0;
}
@media screen and (max-width: 767.95px) {
  .nav-header__header-bar {
    align-items: center;
    justify-content: center;
    padding: 3vw 0;
  }
}
.nav-header__header-bar > a {
  font-size: 1.3rem;
  font-weight: 500;
  padding-left: 45px;
}
@media screen and (max-width: 767.95px) {
  .nav-header__header-bar > a {
    padding: 0;
    font-size: 2.6vw;
  }
}
.nav-header__header-bar > a:hover {
  color: #008acd;
  opacity: 1;
}
.nav-header__header-bar > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.3rem;
}
.nav-header__header-bar > ul .ico__search {
  display: block;
  width: 26px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-search.svg);
}
.nav-header__header-bar > ul .ico__mail {
  display: block;
  width: 32px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-mail.svg);
}
@media screen and (max-width: 767.95px) {
  .nav-header__header-bar > ul {
    display: none;
  }
}
.nav-header__container {
  display: flex;
  justify-content: center;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 0 0 15px;
  position: relative;
  transition: all 0.2s;
}
@media screen and (max-width: 767.95px) {
  .nav-header__container {
    padding: 0;
  }
}
.nav-header__logo {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-header__logo a {
  display: block;
  height: 100%;
}
.nav-header__logo a img {
  height: 100%;
  max-height: 9.8rem;
}
@media screen and (max-width: 767.95px) {
  .nav-header__logo a img {
    max-height: unset;
    width: 29vw;
  }
}
.nav-header__menu {
  width: 100%;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-header__menu-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 15%;
  height: 100%;
}
@media screen and (max-width: 767.95px) {
  .nav-header__menu-item {
    display: none;
  }
}
.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  color: #000;
  text-align: center;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 700;
}
.nav-header__link > span {
  font-weight: 500;
  font-family: "Vollkorn", serif;
  font-size: 1.8rem;
  line-height: 1;
}
.nav-header__link::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
.nav-header__menu-item:nth-of-type(1) .nav-header__link::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-about.png);
}
.nav-header__contact {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s, text-shadow 0.2s, background-color 0.2s, border-color 0.2s, opacity 0.2s;
  background-color: #008acd;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}
.nav-header__contact:hover {
  background-color: #0079b4;
}
.nav-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2.6vw;
  letter-spacing: 0;
  position: absolute;
  top: 50%;
  right: 5.8vw;
  transform: translateY(-50%);
  cursor: pointer;
}
.nav-header__toggle::before {
  content: "";
  display: block;
  width: 6.67vw;
  height: 6.67vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
@media screen and (max-width: 767.95px) {
  .nav-header__toggle {
    display: flex;
  }
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}
.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  min-width: 200px;
  background: #efefef;
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open=true] .nav-drawer__container {
  animation-name: menu-container-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__container {
  animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  margin: 18.6vw 10vw 16vw;
  padding: 0;
  list-style: none;
}
.nav-drawer__menu-item {
  border-bottom: 1px solid #000;
}
.nav-drawer__link {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 3.7vw;
  color: inherit;
  text-decoration: none;
  height: 12vw;
  line-height: 12vw;
}
.nav-drawer__link:before {
  content: "";
  display: block;
  width: 7.4vw;
}
.nav-drawer__link.home {
  align-items: center;
}
.nav-drawer__link.home:before {
  content: "";
  display: block;
  width: 7.4vw;
  height: 7.4vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
.nav-drawer__link-main {
  display: block;
  font-size: 4.8vw;
  font-weight: 500;
}
.nav-drawer__link-sub {
  font-weight: 500;
  font-family: "Vollkorn", serif;
  display: block;
  font-size: 4.8vw;
  font-weight: 500;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}
.nav-drawer__button-close {
  display: block;
  position: absolute;
  top: 5.8vw;
  right: 5.8vw;
  padding: 0px;
  width: 5.46vw;
  height: 5.46vw;
  border: none;
  cursor: pointer;
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: #000;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 40px;
  right: 15px;
  z-index: -1000;
  width: 49px;
  height: 45px;
  background: #f6a500;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
@media screen and (max-width: 767.95px) {
  .nav-pagetop {
    bottom: 30vw;
    right: 2vw;
    width: 8vw;
    height: 7.3vw;
    border-radius: 1.5vw;
  }
}
.nav-pagetop.active {
  opacity: 1;
  z-index: 10000;
}
.nav-pagetop:before {
  content: "";
  display: block;
  width: 22px;
  height: 11px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-up.svg);
  transition: all 0.2s;
}
@media screen and (max-width: 767.95px) {
  .nav-pagetop:before {
    display: block;
    width: 3.7vw;
    height: 1.8vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-up.svg);
  }
}
.nav-pagetop:hover {
  background: #d68900;
}

.mainvisual {
  position: relative;
  /*&::before {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 0;
      background-color: rgba($color_white, 0.3);
      content: "";
  }*/
}
.mainvisual__container {
  max-width: 100%;
  height: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.95px) {
  .mainvisual__container {
    height: 50vw;
  }
}
.mainvisual__container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 767.95px) {
  .mainvisual__container ul {
    height: 50vw;
  }
}
.mainvisual__container ul li {
  position: relative;
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767.95px) {
  .mainvisual__container ul li {
    height: 50vw;
  }
}
.mainvisual__container ul li.settledsup {
  background-position: center top 10%;
}
.mainvisual__container ul li.migrants_voice {
  background-position: center top 60%;
}
.mainvisual__container ul li a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.mainvisual__container ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
body:not(.home) .mainvisual__container {
  max-width: 100%;
  height: 400px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  body:not(.home) .mainvisual__container {
    height: 28.5vw;
  }
}
body:not(.home) .mainvisual__container ul {
  height: 400px;
}
@media screen and (max-width: 767.95px) {
  body:not(.home) .mainvisual__container ul {
    height: 28.5vw;
  }
}
body:not(.home) .mainvisual__container ul li {
  height: 400px;
}
@media screen and (max-width: 767.95px) {
  body:not(.home) .mainvisual__container ul li {
    height: 28.5vw;
  }
}
body:not(.home) .mainvisual__container ul li:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(114, 113, 113, 0.5);
}
.mainvisual__scroll {
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767.95px) {
  .mainvisual__scroll {
    font-size: 2vw;
  }
}
@media screen and (max-width: 767.95px) {
  .mainvisual__scroll {
    padding-bottom: 1.3vw;
  }
}
.mainvisual__scroll:after {
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down.svg);
}
@media screen and (max-width: 767.95px) {
  .mainvisual__scroll:after {
    display: block;
    width: 2vw;
    height: 4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-down.svg);
  }
}
.mainvisual__text {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5.1rem;
  color: #ffffff;
}
@media screen and (max-width: 767.95px) {
  .mainvisual__text {
    font-size: 6.9vw;
  }
}

.page-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-heading::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
@media screen and (max-width: 767.95px) {
  .page-heading::before {
    display: block;
    width: 7.4vw;
    height: 7.4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home.svg);
  }
}
.page-heading.home-large::before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
@media screen and (max-width: 767.95px) {
  .page-heading.home-large::before {
    display: block;
    width: 7.4vw;
    height: 7.4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home.svg);
  }
}
.page-heading.blog::before {
  content: "";
  display: block;
  width: 37px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-chat.svg);
}
.page-heading.user::before {
  content: "";
  display: block;
  width: 38px;
  height: 55px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-user.svg);
}
@media screen and (max-width: 767.95px) {
  .page-heading.user::before {
    display: block;
    width: 7.4vw;
    height: 10.7vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-user.svg);
  }
}
.page-heading.users::before {
  content: "";
  display: block;
  width: 71px;
  height: 46px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-users.svg);
}
@media screen and (max-width: 767.95px) {
  .page-heading.users::before {
    display: block;
    width: 35vw;
    height: 10.7vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-users.svg);
  }
}
.page-heading.insta {
  align-items: flex-start;
}
.page-heading.insta::before {
  display: none;
}
.page-heading.insta img {
  width: 50%;
}
.page-heading__content {
  margin: 0;
  padding: 0;
}
.page-heading__content--left {
  text-align: left;
}
.page-heading__content--center {
  text-align: center;
}
.page-heading__content--right {
  text-align: right;
}
.page-heading__text-main {
  font-weight: 500;
  font-family: "Vollkorn", serif;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1.1;
}
@media screen and (max-width: 767.95px) {
  .page-heading__text-main {
    font-size: 12vw;
  }
}
.page-heading__text-main-jp {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.1;
  padding-top: 2rem;
}
@media screen and (max-width: 767.95px) {
  .page-heading__text-main-jp {
    padding-top: 3vw;
    font-size: 6.4vw;
  }
}
.page-heading__text-sub {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: #f6a500;
  padding-top: 0;
}
@media screen and (max-width: 767.95px) {
  .page-heading__text-sub {
    font-size: 4.8vw;
    line-height: 1.3;
  }
}
.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #898989;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.footer {
  background: #efefef;
}
.footer__container {
  max-width: 1030px;
  margin: 0 auto;
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767.95px) {
  .footer__menu {
    padding: 8vw 15px 5vw;
    justify-content: space-between;
  }
}
.footer__menu-item:not(:first-child) {
  margin-left: 7.8rem;
}
@media screen and (max-width: 767.95px) {
  .footer__menu-item:not(:first-child) {
    margin-left: 0;
  }
}
.footer__menu-item-link {
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
@media screen and (max-width: 767.95px) {
  .footer__menu-item-link {
    font-size: 4vw;
    gap: 1vw;
  }
}
.footer__menu-item-link:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
@media screen and (max-width: 767.95px) {
  .footer__menu-item-link:before {
    display: block;
    width: 5vw;
    height: 5vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home.svg);
  }
}
.footer__submenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__submenu-item:not(:first-child) {
  margin-left: 4rem;
}
@media screen and (max-width: 767.95px) {
  .footer__submenu-item:not(:first-child) {
    margin-left: 10vw;
  }
}
.footer__submenu-item-link {
  color: #000;
  font-weight: 500;
  font-size: 1.4rem;
  transition: all 0.2s;
}
@media screen and (max-width: 767.95px) {
  .footer__submenu-item-link {
    font-size: 3.7vw;
  }
}
.footer__address {
  text-align: center;
  padding-top: 8rem;
}
@media screen and (max-width: 767.95px) {
  .footer__address {
    padding-top: 13vw;
  }
}
.footer__address > img {
  max-height: 9.8rem;
  margin: 0 auto;
}
.footer__address > P {
  padding: 2.8rem;
  font-weight: 500;
  text-align: center;
}
.footer__copy {
  padding: 1.6rem 0;
  background-color: #898989;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  .footer__copy {
    font-size: 2.9vw;
    letter-spacing: 0;
    margin-bottom: 15vw;
  }
}

.button-default {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  height: 65px;
  margin: 0 auto;
  border: 1px solid #5b5225;
  background-color: #fff;
  color: #5b5225;
  font-size: 1.9rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .button-default {
    width: 100%;
    height: 12.6vw;
    font-size: 4.2vw;
  }
}
.button-default::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double.svg);
}
@media screen and (max-width: 767.95px) {
  .button-default::after {
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double.svg);
  }
}
.button-default:hover {
  background-color: #5b5225;
  color: #fff;
}
.button-default:hover::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double-w.svg);
}
@media screen and (max-width: 767.95px) {
  .button-default:hover::after {
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double-w.svg);
  }
}
.button-default.large {
  width: 450px;
  height: 80px;
}
@media screen and (max-width: 767.95px) {
  .button-default.large {
    width: 100%;
    height: 12.6vw;
    font-size: 4.2vw;
  }
}
.button-default.large-y {
  width: 367px;
  height: 90px;
  border: 0;
  background-color: #e6a722;
  color: #fff;
}
@media screen and (max-width: 767.95px) {
  .button-default.large-y {
    width: 100%;
    height: 12.6vw;
    font-size: 4.2vw;
  }
}
.button-default.large-y:hover {
  opacity: 1;
  background-color: #d68900;
}
.button-default.large-y::after {
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double-w.svg);
}
@media screen and (max-width: 767.95px) {
  .button-default.large-y::after {
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double-w.svg);
  }
}
.button-default.green {
  border: 0;
  background-color: #78b252;
  color: #fff;
}
.button-default.green:hover {
  opacity: 1;
  background-color: #579131;
}
.button-default.green::after {
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double-w.svg);
}
@media screen and (max-width: 767.95px) {
  .button-default.green::after {
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double-w.svg);
  }
}
.button-default.pink {
  border: 0;
  background-color: #e2889b;
  color: #fff;
}
.button-default.pink:hover {
  opacity: 1;
  background-color: #db6b86;
}
.button-default.pink::after {
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double-w.svg);
}
@media screen and (max-width: 767.95px) {
  .button-default.pink::after {
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double-w.svg);
  }
}
.button-default.yellow {
  border: 0;
  background-color: #e59f39;
  color: #fff;
}
.button-default.yellow:hover {
  opacity: 1;
  background-color: #d68900;
}
.button-default.yellow::after {
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double-w.svg);
}
@media screen and (max-width: 767.95px) {
  .button-default.yellow::after {
    display: block;
    width: 3.2vw;
    height: 3.2vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double-w.svg);
  }
}

.button-dl {
  position: relative;
  height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  background-color: rgba(230, 167, 34, 0.6);
  transition: all 0.3s;
}
@media screen and (max-width: 767.95px) {
  .button-dl {
    height: 16vw;
  }
}
.button-dl.large-y {
  flex-direction: column;
  margin-top: 2.8rem;
  text-align: center;
  background-color: #f6a500;
  color: #ffffff;
  font-size: 1.8rem;
}
.button-dl.large-y span {
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (max-width: 767.95px) {
  .button-dl.large-y {
    margin-top: 13vw;
    font-size: 4.8vw;
  }
  .button-dl.large-y span {
    font-size: 5.3vw;
    line-height: 1;
  }
}
.button-dl:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-tri.svg);
  position: absolute;
  right: 7px;
  bottom: 7px;
}
.button-dl:hover {
  opacity: 1;
  color: #ffffff;
  background-color: #e6a722;
}
.button-dl:hover:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-tri-g.svg);
  position: absolute;
  right: 7px;
  bottom: 7px;
}

.button-banner {
  display: block;
  position: relative;
  width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 767.95px) {
  .button-banner {
    width: 100%;
  }
}
.akiya-usage .button-banner {
  width: 100%;
}
.button-banner > span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(204, 126, 0, 0.7);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 2.7rem;
  color: #ffffff;
  line-height: 4.9rem;
}
@media screen and (max-width: 767.95px) {
  .button-banner > span {
    font-size: 5vw;
    line-height: 9.3vw;
  }
}
.button-banner:hover > span {
  color: #f6a500;
  background-color: #ffffff;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  gap: 16px;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .wp-pagenavi {
    gap: 2vw;
    font-size: 4.8vw;
  }
}
.wp-pagenavi a {
  display: block;
}
.wp-pagenavi .previouspostslink {
  width: 52px;
  height: 52px;
  overflow: hidden;
  margin-right: 70px;
}
@media screen and (max-width: 767.95px) {
  .wp-pagenavi .previouspostslink {
    width: 7vw;
    height: 7vw;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.wp-pagenavi .previouspostslink:before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-prev.svg);
}
@media screen and (max-width: 767.95px) {
  .wp-pagenavi .previouspostslink:before {
    display: block;
    width: 7vw;
    height: 7vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-prev.svg);
  }
}
.wp-pagenavi .nextpostslink {
  width: 52px;
  height: 52px;
  overflow: hidden;
  margin-left: 70px;
}
@media screen and (max-width: 767.95px) {
  .wp-pagenavi .nextpostslink {
    width: 7vw;
    height: 7vw;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.wp-pagenavi .nextpostslink:before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-next.svg);
}
@media screen and (max-width: 767.95px) {
  .wp-pagenavi .nextpostslink:before {
    display: block;
    width: 7vw;
    height: 7vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-next.svg);
  }
}
.wp-pagenavi .current {
  color: #f6a500;
}
.wp-pagenavi .last {
  display: none;
}

.carousel {
  overflow-x: hidden;
}
.carousel .bx-viewport {
  left: 80px;
}
@media screen and (max-width: 767.95px) {
  .carousel .bx-viewport {
    left: 0;
    overflow: initial !important;
  }
}
.carousel .slidecell {
  width: 450px;
  height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.95px) {
  .carousel .slidecell {
    height: 70vw;
  }
}
.carousel .slidecell a {
  display: block;
  width: 100%;
  height: 100%;
}
.carousel .slidecell a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.carousel .slidecell img {
  width: 100%;
}
.carousel .bx-wrapper .bx-prev {
  left: 125px;
  background-image: url(../img/icon/ico-prev.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 767.95px) {
  .carousel .bx-wrapper .bx-prev {
    width: 7vw;
    height: 7vw;
    position: absolute;
    top: 50%;
    left: -3.5vw;
  }
}
.carousel .bx-wrapper .bx-next {
  right: 125px;
  background-image: url(../img/icon/ico-next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 767.95px) {
  .carousel .bx-wrapper .bx-next {
    width: 7vw;
    height: 7vw;
    position: absolute;
    top: 50%;
    right: -3.5vw;
  }
}

.breadcrumbs__container {
  position: relative;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0.8rem 15px;
}
.breadcrumbs__container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767.95px) {
  .breadcrumbs__container ul {
    gap: 1.5vw;
    flex-wrap: wrap;
    font-size: 2.6vw;
  }
}

.two-column {
  position: relative;
  max-width: 1030px;
  margin: 8rem auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
@media screen and (max-width: 767.95px) {
  .two-column {
    margin: 13vw auto;
  }
}
@media screen and (max-width: 767.95px) {
  .two-column {
    flex-direction: column-reverse;
    margin-top: 5vw;
  }
}
.two-column__sidemenu {
  width: 25%;
}
@media screen and (max-width: 767.95px) {
  .two-column__sidemenu {
    width: 100%;
  }
}
.two-column__content {
  width: 68%;
}
@media screen and (max-width: 767.95px) {
  .two-column__content {
    width: 100%;
  }
}

.sidemenu h3 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  background-color: #e6a722;
  color: #ffffff;
  text-align: center;
  font-size: 2.2rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 767.95px) {
  .sidemenu h3 {
    font-size: 4.8vw;
    line-height: 9.3vw;
  }
}
.sidemenu__textlink {
  margin: 0;
  padding: 0.5rem 0 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.sidemenu__textlink li {
  padding: 1rem 10px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  line-height: 1.3;
}
@media screen and (max-width: 767.95px) {
  .sidemenu__textlink li {
    height: 11vw;
  }
}
.sidemenu__textlink li a {
  color: #595757;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidemenu__textlink li a:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-double.svg);
}
@media screen and (max-width: 767.95px) {
  .sidemenu__textlink li a:after {
    display: block;
    width: 2.6vw;
    height: 2.6vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-double.svg);
  }
}
.sidemenu__imglink {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767.95px) {
  .sidemenu__imglink {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 5vw;
    margin-top: 13vw;
  }
}
.sidemenu__imglink li {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767.95px) {
  .sidemenu__imglink li {
    width: 47%;
    margin-top: 0;
  }
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * ページ
 * -------------------------------------------------------------------
 */
/*
 * HTML
 * -------------------------------------------------------------------
 */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: #000;
}
@media screen and (max-width: 767.95px) {
  body {
    font-size: 3.7vw;
  }
}

a, a:hover, a:visited, a.active {
  text-decoration: none;
  outline: none;
  color: #000;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

p {
  font-feature-settings: "palt";
  text-align: justify;
}

.sp-inline {
  display: none;
}

.pc-inline {
  display: inline;
}

@media screen and (max-width: 767.95px) {
  .sp-inline {
    display: inline;
  }
  .pc-inline {
    display: none;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.top-message__container {
  position: relative;
  max-width: 1030px;
  margin: 8rem auto;
  padding: 0 15px;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  .top-message__container {
    margin: 13vw auto;
  }
}
@media screen and (max-width: 767.95px) {
  .top-message__container {
    margin-top: 16vw;
  }
}
.top-message__container h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
}
@media screen and (max-width: 767.95px) {
  .top-message__container h2 {
    font-size: 6.4vw;
  }
}
.top-message__container p {
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767.95px) {
  .top-message__container p {
    text-align: left;
    margin-top: 8vw;
  }
}
.top-message__container ul {
  list-style: none;
  margin: 0;
  margin-top: 8rem;
  padding: 0;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767.95px) {
  .top-message__container ul {
    margin-top: 8vw;
    gap: 0;
    row-gap: 5vw;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .top-message__container ul li {
    width: 47%;
  }
}

.top-block__container {
  position: relative;
  margin: 8rem auto;
  padding: 0 15px;
}
@media screen and (max-width: 767.95px) {
  .top-block__container {
    margin: 13vw auto;
    padding: 0;
  }
}
@media screen and (max-width: 767.95px) {
  .top-block__container .button-default {
    width: calc(100% - 30px);
  }
}
.top-block__content {
  padding: 5rem 0;
}

.top-insta__container {
  position: relative;
  max-width: 1030px;
  margin: 8rem auto;
  padding: 0 15px;
}
@media screen and (max-width: 767.95px) {
  .top-insta__container {
    margin: 13vw auto;
  }
}
.top-insta__content .insta-gallery-feed {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767.95px) {
  .top-insta__content .insta-gallery-feed {
    padding-bottom: 8vw;
  }
}

.top-link {
  background-color: #f5f2e5;
  padding: 6rem;
}
@media screen and (max-width: 767.95px) {
  .top-link {
    padding: 13vw 0;
  }
}
.top-link__container {
  position: relative;
  max-width: 1030px;
  margin: 8rem auto;
  padding: 0 15px;
  margin: 0 auto !important;
}
@media screen and (max-width: 767.95px) {
  .top-link__container {
    margin: 13vw auto;
  }
}
.top-link__content ul {
  margin: 0;
  padding: 5rem 0 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.95px) {
  .top-link__content ul {
    flex-wrap: wrap;
    row-gap: 5vw;
  }
  .top-link__content ul li {
    width: 47%;
  }
}

.top-youtube__container {
  position: relative;
  max-width: 1030px;
  margin: 8rem auto;
  padding: 0 15px;
}
@media screen and (max-width: 767.95px) {
  .top-youtube__container {
    margin: 13vw auto;
  }
}
.top-youtube__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767.95px) {
  .top-youtube__content ul {
    flex-direction: column;
    row-gap: 5vw;
  }
}

.top-map iframe {
  width: 100%;
  height: 580px;
  border: 0;
  vertical-align: bottom;
}
@media screen and (max-width: 767.95px) {
  .top-map iframe {
    height: 100vw;
  }
}

.float-navi ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99999;
}
@media screen and (max-width: 767.95px) {
  .float-navi ul {
    top: unset;
    right: unset;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767.95px) {
  .float-navi ul li {
    width: 24% !important;
  }
}
.float-navi ul li a {
  color: #ffffff;
  background-color: #f6a500;
  border-radius: 10px 0 0 10px;
  width: 130px;
  height: 93px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 767.95px) {
  .float-navi ul li a {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 15vw;
    font-size: 3.4vw;
    line-height: 1;
    letter-spacing: 0;
  }
}
.float-navi ul li a:hover {
  opacity: 1;
  background-color: #d68900;
}
.float-navi ul li a:before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home-w.svg);
}
@media screen and (max-width: 767.95px) {
  .float-navi ul li a:before {
    display: block;
    width: 4vw;
    height: 4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home-w.svg);
  }
}
.float-navi ul li a.ico-chat:before {
  content: "";
  display: block;
  width: 33px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-chat-w.svg);
}
@media screen and (max-width: 767.95px) {
  .float-navi ul li a.ico-chat:before {
    display: block;
    width: 5.6vw;
    height: 4.8vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-chat-w.svg);
  }
}
.float-navi ul li a:after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-right.svg);
}
@media screen and (max-width: 767.95px) {
  .float-navi ul li a:after {
    display: none;
  }
}
.float-navi ul li:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 767.95px) {
  .float-navi ul li:not(:first-child) {
    margin-top: 0;
  }
}

.sup-message > h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: 1;
  background-image: url(../img/h2_settledsup.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 502px;
  height: 123px;
  padding-top: 3rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767.95px) {
  .sup-message > h2 {
    width: 100%;
    height: 22vw;
    font-size: 6vw;
    padding-top: 5vw;
  }
}
.sup-message > p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (max-width: 767.95px) {
  .sup-message > p {
    font-size: 4vw;
    font-weight: 500;
    margin-top: 5vw;
    text-align: left;
  }
}
.sup-message .attention {
  margin-top: 5rem;
  background-color: #e8e3df;
  padding: 6rem 50px;
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 8vw;
    padding: 8vw 15px;
  }
}
.sup-message .attention__content {
  background-color: #ffffff;
  padding: 3.8rem 38px;
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention__content {
    padding: 5vw;
  }
}
.sup-message .attention__content > h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #f6a500;
  line-height: 1;
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention__content > h3 {
    font-size: 5.3vw;
  }
}
.sup-message .attention__content > p {
  margin-top: 2rem;
  font-size: 2rem;
}
.sup-message .attention__content > p > b {
  font-weight: 900;
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention__content > p {
    margin-top: 5vw;
    font-size: 3.7vw;
  }
}
.sup-message .attention__footer {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention__footer {
    margin-top: 8vw;
  }
}
.sup-message .attention__footer > a {
  font-size: 2.2rem;
  display: block;
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention__footer > a {
    font-size: 5.3vw;
  }
}
.sup-message .attention__footer > a .scroll {
  color: #f6a500;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sup-message .attention__footer > a .scroll:after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down-y.svg);
}
@media screen and (max-width: 767.95px) {
  .sup-message .attention__footer > a .scroll:after {
    display: block;
    width: 2vw;
    height: 8.5vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-down-y.svg);
  }
}
.sup-message .attention__footer > a:hover .scroll {
  color: #5b5225;
}
.sup-message .attention__footer > a:hover .scroll:after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down-dy.svg);
}

.sup-list__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
}
@media screen and (max-width: 767.95px) {
  .sup-list__container {
    margin: 13vw auto;
  }
}
.sup-list__content {
  padding: 5rem 0 0;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content {
    padding: 8vw 0 0;
  }
}
.sup-list__content .event-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 7rem;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap {
    row-gap: 8vw;
  }
}
.sup-list__content .event-list-wrap .event-one {
  width: 46%;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap .event-one {
    width: 100%;
  }
}
.sup-list__content .event-list-wrap .event-one .image {
  height: 223px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap .event-one .image {
    width: 100%;
    height: 50vw;
  }
}
.sup-list__content .event-list-wrap .event-one .image .class-box {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2.6rem;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 2.6rem;
  color: #ffffff;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap .event-one .image .class-box {
    font-size: 2.9vw;
    line-height: 5.8vw;
    height: 5.8vw;
  }
}
.sup-list__content .event-list-wrap .event-one .image .class-box.iturn {
  background-color: #f6a500;
}
.sup-list__content .event-list-wrap .event-one .image .class-box.uturn {
  background-color: #00A291;
}
.sup-list__content .event-list-wrap .event-one .image .class-box.kankeisha {
  background-color: #2EA7E0;
}
.sup-list__content .event-list-wrap .event-one .image .class-box.iturn {
  background-color: #f6a500;
}
.sup-list__content .event-list-wrap .event-one .title {
  font-size: 2rem;
  padding-top: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap .event-one .title {
    font-size: 5vw;
    padding-top: 3vw;
  }
}
.sup-list__content .event-list-wrap .event-one .settledsup-desc {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  border-left: 1px solid #000;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap .event-one .settledsup-desc {
    margin: 3vw 0;
  }
}
.sup-list__content .event-list-wrap .event-one .settledsup-desc li {
  padding: 0 15px;
  border-right: 1px solid #000;
}
@media screen and (max-width: 767.95px) {
  .sup-list__content .event-list-wrap .event-one .settledsup-desc li {
    padding: 0 2vw;
  }
}
.sup-list__content .event-list-wrap .event-one .settledsup-desc li:last-child {
  white-space: nowrap;
}

.sup-message2 {
  margin-top: 12rem;
}
@media screen and (max-width: 767.95px) {
  .sup-message2 {
    margin-top: 16vw;
  }
}
.sup-message2 > h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 5rem;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767.95px) {
  .sup-message2 > h2 {
    font-size: 7vw;
  }
}
.sup-message2 > p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 5rem;
}
@media screen and (max-width: 767.95px) {
  .sup-message2 > p {
    font-size: 3.7vw;
    margin-top: 8vw;
    text-align: left;
  }
}
.sup-message2 .attention {
  margin-top: 5rem;
  background-color: #e8e3df;
  padding: 6rem 50px;
}
.sup-message2 .attention__content {
  background-color: #ffffff;
  padding: 3.8rem 38px;
}
.sup-message2 .attention__content > h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #f6a500;
  line-height: 1;
}
.sup-message2 .attention__content > p {
  margin-top: 2rem;
  font-size: 2rem;
}
.sup-message2 .attention__content > p > b {
  font-weight: 900;
}
.sup-message2 .attention__footer {
  margin-top: 5rem;
  text-align: center;
}
.sup-message2 .attention__footer > a {
  font-size: 2.2rem;
  display: block;
}
.sup-message2 .attention__footer > a .scroll {
  color: #f6a500;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sup-message2 .attention__footer > a .scroll:after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down-y.svg);
}
.sup-message2 .attention__footer > a:hover .scroll {
  color: #5b5225;
}
.sup-message2 .attention__footer > a:hover .scroll:after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down-dy.svg);
}

.sup-for-migrant__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__container {
    margin: 13vw auto;
  }
}
.sup-for-migrant#sup-for-migrant2 .sup-for-migrant__container {
  margin: 12rem 0;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant#sup-for-migrant2 .sup-for-migrant__container {
    margin: 16vw 0;
  }
}
.sup-for-migrant__content {
  padding: 5rem 0 0;
  /*
          .information {
              margin-top: $padding_xl;
              background-color: #e8e3df;
              padding: 6rem 50px;

              @include responsive("sp"){
                  margin-top: $padding_xl_sp;
                  padding: $padding_s_sp;
              }

              &__content {
                  background-color: $color_white;
                  padding: 4.5rem 52px;

                  >p {
                      font-size: 2rem;
                  }

                  >.info{
                      margin-top: 2rem;
                      padding-top: 2rem;
                      border-top: 1px solid $color_grey;
                  }


                  >h3{
                      border-bottom: 0;
                  }


                  & + .information__content{

                      margin-top: $padding_m;
                  }

              }

              &__footer {
                  margin-top: $padding_m;
                  text-align: center;

              }

          }
          */
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content {
    padding: 8vw 0 0;
  }
}
.sup-for-migrant__content h3 {
  color: #f6a500;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  border-bottom: 1px solid #898989;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content h3 {
    font-size: 5.3vw;
    padding-bottom: 3vw;
  }
}
.sup-for-migrant__content h3.lm {
  padding-top: 8rem;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content h3.lm {
    padding-top: 13vw;
  }
}
.sup-for-migrant__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 3rem;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul {
    margin-top: 5vw;
  }
}
.sup-for-migrant__content ul.list li {
  padding-left: 45px;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.list li {
    padding-left: 10vw;
    font-size: 3.7vw;
  }
}
.sup-for-migrant__content ul.list li:before {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-check.svg);
  position: absolute;
  top: 1.5rem;
  left: 6px;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.list li:before {
    display: block;
    width: 4vw;
    height: 4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-check.svg);
    top: 2vw;
    left: 2vw;
  }
}
.sup-for-migrant__content ul.list2 li {
  padding-left: 45px;
  font-size: 2rem;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.list2 li {
    padding-left: 10vw;
    font-size: 3.7vw;
  }
}
.sup-for-migrant__content ul.list2 li:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home-g.svg);
  position: absolute;
  top: 0.6rem;
  left: 6px;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.list2 li:before {
    display: block;
    width: 4vw;
    height: 4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home-g.svg);
    top: 1vw;
    left: 2vw;
  }
}
.sup-for-migrant__content ul.flow li {
  background-color: #efefef;
  padding: 1.5rem 40px;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.flow li {
    padding: 5vw;
  }
}
.sup-for-migrant__content ul.flow li:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.flow li:not(:first-child) {
    margin-top: 5vw;
  }
}
.sup-for-migrant__content ul.flow li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 77px;
  height: 100%;
  border-right: 1px solid #727171;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.flow li:before {
    width: 13.2vw;
  }
}
.sup-for-migrant__content ul.flow li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 77px;
  height: 2rem;
  border-right: 1px solid #727171;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.flow li:after {
    height: 5vw;
    bottom: -5vw;
    width: 13.2vw;
  }
}
.sup-for-migrant__content ul.flow li:first-child:before {
  content: "";
  display: block;
  position: absolute;
  top: unset;
  bottom: 0;
  left: 0;
  width: 77px;
  height: 80%;
  border-right: 1px solid #727171;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.flow li:first-child:before {
    width: 13.2vw;
  }
}
.sup-for-migrant__content ul.flow li:last-child:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 77px;
  height: 20%;
  border-right: 1px solid #727171;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.flow li:last-child:before {
    width: 13.2vw;
  }
}
.sup-for-migrant__content ul.flow li:last-child:after {
  display: none;
}
.sup-for-migrant__content ul.file {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.6rem 2%;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.file {
    gap: 0;
    row-gap: 5vw;
  }
}
.sup-for-migrant__content ul.file li {
  width: 49%;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul.file li {
    width: 100%;
  }
}
.sup-for-migrant__content ul h4 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #f6a500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul h4 {
    font-size: 5vw;
    gap: 3vw;
  }
}
.sup-for-migrant__content ul h4 .ico-step1 {
  display: block;
  width: 74px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-step1.svg);
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul h4 .ico-step1 {
    display: block;
    width: 16vw;
    height: 16vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-step1.svg);
  }
}
.sup-for-migrant__content ul h4 .ico-step2 {
  display: block;
  width: 74px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-step2.svg);
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul h4 .ico-step2 {
    display: block;
    width: 16vw;
    height: 16vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-step2.svg);
  }
}
.sup-for-migrant__content ul h4 .ico-step3 {
  display: block;
  width: 74px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-step3.svg);
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul h4 .ico-step3 {
    display: block;
    width: 16vw;
    height: 16vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-step3.svg);
  }
}
.sup-for-migrant__content ul h4 .ico-step4 {
  display: block;
  width: 74px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-step4.svg);
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul h4 .ico-step4 {
    display: block;
    width: 16vw;
    height: 16vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-step4.svg);
  }
}
.sup-for-migrant__content ul p {
  padding-left: 100px;
}
@media screen and (max-width: 767.95px) {
  .sup-for-migrant__content ul p {
    padding-left: 20vw;
  }
}
.sup-for-migrant__content .info {
  padding-top: 1rem;
}
.sup-for-migrant__content .info a {
  color: #008acd;
}

.sup-for-supporter__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  margin-top: 12rem;
}
@media screen and (max-width: 767.95px) {
  .sup-for-supporter__container {
    margin: 13vw auto;
  }
}
.sup-for-supporter__content {
  padding: 5rem 0;
}

.sup-information .information {
  margin: 12rem 0;
  background-color: #e8e3df;
  padding: 6rem 50px;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information {
    margin-top: 16vw;
    margin-bottom: 13vw;
    margin-left: -15px;
    margin-right: -15px;
    padding: 5vw 15px;
  }
}
.sup-information .information__content {
  background-color: #ffffff;
  padding: 4.5rem 52px;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__content {
    padding: 5vw;
  }
}
.sup-information .information__content h3 {
  color: #f6a500;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  border-bottom: 1px solid #898989;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__content h3 {
    font-size: 5.3vw;
    padding-bottom: 5vw;
  }
}
.sup-information .information__content h3.lm {
  padding-top: 8rem;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__content h3.lm {
    padding-top: 13vw;
  }
}
.sup-information .information__content > p {
  font-size: 2rem;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__content > p {
    font-size: 3.7vw;
  }
}
.sup-information .information__content > .info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #898989;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__content > .info {
    margin-top: 5vw;
    padding-top: 5vw;
  }
}
.sup-information .information__content > h3 {
  border-bottom: 0;
}
.sup-information .information__content + .information__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__content + .information__content {
    margin-top: 8vw;
  }
}
.sup-information .information__footer {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  .sup-information .information__footer {
    margin-top: 8vw;
  }
}

.sup-detail img {
  height: auto;
}
.sup-detail .event-detail h4 {
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail h4 {
    font-size: 5vw;
    line-height: 1.4;
  }
}
.sup-detail .event-detail .image {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .image {
    margin-top: 5vw;
  }
}
.sup-detail .event-detail .entry-body .suppro-box p {
  font-size: 2.5rem;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body .suppro-box p {
    font-size: 3.7vw;
  }
}
.sup-detail .event-detail .entry-body .suppro-box p.settledsup-text01 {
  margin: 4rem 0;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: #f6a500;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body .suppro-box p.settledsup-text01 {
    margin: 5vw 0;
    font-size: 5vw;
  }
}
.sup-detail .event-detail .entry-body .suppro-box p.name {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body .suppro-box p.name {
    font-size: 5vw;
  }
}
.sup-detail .event-detail .entry-body .suppro-box p.comment {
  margin: 3rem 0;
  background-color: #e8e3df;
  padding: 5rem;
  font-size: 2rem;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body .suppro-box p.comment {
    margin: 5vw 0;
    padding: 5vw;
    font-size: 3.7vw;
  }
}
.sup-detail .event-detail .entry-body > p {
  text-align: left;
  line-height: 2.1;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body > p {
    margin: 5vw 0;
    word-wrap: break-word;
  }
}
.sup-detail .event-detail .entry-body > p > strong {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 3rem;
  padding-top: 3rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #898989;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body > p > strong {
    gap: 2vw;
    font-size: 4vw;
    margin-top: 5vw;
    padding-top: 5vw;
  }
}
.sup-detail .event-detail .entry-body > p > strong::before {
  content: "";
  display: block;
  width: 44px;
  height: 37px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-chat-g.svg);
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body > p > strong::before {
    display: block;
    width: 10vw;
    height: 8.4vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-chat-g.svg);
  }
}
.sup-detail .event-detail .entry-body > p > em strong {
  font-size: 2.4rem;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .event-detail .entry-body > p > em strong {
    font-size: 4vw;
  }
}
.sup-detail .link-back {
  border-top: 1px solid #898989;
  margin-top: 3rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767.95px) {
  .sup-detail .link-back {
    margin-top: 5vw;
    padding-top: 13vw;
  }
}

.voice-message > p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767.95px) {
  .voice-message > p {
    font-size: 3.7vw;
    text-align: left;
  }
}
.voice-message .cat-list {
  margin: 5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1.3333333333%;
  row-gap: 1rem;
}
@media screen and (max-width: 767.95px) {
  .voice-message .cat-list {
    margin: 8vw 0 0;
  }
}
@media screen and (max-width: 767.95px) {
  .voice-message .cat-list {
    gap: 2%;
    row-gap: 3vw;
  }
}
.voice-message .cat-list li {
  width: 24%;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  .voice-message .cat-list li {
    width: 32%;
  }
}
.voice-message .cat-list li a {
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 5.5rem;
  display: block;
  background-color: #727171;
}

.voice-list__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  margin-top: 5rem;
}
@media screen and (max-width: 767.95px) {
  .voice-list__container {
    margin: 13vw auto;
  }
}
.voice-list__content {
  padding: 0;
}
.voice-list__content .event-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 7rem;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap {
    row-gap: 8vw;
  }
}
.voice-list__content .event-list-wrap .event-one {
  width: 46%;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap .event-one {
    width: 100%;
  }
}
.voice-list__content .event-list-wrap .event-one .image {
  height: 223px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap .event-one .image {
    width: 100%;
    height: 50vw;
  }
}
.voice-list__content .event-list-wrap .event-one .image .class-box {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 2.6rem;
  padding: 0 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 2.6rem;
  color: #ffffff;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap .event-one .image .class-box {
    font-size: 2.9vw;
    line-height: 5.8vw;
    height: 5.8vw;
  }
}
.voice-list__content .event-list-wrap .event-one .image .class-box.iturn {
  background-color: #f6a500;
}
.voice-list__content .event-list-wrap .event-one .image .class-box.uturn {
  background-color: #00A291;
}
.voice-list__content .event-list-wrap .event-one .image .class-box.kankeisha {
  background-color: #2EA7E0;
}
.voice-list__content .event-list-wrap .event-one .image .class-box.iturn {
  background-color: #f6a500;
}
.voice-list__content .event-list-wrap .event-one .title {
  font-size: 2rem;
  padding-top: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap .event-one .title {
    font-size: 5vw;
    padding-top: 3vw;
    margin-top: 0;
  }
}
.voice-list__content .event-list-wrap .event-one .settledsup-desc {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  border-left: 1px solid #000;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap .event-one .settledsup-desc {
    margin: 3vw 0;
  }
}
.voice-list__content .event-list-wrap .event-one .settledsup-desc li {
  padding: 0 15px;
  border-right: 1px solid #000;
}
@media screen and (max-width: 767.95px) {
  .voice-list__content .event-list-wrap .event-one .settledsup-desc li {
    padding: 0 2vw;
  }
}
.voice-list__content .event-list-wrap .event-one .settledsup-desc li:last-child {
  white-space: nowrap;
}
.voice-list__content .event-list-wrap .event-one p {
  margin: 1rem 0 0;
}

.voice-migrant-story {
  margin: 12rem 0;
  padding: 4rem 50px;
  text-align: center;
  background-color: #efefef;
}
@media screen and (max-width: 767.95px) {
  .voice-migrant-story {
    margin: 13vw 0;
    margin-left: -15px;
    margin-right: -15px;
    padding: 8vw 15px;
  }
}
.voice-migrant-story h4 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
}
@media screen and (max-width: 767.95px) {
  .voice-migrant-story h4 {
    font-size: 7vw;
  }
}
.voice-migrant-story img {
  margin-top: 4rem;
}
@media screen and (max-width: 767.95px) {
  .voice-migrant-story img {
    margin-top: 8vw;
  }
}
.voice-migrant-story p {
  margin-top: 3.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 767.95px) {
  .voice-migrant-story p {
    margin-top: 5vw;
    font-size: 3.7vw;
  }
}
.voice-migrant-story a {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767.95px) {
  .voice-migrant-story a {
    margin-top: 5vw;
  }
}

.voice-detail img {
  height: auto;
}
.voice-detail .event-detail h4 {
  font-size: 3.6rem;
  line-height: 1;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail h4 {
    font-size: 5vw;
    line-height: 1.4;
  }
}
.voice-detail .event-detail .image {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .image {
    margin-top: 5vw;
  }
}
.voice-detail .event-detail .entry-body .suppro-box p {
  font-size: 2.5rem;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body .suppro-box p {
    font-size: 3.7vw;
  }
}
.voice-detail .event-detail .entry-body .suppro-box p.settledsup-text01 {
  margin: 4rem 0;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: #f6a500;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body .suppro-box p.settledsup-text01 {
    margin: 5vw 0;
    font-size: 5vw;
  }
}
.voice-detail .event-detail .entry-body .suppro-box p.name {
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body .suppro-box p.name {
    font-size: 5vw;
  }
}
.voice-detail .event-detail .entry-body .suppro-box .detail {
  margin: 3rem 0 6rem;
  background-color: #e8e3df;
  padding: 5rem;
  font-size: 2rem;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body .suppro-box .detail {
    margin: 5vw 0;
    padding: 5vw;
    font-size: 3.7vw;
  }
}
.voice-detail .event-detail .entry-body > p {
  text-align: left;
  margin: 3rem 0;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body > p {
    margin: 5vw 0;
    word-wrap: break-word;
  }
}
.voice-detail .event-detail .entry-body > p > span > strong {
  color: #000;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 2.5rem;
  line-height: 1.36;
  font-weight: 700;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #898989;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body > p > span > strong {
    gap: 2vw;
    font-size: 4vw;
    margin-top: 5vw;
    padding-top: 5vw;
  }
}
.voice-detail .event-detail .entry-body > p > span > strong::before {
  content: "";
  position: relative;
  top: -6px;
  display: block;
  width: 51px;
  height: 51px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-question.svg);
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body > p > span > strong::before {
    top: -2vw;
    display: block;
    width: 10vw;
    height: 10vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-question.svg);
  }
}
.voice-detail .event-detail .entry-body > p > em strong {
  font-size: 2.4rem;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body > p > em strong {
    font-size: 4vw;
  }
}
.voice-detail .event-detail .entry-body img {
  margin: 3rem 0;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .event-detail .entry-body img {
    margin: 5vw 0;
  }
}
.voice-detail .link-back {
  border-top: 1px solid #898989;
  margin-top: 3rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767.95px) {
  .voice-detail .link-back {
    margin-top: 5vw;
    padding-top: 13vw;
  }
}

.akiya-message {
  background-color: #e8e3df;
  padding: 5rem 40px;
  text-align: center;
}
@media screen and (max-width: 767.95px) {
  .akiya-message {
    margin-left: -15px;
    margin-right: -15px;
    padding: 13vw 15px;
  }
}
.akiya-message h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 767.95px) {
  .akiya-message h2 {
    font-size: 6.4vw;
  }
}
.akiya-message p:nth-of-type(1) {
  margin-top: 3rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-message p:nth-of-type(1) {
    margin-top: 5vw;
  }
}
.akiya-message p:nth-of-type(2) {
  margin-top: 3rem;
  background-color: #ffffff;
  padding: 3rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-message p:nth-of-type(2) {
    margin-top: 5vw;
    padding: 5vw;
  }
}

.akiya-search__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  margin: 5rem 0;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__container {
    margin: 13vw auto;
  }
}
.akiya-search__heading p {
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__heading p {
    font-size: 4.6vw;
  }
}
.akiya-search__content {
  padding: 5rem 0;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content {
    padding: 8vw 0;
  }
}
.akiya-search__content .search-check {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-check {
    flex-wrap: wrap;
    row-gap: 3vw;
  }
}
.akiya-search__content .search-check label {
  color: #fff;
  padding: 0;
  width: 23.8%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* チェックボックスデザイン */
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-check label {
    width: 48%;
  }
}
.akiya-search__content .search-check label input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.akiya-search__content .search-check label input[type=checkbox] {
  cursor: pointer;
  padding-left: 30px;
  vertical-align: middle;
  position: relative;
}
.akiya-search__content .search-check label input[type=checkbox]::before, .akiya-search__content .search-check label input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
.akiya-search__content .search-check label input[type=checkbox]::before {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #666464;
  width: 16px;
  /*チェックボックスの横幅*/
  height: 16px;
  /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.akiya-search__content .search-check label input[type=checkbox]::after {
  border-bottom: 3px solid #666464;
  /*チェックの太さ*/
  border-left: 3px solid #666464;
  /*チェックの太さ*/
  opacity: 0;
  /*チェック前は非表示*/
  height: 6px;
  /*チェックの高さ*/
  width: 11px;
  /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -4px;
  /*チェック時の位置調整*/
  left: 8px;
  /*チェック時の位置調整*/
}
.akiya-search__content .search-check label input[type=checkbox]:checked::after {
  opacity: 1;
  /*チェック後表示*/
}
.akiya-search__content .search-check label.check-lease {
  background-color: #3284ce;
}
.akiya-search__content .search-check label.check-sale {
  background-color: #ea7c3f;
}
.akiya-search__content .search-check label.check-tochi {
  background-color: #54ad4d;
}
.akiya-search__content .search-check label.check-nouchi {
  background-color: #996b4b;
}
.akiya-search__content .search-select {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-select {
    flex-wrap: wrap;
    row-gap: 3vw;
  }
}
.akiya-search__content .search-select > div {
  width: 23.8%;
  height: 5rem;
  position: relative;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-select > div {
    width: 48%;
  }
}
.akiya-search__content .search-select > div:before {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-select.svg);
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.akiya-search__content .search-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  line-height: 5rem;
  height: 5rem;
  padding: 0 5px 0 10px;
  width: 100%;
  background: #898989;
  border: none;
  color: #fff;
  cursor: pointer;
  outline: none;
}
.akiya-search__content .search-btn {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-btn {
    margin-top: 5vw;
  }
}
.akiya-search__content .search-btn button {
  background-color: #c9caca;
  height: 5rem;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 240px;
  outline: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-btn button {
    width: 100%;
    height: 16vw;
  }
}
.akiya-search__content .search-btn button::before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-search-s.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-btn button::before {
    display: block;
    width: 4.5vw;
    height: 4.5vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-search-s.svg);
  }
}
.akiya-search__content .search-btn button:hover {
  color: #ffffff;
  background-color: #595757;
}
.akiya-search__content .search-btn button:hover::before {
  content: "";
  display: block;
  width: 16px;
  height: 17px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-search-sw.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-search__content .search-btn button:hover::before {
    display: block;
    width: 4.5vw;
    height: 4.5vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-search-sw.svg);
  }
}
.akiya-search__footer {
  text-align: center;
}
.akiya-search__footer > a {
  font-size: 2.2rem;
  display: block;
}
@media screen and (max-width: 767.95px) {
  .akiya-search__footer > a {
    font-size: 5.3vw;
  }
}
.akiya-search__footer > a .scroll {
  color: #f6a500;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.akiya-search__footer > a .scroll:after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down-y.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-search__footer > a .scroll:after {
    display: block;
    width: 2vw;
    height: 8.5vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-arrow-down-y.svg);
  }
}
.akiya-search__footer > a:hover .scroll {
  color: #5b5225;
}
.akiya-search__footer > a:hover .scroll:after {
  transition: all 0.3s;
  content: "";
  display: block;
  width: 7px;
  height: 43px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-arrow-down-dy.svg);
}

.akiya-list__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  margin-top: 6rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__container {
    margin: 13vw auto;
  }
}
.akiya-list__content {
  margin-top: 5rem;
  padding: 0;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content {
    margin-top: 8vw;
  }
}
.akiya-list__content .akiya-list-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 7rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap {
    row-gap: 5vw;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one {
  width: 46%;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one {
    width: 100%;
  }
  .akiya-list__content .akiya-list-wrap .akiya-one a {
    display: flex;
  }
  .akiya-list__content .akiya-list-wrap .akiya-one .akiya-body {
    width: 50%;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .image {
  height: 230px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .image {
    width: 50%;
    height: 31.5vw;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .image > img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.akiya-list__content .akiya-list-wrap .akiya-one .image ul {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  z-index: 2;
  width: 80px;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .image ul {
    width: 15vw;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .image ul li {
  font-size: 1.5rem;
  height: 2.6rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .image ul li {
    font-size: 2.9vw;
    height: 5.8vw;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .image ul li.sale {
  background-color: #ea7c3f;
}
.akiya-list__content .akiya-list-wrap .akiya-one .image ul li.progress {
  background-color: #ffe046;
  color: #5b5225;
}
.akiya-list__content .akiya-list-wrap .akiya-one .image ul li.nouchi {
  background-color: #996b4b;
}
.akiya-list__content .akiya-list-wrap .akiya-one .image ul li.lease {
  background-color: #008ACD;
}
.akiya-list__content .akiya-list-wrap .akiya-one .image .negotiation {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.akiya-list__content .akiya-list-wrap .akiya-one .title {
  background-color: #898989;
  font-size: 2rem;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  margin: 2rem 5px 1rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .title {
    font-size: 2.9vw;
    height: 4.6vw;
    padding: 0 2vw;
    margin: 0 5px 2vw;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .akiya-address {
  margin: 0 5px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .akiya-address {
    justify-content: space-between;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .akiya-address dt {
  width: 30%;
  white-space: nowrap;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .akiya-address dt {
    width: 45%;
  }
}
.akiya-list__content .akiya-list-wrap .akiya-one .akiya-address dd {
  width: 70%;
}
@media screen and (max-width: 767.95px) {
  .akiya-list__content .akiya-list-wrap .akiya-one .akiya-address dd {
    width: 52%;
  }
}

.akiya-navi {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 767.95px) {
  .akiya-navi {
    margin: 13vw auto;
  }
}
@media screen and (max-width: 767.95px) {
  .akiya-navi {
    display: block;
  }
  .akiya-navi a + a {
    margin-top: 3vw;
  }
}
.akiya-navi a {
  flex: 1;
  gap: 15px;
}
.akiya-navi a:first-child:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-navi a:first-child:before {
    display: block;
    width: 8.3vw;
    height: 8.3vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home.svg);
  }
}
.akiya-navi a:first-child:hover:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-home-w.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-navi a:first-child:hover:before {
    display: block;
    width: 8.3vw;
    height: 8.3vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-home-w.svg);
  }
}
.akiya-navi a:last-child:before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-yen.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-navi a:last-child:before {
    display: block;
    width: 6.9vw;
    height: 6.9vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-yen.svg);
  }
}
.akiya-navi a:last-child:hover:before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/icon/ico-yen-w.svg);
}
@media screen and (max-width: 767.95px) {
  .akiya-navi a:last-child:hover:before {
    display: block;
    width: 6.9vw;
    height: 6.9vw;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/icon/ico-yen-w.svg);
  }
}

@media screen and (max-width: 767.95px) {
  .akiya-usage {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.akiya-usage__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  background-color: #e8e3df;
  padding: 5rem 55px;
}
@media screen and (max-width: 767.95px) {
  .akiya-usage__container {
    margin: 13vw auto;
  }
}
@media screen and (max-width: 767.95px) {
  .akiya-usage__container {
    padding: 13vw 15px;
  }
}
.akiya-usage__heading {
  text-align: center;
}
.akiya-usage__heading h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 4.5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-usage__heading h2 {
    font-size: 6.4vw;
  }
}
.akiya-usage__content p {
  padding: 5rem 0;
}
.akiya-usage__content p span {
  font-weight: 700;
}
@media screen and (max-width: 767.95px) {
  .akiya-usage__content p {
    padding: 8vw 0;
  }
}
.akiya-usage__content a span {
  text-align: right;
  padding-right: 15px;
}
.akiya-usage__content a + a {
  margin-top: 2rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-usage__content a + a {
    margin-top: 3vw;
  }
}

.akiya-area__container {
  position: relative;
  margin: 8rem auto;
  padding: 0;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-area__container {
    margin: 13vw auto;
  }
}
.akiya-area__heading {
  text-align: center;
}
.akiya-area__heading h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-area__heading h2 {
    font-size: 7.4vw;
  }
}
.akiya-area__content {
  margin-top: 4rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-area__content {
    margin-top: 3vw;
  }
}
.akiya-area__content p {
  margin-top: 5rem;
  font-weight: 500;
}
@media screen and (max-width: 767.95px) {
  .akiya-area__content p {
    margin-top: 8vw;
  }
}
.akiya-area__content h3 {
  margin-top: 3rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-area__content h3 {
    margin-top: 8vw;
    font-size: 5.3vw;
  }
}
.akiya-area__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1rem;
}
.akiya-area__content ul li {
  width: 32.4%;
}
@media screen and (max-width: 767.95px) {
  .akiya-area__content ul li {
    width: 48%;
  }
}
.akiya-area__content ul li a {
  width: 100%;
}

@media screen and (max-width: 767.95px) {
  .akiya-detail {
    margin-top: 13vw;
  }
}
.akiya-detail img {
  height: auto;
}
.akiya-detail h2 {
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail h2 {
    font-size: 6.4vw;
    margin-top: 8vw;
  }
}
.akiya-detail__info {
  margin-top: 3.5rem;
  background-color: #f7f8f8;
  padding: 3rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info {
    margin-top: 5vw;
    padding: 5vw;
  }
}
.akiya-detail__info__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid #9fa0a0;
  padding-bottom: 5px;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__heading {
    flex-direction: column;
    padding-bottom: 3vw;
  }
}
.akiya-detail__info__heading h3 {
  font-size: 3rem;
  font-weight: 500;
  color: #e6a722;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__heading h3 {
    font-size: 5.3vw;
  }
}
.akiya-detail__info__heading ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__heading ul {
    gap: 1vw;
    width: 100%;
    justify-content: flex-end;
  }
}
.akiya-detail__info__heading ul li {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 500;
  padding: 0 10px;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__heading ul li {
    font-size: 3.2vw;
    padding: 0 1.5vw;
  }
}
.akiya-detail__info__heading ul li.progress {
  background-color: #ffe046;
  color: #5b5225;
}
.akiya-detail__info__heading ul li.situation {
  background-color: #ff5051;
}
.akiya-detail__info__heading ul li.property {
  background-color: #54ad4d;
}
.akiya-detail__info__heading ul li.sale {
  background-color: #ea7c3f;
}
.akiya-detail__info__heading ul li.nouchi {
  background-color: #996b4b;
}
.akiya-detail__info__content {
  margin-top: 10px;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__content {
    margin-top: 3vw;
  }
}
.akiya-detail__info__content dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.7rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__content dl {
    font-size: 4.5vw;
  }
}
.akiya-detail__info__content dl dt {
  width: 17%;
  color: #898989;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__content dl dt {
    width: 30%;
  }
}
.akiya-detail__info__content dl dd {
  width: 83%;
  font-weight: 900;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__info__content dl dd {
    width: 68%;
  }
}
.akiya-detail__notice {
  margin-top: 5rem;
  font-size: 1.7rem;
  line-height: 1.8;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__notice {
    margin-top: 8vw;
  }
}
.akiya-detail__notice h3 {
  font-size: 2.2rem;
  font-weight: 500;
  border-bottom: 1px solid #9fa0a0;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__notice h3 {
    font-size: 5.3vw;
    padding-bottom: 2vw;
  }
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__notice p {
    padding-top: 2vw;
  }
}
.akiya-detail__pdf {
  margin-top: 5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__pdf {
    margin-top: 8vw;
  }
}
.akiya-detail__images {
  margin-top: 8rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__images {
    margin-top: 13vw;
  }
}
.akiya-detail__images ul {
  margin: 4.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2%;
  row-gap: 1.5rem;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__images ul {
    margin: 13vw 0 0;
    row-gap: 3vw;
    justify-content: space-between;
  }
}
.akiya-detail__images ul li {
  width: 32%;
}
@media screen and (max-width: 767.95px) {
  .akiya-detail__images ul li {
    width: 48%;
  }
}
.akiya-detail .link-back {
  border-top: 1px solid #898989;
  margin-top: 3rem;
  padding-top: 8rem;
}/*# sourceMappingURL=style.css.map */