@charset "UTF-8";
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

.wrapper {
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  display: flex;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 20px;
  }
}
.header-left {
  transition: 0.3s;
}
.header-left img {
  width: 164px;
}
.header-left:hover {
  opacity: 0.7;
}
.header-right {
  display: flex;
}
@media screen and (max-width: 1099px) {
  .header-right {
    display: none;
  }
}
.header-right ul {
  font-size: 1.4rem;
  font-weight: 700;
  align-items: center;
  display: flex;
  gap: 40px;
  margin-right: 40px;
}
.header-right li {
  transition: 0.3s;
}
.header-right li:hover {
  opacity: 0.7;
}
.header-right-button {
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  padding: 11px 60px;
}
.header-right-button:hover {
  opacity: 0.7;
}
.header-hum-button {
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  padding: 11px 15%;
}
.header-hum-button:hover {
  opacity: 0.7;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 90vh; /*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 78px;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
@media screen and (max-width: 374px) {
  #g-nav ul {
    margin-top: 20px;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #000;
  text-decoration: none;
  font-size: 1.8rem;
  padding-bottom: 60px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  display: none;
}
@media screen and (max-width: 1099px) {
  .openbtn {
    display: block;
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.top {
  margin-top: 62px;
  background-image: url(../img/topbg.png);
  background-size: auto;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .top {
    background-image: url(../img/topbgsp.png);
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
}
.top-bx {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
.top-bx-img {
  max-width: 832px;
  margin: 0 -25% 0 0;
  width: 90%;
}
@media screen and (min-width: 1501px) {
  .top-bx-img {
    max-width: 1724px;
    margin: 0 -35% 0 0;
  }
}
@media screen and (max-width: 1099px) {
  .top-bx-img {
    margin: 0 -35% 0 0;
  }
}
@media screen and (max-width: 767px) {
  .top-bx-img {
    display: none;
  }
}
@media screen and (max-width: 1099px) {
  .top-bx {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top-bx-l {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-bx {
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 40px;
    width: 100%;
    margin: 0 auto;
  }
}
.top-bx-up img {
  max-width: 466px;
}
@media screen and (max-width: 1099px) {
  .top-bx-up img {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .top-bx-up img {
    display: none;
  }
}
.top-bx-title h1 {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1099px) {
  .top-bx-title h1 {
    font-size: 1.5rem;
  }
}
.top-bx-title h1 span {
  background-color: #EEF2FF;
  padding: 2px 5px;
}
@media screen and (max-width: 767px) {
  .top-bx-title h1 {
    margin-top: 8px;
    font-size: 1.6rem;
    letter-spacing: -0.05em;
    position: relative;
  }
}
@media screen and (max-width: 374px) {
  .top-bx-title h1 {
    width: 90%;
    margin: 10px auto 0 auto;
    font-size: 1.3rem;
  }
}
.top-bx-bt {
  position: relative;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .top-bx-bt {
    width: 90%;
    margin: 22px auto 0 auto;
  }
}
.top-bx-bt a {
  display: inline-block;
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}
.top-bx-bt a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1099px) {
  .top-bx-bt a {
    width: 100%;
    font-size: 1.7rem;
    padding: 11.5px 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-bx-bt a {
    width: 100%;
    font-size: 1.6rem;
    padding: 11.5px 0;
  }
}
.top-bx-bt::before {
  position: absolute;
  top: -26px;
  right: 35px;
  content: url(../img/topbtbe.png);
}
@media screen and (max-width: 1099px) {
  .top-bx-bt::before {
    display: none;
  }
}
.top-bx-bt p {
  margin-top: 4px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1099px) {
  .top-bx-bt p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top-bx-bt p {
    font-size: 1.2rem;
    text-align: left;
    padding-bottom: 50px;
    text-align: left;
  }
}
.top-bx-bt span {
  background-color: #fff;
  border-radius: 3px;
  padding: 5px 13px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #5863F8;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .top-bx-bt span {
    padding: 0 13px;
  }
}
.top-img-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-img-sp {
    width: 100%;
    text-align: center;
    margin: -30px auto 0 auto;
    display: block;
  }
}

#trouble {
  background-color: #F9F9F9;
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #trouble {
    padding: 60px 0;
  }
}
#trouble h2 {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #trouble h2 {
    font-size: 2rem;
  }
}
#trouble h2 br {
  display: none;
}
@media screen and (max-width: 767px) {
  #trouble h2 br {
    display: block;
  }
}
#trouble img {
  margin-top: 30px;
  max-width: 938px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  #trouble img {
    margin-top: 43px;
  }
}

#support {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #support {
    padding: 60px 0;
  }
}

.support-title {
  text-align: center;
}
.support-tt {
  display: inline;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support-tt {
    width: 90%;
    font-size: 1.6rem;
  }
}
.support-blue {
  color: #5863F8;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support-blue {
    font-size: 1.8rem;
  }
}
.support-blue::before {
  content: url(../img/line-l.svg);
  position: absolute;
  top: 30px;
  left: -150px;
}
@media screen and (max-width: 767px) {
  .support-blue::before {
    content: url(../img/line-lsp.svg);
    position: absolute;
    top: 5px;
    left: -60px;
  }
}
@media screen and (max-width: 374px) {
  .support-blue::before {
    display: none;
  }
}
.support-black {
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .support-black {
    font-size: 1.8rem;
  }
}
.support-black::after {
  content: url(../img/line-r.svg);
  position: absolute;
  top: 30px;
  left: 420px;
}
@media screen and (max-width: 767px) {
  .support-black::after {
    content: url(../img/line-rsp.svg);
    position: absolute;
    top: 5px;
    left: 260px;
  }
}
@media screen and (max-width: 374px) {
  .support-black::after {
    display: none;
  }
}
.support-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.support-window {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 24px 60px;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto 0 auto;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .support-window {
    display: block;
    padding: 30px 20px;
  }
}
.support-window:first-child {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .support-window:first-child {
    margin-top: 42px;
  }
}
.support-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: #5863F8;
}
@media screen and (max-width: 767px) {
  .support-num {
    font-size: 1.4rem;
  }
}
.support-left {
  font-size: 1.8rem;
  line-height: 160%;
  font-weight: 400;
  max-width: 610px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .support-left {
    font-size: 1.6rem;
    width: 100%;
  }
}
.support-left h4 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5863F8;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .support-left h4 {
    font-size: 1.8rem;
  }
}
.support-right {
  margin: 0 auto;
  max-width: 344px;
}
@media screen and (max-width: 767px) {
  .support-right {
    margin: 30px auto 0 auto;
  }
}

#create {
  background: linear-gradient(89.74deg, rgba(88, 99, 248, 0.9) -4.79%, rgba(110, 88, 248, 0.95) 48.55%, #8B58F8 115.68%);
}
@media screen and (max-width: 767px) {
  #create {
    padding-top: 60px;
  }
}

.create-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1120px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .create-box {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .create-title {
    text-align: center;
  }
}
.create-left {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .create-left {
    margin-top: 0;
  }
}
.create-right {
  margin-top: 24px;
}
@media screen and (max-width: 1099px) {
  .create-right {
    margin-top: 82px;
  }
}
@media screen and (max-width: 767px) {
  .create-right {
    margin-top: 26px;
  }
}
.create-black {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #100D94;
  line-height: 1.8;
  padding: 0 24px;
}
@media screen and (max-width: 1260px) {
  .create-black {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1099px) {
  .create-black {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .create-black {
    font-size: 2rem;
    padding: 0 7px;
  }
}
@media screen and (max-width: 374px) {
  .create-black {
    font-size: 1.6rem;
    padding: 0 5px;
  }
}
.create-button {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .create-button {
    margin-top: 40px;
    display: block;
  }
}
.create-button a {
  display: inline-block;
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  background-color: #fff;
  padding: 17px 63px;
  color: #5863F8;
}
.create-button a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .create-button a {
    text-align: center;
    width: 100%;
    font-size: 1.6rem;
    padding: 11.5px 0;
  }
}
.create-button span {
  background-color: #5863F8;
  border-radius: 3px;
  padding: 5px 13px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .create-button span {
    padding: 0 13px;
  }
}
.create-button p {
  margin-top: 8px;
  width: 408px;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .create-button p {
    width: 100%;
    text-align: left;
  }
}

#flow {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #flow {
    padding: 60px 0;
  }
}

.sub-title {
  text-align: center;
}
.sub-title h3 {
  color: #5863F8;
  font-family: proxima-nova, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sub-title h3 {
    font-size: 1.4rem;
  }
}
.sub-title p {
  margin-top: -8px;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sub-title p {
    font-size: 2rem;
  }
}

.flow-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 60px auto 0 auto;
  width: 90%;
  gap: 80px;
}
@media screen and (max-width: 1099px) {
  .flow-container {
    justify-content: center;
    text-align: center;
    margin: 40px auto 0 auto;
    gap: 40px;
  }
}
.flow-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1099px) {
  .flow-box {
    justify-content: center;
    display: block;
  }
}
.flow-left {
  position: relative;
  width: 108px;
}
@media screen and (max-width: 1099px) {
  .flow-left {
    margin: 0 auto;
  }
}
.flow-left::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 110px;
  top: 104px;
  left: 54px;
  background-color: #F0F6FF;
}
@media screen and (max-width: 1099px) {
  .flow-left::after {
    display: none;
  }
}
.flow-left::after:last-child {
  content: none;
}
.flow-left-last {
  position: relative;
  width: 108px;
}
@media screen and (max-width: 1099px) {
  .flow-left-last {
    margin: 0 auto;
  }
}
.flow-right h5 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5863F8;
}
@media screen and (max-width: 767px) {
  .flow-right h5 {
    margin-top: 16px;
    text-align: center;
    font-size: 1.8rem;
  }
}
.flow-right p {
  max-width: 829px;
  margin-top: 7px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .flow-right p {
    font-size: 1.6rem;
    text-align: left;
  }
}
.flow-right a {
  position: relative;
  display: inline-block;
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  margin-top: 12px;
  padding: 17px 60px 17px 45px;
}
.flow-right a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .flow-right a {
    text-align: center;
    padding: 10.5px 17px 10.5px 0px;
    width: 100%;
    font-size: 1.6rem;
  }
}
.flow-right a::after {
  content: url(../img/aroow.svg);
  position: absolute;
  top: 19px;
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .flow-right a::after {
    position: absolute;
    top: 13px;
  }
}

#faq {
  padding: 80px 0;
  background-color: #F0F6FF;
}
@media screen and (max-width: 767px) {
  #faq {
    padding: 60px 0;
  }
}

.faq-container {
  max-width: 1120px;
  margin: 60px auto 0 auto;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .faq-container {
    margin: 40px auto 0 auto;
  }
}
.faq-block {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 24px;
}
.faq-block-last {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
}
.faq-title {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .faq-title {
    font-size: 1.6rem;
  }
}
.faq-window {
  cursor: pointer;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .faq-window {
    padding: 20px;
  }
}
.faq-sub {
  max-width: 966px;
  font-size: 1.8rem;
  margin: 0 auto 0 36px;
  text-align: left;
  padding-bottom: 35px;
}
@media screen and (max-width: 1260px) {
  .faq-sub {
    margin-right: 75px;
  }
}
@media screen and (max-width: 767px) {
  .faq-sub {
    font-size: 1.6rem;
    margin: 0 20px;
    padding-bottom: 20px;
  }
}
.faq-sub span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .faq-sub span {
    font-size: 1.3rem;
  }
}
.faq-button {
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .faq-button {
    padding-bottom: 20px;
  }
}
.faq-button a {
  position: relative;
  display: inline-block;
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  margin-top: -10px;
  margin-left: 36px;
  padding: 17px 60px 17px 45px;
}
.faq-button a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .faq-button a {
    text-align: center;
    font-size: 1.6rem;
    margin: 0 20px;
    width: 90%;
    padding: 10px 10px 10px 0;
  }
}
@media screen and (max-width: 374px) {
  .faq-button a {
    text-align: center;
    font-size: 1.4rem;
    margin: 0 20px;
    width: 90%;
    padding: 10px 10px 10px 0;
  }
}
.faq-button a::after {
  content: url(../img/aroow.svg);
  position: absolute;
  top: 19px;
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .faq-button a::after {
    position: absolute;
    top: 13px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 374px) {
  .faq-button a::after {
    position: absolute;
    top: 13px;
    margin-left: 5px;
  }
}
.faq-bottom {
  text-align: center;
}
.faq-bottom-button {
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  position: relative;
  width: 240px;
  text-align: center;
  padding: 10px 62px 10px 52px;
}
.faq-bottom-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .faq-bottom-button {
    margin: 30px auto 0 auto;
    width: 90%;
  }
}
.faq-bottom-button::after {
  content: url(../img/aroow.svg);
  position: absolute;
  top: 12px;
  margin-left: 14px;
}

.arrow {
  width: 16px;
  transition: all 0.2s ease-in-out;
}

.open .arrow {
  transform: rotate(180deg);
}

#contact {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #contact {
    padding: 60px 0;
  }
}

.contact-title {
  margin-top: 60px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .contact-title {
    margin: 40px auto 0 auto;
    width: 90%;
    text-align: left;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-title br {
    display: none;
  }
}
.contact-title span {
  color: #5863F8;
}

#back {
  background-image: url(../img/backbg.png);
  background-size: cover;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #back {
    padding: 60px 0;
  }
}

.back-container {
  margin: 0 auto;
  max-width: 1120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1099px) {
  .back-container {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .back-container {
    display: block;
  }
}
@media screen and (max-width: 1099px) {
  .back-left {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .back-left {
    width: 90%;
    margin: 0 auto;
  }
}
.back-left h4 {
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (max-width: 1099px) {
  .back-left h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .back-left h4 {
    font-size: 2rem;
  }
}
.back-left p {
  margin-top: 24px;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .back-left p {
    font-size: 1.6rem;
  }
}
.back-right {
  width: 340px;
}
@media screen and (max-width: 767px) {
  .back-right {
    width: 90%;
    margin: 0 auto;
  }
}
.back-button a {
  position: relative;
  display: inline-block;
  background-color: #5863F8;
  color: #fff;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 17px 60px;
  transition: 0.3s;
  background-color: #fff;
  color: #5863F8;
  margin-top: 16px;
  padding: 17px 60px 17px 45px;
}
.back-button a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1099px) {
  .back-button a {
    width: 100%;
    text-align: center;
    padding: 15px 17px 15px 0px;
  }
}
@media screen and (max-width: 767px) {
  .back-button a {
    width: 100%;
    text-align: center;
    padding: 15px 20px 15px 0px;
  }
}
@media screen and (max-width: 374px) {
  .back-button a {
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
    padding: 10px 17px 10px 0px;
  }
}
.back-button a::after {
  content: url(../img/aroow-b.svg);
  position: absolute;
  top: 18px;
  margin-left: 14px;
}
@media screen and (max-width: 374px) {
  .back-button a::after {
    width: 10px;
    position: absolute;
    top: 13px;
    margin-left: 10px;
  }
}

/* footer */
.footer {
  padding: 80px 0;
}
.footer-container {
  max-width: 896px;
  margin: 0 auto;
}
.footer-list {
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .footer-list {
    gap: 30px;
  }
}
@media screen and (max-width: 374px) {
  .footer-list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-list a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 374px) {
  .footer-list a {
    font-size: 1.2rem;
  }
}
.footer-list a:hover {
  opacity: 0.6;
}
.footer-img {
  margin: 41px auto 0 auto;
  max-width: 120px;
  height: auto;
}
.footer-img:hover {
  opacity: 0.6;
}

.credit {
  font-size: 14px;
  margin: 20px 0 0 0;
  text-align: center;
}

.meetings-iframe-container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 374px) {
  .meetings-iframe-container {
    width: 100%;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=style.css.map */