@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #6d6b6b; /* RGB */
  font-family: 'Zen Maru Gothic', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
    font-weight:600;
  font-size: 1.8rem;
  line-height: 3.2rem;
  text-align: left;
}
section h2 {
  font-size: 7.2rem;
    line-height: 13rem;
    
    font-family:'Zen Maru Gothic', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
    font-weight:600;
}
section h3{
    font-size: 3.0rem;
    line-height: 5.4rem;
     font-family: 'Zen Maru Gothic', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
    font-weight:600;
}
@media(max-width:768px){
    body {
        font-size: 1.8rem;
  line-height: 3.2rem;
    }
    section h2 {
  font-size: 4.8rem;
    line-height: 8.6rem;
}
    section h3{
    font-size: 2.6rem;
    line-height: 4.7rem;
    }
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.none{
    display: none;
}
/*----------------------------
fade ｜下から上へ出現
----------------------------*/
.fade {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1.5s, transform 1s;
}.fade.active {
	opacity: 1;
	transform: translateY(0px);
}


/*ヘッダー*/
.header {
  height: 90px;
  background-color: #ffd0c7;
  position: fixed;
width: 100%;
    z-index: 999;
}
.header-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 86%;
  margin: 0 auto;
}
.header img {
  padding: 0 0 0 15px;
  height: 50px;
  vertical-align: bottom;
}
.header nav {
  display: block;
  text-align: right;
}
.header nav ul {
  display: flex;
  justify-content: flex-end;
}
.header nav li a {
  display: block;
  padding: 30px 15px 0;
  color: #6d6b6b;
  font-family: 'Zen Maru Gothic Medium', 'Zen Maru Gothic Bold', 'Zen Maru Gothic Black', 'Zen Maru Gothic Light', 'Zen Maru Gothic Regular', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 600;
  height: 100px;
}
.header nav li span {
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-family: 'Zen Maru Gothic Light', 'Zen Maru Gothic Medium', 'Zen Maru Gothic Regular', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
}


/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left:0;
    margin-top: 60px;
    padding: 0 0 45px 0;
    clear: both;
    background: rgba(240,27,27,0.9);
    border-bottom-left-radius:100px; 
    border-bottom-right-radius: 100px;
    transform: scale(1, 0);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform-origin: top;
    z-index: 9999;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 30px;
  text-transform: capitalize;
  color: #FFFFFF;
  opacity: 0;
  transition: 0.5s;
  font-family: 'Zen Maru Gothic', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
}

.menu li {
  border-bottom: 1px solid rgb(255, 255, 255,0.9);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}
.menu a span{
   font-size: 18px; 
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}
.humburger{
/*    visibility: hidden;*/
    display: none;
    
}
.menu-icon {
 
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #6d6b6b;
  display: block; 
  height: 3px;
  width: 26px;
  border-radius:3px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius:3px;
  position: absolute;
  background: #6d6b6b;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #FFFFFF;
  letter-spacing: 4px;
  font-size: 20px;
}


@media(max-width:1100px) {
  .header {
    height: 60px;
  }
  .header img {
    height: 30px;
    vertical-align: center;
  }
    .header-content-wrapper{
        height: 60px;
    }
  .navicon {
    display: block;
  }
    .humburger{
/*        visibility:visible;*/
        display: inline-block;    
    }
  .header nav ul {
    display: none;
  }
}
/*フッター*/
.footer {
  background-color: #ffd0c7;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.footer-content-wrapper {
  width: 86%;
  margin: 0 auto;
}
.footer nav {
  display: block;
  text-align: right;
}
.footer-flexwrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer nav ul {
  display: flex;
  justify-content: flex-end;
}
.footer nav li a {
  display: block;
  padding: 30px 15px 0;
  color: #6d6b6b;
  font-family: 'Zen Maru Gothic Medium', 'Zen Maru Gothic Bold', 'Zen Maru Gothic Black', 'Zen Maru Gothic Light', 'Zen Maru Gothic Regular', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
  text-decoration: none;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8rem;
  font-weight: 600;
  height: 100px;
}
.footer nav li span {
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-family: 'Zen Maru Gothic Light', 'Zen Maru Gothic Medium', 'Zen Maru Gothic Regular', 'DNP 秀英丸ゴシック Std L', 'DNP 秀英丸ゴシック Std B', 'A-OTF UD新丸ゴ Pr6N L';
}

.footer-toprebutton {
  display: block;
  position: absolute;
  right: 7vw;
  bottom: 5vh;
  text-decoration: none;
  color: #6d6b6b;
  text-align: center;
  font-weight: 300;
  line-height: 1.8rem;
  border-style: solid;
  border-width: 2px;
  border-radius: 30px;
  border-color: #6d6b6b;
  padding: 10px 15px;
}
.footer-toprebutton:visited{
    color: #6d6b6b;
}

.copyright {
  margin-top: 125px;
  display: block;
  text-align: center;
}
@media(max-width:840px) {
    .footer-flexwrapper {
  display: block;
}
    .footer img{
        max-width: 29vw; 
    }
    .footer nav ul {
        display: block;
    }
    .footer-hidden{
        display: none;
    }
    .footer nav ul li  span{
        padding-left: 15px;
    }
    .footer nav li a {
  padding-top: 30px ;
        font-size: 1.6rem;
  line-height: 1.6rem;
  text-align:left;
  height: 50px;
}
    .copyright {
  margin-top: 100px;
}
}