.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.wrapper_result {
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
}

@media only screen and (max-device-width: 480px) {
    .wrapper {
        align-items: start;
    }

    #loadingWindow {
        margin-top: 200px;
    }
}

#loadingWindow{
    display: none;
}

#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}

#video {
    /*天地中央配置*/
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

#bg-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
    background-color: rgba(251, 176, 59, 0.8);
}


.bottom{
    position: fixed;
    bottom: 0;
    width: 100%;
}

.maxWidth{
    width: 800px;
}

textarea {
	resize: none;
}

.discription {
    font-size: 1.2em;
    color: #fff;
}

.text-link {
    text-decoration: none;
    color: #fff
}

.btn-outline-primary{
    background-color: #ecf4ff;
}

.btn-outline-secondary{
    background-color: #eeeeee;
}

body{
    font-family: 'Kosugi Maru', sans-serif;
}

#subtitle {
    position: relative;
    text-align: center;
  }

#subtitle:before {
    position: absolute;
    bottom: -13px;
    left: calc(50% - 30px);
    width: 60px;
    height: 3px;
    content: '';
    border-radius: 2px;
    background: #000;
  }

.arrow_box {
	position: relative;
	background: #ffffff;
	border: 4px solid #000000;
    border-radius: 10px;
    padding: 20px;
}
.arrow_box:after, .arrow_box:before {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #ffffff;
	border-width: 10px;
	margin-top: -10px;
}
.arrow_box:before {
	border-color: rgba(0, 0, 0, 0);
	border-right-color: #000000;
	border-width: 16px;
	margin-top: -16px;
}

.sp{
    display: none !important;
}

@media screen and (max-width:480px) {
    .pc{
        display: none !important;
    }    

    .sp{
        display: block !important;
    }

    .arrow_box {
        position: relative;
        background: #ffffff;
        border: 3px solid #000000;
    }
    .arrow_box:after, .arrow_box:before {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }
    
    .arrow_box:after {
        border-color: rgba(255, 255, 255, 0);
        border-top-color: #ffffff;
        border-width: 10px;
        margin-left: -10px;
        margin-top: -1px;
    }
    .arrow_box:before {
        border-color: rgba(0, 0, 0, 0);
        border-top-color: #000000;
        border-width: 14px;
        margin-left: -14px;
        margin-top: 0px;
    }
}

.fixed_btn
{
  position: fixed;
  bottom: 10px; 
  right: 10px;
  padding: 6px 6px;
  background-image: url("../images/goods_3.png");
  background-size: contain;
  background-repeat: no-repeat;
  font-weight: 800;

  display: inline-block;
  text-decoration: none;
  color: rgb(216, 67, 67);
  width: 80px;
  height: 80px;
  line-height: 105px;
  text-align: center;
  overflow: hidden;
  transition: .4s;
}

h1 {
    color: #000;
    text-align: center;
    padding: 0.25em;
    border-top: solid 3px #000;
    border-bottom: solid 3px #000;
    background: #fff;
    /* background: -webkit-repeating-linear-gradient(-45deg, #fff, #fff 3px,#fff9e8 3px, #fff9e8 7px);
    background: repeating-linear-gradient(-45deg, #fff, #fff 3px,#fff9e8 3px, #fff9e8 7px); */
  }