@charset "utf-8";
html {
    font-size: 62.5%;
	margin: 0;
}

body {
    line-height: 1.4;
	background: #fff;
	padding: 0;
	margin: 0;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

* {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

* {
    box-sizing: border-box;
}

.wrap {
	overflow: hidden;
}


img,
video {
    max-width: 100%;
}

img {
    border-style: none;
	width: 100%;
	height: auto;
}

div {
	line-height: 0;
	max-width: 600px;
	margin: auto;
}



 .container{
        position: relative;
      }
      img{
        width: 100%;
      }

	
@media screen and (max-width: 479px){
	

	
	 .container p{
		 font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
        position: absolute;
	    top: 80%;
        left: 38%;
		
      }
      
       .container .txt01{
		font-size: 1.5rem;
		font-weight: bold;
		color: #fff;
      }
      
       .container .txt02{
		padding-top: 3.6%;
		font-size: 2.8rem;
		font-weight: bold;
		color: #fffb00;
		  width: 16ch; 
          white-space: nowrap; 
          overflow: hidden; 
		   padding-bottom: 10%;
		   animation: typing 1s steps(16), blink .5s step-end infinite alternate;
		   animation-delay:2s; /*1秒後にアニメーション開始*/
      }


       .container .txt03{
		padding-top: 12.7%;
		font-size: 2.1rem;
		font-weight: bold;
		color: #fff;

      }

	
	
}





@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}



@keyframes typing {
   from {
     width: 0 
   }
 }


@keyframes poyo2 {

      0% { transform: scale(1); }

     30% { transform: scale(1); }

     40% { transform: scale(1.1); }

     50% { transform: scale(1); }

     60% { transform: scale(1.1); }

     70% { transform: scale(1); }

    100% { transform: scale(1); }

}





@media screen and (min-width: 479px){
	
	.txt{
		
	}
      .container p{
		font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
        position: absolute;
	    top: 80%;
        left: 40.4%;
      }
      
       .container .txt01{
		font-size: 2rem;
		font-weight: bold;
		letter-spacing:0.1em;
		color: #fff;
      }
      
       .container .txt02{
		padding-top: 3.9%;
		font-size: 4rem;
			letter-spacing:0.05em;
		font-weight: bold;
		color: #fffb00;
		  width: 16ch; 
		  white-space: nowrap; 
          overflow: hidden; 
		   padding-bottom: 10%; 
		  animation: typing 1s steps(16), blink .5s step-end infinite alternate;
		   animation-delay:2s; /*1秒後にアニメーション開始*/
      }


       .container .txt03{
		padding-top: 13.4%;
		font-size: 2.5rem;
		font-weight: bold;
		color: #fff;
      }

}

@keyframes flash {
  0%,100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}



 @keyframes typing {
   from {
     width: 0 
   }
 }


@keyframes poyo2 {

      0% { transform: scale(1); }

     30% { transform: scale(1); }

     40% { transform: scale(1.1); }

     50% { transform: scale(1); }

     60% { transform: scale(1.1); }

     70% { transform: scale(1); }

    100% { transform: scale(1); }

}






.js__fixed_btn {
	width: 26%;
    position: fixed;
    bottom: 20px;
    right: 10px;
    border: none;
    z-index: 100;
}


@media screen and (min-width: 479px){
.js__fixed_btn{
  animation: poyopoyo 2.5s ease-out infinite;
  opacity: 1;
}
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}












/* 調整用スタイル */

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}


/* ヘッダー */


.header {
  background-color: white;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}








/* ヘッダーのロゴ部分 */
.header__title {
  width: 80px;
}




.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header_line {
  width: 160px;
margin-left: 240px;
}


@media screen and (max-width: 479px){
.header_line{
margin-left: 60px;
}
}


.header_line img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 479px){

.header_line:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.header_line:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}

@media screen and (max-width: 479px){

.header_line:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}




@keyframes big 
{
  0% {transform: scale(1); }
  100% {transform: scale(1.1);}
}

