@charset "UTF-8";

html,body {
    background-color: #FEF9F2;
    height: 100%;
}

* ,*:before, *:after {
    letter-spacing: 1px;
    color: #000000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    -ms-font-feature-settings: "normal";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

::selection {
    background: #d4003b;
    color: #FEF9F2;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 500;
}

h2 {
    font-size: 36px;
    font-weight: 400;
    font-family: 'Lato',sans-serif;
    -ms-font-feature-settings: "normal";
    color: #000000;
}
@media screen and (max-width: 639px){
    h2 {
        font-size: 36px;
    }
}

h3 {
    font-size: 24px;
    font-weight: bold;
    -ms-font-feature-settings: "normal";
}
@media screen and (max-width: 639px){
    h3 {
        font-size: 24px;
    }
}

p {
    font-weight: 500;
    -ms-font-feature-settings: "normal";
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a:link {
    color: #000000;
    text-decoration: none;
}

a:visited {
    color: #000000;
    text-decoration: none;
}

a img {
    border-width: 0px;
    border-style: none;
    border-color: #000000;
    background: transparent;
}



input,textarea {
    transition: 0.3s;
    border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
    outline: 0;
    background-color: #ffffff;
}


/***********************************************
* common
************************************************/
/*** inner ***/
.inner {
    max-width: 940px;
}
@media screen and (max-width: 939px){
    .inner {
        max-width: unset;
        width: 100%;
    }
}

/*** loading ***/
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.loading-logo {
    position: absolute;
    width: 10%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: sk-scaleout 2s;
}
.loading-logo img {
    width: 15%;
    min-width: 150px;
}
@keyframes sk-scaleout {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.loaded {
    opacity: 0;
    visibility: hidden;
}

/*** hide ***/
.pc-hide {
    display: none!important;
}
.sp-hide {
    display: block!important;
}
@media screen and (max-width: 639px){
    .pc-hide {
        display: block!important;
    }
    .sp-hide {
        display: none!important;
    }
}

/*** fadeIn ***/
.fadeIn {
    opacity: 0;
    transform : translate(0, 50px);
    -webkit-transform : translate3d(0, 50px,50);
    -ms-transform : translate3d(0, 50px,50);
    transition : all 1s;
}
.fadeIn.scrollin{
    opacity: 1;
    transform: translate(0, 0);
}

/*** btn ***/
.btn01 {
    width: 620px;
    margin: auto;
}
.btn01 a {
    display: block;
    width: 100%;
    font-size: 20px;
    text-decoration: none;
    background: #d4003b;
    text-align: center;
    color: #ffffff;
    transition: 0.2s;
    padding: 1.5em 0;
}
.btn01 a:hover {
    background: #ff0048;
}

.btn02 {
    width: 620px;
    margin: auto;
}
.btn02 a {
    display: block;
    width: 100%;
    font-size: 20px;
    text-decoration: none;
    background: #d4003b;
    text-align: center;
    color: #ffffff;
    border: 2px solid #d4003b;
    transition: 0.2s;
    padding: 1.5em 0;
}
.btn02 a:hover {
    background: #ffffff;
    color: #d4003b;
    transform: translate(-5px, -5px);
    box-shadow: 5px 5px 0px 0px #d4003b ;
}

.btn03 {
    width: 100%;
    margin: auto;
}
.btn03 a {
    display: block;
    width: 100%;
    font-size: 30px;
    text-decoration: none;
    background: #d4003b;
    text-align: center;
    color: #ffffff;
    transition: 0.2s;
    padding: 2em 0;
}
.btn03 a:hover {
    background: #ff0048;
}

.btn04 {
    position: relative;
    width: 160px;
    margin: auto;
}
.btn04 span {
    display: block;
    width: 100%;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    transition: 0.2s;
    padding: 0.75em 0;
    border: 1px solid #ffffff;
    letter-spacing: 2px;
}
.btn04 span:hover {
    background: #ff0048;
    border: 1px solid #ff0048;
}

.btnArrow04:hover .btn04::after,
.btnArrow04:hover .btn04::before {
    content: "";
    position: absolute;
    border-bottom: 1px solid #ffffff;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.btn04::before {
    width: 23px;
    top: 20px;
    animation-name: btn-arrow01;
}
.btn04::after {
    width: 9px;
    top: 17px;
    transform: rotate(45deg);
    animation-name: btn-arrow02;
}
@keyframes btn-arrow01 {
    0% {
        left: -16px;
    }
	20% {
        opacity: 1;
    }
    100% {
        left: -6px;
        opacity: 0.2;
    }
}
@keyframes btn-arrow02 {
    0% {
        left: -1px;
    }
	20% {
        opacity: 1;
    }
    100% {
        left: 9px;
        opacity: 0.2;
    }
}


/*** ta-c ***/
.ta-c {
    text-align: center;
}

/*** last-section ***/
.last-section {
    padding-bottom: 70px;
}
@media screen and (max-width: 639px){
    .last-section {
        padding-bottom: 70px;
    }
}


/***********************************************
* header
************************************************/
#header {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 70px;
    background-color: #ffffff;
    z-index: 60;
    box-shadow: 0px 15px 20px rgb(0 0 0 / 10%);
}

#header .logoarea {
    width: 200px;
    height: 100px;
    transition: 0.1s;
}

#header .logoarea .logo {
    position: relative;
    display: block;
    width: 70px;
    top: 5px;
    left: 60px;
    transition: 0.1s;
}

