@charset "UTF-8";
img {
  width: 100%;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

.fade__up {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
  transform: translate(0%, 30px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.onmouse {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.onmouse:hover {
  opacity: 0.6;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

@media screen and (max-width:740px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
/**scss共通ここまで***/
/*
header#header{
	z-index: 799;
	@media screen and (max-width:740px){
		position: fixed;
		top:0;
		left:0;
	}
	&.active{

		position: fixed;
		top:0;
		left:0;
	}
}
*/
.f_roboto_c_titles {
  font-family: "Roboto Condensed", sans-serif !important;
  color: #4C4C4C;
  font-size: 3.8rem !important;
}
@media screen and (max-width:740px) {
  .f_roboto_c_titles {
    font-size: 3rem !important;
    margin-left: -0.75rem !important;
  }
}

.f_roboto_c {
  font-family: "Roboto Condensed", sans-serif !important;
}

.f_roboto {
  font-family: "Roboto", sans-serif !important;
}

.f_lato {
  font-family: "Lato", sans-serif !important;
}

@media screen and (max-width:740px) {
  .ccm-page .section-heading {
    margin-bottom: 3rem;
  }
}

.first_contena {
  position: relative;
  min-height: 100vh;
  z-index: 10;
}

.second_contena {
  padding: 125px 0 200px;
  color: #fff;
  position: relative;
  z-index: 10;
  text-align: center;
  line-height: 240%;
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width:740px) {
  .second_contena {
    padding: 10vw 0 25vw;
    font-size: 3.5vw;
  }
}

.back_contena_img {
  position: fixed;
  width: 100%;
  height: 200%;
  top: 0px;
  left: 0;
  z-index: 1;
  background-image: url(../images/branding/brand_back_pc.jpg);
  background-position: center center;
  background-size: cover;
  transform: translate(0%, -25%);
}
@media screen and (max-width:740px) {
  .back_contena_img {
    height: 295%;
    background-image: url(../images/branding/brand_back_sp.jpg);
    transform: translate(0%, -5vw);
  }
}
.back_contena_img .inmask {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  top: 0;
  left: 0;
  transition: all 0.8s ease-out;
  opacity: 0;
}
.back_contena_img .inmask.active {
  opacity: 1;
}

.bra_scroll {
  width: 34px;
  position: fixed;
  z-index: 20;
  top: calc(100vh - 75px);
  left: 50%;
  transform: translate(-50%, 0%);
  transition: all 0.4s ease-out;
  pointer-events: none;
}
@media screen and (max-width:740px) {
  .bra_scroll {
    width: 30px;
    top: calc(100vh - 50px);
  }
}
.bra_scroll.active {
  opacity: 0;
}

.teme {
  animation: metsu 1.5s infinite;
}

@keyframes metsu {
  50% {
    opacity: 0;
  }
}
.infirst {
  width: 100%;
  height: 100vh;
  position: relative;
}
.infirst .top_text_contena {
  position: absolute;
  z-index: 15;
  width: 30%;
  max-width: 405px;
  top: 44.5%;
  left: 26%;
  padding-bottom: 100px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width:1000px) {
  .infirst .top_text_contena {
    width: 32.5%;
    max-width: 800px;
    top: 44.5%;
    left: 12.5%;
    transform: translate(0%, -50%);
  }
}
@media screen and (max-width:740px) {
  .infirst .top_text_contena {
    width: 75%;
    max-width: 800px;
    top: 65%;
    left: 12.5%;
    transform: translate(0%, -50%);
  }
}
.infirst .top_text_contena .brandtext {
  width: 42.2%;
  margin-bottom: 26px;
}
@media screen and (max-width:1366px) {
  .infirst .top_text_contena .brandtext {
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width:1000px) {
  .infirst .top_text_contena .brandtext {
    width: 126px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width:740px) {
  .infirst .top_text_contena .brandtext {
    width: 42.2%;
    margin-bottom: 5vw;
  }
}
.infirst .top_text_contena h3 {
  font-size: 28px;
  margin-bottom: 55px;
  font-weight: bold;
  color: #1B224C;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding-bottom: 0rem;
  border-bottom: 0rem solid #0065c8;
  color: #fff;
  width: 100%;
  position: relative;
}
@media screen and (max-width:1366px) {
  .infirst .top_text_contena h3 {
    font-size: 2vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width:1000px) {
  .infirst .top_text_contena h3 {
    font-size: 20px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width:740px) {
  .infirst .top_text_contena h3 {
    font-size: 5vw;
    width: 100%;
    margin-bottom: 10vw;
  }
}
.infirst .top_text_contena p.ints {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 55px;
  letter-spacing: 0.05em;
}
@media screen and (max-width:1366px) {
  .infirst .top_text_contena p.ints {
    font-size: 1.2vw;
    margin-bottom: 3.9vw;
  }
}
@media screen and (max-width:1000px) {
  .infirst .top_text_contena p.ints {
    font-size: 14px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width:740px) {
  .infirst .top_text_contena p.ints {
    font-size: 3vw;
    margin-bottom: 10vw;
  }
}
.infirst .times01, .infirst .times02, .infirst .times03, .infirst .times04 {
  -webkit-transition: all 1.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 1.4s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
  transform: translate(30px, 0px);
}
.infirst .times01.active, .infirst .times02.active, .infirst .times03.active, .infirst .times04.active {
  opacity: 1;
  transform: translate(0%, 0px);
}
.infirst .times02, .infirst .times03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

h2.brandtitles {
  margin-bottom: 80px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0rem;
  border-left-width: 0;
  font-size: 20px;
  background-color: transparent;
  line-height: 100%;
}
@media screen and (max-width:740px) {
  h2.brandtitles {
    margin-bottom: 30px;
  }
}
h2.brandtitles .eng {
  display: block;
  width: 100%;
  font-size: 48px;
  color: #B4B4B4;
  font-family: "Roboto Condensed", sans-serif !important;
  line-height: 120%;
  letter-spacing: 0.05em;
}
@media screen and (max-width:740px) {
  h2.brandtitles .eng {
    font-size: 7.5vw;
  }
}
h2.brandtitles .jp {
  display: block;
  font-size: 20px;
  width: 100%;
  font-weight: 600;
  color: #5ED0FD;
  letter-spacing: 0.05em;
}
@media screen and (max-width:740px) {
  h2.brandtitles .jp {
    font-size: 3.6vw;
  }
}

.brand_midashi {
  font-size: 28px;
  color: #1255A3;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 75px;
}
@media screen and (max-width:740px) {
  .brand_midashi {
    font-size: 4.6vw;
    margin-bottom: 30px;
  }
}

#contents_hidden {
  width: 100%;
  overflow: hidden;
}

.ccm-page .breadcrumb {
  position: relative;
  z-index: 2;
}

.ccm-page .breadcrumb-invert .breadcrumb-list-item a.label {
  color: #1255A3 !important;
}

.ccm-page .breadcrumb-invert .breadcrumb-list-item::after {
  color: #1255A3 !important;
}

.ccm-page .breadcrumb-invert .breadcrumb-list-item .label {
  color: #1255A3 !important;
}

#section01 {
  padding: 70px 0 0px 0;
  background: url(../images/coo/back_top_pc.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width:740px) {
  #section01 {
    background: url(../images/coo/back_top_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#section01 .section__in {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (max-width:740px) {
  #section01 .section__in {
    height: 90vw;
  }
}
#section01 .section__in .text {
  width: 42%;
  padding-bottom: 40px;
}
@media screen and (max-width:740px) {
  #section01 .section__in .text {
    width: 58%;
    padding-bottom: 0;
  }
}
#section01 .section__in .text .main {
  width: 90%;
  margin-bottom: 40px;
}
@media screen and (max-width:740px) {
  #section01 .section__in .text .main {
    margin-bottom: 5vw;
  }
}
#section01 .section__in .text .profile {
  display: inline-block;
  padding: 0.75em 1.5em;
  text-align: left;
  background-color: #E8EEF3;
}
@media screen and (max-width:740px) {
  #section01 .section__in .text .profile {
    display: none;
  }
}
#section01 .section__in .text .profile .name {
  color: #1255A3;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
#section01 .section__in .text .profile .profile_text {
  color: #1255A3;
}
#section01 .section__in .imgs {
  width: 55%;
}
@media screen and (max-width:740px) {
  #section01 .section__in .imgs {
    display: none;
  }
}

.profile_sp {
  width: 100%;
  padding: 5vw;
  text-align: left;
  background-color: #E8EEF3;
  display: none;
}
@media screen and (max-width:740px) {
  .profile_sp {
    display: block;
  }
}
.profile_sp .name {
  color: #1255A3;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
.profile_sp .profile_text {
  color: #1255A3;
}
@media screen and (max-width:740px) {
  .profile_sp .profile_text {
    font-size: 3.8vw;
  }
}

#section02 {
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 10;
}
#section02 .section__in {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 90px 0 150px 0;
  position: relative;
}
@media screen and (max-width:740px) {
  #section02 .section__in {
    padding: 50px 0 50px 0;
  }
}
#section02 .backimgs01 {
  width: 1366px;
  height: 32%;
  position: absolute;
  left: 15.38%;
  top: 90px;
  transform-origin: left top;
  transform: skew(0deg, -15deg);
}
@media screen and (max-width:740px) {
  #section02 .backimgs01 {
    width: 100vw;
    height: 21%;
  }
}
#section02 .backimgs01 .inbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(#f5f9fc 0%, #cee8ff 100%);
}
@media screen and (max-width:740px) {
  #section02 .backimgs01 .inbox {
    background: linear-gradient(#f5f9fc 0%, #cee8ff 30%);
  }
}
#section02 .backimgs02 {
  width: 100vw;
  position: absolute;
  left: 50%;
  height: 28%;
  top: 21.5%;
  transform: translate(-50%, 0);
  clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0% 100%);
}
@media screen and (max-width:740px) {
  #section02 .backimgs02 {
    height: 26%;
    top: 22%;
    clip-path: polygon(0% 0%, 100% 7.5%, 100% 92.5%, 0% 100%);
  }
}
#section02 .backimgs02 .inbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #dee6eb -50%, #aadbff 100%);
}
#section02 .backimgs03 {
  width: 1366px;
  height: 20%;
  position: absolute;
  left: 15.38%;
  top: 47%;
  transform-origin: left top;
  transform: skew(0deg, -15deg);
}
@media screen and (max-width:740px) {
  #section02 .backimgs03 {
    transform: skew(0deg, -18deg);
    width: 100vw;
    top: 47%;
    height: 21%;
  }
}
#section02 .backimgs03 .inbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(205deg, #f9f9fc 0%, #cee8ff 35%);
}
@media screen and (max-width:740px) {
  #section02 .backimgs03 .inbox {
    background: linear-gradient(#f5f9fc 0%, #cee8ff 30%);
  }
}
#section02 .backimgs04 {
  width: 100vw;
  position: absolute;
  left: 50%;
  height: 19.25%;
  top: 56.5%;
  transform: translate(-50%, 0);
  clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0% 100%);
}
@media screen and (max-width:740px) {
  #section02 .backimgs04 {
    height: 14.25%;
    top: 59%;
    clip-path: polygon(0% 0%, 100% 7.5%, 100% 92.5%, 0% 100%);
  }
}
#section02 .backimgs04 .inbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #dee6eb -50%, #aadbff 100%);
}
#section02 .backimgs05 {
  width: 1366px;
  height: 20%;
  position: absolute;
  left: 15.38%;
  top: 73%;
  transform-origin: left top;
  transform: skew(0deg, -15deg);
}
@media screen and (max-width:740px) {
  #section02 .backimgs05 {
    transform: skew(0deg, -18deg);
    width: 100vw;
    top: 72%;
    height: 21%;
  }
}
#section02 .backimgs05 .inbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f9f9fc 0%, #cee8ff 75%);
}
@media screen and (max-width:740px) {
  #section02 .backimgs05 .inbox {
    background: linear-gradient(#f5f9fc 0%, #cee8ff 30%);
  }
}
#section02 .backimgs06 {
  width: 100vw;
  position: absolute;
  left: 50%;
  height: 30%;
  top: 82.5%;
  transform: translate(-50%, 0);
  clip-path: polygon(0% 0%, 100% 20%, 100% 80%, 0% 100%);
}
@media screen and (max-width:740px) {
  #section02 .backimgs06 {
    height: 30%;
    top: 84.5%;
    clip-path: polygon(0% 0%, 100% 7.5%, 100% 92.5%, 0% 100%);
  }
}
#section02 .backimgs06 .inbox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(-90deg, #dee6eb -50%, #aadbff 100%);
}
#section02 h2 {
  position: relative;
  z-index: 20;
  width: 100%;
  line-height: 160%;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  color: #1255A3;
  font-size: 36px;
}
@media screen and (max-width:1300px) {
  #section02 h2 {
    font-size: 2.7692307692vw;
  }
}
@media screen and (max-width:740px) {
  #section02 h2 {
    font-size: 5vw;
  }
}
#section02 .clumbox {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width:740px) {
  #section02 .clumbox {
    margin-bottom: 30px;
  }
}
#section02 .clumbox.moreunder {
  margin-bottom: 150px;
}
@media screen and (max-width:740px) {
  #section02 .clumbox.moreunder {
    margin-bottom: 80px;
  }
}
#section02 .clumbox.moreunder2 {
  margin-bottom: 120px;
}
@media screen and (max-width:740px) {
  #section02 .clumbox.moreunder2 {
    margin-bottom: 60px;
  }
}
#section02 .clumbox .text {
  width: 47.8%;
}
@media screen and (max-width:740px) {
  #section02 .clumbox .text {
    width: 100%;
    order: 2;
    margin-top: 5vw;
  }
}
#section02 .clumbox .text .base_txt {
  line-height: 200%;
}
@media screen and (max-width:740px) {
  #section02 .clumbox .text .base_txt {
    letter-spacing: 0.05em;
  }
}
#section02 .clumbox .photo {
  width: 47.8%;
}
@media screen and (max-width:740px) {
  #section02 .clumbox .photo {
    width: 100%;
    order: 1;
  }
}
#section02 .clumbox .minis {
  width: 100%;
  margin-top: 1.25em;
}
@media screen and (max-width:740px) {
  #section02 .clumbox .minis {
    width: 100%;
    order: 3;
  }
}
#section02 .imgs01 {
  position: relative;
  z-index: 20;
  margin-bottom: 130px;
}
@media screen and (max-width:740px) {
  #section02 .imgs01 {
    margin-bottom: 60px;
  }
}
#section02 .imgs01 figure {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
}
#section02 h3 {
  position: relative;
  z-index: 20;
  width: 100%;
  line-height: 160%;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  text-align: center;
  color: #1255A3;
  font-size: 36px;
}
@media screen and (max-width:1300px) {
  #section02 h3 {
    font-size: 2.7692307692vw;
  }
}
@media screen and (max-width:740px) {
  #section02 h3 {
    font-size: 4.8vw;
    text-align: left;
  }
}
#section02 .imgs02 {
  position: relative;
  z-index: 20;
  margin-bottom: 40px;
}
@media screen and (max-width:740px) {
  #section02 .imgs02 {
    margin-bottom: 5vw;
  }
}
#section02 .base_text02 {
  position: relative;
  z-index: 20;
  line-height: 200%;
  width: 68.15%;
  margin: 0 auto 60px auto;
}
#section02 .base_text02.moreunder {
  margin-bottom: 150px;
}
@media screen and (max-width:740px) {
  #section02 .base_text02.moreunder {
    margin-bottom: 80px;
  }
}
@media screen and (max-width:740px) {
  #section02 .base_text02 {
    width: 100%;
    margin-bottom: 5vw;
    letter-spacing: 0.05em;
  }
}
#section02 .imgs03 {
  position: relative;
  z-index: 20;
  margin-bottom: 220px;
}
@media screen and (max-width:740px) {
  #section02 .imgs03 {
    margin-bottom: 100px;
  }
}
#section02 .imgs03 figure {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.16);
}