@keyframes small 
{
  100% {transform: scale(0.9);}
}








/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(300%);
  transition: ease .5s;
  background-color: #ff5f01;
}





.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 100%;
}





/* ナビのリンク */
.nav-items__item a {
 width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 57px;
	font-weight: bold;
	color: #FFFFFF;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	
}






@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}






.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 479px){

.nav-items__item a:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.nav-items__item a:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}

@media screen and (max-width: 479px){

.nav-items__item a:active
{
  animation: small 0.01s;
  animation-fill-mode: forwards;
}
}




@keyframes big 
{
  0% {transform: scale(1); }
  100% {transform: scale(1.1);}
}

@keyframes small 
{
  100% {transform: scale(0.9);}
}




/* ハンバーガーメニュー */

.header__hamburger {
  width: 58px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
	display: inline-block;
}

@media screen and (min-width: 479px){

.hamburger:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.hamburger:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}

@media screen and (max-width: 479px){

.hamburger:active
{
  animation: small 0.01s;
  animation-fill-mode: forwards;
}
}




@keyframes big 
{
  0% {transform: scale(1); }
  100% {transform: scale(1.1);}
}

@keyframes small 
{
  100% {transform: scale(0.9);}
}





/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #0d60d0;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 6px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
	background-color: #ffff01;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
	background-color: #ffff01;

}

.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
	background-color: #ffff01;
}







@media screen and (min-width: 479px){

.js__fixed_btn:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.js__fixed_btn:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}




























@media screen and (max-width: 479px) {
.js__fixed_btn {
	width: 100%;
    bottom: 0px;
    right: 0px;
	background: rgba(30, 30, 30, 0.45);
	padding: 5px;
	display: inline-block;
animation-name:fadeUpAnime;
animation-duration:2.8s;
animation-fill-mode:forwards;
opacity:0;
transition: 0.5s;
}
}

/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}




@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}






.youtube-box {
	padding: 20px 2%;
	background: url("../images/lp_04-2.jpg") repeat-y;
	background-size: cover;
}
.youtube-round {
	padding: 3%;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 1.6px 2.6px 0px 1px rgb(145 185 180 / 34%);
}
.youtube-wrap {
    position: relative;
    width: 96%;
    padding-top: 54%;
}
.youtube {
	position: absolute;
	width: 100%;
	padding-top: 56.25%;
	top: 0;
	left: 0;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}



.privacy__body .footer {
  padding: 25px 0;
}

.content--privacy h2,
.content--privacy h3 {
  font-weight: bold;
}
.content--privacy h2 {
  margin-bottom: 1em;
  text-align: center;
}
.content--privacy h2 + p {
  text-align: center;
  margin-bottom: 1em;
}
.content--privacy h3 {
  margin-bottom: 1em;
}

.privacy__block {
  margin-bottom: 2em;
}
.privacy__block:last-child {
  margin-bottom: 0;
}













.voice__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.voice__box.type1 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.voice__box.type1 .voice__imgArea {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 6px 0 0 10px;
}
.voice__box.type1 .voice__txtArea {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.voice__box.type1 .voice__txtArea::before {
  left: auto;
  right: -8px;
  border-right: none;
  border-left: 11px solid #79e015;
}
.voice__box.type1 .voice__txtArea::after {
  left: auto;
  right: -4px;
  border-right: none;
  border-left: 8px solid #fff;
}

.voice__imgArea {
  width: 77px;
  margin-right: 10px;
  margin: 6px 15px 0 0;
}
.voice__imgArea .voice__info {
  text-align: center;
  margin-top: -4px;
}
.voice__imgArea .voice__info .voice__name {
  display: block;
  margin: 0 0 2px;
}
.voice__imgArea .voice__info .voice__address {
  display: block;
}

.voice__img {
  margin-bottom: 6px;
}
.voice__img span {
  display: block;
  width: 77px;
  height: 77px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.voice__img span.img1 {
  background-image: url(../img/voice/voice_member1_sp.png);
}
.voice__img span.img2 {
  background-image: url(../img/voice/voice_member2_sp.png);
}
.voice__img span.img3 {
  background-image: url(../img/voice/voice_member3_sp.png);
}

.voice__txtArea {
	margin-bottom: 4%;
  width: calc(100% - 50px);
  position: relative;
}
.voice__txtArea::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 9.5px solid transparent;
  border-bottom: 9.5px solid transparent;
  border-right: 11px solid #79e015;
  position: absolute;
  top: 35px;
  left: -8px;
}
.voice__txtArea::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  border-right: 8px solid #fff;
  position: absolute;
  top: 37px;
  left: -4px;
}

