/*
--------------------------------
    font
--------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
/*
/*
--------------------------------
    common
--------------------------------
*/
/* ---- container ---- */
.global_container {
  width: 100%;
  padding-top: 100px;
  transition: padding-top 0.2s ease-out;
}
@media screen and (max-width: 999px) {
  .global_container {
    padding-top: 84px;
  }
}
@media screen and (max-width: 767px) {
  .global_container {
    padding-top: 72px;
  }
}
/* ---- header ---- */
body > header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 102;
  width: 100%;
  background-color: #fff;
}
/* ---- pc header / global navigation ---- */
.header_pc {
  position: relative;
  z-index: 3;
  height: 100px;
  padding: 0 160px 0 40px;
  background-color: #fff;
  box-shadow: 0 15px 20px rgba(23, 23, 26, 0.05);
}
.header_pc .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
.header_pc .site_id {
  /*width: 66px;*/
  width: 80px;
}
.header_pc .site_id img {
  display: block;
}
.header_pc nav {
  width: calc(100% - 64px);
}
.header_pc nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 50px;
}
.header_pc nav ul.target li {
  margin-right: 40px;
}
.header_pc nav ul.global li {
  margin-right: 45px;
}
.header_pc nav .target a {
  display: inline-block;
  position: relative;
  padding-left: 13px;
  color: #17171a;
  font-size: 1.4rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.header_pc nav .target a:hover, .header_pc nav .target a:active {
  color: #858593;
}
.header_pc nav .target a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #dc4405;
  transform: translateY(-50%);
}
.header_pc nav .global a {
  display: inline-block;
  position: relative;
  height: 50px;
  padding-right: 16px;
  color: #17171a;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 50px;
  white-space: nowrap;
  transition: color 0.2s;
}
.header_pc nav .global a::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #17171a;
  border-bottom: 2px solid #17171a;
  transform: translate(-2px, -60%) rotate(45deg);
  transition: transform 0.2s ease-out, border-color 0.2s;
}
.header_pc nav .global a:hover, .header_pc nav .global a:active, .header_pc nav .global a.is_open {
  color: #dc4405;
}
.header_pc nav .global a:hover::after, .header_pc nav .global a:active::after, .header_pc nav .global a.is_open::after {
  border-color: #dc4405;
  transform: translate(-2px, -25%) rotate(-135deg);
}
@media screen and (max-width: 1180px) {
  .header_pc nav ul.global li {
    margin-right: 21px;
  }
}
@media screen and (max-width: 999px) {
  .header_pc {
    display: none;
  }
}
/* ---- pc utility navigation ---- */
.header_pc .utility {
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
}
.header_pc .utility dl {
  height: 50px;
  overflow: hidden;
  transition: height 0.3s ease-out;
}
.header_pc .utility dl dt {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  padding-left: 44px;
  background-repeat: no-repeat;
  background-position: 8px 50%;
  background-size: 28px 28px;
  cursor: pointer;
}
.header_pc .utility dl dt::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-2px, -60%) rotate(45deg);
  transition: transform 0.2s ease-out;
}
.header_pc .utility dl dt span {
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.header_pc .utility dl:hover dt::after, .header_pc .utility dl:active dt::after {
  transform: translate(-2px, -25%) rotate(-135deg);
}
.header_pc .utility dl.search {
  background-color: #403d3a;
}
.header_pc .utility dl.search dt {
  background-image: url(../images/common/icon_search_wh.png);
}
.header_pc .utility dl.search dd {
  padding: 0 9px 10px;
}
.header_pc .utility dl.search input {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  background-color: #fff;
  color: #17171a;
  font-size: 1.4rem;
  line-height: 34px;
}
.header_pc .utility dl.search input::-moz-placeholder {
  color: #858593;
}
.header_pc .utility dl.search input:-ms-input-placeholder {
  color: #858593;
}
.header_pc .utility dl.search input::placeholder {
  color: #858593;
}
.header_pc .utility dl.search button {
  width: 100%;
  height: 34px;
  margin-top: 5px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
.header_pc .utility dl.language {
  padding-bottom: 4px;
  background-color: #dc4405;
}
.header_pc .utility dl.language dt {
  background-image: url(../images/common/icon_lang.png);
}
.header_pc .utility dl.language dd {
  padding: 0 9px 20px;
}
.header_pc .utility dl.language li {
  padding-top: 11px;
  font-size: 1.3rem;
  text-transform: uppercase;
}
.header_pc .utility dl.language a {
  color: #fff;
  opacity: 1;
  transition: opacity 0.2s;
}
.header_pc .utility dl.language a:hover, .header_pc .utility dl.language a:active {
  opacity: 0.7;
}
.header_pc .utility dl.language dd span {
  display: block;
  padding: 10px 0 9px;
  border-bottom: 1px solid #fff;
  color: #fff;
}
/* ---- pc megamenu ---- */
.cover {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}
.cover.is_open {
  opacity: 1;
  pointer-events: auto;
}
.megamenu_bg {
  position: absolute;
  right: 160px;
  top: 100%;
  z-index: 1;
  width: 880px;
  height: 0;
  background-color: #fff;
  opacity: 0;
  transition: height 0.1s ease-out, opacity 0.2s ease-out;
}
.megamenu {
  position: absolute;
  right: 160px;
  top: 100%;
  z-index: 2;
  width: 880px;
}
.megamenu > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 35px 45px;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}
.megamenu > div.is_open {
  opacity: 1;
  pointer-events: auto;
}
.megamenu .head {
  padding-bottom: 15px;
  border-bottom: 1px solid #c5c4c4;
}
.megamenu .head a {
  display: inline-block;
  padding: 5px 0 5px 24px;
  background-image: url(../images/common/icon_circle_arrow_or.png);
  background-repeat: no-repeat;
  background-position: 0 70%;
  background-size: 20px;
  color: #17171a;
  font-size: 1.6rem;
  font-weight: 900;
  transition: color 0.2s;
}
.megamenu .head a:hover, .megamenu .head a:active {
  color: #858593;
}
.megamenu .body {
  padding-top: 7px;
}
.megamenu .body > ul {
  display: flex;
  flex-wrap: wrap;
}
.megamenu .body > ul > li {
  margin: 10px 40px 0 0;
}
.megamenu .body > ul > li:last-child {
  margin-right: 0;
}
.megamenu .body > ul > li > a {
  display: inline-block;
  padding: 5px 0 5px 24px;
  background-image: url(../images/common/icon_circle_arrow_bk.png);
  background-repeat: no-repeat;
  background-position: 0 70%;
  background-size: 20px;
  color: #17171a;
  font-size: 1.6rem;
  font-weight: 900;
  transition: color 0.2s;
}
.megamenu .body > ul > li > a:hover, .megamenu .body > ul > li > a:active {
  color: #858593;
}
.megamenu .body > ul > li ul {
  margin: 5px 0 0 24px;
}
.megamenu .body > ul > li ul li a {
  display: inline-block;
  padding: 5px 0;
  color: #17171a;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.megamenu .body > ul > li ul li a:hover, .megamenu .body > ul > li ul li a:active {
  color: #858593;
}
.megamenu .body > ul > li ul li a[target=_blank] {
  padding: 5px 24px 5px 0;
  background-image: url(../images/common/icon_outbound_bk.svg);
  background-repeat: no-repeat;
  background-position: 100% 70%;
  background-size: 14px;
}
@media screen and (max-width: 1180px) {
  .megamenu_bg {
    width: 720px;
  }
  .megamenu {
    width: 720px;
  }
}
@media screen and (max-width: 999px) {
  .megamenu_bg {
    display: none;
  }
  .megamenu {
    display: none;
  }
}
/* ---- sp header ---- */
.header_sp {
  display: none;
}
.sp_menus {
  display: none;
}
@media screen and (max-width: 999px) {
  .header_sp {
    display: flex;
    height: 84px;
    background-color: #fff;
    box-shadow: 0 0 24px rgba(23, 23, 26, 0.05);
  }
  .header_sp .site_id {
    width: calc(100% - 225px);
    padding-left: 40px;
  }
  .header_sp .site_id a {
    display: flex;
    align-items: center;
    width: 164px;
    height: 100%;
  }
  .header_sp .site_id a img {
    display: block;
  }
  .header_sp button {
    display: block;
    position: relative;
    width: 75px;
    height: 100%;
    overflow: hidden;
  }
  .header_sp button span {
    display: none;
  }
  .header_sp button.language {
    background-color: #dc4405;
    background-image: url(../images/common/icon_lang.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 32px;
  }
  .header_sp button.language.is_open::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    bottom: -7px;
    width: 14px;
    height: 14px;
    background-color: #f8dacd;
    transform: rotate(45deg);
  }
  .header_sp button.search {
    background-color: #403d3a;
    background-image: url(../images/common/icon_search_wh.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 32px;
  }
  .header_sp button.search.is_open::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 7px);
    bottom: -7px;
    width: 14px;
    height: 14px;
    background-color: #575757;
    transform: rotate(45deg);
  }
  .header_sp button.menu {
    background-color: #151515;
  }
  .header_sp button.menu span:first-child {
    display: block;
    padding-top: 36px;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
  }
  .header_sp button.menu span:last-child {
    display: block;
    position: absolute;
    left: calc(50% - 17px);
    top: 32px;
    width: 34px;
    height: 2px;
    background-color: #fff;
    transition: background-color 0.2s cubic-bezier(0.1, 0.64, 0.32, 1);
  }
  .header_sp button.menu span:last-child::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 2px;
    background-color: #fff;
    transform: rotate(0deg) translateY(-9px);
    transition: transform 0.2s cubic-bezier(0.1, 0.64, 0.32, 1);
  }
  .header_sp button.menu span:last-child::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 34px;
    height: 2px;
    background-color: #fff;
    transform: rotate(0deg) translateY(10px);
    transition: transform 0.2s cubic-bezier(0.1, 0.64, 0.32, 1);
  }
  .header_sp button.menu.is_open span:last-child {
    background-color: #151515;
  }
  .header_sp button.menu.is_open span:last-child::before {
    transform: rotate(135deg) translateY(0);
  }
  .header_sp button.menu.is_open span:last-child::after {
    transform: rotate(225deg) translateY(0);
  }
  .sp_menus {
    display: block;
    position: absolute;
    left: 0;
    top: 84px;
    z-index: 101;
    width: 100%;
    transition: top 0.2s ease-out;
  }
}
@media screen and (max-width: 767px) {
  .header_sp {
    height: 72px;
  }
  .header_sp .site_id {
    width: calc(100% - 180px);
    padding-left: 6vw;
  }
  .header_sp .site_id a {
    width: 135px;
  }
  .header_sp button {
    width: 60px;
  }
  .header_sp button.language {
    background-size: 28px;
  }
  .header_sp button.search {
    background-size: 28px;
  }
  .header_sp button.menu span:first-child {
    padding-top: 34px;
  }
  .header_sp button.menu span:last-child {
    top: 25px;
  }
  .sp_menus {
    top: 72px;
  }
}
/* ---- sp header: language ---- */
.sp_menus .language {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.2s ease-out, opacity 0.2s ease-out;
}
.sp_menus .language.is_open {
  opacity: 1;
}
.sp_menus .language ul {
  padding-bottom: 1px;
  background-color: #f8dacd;
}
.sp_menus .language ul li {
  border-top: 1px solid #fff;
}
.sp_menus .language ul li:first-child {
  border-top-style: none;
}
.sp_menus .language ul li a {
  display: block;
  padding: 17px 12vw 17px 6vw;
  background-image: url(../images/common/icon_circle_arrow_or.png);
  background-repeat: no-repeat;
  background-position: 96% 50%;
  background-size: 20px;
  color: #17171a;
  font-size: 1.4rem;
}
.sp_menus .language ul li a:hover, .sp_menus .language ul li a:active {
  color: #17171a;
}
.sp_menus .language ul li li a {
  padding-left: 10vw;
}
.sp_menus .language ul li span {
  display: block;
  padding: 18px 12vw 18px 6vw;
  border-bottom: 1px solid #fff;
  color: #17171a;
  font-size: 1.4rem;
}
/* ---- sp header: search ---- */
.sp_menus .search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.2s ease-out, opacity 0.2s ease-out;
}
.sp_menus .search.is_open {
  opacity: 1;
}
.sp_menus .search form {
  display: flex;
  justify-content: space-between;
  padding: 15px 3vw;
  background-color: #575757;
}
.sp_menus .search form input {
  width: calc(100% - 52px - 3vw);
  height: 48px;
  padding: 0 15px;
  background-color: #fff;
  color: #17171a;
  font-size: 1.6rem;
  line-height: 48px;
}
.sp_menus .search form input::-moz-placeholder {
  color: #858593;
}
.sp_menus .search form input:-ms-input-placeholder {
  color: #858593;
}
.sp_menus .search form input::placeholder {
  color: #858593;
}
.sp_menus .search form button {
  width: 52px;
  height: 48px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
/* ---- sp header: main menu ---- */
.sp_menus .main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}
.sp_menus .main.is_open {
  opacity: 1;
  pointer-events: auto;
}
.sp_menus .main .head {
  display: flex;
  background-color: #eee;
  border-bottom: 1px solid #434343;
}
.sp_menus .main .head a {
  display: block;
  width: calc(100% - 60px);
  padding: 22px 0 22px calc(6vw + 27px);
  color: #17171a;
  font-size: 1.6rem;
  font-weight: 900;
  background-image: url(../images/common/icon_circle_arrow_or.png);
  background-repeat: no-repeat;
  background-position: 6vw 50%;
  background-size: 20px;
}
.sp_menus .main .head a:hover, .sp_menus .main .head a:active {
  color: #17171a;
}
.sp_menus .main .head button {
  display: block;
  position: relative;
  width: 60px;
  overflow: hidden;
  text-indent: -400px;
}
.sp_menus .main .head button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 1px;
  background-color: #434343;
}
.sp_menus .main .head button::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #17171a;
  border-bottom: 2px solid #17171a;
  transform: translate(-2px, -60%) rotate(45deg);
  transition: transform 0.2s ease-out;
}
.sp_menus .main .head button.is_open::after {
  transform: translate(-2px, -25%) rotate(-135deg);
}
.sp_menus .main .body {
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-out;
}
.sp_menus .main .body li {
  border-bottom: 1px solid #a1a1a1;
  background-color: #434343;
}
.sp_menus .main .body li a {
  display: block;
  padding: 15px 6vw 15px calc(12vw + 27px);
  color: #fff;
  font-size: 1.6rem;
  background-image: url(../images/common/icon_circle_arrow_wh.png);
  background-repeat: no-repeat;
  background-position: 12vw 50%;
  background-size: 20px;
}
.sp_menus .main .body li a:hover, .sp_menus .main .body li a:active {
  color: #17171a;
}
.sp_menus .main .target {
  display: flex;
  flex-wrap: wrap;
  padding: 7px 7px 10px 10px;
  background-color: #434343;
}
.sp_menus .main .target li {
  width: 50%;
  margin-top: 3px;
}
.sp_menus .main .target li:first-child {
  width: 100%;
}
.sp_menus .main .target a {
  display: block;
  margin-right: 3px;
  padding: 22px 0;
  color: #17171a;
  font-size: 1.4rem;
  background-color: #fff;
  text-align: center;
}
.sp_menus .main .target a::before {
  content: "●";
  display: inline-block;
  margin-right: 0.1em;
  color: #dc4405;
  transform: scale(0.6);
}
.sp_menus .main .target a:hover, .sp_menus .main .target a:active {
  color: #17171a;
}
/* ---- footer ---- */
.global_container > footer .main {
  padding: 90px 6%;
  background-color: #ea5504;
}
.global_container > footer .bottom {
  padding: 15px 6%;
  background-color: #ede1db;
}
.global_container > footer .campus_sites {
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
}
.global_container > footer .campus_sites li {
  width: 48%;
}
/*.global_container > footer .campus_sites a {
  text-transform: uppercase;
}
*/
.global_container > footer .banners {
  position: relative;
  max-width: 1040px;
  margin: 40px auto 0;
  padding: 30px 40px;
  background-color: #fff;
}
.global_container > footer .banners ul {
  overflow: hidden;
}
.global_container > footer .banners ul.slick-initialized {
  display: block;
}
.global_container > footer .banners ul .slick-list {
  margin-right: -20px;
}
.global_container > footer .banners ul .slick-slide {
  margin-right: 20px;
}
.global_container > footer .banners ul img {
  width: 100%;
}
.global_container > footer .banners button {
  position: absolute;
  top: calc(50% - 32px);
}
.global_container > footer .banners button.prev {
  left: -32px;
}
.global_container > footer .banners button.next {
  right: -32px;
}
.global_container > footer .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1040px;
  margin: 40px auto 0;
}
.global_container > footer .row .col:first-child {
  width: calc(100% - 130px);
}
.global_container > footer .row .col:first-child > a {
  display: block;
  width: 240px;
}
.global_container > footer .row .col:last-child {
  width: 98px;
  padding-bottom: 3px;
}
.global_container > footer .row .affiliated {
  display: flex;
  margin-top: 25px;
}
.global_container > footer .row .affiliated li {
  margin-right: 30px;
}
.global_container > footer .row .affiliated a {
  display: inline-block;
  padding: 3px 24px 3px 0;
  background-image: url(../images/common/icon_outbound_wh.svg);
  background-repeat: no-repeat;
  background-position: 100% 60%;
  background-size: 15px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  opacity: 1;
  transition: opacity 0.2s;
}
.global_container > footer .row .affiliated a:hover, .global_container > footer .row .affiliated a:active {
  opacity: 0.7;
}
.global_container > footer .row .navigation {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.global_container > footer .row .navigation a {
  display: inline-block;
  margin: 8px 0.8em 0 0;
  padding-right: 0.8em;
  border-right: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  opacity: 1;
  transition: opacity 0.2s;
}
.global_container > footer .row .navigation a:hover, .global_container > footer .row .navigation a:active {
  opacity: 0.7;
}
.global_container > footer .row .navigation li:last-child a {
  margin-right: 0;
  padding-right: 0;
  border-right-style: none;
}
.global_container > footer .bottom .inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.global_container > footer .bottom .inner .sns {
  display: flex;
  width: 198px;
}
.global_container > footer .bottom .inner .sns li {
  width: 42px;
  margin-right: 10px;
}
.global_container > footer .bottom .inner .sns li:last-child {
  margin-right: 0;
}
.global_container > footer .bottom .inner .sns a {
  opacity: 1;
  transition: opacity 0.2s;
}
.global_container > footer .bottom .inner .sns a:hover, .global_container > footer .bottom .inner .sns a:active {
  opacity: 0.7;
}
.global_container > footer .bottom .inner .copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .global_container > footer .main {
    padding: 13vw 6vw 11vw;
  }
  .global_container > footer .bottom {
    padding: 20px 5vw 25px;
  }
  .global_container > footer .campus_sites {
    display: block;
    max-width: none;
    margin: 0;
  }
  .global_container > footer .campus_sites li {
    width: auto;
  }
  .global_container > footer .campus_sites li:last-child {
    margin-top: 6vw;
  }
  .global_container > footer .banners {
    max-width: none;
    margin: 12vw 20px 0;
    padding: 6vw 0;
  }
  .global_container > footer .banners ul {
    z-index: 1;
  }
  .global_container > footer .banners ul .slick-list {
    margin: 0;
  }
  .global_container > footer .banners ul .slick-slide {
    margin: 0 40px;
  }
  .global_container > footer .banners button {
    top: calc(50% - 25px);
    z-index: 2;
  }
  .global_container > footer .banners button.prev {
    left: -20px;
  }
  .global_container > footer .banners button.next {
    right: -20px;
  }
  .global_container > footer .row {
    display: block;
    max-width: none;
    margin: 9vw 0 0;
  }
  .global_container > footer .row .col:first-child {
    width: auto;
  }
  .global_container > footer .row .col:first-child > a {
    margin: 0 auto;
  }
  .global_container > footer .row .col:last-child {
    margin: 8vw auto 0;
    padding-bottom: 0;
  }
  .global_container > footer .row .affiliated {
    display: block;
    margin-top: 6vw;
  }
  .global_container > footer .row .affiliated li {
    margin: 3vw 0 0;
    text-align: center;
  }
  .global_container > footer .row .affiliated a {
    transition: none;
  }
  .global_container > footer .row .affiliated a:hover, .global_container > footer .row .affiliated a:active {
    opacity: 1;
  }
  .global_container > footer .row .navigation {
    margin-top: 9vw;
  }
  .global_container > footer .row .navigation li {
    width: 50%;
    border-top: 2px solid #e37345;
    border-right: 2px solid #e37345;
  }
  .global_container > footer .row .navigation li:nth-child(2n) {
    border-right-style: none;
  }
  .global_container > footer .row .navigation li:nth-child(-n+2) {
    border-top-style: none;
  }
  .global_container > footer .row .navigation a {
    display: block;
    margin: 0;
    padding: 3vw 0;
    border-right-style: none;
    text-align: center;
    transition: none;
  }
  .global_container > footer .row .navigation a:hover, .global_container > footer .row .navigation a:active {
    opacity: 1;
  }
  .global_container > footer .bottom .inner {
    display: flex;
    flex-direction: column;
    max-width: none;
    height: 65px;
    margin: 0;
  }
  .global_container > footer .bottom .inner .sns {
    width: 216px;
  }
  .global_container > footer .bottom .inner .sns li {
    margin: 0 6px;
  }
  .global_container > footer .bottom .inner .sns li:last-child {
    margin-right: 6px;
  }
  .global_container > footer .bottom .inner .sns a {
    transition: none;
  }
  .global_container > footer .bottom .inner .sns a:hover, .global_container > footer .bottom .inner .sns a:active {
    opacity: 1;
  }
  .global_container > footer .bottom .inner .copyright {
    text-align: center;
  }
}
/* ---- page top button ---- */
.page_top_button {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 99;
  width: 53px;
  height: 53px;
  background-image: url(../images/common/btn_pagetop.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: translateY(100px);
  transition: transform 0.3s ease-out;
}
.page_top_button.is_show {
  transform: translateY(0);
}
.page_top_button.is_floor {
  position: absolute;
  bottom: 83px;
  transform: translateY(0);
}
#page_top_ceil {
  position: absolute;
  left: 0;
  top: 150vh;
  bottom: 0;
  z-index: -100;
  width: 1px;
  pointer-events: none;
}
#page_top_floor {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -100;
  width: 1px;
  height: 73px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .page_top_button,
