@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: relative;
  width: 100%;
  padding: 0 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.hidden {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px); /* ヘッダの高さだけ上に移動 */
}
.header > .container > .box-logo {
  position: fixed;
  top: 25px;
  left: 30px;
  z-index: 80;
}
@media screen and (max-width: 480px) {
  .header > .container > .box-logo {
    top: 16px;
    left: 20px;
  }
}
.header > .container > .box-logo > .link > .image {
  width: 213px;
}
@media screen and (max-width: 480px) {
  .header > .container > .box-logo > .link > .image {
    width: 175px;
  }
}
.header > .container > .box-logo > .link > .image.black {
  display: none;
}
.header > .container > .list-menu {
  position: fixed;
  top: 34px;
  right: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 80;
}
@media screen and (max-width: 1024px) {
  .header > .container > .list-menu {
    display: none;
  }
}
.header > .container > .list-menu > .menu > .link {
  color: #ffffff;
  font-size: 1vw;
  padding: 10px 22px;
}
.header > .container > .list-menu.normal > .menu > .link {
  color: #000000;
}
.header > .container > .hamburger-menu {
  position: fixed;
  top: 35px;
  right: 34px;
  width: 62px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu {
    top: 31px;
    right: 16px;
    width: 60px;
    height: 12px;
  }
}
.header > .container > .hamburger-menu > .line {
  background-color: #727171;
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
}
.header > .container > .hamburger-menu > .line:first-child {
  top: 0;
}
.header > .container > .hamburger-menu > .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header > .container > .hamburger-menu > .line:last-child {
  bottom: 0;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu > .line {
    height: 1px;
  }
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 8px;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu > .line.active:first-child {
    top: 2px;
  }
}
.header > .container > .hamburger-menu > .line.active:nth-child(2) {
  display: none;
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  bottom: 11px;
}
.header > .container > .menu-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f6f6f6;
  width: 100%;
  height: 100vh;
  padding: 88px;
  z-index: 1000;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp {
    padding: 50px 20px;
  }
}
.header > .container > .menu-sp > .box-menu-content {
  position: absolute;
  width: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content {
    width: 90%;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu {
    padding-bottom: 28px;
    margin-bottom: 38px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu {
  min-width: 290px;
  margin-bottom: 40px;
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu:nth-child(odd) {
  margin-right: 40px;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu {
    margin-bottom: 20px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
  color: #000000;
  font-size: 24px;
  padding: 24px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
    font-size: 14px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link > .english {
  display: block;
  color: #cccccc;
  font-size: 10px;
  margin-bottom: 8px;
}
.header > .container > .menu-sp > .box-menu-content > .box-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .box-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.header > .container > .menu-sp > .box-menu-content > .box-logo > .link {
  display: inline-block;
  max-width: 52%;
  width: 100%;
  margin-right: 84px;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .box-logo > .link {
    max-width: 65%;
    margin: 0 auto 25px;
  }
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .box-logo > .box-text {
    margin: 0 auto;
  }
}
.header > .container > .menu-sp > .box-menu-content > .box-logo > .box-text > .copy {
  font-size: 2.5vw;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .box-logo > .box-text > .copy {
    text-align: center;
    font-size: 3.5vw;
  }
}
.header > .container > .menu-sp > .box-menu-content > .box-logo > .box-text > .address {
  font-size: 1.4vw;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .box-logo > .box-text > .address {
    text-align: center;
    font-size: 3vw;
  }
}
.header > .container > .menu-sp.active {
  display: block;
}
.header.scroll-nav > .container > .box-logo > .link > .image.black {
  display: block;
}
.header.scroll-nav > .container > .box-logo > .link > .image.white {
  display: none;
}
.header.scroll-nav > .container > .hamburger-menu > .line {
  background-color: #727171;
}
.header.top > .container > .hamburger-menu > .line {
  background-color: #ffffff;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  position: relative;
  background-color: #727171;
  padding: 52px 20px 23px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 32px 20px 24px;
  }
}
.footer > .container {
  max-width: 90vw;
  margin: 0 auto;
}
.footer > .container > .box-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 57px;
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 48px;
  }
}
.footer > .container > .box-menu > .list-menu {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 62px;
}
.footer > .container > .box-menu > .list-menu > .menu {
  margin-bottom: 14px;
}
.footer > .container > .box-menu > .list-menu > .menu > .link {
  color: #ffffff;
  font-size: 1vw;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .list-menu > .menu > .link {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-menu > .menu > .link {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-main > .menu {
    width: 47%;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 8px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-main > .menu:nth-child(odd) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-company,
  .footer > .container > .box-menu > .list-recruit {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-company > .menu:first-child,
  .footer > .container > .box-menu > .list-recruit > .menu:first-child {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 8px;
  }
}
.footer > .container > .box-menu > .list-company > .menu:not(:first-child),
.footer > .container > .box-menu > .list-recruit > .menu:not(:first-child) {
  margin-bottom: 5px;
}
.footer > .container > .box-menu > .list-company > .menu:not(:first-child) > .link,
.footer > .container > .box-menu > .list-recruit > .menu:not(:first-child) > .link {
  color: #dfdfdf;
  font-size: 0.9vw;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .list-company > .menu:not(:first-child) > .link,
  .footer > .container > .box-menu > .list-recruit > .menu:not(:first-child) > .link {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .list-company > .menu:not(:first-child) > .link,
  .footer > .container > .box-menu > .list-recruit > .menu:not(:first-child) > .link {
    font-size: 3.2vw;
  }
}
.footer > .container > .box-menu > .contact-button {
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .contact-button {
    margin: 0 auto;
  }
}
.footer > .container > .box-menu > .contact-button > .link {
  border: 1px solid #ffffff;
  border-radius: 50px;
  display: inline-block;
  color: #ffffff;
  font-size: 1vw;
  padding: 10px 30px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-menu > .contact-button > .link {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-menu > .contact-button > .link {
    font-size: 3.8vw;
    padding: 10px 115px;
  }
}
.footer > .container > .box-credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #ffffff;
  padding-top: 22px;
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-credit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer > .container > .box-credit > .box-logo {
  max-width: 14vw;
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-credit > .box-logo {
    max-width: 38.1vw;
    margin-bottom: 27px;
  }
}
.footer > .container > .box-credit > .box-logo > .link > .logo {
  width: 100%;
}
.footer > .container > .box-credit > .box-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer > .container > .box-credit > .box-text > .link,
.footer > .container > .box-credit > .box-text > .copyright {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  color: #dfdfdf;
  font-size: 0.85vw;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-credit > .box-text > .link,
  .footer > .container > .box-credit > .box-text > .copyright {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-credit > .box-text > .link,
  .footer > .container > .box-credit > .box-text > .copyright {
    font-size: 2.95vw;
  }
}
.footer > .container > .box-credit > .box-text > .copyright {
  margin-left: 27px;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.section-contact {
  max-width: 100%;
}
.section-contact > .container > .list-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-contact > .container > .list-contact > .contact {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 50vw;
  text-align: center;
}
.section-contact > .container > .list-contact > .contact:first-child {
  background-image: url(../../assets/imgs/contact/tel.png);
}
.section-contact > .container > .list-contact > .contact:last-child {
  background-image: url(../../assets/imgs/contact/mail.png);
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact {
    width: 100%;
  }
}
.section-contact > .container > .list-contact > .contact > .link {
  display: inline-block;
  padding: 91px 20px 35px;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact > .link {
    padding: 54px 20px 35px;
  }
}
.section-contact > .container > .list-contact > .contact > .link > .label {
  color: #ffffff;
  font-size: 1.5vw;
  margin-bottom: 28px;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact > .link > .label {
    font-size: 4.2vw;
    margin-bottom: 16px;
  }
}
.section-contact > .container > .list-contact > .contact > .link > .text {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  color: #ffffff;
  font-size: 3vw;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact > .link > .text {
    font-size: 8vw;
    margin-bottom: 12px;
  }
}
.section-contact > .container > .list-contact > .contact > .link > .notice {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  color: #ffffff;
  font-size: 1vw;
}
@media screen and (max-width: 1024px) {
  .section-contact > .container > .list-contact > .contact > .link > .notice {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact > .link > .notice {
    font-size: 3vw;
  }
}
.section-contact > .container > .list-contact > .contact > .link > .button {
  border: 1px solid #ffffff;
  border-radius: 50px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px 20px 50px;
}
.section-contact > .container > .list-contact > .contact > .link > .button > .text {
  color: #ffffff;
  font-size: 1.8vw;
  margin-right: 13px;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact > .link > .button > .text {
    font-size: 4.2vw;
  }
}
.section-contact > .container > .list-contact > .contact > .link > .button > .icon {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact > .link > .button > .icon {
    width: 39px;
    height: 39px;
  }
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.section-flow {
  background-color: #f3f7f5;
  padding: 48px 20px 20px 20px;
}
@media screen and (max-width: 480px) {
  .section-flow {
    padding: 45px 20px 20px 20px;
  }
}
.section-flow > .container {
  max-width: 90vw;
  margin: 0 auto;
}
.section-flow > .container > .box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .box-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.section-flow > .container > .box-title > .section-title {
  font-size: 1.9vw;
  margin-right: 27px;
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .box-title > .section-title {
    font-size: 2.9vw;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .box-title > .section-title {
    font-size: 6.9vw;
  }
}
.section-flow > .container > .box-title > .overview {
  font-size: 0.95vw;
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .box-title > .overview {
    font-size: 1.95vw;
  }
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .box-title > .overview {
    font-size: 3.45vw;
  }
}
.section-flow > .container > .box-title > .overview > span {
  background-color: #dbebe3;
  padding: 6px 0.9px 6px 9px;
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .box-title > .overview > span {
    padding: 6px 0.9px 5px 6px;
  }
}
.section-flow > .container > .list-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .list-flow {
    margin-left: 30%;
  }
}
.section-flow > .container > .list-flow > .slide-arrow {
  position: absolute;
  left: -150px;
  width: 42px;
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow > .slide-arrow {
    left: -42%;
  }
}
.section-flow > .container > .list-flow > .slide-arrow.prev-arrow {
  top: 60px;
}
.section-flow > .container > .list-flow > .slide-arrow.next-arrow {
  bottom: 60px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow > .slide-arrow.next-arrow {
    bottom: 90px;
  }
}
.section-flow > .container > .list-flow .flow {
  position: relative;
  max-width: 25%;
  width: 100%;
  text-align: center;
  padding: 41px 61px 28px 32px;
}
@media screen and (max-width: 1024px) {
  .section-flow > .container > .list-flow .flow {
    padding: 21px 41px 28px 32px;
  }
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .list-flow .flow {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow .flow {
    padding: 31px 40.9px 28px 8px;
  }
}
.section-flow > .container > .list-flow .flow:before {
  content: "";
  background-image: url(../../assets/imgs/flow/arrow.png);
  background-size: contain;
  background-position: center;
  width: 9px;
  height: 218px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .section-flow > .container > .list-flow .flow:before {
    height: 168px;
  }
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow .flow:before {
    height: 204px;
  }
}
.section-flow > .container > .list-flow .flow:first-child, .section-flow > .container > .list-flow .flow:nth-child(2), .section-flow > .container > .list-flow .flow:nth-child(3), .section-flow > .container > .list-flow .flow:nth-child(4) {
  background-color: #dbebe3;
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .list-flow .flow:first-child, .section-flow > .container > .list-flow .flow:nth-child(2), .section-flow > .container > .list-flow .flow:nth-child(3), .section-flow > .container > .list-flow .flow:nth-child(4) {
    background-color: transparent;
  }
}
.section-flow > .container > .list-flow .flow:nth-child(4):before, .section-flow > .container > .list-flow .flow:last-child:before {
  content: none;
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow .flow:nth-child(4):before, .section-flow > .container > .list-flow .flow:last-child:before {
    content: "";
  }
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .list-flow .flow > .container {
    width: 100%;
  }
}
.section-flow > .container > .list-flow .flow > .container > .number {
  position: relative;
  background-color: #ffffff;
  border-radius: 50px;
  width: 59px;
  height: 59px;
}
@media screen and (max-width: 1024px) {
  .section-flow > .container > .list-flow .flow > .container > .number {
    width: 39px;
    height: 39px;
  }
}
.section-flow > .container > .list-flow .flow > .container > .number > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #939393;
  font-size: 1.5vw;
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow .flow > .container > .number > span {
    font-size: 3.4vw;
  }
}
.section-flow > .container > .list-flow .flow > .container > .image {
  max-width: 11.8vw;
  width: 100%;
  margin-top: -40px;
  margin-bottom: 18px;
}
@media screen and (max-width: 820px) {
  .section-flow > .container > .list-flow .flow > .container > .image {
    max-width: 22.8vw;
  }
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow .flow > .container > .image {
    max-width: 100%;
    margin-bottom: 8px;
  }
}
.section-flow > .container > .list-flow .flow > .container > .text {
  font-size: 1vw;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 480px) {
  .section-flow > .container > .list-flow .flow > .container > .text {
    font-size: 3.9vw;
  }
}

body {
  font-family: "futura-pt", "dnp-shuei-mincho-pr6n", sans-serif;
  color: #000000;
  letter-spacing: 0.1em;
}
body.active {
  overflow: hidden;
}

img {
  width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}

.md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .md {
    display: block;
  }
}

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

.xs {
  display: none;
}
@media screen and (max-width: 480px) {
  .xs {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

section {
  position: relative;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
  transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
}

.button {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.button > .link {
  display: inline-block;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.9vw;
  padding: 6px 55px 6px 2px;
}
@media screen and (max-width: 820px) {
  .button > .link {
    font-size: 2vw;
  }
}
.button > .link > .icon {
  position: absolute;
  top: 50%;
  right: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 820px) {
  .button > .link > .icon {
    width: 23px;
  }
}
.button > .link:hover > .icon {
  -webkit-transform: translate(10px, -50%);
          transform: translate(10px, -50%);
}
.button.green > .link {
  border-bottom: 1px solid #007f41;
  color: #007f41;
}

.section-title {
  font-size: 2.4vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 820px) {
  .section-title {
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 480px) {
  .section-title {
    font-size: 7.5vw;
  }
}
.section-title > .english {
  display: block;
  color: #939393;
  font-size: 1vw;
  letter-spacing: 0.1em;
  margin-bottom: 42px;
}
@media screen and (max-width: 1024px) {
  .section-title > .english {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 820px) {
  .section-title > .english {
    font-size: 2vw;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .section-title > .english {
    font-size: 3vw;
    margin-bottom: 19px;
  }
}

.section-menu {
  margin-top: 32px;
}
.section-menu > .container {
  max-width: 90vw;
  margin: 0 auto;
}
.section-menu > .container > .list-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section-menu > .container > .list-anchor > .anchor {
  position: relative;
  border: 1px solid #727171;
  width: 50%;
}
.section-menu > .container > .list-anchor > .anchor:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #727171;
  height: 5px;
  width: 6px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.section-menu > .container > .list-anchor > .anchor:nth-child(even) {
  border-left: 0;
}
.section-menu > .container > .list-anchor > .anchor:nth-child(3), .section-menu > .container > .list-anchor > .anchor:nth-child(4), .section-menu > .container > .list-anchor > .anchor:nth-child(5) {
  border-top: 0;
}
.section-menu > .container > .list-anchor > .anchor > .link {
  display: inline-block;
  color: #727171;
  font-size: 3.7vw;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 12px 5px 23px;
}