/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Noto+Serif+JP:wght@600;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@200;400;500;600;700&display=swap');

/*
body {
  -webkit-overflow-scrolling: touch;
}
*/

.pcOnly {
    display: none !important;
}

.container {
  padding-left: 10px;
  padding-right: 10px;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/* common */
.left {
  float: left;
}

.clearFix:after {
  content: "-";
  clear: both;
  display: block;
  height: 0;
  visibility: hidden;
}

/* right menu hack */
.global-menu-right .in-page-menu ul li .a-wrap {
  padding-bottom: 4px;
}

.global-menu-right {
  margin-top: 50px !important;
}

/* a effects */
a {
  text-decoration:none;
}

a.transparentLink {
  text-decoration:none;
  opacity: 1;
}

a.transparentLink:hover {
  text-decoration:none;
  opacity: 0.6;
  filter: alpha(opacity=60);
}

a.movingToLeft {
  display: inline-block;
  transition: transform cubic-bezier(.5,.1,.3,1) 0.4s;
}

a.movingToLeft:hover {
  display: inline-block;
  transform: translateX(-12px);
}

a.movingToRight {
  display: inline-block;
  transition: transform cubic-bezier(.5,.1,.3,1) 0.4s;
}

a.movingToRight:hover {
  display: inline-block;
  transform: translateX(12px);
}

/* inview */
.inview {
  opacity: 0;
}

.fadeInUp {
  animation-duration: 1.0s;
  animation-delay: 0.2s;
}

.fadeIn2 {
  animation-duration: 1.7s;
  animation-delay: 0.2s;
  animation-timing-function: ease-in;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeIn2-quick {
  animation-duration: 0.6s;
  animation-delay: 0.0s;
  animation-timing-function: normal;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.fadeIn2-delay {
  animation-duration: 2.1s;
  animation-delay: 0.6s;
  animation-timing-function: ease-in;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 35%, 0);
    transform: translate3d(0, 35%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp2 {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 35%, 0);
    transform: translate3d(0, 35%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp2 {
  animation-duration: 2.0s;
  animation-delay: 0.3s;
  animation-timing-function: normal;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

.fadeInUp2-delay {
  animation-duration: 2.0s;
  animation-delay: 0.6s;
  animation-timing-function: normal;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
}

.fadeInAll {
  animation-duration: 1.5s;
  animation-delay: 0.1s;
  animation-name: fadeInAll;
  animation-timing-function: ease-in-out;
}

@keyframes fadeInAll {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* animation */ 
.rotateView {
    opacity: 0;
    transform: translate(-25px, 60px) rotate(-25deg);
    transition: 1s cubic-bezier(.17,.94,.32,1.29);
}

.rotateViewAfter {
    opacity: 1;
    transform: translate(0px, 0px) rotate(0deg);
}

/* global navigation */
.global-nav {
  width: 1090px;
  margin: auto;
  padding: 10px 0 10px;
}

.global-nav ul {
  list-style: none;
}

.global-nav ul li {
  font-size: 12pt;
  letter-spacing: .27em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
  margin-right: 40px;
}

.global-nav ul li:nth-last-of-type(1) {
  margin-right: 0px;
}

.global-nav ul li a {
  position: relative;
  display: inline-block;
  color: #8E9B90;
  padding: 10px 0px 10px; 
}

.global-nav ul li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #8E9B90;
  transform: scale(0, 1); 
  transform-origin: left top;
  transition: transform 0.2s ease;
}

.global-nav ul li a:hover::after {
  transform: scale(1, 1);
}

/* common header */
.common-header {
  margin-top: 10px;
}

/* common header logo */
.common-header .logo {
  display: block;
  width: 60vw;
  max-width: 250px;
}

.common-header .logo img {
  width: 100%;
}

/* global nav2 */

.global-nav2 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start; 
  margin-left: 10px;
  margin-top: 8px;
}

.global-nav2 ul li {
  font-size: 10pt;
  letter-spacing: .1em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
  margin-left: 9px;
}

@media screen and (max-height:540px) {
  .global-nav2 ul {
    margin-top: 5px;
  }

  .global-nav2 ul li {
    margin-bottom: 5px;
  }

  .global-menu-right .in-page-menu {
    padding-bottom: 100px;
  }
}


.global-nav2 ul li img {
  width: 80px;
}

.global-nav2 ul li:nth-of-type(1) {
  margin-left: 0px;
}

.global-nav2 ul li:nth-last-of-type(1) {
  margin-right: 0px;
}

.global-nav2 ul li a {
  position: relative;
  display: inline-block;
  color: #8E9B90;
  padding: 10px 0px 10px; 
  transition: color .3s;
}

.global-nav2 ul li a.active {
  color: #bdd1bd;
}

/* global nav3 */

.global-nav3 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-top: 30px;

}

.global-nav3 ul li {
  font-size: 13pt;
  letter-spacing: .1em;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
}

@media screen and (max-height:540px) {
  .global-nav3 ul {
    margin-top: 5px;
  }

  .global-nav3 ul li {
    font-size: 11pt;
    letter-spacing: .1em;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    position: relative;
    margin-bottom: 5px;
  }
}

.global-nav3 ul li:nth-last-of-type(1) {
  margin-right: 0px;
}

.global-nav3 ul li a {
  position: relative;
  display: inline-block;
  color: #8E9B90;
  padding: 10px 0px 10px; 
  transition: color .3s;
}

.global-nav3 ul li a.active {
  color: #bdd1bd;
}

/*
.global-nav2 ul li a::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #8E9B90;
  transform: scale(0, 1); 
  transform-origin: left top;
  transition: transform 0.2s ease;
}

.global-nav2 ul li a:hover::after {
  transform: scale(1, 1);
}
*/

/* footer */
.footer {
  margin-top: 150px;
  margin-bottom: 50px;
}

.footer  .logo {
  width: 90px;
  margin: auto;
}

.footer  .logo img {
  width: 100%;
}

.footer  .copyright {
  margin-top: 20px;
  font-size: 10pt;
  font-weight: bold;
  text-align: center;
  color: #A1B5A5;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1em;
  font-size: 8pt;
}

/*
::-webkit-scrollbar {
width: 8px;
height: 8px;
}

::-webkit-scrollbar-track {
border-radius: 5px;
box-shadow: 0 0 2px #888 inset;
}

::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #eee;
}
*/