@charset "UTF-8";
/* ---------- setting ---------- ---------- */
body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #14497c;
}

p {
  font-weight: 500;
}

main {
  display: block;
}
@media screen and (min-width: 810px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 809px) {
  main {
    font-size: 14px;
  }
  main img {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
.btn-pagetop
---------------------------------------------------------- */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  visibility: hidden;
}
.btn-pagetop:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.btn-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.btn-pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop.js-show:hover {
  opacity: 0.6;
}
.btn-pagetop.js-fixed {
  top: -60px;
  bottom: auto;
  position: absolute;
}

/* ----------------------------------------------------------
.area-modal
---------------------------------------------------------- */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 810px) {
  .area-modal ._modal-btn-close {
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 809px) {
  .area-modal ._modal-btn-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 810px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #fff;
  }
}
@media screen and (max-width: 809px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #000;
  }
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
@media print, screen and (min-width: 810px) {
  .area-modal ._modal-box {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
  }
}
@media screen and (max-width: 809px) {
  .area-modal ._modal-box {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
  }
}
.area-modal ._modal-box ._modal-head {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0 0 20px;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-body {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0px;
  right: 0px;
  padding: 20px;
  background: #ccc;
  box-sizing: border-box;
  overflow-y: scroll;
}
.area-modal ._modal-box ._modal-body ._t1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.area-modal ._modal-box ._modal-body ._t2 {
  font-size: 14px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-body ._t3 {
  font-size: 12px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-foot {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 7px 0 0 0;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-foot ._btn-do {
  display: block;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 14px;
  background: #666;
  color: #fff;
}
.area-modal ._modal-box ._modal-foot ._btn-do:hover {
  background: #333;
}

/* リセットCSS */
html, body {
  width: 100%;
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 810px) and (min-width: 1201px) {
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  body.js-index-main-start .area-wrapper {
    overflow: hidden;
  }
  body.page-sub .area-wrapper {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media print, screen and (min-width: 810px) and (min-width: 1201px) and (min-width: 810px) {
  .block-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 810px) and (min-width: 1201px) and (min-width: 810px) and (max-width: 1200px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 810px) and (min-width: 1201px) {
  body.page-index footer {
    visibility: hidden;
    z-index: -1;
  }
  body.page-index.js-index-main-start footer {
    visibility: visible;
    z-index: auto;
  }
  .area-footer {
    isolation: isolate;
    position: relative;
    margin-top: -14vw;
    padding: 18vw 0 0;
  }
  .area-footer img {
    width: 100%;
  }
  .area-footer ._inner {
    position: relative;
  }
  .area-footer:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 0 0;
    background: url(/common/images/footer/bg.webp?) center top no-repeat;
    background-size: 100% auto;
  }
  .area-footer:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20vw;
    background-color: #66D5CD;
    z-index: -1;
  }
  .area-footer ._logo {
    position: relative;
    text-align: center;
  }
  .area-footer ._links {
    position: relative;
    margin-top: 45px;
    text-align: center;
    display: flex;
    gap: 30px;
    flex-direction: column;
  }
  .area-footer ._copy {
    position: relative;
    background-color: #66D5CD;
    margin-top: 60px;
    border-top: 1px solid #fff;
    padding: 30px 0;
    text-align: center;
  }
  .area-footer ._copy small {
    font-size: 12px;
    text-align: center;
    line-height: 1.75;
    color: #fff;
  }
  .mod-footer-logo {
    display: inline-block;
    width: 140px;
  }
  .mod-footer-links1 {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .mod-footer-links1 li a {
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1.75;
    font-weight: bold;
    color: #fff;
  }
  .mod-footer-links2 {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .mod-footer-links2 li a {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: #fff;
  }
}
@media screen and (min-width: 810px) and (max-width: 1200px) {
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  body.js-index-main-start .area-wrapper {
    overflow: hidden;
  }
  body.page-sub .area-wrapper {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media screen and (min-width: 810px) and (max-width: 1200px) and (min-width: 810px) {
  .block-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 810px) and (max-width: 1200px) and (min-width: 810px) and (max-width: 1200px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media screen and (min-width: 810px) and (max-width: 1200px) {
  body.page-index footer {
    visibility: hidden;
    z-index: -1;
  }
  body.page-index.js-index-main-start footer {
    visibility: visible;
    z-index: auto;
  }
  .area-footer {
    isolation: isolate;
    position: relative;
    margin-top: -14vw;
    padding: 18vw 0 0;
  }
  .area-footer img {
    width: 100%;
  }
  .area-footer ._inner {
    position: relative;
  }
  .area-footer:before {
    content: "";
    display: block;
    position: absolute;
    inset: 0 0 0 0;
    background: url(/common/images/footer/bg.webp?) center top no-repeat;
    background-size: 100% auto;
  }
  .area-footer:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20vw;
    background-color: #66D5CD;
    z-index: -1;
  }
  .area-footer ._logo {
    position: relative;
    text-align: center;
  }
  .area-footer ._links {
    position: relative;
    margin-top: 3.75vw;
    text-align: center;
    display: flex;
    gap: 2.5vw;
    flex-direction: column;
  }
  .area-footer ._copy {
    position: relative;
    background-color: #66D5CD;
    margin-top: 5vw;
    border-top: 1px solid #fff;
    padding: 2.5vw 0;
    text-align: center;
  }
  .area-footer ._copy small {
    font-size: 1vw;
    text-align: center;
    line-height: 1.75;
    color: #fff;
  }
  .mod-footer-logo {
    display: inline-block;
    width: 11.6666666667vw;
  }
  .mod-footer-links1 {
    display: flex;
    justify-content: center;
    gap: 2.5vw;
  }
  .mod-footer-links1 li a {
    font-size: 1.6666666667vw;
    letter-spacing: 0.06em;
    line-height: 1.75;
    font-weight: bold;
    color: #fff;
  }
  .mod-footer-links2 {
    display: flex;
    justify-content: center;
    gap: 2.5vw;
  }
  .mod-footer-links2 li a {
    font-size: 1.1666666667vw;
    text-align: center;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: #fff;
  }
}
@media screen and (max-width: 809px) {
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    position: relative;
  }
  body.js-index-main-start .area-wrapper {
    overflow: hidden;
  }
  body.page-sub .area-wrapper {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
  body.page-index footer {
    visibility: hidden;
    z-index: -1;
  }
  body.page-index.js-index-main-start footer {
    visibility: visible;
    z-index: auto;
  }
  .area-footer {
    margin-top: -25.641025641vw;
    padding-top: 30.7692307692vw;
    isolation: isolate;
    position: relative;
    background: url(/common/images/footer/sp/bg.png?) center top no-repeat;
    background-size: 100% auto;
  }
  .area-footer img {
    width: 100%;
  }
  .area-footer ._inner {
    position: relative;
  }
  .area-footer ._logo {
    position: relative;
    text-align: center;
  }
  .area-footer ._links {
    position: relative;
    margin-top: 5.1282051282vw;
    text-align: center;
    display: flex;
    gap: 5.1282051282vw;
    flex-direction: column;
  }
  .area-footer ._copy {
    position: relative;
    background-color: #66D5CD;
    margin-top: 10.2564102564vw;
    border-top: 2px solid #fff;
    padding: 3.8461538462vw 0;
    text-align: center;
  }
  .area-footer ._copy small {
    font-size: 2.5641025641vw;
    text-align: center;
    line-height: 1.75;
    color: #fff;
  }
  .mod-footer-logo {
    display: inline-block;
    width: 21.7948717949vw;
  }
  .mod-footer-links1 {
    display: flex;
    gap: 2.8205128205vw;
    flex-direction: column;
  }
  .mod-footer-links1 li a {
    font-size: 4.1025641026vw;
    letter-spacing: 0.06em;
    line-height: 1.75;
    font-weight: bold;
    color: #fff;
  }
  .mod-footer-links2 {
    display: flex;
    justify-content: center;
    gap: 7.6923076923vw;
  }
  .mod-footer-links2 li a {
    font-size: 2.8205128205vw;
    text-align: center;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: #fff;
  }
}
@media print, screen and (min-width: 1024px) and (min-width: 1201px) {
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header {
    position: fixed;
    z-index: 100;
    transition-duration: 0.2s;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 105px;
    border-radius: 20px;
  }
  body.page-index .area-header {
    visibility: hidden;
    z-index: -1;
    opacity: 0;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  body.page-index.js-index-main-start.js-hide-menu .area-header {
    opacity: 0;
  }
  body.page-index.js-index-main-start.js-hide-menu.js-scroll-up .area-header {
    opacity: 1;
    background: #fff;
  }
  body.js-hide-menu .area-header {
    opacity: 0;
  }
  body.js-hide-menu.js-scroll-up .area-header {
    opacity: 1;
    background: #fff;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 15px;
    left: 38px;
  }
  .area-header ._logo.is-wh {
    display: none;
  }
  .area-header ._area-right {
    position: absolute;
    top: 22px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .area-header ._gmenu {
    display: flex;
  }
  .area-header ._menu-btn {
    display: none;
  }
  .mod-head-logo {
    display: block;
    width: 100px;
  }
  .mod-head-sitename ._ja {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
  }
  .mod-head-sitename ._en {
    margin: 0;
    margin-top: 7px;
    font-size: 12px;
    line-height: 1;
  }
  .mod-head-gmenu ul {
    display: flex;
    gap: 6px;
  }
  .mod-head-gmenu-item {
    display: block;
    padding: 0 12px;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 1.75;
    text-align: left;
    font-weight: bold;
    color: #14497c;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-item:hover {
    opacity: 0.8;
  }
  .mod-head-skip ul {
    display: flex;
    gap: 6px;
  }
  .mod-head-gmenu-skip {
    display: block;
    border-left: 2px solid #14497c;
    padding: 0 10px 0 25px;
    margin: 8px 0 0 25px;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: left;
    font-weight: bold;
    color: #14497c;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-skip:hover {
    opacity: 0.8;
  }
  .mod-head-btns {
    display: flex;
  }
  .mod-head-btn-contact {
    width: 230px;
    height: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid #14497c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: #14497c;
    position: relative;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-btn-contact:hover {
    background-color: #14497c;
    color: #fff;
  }
  .mod-head-btn-contact:hover:after {
    background-image: url(/common/images/icon/arrow_wh.svg);
  }
  .mod-head-btn-contact:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
    background: url(/common/images/icon/arrow.svg) left top no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
  .area-modal-menu {
    display: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header {
    position: fixed;
    z-index: 100;
    transition-duration: 0.2s;
    top: 1.6666666667vw;
    left: 1.6666666667vw;
    right: 1.6666666667vw;
    height: 8.75vw;
    border-radius: 1.6666666667vw;
  }
  body.page-index .area-header {
    visibility: hidden;
    z-index: -1;
    opacity: 0;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  body.page-index.js-index-main-start.js-hide-menu .area-header {
    opacity: 0;
  }
  body.page-index.js-index-main-start.js-hide-menu.js-scroll-up .area-header {
    opacity: 1;
    background: #fff;
  }
  body.js-hide-menu .area-header {
    opacity: 0;
  }
  body.js-hide-menu.js-scroll-up .area-header {
    opacity: 1;
    background: #fff;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 1.25vw;
    left: 3.1666666667vw;
  }
  .area-header ._logo.is-wh {
    display: none;
  }
  .area-header ._area-right {
    position: absolute;
    top: 1.8333333333vw;
    right: 3.3333333333vw;
    display: flex;
    align-items: center;
    gap: 2.3333333333vw;
  }
  .area-header ._gmenu {
    display: flex;
  }
  .area-header ._menu-btn {
    display: none;
  }
  .mod-head-logo {
    display: block;
    width: 8.3333333333vw;
  }
  .mod-head-sitename ._ja {
    margin: 0;
    font-size: 1.1666666667vw;
    font-weight: 500;
    line-height: 1;
  }
  .mod-head-sitename ._en {
    margin: 0;
    margin-top: 0.5833333333vw;
    font-size: 1vw;
    line-height: 1;
  }
  .mod-head-gmenu ul {
    display: flex;
    gap: 0.5vw;
  }
  .mod-head-gmenu-item {
    display: block;
    padding: 0 1vw;
    font-size: 1.6666666667vw;
    letter-spacing: 0.06em;
    line-height: 1.75;
    text-align: left;
    font-weight: bold;
    color: #14497c;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-item:hover {
    opacity: 0.8;
  }
  .mod-head-skip ul {
    display: flex;
    gap: 0.5vw;
  }
  .mod-head-gmenu-skip {
    display: block;
    border-left: 2px solid #14497c;
    padding: 0 0.8333333333vw 0 2.0833333333vw;
    margin: 0.6666666667vw 0 0 2.0833333333vw;
    font-size: 1.1666666667vw;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-align: left;
    font-weight: bold;
    color: #14497c;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-skip:hover {
    opacity: 0.8;
  }
  .mod-head-btns {
    display: flex;
  }
  .mod-head-btn-contact {
    width: 19.1666666667vw;
    height: 5vw;
    border-radius: 2.5vw;
    background: rgba(255, 255, 255, 0);
    border: 0.1666666667vw solid #14497c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6666666667vw;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: #14497c;
    position: relative;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-btn-contact:hover {
    background-color: #14497c;
    color: #fff;
  }
  .mod-head-btn-contact:hover:after {
    background-image: url(/common/images/icon/arrow_wh.svg);
  }
  .mod-head-btn-contact:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 0.8333333333vw);
    right: 1.6666666667vw;
    background: url(/common/images/icon/arrow.svg) left top no-repeat;
    background-size: contain;
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
  .area-modal-menu {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  body.js-gmenu-active {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header {
    position: fixed;
    z-index: 100;
    transition-duration: 0.2s;
    top: 2.5641025641vw;
    left: 2.5641025641vw;
    right: 2.5641025641vw;
    height: 19.7435897436vw;
    border-radius: 5.1282051282vw;
  }
  body.page-index .area-header {
    visibility: hidden;
    z-index: -1;
    opacity: 0;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  body.page-index.js-index-main-start.js-hide-menu .area-header {
    opacity: 0;
  }
  body.page-index.js-index-main-start.js-hide-menu.js-scroll-up .area-header {
    opacity: 1;
    background: #fff;
  }
  body.js-gmenu-active .area-header {
    visibility: visible !important;
    z-index: 100 !important;
    opacity: 1 !important;
  }
  body.js-gmenu-active .area-header ._logo.is-wh {
    display: block;
  }
  body.js-gmenu-active.js-scroll-up .area-header {
    background: transparent !important;
  }
  body.js-hide-menu .area-header {
    opacity: 0;
  }
  body.js-hide-menu.js-scroll-up .area-header {
    opacity: 1;
    background: #fff;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 4.6153846154vw;
    left: 4.6153846154vw;
  }
  .area-header ._logo.is-wh {
    display: none;
  }
  .area-header ._area-right {
    position: absolute;
    top: 4.6153846154vw;
    right: 5.1282051282vw;
    display: flex;
    align-items: center;
    gap: 3.8461538462vw;
  }
  .area-header ._gmenu {
    display: none;
  }
  .mod-head-logo {
    display: block;
    width: 15.3846153846vw;
  }
  .mod-head-btns {
    display: flex;
  }
  .mod-head-btn-contact {
    width: 32.3076923077vw;
    height: 11.2820512821vw;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0);
    border: 2px solid #14497c;
    padding-right: 0.5128205128vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.8461538462vw;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: 0.06em;
    color: #14497c;
    position: relative;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  body.js-gmenu-active .mod-head-btn-contact {
    border-color: #fff;
    color: #fff;
  }
  body.js-gmenu-active .mod-head-btn-contact:after {
    background-image: url(/common/images/icon/arrow_wh.svg);
  }
  .mod-head-btn-contact:hover {
    background-color: #14497c;
    color: #fff;
  }
  .mod-head-btn-contact:hover:after {
    background-image: url(/common/images/icon/arrow_wh.svg);
  }
  .mod-head-btn-contact:after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 1.5384615385vw);
    right: 2.5641025641vw;
    background: url(/common/images/icon/arrow.svg) left top no-repeat;
    background-size: contain;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
  .mod-modal-menu-btn {
    position: relative;
    width: 11.2820512821vw;
    height: 11.2820512821vw;
    border: 2px solid #14497c;
    border-radius: 50%;
  }
  .mod-modal-menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #14497c;
    height: 2px;
    left: 3.5897435897vw;
    right: 3.5897435897vw;
  }
  .mod-modal-menu-btn span:nth-child(1) {
    top: 3.5897435897vw;
  }
  .mod-modal-menu-btn span:nth-child(2) {
    top: 4.8717948718vw;
  }
  .mod-modal-menu-btn span:nth-child(3) {
    top: 6.1538461538vw;
  }
  body.js-gmenu-active .mod-modal-menu-btn {
    border-color: #fff;
  }
  body.js-gmenu-active .mod-modal-menu-btn span {
    left: 2.5641025641vw;
    right: 2.5641025641vw;
    background: #fff;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(1) {
    position: absolute;
    top: 4.8717948718vw;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(3) {
    position: absolute;
    top: 4.8717948718vw;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -51.2820512821vw);
    background: url(/common/images/modal-menu/bg2.png) bottom center no-repeat;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    background-color: #14497c;
    padding: 5.1282051282vw 0 10.2564102564vw 0;
    color: #fff;
  }
  .area-modal-menu > div {
    width: 100%;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu:after {
    content: "";
    display: block;
    position: absolute;
    top: 28.2051282051vw;
    left: 0;
    background: url(/common/images/modal-menu/bg1.png) left top no-repeat;
    background-size: contain;
    width: 100vw;
    height: 17.6923076923vw;
  }
  .area-modal-menu a {
    color: #fff;
  }
  .mod-sitelinks {
    width: 100%;
    padding: 0 7.6923076923vw;
  }
  .mod-sitelinks li {
    border-bottom: 0.5128205128vw solid #fff;
  }
  .mod-sitelinks-item {
    display: block;
    font-weight: bold;
    font-size: 4.8717948718vw;
    padding: 7.1794871795vw 0;
    position: relative;
    letter-spacing: 0.05em;
  }
  .mod-sitelinks-item:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    background: url(/common/images/icon/arrow_wh.svg) left top no-repeat;
    background-size: contain;
    width: 5.1282051282vw;
    height: 5.1282051282vw;
  }
  .mod-head-skip {
    width: 100%;
    padding: 0 7.6923076923vw;
  }
  .mod-head-gmenu-skip {
    display: block;
    font-weight: bold;
    font-size: 3.5897435897vw;
    padding: 7.1794871795vw 0;
    position: relative;
    letter-spacing: 0.05em;
  }
}