@charset "utf-8";
/*
Theme Name: 
Description: 
Author: Mediacloud
*/
/*** リセットCSS ***/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1.5;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #dcebf7;
  margin: 1.5em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}

/***************** 
固定CSS
*****************/
html,
body {
  height: 100%;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", "Yu Gothic";
  line-height: 2.2;
  letter-spacing: 0.05rem;
  margin: 0;
}
p {
  font-size: 16px;
}
img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  cursor: pointer;
}
section {
  width: 100%;
  position: relative;
}
ul {
  list-style: none;
}
.inner {
  position: relative;
  margin: 0 auto;
  padding: 90px 20px;
  max-width: 1200px;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.for-sp {
  display: none;
}
address {
  font-style: unset;
}

/***************** 
アニメーション
*****************/
/* フェードイン */
.fadeinA {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1000ms;
}
.fadeinA.show {
  opacity: 1;
  transform: translate(0, 0);
}
.fadeinD {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 1000ms;
}
.fadeinD.show {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ズームイン */
.zoomin {
  transform: scale(0.5, 0.5) translate(0, 20px);
  opacity: 0;
}
.zoomin.show {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: 1s;
}
/* 回転 */
.rotate {
  transform: rotateY(120deg);
  opacity: 0;
}
.rotate.show {
  transform: rotateY(0);
  opacity: 1;
  transition: 0.8s;
}
/* 順に表示 */
.js-order {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}
.js-order.show {
  opacity: 1;
  transform: translateY(0);
}
.js-order.show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-order.show:nth-of-type(2) {
  transition-delay: 0.3s;
}
.js-order.show:nth-of-type(3) {
  transition-delay: 0.6s;
}
/* 隠してから表示 */
.hide__r::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 1s;
}
.hide__r.show::before {
  transform: translateX(-100%);
  overflow-x: hidden;
}
.hide__r img {
  opacity: 0;
  transition: 1s;
}
.hide__r.show img {
  opacity: 1;
}
.hide__l::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 1s;
}
.hide__l.show::before {
  transform: translateX(100%);
}
.hide__l img {
  opacity: 0;
  transition: 1s;
}
.hide__l.show img {
  opacity: 1;
}
/*スクロールバー非表示*/
.hide__l .show::-webkit-scrollbar {
  display: none;
}
.hide__l::before {
  scrollbar-width: none;
}


/***************** 
共通CSS
*****************/

h2 {
  font-size: 90px;
  color: #091c61;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.5;
}
h2 span {
  font-size: 15px;
  font-family: "Zen Old Mincho", serif;
  display: block;
  font-weight: 500;
  color: #808080;
}
h3 {
  font-size: 35px;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}
.sp-only {
  display: none;
}
/*** ヘッダー ***/
header {
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
/*** PC用ナビ ***/
header h1  a {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 50px;
}
header h1 a img {
  max-width: 370px;
  width: 100%;
}
.g-nav__container {
  top: 0;
  right: 0;
  height: 135px;
  background: #091c61;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.g-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  width: calc(50vw - 135px);
  margin: 0 20px;
}
.g-nav ul li a {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  font-family: "Cormorant Garamond", serif;
  padding: 20px 40px;
  letter-spacing: 2px;
}
.g-nav__list_contact {
  background: #fff;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  height: 135px;
  width: 135px;
  top: 0;
}
.g-nav__list_contact a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #091c61;
}
.g-nav__list_contact img {
  max-width: 18px;
  margin-right: 5px;
}
/*** メディアクエリ ***/
@media screen and (max-width: 768px) {
  .g-nav {
    display: none;
  }
}

