@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #e4e2cf;
  overflow-y: scroll;
  position: relative;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}
.mainSite {
  width: 100%;
  padding: 0;
  margin: 0;
}
.wrapper {
  position: relative;
  text-align: center;
}
.inner {
  width: 60%;
	min-width: 800px;
  margin: 0 auto;
  padding: 5% 0;
}
a {
  display: block;
}

/*--------------------
LOADING
---------------------*/
	
.loading_wrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #e4e2cf;
}
.logo {
width: 40%;
	min-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1000;
  opacity: 0;
}

/*--------------------
ANIMATION
---------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: all 2s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transition: all 2s;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 4s;
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeOut {
  animation-name: fadeOutAnime;
  animation-duration: 2s;
 
  animation-iteration-count: none;
  animation-timing-function: ease;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fadeOutAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
	display: none;
  }
}
.slideInY{
  animation-name: slideInAnimeY;
animation-duration:2s;
animation-iteration-count:none;
animation-timing-function:ease;
animation-delay: 0.5s;
animation-direction:normal;
	animation-fill-mode: forwards;
}
 
@keyframes slideInAnimeY{
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
	
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------
MENU
---------------------*/
header {
  /*opacity: 0;*/
  position: fixed;
  z-index: 299;
  translate: none;
	    align-items: center;
}
nav.header_nav {
  position: fixed;
  top: 5%;
  right: 5%;
  width: 50px;
  z-index: 300;
}
.nav_inner {
  display: flex;
  display: -webkit-flex;
  -webkit-justify-content: center;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  height: 60px;
  margin: 0 auto;
}
nav.header_nav ul {
  display: -webkit-flex;
  justify-content: center;
  padding: 0;
  width: auto;
  vertical-align: middle;
  box-sizing: border-box;
  z-index: 300;
  align-items: center;
  height: 50px;
}
nav.header_nav ul li {
  vertical-align: middle;
  padding: 0 1.5% 0 0;
}
nav.header_nav ul li a {
  display: block;
  transition: 0.8s;
}
nav.header_nav ul li a:hover {
  opacity: 0.7;
  transition: 0.8s;
}
nav.header_nav ul li a img {
  height: 1vw;
  min-height: 16px;
  max-width: inherit;
  margin: 0 auto;
}
header {
height: auto;
    position: fixed;
    width: 50px;
    top: 3vw;
    right: 5vw;
    display: flex;
    flex-direction: column;
	justify-content: center;
}
nav.header_nav {
  z-index: 777;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/*hamburger-menu*/

.menu_bg {
  width: 50px;
  height: 50px;
	position: relative;
  z-index: 779;
  background-color: #000;
	margin: 0 auto 30px;
}

.sns_icon {
    width: 40px;
    height: 40px;
	z-index: 779;
	position: relative;
}
.sns_icon a{
	transition: .7s;
}
.sns_icon a:hover{
	transition: .7s;
	opacity: .7;
}


.menu {
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  z-index: 779;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.menu__line {
  background: #fff;
  display: block;
  height: 3px;
  position: absolute;
  transition: transform .3s;
  width: 100%;
}
.menu__line--top {
  top: 0;
}
.menu__line--center {
  top: 50%;
  transform: translateY(-50%);
}
.menu__line--bottom {
  bottom: 0;
}
.menu__line--top.active {
  top: 10px;
  transform: rotate(45deg);
}
.menu__line--center.active {
  transform: scaleX(0);
}
.menu__line--bottom.active {
  bottom: 7px;
  transform: rotate(-45deg);
}
/*gnav*/
.gnav {
  background-color: #e4e2cf;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto;
  width: 100%;
  z-index: 778;
}
.gnav__wrap {
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: inherit;
}
.gnav__menu__item {
  width: 100%;
  vertical-align: middle;
}
.gnav__menu__item:last-child {
  border: none;
}
.gnav__menu__item a {
  color: #fff;
  font-size: clamp(18px, 6vw, 22px);
  font-weight: 700;
  text-decoration: none;
  transition: .5s;
  cursor: default;
  padding: 0;
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
nav.header_nav ul.gnav__menu {
  width: 80%;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
nav.header_nav ul.gnav__menu li {
  text-align: center;
  padding: 0 0 4vw;
}
nav.header_nav ul.gnav__menu li:last-child {
  padding: 0;
}
nav.header_nav ul.gnav__menu li:first-child {
  border-left: none;
}
nav.header_nav ul.gnav__menu li img {
  height: 6vw;
  max-height: 35px;
}
nav.header_nav ul li a {
  text-align: center;
  font-size: clamp(16px, 5vw, 20px);
}
/*humberger-menuここまで*/
.sns_wrap {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
}
/*--------------------
TOP
---------------------*/
.top .inner {
  width: 100%;
  padding: 0;
}
.billing {
  width: 50%;
  margin: 5% auto;
}
/*--------------------
INTRODUCTION
---------------------*/
.intro_lead_01 {
  margin: 0 auto 15%;
}
h1.midashi_title {
  margin: 0 auto 5%;
}
h1.midashi_title img {
  object-fit: cover;
  height: 3vw;
  min-height: 20px;
  max-height: 50px;
}
.intro_lead_02 {
  margin: 0 auto 3%;
  font-size: clamp(18px, 2vw, 24px);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.text {
  color: #44423c;
  text-align: justify;
  text-align-last: left;
  font-weight: 500;
}
/*--------------------
STORY
---------------------*/
.story_lead {
  margin: 0 auto 3%;
  font-size: clamp(18px, 2vw, 24px);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
/*--------------------
FOOTER
---------------------*/
footer .inner{
	padding: 5% 0 10%;
}

.titlelogo {
  width: 40%;
  margin: 0 auto 3%;
}
.footer_date {
  width: 20%;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
	
	.inner {
  width: 80%;
	min-width: 500px;
}
	
}
@media screen and (max-width: 768px) {
  .wrapper {
    margin: 50px auto 0;
  }
  .inner {
    width: 80%;
	  min-width: inherit;
    padding: 20% 0;
  }
	.logo {
    width: 60%;
		min-width: inherit;
    padding: 0;
	}
  /*--------------------
MENU
---------------------*/
	
	header {
width: 100%;
        background-color: #000;
        height: 50px;
        top: 0;
        right: 0;
	}
  .menu_bg {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0%;
    right: 0%;
  }
	.sns_icon {
    width: 30px;
    height: 30px;
    z-index: 779;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
}
  .menu {
    top: 50%;
    right: 5%;
    left: inherit;
    transform: translate(0, -50%);
  }
  nav.header_nav ul.gnav__menu li {
    height: auto;
    line-height: inherit;
    padding: 0 0 12%;
  }
  nav.header_nav ul.gnav__menu li img {
    max-height: 24px;
  }
  /*--------------------
TOP
---------------------*/
  h1.midashi_title {
    margin: 0 auto 15%;
  }
  h1.midashi_title img {
    height: 7vw;
  }
  /*--------------------
INTRODUCTION
---------------------*/
  .intro .inner {
    padding: 20% 0 0;
  }
  .intro_lead_01 {
    margin: 0 auto 30%;
	          max-width: 450px;
  }
  .intro_lead_02 {
    margin: 0 auto 10%;
    font-size: clamp(18px, 5.5vw, 24px);
  }
  /*--------------------
STORY
---------------------*/
  .story_lead {
    margin: 0 auto 10%;
    font-size: clamp(18px, 5.5vw, 24px);
  }
  /*--------------------
FOOTER
---------------------*/
  footer .inner {
    padding: 10% 0 30%;
  }
  .titlelogo {
    width: 80%;
    margin: 0 auto 7%;
  }
  .footer_date {
    width: 40%;
  }
}
@media screen and (max-width: 500px) {
  /*--------------------
LOADING
---------------------*/
  /*--------------------
TOP
---------------------*/
  /*--------------------
MENU
---------------------*/
  /*--------------------
INTRODUCTION
---------------------*/
  /*--------------------
STORY
---------------------*/
  /*--------------------
FOOTER
---------------------*/
}