@charset "UTF-8";
/* =============================================
見出し

01.基本設定
02.共通クラス
03.ヘッダー
04.フッター
05.コンテンツ

============================================= */
/* =============================================
01.基本設定
============================================= */
* {
  box-sizing: border-box;
}

body {
  font-size: 1.1vw;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

img {
  width: 100%;
  object-fit: contain;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
}

.nallow__container {
  max-width: 70vw;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .nallow__container {
    max-width: 90vw;
  }
}

section {
  padding: 8vw 0;
}
@media (max-width: 767px) {
  section {
    padding: 14vw 0;
  }
}

a {
  color: #333333;
  text-decoration: unset;
  font-weight: 500;
}
a:hover {
  cursor: pointer !important;
  opacity: 0.7;
}

p {
  font-size: 1.2vw;
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 767px) {
  p {
    font-size: 4vw;
    line-height: 1.8;
  }
}

li {
  list-style-type: none;
}

/* =============================================
02.utility
============================================= */
.pc {
  display: block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pink {
  color: #E66090;
}

.green {
  color: #35BABD;
}

.grad {
  background-image: linear-gradient(290deg, rgb(221, 121, 181), rgb(214, 122, 184) 18%, rgb(242, 101, 148) 74%, rgb(233, 164, 125) 99%);
}

/* =============================================
03.ヘッダー
============================================= */
header {
  padding: 1vw;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  header {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    border-radius: 50px;
    padding: 3vw 6vw;
  }
}
header .header__wrapper {
  display: flex;
  justify-content: space-between;
}
header .header__wrapper .header__logo {
  width: 30%;
  display: flex;
  align-items: center;
  column-gap: 1vw;
}
@media (max-width: 767px) {
  header .header__wrapper .header__logo {
    width: 100%;
    justify-content: center;
    column-gap: 3vw;
  }
}
header .header__wrapper .header__logo img {
  width: 10vw;
}
@media (max-width: 767px) {
  header .header__wrapper .header__logo img {
    width: 35vw;
  }
}
header .header__wrapper .header__menu {
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  header .header__wrapper .header__menu {
    display: none;
  }
}
header .header__wrapper .header__menu ul {
  display: flex;
  justify-content: space-between;
  width: 70%;
}
header .header__wrapper .header__menu .header__btn {
  width: 20%;
}

h1 {
  font-size: 0.8vw;
  color: #664C45;
  line-height: 1.3;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2vw;
  }
}

.h2 {
  font-size: 3vw;
  text-align: center;
  margin-bottom: 4vw;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .h2 {
    font-size: 5.8vw;
    margin-bottom: 6vw;
  }
}
.h2.mark {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5vw;
}
@media (max-width: 767px) {
  .h2.mark {
    column-gap: 2vw;
  }
}
.h2.mark::before {
  content: "";
  display: block;
  width: 2vw;
  height: 3vw;
  background: url(/agency/dist/img/ttl-left.webp) no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .h2.mark::before {
    width: 6vw;
    height: 6vw;
  }
}
.h2.mark::after {
  content: "";
  display: block;
  width: 2vw;
  height: 3vw;
  background: url(/agency/dist/img/ttl-right.webp) no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .h2.mark::after {
    width: 6vw;
    height: 6vw;
  }
}
.h2.white.mark {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5vw;
}
.h2.white.mark::before {
  content: "";
  display: block;
  width: 2vw;
  height: 3vw;
  background: url(/agency/dist/img/ttl-left-wh.png) no-repeat;
  background-size: contain;
  background-position: center;
}
.h2.white.mark::after {
  content: "";
  display: block;
  width: 2vw;
  height: 3vw;
  background: url(/agency/dist/img/ttl-right-wh.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.d-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .d-flex {
    row-gap: 6vw;
  }
}
.d-flex.col1-1-1 > div {
  width: 32%;
}
@media (max-width: 767px) {
  .d-flex.col1-1-1 > div {
    width: 100%;
  }
}
.d-flex.col1-1-1 > div img {
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .d-flex.col1-1-1 > div img {
    margin-bottom: 4vw;
  }
}
.d-flex.col1-1 > div {
  width: 48.5%;
}
@media (max-width: 767px) {
  .d-flex.col1-1 > div {
    width: 100%;
  }
}
.d-flex.col1-1 > div img {
  margin-bottom: 1vw;
}

/* =============================================
04.フッター
============================================= */
/* =============================================
05.コンテンツ
============================================= */
.loopSlide {
  display: flex;
  width: 100vw;
  height: 30vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  .loopSlide {
    height: 80vw;
    margin-top: 12vw;
    margin-bottom: 6vw;
  }
}
.loopSlide img {
  width: auto;
  height: 100%;
}
.loopSlide img:first-child {
  animation: slide1 60s -30s linear infinite;
}
.loopSlide img:last-child {
  animation: slide2 60s linear infinite;
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.section__fv {
  overflow-x: hidden;
  position: relative;
  padding-bottom: 4vw;
  padding-top: 8vw;
}
.section__fv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 15vw;
  background-color: white;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  bottom: 9.9vw;
}
@media (max-width: 767px) {
  .section__fv::before {
    height: 20vw;
    clip-path: polygon(100% 100%, 0% 100%, 0% 0%);
    bottom: 94.9vw;
  }
}
.section__fv::after {
  content: "";
  position: absolute;
  background: white;
  width: 100vw;
  height: 10vw;
  bottom: 0;
}
@media (max-width: 767px) {
  .section__fv::after {
    height: 95vw;
  }
}
.section__fv .fv__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section__fv .fv__wrapper {
    flex-direction: column-reverse;
  }
}
.section__fv .fv__content {
  width: 50%;
}
@media (max-width: 767px) {
  .section__fv .fv__content {
    width: 100%;
  }
}
.section__fv .fv__slide {
  width: 45%;
}
@media (max-width: 767px) {
  .section__fv .fv__slide {
    width: 100%;
    margin-left: -10vw;
  }
}
.section__fv .fv__slide img {
  padding: 0 1.5vw;
}
.section__fv .fv__btn {
  width: 35vw;
  margin-top: 2vw;
}
.section__fv .fv__company {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .section__fv .fv__company {
    margin-top: 16vw;
  }
}
@media (max-width: 767px) {
  .section__fv .fv__copy {
    padding: 0 5vw;
    margin-bottom: 4vw;
  }
}

.section__nayami {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .section__nayami .container {
    max-width: 100vw;
  }
}
.section__nayami::after {
  content: "";
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6vw 45vw 0 45vw;
  border-color: #F9FAFB transparent transparent transparent;
}
.section__nayami .nayami__wrapper {
  background: #F9FAFB;
  padding: 6vw 10vw;
}
@media (max-width: 767px) {
  .section__nayami .nayami__wrapper {
    padding: 14vw 5vw;
  }
}
.section__nayami .nayami__ttl {
  font-size: 1.4vw;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__nayami .nayami__ttl {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
}
.section__nayami p {
  line-height: 1.3;
}

.section__about .about__ttl {
  color: #E66090;
  text-align: center;
  font-size: 1.8vw;
  line-height: 1.3;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__about .about__ttl {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
}
.section__about .about__ttl .em {
  font-size: 2.8vw;
}
@media (max-width: 767px) {
  .section__about .about__ttl .em {
    font-size: 8vw;
  }
}
@media (max-width: 767px) {
  .section__about .about__ttl .desu {
    font-size: 5.8vw;
  }
}
.section__about .about__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.section__about .about__wrapper .about__img {
  width: 30%;
}
@media (max-width: 767px) {
  .section__about .about__wrapper .about__img {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.section__about .about__wrapper .about__text {
  width: 65%;
}
@media (max-width: 767px) {
  .section__about .about__wrapper .about__text {
    width: 100%;
    margin-top: 4vw;
  }
}
.section__about .about__wrapper .about__text p {
  font-size: 1.4vw;
}
@media (max-width: 767px) {
  .section__about .about__wrapper .about__text p {
    line-height: 1.5;
    font-size: 4vw;
  }
}
.section__about .about__wrapper .about__text p .label {
  background: #FFDD83;
}

.cta {
  padding: 3vw 0;
  color: white;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cta {
    padding: 8vw 0;
  }
}
.cta p {
  font-size: 1.6vw;
  font-weight: bold;
  margin-bottom: 0.5vw;
}
@media (max-width: 767px) {
  .cta p {
    font-size: 3vw;
  }
}
.cta .cta__ttl {
  font-size: 2.4vw;
  text-align: center;
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .cta .cta__ttl {
    font-size: 5.4vw;
  }
}
.cta .cta__btn {
  width: 38%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cta .cta__btn {
    width: 85%;
    margin-top: 4vw;
  }
}

.section__reason {
  position: relative;
}
.section__reason::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40vw;
  background-color: #F1FFFE;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  bottom: 60%;
}
@media (max-width: 767px) {
  .section__reason::before {
    bottom: 86%;
    height: 20vw;
  }
}
.section__reason::after {
  content: "";
  position: absolute;
  background: #F1FFFE;
  width: 100vw;
  height: 60%;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .section__reason::after {
    height: 86%;
  }
}
.section__reason .reason__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
.section__reason .reason__wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}
.section__reason .reason__wrapper:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .section__reason .reason__wrapper {
    margin-bottom: 16vw;
  }
}
.section__reason .reason__text {
  width: 55%;
}
@media (max-width: 767px) {
  .section__reason .reason__text {
    width: 100%;
  }
}
.section__reason .reason__img {
  width: 40%;
}
@media (max-width: 767px) {
  .section__reason .reason__img {
    display: none;
  }
}
.section__reason .number {
  color: white;
  padding: 0.5vw 1vw;
  display: inline-block;
  border-radius: 20px;
  font-size: 1.6vw;
}
@media (max-width: 767px) {
  .section__reason .number {
    font-size: 4vw;
    padding: 3vw 2vw;
  }
}
.section__reason .reason__ttl {
  display: flex;
  align-items: start;
  column-gap: 1vw;
  color: #35BABD;
  font-size: 2vw;
  margin-bottom: 1vw;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .section__reason .reason__ttl {
    font-size: 5.2vw;
    align-items: center;
  }
}

.section__agency {
  background: #F1FFFE;
  position: relative;
  padding-bottom: 2vw;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__agency {
    padding-bottom: 14vw;
  }
}
.section__agency::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10vw;
  background-color: #F1FFFE;
  clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
  bottom: -10vw;
}
.section__agency .agency__ttl {
  color: white;
  font-size: 2.4vw;
  padding: 1vw 2vw;
}
@media (max-width: 767px) {
  .section__agency .agency__ttl {
    font-size: 5.4vw;
    padding: 4vw 6vw;
  }
}
.section__agency .agency__card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(204, 204, 204, 0.2941176471);
  background: white;
}
.section__agency .agency__wrapper {
  padding: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper {
    padding: 4vw;
  }
}
.section__agency .agency__wrapper .agency__img {
  width: 50%;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__img {
    width: 100%;
  }
}
.section__agency .agency__wrapper .agency__text {
  width: 45%;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__text {
    width: 100%;
  }
}
.section__agency .agency__wrapper .agency__text .agency__copy {
  color: #E66090;
  font-size: 2vw;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__text .agency__copy {
    font-size: 5.2vw;
    margin-top: 4vw;
  }
}
.section__agency .agency__wrapper .agency__text .agency__copy span {
  font-size: 1.4vw;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__text .agency__copy span {
    font-size: 3.6vw;
  }
}
.section__agency .agency__wrapper .agency__text .check__lists {
  margin-top: 2vw;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__text .check__lists {
    margin-top: 4vw;
  }
}
.section__agency .agency__wrapper .agency__text .check__lists li {
  display: flex;
  margin-bottom: 1vw;
  column-gap: 1vw;
  font-size: 1.2vw;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__text .check__lists li {
    font-size: 4vw;
    align-items: center;
    column-gap: 2vw;
    margin-bottom: 3vw;
  }
}
.section__agency .agency__wrapper .agency__text .check__lists li::before {
  content: "";
  display: block;
  width: 1.5vw;
  height: 1.5vw;
  background: url(/agency/dist/img/check.webp) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .section__agency .agency__wrapper .agency__text .check__lists li::before {
    width: 4vw;
    height: 4vw;
  }
}