/*** SP用ナビ ***/
.sp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 84%,
    #091c61 84%,
    #091c61 100%
  );
  position: fixed;
  z-index: 100;
  width: 100vw;
  height: 60px;
}
.sp-nav h1 img {
  max-width: 40px;
  width: 100%;
}
/* ハンバーガー部分 */
.js-hamburger__container {
  display: flex;
  align-items: center;
}
.js-hamburger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  width: 37px;
  height: 24px;
}
.js-hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 100%;
}
.js-hamburger span:nth-of-type(1) {
  top: 0;
}
.js-hamburger span:nth-of-type(2) {
  top: 12px;
  right: 0;
  width: 31px;
}
.js-hamburger span:nth-of-type(3) {
  top: 24px;
  right: 0;
  width: 25px;
}
.js-hamburger.active span:nth-of-type(1) {
  top: 11px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.js-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.js-hamburger.active span:nth-of-type(3) {
  top: 23px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
/* メニュー表示部分 */
.sp-nav__container {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 60vw;
  height: 100vh;
  padding: 50px 20px;
  background: #091c61f5;
  box-shadow: none;
  visibility: hidden;
  opacity: 0;
  transition: all 0.7s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sp-nav__container.panelactive {
  visibility: visible;
  opacity: 1;
}
.sp-nav__content {
  padding: 40px 20px;
  text-align: center;
  width: calc(60vw - 40px);
  margin: 0 auto;
}
.sp-nav__content li {
  margin: 0 0 10px;
  text-align: center;
}
.sp-nav__content li a {
  border-radius: 10px;
  padding: 15px;
  display: block;
  color: #fff;
  font-weight: 500;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .sp-nav {
    display: none;
  }
}


/***************** 
ファーストビュー
*****************/
.fv__wrapper {
  position: relative;
  margin-bottom: 120px;
}
.fv__wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  width: 13vw;
  height: 100%;
  background: linear-gradient(
    0deg,
    #0091dc 0%,
    #091c61 100%
  );
}
.fv__wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 87%,
    #0091dc 87%,
    #0091dc 100%
  );
}
.fv {
  position: relative;
  max-width: 90vw;
}
.fv__img {
  object-position: right bottom;
}
.ttl {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 752px;
  width: 100%;
  padding: 60px 20px 80px;
  text-align: center;
  border-top: 8px solid;
  border-image: linear-gradient(to right, #fff 0%,#fff 86%,#ae8c00 86%,#ae8c00 100%) 1;
}
.ttl h2 {
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  color: #091c61;
  margin-bottom: 20px;
}
.ttl p {
  font-size: 18px;
  line-height: 2;
  max-width: 550px;
  margin: 0 auto;
}
.ttl p:nth-of-type(1) {
  margin-bottom: 10px;
}
address.for-pc {
  position: absolute;
  right: 3.8%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #e2e2e2;
  font-size: 13px;
}
.fv__img {
  max-width: 1160px;
  width: 100%;
  display: block;
  margin-left: auto;
  object-fit: cover;
  object-position: center top;
  height: calc(90vh - 135px);
}

/***************** 
メッセージ
*****************/
#MESSAGE {
  margin-bottom: 100px;
}
#MESSAGE .message__wrapper {
  display: flex;
  flex-direction: column;
}
.message_l {
  padding-left: 9%;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
}
.message_l h2 {
  position: relative;
  width: fit-content;
}
.message_l h3 {
  font-size: 33px;
  color: #333;
  line-height: 2;
  margin-left: 180px;
}
.message_r {
  margin-left: auto;
  margin-bottom: 50px;
  padding-right: 9%;
  width: 58%;
}
.message_r span {
  font-weight: 500;
  margin: 25px 0;
  display: block;
}
.message_img {
  max-width: 1000px;
  width: 60%;
  margin-top: -300px;
  z-index: -10;
  position: relative;
}
.message__text {
  margin-bottom: 60px;
}


/***************** 
Aguaとは
*****************/
#ABOUT {
  text-align: center;
}
.about__text {
  margin: 60px auto 50px;
}
.about__figure {
  max-width: 540px;
  width: 100%;
}


/***************** 
サービス内容
*****************/
#SERVICE {
  padding: 90px 0 170px;
}
#SERVICE .service__intro {
  margin-bottom: 100px;
}
#SERVICE h2 {
  text-align: right;
  padding-right: 9%;
  margin-bottom: 30px;
}
.service__intro p {
  max-width: calc(670px + 9%);
  margin-left: auto;
  display: block;
  padding-right: 9%;
}
.sv-odd__intro_text h3,.sv-even__intro_text h3 {
    font-size: 30px;    
}
.sv-odd__intro_text h3 span,.sv-even__intro_text h3 span {
    font-size: 16px; 
    font-weight: 500;
    font-family: "Cormorant Garamond", serif;
    color: #0091dc;
    display: block;
    margin: -10px 0 30px;
}
.sv-odd__intro_text h4,.sv-even__intro_text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}
.sv-detail {
  max-width: 890px;
  width: 100%;
  padding: 40px 60px;
  margin: 0 auto;
  background: #f3fafd;
}
.sv-detail__heading {
  text-align: center;
  font-size: 20px;
  color: #091c61;
  margin-bottom: 20px;
}
.sv-detail h5 {
  font-size: 18px;
}

