:root {
  scroll-padding: 100px;
}

/*---------------
   WordPress globalnavi add
---------------*/
.header ul.nav01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header ul.nav01 li {
  margin: 0;
  padding: 0;
}

.nav01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.nav01 li.header-btn a {
  display: inline-block;
  transition: 0.5s;
  color: #ffffff;
  position: relative;
  z-index: 910;
  text-decoration: none;
}

.nav01 li.header-btn a:hover {
  color: #389ba9;
  transition: 0.3s ease;
}

.nav01 li.c-btn.slide a {
  display: inline-block;
  color: #ffffff;
  padding: 10px 20px !important;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav01 li.c-btn.slide a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
  border-radius: 30px;
}

.nav01 li.c-btn.slide a:hover {
  color: #fff;
}

.nav01 li.c-btn.slide a:hover::after {
  transform: scale(1, 1);
}

.nav01 li:last-child {
  margin-right: 0;
}

/*---------------
header
---------------*/

.header {
  position: fixed;
  z-index: 500;
  font-weight: bold;
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.2rem;
  font-family: "novel-display", sans-serif;
  font-weight: 100;
  font-style: normal;
  padding: 0 3%;
  background: #1a1a1a;
}

.header h1 img {
  position: relative;
  z-index: 100;
  height: 80px;
  display: block;
}

header h1 img:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.header-btn a:hover {
  transition: 0.5s;
  color: #389ba9;
}

.header .nav01 li {
  font-size: 1.8rem !important;
}

.nav01 li {
  display: flex;
  align-items: center;
  padding: 25px 0;
  position: relative;
  margin-right: 25px;
}

nav {
  text-align: center;
}

.nav01 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style-type: none;
  text-align: left;
}

nav li a {
  display: inline-block;
  transition: 0.5s;
  color: #ffffff;
  position: relative;
  z-index: 910;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.nav01 li:nth-last-child(-n+2):hover:before {
  background: none;
}

/*-- button motion --*/
.c-btn.slide {
  background-color: #389ba9;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 30px;
}

.c-btn.slide::after {
  background-color: #155a63;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-btn.slide:hover {
  color: #fff;
}

.c-btn.slide:hover::after {
  transform: scale(1, 1);
}

/*---------------
  header hamburger　menu
  ---------------*/
body.menu-open {
  overflow: hidden;
}

.main, .main img {
  margin-top: 100px; 
}

.sp {
  display: none;
}

.menu-btn {
  position: fixed;
  z-index: 90;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
}

#menu-btn-check {
  display: none;
}

/* click open menu */
.menu-content {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  font-size: 2rem;
  display: none;
  box-sizing: border-box;
  overflow-x: hidden;
}

#menu-btn-check:checked ~ .menu-content {
  display: block;
  transform: translateX(0);
}

.menu-content a {
  position: relative;
  z-index: 5001;
}

.sub-header {
  text-align: left;
}

#index_drawer .menu-content {
  opacity: 0;
}

#index_drawer .menu-content.active {
  opacity: 1;
}

.menu-content.active {
  display: block;
}

.menu-content ul {
  width: 300px;
  max-height: 100%;
  margin: 100px auto;
}

.menu-content ul li {
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #1a1a1a;
  margin: 10px;
  position: relative;
}

.menu-content span {
  margin-bottom: -20px;
}

.menu-content span:hover {
  opacity: 0.5;
  transition: 0.8s;
}

.menu-content li:nth-last-child(-n+2):hover {
  opacity: 0.5;
  transition: 0.5s;
}

.header-drawer-btn {
  width: 65%;
  display: flex;
  align-items: center;
  position: absolute;
  background-color: #1a1a1a;
  text-align: center;
  border-radius: 30px;
}

.header-drawer-btn:first-child {
  margin: 30px 0;
}

.header-drawer-btn span {
  color: #ffffff;
  font-size: 2.2rem;
  letter-spacing: 0.2rem;
  text-align: center;
}

