@charset "UTF-8";

/*
header/メインカラー #3a4d4d
bnormalbackground #f1fffb
mainfont #454545
mainfont2 #fafafa
contents color #176161
h1~h4backgroundカラー #f1f1f1
アンダーライン/アクセント  #e0d1a1;
*/

/*
*{
  outline: 2px solid blue;
}
*/
html{
  font-size: 10px;
  width: 100vw;
  box-sizing: border-box;
  font-family: "Yu Mincho","YuMincho",serif;
}


body{
  color: #454545;
  margin: 0;
  padding: 0;
}
h1{
  font-size: 3rem;
  padding: 0;
  margin: 0;
}
h2{
  display: inline-block;
  font-size: 2.5rem;
  padding: 0px 15px;
  margin: 20px 0;
  box-shadow: 1px 1px 4px #676666 inset;
  background: rgba(255,255,255,0.7)
}

.top-p{
  font-size: 1.8rem;
}



h3{
  color: #454545;
  display: inline-block;
  font-size: 2em;
  text-align: center;
  border-left: 12px solid #1f5e99;
  background: #fcfdea;
  padding: 0 0.6em 0 0.6em;
  margin: 15px 10px;
  box-shadow: 4px 4px 5px #676666;
  border-radius: 3px;
}

h4{
  display: inline-block;
  width: auto;
  font-size: 2em;
  text-align: left;
  border-bottom: 3px solid #1f5e99;
  margin: 10px 0.5em;
  padding: 2px 20px;
  border-radius: 2px;
}
h5{
  display: inline-block;
  font-size: 1.5em;
  text-align: center;
  margin: 10px 1em;
  border-radius: 2px;
  box-shadow: 2px 2px 5px #454545;
}

img{
  width: 100%;
  display: block;
  padding: 0px;
}
.midium-p{
  width: 80%;
  font-size: 1.5em;
  padding: 0.5em 2em;
}
.smoll-p{
  font-size: 1.2em;
}
.normal-p{
  width: 60vw;
  font-size: 1.5em;
  padding: 1em;
  margin: 10px auto;
  text-align: center;
  background: rgba(255,255,255,0.8);
  box-shadow: 2px 2px 5px #676666;
}
.normal-a{
  color: #fff;
  background: #3d6a9d;
  padding: 3px;
  line-height: 30px;
  border-radius: 2px;
  box-shadow: 2px 2px 0px #676666;
}
.center{
  text-align: center;
  padding: 20px;
}
.center ol{
  padding: 0;
}
ul{
  font-size: 15px;
}
ol{
  font-size: 15px;
  list-style: none;
}
dl{
  font-size: 1.7em;
  margin: 20px;
  padding: 10px;
  background: #eff7ff;
  box-shadow: 2px 2px 10px #454545;
  border-radius: 3px;
}
dt{
  display: inline-block;
  font-size: 1em;
  line-height: 1.8em;
  margin: 0.5em 0em 0em 1em;
  border-bottom: 2px solid #454545;
}
dd{
  font-size: 1em;
  border-left: solid 4px #cecece;
  padding: 10px;
  margin: 10px 50px;
}
span{
  display: inline-block;
}


section{
  font-size: 1em;
}



.newline{
  display: inline-block;
}

/*ここからヘッダー部分*/

.headerdiv{
  width: 100vw;
  margin: 0 auto;
  padding: 0px;
  background: #98ddeb;
}
.headerimage{
  width: 100vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0px;
}


.top-box{
  position: relative;
  padding: 5px;
  
}

.top-box h1{
  position: relative;
  font-size: 2.2em;
  color: #fafafa;
  display: inline-block;
  padding: 5px;
  
}



/*トップへ戻るの練習*/
.top{
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #5b9abb;
  z-index: 100;
  box-shadow: 2px 2px 5px #676666;
  border-radius: 2px;
  font-weight: bold;
}
.top a{
  position: absolute;
  width: 50px;
  bottom: 5px;
  left: 2px;
  font-size: 1.1em;
  color: #ffffff;
}
.top::after{
  content: '';
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  left: 15px;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(45deg);
}

/*トップへ戻る練習以上*/


.nav{
  position: relative;
  width: 100%;
  background: #454545;
  animation-name: nav-animation;
  animation-delay: 1s;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-direction: normal;
  opacity: 0;
}