.voice__txt {
  border: 4px solid #79e015;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}

.voice__txt > p {
  font-size: 1.6rem;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4723;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  margin: -4px 0;
  text-align: justify;
}

.voice__txt > h1 {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.8rem;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  margin: -4px 0;
  text-align: justify;
	margin-bottom: 6%;
	margin-top: 1%;
}


.voice__txt::before {
  content: "";
  display: inline-block;
  width: 90px;
  height: 3px;
  background-image: url(../img/voice/voice_movie_bg_item3_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  right: 10px;
}
.voice__txt::after {
  content: "";
  display: inline-block;
  width: 90px;
  height: 3px;
  background-image: url(../img/voice/voice_movie_bg_item3_sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -3px;
  left: 10px;
}

@media screen and (min-width: 992px) {
  .content--voice {
    padding: 110px 0 105px;
  }
	
	.voice__txt > h1 {
  font-size: 2.3rem;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  margin: -4px 0;
  text-align: justify;
	margin-bottom: 6%;
	margin-top: 1%;
}

	

  .voice__title {
    padding: 0;
    margin-bottom: 80px;
  }

  .voice__movieArea {
    max-width: 1200px;
    margin: 0 auto 90px;
  }
  .voice__movieArea .voice__info {
    margin-top: 0;
  }

  .voice__movie {
    border-width: 10px;
    padding: 45px;
    border-radius: 60px;
    margin-bottom: 20px;
  }
  .voice__movie::before {
    width: 10px;
    height: 402px;
    background-image: url(../img/voice/voice_movie_bg_item1_pc.png);
    right: -10px;
  }
  .voice__movie::after {
    width: 402px;
    height: 10px;
    background-image: url(../img/voice/voice_movie_bg_item2_pc.png);
    bottom: -10px;
  }

  .voice__list {
    max-width: 1470px;
    margin: 0 auto;
  }
  .voice__list > ul > li {
    margin-bottom: 65px;
  }

  .voice__box.type1 .voice__imgArea {
    margin: 0 0 0 60px;
  }
  .voice__box.type1 .voice__txtArea::before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    border-left-width: 24px;
    right: -20px;
    top: 95px;
  }
  .voice__box.type1 .voice__txtArea::after {
    border-top-width: 19px;
    border-bottom-width: 19px;
    border-left-width: 20px;
    right: -10px;
    top: 97px;
  }

  .voice__imgArea {
    width: 264px;
    margin: 0 60px 0 0;
  }
  .voice__imgArea .voice__info .voice__address {
    display: inline-block;
  }

  .voice__img span {
    width: 264px;
    height: 264px;
  }
  .voice__img span.img1 {
    background-image: url(../img/voice/voice_member1_pc.png);
  }
  .voice__img span.img2 {
    background-image: url(../img/voice/voice_member2_pc.png);
  }
  .voice__img span.img3 {
    background-image: url(../img/voice/voice_member3_pc.png);
  }

  .voice__txtArea {
    width: calc(100% - 80px);
  }
  .voice__txtArea::before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    border-right-width: 24px;
    left: -20px;
    top: 95px;
  }
  .voice__txtArea::after {
    border-top-width: 19px;
    border-bottom-width: 19px;
    border-right-width: 20px;
    left: -10px;
    top: 97px;
  }

  .voice__txt {
    padding: 30px;
    border-width: 6px;
  }
  .voice__txt::before, .voice__txt::after {
    width: 180px;
    height: 6px;
    background-image: url(../img/voice/voice_movie_bg_item3_pc.png);
  }
  .voice__txt::before {
    bottom: -6px;
  }
  .voice__txt::after {
    top: -6px;
  }
  .voice__txt > p {
    font-size: 2rem;
    line-height: 1.6;
    text-align: justify;
  }
  .voice__txt.type1::before {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .voice__txt.type1::after {
    content: none;
  }
  .voice__txt.type2::before {
    content: none;
  }
  .voice__txt.type2::after {
    left: 18.22%;
  }
  .voice__txt.type3::before {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .voice__txt.type3::after {
    right: 15px;
  }

  .voice__name {
    font-size: 2rem;
    margin-right: 20px;
  }

  .voice__address {
    font-size: 2rem;
    padding: 7px 22px 9px;
    border-radius: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .voice__title {
    margin-bottom: 105px;
  }
}


.footer{
	padding-top: 6%;
}

.main{
	
}



.main p{
	line-height: 3em;
	font-size: 1.7em;
	margin-left: 5%;
	margin-right: 5%;
	letter-spacing: 0.04em;
}

.n04 p{
	text-align: center;
	line-height: 2.2em;
	font-size: 2.1em;
	font-weight: bold;
	color: #FF0004;
}









.n01{
	margin-top: 15%;
}


.n02{
	margin-top: 15%;
}


.n03{
	margin-top: 10%;
}

.n04{
	margin-top: 20%;
	margin-bottom: 10%;
}


.left{
  opacity: 0;
  left: -20%;
}
 
.left.active  {
  opacity: 1;
  left: 0;
  transition:1s;
}
 
.right{
  opacity: 0;
  right: -20%;
}
 
.right.active  {
  opacity: 1;
  right: 0;
  transition:1s;
}
 
.container {
 
  padding: 3% 5%;
  position: relative;
	margin-bottom: 5%;

	  border-radius:15px;
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
}



 

 
.container p {
  margin-bottom: 10px;
}
 
.container p:last-child {
  margin-bottom: 0;
}


.s06{
	font-weight: bold;
}

.n05{
	margin-top: 10%;
}

.n06{
	margin-top: 15%;
}



.n07{
	margin-top: 15%;
}


.s07{
	font-weight: bold;
	color: #FF0004;
	font-size: 1.3em;
}


.n08{
	margin-top: 10%;
}



.s09{
	font-weight: bold;
	color: #0024FF;
}



.n09{
	margin-top: 15%;
}


.n10{
	margin-top: 10%;
}


.n11{
	margin-top: 15%;
}


.n12{
	margin-top: 15%;
}


.n13{
	margin-top: 15%;
}


.n13 p{
	font-weight: bold;
}


.s13{
	font-weight: bold;
	color: #FF0004;
}

.n14{
	margin-top: 15%;
}


.s14{
	background-color: #FBFF84;
	font-weight: bold;
}


.n15{
	margin-top: 10%;
}


.n16{
	margin-top: 20%;
}

.n16 p{
padding: 2rem 2rem;
border-left: 5px solid #e70;
background: #fdf5d2;
font-weight: bold;
font-size: 2.2em;
line-height: 1.5em;
}


.n17{
	margin-top: 15%;
}

.n18{
	margin-top: 15%;
}

.n19{
	margin-top: 15%;
}


.n20{
	margin-top: 15%;
}


.n21{
	margin-top: 15%;
}

.s21{
	font-weight: bold;
	font-size: 1.3em;
}


.n22{
	margin-top: 15%;
}

.s22{
	font-weight: bold;
	font-size: 1.3em;
	color: #0024FF;
}


.n23{
	margin-top: 15%;
}


.n24{
	margin-top: 15%;
}


.n25{
	margin-top: 15%;
}


.n26{
	margin-top: 15%;
}


.n27{
	margin-top: 15%;
}


.n28{
	margin-top: 15%;
}


.n29{
	margin-top: 15%;
}



.n30{
	margin-top: 15%;
}

.n31{
	margin-top: 15%;
}

.n32{
	margin-top: 8%;
}


.n33{
	margin-top: 15%;
}


.n34{
	margin-top: 15%;
}


.n35{
	margin-top: 15%;
}


.n36{
	margin-top: 15%;
}


.n37{
	margin-top: 15%;
}


.n38{
	margin-top: 15%;
}


.n39{
	margin-top: 15%;
}


.n40{
	margin-top: 15%;
}


.n41{
	margin-top: 15%;
}

.n42{
	margin-top: 15%;
}

.n43{
	margin-top: 15%;
}

.n44{
	margin-top: 15%;
}

.n45{
	margin-top: 15%;
}

.n46{
	margin-top: 15%;
}

.n47{
	margin-top: 15%;
}

.n48{
	margin-top: 11%;
}

.n49{
	margin-top: 15%;
}

.n50{
	margin-top: 15%;
}



.s33{
	background-color: #FBFF84;
	font-weight: bold;
	color: #FF0004;
	font-size: 1.3em;
}



.n51{
	margin-top: 15%;
}


.n52{
	margin-top: 15%;
}


.n53{
	margin-top: 15%;
}

.n54{
	margin-top: 15%;
}

.n55{
	margin-top: 15%;
}

.n56{
	margin-top: 15%;
}

.n57{
	margin-top: 5%;
}

.n58{
	margin-top: 15%;
}

.n59{
	margin-top: 7%;
}

.n60{
	margin-top: 15%;
}

.n61{
	margin-top: 15%;
}

.n62{
	margin-top: 15%;
}

.n63{
	margin-top: 15%;
}

.n64{
	margin-top: 15%;
}

.n65{
	margin-top: 15%;
}

.n66{
	margin-top: 15%;
}

.n67{
	margin-top: 15%;
}

.n68{
	margin-top: 15%;
}

.n69{
	margin-top: 15%;
}

.n70{
	margin-top: 15%;
}

.n71{
	margin-top: 15%;
}

.n72{
	margin-top: 15%;
}

.n73{
	margin-top: 15%;
}

.n74{
	margin-top: 15%;
}

.n75{
	margin-top: 15%;
}

.n76{
	text-align: center;
	margin-top: 15%;
}

.n77{
	text-align: center;
	margin-top: 3;
	margin-bottom: 5%;
}




.s76{
	font-size: 0.9em;
	color: #535353;
}








/* 調整用スタイル */

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}


/* ヘッダー */


.header {
	/*コレ*/border-top: 3px solid #e70;
	/*コレ*/border-bottom: 3px solid #ECECEC;
  background-color: white;
  width: 100%;
  height: 10%;
object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
 padding-left: 4%;
 padding-right: 4%;
 padding-top: 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

@media screen and (max-width: 380px){
	.header__inner {
	padding-top: 5%;
}
}

@media screen and (min-width: 650px){
	
	
.header {
height: 12%;
}
	
.header__inner {
  padding: 2% 2%;
}
	
}



/* ヘッダーのロゴ部分 */
.header__title {
	margin-top: 9%;
	margin-bottom: 3%;
  width: 34%;
}




.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.header_line {
  width: 160px;
margin-left: 240px;
}


@media screen and (max-width: 650px){
.header_line{
margin-left: 60px;
}
}


.header_line img {
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 650px){

.header_line:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.header_line:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}

@media screen and (max-width: 650px){

.header_line:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}




@keyframes big 
{
  0% {transform: scale(1); }
  100% {transform: scale(1.1);}
}

@keyframes small 
{
  100% {transform: scale(0.9);}
}








/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(300%);
  transition: ease .5s;
  background-color: #FFFFFF;
}





.nav-items {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 100%;
}





/* ナビのリンク */
.nav-items__item a {
	letter-spacing: 0.1em;
 width: 100%;
  display: block;
  text-align: center;
  font-size: 1.7em;
  margin-bottom: 14%;
	font-weight: bold;
	color:#000000;
	text-decoration:underline;
           text-decoration-color: #e70;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	
}



.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 479px){

.nav-items__item a:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.nav-items__item a:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}

@media screen and (max-width: 479px){

.nav-items__item a:active
{
  animation: small 0.01s;
  animation-fill-mode: forwards;
}
}




@keyframes big 
{
  0% {transform: scale(1); }
  100% {transform: scale(1.1);}
}

@keyframes small 
{
  100% {transform: scale(0.9);}
}




/* ハンバーガーメニュー */

.header__hamburger {
  width: 58px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
	display: inline-block;
}

@media screen and (min-width: 650px){

.hamburger:hover
{
  animation: big 0.1s;
  animation-fill-mode: forwards;
}

.hamburger:active
{
  animation: small 0.1s;
  animation-fill-mode: forwards;
}
}

@media screen and (max-width: 650px){

.hamburger:active
{
  animation: small 0.01s;
  animation-fill-mode: forwards;
}
}




@keyframes big 
{
  0% {transform: scale(1); }
  100% {transform: scale(1.1);}
}

@keyframes small 
{
  100% {transform: scale(0.9);}
}





/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #e70;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 6px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
	background-color: #e70;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
	background-color: #e70;

}

.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
	background-color: #e70;
}

















