@charset "UTF-8";

/* reset ------*/
button, input, optgroup, select, textarea {
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	color: inherit;
	font: inherit;
	background: transparent;
	padding: 0;
	margin: 0;
	border-radius: 0;
	text-align: inherit;
	text-transform: inherit
}
[type="checkbox"] {
	-webkit-appearance: checkbox;
	appearance: checkbox
}
[type="radio"] {
	-webkit-appearance: radio;
	appearance: radio
}
button, [type="button"], [type="reset"], [type="submit"] {
	cursor: pointer
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
	cursor: default
}
:-moz-focusring {
	outline: auto
}
select:disabled {
	opacity: inherit
}
option {
	padding: 0
}
/* common -----*/
:root{
    --base-color:#664444;
    --point-color:#e95283;
}

body{
    color: var(--base-color);
    font-family: "Noto Sans JP",Verdana,sans-serif;
}
header{
    display: flex;
    align-items: center;
    box-shadow: 0 1px 10px rgba(0,0,0,.1);
    .header-logo{
        display: flex;
        align-items: center;
        top: unset;
        span{
            color: var(--base-color);
        }
    }
}
.footer-nav{
    justify-content: center;
    .footer-nav-inner{
        a{
            color: unset;
        }
    }
}
/* プルダウン全体のラッパー */
.lang{
    display: flex;
    position: absolute;
    right: 0;
    height: 70px;
    justify-content: center;
    align-items: center;
    @media screen and (min-width: 841px) and (max-width: 1220px){
        
    }
    @media screen and (max-width: 840px){
        height:35px;
    }
}
.language-switcher-wrapper {
  display: inline-block;
  position: relative;
  font-family: 'Arial', sans-serif;
  margin: 20px;
    @media screen and (max-width: 840px){
        margin:10px;
    }
}
/* セレクトボックス */
.language-switcher {
  appearance: none; /* デフォルトUIを消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f0f0f0;
  color: var(--base-color);
  padding: 10px 40px 10px 16px;
  border: 1px solid #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
    @media screen and (min-width: 841px) and (max-width: 1220px){
        font-size:2vw;
    }
    @media screen and (max-width: 840px){
        padding:3px 30px 3px 16px;
        width:120px;
        font-size:3vw;
    }
}
.language-switcher-wrapper::after {
  content: "▼";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--point-color);
  pointer-events: none;
}
.language-switcher:hover {
  border-color: var(--point-color);
}
.language-switcher:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

/* entry ---------------------------------------*/

.entrykv-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
	position: relative;
	overflow: hidden;
	padding-top: 70px;
    background: url("../img/bg-sv-map.jpg")no-repeat center center;
    background-size: cover;
    min-height: 749px;
    max-height: 750px;
    background-color:rgba(255,255,255,0.5);
    background-blend-mode:lighten;
    @media screen and (max-width: 840px){
        min-height:680px;
    }
    &::after{
        content: "";
        background: url(../../../assets/img/logo_header.png) center top no-repeat;
        position: absolute;
        right: 0;
        top: 85px;
        display: block;
        width: 210px;
        height: 100%;
        @media screen and (max-width: 840px){
            right:10px;
            top:55px;
            width:120px;
            background-size:contain;
        }
    }
}
.btn{
    display: block;
    margin: 3rem auto 0;
    text-align: center;
    width: fit-content;
    @media screen and (max-width: 840px){
        margin: 0 auto;
    }
    .btn-pink{
        display: block;
        background: var(--point-color);
        padding: 1rem 2rem;
        border-radius: 30px;
        color: #fff;
        font-weight: 600;
    }
}
.entrykv-title img {
	width: calc(100vw/2);
    max-width: 715px;
}

.entrykv-term {
	text-align: center;
}

.entrykv-term-title {
	margin-bottom: 10px;
}