/*******************************/
.f50 {
  font-size: 50px;
}
@media screen and (max-width:740px) {
  .f50 {
    font-size: 10vw;
  }
}

.f48 {
  font-size: 47px;
}
@media screen and (max-width:740px) {
  .f48 {
    font-size: 9vw;
  }
}

.f36 {
  font-size: 36px;
}
@media screen and (max-width:740px) {
  .f36 {
    font-size: 6vw;
  }
}

.f22 {
  font-size: 22px;
}
@media screen and (max-width:740px) {
  .f22 {
    font-size: 4.2vw;
  }
}

.f20 {
  font-size: 20px;
}
@media screen and (max-width:740px) {
  .f20 {
    font-size: 4.2vw;
  }
}

.f18 {
  font-size: 18px;
  line-height: 180%;
}
@media screen and (max-width:740px) {
  .f18 {
    font-size: 3.6vw;
  }
}

.f16 {
  font-size: 16px;
  line-height: 180%;
}
@media screen and (max-width:740px) {
  .f16 {
    font-size: 3.3vw;
  }
}

.f13 {
  font-size: 13px;
  line-height: 180%;
}
@media screen and (max-width:740px) {
  .f13 {
    font-size: 2.2vw;
  }
}

.f10 {
  font-size: 10px;
  line-height: 180%;
}
@media screen and (max-width:740px) {
  .f10 {
    font-size: 2vw;
  }
}

