/*
 Theme Name: original-child
 Template: original
 Version:4.1.4
 */

 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;500;700;900&family=Noto+Serif+JP:wght@300;500;700&family=Roboto:wght@100;300;500;900&display=swap');
body{font-family: 'Noto Serif JP', serif;
  font-family: 'Noto Sans JP', sans-serif;


}
 img.alignnone.size-medium {
  max-width: 360px !important;
}
h2 {
  padding-top: 50px;
}
h3{
  font-size: 20px;
}
 /*PC スマホ切り替え*/
 /* パソコンで見たときは"pc"のclassがついた画像が表示される */
 *{
   
 }
 body{
 }
 .pc {
   display: block !important;
 }
 
 .sp {
   display: none !important;
 }

 /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
 @media only screen and (max-width: 750px) {
   .pc {
     display: none !important;
   }
 
   .sp {
     display: block !important;
   }
 }
 /* 文字 */
 html {
	font-size: 62.5% !important;
	}
	/* bodyのフォントサイズを1.6em（16px）に設定 */
	body {
	font-size: 1.6em  !important;
	}
 /* ルートのフォントサイズを10pxに設定 */
h2{
  padding-top: 1rem;
}
  h1{
 
  }
  p{
  font-size: 16px; /* 15px */
  line-height: 2.4em;
  }
 
