@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;}

body {
  color: #545454; /* RGB */
  font-family: 'Klee One', cursive;
font-size: 1.6em;
  line-height: 2.8rem;
  text-align: center;
}


html,body{
  height: 100%;
}
body:after {/*擬似要素をつくる*/
  position: fixed;/*固定配置*/
  top: 0; left: 0;/*左上に固定*/
  width: 100%;
  height: 100%;/*画面全体を覆う*/
  content: "";
  
  background: #f89174;/*保険用*/
  background: -moz-radial-gradient(circle 500px at center, #cef6f8 0%,#a4c6f4 100%);
  background: -webkit-radial-gradient(circle 500px at center, #cef6f8 0%,#a4c6f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cef6f8', endColorstr='#a4c6f4',GradientType=0 );
  background: radial-gradient(circle 500px at center, #cef6f8 0%,#a4c6f4 100%);
  z-index: -1;
}

main {
  background-image: url("../images/common/bg_shadow 2.png"),url("../images/common/bg_shadow3.png");
  background-size: 30%;
  background-position: top 0% right 0%,bottom 0% left 0%;
  background-repeat: no-repeat;
  background-attachment: fixed,scroll;
} 
@media (max-width: 800px) {
.main {
  background-size: 50%;
  }
}

section h1{
  font-size: 3.0rem;
}

section h2 {
  font-size: 3.0rem;
  font-weight: 300;
}
a:hover {
  opacity: 0.5;
}
.none{
  display: none
}
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.mask{
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.mask::before{
  position: absolute;
  content: "";
  transform:scale(0);
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.mask:hover::before{
  animation: circle 1.25s;
}
@keyframes circle{
  0%{
    transform: scale(0);
    opacity: 1;
  }
  30%{
    opacity: 1
  }
  100%{
    transform: scale(2);
  }
}

.header {
  height: 50px;
  width:100%;
  background-color: rgba(255,255,255,0.9);
  position: fixed;
  margin: 0 auto;
  padding: 5px;
  box-sizing: border-box;
  z-index: 999;
  
}
.header__picture-sp {
  height: 40px;
  display: block;
  margin: auto;
}
.header__picture{
  display: none;
}
.header__navigation {
 
}
.header__navigation.open {
  
	left: 0;
	opacity: 1;
}

@media screen and (max-width:767px){
.toggle_btn{
  display: block;
  position: fixed;
  top:10px;
  left: 10px;
  width: 24px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 9999;
}
/*
.open .toggle_btn{
  left: 330px;
}
*/
.toggle_btn span{
  display: block;
    position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1){
  top: 4px;
}
.toggle_btn span:nth-child(2){
  top: 14px;
}
.toggle_btn span:nth-child(3){
  bottom: 4px;
}
/*
.open .toggle_btn span{
  -webkit-transform:rotate(360deg);
  transform: rotate(360deg);
}
.open .toggle_btn span:nth-child(1){
  -webkit-transform:translate(-1px,4px)rotate(-45deg);
  transform: translate(-1px,4px)rotate(-45deg);
}
.open .toggle_btn span:nth-child(3){
  -webkit-transform:translate(-1px,-4px)rotate(45deg);
  transform: translate(-1px,-4px)rotate(45deg);
}
*/
.toggle_btn.open span {
 
}
.toggle_btn.open {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.toggle_btn.open span:nth-child(1), 
.toggle_btn.open span:nth-child(3) {
  width: 16px;
}
.toggle_btn.open span:nth-child(1) {
  -webkit-transform: translate(-1px,4px) rotate(-45deg);
  transform: translate(-1px,4px) rotate(-45deg);
}
.toggle_btn.open span:nth-child(3) {
  -webkit-transform: translate(-1px,-4px) rotate(45deg);
  transform: translate(-1px,-4px) rotate(45deg);
}
  .open .toggle_btn{
    left: 250px;
  }

nav{
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrlling: touch;
  transition: all .5s;
  z-index: 9999;
  opacity: 0;
}
.open nav{
  left: 0;
  opacity: 1;
}
nav.header__navigation{
  padding: 100px 25px 0;

}
nav.header__navigation ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.header__navigation ul li {
position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav.header__navigation ul li a{
  display: block;
  color: #333;
  font-size: 1.4rem;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav.header__navigation ul li a:hover{
  background: #e4e4e4;
}
  .header_sns{padding: 30px;
  }
}
@media screen and (max-width: 767px){
  nav{
    left: -220px;
    width: 220px;
  }
}


@media (min-width: 768px) {
.header {
  height: 80px;
  width:100%;
  position: fixed;
  background-color: rgba(255,255,255,0.9);
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999;
}
.header__picture {
  height: 60px;
  position: absolute;
  left: 100px;
  top: 10px;
  display: inherit;
}

  .header__picture-sp{
    display: none;
  }
.header__navigation {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  margin-right: 40px;
}
.header__navigation ul li {
  display: inline-block;
  margin-right: 40px;
}
.header__navigation ul li a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
  color:#232323;
}
.facebook{
  margin-right: 20px;
  height: 25px;
}
.instagram{
  
  height: 25px;
}
}


#loading_container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  margin: auto;
  display: flex;
  /* 文字1文字1文字を横揃えにする */
  align-items: center;
  /* 真ん中揃えに */
  justify-content: center;
  /* 真ん中揃えに */
  gap: 5px;
  /* 文字の間を5px分開ける */
  top: 0%;
  left: 0%;
  z-index: 99999;
  background-color: #Fff;
}

.L {
  /*   position: absolute;
  left:5%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  /* アニメーションは一種類しかないので、１つだけ記述 */
}

.O {
  /*   position: absolute;
  left:18%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  -webkit-animation-delay: 100ms;
}

.A {
  /*   position: absolute;
  left:35%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  -webkit-animation-delay: 200ms;
}

.D {
  /*   position: absolute;
  left:50%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  -webkit-animation-delay: 300ms;
}

.I {
  /*   position: absolute;
  left:65%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  -webkit-animation-delay: 400ms;
}

.N {
  /*   position: absolute;
  left:75%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  -webkit-animation-delay: 500ms;
}

.G {
  /*   position: absolute;
  left:90%;
  top:50%; */
  -webkit-animation: load 2s infinite;
  -webkit-animation-delay: 600ms;
}

@-webkit-keyframes load {

  /* そのアニメーションの指定。 */
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  50% {
    transform: translateY(-10px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}


.footer {
  height: 30px;
  width: 100%;
  background-color: rgba(255,255,255,0.2);
  padding: 5px;
  z-index: 999;
}
.footer small {
  font-size: 1.2rem;
  
}
/*
@media (max-width: 800px) {
.footer {
  height: 280px;
  width: 100%;
  background-color: #fff;
  box-shadow: -10px -5px 5px #bfbfbf;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  z-index: 999;
}
  .footer__site-map{
  display: flex;
  justify-content: space-between;
    margin: 0 auto;
}
  .footer_navi {
  display: inherit;
  text-align: left;
  margin:0 auto;
}
  .footer_navi ul li {
  display: inherit;
  margin-bottom: 10px;
  font-size: 1.4rem;
  }
  .footer_sns{
    margin: 0 auto;
  }
}*/