/*******************************************/
/*****************************************/
.f60res {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width:1300px) {
  .f60res {
    font-size: 4.6153846154vw;
  }
}
@media screen and (max-width:740px) {
  .f60res {
    font-size: 7.2vw;
  }
}

.f50res {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width:1300px) {
  .f50res {
    font-size: 3.8461538462vw;
  }
}
@media screen and (max-width:740px) {
  .f50res {
    font-size: 8vw;
  }
}

.f42res {
  font-size: 42px;
  line-height: 135%;
}
@media screen and (max-width:1300px) {
  .f42res {
    font-size: 3.2307692308vw;
  }
}
@media screen and (max-width:740px) {
  .f42res {
    font-size: 7.5vw;
  }
}

.f40res {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width:1300px) {
  .f40res {
    font-size: 3.0769230769vw;
  }
}
@media screen and (max-width:740px) {
  .f40res {
    font-size: 7.5vw;
  }
}

.f38res {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width:1300px) {
  .f38res {
    font-size: 2.9230769231vw;
  }
}
@media screen and (max-width:740px) {
  .f38res {
    font-size: 7vw;
  }
}

.f36res {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width:1300px) {
  .f36res {
    font-size: 2.7692307692vw;
  }
}
@media screen and (max-width:740px) {
  .f36res {
    font-size: 6.5vw;
  }
}

