@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

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

.abz {
  font-family: "ABeeZee", sans-serif;
  font-weight: 400;
}

.bg-blue {
  background: #213f99;
  color: #ffffff;
}

.txt-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px); /* 下からスライドインなど任意で */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {

  body {
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

@media screen and (min-width: 769px) {

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


@media screen and (max-width: 768px) {

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

ハンバーガーメニュー

---------------------------------------------------------------------------------------------*/

.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  right: 25px;
  top: 15px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #213F99;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
  width: 18px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  width: 30px;
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  background: #FFF;
  text-align: center;
  transform: translateY(-150%);
  transition: all 0.6s;
  width: 100%;
  height: 85vh;
  border-radius: 20px;
}

nav.globalMenuSp ul {
  margin-top: 100px;
  padding: 0 50px;
  padding-bottom: 60px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #D4D4D4;
}

nav.globalMenuSp ul li {
  position: relative;
  list-style-type: none;
  padding: 0;
  width: 100%;
  margin: 15px auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: center;
  align-items: center;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration :none;
  font-size: 2rem;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
  box-shadow: 38px 364px 102px 0 rgba(0, 0, 0, 0.00), 24px 233px 94px 0 rgba(0, 0, 0, 0.01), 14px 131px 79px 0 rgba(0, 0, 0, 0.05), 6px 58px 59px 0 rgba(0, 0, 0, 0.09), 2px 15px 32px 0 rgba(0, 0, 0, 0.10);
}

/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

header {
  position: fixed;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 10;
  width: 95%;
}

.head_cont {
  overflow: hidden;
  width: 100%;
  height: 77px;
  padding: 0 45px;
  margin: auto;
  border-radius: 100px;
  background: #FFF;
  box-shadow: 38px 364px 102px 0 rgba(0, 0, 0, 0.00), 24px 233px 94px 0 rgba(0, 0, 0, 0.01), 14px 131px 79px 0 rgba(0, 0, 0, 0.05), 6px 58px 59px 0 rgba(0, 0, 0, 0.09), 2px 15px 32px 0 rgba(0, 0, 0, 0.10);
}

.head_logo {
  max-width: 213px;
  opacity: 1;
  transition: .3s;
}

.head_logo:hover {
  opacity: .6;
}

.pc_nav ul li a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  margin: 0 12px;
  opacity: 1;
  transition: .3s;
}

.pc_nav ul li a:hover {
  opacity: .6;
}

.pc_nav ul li a img {
  max-width: 128px;
}

.pc_nav ul {
  position: relative;
}

.pc_nav ul::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(98deg, #86A4FF 0.37%, #213F99 104.96%);
  left: 20px;
  bottom: -26px;
  transition: .3s;
}

.pc_nav ul:has(li a.hover_top:hover)::after {
  left: 20px;
}

.pc_nav ul:has(li a.hover_about:hover)::after {
  left: 95px;
}

.pc_nav ul:has(li a.hover_iv:hover)::after {
  left: 220px;
}

.pc_nav ul:has(li a.hover_info:hover)::after {
  left: 350px;
}

.pc_nav ul:has(li a.hover_entry:hover)::after {
  left: 470px;
}

@media screen and (max-width: 768px) {

  header {
    top: 2%;
  }

  .head_cont {
    height: 60px;
  }

  .head_logo {
    max-width: 134px;
  }

  .navi_logo {
    position: absolute;
    display: block;
    max-width: 134px;
    top: 20px;
    left: 45px;
  }

  .sns-nav-box {
    width: 60%;
    margin: 30px auto;
  }

  .nav_bottom_link {
    font-size: 1.6rem;
    color: #999;
    display: block;
    margin-bottom: 15px;
  }

}


/*---------------------------------------------------------------------------------------------

MV

---------------------------------------------------------------------------------------------*/

.mv_wrap {
  position: relative;
  background: url("../recruit_img/bg_top_pc.webp") no-repeat;
  background-size: cover;
  background-position: bottom center;
  width: 100%;
  padding-top: 200px;
  padding-bottom: 320px;
}

.mv_image {
  position: absolute;
  max-width: 860px;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}

.mv_head {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  position: relative;
}

.mv_read {
  display: block;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.3;
  margin-bottom: 25px;
  color: #FFF;
}

.mv_main {
  display: inline-flex;
  background: #FFF;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.mv_main p {
  font-size: 6rem;
  font-style: normal;
  font-weight: 500;
  background: var(--Linear, linear-gradient(98deg, #2574F3 0.37%, #213F99 104.96%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv_main_wrap {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}

.mission_area {
  position: relative;
  margin-top: 180px;
  z-index: 1;
}

.mission_head {
  max-width: 440px;
  width: 90%;
  margin: auto;
  margin-bottom: 50px;
}

.mission_read {
  color: #FFF;
  text-align: center;
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 30px;
}

.mission_txt {
  color: #FFF;
  text-align: center;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.2;
}

.scroll_area {
  width: 100%;
  margin-top: 75px;
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.scroll_track{
  --repeat: 4;
  --gap: 2.5rem;         /* 文字間の余白を調整 */
  --duration: 12s;       /* 速度（短いほど速い） */

  display: flex;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
  animation: marquee var(--duration) linear infinite;
}

.scroll_item{
  flex: 0 0 auto;
  white-space: nowrap;
  font: 700 clamp(20px, 4vw, 40px)/1 sans-serif;
}

@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / var(--repeat))); }
}

.scroll_txt,
.scroll_item {
  color: #FFF;
  font-size: 6rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 18px;
}

.mission_image01 {
  position: absolute;
  max-width: 200px;
  top: -8%;
  left: 15%;
  z-index: -1;
  opacity: .8;
}

.mission_image02 {
  position: absolute;
  max-width: 289px;
  top: -15%;
  right: 10%;
  z-index: -1;
  opacity: .8;
}

.mission_image03 {
  position: absolute;
  max-width: 125px;
  top: 25%;
  right: 15%;
  z-index: -1;
  opacity: .8;
}

.mission_image04 {
  position: absolute;
  max-width: 202px;
  top: 45%;
  left: 15%;
  z-index: -1;
  opacity: .8;
}

.mission_image05 {
  position: absolute;
  max-width: 202px;
  bottom: 10%;
  right: 18%;
  z-index: -1;
  opacity: .8;
}

.mission_image06 {
  position: absolute;
  max-width: 289px;
  bottom: -15%;
  left: 20%;
  z-index: -1;
  opacity: .8;
}

@media screen and (max-width: 768px) {

  .mv_wrap {
    padding-top: 320px;
  }

  .mv_image {
    top: 50px;
  }

  .mission_area {
    margin-top: 150px;
  }

  .scroll_txt, .scroll_item {
    font-size: 4rem;
  }

  .mv_head {
    margin-top: 30px;
  }

  .mv_read {
    font-size: 2rem;
    line-height: 1.8;
  }

  .mv_main p {
    font-size: 3.5rem;
  }

  .mission_head {
    max-width: 220px;
  }

  .mission_read {
    font-size: 2rem;
  }

  .mission_txt {
    font-size: 1.4rem;
  }

  .mission_image01 {
    max-width: 130px;
    top: -2%;
    left: 2%;
  }

  .mission_image02 {
    max-width: 160px;
    top: -5%;
    right: 5%;
  }

  .mission_image03 {
    top: 30%;
    right: 0;
  }

  .mission_image04 {
    max-width: 105px;
    top: 42%;
    left: 0;
  }

  .mission_image05 {
    max-width: 160px;
    bottom: 8%;
    right: 0;
  }

  .mission_image06 {
    max-width: 200px;
    bottom: -10%;
    left: 0;
  }

}


/*---------------------------------------------------------------------------------------------

イントロ

---------------------------------------------------------------------------------------------*/

.intro_head {
  font-size: 12rem;
  font-style: normal;
  font-weight: 400;
  background: var(--Linear, linear-gradient(98deg, #2574F3 0.37%, #213F99 104.96%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
}

.intro_read {
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
}

.intro_txt {
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2;
  margin-top: 30px;
}

.intro_txt.mt0 {
  margin-top: 0;
}

.intro_box {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  margin-bottom: 120px;
}

.intro_flex_box {
  max-width: 1100px;
  width: 90%;
  margin: auto;
  margin-bottom: 65px;
}

.intro_flex_box .intro_head {
  margin-bottom: 0;
}

.intro_flex_box .intro_read {
  margin-left: 60px;
}

.intro_image01 {
  max-width: 389px;
}

.intro_image02 {
  max-width: 567px;
}

@media screen and (max-width: 768px) {

  .intro_box {
    margin-bottom: 75px;
  }

  .intro_head {
    font-size: 6rem;
    margin-bottom: 30px;
  }

  .intro_read {
    font-size: 1.8rem;
  }

  .intro_txt {
    font-size: 1.6rem;
  }

  .intro_image01,
  .intro_image02 {
    width: 100%;
    margin-top: 45px;
  }

  .sp_reverse {
    flex-flow: column-reverse;
  }

  .intro_flex_box .intro_head {
    margin-bottom: 40px;
  }

  .intro_flex_box .intro_read {
    margin-left: 0;
  }

}

/*---------------------------------------------------------------------------------------------

インタビュー

---------------------------------------------------------------------------------------------*/

.interview_wrap {
  position: relative;
  background: url("../recruit_img/bg_interview_pc.webp") no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  padding-top: 35%;
  padding-bottom: 190px;
}

.iv_box {
  position: relative;
  max-width: 1015px;
  width: 90%;
  margin: auto;
  margin-bottom: 200px;
  border-radius: 10px;
  background: #FFF;
}

.iv_cat {
  max-width: 280px;
  width: 100%;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 2px;
  color: #FFF;
  border-radius: 10px 0 0 0;
  background: #2B3B52;
  padding: 20px 30px;
  text-align: center;
}

.iv_head {
  padding: 0 30px;
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  background: var(--Linear, linear-gradient(98deg, #2574F3 0.37%, #213F99 104.96%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 30px;
  margin-bottom: 40px;
}

.iv_txt {
  padding: 0 30px;
  padding-bottom: 40px;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}

.iv_image {
  max-width: 377px;
  position: absolute;
  top: -150px;
  right: 20px;
}

@media screen and (max-width: 768px) {

  .interview_wrap {
    background: url("../recruit_img/bg_interview_sp.webp") no-repeat;
    background-size: cover;
    background-position: top center;
    width: 100%;
    padding-top: 80%;
    padding-bottom: 120px;
  }

  .iv_box {
    margin-bottom: 100px;
  }

  .iv_cat {
    max-width: 100%;
    font-size: 1.6rem;
    border-radius: 10px 10px 0 0;
    text-align: left;
    padding: 20px;
  }

  .iv_head {
    padding: 0 20px;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .iv_txt {
    padding: 0 20px;
    padding-bottom: 30px;
    font-size: 1.4rem;
  }

  .iv_image {
    max-width: 160px;
    top: -80px;
    right: 0;
  }

}


/*---------------------------------------------------------------------------------------------

企業情報

---------------------------------------------------------------------------------------------*/

.info_wrap {
  background: #EEE;
}

.info_child {
  padding-top: 150px;
  position: relative;
}

.info_bg_wrap {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 0;
}

.info_bg_txt {
  display: block;
  text-align: center;
  font-size: 16rem;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  color: #FFF;
  opacity: .5;
}

.info_tit_wrap {
  position: relative;
  z-index: 1;
}

.info_tit {
  display: inline-block;
  font-size: 5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 118px;
  letter-spacing: .3em;
  background: var(--Linear, linear-gradient(98deg, #2574F3 0.37%, #213F99 104.96%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.info_read {
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 50px;
}

.benefits_box {
  max-width: 940px;
  width: 90%;
  border-radius: 10px;
  background: #FFF;
  margin: 30px auto;
  padding: 30px;
}

.bene_image01 {
  max-width: 222px;
  width: 80%;
}

.bene_txt_box {
  margin-left: 30px;
}

.bene_txt_box h3 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
}

.bene_txt_box p {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .1em;
}

.care_txt {
  width: calc(50% - 15px);
  border-radius: 5px;
  background: #FFF0E2;
  text-align: center;
  font-size: 1vw;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 15px;
  padding: 10px;
  min-height: 80px;
}

.bene_other_txt {
  font-size: 3rem;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-left: 20px;
}

.bene_other_wrap {
  max-width: 675px;
  width: 70%;
  border: 1px solid #DCDCDC;
}

.bene_other_box {
  border-bottom: 1px solid #DCDCDC;
  padding: 10px 25px;
}

.bene_other_box.last {
  border-bottom: none;
}

.bene_other_box p {
  width: 30%;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  color: #213F99;
}

.bene_other_box span {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
}

.job_box {
  max-width: 940px;
  width: 90%;
  border-radius: 8px;
  background: #FFF;
  margin: 30px auto;
  padding: 70px;
}

.info_child.last {
  margin-top: 80px;
  padding-top: 90px;
}

.job_txt {
  width: 100%;
}

.job_txt p:first-of-type {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  color: #213F99;
  width: 25%;
}

.job_txt p:last-of-type {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  width: 75%;
}

.job_line {
  width: 100%;
  margin: 30px 0;
}

.job_line span:first-of-type {
  display: block;
  width: 25%;
  border-bottom: 1px solid #3663AA;
}

.job_line span:last-of-type {
  display: block;
  width: 75%;
  border-bottom: 1px solid #DBE0E5;
}

.info_child.last {
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {

  .info_child {
    padding-top: 120px;
  }

  .info_bg_wrap {
    top: 50px;
  }

  .info_bg_txt {
    margin-left: -100px;
    font-size: 8rem;
  }

  .info_tit {
    font-size: 4rem;
  }

  .info_read {
    font-size: 1.8rem;
  }

  .bene_image01 {
    margin: auto;
    margin-bottom: 30px;
  }

  .bene_txt_box {
    margin-left: 0;
  }

  .care_box_wrap {
    margin-top: 80px;
  }

  .care_txt {
    width: 100%;
    font-size: 1.4rem;
  }

  .bene_other_txt {
    margin-left: 0;
    text-align: left;
  }

  .bene_other_wrap {
    width: 100%;
    margin-top: 30px;
  }

  .benefits_box.last {
    padding: 30px 15px;
  }

  .bene_other_box {
    padding: 20px 15px;
  }

  .bene_other_box p {
    width: 100%;
    margin-bottom: 20px;
  }

  .bene_other_box span {
    line-height: 1.8;
  }

  .job_box {
    padding: 25px 15px;
  }

  .job_txt p:first-of-type,
  .job_txt p:last-of-type {
    font-size: 1.2rem;
  }

  .job_txt p:first-of-type {
    width: 30%;
  }

  .job_txt p:last-of-type {
    width: 70%;
  }

  .job_line span:first-of-type {
    width: 30%;
  }

  .job_line span:last-of-type {
    width: 70%;
  }

  .info_child.last {
    padding-bottom: 60px;
  }

}


/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_entry {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: var(--Linear, linear-gradient(98deg, #2574F3 0.37%, #213F99 104.96%));
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  z-index: 10;
}

footer {
  margin-top: 180px;
}

.footer {
  margin-top: -100px;
  padding-bottom: 40px;
}

footer a {
  color: #ffffff;
}

.inner {
  margin: 0 auto;
  max-width: 1170px;
  width: 90%;
}

.f-nav-menu li:not(:last-child) {
  margin-right: 20px;
}

.f-nav-menu li {
  font-size: 14px;
  font-weight: 700;
}

footer .addr {
  margin-top: 30px;
}

footer .addr p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.78;
}

.sns-box a:not(:last-child) {
  margin-right: 15px;
}

@media screen and (min-width: 768px) {
  [class^="c-fa-"]:before, [class*=" c-fa-"]:before {
    font-size: 170%!important;
  }
}

.f-nav-menu li:not(:last-child) {
  margin-right: 20px;
}

.f-nav-menu li {
  font-size: 14px;
  font-weight: 700;
}

.copy {
  font-size: 14px;
  font-weight: 500;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {

  footer {
    margin-top: 80px;
  }

  .footer {
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .footer .site-map-blo {
    justify-content: center;
    text-align: center;
  }

  .footer .site-map-blo > .logo {
    margin-top: 30px;
    order: 3;
  }

  .footer .site-map-blo > nav {
    margin-top: 30px;
    order: 2;
  }

  .f-nav-menu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer .site-map-blo > .addr {
    order: 4;
  }

  .footer .site-map-blo > .sns-box {
    order: 1;
  }

  .f-nav-menu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .f-nav-menu li {
    text-align: center;
    width: 100%;
  }

  footer .copy {
    font-size: 12px;
    margin-top: 50px;
    margin-bottom: 80px;
  }

  .f-nav-menu {
    margin-top: 30px;
  }

  .sns-box a img {
    width: 30px;
  }

}