/*================================================================default*/
html {
font-size: 62.5%;
}

body {
margin: 0;
padding: 0;
width: 100%;
font-family: "游ゴシック", "YuGothic-Medium", "YuGo-Medium", "ヒラギノ角ゴ ProN W3", "HiraKakuProN-W3", "モトヤLシーダ3等幅", MotoyaLCedar, "メイリオ", Meiryo, sans-serif;
}

body * {
box-sizing: border-box;
position: relative;
}

main {
width: 100%;
margin: 0 auto;
background-color: #f5f1ee;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dd {
margin: 0;
font-weight: 400;
}


figure {
vertical-align: bottom;
line-height: 1;
margin: 0;
}

img {
width: 100%;
height: auto;
vertical-align: bottom;
}

a {
transition: all .3s;
text-decoration: none;
}

ul {
padding: 0;
}

ul li {
list-style-type: none;
}

.wrapper {
display: flex;
justify-content: space-between;
}

/*================================================================header*/
.page-header {
background: #fff;
width: 100%;
}

@media (min-width: 750px) {
.page-header {
width: 750px;
margin: 0 auto;
}
}

.page-header .inner {
width: 92%;
height: 50px;
margin: 0 auto;
align-items: center;
}

@media (min-width: 750px) {
.page-header .inner {
width: 690px;
height: 100px;
}
}

.logo-header {
width: 62px;
}

.logo-cocktail-graphy {
width: 117px;
}


@media (min-width: 750px) {
.logo-header {
width: 123px;
}

.logo-cocktail-graphy {
width: 234px;
}
}

.page-header .inner p {
display: flex;
align-items: center;
}

/*================================================================footer*/
footer {
width: 100%;
background: #8c8c8c;
padding: 20px;
}

@media (min-width: 750px) {
footer {
width:750px;
margin: 0 auto;
}
}

.footer_main {
display: flex;
justify-content: center;
}

.footer_main figure {
width: 25%;
padding-right: 20px;
}

.footer_main_links {
display: flex;
align-items: center;
}

.footer_main_links ul li {
width: 100%;
}

.footer_main_links ul li a {
display: block;
color: #fff;
font-size: 12px;
text-decoration: none;
line-height: 1.2;
letter-spacing: 0.1rem;
margin: 10px 0;
padding-left: 16px;
position: relative;
}

.footer_main_links ul li a::before {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 6px 0 6px 8px;
border-color: transparent transparent transparent #fff;
position: absolute;
top: 50%;
left: 0;
margin-top: -6px;
}

.footer_copyright {
color: #fff;
font-weight: bold;
font-size: 12px;
text-align: center;
letter-spacing: 0.05rem;
line-height: 1.6;
padding: 20px 0;
margin: 20px auto 0;
border-top: 1px solid #dddcdc;
}

/*================================================================page*/
body {
background: #faf7f4;
}

main {
width: 100%;
margin: 0;
}

@media (min-width: 750px) {
main {
width: 750px;
margin: 0 auto;
}
}

#anq {
background: #fff;
padding: 0 0 44px;
}

@media (min-width: 750px) {
#anq {
padding: 0 0 87px;
}
}

#anq .gradient {
width: 100%;
height: auto;
background:linear-gradient(-45deg, #fff,#90dada,#90dada,#d5daf3,#f9eefb,#fad8dc,#fdf7e0,#fff,#fff,#fff);
background-size: 200% 200%;
animation: bggradient 5s ease infinite;
}

@keyframes bggradient {
	0% {
	background-position: 0% 50%;
	}
	50% {
	background-position: 100% 50%;
	}
	100% {
	background-position: 0% 50%;
	}
}

#sns {
background: #f5f2ef;
padding: 0 0 70px;
}

@media (min-width: 750px) {
	#sns {
	padding: 0 0 140px;
	}
}

#sns > div {
width: 90%;
margin: 0 auto;
}

@media (min-width: 750px) {
	#sns > div {
	width: 670px;
	}
}

.instagram-media {
min-width: 100% !important;
margin: 0 -1px 20px !important;
border-right: none !important;
border-left: none !important;
}

.btn {
width: 82%;
}

@media (min-width: 750px) {
	.btn {
	width: 612px;
	}
}

.btn:hover {
animation: scale .3s ease-in-out;
}

@keyframes scale {
50% { transform: scale(1.03); }
}

#anq .btn {
margin: -25px auto 0;
}

@media (min-width: 750px) {
	#anq .btn {
	margin: -50px auto 0px;
	}
}

