@charset "UTF-8";
/****************************************************************************
        変数
****************************************************************************/
/****************************************************************************
        共通
****************************************************************************/
.page-start {
  margin-top: 120px;
}

.page-end {
  margin-top: 120px;
}

.contents-wrap {
  max-width: 1400px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

.scroll-top {
  position: fixed;
  bottom: 3%;
  right: 20px;
  z-index: 8000;
}

/****************************************************************************
        ヘッダー
****************************************************************************/
.main-logo {
  max-width: 200px;
  padding: 32px 0 0 24px;
}

.main-logo img {
  width: 100%;
}

.header-container {
  justify-content: space-between;
}

nav.menu-list_wrap {
  gap: 90px;
}

ul.menu-list01_area {
  gap: 46px;
  padding-top: 34px;
}

li.header-nav_link {
  width: 300px;
  padding: 34px 24px;
  border-bottom: 1px solid #cacaca;
  position: relative;
}

li.header-nav_link::after {
  content: "";
  display: block;
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-position: 0 0;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: 0.3s;
}

li.header-nav_link:hover::after {
  right: 14px;
}

/****************************************************************************
        フッター
****************************************************************************/
#footer {
  padding: 60px 0;
  position: relative;
}

#footer::before {
  content: "";
  display: block;
  background-color: #1b1b1b;
  border-radius: 42px 42px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

.footer-contact_area {
  margin: 0 auto;
  justify-content: space-around;
  align-items: center;
  gap: 90px;
  row-gap: 30px;
  border-bottom: solid 1px #e6e6e6;
  padding-bottom: 60px;
}

.footer-contact_en {
  font-size: 5vw;
}

.footer-contact_btn {
  font-size: 30px;
  font-weight: bold;
  border: solid 1px #e6e6e6;
  padding: 24px 40px;
}

.footer-info_area {
  margin-top: 60px;
  justify-content: space-between;
}