.n00{
	padding-top: 10%;
}

.n00 p{
	line-height: 1.2em;
	
}


.s00{
	font-size: 0.62em;
	color: #535353;
	letter-spacing: 0.08em;
}


.s000{
	color: #e80;
}



.s_square{
	font-size: 0.7em;
	background-color: #4B4B4B;
	padding: 0.4em 0.9em;
	position: relative;
}

.square_title p{
	color:#FFFFFF;
}

.square_title{
	margin-top: 0;
}


.s75{
	font-size: 0.7em;
	color: #535353;
	line-height: 0.7em;
}


.title{
	margin-top: -5%;
}


@media screen and (min-width: 650px){
	
.title{
	margin-top: 1%;
}
	
}



.title p{
font-size:1.7em;
font-weight: bold;
line-height: 2em;
color: #4B4B4B;
}



.sns{
	width: 50%;
	display: flex;
	margin-left: 6%;
	margin-right: 6%;
	margin-top: 6%;
}


.line{
	margin-right: 6%;
}

.meta{
	margin-right: 6%;
}







.toc-005 {
    margin-bottom: 30px;
    border-radius: 3px;
    background-color: #fdf5d2;
}

.toc-005 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 4% 0;
    background-color: #e70;
    color: #fff;
    font-weight: 600;
    font-size: 1.4em;
}