#header .logoarea .logo img {
    width: 100%;
}

#header .logoarea.lower {
    height: 70px;
}

#header .logoarea.lower .logo {
    width: 45px;
    height: 45px;
}

#header nav {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    height: 70px;
    background-color: #ffffff;
}

#header nav .gnav01 {
    display: flex;
    align-items: center;
}

#header nav .gnav01 li {
    margin: 0 30px;
}

#header nav .gnav01 li a {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Lato',sans-serif;
    -ms-font-feature-settings: "normal";
    letter-spacing: 0.25em;
}

#header nav .gnav01 li.type-b {
    display: block;
    background: #d4003b;
    margin-right: 0;
    height: 100%;
    transition: 0.3s;
}

#header nav .gnav01 li.type-b:hover {
    background: #ff0048;
}

#header nav .gnav01 li.type-b a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 2em;
}

#header nav .gnav01 li.type-b a span {
    padding-top: 27px;
    display: block;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.25em;
}



/***********************************************
* footer
************************************************/
#footer {
    height: 100px;
    background-color: #000000;
    text-align: center;
    font-weight: 500;
    font-family: 'Lato',sans-serif;
    -ms-font-feature-settings: "normal";
    display: flex;
    position: relative;
}

#footer a, #footer p {
    color: #ffffff;
}

#footer .ft-left, #footer .ft-right {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

#footer .ft-left .privacy {
    padding: 0 3em;
}

#footer .ft-left .privacy a {
    font-size: 16px;
}

#footer .ft-left .copyright p {
    font-size: 14px;
}

#footer .ft-right {
    position: absolute;
    right: 0;
}

#footer .ft-right .sns {
    display: flex;
    margin-right: 40px;
}

#footer .ft-right .sns a {
    padding: 1em 1.5em;
}

#footer .ft-right .sns a img {
    width: 30px;
    height: 30px;
    position: relative;
    top: 6px;
}

#scrollTop {
    position: relative;
    width: 100px;
    height: 100px;
    bottom: 3%;
    cursor: pointer;
    z-index: 10;
    background-color: #2c2c2c;
    cursor: pointer;
    transition: 0.3s;
}

#scrollTop::after,#scrollTop::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    width: 29px;
    height: 1px;
    background-color: #ffffff;
    transition: 0.3s;
}

#scrollTop::after {
    left: 25.5px;
    transform: rotate(-45deg);
}

#scrollTop::before {
    right: 25.5px;
    transform: rotate(45deg);
}

#scrollTop:hover {
    background-color: #4f4f4f;
}




/***********************************************
* IE
************************************************/
@media all and (-ms-high-contrast:none){
    main {
        display: block;
    }
    #header nav .gnav01 li a {
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
        -webkit-transform: rotate(.028deg);
        -ms-transform: rotate(.028deg);
        transform: rotate(.028deg);
    }
}
/***********************************************
* edge
************************************************/
@supports (-ms-ime-align:auto) {
    #header nav .gnav01 li a {
        font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
        -webkit-transform: rotate(.028deg);
        -ms-transform: rotate(.028deg);
        transform: rotate(.028deg);
    }
}