.section__merit .merit__item {
  border: 2px solid #35BABD;
  padding: 2vw 2vw;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .section__merit .merit__item {
    padding: 4vw;
  }
}
.section__merit .merit__ttl {
  color: #35BABD;
  font-size: 1.7vw;
  font-weight: bold;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__merit .merit__ttl {
    font-size: 4.6vw;
    margin-bottom: 3vw;
    margin-top: 2vw;
  }
}
.section__merit .d-flex {
  row-gap: 2vw;
}
@media (max-width: 767px) {
  .section__merit .d-flex {
    row-gap: 6vw;
  }
}

.section__support {
  background: #F1FFFE;
  position: relative;
  padding-bottom: 2vw;
  margin-bottom: 4vw;
}
.section__support::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10vw;
  background-color: #F1FFFE;
  clip-path: polygon(100% 0%, 0% 100%, 0% 0%);
  bottom: -10vw;
}
.section__support .support__wrapper {
  background: white;
  box-shadow: 0 5px 10px rgba(204, 204, 204, 0.2941176471);
  padding: 4vw 6vw;
  text-align: center;
  margin-bottom: 4vw;
}
@media (max-width: 767px) {
  .section__support .support__wrapper {
    padding: 8vw 6vw;
    margin-bottom: 10vw;
  }
}
.section__support .support__ttl {
  color: #35BABD;
  font-size: 1.8vw;
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  .section__support .support__ttl {
    font-size: 4.8vw;
    text-align: left;
    line-height: 1.5;
  }
}
.section__support p {
  font-weight: bold;
  font-size: 1.3vw;
  line-height: 1.5;
  margin-bottom: 3vw;
}
@media (max-width: 767px) {
  .section__support p {
    font-size: 4vw;
    text-align: left;
    margin-bottom: 6vw;
  }
}
.section__support .support__img {
  max-width: 50vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section__support .support__img {
    max-width: 100%;
  }
}
.section__support .support__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1vw;
}
@media (max-width: 767px) {
  .section__support .support__lists {
    row-gap: 3vw;
  }
}
.section__support .support__lists li {
  width: 48%;
  display: flex;
  align-items: center;
  column-gap: 1vw;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .section__support .support__lists li {
    width: 100%;
    font-size: 3.6vw;
    column-gap: 2vw;
  }
}
.section__support .support__lists li img {
  width: 3vw;
}
@media (max-width: 767px) {
  .section__support .support__lists li img {
    width: 8vw;
  }
}