.f34res {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f34res {
    font-size: 2.6153846154vw;
  }
}
@media screen and (max-width:740px) {
  .f34res {
    font-size: 6vw;
  }
}

.f32res {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f32res {
    font-size: 2.4615384615vw;
  }
}
@media screen and (max-width:740px) {
  .f32res {
    font-size: 5.7vw;
  }
}

.f30res {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f30res {
    font-size: 2.3076923077vw;
  }
}
@media screen and (max-width:740px) {
  .f30res {
    font-size: 5vw;
  }
}

.f28res {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f28res {
    font-size: 2.1538461538vw;
  }
}
@media screen and (max-width:740px) {
  .f28res {
    font-size: 4.8vw;
  }
}

.f26res {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f26res {
    font-size: 2vw;
  }
}
@media screen and (max-width:740px) {
  .f26res {
    font-size: 4.6vw;
  }
}

.f24res {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f24res {
    font-size: 1.8461538462vw;
  }
}
@media screen and (max-width:740px) {
  .f24res {
    font-size: 4.4vw;
  }
}

.f22res {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f22res {
    font-size: 1.6923076923vw;
  }
}
@media screen and (max-width:740px) {
  .f22res {
    font-size: 4.2vw;
  }
}

.f20res {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f20res {
    font-size: 1.5384615385vw;
  }
}
@media screen and (max-width:740px) {
  .f20res {
    font-size: 4vw;
  }
}

