@charset "UTF-8";
body {
  font-size: 1rem;
  font-family: Hiragino Sans, Arial, sans-serif !important;
  margin: 0;
  color: #000000 !important;
}

*,
*::before,
*::after {
  margin: 0;
}

#wrapper {
  width: 100%;
  overflow: hidden;
  background: #f4f4f4;
}
video{
  width: 100%;
  box-sizing: border-box;
}
.width {
  box-sizing: border-box;
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  padding: 4px;
  background-color: #fff;
}
.width60{
  width: 60%;
  display: block;
  margin: 0 auto;
}
.width100{
  width: 100%;
  display: block;
  margin: 0 auto;
}

img {
  width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 20px;
}

p {
  text-align: center;
  display: block;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

.text_left {
  display: block;
  text-align: left;
}


.big {
  font-size: 21px;
}

.blue {
  color: rgb(0, 102, 204);
}
.white{
  color: #fff;
}
.red {
  color: rgb(255, 0, 0);
}
.pink{
  color: rgb(235, 81, 124);
}
.orange {
  color: #ff9900;
}
.yellow {
  color: rgb(255, 255, 35);
}
.marker_yellow {
  background: linear-gradient(transparent 60%, #ff9 60%);
}

.marker_blue {
  background: linear-gradient(transparent 60%, #a8dafb 60%);
}
.back_red {
  background-color: rgb(255, 0, 0);
}
.back_black {
  background-color: #000;
  line-height: 1em;
}
.back_yellow {
  background-color: #ffff99;
  line-height: 1em;
}
.marker_red {
  background: linear-gradient(transparent 60%, #ffd0d1 60%);
}

.bold {
  font-weight: bold;
}

.bottom {
  margin-bottom: 35px;
}

.link {
  text-align: right;
  margin-bottom: 15px;
}
.link a {
  text-decoration: underline;
  color: #4682b4;
  font-size: 13px;
}

.yazirusi {
  -webkit-animation-name: btnAnime02;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  -moz-animation-name: btnAnime02;
  -moz-animation-duration: 1.5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  -webkit-box-pack: center;
  box-sizing: border-box;
}
.yazirusi_innner{
  padding-bottom: 200px;
    overflow-y: hidden;
    position: relative;
}
.yazirusi01 {
  width: 80%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    animation-name: arrowFlow;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    transform: translate(-50%, -300%);
    position: absolute;
    top: 0;
    left: 50%;
}
.yazirusi01 .blak_yazirusi{
  display: inline-block;
    vertical-align: middle;
    color: #000;
    line-height: 1;
    position: relative;
    width: 40px;
    height: 60px !important;
    background: currentColor;
    margin: 0 30px;
}
.yazirusi01 .blak_yazirusi:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 50px;
  border-color: #000 transparent transparent transparent;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.yazirusi01 .red_yazirusi{
  display: inline-block;
    vertical-align: middle;
    color: #ba0d0d;
    line-height: 1;
    position: relative;
    width: 40px;
    height: 60px !important;
    background: currentColor;
    margin: 0 30px;
}
.yazirusi01 .red_yazirusi:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 50px;
  border-color: #ba0d0d transparent transparent transparent;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.yazirusi .pink_yazirusi {
  width: 100px;
  height: 65px;
  padding: 0 5px;
  box-sizing: border-box;
}
.yazirusi .pink_yazirusi::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 50%;
  height: 40%;
  background: #d096bb;
}
.yazirusi .pink_yazirusi::after {
  content: "";
  display: block;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top right, transparent 49%, #d096bb 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #d096bb 50%) top right/50% 100% no-repeat;
}

.underline-before {
  background: linear-gradient(#ffff99, #ffff99) 0 100%/0 2px no-repeat;
  /*左から、カラー（始点と終点それぞれ同じものを指定）、position / サイズ横縦 繰り返しの有無 */
  transition: background 3s;
  /*トランジションの設定。下線を引く動きをアニメーションにするのに必要 */
  text-decoration: none;
  /*テキストの装飾の設定 */
}

.underline-after {
  background-size: 100% 60%;
  /* 変化後のスタイル。横サイズを0から100%に変えることで指定の文字列に下線を引く */
}

@-webkit-keyframes btnAnime02 {
  0% {
    -webkit-transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, -8px);
  }
  100% {
    -webkit-transform: translate(0, 0);
  }
}

@keyframes btnAnime01 {
  0% {
    transform: translate(-50%, -300%);
  }
  50% {
    transform: translate(-50%, 100%);
  }
  100% {
    transform: translate(-50%, 400%);
  }
}
.yazirusi01.after {
  animation-delay: 1s;
}
@keyframes arrowFlow {
  0% {
    transform: translate(-50%, -300%);
}
60% {
  transform: translate(-50%, 100%);
}
100% {
  transform: translate(-50%, 400%);
}
}

.hukidashi_box {
  margin: 1.5em 0;
  overflow: hidden;
  display: flex;
  justify-content: end;
}
.hukidashi_box_yellow {
  margin: 1.5em 0;
  overflow: hidden;
  display: flex;
  justify-content: end;
}
.hukidashi_box img {
  border: solid 3px #d7ebfe;
  box-sizing: border-box;
  width: 55px;
  max-width: 55px;
  height: 55px !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  display: inline-block;
  width: 55px;
  min-width: 55px;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-left: 30px;
    margin-right: 0px;
}
.hukidashi_box_yellow img {
  border: solid 3px #fffacd;
  box-sizing: border-box;
  width: 55px;
  max-width: 55px;
  height: 55px !important;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  display: inline-block;
  width: 55px;
  min-width: 55px;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-left: 30px;
    margin-right: 0px;
}
.hukidashi_box .hukidashi {
  display: block;
  position: relative;
  margin: 0 0 0 20px;
  padding: 12px;
  border-radius: 10pt;
  background-color: #d7ebfe;
  margin-bottom: 20px;
}
.hukidashi_box_yellow .hukidashi {
  display: block;
  position: relative;
  margin: 0 0 0 20px;
  padding: 12px;
  border-radius: 10pt;
  background-color: #fffacd;
  margin-bottom: 20px;
}
.hukidashi_box .hukidashi p {
  text-align: left;
}
.hukidashi_box .hukidashi::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -26px;
  border: 11pt solid transparent;
  border-left: 11pt solid #d7ebfe;
}
.hukidashi_box_yellow .hukidashi::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -26px;
  border: 11pt solid transparent;
  border-left: 11pt solid #fffacd;
}
.box{
  border: 1px solid #ccc;
  display: block;
  width: 100%;
}
.box h2{
  background-color: #f48d91;
  padding: 0.5em;
  font-size: 17px;
  text-align: center;
  color: #fff;
}
.box img{
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  display: block;
  height: auto;
  box-sizing: border-box;
}
.box p{
  padding: 10px;
}
.box .small{
  text-align: right;
}
.left_pink{
  font-size: 1.3em;
    border-bottom: 1px solid #999;
    border-left: 6px solid #f9afe3;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 0 0 10px 15px;
    margin: 30px 0 30px;
}
.back_pink{
  width: 100%;
    color: #ffffff;
    background-color: #eb6ea0;
    font-size: 30px;
    text-align: left;
    font-weight: bold;
    margin: 0 auto 10px;
    padding: 10px;
    box-sizing: border-box;
}
@media screen and (max-width: 600px){
  .back_pink{
    font-size: 20px;
  }
}