.entrykv-term-text {
    padding: 1rem;
	font-size: clamp(1rem, 0.924rem + 0.32vw, 1.313rem);
	color: #936134;
	line-height: 1.6;
    letter-spacing: .1rem;
	font-weight: 600;
    text-align: center;
    background-color: #b081b7;
    color: #fff;
}

.entrywrapper {
	position: relative;
	overflow: unset;
}

.entrymain {
	background: #f9dce4;
	padding: 96px 50px 80px;
    position: relative;
    @media screen and (max-width: 840px){
		padding: 0 0 2rem;
	}
}

.entrymain-inner {
	max-width: 1100px;
	margin: 0 auto;
    @media screen and (max-width: 840px){
        padding:15% 10%;
    }
}

.entrymain-lead {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
    font-size: 2rem;
	text-align: left;
    line-height: 1.5;
	padding: 65px 110px;
	margin-bottom: 0;
	position: relative;
    word-break: auto-phrase;
    @media screen and (max-width: 840px){
        font-size:1.15rem;
		padding: 50px 30px 50px 40px;
		margin: 0 auto;
    }
    &::before {
        display: block;
        content: '';
        background: url('../img/entry-lead-frame.png') no-repeat left top;
        background-size: 100%;
        width: 230px;
        height: 100%;
        position: absolute;
        left: -40px;
        top: -42px;
        @media screen and (max-width: 840px){
            width:107px;
            left:-10px;
            top:-10px;
        }
    }
    &::after {
        display: block;
        content: '';
        background: url('../img/entry-lead-frame.png') no-repeat right bottom;
        background-size: 100%;
        width: 230px;
        height: 230px;
        position: absolute;
        right: -30px;
        bottom: -32px;
        left: unset;
        top: unset;
        transform: rotate(180deg);
        @media screen and (max-width: 840px){
            width:107px;
            height:107px;
            right:-10px;
            bottom:-20px;
        }
    }
}


.entrymain-lead p {
	font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
	line-height: 1.89;
	margin-bottom: 1em;
	color: #664444;
	letter-spacing: 0.08em;
    word-break:auto-phrase;
    @media screen and (max-width: 840px){
        text-align:left;
		line-height: 1.62;
		margin-bottom: 1.7em;
		letter-spacing: 0.1em;
        word-break:break-word;
    }
}

.entrymain-lead p:last-child {
	margin-bottom: 0;
}


.hr-ribon{
    text-align: center;
    &.pink-yellow{
        background: linear-gradient(180deg, rgb(249 220 228) 0%, rgb(249 220 228) 50%, rgb(255, 243, 174) 50%, rgb(255, 243, 174) 100%);
    }
    &.yellow-white{
        background: linear-gradient(180deg, rgb(255, 243, 174) 50%, rgb(255, 243, 174) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
    }
     &.yellow-pink{
        background: linear-gradient(180deg, rgb(255, 243, 174) 50%, rgb(255, 243, 174) 50%, rgb(249, 220, 228) 50%, rgb(249, 220, 228) 100%);
    }
}

.entryform {
	background: url("../img/bg-yellow.jpg")repeat center top;
	padding: 50px;
}

.entryform-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 0 85px;
	position: relative;
    border: unset;
    background: unset;
    &::after{
        display: none;
    }
    &::before{
        display: none;
    }
}