.f19res {
  font-size: 19px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f19res {
    font-size: 1.4615384615vw;
  }
}
@media screen and (max-width:740px) {
  .f19res {
    font-size: 3.9vw;
  }
}

.f18res {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f18res {
    font-size: 1.3846153846vw;
  }
}
@media screen and (max-width:740px) {
  .f18res {
    font-size: 3.8vw;
  }
}

.f17res {
  font-size: 17px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f17res {
    font-size: 1.3076923077vw;
  }
}
@media screen and (max-width:740px) {
  .f17res {
    font-size: 3.6vw;
  }
}

.f16res {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f16res {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width:740px) {
  .f16res {
    font-size: 3.4vw;
  }
}

.f15res {
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f15res {
    font-size: 1.1538461538vw;
  }
}
@media screen and (max-width:740px) {
  .f15res {
    font-size: 3.3vw;
  }
}

.f14res {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f14res {
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width:740px) {
  .f14res {
    font-size: 3.2vw;
  }
}

.f13res {
  font-size: 13px;
  line-height: 140%;
}
@media screen and (max-width:1300px) {
  .f13res {
    font-size: 1vw;
  }
}
@media screen and (max-width:740px) {
  .f13res {
    font-size: 3vw;
  }
}

.f12res {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:1300px) {
  .f12res {
    font-size: 0.9230769231vw;
  }
}
@media screen and (max-width:740px) {
  .f12res {
    font-size: 2.4vw;
  }
}

.f11res {
  font-size: 11px;
  line-height: 125%;
}
@media screen and (max-width:1300px) {
  .f11res {
    font-size: 0.8461538462vw;
  }
}
@media screen and (max-width:740px) {
  .f11res {
    font-size: 2.3vw;
  }
}

.f10res {
  font-size: 10px;
  line-height: 125%;
}
@media screen and (max-width:1300px) {
  .f10res {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width:740px) {
  .f10res {
    font-size: 2.2vw;
  }
}

#footer {
  position: relative;
  z-index: 10;
}

.fade__up {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
  transform: translate(0%, 30px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__side {
  -webkit-transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
  transform: translate(25%, 0px);
}
.fade__side.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.big__in {
  -webkit-transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  transform: translate(0%, 0px) scale(0.75);
}
.big__in.active {
  opacity: 1;
  transform: translate(0%, 0px) scale(1);
}

.anime_a_time2 {
  clip-path: inset(0% 100% 0% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
}
@media screen and (max-width:740px) {
  .anime_a_time2 {
    transition: clip-path 1s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  }
}
.anime_a_time2.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time3 {
  clip-path: inset(0% 0% 0% 100% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:740px) {
  .anime_a_time3 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time3.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.delay1 {
  transition-delay: 0s;
}

.delay2 {
  transition-delay: 0.3s;
}

.delay3 {
  transition-delay: 0.6s;
}

.delay4 {
  transition-delay: 0.9s;
}

.delay5 {
  transition-delay: 1.2s;
}/*# sourceMappingURL=coo.css.map */