.header-drawer-btn:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.header-drawer-btn-footer {
  width: 70%;
  display: flex;
  align-items: center;
  position: absolute;
  background-color: #1a1a1a;
  text-align: center;
}

.header-drawer-btn-footer:first-child {
  margin: 30px 0;
}

.header-drawer-btn-footer span {
  color: #ffffff;
  font-weight: bold;
  font-size: 1em;
  letter-spacing: 0.2rem;
  text-align: center;
}

.header-drawer-btn-footer:hover {
  opacity: 0.8;
  transition: 0.5s;
}

/*---- navigation ---*/

#page-header .header-nav {
  display: flex;
  width: 100%;
  margin: -57px 0 0;
  justify-content: space-between;
}

#page-header .header-nav ul {
  display: flex;
}

.hamburger-menu {
  display: none;
}

.main img {
  position: relative;
  z-index: -1;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.main {
  display: inline-block;
}

/*-- hamburger menu large --*/

.logo-menu {
  padding: 10px 6%;
  text-align: left;
}

.logo-menu a {
  z-index: 4000;
}

.nav_content_columns {
  display: flex;
  justify-content: center;
  margin: 50px 8% 0;
  gap: 30px;
}

.nav_content_columns_item {
  width: 33%;
  text-align: left;
  font-weight: bold;
}

.nav_content_columns_item span {
  font-family: "eurostile-extended", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  transform: scale(0.8, 1);
  display: block;
  width: 100% / $scale;
  transform-origin: left top;
  transform: scaleX($scale);
}

.nav_content_full {
  display: flex;
  margin: 50px 8% 0;
  text-align: center;
  border-top: 2px solid #1a1a1a;
  font-weight: bold;
}

.nav_content_full p {
  font-size: 2rem;
  margin: 0 auto;
  padding-top: 40px;
}

.nav_content_full a {
  color: #1a1a1a;
}

.nav_content_full_item {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  margin: 0 auto;
}

.nav_content_full_item a {
  font-size: 1.8rem;
}

/*-- sp --*/
.nav_content_columns-sp {
  display: flex;
  justify-content: center;
  margin: 100px 8% 0;
  gap: 30px;
}

.nav_content_columns_item-sp {
  width: 50%;
  text-align: left;
  font-weight: bold;
}

.nav_content_columns_item-sp span {
  margin-bottom: -25px;
  font-family: "eurostile-extended", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  transform: scale(0.8, 1);
  display: block;
  width: 100% / $scale;
  transform-origin: left top;
  transform: scaleX($scale);
}

/*---------
 footer 
 ----------*/

.footer {
  text-align: center;
}

footer {
  line-height: 1.0;
  background-position: center top;
  background-color: #056181;
  letter-spacing: 0.1rem;
}

.footer-top {
  display: flex;
  padding: 20px 0 20px;
}

.footer-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.footer-left {
  width: 30%;
  padding: 45px 30px;
  text-align: left;
}

.footer-right {
  width: 70%;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.footer-right-box {
  width: 33%;
  margin-left: 50px;
}

.footer-right-under {
  width: 70%;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.footer-right-under p {
  line-height: 3.0;
  padding-bottom: 5px;
  font-size: 1.6rem;
  margin-top: 50px;
}

.footer-right-under p:first-child {
  padding-right: 50px;
}

.footer-right-under1 {
  width: 50%;
}

.footer-right-under2 {
  width: 50%;
}

.footer-small {
  display: flex;
}

.footer-small a {
  color: #ffffff;
}

.company {
  margin-top: 40px;
  text-align: left;
  color: #ffffff;
  line-height: 3rem;
}

.company-name {
  font-size: 2.5rem;
  text-align: left;
  margin: -5px 0 20px 0;
}

.company-name p {
  font-size: 1.8rem;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom a {
  color: #ffffff;
}

.footer-bottom li {
  padding-bottom: 20px;
}

.footer-bottom small {
  letter-spacing: 0.1em;
  color: #ffffff;
  font-family: Verdana, "Droid Sans", "メイリオ";
}

.border {
  border-top: solid 1px #ffffff;
  width: 70%;
}

.sub {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.footer-nav {
  align-items: center;
  width: 85%;
  margin: 50px auto 10px;
}

.footer-nav ul {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-around;
  list-style-type: none;
}

.footer-nav ul li a {
  list-style: none;
  color: rgb(255, 255, 255);
}

.footer-nav a:hover {
  opacity: 0.5;
}

.footer-title {
  line-height: 3.0;
  padding-bottom: 5px;
  font-size: 20px;
  text-align: left;
}

.footer-title a {
  color: #ffffff;
}

.footer-title:hover {
  opacity: 0.5;
  transition: .5s;
}

.footer-title span {
  font-family: "eurostile-extended", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  transform: scale(0.85, 1);
  display: block;
  width: 100% / $scale;
  transform-origin: left top;
  transform: scaleX($scale);
}

.footer-title p {
  margin-top: -10px;
  display: block;
  font-size: 2rem;
  text-align: left;
  line-height: 1.5rem
}

.footer-title-second {
  line-height: 3.0;
  padding-bottom: 5px;
  text-align: left;
  margin-top: 50px;
}

.footer-title-second p {
  margin-top: -10px;
  display: block;
  font-size: 2rem;
}

.footer-title-second a {
  color: #ffffff;
}

.footer-title-second:hover {
  opacity: 0.5;
  transition: .5s;
}

.footer-title-second span {
  font-family: "eurostile-extended", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  transform: scale(0.85, 1);
  display: block;
  width: 100% / $scale;
  transform-origin: left top;
  transform: scaleX($scale);
}


.footer-privacy {
  padding-bottom: 5px;
  font-size: 1.6rem;
  text-align: center;
  margin-top: 70px;
}

.footer-privacy a {
  color: #ffffff;
}

.footer-privacy:hover {
  opacity: 0.5;
  transition: .5s;
}

.footer-privacy span  {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2.0;
}

.footer_nav_list img {
  padding-bottom: 50px;
  margin: 8px;
}

.footer_nav_list {
  line-height: 1.5em;
  width: 100%;
  margin-bottom: 60px;
  font-size: 19px;
  text-align: right;
}

.nav_content_columns_footer-sp {
  display: flex;
  justify-content: center;
  margin: 100px 8% 0;
  gap: 30px;
}

.nav_content_columns_item_footer-sp {
  width: 50%;
  text-align: left;
  font-weight: bold;
}

.nav_content_columns_item_footer-sp span {
  margin-bottom: -25px;
  font-family: "eurostile-extended", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 5rem;
  transform: scale(0.8, 1);
  display: block;
  width: 100% / $scale;
  transform-origin: left top;
  transform: scaleX($scale);
}

.nav_content_full_footer {
  display: flex;
  margin: 50px 8% 0;
  text-align: center;
  font-weight: bold;
}

.nav_content_full_footer a:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.nav_content_full_footer:first-child {
  margin-top: 30px;
}

.nav_content_full_footer p {
  margin: 0 auto;
  padding-top: 40px;
  width: 100%;
  text-align: center;
}

.nav_content_full_footer a {
  color: #ffffff;
}

.nav_content_full_item_footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
  margin: 0 auto;
  border-top: 2px solid #ffffff;
  width: 100%;
}

.nav_content_full_item_footer a {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.account {
  font-weight: normal;
  margin-top: 10px;
  font-size: 17px;
  text-align: right;
}

.border {
  width: 80%;
  margin: 0 auto;
}

/* copyright */
.copy {
  font-size: 1.6rem;
  color: #ffff;
  margin-top: 25px;
}

.copy a {
  color: #ffff;
}

.copy span {
  font-size: 1.6rem;
  vertical-align: -2px;
}

.copy-sp {
  font-size: 1.6rem;
  color: #ffff;
  margin: 50px auto 5px;
}

.copy-sp a {
  color: #ffff;
}

.copy-sp span {
  font-size: 2.2rem;
  vertical-align: -3px;
}

.recaptcha p {
  font-size: 1.5rem;
  width: 85%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 20px;
  color: #ffffff;
}