/*** サービス奇数項目 ***/
.sv-odd__main-img {
    position: relative;
    margin-left: auto;
    width: fit-content;
    max-width: 1110px;
    display: block;
}
.sv-odd__intro_text::after {
    position: absolute;
    content: "";
    display: inline-block;
    height: 80px;
    width: 125px;
    top: -20%;
    left: 2%;
    background-image: url(../img/sv1_num.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
}
.sv-odd__intro_text {
    max-width: 810px;
    position: absolute;
    background: #fff;
    bottom: 0;
    left: 0;
    margin-left: calc(9% - 20px);
    padding: 50px 7% 50px 20px;
}

/*** サービス偶数項目 ***/
.sv-even__main-img {
    position: relative;
    margin-left: unset;
    width: fit-content;
    max-width: 1110px;
    display: block;
}
.sv-even__intro_text::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 125px;
    height: 80px;
    top: -25%;
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
    left: unset;
    background-image: url(../img/sv2_num.svg);
    z-index: 1;
}
.sv-even__intro_text {
    max-width: 810px;
    position: absolute;
    background: #fff;
    bottom: 0;
    margin-left: calc(9% - 20px);
    right: 0;
    left: unset;
    margin-right: calc(9% - 20px);
    padding: 50px 20px 50px 7%;
}

/*** 税務会計顧問 ***/
.sv-01 {
  margin-bottom: 250px;
}
.sv-01__intro_container {
  position: relative;
  overflow-x: hidden;
  margin-bottom: 90px;
}
.sv-01__list {
  position: relative;
}
.sv-01__list_contents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1390px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.sv-01__list__img {
  position: relative;
  margin-bottom: 20px;
}
.sv-01__list::after {
  content: "";
  background: #f3fafd;
  height: 400px;
  width: 70vw;
  position: absolute;
  top: 140px;
  right: 0;
  z-index: -10;
}
.sv-01__list .js-order {
  width: calc(100% / 3 - 20px);
  position: relative;
  max-width: 400px;
}
.sv-01__list img {
  width: 400px;
}
.sv-01__list__ttl {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ae8c00;
  color: #fff;
  padding: 5px 25px;
}
.sv-01__list ul {
  padding-left: 20px;
}

/*** 自計化構築支援 ***/
.sv-02 {
    margin-bottom: 280px;
}
.sv-02__intro_container {
  position: relative;
  margin-bottom: 90px;
  overflow-x: hidden;
}

/*** 税務調査対応 ***/
.sv-03 .sv-odd__intro_text::after {
    background-image: url(../img/sv3_num.svg);
}
.sv-03__intro_container {
  position: relative;
  margin-bottom: 90px;
  overflow-x: hidden;
}
.sv-03 .sv-even__intro_text {
  padding-bottom: 0;
}
.sv-03__service {
  margin: 0 3%;
  display: flex;
  padding-bottom: 100px;
}


/***************** 
フロー
*****************/
.flow__intro {
  text-align: right;
  position: relative;
}
.flow__intro::after {
  content: "";
  position: absolute;
  left: 5%;
  top: -10px;
  display: inline-block;
  width: 280px;
  height: 671px;
  background-repeat: no-repeat;
  background-image: url(../img/flow.jpg);
  background-size: contain;
  vertical-align: middle;
  z-index: -10;
}
#FLOW h2 {
  text-align: right;
  padding-right: 9%;
}
.flow__intro p {
  max-width: calc(670px + 9%);
  margin-left: auto;
  display: block;
  padding-right: 9%;
}
.flow__container {
  margin-right: 8%;
}
.flow__step {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.flow__step img {
  max-width: 320px;
  width: 100%;
}
.flow__step h3 {
  font-size: 35px;
  color: #333;
  line-height: 1;
  margin-bottom: 30px;
}
.flow__step_text {
  background: #fff;
  padding: 40px 0 40px 40px;
  max-width: 720px;
  width: 100%;
}
.flow__step2 .flow__step_text, .flow__step4 .flow__step_text{
  max-width: 650px;
}
.flow__step_text p {
  max-width: 615px;
  margin-bottom: 20px;
}
.flow__step1,
.flow__step2,
.flow__step3 {
  margin-bottom: 55px;
}
.flow__step1,
.flow__step3 {
  margin-right: 10%;
}
#FLOW .button {
  background: linear-gradient(
    90deg,
    #5ac6ef 0%,
    #0091dc 100%
  );
  padding: 15px 35px;
  width: fit-content;
  border-radius: 2px;
  line-height: 1;
}
#FLOW .button:first-child {
  margin-right: 20px;
  background: linear-gradient(
    90deg,
    #3967a1 0%,
    #091c61 100%
  );
}
.flow__button_wrapper {
  display: flex;
}
#FLOW .button h4 {
  font-weight: normal;
}
#FLOW .button:nth-of-type(1) a {
  font-size: 28px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