@keyframes nav-animation{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

.nav-ul{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
  font-size: 1.5em;
  list-style: none;
  padding: 5px;
  margin: 0px
}

.nav-ul-a{
  position: relative;
  display: inline-block;
  z-index: 5;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
  color: #ffffff;
}
.nav-ul-a:after{
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: '';
  height: 100%;
  background: #1a1a1a;
  transform: scale(0,1);
  transform-origin: left bottom;
  transition: transform .3s;
  z-index: -1;
  width: 100%;
}
.nav-ul-a:hover:after{
  transform: scale(1,1);
}



/*ここからsection website and video*/
.contents-div{
  background: #ffffff;
}
.none-ul{
  list-style: none;
  font-size: 1.7em;
  padding: 10px;
  margin: 0;
}
.section1-div{
  background-image: url(../images/bgimage05.jpg);
  background-attachment: fixed;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  height: auto;
}
.section2-div{
  background: #d2dfeb;
}
.section3-div{
  background-image: url(../images/bg-logo02.png);
  background-size: contain;
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
}
.image-rgba-blue{
  background: rgba(181, 226, 255, 0.4);
  padding-bottom: 20px;
}
.image-rgba-gr{
  background: rgba(226, 255, 235, 0.6);
  padding-bottom: 20px;
}
.flex01{
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
  padding-bottom: 30px;
  align-items: center;
}

.f-left{
  background: #f1f1f1;
  box-shadow: 2px 2px 10px #676666;
  text-align: center;
  padding: 15px;
  flex-basis: 40%;
}
.f-dark{
  flex-basis: 50%;
  color: #f1f1f1;
  background: #414141;
  padding: 0px 10px 0px 10px;
  box-shadow: 2px 2px 10px #676666;
}
.basic{
  font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  font-weight: bold;
  color: #000000;
  font-size: 5em;
  padding: 0px;
  margin: 0px;
}
.ex-p{
  font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  font-weight: bold;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  font-size: 5em;
  color: #000000;
  border-radius: 3px;
  border: solid 2px #1f5e99;
  box-shadow: 7px 3px 2px #010000;
  text-shadow: 5px 5px 2px #dfd518;
  padding: 10px;
  font-weight: bold;
  background: #f7ff9e;
}

.color-wh-w-90{ 
  color: #fff;
  width: 90vw;
  margin: 0 auto; 
}

.flex02{
  display: flex;
  justify-content: space-around;
  width: 90%;
  flex-wrap: wrap;
  box-shadow: 2px 2px 10px #676666;
  background: #414141;
  margin: 10px auto;
}

.left02{
  flex-basis: 40%;
  
}

.right02{
  flex-basis: 40%;
}
.pcimg{
  width: 80%;
  margin: 0 auto;
  padding: 5px;
}

.dark{
  color: #f1f1f1;
  background: #414141;
  width: 70%;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 2px 2px 10px #676666;
}
.s1-normal2{
  flex-basis: 30%;
  padding: 0px 10px 0px 10px;
  box-shadow: 2px 2px 10px #676666;
}
.s1-dark2{
  box-shadow: 2px 2px 10px #676666;
  padding: 0px;
  flex-basis: 50%;
  color: #eeeeee;
  background: rgba(255,255,255,0.3);
}
.s1-dark2 dl{
  background: #454545;
  font-size: 11px;
  padding: 2px;
  margin: 0;
}
.s1-dark2 dd{
  padding: 0px 0px 0px 5px;
}

/*ここからフッター*/

footer{
  padding: 10px;
  background: #f1f1f1;
}

footer p{
  font-size: 1.5em;
  margin: 0;
}
.footer-navbox{
  padding: 1px;
  background: #fff;
  box-shadow: 1px 1px 2px #676666;
}
.footer-nav{
  padding: 0px 0px 0px 10px;
  font-size: 1.5em;
  color: #000;

}
hr{
  margin: 0 auto;
  padding: 2px;
  background: #b4bcbd;
  width: 90vw;
}

/*プライバシーポリシー*/

.pptopimg{
  width: 750px;
  margin: 0 auto;
}
.privacy{
  padding: 1em;
}
.privacy-p{
  font-size: 1.3em;
}

.privacy-ol{
  font-size: 1.3em;
}
.privacy-ol p{
  margin: 1em 0 1em 0;
}
.privacy-ol ul{
  font-size: 1em;
  padding: 1.5em;
}

/* price */
.w-header{
  position: relative;
  width: 100vw;
  margin: 0 auto;
  background: #00bad8;
}
.w-header-inner{
  max-width: 1000px;
  margin: 0px auto;
}
.w-Logo{
  position: absolute;
  width: 250px; 
  bottom: 40px;
  left: 30px;
}
.w-h1{
  position: absolute;
  font-family: "Yu Gothic","YuGothic",sans-serif;
  color: #265656;
  text-align: center;
  margin: 0 auto;
  font-size: 2.3em;
  bottom: 6rem;
  left: 300px;
  line-height: 1em;
}
.opacity50{
  opacity: 0.5;
}

.flex{
  display: flex;
  flex-wrap: wrap;
  width: 80vw;
  margin: 0 auto;
  gap: 10px;
  justify-content: space-around;
  box-shadow: 1px 2px 6px #454545;
  align-items: center;
}

.flex-p{
  font-size: 1.4em;
  width: 300px;
  background: #454545;
  color: #fff;
  padding: 20px 10px;
}
.flex-div{
  width: 250px;
  padding:10px;
}
.steps-bg{
  background-image: url(../images/bgimage08.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  padding-bottom: 0px;
}

.steps-bg ol{
  font-size: 1.5em;
  padding-top: 20px;
}
.steps-bg li{
  box-shadow: 2px 2px 4px #454545;
  width: 250px;
  text-align: center;
  margin: 5px;
  margin-left: 3vw;
  padding: 3px;
  background: rgba(255,255,255,0.3);
}


.flex2-bg{
  background-image: url(../images/bgimage08.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.flex2{
  display: flex;
  justify-content: center;
  width: 100vw;
  margin: 0px auto;
  padding: 0px;
  flex-wrap: wrap;
  gap: 40px;

}
.f2-inner{
    position: relative;
}
.f2-inner h4{
  font-family: "Yu Gothic","YuGothic",sans-serif;
  color: #fff;
  font-size: 1.6em;
  position: absolute;
  top: -10px;
  left: -20px;
  width: 160px;
  text-align: center;
  background: #1f5e99;
  padding: 10px;
  border-bottom: none;
  box-shadow: 2px 2px 2px #454545;
  border-radius: 2px;
}
.flex2 p{
  font-size: 1.4em;
  width: 190px;
  background: rgba(255,255,255,0.7);
  border-left: 2px solid #1f5e99;
  border-top: 5px solid #1f5e99;
  box-shadow: 10px 3px 1px #858aab; 
  padding: 55px 30px 40px 30px;
  top: 10px;
  left: 30px;
  z-index: -1;
}

.end-dl{
  background-image: url(../images/bg-logo.png);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  height: auto;
}