#page_top_floor,
#page_top_floor {
    display: none;
  }
}
/* ---- button ---- */
a.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 240px;
  min-height: 70px;
  padding: 18px 60px;
  background-color: #403d3a;
  background-image: url(../images/common/icon_circle_arrow_ghost_wh.svg);
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 22px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  transition: background-color 0.2s;
}
a.button:hover, a.button:active {
  background-color: #7d7771;
}
a.button.orange {
  background-color: #dc4405;
}
a.button.orange:hover, a.button.orange:active {
  background-color: #fb743c;
}
a.button.purple {
  background-color: #26357e;
}
a.button.purple:hover, a.button.purple:active {
  background-color: #6872a5;
}
a.button.w100 {
  width: 100%;
}
a.button.long_txt {
  padding: 18px 50px 18px 25px;
}
@media screen and (max-width: 767px) {
  a.button {
    width: 100%;
  }
}
/* ---- circle arrow button ---- */
button.arrow {
  display: block;
  position: relative;
  width: 64px;
  max-width: 100%;
  height: 64px;
  max-height: 100%;
  border-radius: 50%;
  background-color: #403d3a;
  overflow: hidden;
  text-indent: -400px;
  transition: background-color 0.2s;
}
button.arrow:hover, button.arrow:active {
  background-color: #7d7771;
}
button.arrow.orange {
  background-color: #dc4405;
}
button.arrow.orange:hover, button.arrow.orange:active {
  background-color: #fb743c;
}
button.arrow.prev::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 8px);
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(4px) rotate(45deg);
}
button.arrow.next::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 8px);
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateX(-4px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  button.arrow {
    width: 50px;
    height: 50px;
    transition: none;
  }
  button.arrow:hover, button.arrow:active {
    color: #403d3a;
  }
  button.arrow.orange:hover, button.arrow.orange:active {
    color: #dc4405;
  }
  button.arrow.prev::after {
    left: calc(50% - 6px);
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    transform: translateX(3px) rotate(45deg);
  }
  button.arrow.next::after {
    left: calc(50% - 6px);
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    transform: translateX(-3px) rotate(45deg);
  }
}
/* ---- youtube modal ---- */
.modal_youtube {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 103;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: scale(0.95);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  pointer-events: none;
}
.modal_youtube.is_open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.modal_youtube iframe {
  position: absolute;
}
.modal_youtube button {
  display: block;
  position: absolute;
  right: 50px;
  top: 50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  text-indent: -400px;
  transition: background-color 0.2s;
}
.modal_youtube button::after {
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  top: 13px;
  width: 14px;
  height: 14px;
  background-image: url(../images/common/icon_close.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.modal_youtube button:hover, .modal_youtube button:active {
  background-color: #ccc;
}
@media screen and (max-width: 767px) {
  .modal_youtube button {
    right: 5vw;
    top: 5vw;
    transform: none;
  }
  .modal_youtube button:hover, .modal_youtube button:active {
    background-color: #fff;
  }
}