#FLOW .button:nth-of-type(2) a {
  font-size: 22px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}

/***************** 
会社情報
*****************/
#COMPANY {
  padding: 90px 0 0;
  position: relative;
}
#COMPANY h2 {
  position: relative;
  width: fit-content;
  margin: 0 0 20px 9%;
}
.company_intro{
    position: relative;
    z-index: 10;
}
.company__table {
  background: #fff;
  max-width: 1350px;
  width: 100%;
  padding: 5% 8%;
  margin: 0 auto;
}
.company__table table {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
}
.company__table table th,
.company__table table td {
  font-size: 16px;
  font-weight: normal;
  padding: 10px 5px 10px 40px;
  border-bottom: 1px solid #afafaf;
  text-align: left;
}
.company__table table th {
  width: 25%;
  border-bottom: 1px solid #afafaf;
  border-image: linear-gradient(to right, #0091dc 0%, #0091dc 8%, #afafaf 8%, #afafaf 100%) 1;
  vertical-align: middle;
}
.company__table table td {
  width: 65%;
}
#COMPANY iframe {
  z-index: -10;
  position: relative;
  vertical-align: bottom;
}
#COMPANY::after {
  content: "";
  background: #f3fafd;
  height: 200px;
  width: 50vw;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -10;
}

/***************** 
お問い合わせ
*****************/
#CONTACT {
  padding: 120px 0 140px;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 50%,
    #f3fafd 50%,
    #f3fafd 100%
  );
}
.contact__intro {
  margin-bottom: 80px;
}
#CONTACT h2,
#CONTACT p {
  margin-left: 9%;
  margin-bottom: 30px;
}
.contact__table {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
  background: #fff;
  border: solid 1px #091c61;
  padding: 55px 100px;
}
.contact__table table {
  width: 100%;
}
.contact__table td span {
  display: flex;
  line-height: 1.7;
}
.contact__table th {
  vertical-align: middle;
  text-align: left;
  line-height: 1.7;
  width: 35%;
  font-weight: normal;
}
.contact__table th span {
  color: #0091dc;
  line-height: 1;
  padding: 0.1em 0.5em;
  margin-right: 1em;
}
.contact__table th,
.contact__table td {
  padding: 20px 15px;
  font-size: 16px;
}
.contact__table input.w100,.contact__table select.w100 {
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 0;
}
.contact__table textarea {
  height: calc(1em * 10);
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 0;
}
th.to-privacy,
th.submit {
  text-align: center;
}
th.to-privacy a {
  color: #0091dc;
  font-weight: 500;
}
.contact__table th.submit {
  text-align: center;
}
th.submit button {
  border-radius: 2px;
  font-size: 23px;
  font-weight: 500;
  color: #fff;
  background: #ae8c00;
  border: none;
  letter-spacing: 0.2em;
  padding: 10px 75px;
  line-height: 1;
}
span#openModal {
  color: #0091dc;
  background: none;
  margin-right: 0;
  font-size: unset;
  text-decoration: underline;
}
.contact__flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  column-gap: 30px;
  row-gap: 10px;
}
.contact__caution {
  color: #0091dc;
}
.company__table tr:last-of-type th,.company__table tr:last-of-type td {
  border: none;
}

/*** プライバシーポリシー ***/
#openModal:hover {
  cursor: pointer;
}
.modalArea {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.modalBg {
  width: 100vw;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
  overflow-y: scroll;
}
.modalContents p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: normal;
}
.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  font-size: 25px;
}

/***************** 
フッター
*****************/
footer {
  display: flex;
}
.footer__l {
  width: 71vw;
  background-image: url(../img/footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  padding: 0 0 0 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__l img {
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
}
.footer__r {
  width: 29vw;
  background: #091c61;
  padding: 50px 0;
  position: relative;
}
ul.footer-nav__content {
  padding-left: 20%;
}
.footer-nav__list a {
  color: #fff;
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
}
.footer-nav__list {
  position: relative;
  line-height: 1;
  padding: 15px 0 15px 25px;
  letter-spacing: 2px;
}
.footer-nav__list::before {
  position: absolute;
  content: "-";
  color: #fff;
  font-size: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#PAGE-TOP {
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3fafd;
}
#PAGE-TOP img {
  width: 30px;
}