.entryform-title {
    color: #664444;
	text-align: center;
    border-bottom: 6px double #d4ca93;
    padding-bottom: 40px;
	margin-bottom: 40px;
	position: relative;
    .title{
        font-size: clamp(2rem, 1.757rem + 1.04vw, 3rem);
        font-weight: 800;
    }
    .body{
        font-size: clamp(0.938rem, 0.892rem + 0.19vw, 1.125rem);
    }
}
.entryform-list{
    display: flex;
    color: #664444;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    flex-shrink: 0;
    list-style: none;
    margin: 0 auto;
    gap:2rem 1rem;
    .list-box{
        width: calc((100%/4) - 1rem);
        position: relative;
        .list-image{
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            .list-number{
                position: absolute;
                z-index: 1;
                left: -10px;
                top: -10px;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30px;
                height: 30px;
                background: #f0be46;
                color: #fff;
                line-height: 0;
                border-radius: 50%;
            }
        }
        .list-name{
            font-size: 1vw;
            text-align: center;
            padding-top: 1rem;
            @media screen and (max-width: 840px){
                font-size: 3vw;
            }
        }
        @media screen and (max-width: 840px){
            width: calc((100%/2) - 1rem);
        }
    }
    li > div > img{
            transform: scale(1);
        -webkit-transition: all 0.25s ease;
            transition: all 0.25s ease;
    }
    li:hover > div > img{
        transform: scale(1.05);
        -webkit-transition: all 0.25s ease;
        transition: all 0.25s ease;
    }
}

.entryform-title img {}

.entryform-list {
	padding-bottom: 2px;
}

.entryform-list-item {
	margin-bottom: 53px;
}

.entryform-list-checkbox {
	position: relative;
}

.entryform-list-checkbox label {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	line-height: 1.4;
	min-height: 23px;
	margin: 0px 0;
	width: 100%;
	height: 100%;
	position: absolute;
	vertical-align: top;
	overflow: hidden;
	text-indent: -99em;
}

.expired .entryform-list-checkbox label {
	display: none;
}

.entryform-list-checkbox input[type="radio"] {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
}