ul.footer-nav_list {
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

li.footer-nav {
  font-size: 14px;
}

p.copyright {
  font-size: 12px;
  margin-top: 60px;
}

/****************************************************************************
        レスポンシブ
****************************************************************************/
/**      PC　以上      **/
@media screen and (max-width: 1180px) {
  .main-logo {
    max-width: 150px;
  }
  nav.menu-list_wrap {
    gap: 32px;
  }
  ul.menu-list01_area {
    gap: 26px;
  }
  li.header-nav_link {
    width: 200px;
  }
}
/**      Tab　以上      **/
@media screen and (min-width: 821px) {
  .sp_part {
    display: none;
  }
  .header-floating_menu {
    opacity: 0;
    transition: 0.4s;
    z-index: -5;
  }
  .header-menu_wrap {
    position: fixed;
    top: 24px;
    right: 40px;
    z-index: 9999;
  }
  .menu-icon {
    width: 74px;
    height: 74px;
    background-color: #fff;
    border: dotted 1px #000;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  .menu-icon span {
    width: 44px;
    height: 1px;
    background-color: #000;
    transition: 0.6s;
  }
  .menu-icon span:nth-child(1) {
    position: absolute;
    top: 28px;
    left: 12px;
    transform: rotate(-28deg);
  }
  .menu-icon span:nth-child(2) {
    position: absolute;
    top: 42px;
    left: 15px;
    transform: rotate(-28deg);
  }
  .menu-icon p.menu-text {
    position: absolute;
    right: -11px;
    top: 60%;
    font-size: 10px;
  }
  .menu-icon_open span:nth-child(1) {
    transform: rotate(-215deg);
    top: 32px;
    left: 15px;
  }
  .menu-icon_open span:nth-child(2) {
    transform: rotate(215deg);
    top: 32px;
    left: 15px;
  }
  .menu-list_open {
    right: 0;
  }
  .nav-menu_list {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9990;
    background-color: #fff;
    transition: 0.6s;
  }
  .menu-list_open {
    right: 0;
  }
  .menu-list_menu {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 17vw;
    z-index: 9999;
    color: #bababa;
  }
  .nav-menu_wrap {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    justify-content: center;
    gap: 80px;
  }
  ul.menu-list_area {
    width: 50%;
  }
  li.menu-list_sp {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: dotted 1px #979797;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  li.menu-list_sp a.menu-text_en {
    font-size: 40px;
  }
  li.menu-list_sp p.menu-text_jp {
    font-size: 20px;
  }
}
/**      Tab　以下      **/
@media screen and (max-width: 820px) {
  .pc_part {
    display: none;
  }
  .header-container {
    display: none;
  }
  .main-logo {
    max-width: 200px;
    padding: 32px 0 0 24px;
  }
  .main-logo img {
    width: 100%;
  }
  .header-menu_wrap {
    position: fixed;
    top: 24px;
    right: 40px;
    z-index: 9999;
  }
  .menu-icon {
    width: 64px;
    height: 64px;
    background-color: #fff;
    border: dotted 1px #000;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  .menu-icon span {
    width: 32px;
    height: 1px;
    background-color: #000;
    transition: 0.6s;
  }
  .menu-icon span:nth-child(1) {
    position: absolute;
    top: 23px;
    left: 12px;
    transform: rotate(-28deg);
  }
  .menu-icon span:nth-child(2) {
    position: absolute;
    top: 35px;
    left: 15px;
    transform: rotate(-28deg);
  }
  .menu-icon p.menu-text {
    position: absolute;
    right: -11px;
    top: 60%;
    font-size: 10px;
  }
  .menu-icon_open span:nth-child(1) {
    transform: rotate(-215deg);
    top: 30px;
    left: 15px;
  }
  .menu-icon_open span:nth-child(2) {
    transform: rotate(215deg);
    top: 30px;
    left: 15px;
  }
  .menu-list_open {
    right: 0;
  }
  .nav-menu_list {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9990;
    background-color: #fff;
    transition: 0.6s;
  }
  .menu-list_open {
    right: 0;
  }
  nav {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .menu-list_menu {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 17vw;
    z-index: 9999;
    color: #bababa;
  }
  .nav-menu_wrap {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    display: block;
  }
  li.menu-list_sp {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: dotted 1px #979797;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  li.menu-list_sp a.menu-text_en {
    font-size: 28px;
  }
  li.menu-list_sp p.menu-text_jp {
    font-size: 14px;
  }
  #footer {
    padding: 50px 0;
  }
  #footer::before {
    border-radius: 0;
  }
  .footer-contact_area {
    flex-wrap: wrap;
    gap: 60px;
    row-gap: 30px;
  }
  .footer-contact_en {
    font-size: 9vw;
  }
  .footer-contact_btn {
    font-size: 22px;
    font-weight: bold;
    border: solid 1px #e6e6e6;
    padding: 24px 40px;
  }
  .footer-info_area {
    justify-content: center;
  }
  ul.footer-nav_list {
    display: none;
  }
  li.footer-nav {
    font-size: 14px;
  }
  p.copyright {
    font-size: 12px;
    margin-top: 60px;
  }
}
/**      SP　以下      **/
@media screen and (max-width: 480px) {
  .contents-wrap {
    width: calc(100% - 40px);
  }
  .scroll-top {
    bottom: 3%;
    right: 10px;
    max-width: 50px;
  }
  .scroll-top img {
    width: 100%;
  }
  .main-logo {
    max-width: 170px;
    padding: 32px 0 0 24px;
  }
  .main-logo img {
    width: 100%;
  }
  .header-menu_wrap {
    top: 20px;
    right: 26px;
  }
  .menu-icon {
    width: 54px;
    height: 54px;
  }
  .menu-icon span {
    width: 27px;
  }
  .menu-icon span:nth-child(1) {
    top: 20px;
  }
  .menu-icon span:nth-child(2) {
    position: absolute;
    top: 29px;
  }
  .menu-icon p.menu-text {
    position: absolute;
    right: -11px;
    top: 60%;
    font-size: 10px;
  }
  .menu-icon_open span:nth-child(1) {
    transform: rotate(-215deg);
    top: 24px;
    left: 13px;
  }
  .menu-icon_open span:nth-child(2) {
    transform: rotate(215deg);
    top: 24px;
    left: 13px;
  }
  .menu-list_menu {
    font-size: 17vw;
  }
  li.menu-list_sp a.menu-text_en {
    font-size: 22px;
  }
  li.menu-list_sp p.menu-text_jp {
    font-size: 12px;
  }
}