#container{
  background-color: #000;
  color: #fff;
}
 

 /* 文字ここまで */
 /* 基本 */
 a {
  text-decoration: none;
 }
 li {
  list-style-type: none;
 }
 /* スクリーン */
 .full {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
 }
 .l-inner {
  width: 88.8%;
  max-width: 1280px;
  margin: 0 auto;
 }
 .l-inner2{
   width: 70%;
   margin: 0 auto;
 }
 /* スクリーン */
 img {
   width: 100%;
 }
 .img50{
   width: 50%;
   margin: 0 auto;
 }
 .img50b{
   width: 50%;
  
 }
 .img30{
   width: 30%;
   margin: 0 auto;
 }
 .img15{
   width: 15%;
   margin: 0 auto;
 }
 
 /* センター */
 .center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
 }
  .item-center {
    display: grid;
    justify-items: center;
    align-items: center;
  }
  .item-center2{
    margin:0 auto;
    text-align: center;
  }
  .textcenter{
    text-align: center;
  }
  /* センター */
  .item-right{
    display:grid;
 justify-content: right;
 align-items: end;  }
  /* ブロック要素 */
 .col-1{
  display: flex;
  flex-direction: column;
  width: calc(10% - 5px);
  box-sizing: border-box;
 }
 .col-2{
  display: flex;
  flex-direction: column;
  width: calc(20% - 5px);
  box-sizing: border-box;
 }
 .col-3{
  display: flex;
  flex-direction: column;
  width: calc(30% - 5px);
  box-sizing: border-box;
  margin: 5px;
 }
 .col-4{
  display: flex;
  flex-direction: column;
  width: calc(40% - 5px);
  box-sizing: border-box;
 }
 .col-5{
  display: flex;
  flex-direction: column;
  width: calc(50% - 5px);
  box-sizing: border-box;
 }
 .col-6{
  display: flex;
  flex-direction: column;
  width: calc(60% - 5px);
  box-sizing: border-box;
 }
 .col-7{
  display: flex;
  flex-direction: column;
  width: calc(70% - 5px);
  box-sizing: border-box;
 }
 .col-8{
  display: flex;
  flex-direction: column;
  width: calc(80% - 5px);
  box-sizing: border-box;
 }
 .col-9{
  display: flex;
  flex-direction: column;
  width: calc(90% - 5px);
  box-sizing: border-box;
 }
 .col-10{
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
 }
 @media screen and (max-width: 650px) {
  .item30,
  .item40,
  .item50,
  .item60,
  .item70 {
    width: 100% !important;
  }
 }
 /* ブロック要素ここまで */
 
 
 .flexbox_center{
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
justify-content: center;
align-items: center;
   
  
 }
 .flexbox_between{
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
justify-content: space-between;
align-items: center;
   
  
 }
 .flexbox_top{
  display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;

   
  
 }


 .just-space-between{
  justify-content: space-between;
 }
 .just-center{
  justify-content: center;
 }
 .just-start{
  justify-content: flex-start;
 }
 .align-center{
  align-items: center;}
 
 .align-start{
  align-items: flex-start;
 }
 .align-between{
  align-items: space-between;
 }
 
 /* flexここまで */
 /* 隙間 */
 .pt10{
  padding-top: 10px;
 }
 .pt24{
  padding-top: 24px;
 }
 .pt30{
  padding-top: 30px;
 }
 .pb10{
  padding-bottom: 10px;
 }
 .pb20{
  padding-bottom: 20px;
 }
 .pb30{
  padding-bottom: 30px;
 }
 .padding10{
  padding: 10px;
 }
 .padding24{
  padding: 23px;
 }
 .padding30{
  padding: 30px;
 }
 .margin10{
  margin: 10px;
 }
 .margin20{
  margin: 20px;
 }
 .margin30{
  margin: 30px;
 }
 .margin50{
  margin: 50px;
 }
 .mb-10{margin-bottom: 10px;}
 .mb-20{margin-bottom: 20px;}
 .mb-30{margin-bottom: 30px;}
 .mb-40{
   margin-bottom: 40px !important;
 }
 .mb-80{
   margin-bottom: 80px !important;
 }
 .mb10{margin-bottom: 10px;}
 .mb20{margin-bottom: 20px;}
 .mb30{margin-bottom: 30px;}
 .mb50{margin-bottom: 50px;}
 .mb-10{margin-bottom: 10px;}
 .mb-20{margin-bottom: 20px;}
 .mb-30{margin-bottom: 30px;}
 .mb-50{margin-bottom: 50px;}
 /* 隙間ここまで */
 .card {
  width: 95%;
  margin: 0 auto !important;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
 }
 .card-img {
  border-radius: 5px 5px 0 0;
  max-width: 100%;
  height: auto;
 }
 .card-content {
  padding: 20px;
 }
 .card-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
 }
 .card-text {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
 }
 .card-link {
  text-align: center;
  border-top: 1px solid #eee;
  padding: 20px;
 }
 .card-link a {
  text-decoration: none;
  color: #0bd;
  margin: 0 10px;
 }
 .card-link a:hover {
  color: #0090aa;
 }
 .l-inner{
  width:95%;
  margin: 0 auto;
 }
 a{
  text-decoration: none;
 }
 .white{
  color:#fff;
 }
 .blk{
  color: #000;
 }
 .footer_panel{
  padding-left: 20px;
  background-color: #f1f1f1;
  padding-bottom: 20px;
 }
 
 #footerFloatingMenu {
  display: block;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 2px;
  z-index: 9999;
  text-align: center;
  padding: 0 auto;
 }
 .btn--orange,
 a.btn--orange {
  color: #fff;
  background-color: rgba(29, 32, 132, 0.5);
 
 }
 .btn--orange:hover,
 a.btn--orange:hover {
  color: #fff;
  background: #0bd;;
 }
 
 .fa-position-left {
  position: absolute;
  top: calc(50% - .5em);
  left: 1rem;
 }
 
 .btn--radius,
 a.btn--radius,
 button.btn--radius
 {
    border-radius: 100vh;
 }.btn,
 a.btn,
 button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
 }
 
 .delay-time{
  animation-delay: 1s;/*この数字を指定したい遅延時間に変更*/
 }
 .delay-time2{
  animation-delay: 1.5s;/*この数字を指定したい遅延時間に変更*/
 }
 .delay-time3{
  animation-delay: 2s;/*この数字を指定したい遅延時間に変更*/
 }
 .delay-time4{
  animation-delay: 2.5s;/*この数字を指定したい遅延時間に変更*/
 }
 .delay-time5{
  animation-delay: 3s;/*この数字を指定したい遅延時間に変更*/
 }
 .delay-time6{
  animation-delay: 3.5s;/*この数字を指定したい遅延時間に変更*/
 }
 .delay-time{
  animation-delay: 1s;/*この数字を指定したい遅延時間に変更*/
 }
 .change-time{  
  animation-duration: 2s;/*この数字を変化させたい時間に変更*/
 }