.entryform-list-checkbox label::before {
	display: block;
	content: '';
	background: url(../../names-for-biscuit-bear-triplets/img/check.png) no-repeat center center;
	background-size: contain;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.entryform-list-checkbox input:checked+label::before {
	background-image: url(../../names-for-biscuit-bear-triplets/img/checked.png);
}

.entryform-list-checkbox input:disabled+label {
	opacity: 0.7;
	cursor: default;
}

.entryform-list-checkbox dl {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 35px;
	padding: 17px 78px;
	background: #ccc;
	border-radius: 40px;
	color: #fff;
	width: 92%;
	margin-left: 80px;
}

.expired .entryform-list-checkbox dl {
	margin: 0 auto;
}

.item-01 .entryform-list-checkbox dl {
	background: #FCB5C8;
}

.item-02 .entryform-list-checkbox dl {
	background: #DBA8E6;
}

.item-03 .entryform-list-checkbox dl {
	background: #79C7EB;
}

.item-04 .entryform-list-checkbox dl {
	background: #F4B765;
}

.item-05 .entryform-list-checkbox dl {
	background: #7AD39F;
}

.entryform-list-checkbox dt {
	width: 50px;
}

.entryform-list-checkbox dd {
	font-size: 25px;
	line-height: 1;
	color: #fff;
	font-weight: 600;
}

.entryform-submit {
	text-align: center;
}

.entryform-submit-btn {
	display: inline-block;
	cursor: pointer;
	border: 3px solid #936134;
	border-radius: 40px;
	background: #fff;
	color: #936134;
	font-size: 36px;
	line-height: 1.7;
	background: #fff;
	transition: all .25s ease;
	text-align: center;
	width: 322px;
	font-weight: 600;
}

.entryform-submit-btn.is-done{
	background-color: #936134;
	color:#fff;
	cursor:default;
	line-height: 1.55;
	padding-bottom: 5px;
}

.entryform-submit-btn:disabled {
    background-color: #d6d6d6;
    color: #9e9e9e;
    border-color: #d6d6d6;
    cursor: not-allowed;
}

.entryoverview {
	padding: 80px 50px 30px;
    background: #f9dce4;
    position: relative;
    &::after{
        content:"";
        background-image: url("../img/circle-border.svg");
        background-repeat: repeat-x;
        background-position: bottom;
        display: inline-block;
        width: 100%;
        height: 35px;
        position: absolute;
        bottom: -35px;
        left: 0;
        overflow: hidden;
    }
}

.entryoverview-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.entryoverview-block {
	margin-bottom: 70px;
    /*tr{
        border-bottom: 1px solid #664444;
        &:last-child{
            border-bottom: unset;
        }
    }
    th{
        width: fit-content;
        padding: 1rem;
        word-break: auto-phrase;
    }
    td{
        padding: 1rem 1rem 1rem 0;
    }*/
    tr{
        display: block;
        margin-bottom: 1.5rem;
    }
    tr:last-child{
        margin-bottom: unset;
    }
    th{
        display: block;
        width: 100%;
        font-weight: 600;
    }
    td{
        display: block;
        line-height: normal;
    }
    ul>li{
        list-style: disc;
        line-height: normal;
        margin-left: 1rem;
        margin-bottom: 1rem;
        &:last-child{
            margin-bottom: unset;
        }
    }
}

.entryoverview-block:last-child {
	margin-bottom: 0;
}

.entryoverview-block dt {
	text-align: center;
	margin-bottom: 22px;
}

.entryoverview-block dt span {
	display: inline-block;
	background: var(--point-color);
	color: #fff;
	font-size: 26px;
	font-weight: 600;
	border-radius: 30px;
	line-height: 1.6;
	padding: 2px 3px 4px;
	width: 228px;
}

.entryoverview-block dd {
	/*color: #4D4D4D;*/
    color: unset;
	font-size: 25px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}


/* thanks ---------------------------------------*/

.thanks-wrapper {
	padding: 210px 50px 100px;
	background: url("../img/bg-yellow.jpg")repeat center top;
	background-size: auto;
	overflow: hidden;
}

.thanks {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	position: relative;
}

.thanks::before {
	display: none;
}

.thanks::after {
	display: none;
}

.thanks-title {
	margin-bottom: 50px;
}

.thanks-title img {
    filter: drop-shadow(0px 5px 10px rgba(194,103,114,.2));
}

.thanks-message {
	background: #fff;
	padding: 48px 105px;
	border-radius: 20px;
	max-width: 1100px;
	margin: 0 auto 52px;
    position: relative;
    .message-title{
        color: var(--base-color);
        font-size: clamp(1.5rem, 1.379rem + 0.52vw, 2rem);
        font-weight: 600;
        line-height: normal;
        margin-bottom: 1rem;
    }
    .message-body{
        color: var(--base-color);
        text-align: center;
         @media screen and (max-width: 840px){
        }
    }
    @media screen and (max-width: 840px){
        padding: 2rem 2rem 2rem;
        border-radius: 10px;
        margin-bottom: 20px;
        width: 100%;
    }
    &::before {
        display: block;
        content: '';
        background: url("../img/entry-balloon-01.png") no-repeat left center;
        background-size: contain;
        width: 180px;
        height: 310px;
        position: absolute;
        left: -70px;
        top: -20%;
        @media screen and (max-width: 840px){
            width: 80px;
            left: -17px;
            top: -140px;
        }
    }
    &::after {
        display: block;
        content: '';
        background: url("../img/entry-balloon-02.png") no-repeat right center;
        background-size: contain;
        width: 170px;
        height: 320px;
        position: absolute;
        right: -70px;
        top: -20%;
        left: unset;
        @media screen and (max-width: 840px){
            width: 80px;
            right: -17px;
            top: -140px;
        }
    }
}

.thanks-message p {
	font-size: 20px;
	line-height: 1.8;
}

.thanks-btn {}

.thanks-btn a {
	display: inline-block;
	color: #fff;
	font-size: 22px;
	font-weight: 600;
	position: relative;
	background: #E84560;
	border-radius: 40px;
	line-height: 1.6;
	padding: 15px 30px 15px;
	width: 722px;
	max-width: 100%;
	transition: all .25s ease;
	letter-spacing: 0.07em;
}

/*.thanks-btn a::after {
	display: block;
	content: '';
	background: url('../img/icon_arrow.svg') no-repeat left top;
	background-size: 100%;
	width: 26px;
	height: 26px;
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translate(0, -50%);
}*/

.thanks-btn a:hover {
	opacity: 0.7;
}

.commercial{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5rem 1rem 2rem;
     grid-column-gap:1rem;
    @media screen and (max-width: 840px){
        padding: 1rem 1rem 2rem;
        flex-direction:column;
        grid-row-gap:1rem;
    }
    img{
        width: 100%;
        max-width: 580px;
        max-height: 250px;
    }
}

/* small pc */
@media screen and (min-width: 841px) and (max-width: 1220px){

	.entryform-inner{
		padding: 80px 40px 53px 45px;
	}

	.entryform-list-checkbox dl{
		padding: 17px 40px;
		gap:30px
	}

	.entryform-list-checkbox dd{font-size: 20px;}


}



/* small pc */
@media screen and (min-width: 841px) and (max-width: 1050px){

	.entrymain-chara-list>li {
		width: calc(33.33333% - 20px);
	}

	.entrymain-chara-text p{
		font-size: 18px;
	}

	.entrymain-chara-text p br{display: none !important;}

	.entryform-inner{
		padding: 80px 40px 53px 25px;
	}

	.entryform-list-checkbox dl{
		padding: 17px 30px;
		gap:20px
	}

	.entryform-list-checkbox dd{font-size: 18px;}

}


@media screen and (max-width: 840px){


	/* entry ---------------------------------------*/

	.entrykv-wrapper {
		padding-top: 35px;
	}

	.entrykv {
		display: block;
	}

	.entrykv-image {
		width: auto;
	}

	.entrykv-body {
		width: auto;
		padding: 5px 10px 10px;
	}

	.entrykv-title {
		margin-bottom: 8px;
		text-align: center;
	}

	.entrykv-title img {
		width: 100%;
	}

	.entrykv-term-title {
		margin-bottom: 4px;
	}

	.entrykv-term-title img {
		width: 145px;
	}

	.entryform {
		background: url("../img/bg-yellow.jpg")repeat center top;
		padding: 68px 5% 64px;
		position: relative;
	}

	.entryform-inner {
		padding: 0 0 20px;
		position: relative;
        &::before{
            display: none;
        }
	}

	.entryform-title {
		margin-bottom: 22px;
	}

	.entryform-title img {
		width: 330px;
	}

	.entryform-list {
		padding: 0 0 32px;
		max-width: 400px;
		margin: 0 auto;
	}

	.entryform-list-item {
		margin-bottom: 15px;
	}

	.entryform-list-checkbox label {}

	.entryform-list-checkbox label::before {
		width: 26px;
		height: 26px;
	}

	.entryform-list-checkbox dl {
		display: block;
		overflow: hidden;
		padding: 5px 30px;
		border-radius: 50px;
		margin-left: 40px;
	}

	.expired .entryform-list-checkbox dl {
		margin: 0 auto;
	}

	.entryform-list-checkbox dt {
		width: 51px;
		float: left;
		height: 70px;
		display: flex;
		align-items: center;
	}

	.entryform-list-checkbox dt img {
		width: 18px;
	}

	.entryform-list-checkbox dd {
		font-size: 18px;
		margin: 3px 0;
		letter-spacing: 0.08em;
	}

	.entryform-submit-btn {
		border: 2px solid #936134;
		font-size: 30px;
		width: 270px;
	}

	.entryoverview {
		padding: 38px 40px 10px;
		position: relative;
	}

	.entryoverview::before {
		display: none!important;
	}

	.entryoverview-block {
		margin-bottom: 30px;
		min-height: 120px;
		;
	}

	.entryoverview-block:last-child {
		margin-bottom: 0;
	}

	.entryoverview-block dt {
		margin-bottom: 15px;
	}

	.entryoverview-block dt span {
		font-size: 22px;
		padding: 2px 3px 4px;
		width: 195px;
	}

	.entryoverview-block dd {
		font-size: 17px;
		line-height: 1.8;
		letter-spacing: 0.05em;
	}

	/* thanks ---------------------------------------*/

	.thanks-wrapper {
		padding: 120px 25px 125px;
		background: url("../img/bg-yellow.jpg") repeat center top;
		background-size: auto;
        width: 100%;
	}

	.thanks::before {
		width: 150px;
		height: 150px;
		position: absolute;
		right: -88px;
		top: -121px;
	}

	.thanks::after {
		width: 220px;
		height: 220px;
		position: absolute;
		left: -110px;
		bottom: -220px;
	}

	.thanks-title {
		margin-bottom: 38px;
	}

	.thanks-title img {
		width: 270px;
	}


	.thanks-message p {
		font-size: 17px;
		line-height: 1.8;
		letter-spacing: normal;
	}

	.thanks-btn {}

	.thanks-btn a {
		font-size: 15px;
		text-align: center;
		line-height: 1.5;
		padding: 12px 20px 12px 30px;
		width: 70vw;
	}

	.thanks-btn a::after {
		width: 21px;
		height: 40px;
		right: 20px;
        top: 33px;
	}

	.thanks-btn a:hover {
		opacity: 0.7;
	}

}

/* Dialog ---*/
dialog {
      border: none;
      border-radius: 8px;
    color: var(--base-color);
      max-width: 640px;
      width: 90%;
      padding: 20px;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      margin: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 1001;
    text-align: center;
    }

    dialog[open] {
      opacity: 1;
      pointer-events: auto;
    }

    /* フェード用のカスタムバックドロップ */
    .dialog-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1000;
      pointer-events: none;
    }

    .dialog-backdrop.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-image {
      width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #E84560;
      color: #fff;
      border: unset;
        border-radius: 2em;
      font-size: 20px;
      cursor: pointer;
        width: 30px;
        height: 30px;
    }

    .close-btn:hover {
      color: #f44336;
    }