.section__flow .flow__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section__flow .flow__items {
    row-gap: 16vw;
  }
}
.section__flow .flow__number {
  background: #35BABD;
  color: white;
  font-size: 1.2vw;
  padding: 0.2vw 1vw;
  display: inline-block;
  margin-bottom: 1vw;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .section__flow .flow__number {
    font-size: 5vw;
    padding: 1vw 3vw;
  }
}
.section__flow .flow__ttl {
  font-size: 1.4vw;
  font-weight: bold;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  .section__flow .flow__ttl {
    font-size: 4.8vw;
    margin: 3vw 0;
  }
}
.section__flow .flow__item {
  width: 30%;
  padding: 2vw;
  border: 1px solid #35BABD;
  text-align: center;
  border-radius: 10px;
  position: relative;
}
.section__flow .flow__item:last-of-type::after {
  display: none;
}
.section__flow .flow__item::after {
  content: "";
  display: block;
  width: 1vw;
  height: 3vw;
  background: url(/agency/dist/img/flow-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2vw;
}
@media (max-width: 767px) {
  .section__flow .flow__item::after {
    background: url(/agency/dist/img/flow-arrow-sp.png) no-repeat;
    transform: translateX(-50%);
    top: auto;
    left: 50%;
    width: 12vw;
    background-size: contain;
    height: 10vw;
    bottom: -16vw;
  }
}
@media (max-width: 767px) {
  .section__flow .flow__item {
    width: 100%;
    padding: 6vw;
  }
}
.section__flow p {
  text-align: left;
  line-height: 1.5;
}

.section__faq {
  background: #F9FAFB;
  /* ヘッダー部分 */
  /* 開閉アイコン */
  /* 縦線 */
  /* 縦線 */
  /* コンテンツ部分 */
}
.section__faq .accordion-item {
  border-bottom: 1px solid #e8e8e8;
  background: white;
  padding: 2vw;
  border-radius: 10px;
  margin-bottom: 2vw;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.0274509804);
}
@media (max-width: 767px) {
  .section__faq .accordion-item {
    padding: 4vw;
  }
}
.section__faq .accordion-header {
  position: relative;
  cursor: pointer;
}
.section__faq .accordion-title {
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 1vw;
  font-size: 1.6vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-title {
    font-size: 4vw;
  }
}
.section__faq .accordion-title::before {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  background: url(/agency/dist/img/icon-faq.webp) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .section__faq .accordion-title::before {
    width: 6vw;
    height: 6vw;
  }
}
.section__faq .accordion-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .section__faq .accordion-icon {
    right: 0;
  }
}
.section__faq .accordion-icon::before,
.section__faq .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #333333;
  transition: transform 0.3s;
}
.section__faq .accordion-icon::before {
  background: url(/agency/dist/img/icon-down.png) no-repeat;
  background-size: contain;
  width: 1.2vw;
  height: 1.2vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-icon::before {
    width: 3vw;
    height: 3vw;
  }
}
.section__faq .accordion-item.is-active .accordion-icon::before {
  background: url(/agency/dist/img/icon-up.png) no-repeat;
  background-size: contain;
  width: 1.2vw;
  height: 1.2vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-item.is-active .accordion-icon::before {
    width: 3vw;
    height: 3vw;
  }
}
.section__faq .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s;
}
.section__faq .accordion-content__inner {
  padding-top: 1vw;
}
@media (max-width: 767px) {
  .section__faq .accordion-content__inner {
    padding-top: 2vw;
  }
}
.section__faq .accordion-content__inner p {
  border-top: 1px solid rgba(204, 204, 204, 0.8);
  padding-top: 1vw;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .section__faq .accordion-content__inner p {
    padding-top: 2vw;
  }
}