@media screen and (max-width: 600px) {
  .section04 .voicebox .top {
    font-size: 0.7rem;
  }
  .section04 .voicebox .top .left img {
    margin-bottom: 10px;
  }
  .section04 .voicebox .bottom p {
    font-size: 0.7rem;
  }
}
.small {
  text-align: right;
  font-size: 10px;
  color: rgb(187, 187, 187);
}

.btn {
  width: 100%;
}

.back_blue {
  font-size: 20px;
  color: #ffffff;
  background: #3880ff;
  text-align: center;
  padding: 10px !important;
  margin: 20px 0 30px !important;
  font-weight: 700;
  line-height: 30px;
  position: relative;
}
.back_blue::before {
  border-top: 10px solid #3880ff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer{
  text-align: center;
}
.point{
  background-color: #fff0f5;
  display: block;
  width: 100%;
  position: relative;
  padding: 10px 15px;
}
.point .icon img{
  width: 10px;
    height: auto;
    margin: 0;
    margin-right: 5px;
}
.point .icon{
  position: absolute;
    left: 0px;
    bottom: 100%;
    background: black;
    color: #fff;
    border-radius: 5px 5px 0 0;
    padding: 5px 7px 3px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 9px 3px;
    font-size: 11px;
    
}
.point .icon{
  animation: animation_text_blink 1.5s linear 0s infinite normal both;
}
@keyframes animation_text_blink {
 0% {
    opacity: 0;
}
50% {
    opacity: 1;
}
100% {
    opacity: 1;
}
}
.text_right{
  text-align: right;
}
.hansoku_box{
  box-sizing: border-box;
    max-width: 100%;
    position: relative;
    padding: 12px;
    background: rgb(255, 255, 255);
    border-radius: 6px;
    border: 1px solid rgb(204, 204, 204);
    box-shadow: rgb(255, 199, 211) 3px 3px;
}
.hansoku_box h2{
  box-sizing: border-box;
    max-width: 100%;
    background-color: rgb(255, 123, 161);
    margin: 0px auto;
    padding: 10px;
    text-align: left;
    position: absolute;
    box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 2px;
    border-radius: 6px;
    top: 0px;
    left: 0px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    text-shadow: rgb(128, 128, 128) 1px 2px 3px;
    letter-spacing: 0.05em;
    width: auto;
    font-size: 16px;
}
.link_box .btn{
  position: relative;
}