.toc-005 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M3.8%2017.2h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.8-.8-.8zm0-15h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8V3c-.1-.4-.4-.8-.8-.8zm0%207.6h-3c-.5%200-.8.3-.8.7v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.7-.8-.7zM23.2%2018h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8zm0-15h-15c-.4%200-.7.3-.7.8v1.5c0%20.4.3.7.7.7h15c.5%200%20.8-.3.8-.8V3.8c0-.5-.3-.8-.8-.8zm0%207.5h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8z%22%2F%3E%3C%2Fsvg%3E');
    content: '';
}

.toc-005 ol {
    list-style-type: decimal;
    margin: 0;
    overflow: hidden;
}

.toc-005 > ol {
    padding: 2.2em 1.3em 2.4em 3.2em;
}

.toc-005 ol ol {
    margin-top: 5px;
    padding-left: 1.1em;
}

.toc-005 li {
    padding: 6.1% 0;
	font-size:1.6em;
	text-decoration:underline;
    
	letter-spacing: 0.1em;
	color: #e80;
}

.toc-005 ol ol li {
    font-weight: 500;
    font-size: .9em;
}

.toc-005 a {
    color: #e80;
    text-decoration: none;
	font-weight: 550;
	line-height: 1.1em
}


.mokuzi{
	margin-top: 15%;
	padding-left: 5%;
	padding-right: 5%;
}