.section__contact {
  color: white;
  text-align: center;
}
@media (max-width: 767px) {
  .section__contact .nallow__cotainer {
    padding: 0 5vw;
  }
}
@media (max-width: 767px) {
  .section__contact p {
    text-align: left;
  }
}

footer .footer__wrapper {
  padding: 4vw 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  footer .footer__wrapper {
    padding: 8vw 0vw;
  }
}
footer .footer__logo {
  width: 20vw;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  footer .footer__logo {
    width: 100%;
    padding: 0 5vw;
    margin-bottom: 4vw;
  }
}
footer small {
  border-top: 1px solid #E5E7EB;
  color: #959595;
  width: 100%;
  text-align: center;
  padding: 1vw;
  display: block;
}
@media (max-width: 767px) {
  footer small {
    padding: 4vw 3vw 8vw;
    font-size: 3vw;
  }
}
footer .footer__links {
  display: flex;
  column-gap: 2vw;
}
@media (max-width: 767px) {
  footer .footer__links {
    justify-content: center;
    column-gap: 8vw;
    margin-top: 4vw;
  }
}
footer .footer__links a {
  display: flex;
  column-gap: 1vw;
}
@media (max-width: 767px) {
  footer .footer__links a {
    font-size: 4vw;
    column-gap: 4vw;
  }
}
footer .footer__links a::after {
  content: "";
  display: block;
  width: 1vw;
  height: 1vw;
  background: url(/agency/dist/img/icon-arrow.png) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  footer .footer__links a::after {
    width: 4vw;
    height: 4vw;
  }
}
footer .footer__address {
  text-align: right;
}
@media (max-width: 767px) {
  footer .footer__address {
    text-align: center;
    width: 100%;
    margin-top: 8vw;
  }
}
footer .footer__address .company__name {
  font-size: 1.3vw;
  font-weight: 500;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  footer .footer__address .company__name {
    font-size: 4.6vw;
    margin-bottom: 3vw;
  }
}
footer .footer__address p {
  line-height: 1.5;
}
@media (max-width: 767px) {
  footer .footer__address p {
    font-size: 3.6vw;
    text-align: center;
  }
}

.sp__menu {
  width: 90%;
  margin: 8vw auto 0;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #B8B8B8;
}
.sp__menu li {
  width: 50%;
  box-sizing: border-box;
}
.sp__menu li:nth-of-type(odd) a {
  border-right: 1px dotted #B8B8B8;
}
.sp__menu a {
  font-size: 4vw;
  padding: 6vw 4vw;
  display: flex;
  border-bottom: 1px solid #B8B8B8;
  justify-content: space-between;
  align-items: center;
}
.sp__menu a::after {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  background: url(/agency/dist/img/icon-anchor.png) no-repeat;
  background-size: contain;
}

.fixed__btn {
  position: fixed;
  bottom: 15px;
  z-index: 100;
  text-align: center;
}
.fixed__btn img {
  width: 80%;
}