.answer {
	width: 100%;
	margin-top: 1em;
	color: #fff;
	background-color: transparent;
    border: unset;
}
.answer > span {
	position: relative;
	display: inline-block;
	padding: 0.5em 2em;
	border-radius: 3em;
	background-color: #E84560;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	cursor: pointer;
}
.answer:hover > span {
	padding: 0.5em 3em;
	-webkit-transition: all 0.15s ease;
	transition: all 0.15s ease;
}
.answer > span > span {
	position: relative;
	display: block;
	padding-left: 2em;
}
.answer > span > span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	background-image: url("../img/iconLove.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 96% auto;
	transform: translateY(-50%);
}
.answer.completed > span{
    background-color: #969696;
    color: #ddd;
}
.answer.completed:hover > span{
    background-color: #969696;
    padding: 0.5em 2em;
    cursor: not-allowed;
}
.footer-pages {
    padding: 50px 32px 38px;
    @media screen and (max-width: 840px){
       padding: 60px 32px 38px;
    }
}

/*balloon*/
#container {
    position: absolute;
    top: 0;
    overflow: hidden;
    display: inline-block;
    height: 100%;
    width: 100%;
}
.balloon {
    position: absolute;
    /*width: 120px;*/
  }
  /*svg {
    width: 100%;
    height: auto;
  }*/
/*#balloon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.balloon {
    position: absolute;
    bottom: -100px;
    width: 80px;
    height: 100px;
    background: red;
    border-radius: 50%;
    box-shadow: -6px -6px 0 rgba(0, 0, 0, 0.15) inset;
}

.balloon::after {
    content: '';
    position: absolute;
    bottom: -70px;
    left: 50%;
    width: 2px;
    height: 70px;
    background: #a0a0a0;
    transform: rotate(5deg);
}*/

.copyright{
    padding-bottom: 4rem;
    @media screen and (max-width: 840px){
        padding-bottom: 2rem;
    }
}