#feature .btn {
margin: -125px auto 62px;
}

@media (min-width: 750px) {
	#feature .btn {
	margin: -250px auto 124px;
	}
}

.fadeUp {
animation-name: fadeUpAnime;
animation-duration: 1.5s;
animation-fill-mode: forwards;
opacity: 0;
}

@keyframes fadeUpAnime {
	from {
	opacity: 0;
	transform: translateY(150px);
	}

	to {
	opacity: 1;
	transform: translateY(0);
	}
}

.btn.float {
width: 92%;
position: fixed;
bottom: 20px;
left: 4%;
z-index: 1;
filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.39));
display: none;
}

@media (min-width: 750px) {
	.btn.float {
	width: 600px;
	left: calc(50% - 300px);
	}
}











/*================================================================popup*/
.open {
cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.overlay {
display: block;
z-index: 9999;
background-color: rgba(0,0,0,0.55);
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: none;
}

.overlay.open {
display: block;
}

.window {
background-color: rgba(245,242,239);
width: 50%;
box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
animation-name: modalopen;
animation-duration: 1s;
border-radius: 6px;
display: flex;
justify-content: center;
align-items: center;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.window {
	width: 90%;
	}
}

.close {
cursor:pointer;
position: absolute;
top: 4px;
right: 4px;
font-size: 2.4rem;
line-height: 1;
z-index: 1;
}

.modal-body {
padding: 10px 10px;
color: black;
}

/*--------------------
注意事項
--------------------*/
h2.subttl {
margin:0px;
padding:0px;
font-size: 1.6rem;
font-weight: 600;
line-height: 4.8rem;
letter-spacing: 0.75px;
color: #736f6d;
}

@media screen and (max-width: 768px) {
	h2.subttl {
	font-size: 1.44rem;
	line-height: 4rem;
	}
}

h2.subttl.caution {
padding: 0 12px 0 28px;
background: url("../images/icon_caution.svg") no-repeat 0px center;
background-size: 24px 24px;
}

#notes ul.attention {
border: 1px solid #d5cbc5;
padding: 16px;
margin-bottom: 36px;
}

#notes ul.attention li {
font-size: 1.6rem;
line-height: 3.2rem;
letter-spacing: 0.55px;
color: #736f6d;
padding: 0 0 0 1em;
}

@media screen and (max-width: 768px) {
	#notes ul.attention {
	padding: 16px;
	margin-bottom: 26px;
	}
	#notes ul.attention li {
	font-size: 1rem;
	line-height: 1.9rem;
	letter-spacing: 0.25px;
	}
}

#notes ul.attention li:before {
content: '・';
position: absolute;
left: 0;
}

/*--------------------
同意ボタン
--------------------*/
section#application #inputArea {
width: 100%;
}

#inputArea span {
display: flex;
justify-content: center;
}

#inputArea span label {
margin-bottom: 16px;
font-size: 1.6rem;
}

#inputArea span label a{
text-decoration: none;
font-weight: 600;
color: rgb(200,188,175);
}

#inputArea .btnR {
display: block;
margin: 0 auto 30px;
width: 260px;
height: 52px;
border-radius: 26px;
text-align: center;
font-size: 1.44rem;
font-weight: 700;
line-height: 48px;
color: #ffffff;
opacity: 0.5;
}

#inputArea .btnR:hover {
background-color: #d6cbc0;
}


@media screen and (max-width: 768px) {
#inputArea span label {
font-size: 1.12rem;
}

#inputArea .btnR {
width: 180px;
}
}

/*------------------
checkbox
------------------*/
input.myCheck[type="checkbox"] + label {
/* display: inline-block; */
position: relative;
padding-left: 26px;
padding-right: 0;
font-size: 1.6rem;
line-height: 2;
display: flex;
align-items: center;
}

@media screen and (max-width: 481px) {
	input.myCheck[type="checkbox"] + label {
	font-size: 2.08rem;
	}
}

input.myCheck {
display: none;
}

/* チェック前 */
input.myCheck[type="checkbox"] + label::before {
content: "";
width: 18px;
height: 18px;
position: absolute;
display: block;
box-sizing: border-box;
background: url("../images/icon_checkOff.svg") no-repeat 50% 100%;
/* margin-top: -9px; */
left: 0;
/* top: 50%; */
transform: translate(0, 5%);
}

/* チェック後 */
input.myCheck[type="checkbox"]:checked + label::before {
background: url("../images/icon_checkOn.svg") no-repeat 50% 100%;
}