.linkbox  input:checked+label  {
  background-color: #D71D3B;
  color: #ffffff;
}
/*リセット */
input[type="checkbox"]  {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="checkbox"] {
  cursor: pointer;
  padding-left: 30px;/*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block; 
  position: absolute;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #666464;
  width: 20px;/*チェックボックスの横幅*/
  height: 20px;/*チェックボックスの縦幅*/
  left: 10px;
    position: absolute;
    top: 20px;
    z-index: 1;
}
input[type="checkbox"]::after {
  border-bottom: 3px solid #D71D3B;/*チェックの太さ*/
  border-left: 3px solid #D71D3B;/*チェックの太さ*/
  opacity: 0;/*チェック前は非表示*/
  height: 6px;/*チェックの高さ*/
  width: 11px;/*チェックの横幅*/
  transform: rotate(-45deg);
  

  top: 25px;
    left: 15px;
    z-index: 2;
}
input[type="checkbox"]:checked::after {
  opacity: 1;/*チェック後表示*/
}


.linkbox input[type='checkbox']+label .btn::before {
  top: 42%;
  width: 30px;
  height: 30px;
}
.linkbox  input[type='checkbox']+label .btn:after {
  top: 51%;
  left: 16px;
  width: 16px;
  height: 8px;
  border-left-width: 4px;
  border-bottom-width: 4px;
}
.linkbox {
  margin: 30px auto 20px;
  width: 100%;
    margin: 0 auto 40px;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
}
.linkbox input+label {
  cursor: pointer;
  border: none;
  display: block;
  box-shadow: 6px 8px 0px #000;
  border-radius: 10px;
}
.linkbox  input+label .btn {
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 10px 10px 40px;
  font-weight: bold;
  background-color: #eee;
  line-height: 1.4;
  position: relative;
  display: block;
  box-sizing: border-box;
}
.linkbox  input:checked+label .btn {
  background-color: #D71D3B;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
  background-color: #D71D3B;
  color: #ffffff;
}

/* gclidの値が一致した時に描画させたい要素には、デフォルトでdisplay: noneを入れておく。 */
body #profuction {
  display: none;
}
body #anke-to {
  display: block;
}