@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* -----------------------------------------------------------
	Header
----------------------------------------------------------- */
header {
  padding: 20px 25px;
  position: absolute;
  z-index: 100;
}
header h1 {
  display: flex;
  align-items: center;
}
header h1 .logo {
  width: min(11.6vw, 163px);
  padding-top: 6px;
}
header nav .btnCart {
  position: fixed;
  top: 20px;
  right: 85px;
  z-index: 200;
}
header nav .btnCart a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #00a44b;
  width: 220px;
  height: 40px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s all;
}
@media screen and (min-width: 769px) {
  header nav .btnCart a:hover {
    opacity: 0.7;
  }
}
header nav .btnCart a::before {
  content: "";
  width: 23px;
  height: 20px;
  background: url(../img/icon_cart.svg) 0 0 no-repeat;
  background-size: 23px 20px;
  margin-right: .5em;
}
header nav #Trigger {
  position: relative;
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 3000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  margin-left: 25px;
  transition: 0.3s all;
  cursor: pointer;
}
header nav #Trigger span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #e5181e;
  top: calc(50% - 5px);
  left: 11px;
  z-index: 110;
  transition: 0.3s all;
}
header nav #Trigger span:last-child {
  top: calc(50% + 3px);
}
@media screen and (min-width: 769px) {
  header nav #Trigger:hover {
    opacity: 0.7;
  }
}
header nav #Trigger.active span {
  transform: rotate(45deg);
  top: calc(50% - 1px);
}
header nav #Trigger.active span:last-child {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px 15px;
  }
  header h1 .logo {
    width: 105px;
    padding-top: 12px;
  }
  header h1 .kurozu {
    width: 97px;
    padding-left: 10px;
  }
  header nav .btnCart {
    top: 15px;
    right: 65px;
  }
  header nav .btnCart a {
    font-weight: 700;
    width: 40px;
    height: 40px;
  }
  header nav .btnCart a span {
    display: none;
  }
  header nav .btnCart a::before {
    margin-right: 0;
  }
  header nav #Trigger {
    top: 15px;
    right: 10px;
  }
}
/* ---------------------------
	DrawerMenu
--------------------------- */
#DrawerMenu {
  position: fixed;
  width: 700px;
  height: 100%;
  top: 0;
  right: -700px;
  transition: 0.3s right;
  z-index: 2000;
  background: #ffe790;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
#DrawerMenu.active {
  right: 0;
}
#DrawerMenu.app {
  opacity: 1;
}
#DrawerMenu > div {
  flex-shrink: 0;
  max-height: 100%;
}
#DrawerMenu div.navWrap {
  padding: 50px 0 0;
}
#DrawerMenu nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 550px;
}
#DrawerMenu nav ul {
  font-size: 18px;
  font-weight: 500;
}
#DrawerMenu nav ul li ~ li {
  margin-top: 30px;
}
#DrawerMenu nav ul a {
  display: flex;
  align-items: center;
  line-height: 1;
  transition: 0.3s all;
}
#DrawerMenu nav ul a::before {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../img/arr_nav.svg) 0 0 no-repeat;
  background-size: 7px 12px;
  margin-right: .5em;
}
@media screen and (min-width: 769px) {
  #DrawerMenu nav ul a:hover {
    color: #e5181e;
  }
}
#DrawerMenu .btnCart a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #00a44b;
  width: 220px;
  height: 40px;
  margin: 80px auto 0;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s all;
}
@media screen and (min-width: 769px) {
  #DrawerMenu .btnCart a:hover {
    opacity: 0.7;
  }
}
#DrawerMenu .btnCart a::before {
  content: "";
  width: 23px;
  height: 20px;
  background: url(../img/icon_cart.svg) 0 0 no-repeat;
  background-size: 23px 20px;
  margin-right: .5em;
}
#DrawerMenu div.snsWrap {
  width: 430px;
  margin: 75px auto 0;
  display: flex;
  justify-content: space-between;
  padding-bottom: 50px;
}
#DrawerMenu div.snsWrap > div {
  width: 170px;
  color: #e5181e;
}
#DrawerMenu div.snsWrap > div h3 {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5181e;
}
#DrawerMenu div.snsWrap > div ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#DrawerMenu div.snsWrap > div ul li {
  width: 32px;
  height: 32px;
}
#DrawerMenu div.snsWrap > div ul li ~ li {
  margin-left: 15px;
}
#DrawerMenu div.snsWrap > div ul a {
  transition: 0.3s all;
}
@media screen and (min-width: 769px) {
  #DrawerMenu div.snsWrap > div ul a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #DrawerMenu {
    width: 100%;
    display: block;
    right: -100vw;
  }
  #DrawerMenu > div {
    width: 100%;
    height: auto;
    min-height: 100%;
    max-height: none;
    position: relative;
  }
  #DrawerMenu div.navWrap {
    padding-bottom: 160px;
    padding-top: 12vh;
  }
  #DrawerMenu nav {
    display: block;
    width: 260px;
    margin: 0 auto;
  }
  #DrawerMenu nav ul {
    font-weight: 700;
    font-size: 16px;
  }
  #DrawerMenu nav ul li:nth-child(n+1), #DrawerMenu nav ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  #DrawerMenu nav ul a::before {
    width: 6px;
    height: 10px;
    background: url(../img/arr_nav.svg) 0 0 no-repeat;
    background-size: 6px 10px;
  }
  #DrawerMenu .btnCart {
    box-sizing: border-box;
    padding: 0 40px;
  }
  #DrawerMenu .btnCart a {
    width: 100%;
    height: 55px;
    margin: 50px auto 0;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
  }
  #DrawerMenu .btnCart a::before {
    width: 32px;
    height: 27px;
    background: url(../img/icon_cart.svg) 0 0 no-repeat;
    background-size: 32px 27px;
  }
  #DrawerMenu div.snsWrap {
    flex-direction: column;
    width: 100%;
    height: 210px;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999;
    padding-bottom: 0;
  }
  #DrawerMenu div.snsWrap > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 104px;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
  }
    #DrawerMenu div.snsWrap > div:first-child {
      margin-bottom: 2px;
    }
  #DrawerMenu div.snsWrap > div h3 {
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    font-size: 14px;
    padding-bottom: 0;
    margin-bottom: 13px;
    border-bottom: none;
  }
  #DrawerMenu div.snsWrap > div ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #DrawerMenu div.snsWrap > div ul li {
    width: 35px;
    height: 35px;
  }
  #DrawerMenu div.snsWrap > div ul li ~ li {
    margin-left: 15px;
  }
}

/* ---------------------------
	SNS
--------------------------- */
section.snsSec div.snsWrap {
  width: min(80vw, 800px);
  margin: 130px auto 0;
  display: flex;
  justify-content: space-between;
}
section.snsSec div.snsWrap > div {
  width: min(32vw, 320px);
  color: #e5181e;
}
section.snsSec div.snsWrap > div h3 {
  text-align: center;
  font-size: min(2.8vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 2px solid #e5181e;
}
section.snsSec div.snsWrap > div ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.snsSec div.snsWrap > div ul li {
  width: min(6vw, 60px);
  height: min(6vw, 60px);
}
section.snsSec div.snsWrap > div ul li ~ li {
  margin-left: min(3vw, 30px);
}
section.snsSec div.snsWrap > div ul li a {
  transition: 0.3s all;
}
@media screen and (min-width: 769px) {
  section.snsSec div.snsWrap > div ul li a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  section.snsSec div.snsWrap {
    width: 214px;
    margin: 60px auto 0;
    flex-direction: column;
  }
  section.snsSec div.snsWrap > div {
    width: 100%;
  }
  section.snsSec div.snsWrap > div ~ div {
    margin-top: 60px;
  }
  section.snsSec div.snsWrap > div h3 {
    font-size: 18px;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  section.snsSec div.snsWrap > div ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.snsSec div.snsWrap > div ul li {
    width: 40px;
    height: 40px;
  }
  section.snsSec div.snsWrap > div ul li ~ li {
    margin-left: 20px;
  }
}

div.toShopBtn {
  text-align: center;
}
div.toShopBtn .ttl {
  font-size: min(3.4vw, 38px);
  font-weight: 500;
  color: #00a44b;
}
div.toShopBtn .ttl::before {
  content: "▼";
  margin-right: 0.5em;
}
div.toShopBtn .ttl::after {
  content: "▼";
  margin-left: 0.5em;
}
div.toShopBtn .ttl.wh {
  color: #fff;
}
div.toShopBtn .btn {
  padding-bottom: 6px;
}
div.toShopBtn .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #00a44b;
  width: min(54vw, 600px);
  height: min(10vw, 100px);
  border-radius: 50px;
  font-size: min(3.1vw, 34px);
  font-weight: 500;
  transition: 0.3s all;
  margin: 35px auto 0;
  filter: drop-shadow(0 6px 0 #006d49);
}
@media screen and (min-width: 769px) {
  div.toShopBtn .btn a:hover {
    transform: translateY(6px);
    filter: drop-shadow(0 0 0 #006d49);
  }
}
div.toShopBtn .btn a::before {
  content: "";
  width: min(5.3vw, 59px);
  height: min(4.5vw, 50px);
  background: url(../img/icon_cart.svg) 0 0 no-repeat;
  background-size: min(5.3vw, 59px) min(4.5vw, 50px);
  margin-right: 0.5em;
}

@media screen and (max-width: 767px) {
  h2.ttl {
    font-size: 33px;
  }
  h2.ttl + p {
    font-weight: 700;
    font-size: 11px;
    margin-top: 10px;
  }
  div.toShopBtn .ttl {
    font-size: 24px;
    font-weight: 700;
  }
  div.toShopBtn .btn {
    padding-bottom: 4px;
  }
  div.toShopBtn .btn a {
    width: 80vw;
    height: 80px;
    font-size: 18px;
    margin: 25px auto 0;
    font-weight: 700;
    filter: drop-shadow(0 4px 0 #006d49);
  }
}

.fadeIn,
.upIn {
    opacity: 0;
}

.fadeIn.onAnim {
    animation: fadein 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

.upIn.onAnim {
    animation: upin 0.7s 1 cubic-bezier(0.55, 0.1, 0.56, 1.12) forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100%, to {
    opacity: 1;
  }
}

@keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* -----------------------------------------------------------
	colorbox
----------------------------------------------------------- */
#cboxLoadedContent {
    background-color: #fff !important;
}

#cboxLoadingOverlay {
    background: transparent;
}

#cboxOverlay {
    background: #000;
    opacity: 0.5 !important;
}

#cboxClose {
    top: 12px;
    right: 12px;
    width: 55px;
    height: 55px;
    background: none;
    background-color: #d2342c;
    border-radius: 50%;
}

#cboxClose::before,
#cboxClose::after {
    content: "";
    width: 23px;
    height: 6px;
    border-radius: 3px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#cboxClose::before {
    transform: rotate(45deg);
}

#cboxClose::after {
    transform: rotate(-45deg);
}

#cboxContent {
    margin: 0;
    background-color: #fff !important;
    border-radius: 20px;
}

#cboxLoadedContent {
    background: #fff;
    max-width: 540px;
    border-radius: 20px;
    adding: 10%;
    overflow: hidden;
}

.modalArea {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    padding: 10%;
}

.modalArea h3 {
    font-size: 24px;
    font-weight: bold;
}

.modalArea .modalImg {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 20px;
}

.modalArea .modalTeam {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
}

.modalArea .modalName {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 12px;
}

.modalArea .modalTeam + .modalName {
    margin-top: 0;
}

.modalArea .modalName span {
    font-size: 32px;
    font-weight: bold;
    margin-right: 8px;
}

.modalArea p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.modalArea .modalName + p {
    margin-top: 10px;
}

.modalArea .modalAge {
    margin-top: 10px;
    padding-top: 10px;
    border-top: dotted 2px #7f7f7f;
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    
    #cboxClose {
        width: 35px;
        height: 35px;
    }
    
    #cboxClose::before,
    #cboxClose::after {
        width: 18px;
        height: 5px;
    }
    
    .modalArea h3 {
        font-size: 20px;
    }
    
    .modalArea .modalName span {
        font-size: 25px;
    }
    
    .modalArea p {
        font-size: 15px;
    }
    
}

/* -----------------------------------------------------------
	共通
----------------------------------------------------------- */

a:focus {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
}

.soonLinkTxt {
    opacity: 0.7;
    color: #7f7f7f;
}

.soonLink {
    pointer-events: none;
}

.contentsOuter {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.displayNone {
    display: none;
}

.spBr {
    display: none;
}

@media screen and (max-width: 767px) {

    .pcBr {
        display: none;
    }

    .spBr {
        display: inline;
    }
}

.frameSec {
    background-color: #ff0c00;
    padding: 3.3vw 35px 2.7vw;
    overflow: hidden;
}

.frameArea {
    border: solid 2px #fbe89c;
    border-radius: 76px;
}

@media screen and (max-width: 767px) {
    .frameSec {
        padding: 6vw 0;
    }
    
    .frameArea {
        border-width: 1px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }    
}

@media screen and (min-width: 768px) {
    
    #hoverWrap a img,
    #mvBnCampaign a img,
    #pagetopBtn a img {
        transition: opacity 0.3s ease-in-out;
    }
    
    #hoverWrap a:hover img,
    #mvBnCampaign a:hover img,
    #pagetopBtn a:hover img {
        opacity: 0.7;
    }
    
}

/* -----------------------------------------------------------
	MV
----------------------------------------------------------- */
#mvSec {
    position: relative;
    background-image: linear-gradient(180deg, rgb(255, 12, 0), rgb(232, 76, 24));
}

#mvSec img {
    width: 100%;
}

#mvSec #mvImg {
    width: 100%;
}

#mvSec #mvBnThanksgiving {
    position: absolute;
    left: 0;
    right: 0;
    top: 21px;
    text-align: center;
}

#mvSec #mvBnThanksgiving a {
    display: inline-block;
    width: 31%;
    max-width: 434px;
}

#mvSec #mvBnThanksgiving a img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    
    #mvSec #mvImg img {
        padding-top: calc(58px + 14vw);
    }
    
    #mvSec #mvBnThanksgiving {
        top: 58px;
    }
    
    #mvSec #mvBnThanksgiving a {
        width: 72%;
    }
    
}

/* -----------------------------------------------------------
	JUMP
----------------------------------------------------------- */
#jumpSec {
    background-color: #fff7d9;
    padding: 2.5vw 20px 2.5vw;
}

#jumpSec ul {
    display: flex;
    justify-content: center;
    max-width: 880px;
    margin: 0 auto;
}

#jumpSec ul li {
    width: 19%;
    margin: 0 0.6%;
    position: relative;
}

#jumpSec ul li #jumpItemChara {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    transform: translate(-26%, 36%);
}

@media screen and (max-width: 767px) {
    #jumpSec {
        padding: 7.5vw 0;
    }
    
    #jumpSec ul {
        flex-wrap: wrap;
    }
    
    #jumpSec ul li {
        width: 30vw;
        margin: 0 1vw;
    }
    
    #jumpSec ul li:nth-child(n+3) {
        margin-top: 1vw;
    }
}

/* -----------------------------------------------------------
	イベント情報
----------------------------------------------------------- */
#eventSec .contentsOuter {
    display: flex;
    align-items: center;
    padding-top: 4.8vw;
    padding-bottom: 4.8vw;
    max-width: 1186px;
}

#eventSec #eventTitleArea {
    max-width: 276px;
    width: 23%;
}

#eventSec #eventTitleArea h2 {
    max-width: 224px;
    margin: 0 auto;
}

#eventSec ul {
    flex: 1;
    margin-left: 3%;
    border-top: dashed 1px #bfbfbf;
}

#eventSec ul li {
    border-bottom: dashed 1px #bfbfbf;
    font-size: 16px;
}

#eventSec ul li > div,
#eventSec ul li a {
    display: flex;
    padding: 25px 0;
}

#eventSec ul li .itemDate {
    width: 115px;
}

#eventSec ul li .itemtxt {
    flex: 1;
}

@media screen and (min-width: 768px) {
    
    #eventSec ul li a {
        transition: color 0.3s ease-in-out;
    }
    
    #eventSec ul li a:hover {
        color: #d2342c;
    }
    
}

@media screen and (max-width: 767px) {
    #eventSec .contentsOuter {
        display: block;
        padding-top: 11vw;
        padding-bottom: 9.5vw;
    }
    
    #eventSec #eventTitleArea {
        width: 48%;
        margin: 0 auto;
    }
    
    #eventSec ul {
        margin: 6vw 0 0;
    }
    
    #eventSec ul li {
        font-size: 14px;
    }
    
    #eventSec ul li > div,
    #eventSec ul li a {
        display: block;
        padding: 17px 0;
    }
}


/* -----------------------------------------------------------
	since
----------------------------------------------------------- */
#sinceSec {
    color: #fff;
    text-align: center;
}

#sinceSec #sinceArea {
    padding: 7.2vw 0 7.4vw;
    position: relative;
}

#sinceSec #sinceArea #sinceImg {
    position: relative;
}

#sinceSec #sinceArea #sinceImg::before,
#sinceSec #sinceArea #sinceImg::after {
    content: "";
    display: block;
    width: calc(50vw - (((100vw - 50px) * 0.6) / 2));
    height: 0.39vw;
    background-color: #fff;
    position: absolute;
    top: 36%;
}

#sinceSec #sinceArea #sinceImg::before {
    left: 0;
    transform: translateX(-60px);
}

#sinceSec #sinceArea #sinceImg::after {
    right: 0;
    transform: translateX(60px);
}

#sinceSec #sinceArea #sinceImg img {
    margin: 0 auto;
    position: relative;
    width: 56%;
}

#sinceSec #sinceArea h2 {
    font-size: min(5vw, 50px);
    margin-top: min(3.4vw, 50px);
    font-weight: 800;
}

#sinceSec #sinceArea p {
    font-size: min(2.5vw, 24px);
    font-weight: 600;
    margin-top: 0.6vw;
    line-height: 2.3;
}

#sinceSec #sinceArea #sinceChara {
    position: absolute;
    bottom: -1px;
    left: 10%;
    width: 9.5%;
}

@media screen and (min-width: 1260px) {

    #sinceSec #sinceArea #sinceImg::before,
    #sinceSec #sinceArea #sinceImg::after {
        width: calc(50vw - 364px);
        height: 5px;
    }
    
    #sinceSec #sinceArea #sinceImg::before {
        transform: translateX(calc((1150px - 100vw) / 2));
    }
    
    #sinceSec #sinceArea #sinceImg::after {
        transform: translateX(calc((100vw - 1150px) / 2));
    }

}

@media screen and (max-width: 767px) {
    
    #sinceSec #sinceArea {
        padding: 11vw 0 22vw;
    }
    
    #sinceSec #sinceArea #sinceImg img {
        width: 84vw;
    }
    
    #sinceSec #sinceArea #sinceImg::before,
    #sinceSec #sinceArea #sinceImg::after {
        width: 5vw;
    }
    
    #sinceSec #sinceArea #sinceImg::before {
        transform: translateX(-20px);
    }
    
    #sinceSec #sinceArea #sinceImg::after {
        transform: translateX(20px);
    }
    
    #sinceSec #sinceArea h2 {
        font-size: min(5.5vw, 50px);
        margin-top: min(7.4vw, 50px);
    }
    
    #sinceSec #sinceArea p {
        font-size: min(3.7vw, 24px);
        margin-top: 4.6vw;
        line-height: 2.1;
    }
    
    #sinceSec #sinceArea #sinceChara {
        width: 16.5%;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

/* -----------------------------------------------------------
	みんなの思い出ギャラリー
----------------------------------------------------------- */
.swiper {
    width: 100%;
    overflow: hidden;
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiper-slide {
    width: auto;
}

.swiper {
  pointer-events: auto;
}

.swiper-slide a {
  pointer-events: auto;
}

#gallerySec {
    background: url("../img/gallery_bg01.png") repeat center top;
    position: relative;
    padding: 10vw 0 4.7vw;
}

#gallerySec::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url("../img/gallery_bg02.png") no-repeat center top;
}

#gallerySec .contentsOuter {
    position: relative;
}

#gallerySec h2 img {
    margin: 0 auto;
}

#gallerySec h2 + p {
    margin-top: 2vw;
    text-align: center;
    font-size: min(2.5vw, 20px);
    line-height: 1.7;
    font-weight: 500;
}

#gallerySec h2 + p span {
    display: block;
}

#gallerySec #gallerySlider {
    margin-top: 5.2vw;
    overflow: hidden;
}

#gallerySec #gallerySlider #gallerySliderWrap {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translateZ(0);
}

#gallerySec #gallerySlider #gallerySliderWrap.startAnimation {
    animation: scroll 50s linear infinite;
}

#gallerySec #gallerySlider .gallerySlide {
    text-align: center;
    width: 375px;
    flex: 0 0 auto;
}

#gallerySec #gallerySlider .gallerySlide:nth-child(2n) {
    margin-top: 160px;
}

#gallerySec #gallerySlider .gallerySlide a {
    display: block;
}

#gallerySec #gallerySlider .gallerySlide img {
    width: 256px;
    margin: 0 auto;
    display: block;
}

#gallerySec #gallerySlider .gallerySlide .commentArea {
    transform: translateY(-75px);
    padding: 68px 65px 0;
    height: 237px;
    text-align: left;
    background: url("../img/gallery_comment01.png") no-repeat center bottom / contain;
    position: relative;
    z-index: 10;
}

#gallerySec #gallerySlider .gallerySlide .commentArea::after {
    content: "";
    width: 35px;
    height: 34px;
    background: url("../img/gallery_comment01_icon.png") no-repeat center bottom / contain;
    position: absolute;
    right: 33px;
    bottom: 42px;
}

#gallerySec #gallerySlider .gallerySlide .commentArea p {
    font-size: 20px;
}

#gallerySec #gallerySlider .gallerySlide .commentArea div {
    margin-top: 10px;
    padding-top: 10px;
    border-top: dotted 3px #7f7f7f;
    font-size: 13px;
}

#gallerySec #gallerySlider .gallerySlide .commentSpoArea {
    transform: translateY(-94px);
    padding: 84px 62px 0;
    height: 280px;
    background: url("../img/gallery_comment02.png") no-repeat center bottom / contain;
}

#gallerySec #gallerySlider .gallerySlide .commentSpoArea::after {
    right: 52px;
    bottom: 70px;
}

#gallerySec #gallerySlider .gallerySlide .commentSpoArea div {
    font-size: 15px;
}

#gallerySec #gallerySlider .gallerySlide .commentSpoArea div span {
    font-size: 12px;
    display: block;
}

#gallerySec #galleryChara {
    position: absolute;
    width: 29.6%;
    left: 17.8%;
    bottom: -2px;
}

#gallerySec #gallerySpTxt {
    display: none;
    font-weight: 500;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
    
    #gallerySec #gallerySlider .gallerySlide a {
        transition: opacity 0.3s ease-in-out;
    }
    
    #gallerySec #gallerySlider .gallerySlide a:hover {
        opacity: 0.7;
    }
    
    #gallerySec #gallerySlider .gallerySlide img {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }
    
}

@media screen and (max-width: 767px) {
    
    #gallerySec {
        padding: 12vw 0 calc(24.7vw - 90px);
    }
    
    #gallerySec h2 + p,
    #gallerySec #gallerySpTxt {
        margin-top: 4vw;
        font-size: min(3.8vw, 20px);
        line-height: 2;
    }
    
    #gallerySec h2 + p span {
        display: none;
    }
    
    #gallerySec #gallerySpTxt {
        display: block;
        text-align: center;
        margin-top: 0;
        transform: translateY(-90px);
    }
    
    #gallerySec #gallerySlider {
        margin-top: 2.2vw;
    }
    
    #gallerySec #gallerySlider .gallerySlide:nth-child(2n) {
        margin-top: 60px;
    }
    
    #gallerySec #galleryChara {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 56%;
    }
}

/* -----------------------------------------------------------
	reason
----------------------------------------------------------- */
#reasonSec {
    padding-top: 3.5vw;
    padding-bottom: 3.5vw;
}

#reasonSec #reasonArea {
    padding: 4.6vw 0 10.3vw;
    text-align: center;
}

#reasonSec #reasonArea h2 img {
    width: 70%;
    max-width: 640px;
    margin: 0 auto;
}

#reasonSec #reasonArea #reasonInner {
    position: relative;
    aspect-ratio: 1 / 0.948;
    margin: 3vw auto 0;
    max-width: 1008px;
}

#reasonSec #reasonArea #reasonInner #reasonImg {
    position: absolute;
    width: 16%;
    top: 51.5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#reasonSec #reasonArea #reasonInner ul li {
    aspect-ratio: 1;
    width: 30.2%;
    background-color: #ffe791;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    margin: 0 auto;
}

#reasonSec #reasonArea #reasonInner ul li h3 {
    color: #d3352d;
    font-size: min(3vw, 36px);
    font-weight: bold;
}

#reasonSec #reasonArea #reasonInner ul li .reasonInfo {
    font-weight: 600;
    width: 100%;
}

#reasonSec #reasonArea #reasonInner ul li .reasonInfo p {
    font-size: min(1.5vw, 18px);
    margin-top: 1%;
    line-height: 2;
}

#reasonSec #reasonArea #reasonInner ul li .reasonInfo div {
    font-size: min(1.3vw, 14px);
    margin: 4% 18%;
    padding-top: 4%;
    border-top: dotted 0.25vw #7f7f7f;
}

#reasonSec #reasonArea #reasonInner ul li .reasonChara {
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    margin: 0 18%;
}

#reasonSec #reasonArea #reasonInner ul li.reasonTaste {
    left: 0;
    right: 0;
    top: 0;
}

#reasonSec #reasonArea #reasonInner ul li.reasonCalorie {
    left: 0;
    top: 27%;
}

#reasonSec #reasonArea #reasonInner ul li.reasonSize {
    right: 0;
    top: 27%;
}

#reasonSec #reasonArea #reasonInner ul li.reasonHabituation {
    left: 16%;
    bottom: 0;
}

#reasonSec #reasonArea #reasonInner ul li.reasonSafe {
    right: 16%;
    bottom: 0;
}


@media screen and (min-width: 1400px) {

    #reasonSec #reasonArea #reasonInner ul li .reasonInfo div {
        border-top-width: 3px;
    }

}

@media screen and (max-width: 767px) {
    
    #reasonSec {
        padding-top: 6.5vw;
        padding-bottom: 6.5vw;
    }
    
    #reasonSec #reasonArea {
        padding: 9vw 0 15vw;
    }
    
    #reasonSec #reasonArea h2 img {
        width: 94%;
    }
    
    #reasonSec #reasonArea #reasonInner {
        aspect-ratio: auto;
        margin-top: 6vw;
    }
    
    #reasonSec #reasonArea #reasonInner #reasonImg {
        position: static;
        transform: translate(0);
        margin: 0 auto;
        width: 25%;
    }
    
    #reasonSec #reasonArea #reasonInner ul {
        margin: 6vw auto 0;
        width: 95%;
    }
    
    #reasonSec #reasonArea #reasonInner ul li {
        position: relative;
        aspect-ratio: auto;
        width: 100%;
        border-radius: 15px;
        flex-direction: row;
        align-items: center;
        padding: 6vw 4vw;
    }
    
    #reasonSec #reasonArea #reasonInner ul li:nth-child(n+2) {
        margin-top: 7vw;
    }
    
    #reasonSec #reasonArea #reasonInner ul li h3 {
        border: solid 1px #d3352d;
        border-radius: 50%;
        aspect-ratio: 1;
        width: 35%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: min(4.2vw, 36px);
    }
    
    #reasonSec #reasonArea #reasonInner ul li .reasonInfo {
        width: auto;
        flex: 1;
        margin-left: 5%;
        text-align: left;
    }
    
    #reasonSec #reasonArea #reasonInner ul li .reasonInfo p {
        font-size: min(3.8vw, 18px);
        line-height: 1.7;
    }
    
    #reasonSec #reasonArea #reasonInner ul li .reasonInfo div {
        font-size: min(3.1vw, 14px);
        margin: 3% 0 0;
        border-top-width: 0.7vw;
    }
    
    #reasonSec #reasonArea #reasonInner ul li .reasonChara {
        transform: translateY(20%);
        margin: 0;
        width: 32%;
        right: 1%;
    }
   
    #reasonSec #reasonArea #reasonInner ul li.reasonTaste,
    #reasonSec #reasonArea #reasonInner ul li.reasonCalorie,
    #reasonSec #reasonArea #reasonInner ul li.reasonSize,
    #reasonSec #reasonArea #reasonInner ul li.reasonHabituation,
    #reasonSec #reasonArea #reasonInner ul li.reasonSafe {
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
    }
    
}

/* -----------------------------------------------------------
	reason
----------------------------------------------------------- */
#diagnosisSec {
    background: url("../img/diagnosis_bg.jpg") repeat center top;
    padding: 7vw 0 8.5vw;
}

#diagnosisSec .contentsOuter {
    max-width: 1255px;
}

#diagnosisSec h2 img {
    width: 85%;
    max-width: 900px;
    margin: 0 auto;
}

#diagnosisSec #diagnosisArea {
    margin-top: 1.5%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
}

#diagnosisSec #diagnosisArea #diagnosisInner {
    position: relative;
    min-width: 920px;
    aspect-ratio: 1 / 0.817;
}

#diagnosisSec #diagnosisArea #diagnosisChart {
    width: 83.9%;
}

#diagnosisSec #diagnosisArea ul li {
    position: absolute;
    width: 16.2%;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem01 {
    top: 7%;
    right: 0;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem02 {
    top: 25.4%;
    right: 0;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem03 {
    top: 44%;
    right: 0;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem04 {
    top: 62.3%;
    right: 0;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem05 {
    left: 0.5%;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem06 {
    left: 21.3%;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem07 {
    left: 42.2%;
}

#diagnosisSec #diagnosisArea ul li#diagnosisItem08 {
    left: 63.1%;
}

@media screen and (max-width: 767px) {
    
    #diagnosisSec {
        padding-bottom: 11.5vw;
    }
    
    #diagnosisSec h2 img {
        width: 94%;
    }
    
    #diagnosisSec #diagnosisArea {
        margin-top: 6vw;
    }
}

/* -----------------------------------------------------------
	cafe
----------------------------------------------------------- */
#cafeSec {
    background: url("../img/cafe_bg.gif") repeat center top;
}

#cafeSec #cafeArea {
    background: url("../img/cafe_kv_pc.png") no-repeat center top / 100%;
    padding: 9.8vw 0 10.8vw;
}

#cafeSec #cafeArea h2 img {
    width: 70%;
    max-width: 640px;
    margin: 0 auto;
}

#cafeSec #cafeArea #cafeIntroInner h3 {
    padding-top: 60.5vw;
}

#cafeSec #cafeArea #cafeIntroInner h3 img {
    margin: 0 auto;
    width: 19.4vw;
}

#cafeSec #cafeArea #cafeIntroInner p {
    font-size: 1.7vw;
    text-align: center;
    margin-top: 1.9vw;
    line-height: 2;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff,0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff,0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff,0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff,0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff,0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

#cafeSec #cafeArea #cafeIntroInner p + p {
    margin-top: 2.4vw;
}

#cafeSec #cafeArea #cafeIntroInner #cafeTxtImg {
    margin-top: 2.7vw;
}

#cafeSec #cafeArea #cafeIntroInner #cafeTxtImg img {
    margin: 0 auto;
    width: 50.3vw;
}

#cafeSec #cafeArea #cafeInfoInner {
    margin-top: 11.5vw;
}

#cafeSec #cafeArea #cafeInfoInner h3 {
    position: relative;
    font-family: "Noto Serif JP", serif;
    color: #927b69;
    font-size: min(4.5vw, 42px);
    font-weight: 600;
    text-align: center;
}

#cafeSec #cafeArea #cafeInfoInner h3::before,
#cafeSec #cafeArea #cafeInfoInner h3::after {
    content: "";
    display: block;
    width: calc((68vw - 40px) / 2);
    max-width: 456px;
    height: 100%;
    position: absolute;
    top: 0;
}

#cafeSec #cafeArea #cafeInfoInner h3::before {
    background: url("../img/cafe_info_head_bg01.png") no-repeat left center / 100%;
    left: 0;
}

#cafeSec #cafeArea #cafeInfoInner h3::after {
    background: url("../img/cafe_info_head_bg02.png") no-repeat right center / 100%;
    right: 0;
}

#cafeSec #cafeArea #cafeInfoInner h3 span {
    display: inline-block;
    width: 32vw;
    max-width: 300px;
}

#cafeSec #cafeArea #cafeInfoInner h3 + p {
    text-align: center;
    font-size: 18px;
    margin-top: 1.3vw;
    font-family: "Noto Serif JP", serif;
    color: #927b69;
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox {
    font-family: "Noto Serif JP", serif;
    color: #927b69;
    background-color: #fff;
    margin-top: 3vw;
    padding: 3% 5.3% 4.5%;
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul {
    display: flex;
    justify-content: space-between;
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li {
    width: 30%;
    position: relative;
    padding-top: 12%;
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li div {
    margin: 0 auto;
    width: 65%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li p {
    background: url("../img/cafe_bg.gif") repeat center top;
    text-align: center;
    font-size: min(2vw, 19px);
    line-height: 1.7;
    font-weight: bold;
    aspect-ratio: 1 / 0.688;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8%;
    position: relative;
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li p .imgLeaf {
    position: absolute;
    top: 0;
    right: 1%;
    width: 20%;
    transform: translateY(-42%);
}

#cafeSec #cafeArea #cafeInfoInner #cafeTeaBox + h3 {
    margin-top: 8.5vw;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupImgList {
    display: flex;
    justify-content: center;
    margin-top: 5.7vw;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupImgList li {
    width: 14%;
    margin: 0 2%;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList {
    display: flex;
    justify-content: center;
    margin-top: 5.5vw;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li {
    width: 44%;
    max-width: 290px;
    margin: 0 1%;
    padding-bottom: 3px;
    font-size: min(2vw, 16px);
}


#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li a {
    display: block;
    text-align: center;
    padding: 5% 6%;
    border-radius: 30px;
    transition: 0.3s all;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts {
    padding-top: 3px;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts a {
    border: solid 1px #d3352d;
    position: relative;
    color: #d3352d;
    background-color: #fff;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts a::before {
    content: "";
    display: block;
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #d3352d;
    width: 3%;
    aspect-ratio: 1;
    top: 44%;
    left: 6%;
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnCart a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #00a44b;
    font-weight: 500;
    filter: drop-shadow(0 3px 0 #006d49);
}

#cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnCart a::before {
    content: "";
    width: 12%;
    aspect-ratio: 1 / 0.867;
    background: url(../img/icon_cart.svg) 0 0 no-repeat;
    background-size: contain;
    margin-right: .5em;
}

@media screen and (min-width: 768px) {
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts a,
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts a::before {
        transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts a:hover {
        color: #fff;
        background-color: #d3352d;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnProducts a:hover::before {
        background-color: #fff;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnCart a {
        transition: opacity 0.3s ease-in-out;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnCart a:hover {
        opacity: 0.7;
    }
    
}

@media screen and (max-width: 767px) {
    
    #cafeSec #cafeArea {
        background: url("../img/cafe_kv_sp.png") no-repeat center top / 100%;
        padding: 13vw 0 21vw;
    }
    
    #cafeSec #cafeArea h2 img {
        width: 94%;
    }
    
    #cafeSec #cafeArea #cafeIntroInner h3 {
        padding-top: 86.5vw;
        font-size: min(5vw, 42px);
    }
    
    #cafeSec #cafeArea #cafeIntroInner h3 img {
        width: 40%;
    }
    
    #cafeSec #cafeArea #cafeIntroInner p {
        font-size: min(4vw, 22px);
        margin-top: 3vw;
        line-height: 2.2;
    }
    
    #cafeSec #cafeArea #cafeIntroInner p + p {
        margin-top: 8.4vw;
    }
    
    #cafeSec #cafeArea #cafeIntroInner #cafeTxtImg {
        margin-top: 4vw;
    }
    
    #cafeSec #cafeArea #cafeIntroInner #cafeTxtImg img {
        width: 95%;
    }
    
    #cafeSec #cafeArea #cafeInfoInner h3 + p {
        font-size: min(4vw, 18px);
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox {
        margin-top: 7vw;
        padding: 8% 7.3% 9.5%;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul {
        display: block;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li {
        width: 100%;
        padding: 0;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li:nth-child(n+2) {
        margin-top: 5vw;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li div {
        width: 36%;
        right: auto;
        top: -3%;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li p {
        margin-left: 10%;
        aspect-ratio: 1 / 0.334;
        font-size: min(3.7vw, 18px);
        padding: 0 0 0 30%;
        text-align: left;
        justify-content: flex-start;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox ul li p .imgLeaf {
        top: auto;
        right: -4%;
        width: 12%;
        transform: translateY(10%);
        bottom: 0;
    }
    
    #cafeSec #cafeArea #cafeInfoInner #cafeTeaBox + h3 {
        margin-top: 14.5vw;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupImgList {
        margin-top: 9.5vw;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupImgList li {
        width: 26%;
        margin: 0 3%;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList {
        margin-top: 9.5vw;
        display: block;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li {
        margin: 0 auto;
        width: 70%;
        font-size: 14px;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li a {
        padding: 4% 5%;
    }
    
    #cafeSec #cafeArea #cafeInfoInner ul#liineupBtnList li.btnCart {
        margin-top: 3vw;
    }
    
}


/* -----------------------------------------------------------
	sns PR
----------------------------------------------------------- */

section.snsSec {
    position: relative;
}

section.snsSec .contentsOuter {
    padding: 80px 0 90px;
}

#pagetopBtn {
    position: fixed;
    right: 2.2vw;
    bottom: 20px;
    opacity: 0;
    z-index: 10;
}

#pagetopBtn.posAbsolute {
    position: absolute;
    bottom: 70px;
}

#pagetopBtn.slideIn {
    animation: slideIn 0.5s forwards;
}

#pagetopBtn.slideOut {
    animation: slideOut 0.5s forwards;
}

@keyframes slideIn {
	from { opacity: 0; transform: translateY(100px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes slideOut {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 1; transform: translateY(100px); }
}

#mvBnCampaign {
    position: fixed;
    right: 0;
    bottom: 110px;
    z-index: 20;
}

#mvBnCampaign.posAbsolute {
    position: absolute;
    bottom: 160px;
}


#snsPrSec {
    background-color: #ff0c00;
    padding: 5vw 0;
}

#snsPrSec #snsArea {
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 4.3vw;
    font-size: min(2.3vw, 24px);
    font-weight: 500;
}

#snsPrSec #snsArea ul {
    margin-top: min(2.5vw, 35px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#snsPrSec #snsArea ul li {
    width: min(6vw, 60px);
    height: min(6vw, 60px);
}

#snsPrSec #snsArea ul li ~ li {
    margin-left: min(3vw, 30px);
}

@media screen and (min-width: 768px) {
    
    #snsPrSec #snsArea ul li a:hover img {
        opacity: 0.7;
    }
}

@media screen and (max-width: 767px) {
    
    section.snsSec .contentsOuter {
        padding: 50px 0 calc(60px + 28.5vw);
    }
    
    #pagetopBtn {
        width: 35px;
        right: 4vw;
        bottom: 4vw;
    }
    
    #pagetopBtn.posAbsolute {
        bottom: 10vw;
    }
    
    #mvBnCampaign {
        left: 0;
        bottom: 0;
        margin: 0 auto;
        width: 70%;
    }
    
    #mvBnCampaign.posAbsolute {
        bottom: 7.5vw;
    }
    
    #snsPrSec #snsArea {
        border-radius: 12px;
        padding: 7.5vw 3vw;
    }
    
    #snsPrSec #snsArea p {
        font-size: min(3.5vw, 18px);
        line-height: 1.3;
    }
    
    #snsPrSec #snsArea ul {
        margin-top: min(3.5vw, 35px);
    }
    
    #snsPrSec #snsArea ul li {
        width: 40px;
        height: 40px;
    }
    
    #snsPrSec #snsArea ul li ~ li {
        margin-left: 20px;
    }
    
    
}


/* -----------------------------------------------------------
	result
----------------------------------------------------------- */
html, body {
    height: 100%;
    margin: 0;
}

.resultWrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#resultHeader {
    position: static;
}

#resultFooter {
    background-color: #333333;
    padding: 12px;
}

#resultFooter #copyright {
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

#resultSec {
    position: relative;
    padding: 0 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#resultSec::before {
    content: "";
    display: block;
    height: 430px;
    background: url("../img/result_bg.jpg") repeat left top;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

#resultSec #resultArea {
    background-color: #fff;
    border-radius: 40px;
    width: 100%;
    max-width: 930px;
    margin: 3vw auto;
    padding: 40px 60px;
    position: relative;
}

#resultSec #resultArea h2 {
    border-bottom-style: dashed;
    border-bottom-width: 3px;
    padding-bottom: 30px;
}

#resultSec #resultArea h2 img {
    margin: 0 auto;
    width: 51%;
    max-width: 410px;
}

#resultSec #resultArea #resultInner {
    display: flex;
    margin-top: 21px;
}

#resultSec #resultArea #resultInner #resultImg {
    width: 27%;
}

#resultSec #resultArea #resultInner #resultImg img {
    width: 100%;
}

#resultSec #resultArea #resultInner #resultInfo {
    flex: 1;
    margin-left: 5%;
    margin-top: 16px;
}

#resultSec #resultArea #resultInner #resultInfo h3 {
    font-size: 30px;
    font-weight: bold;
}

#resultSec #resultArea #resultInner #resultInfo h3 img {
    transform: translateX(-18%);
    width: 19%;
    max-width: 100px;
}

#resultSec #resultArea #resultInner #resultInfo p {
    margin-top: 8px;
    line-height: 1.7;
    font-size: 16px;
}

#resultSec #resultArea #resultInner #resultInfo p + p {
    margin-top: 20px;
}

#resultSec #resultArea #resultInner #resultInfo p span {
    font-size: 20px;
    font-weight: bold;
}

#resultSec #resultArea  #resultBtn img {
    margin: 0 auto;
}

@media screen and (max-width: 980px) {
    
    #resultSec::before {
        height: min(31vw, 430px);
    }

    #resultSec #resultArea h2 {
        border-bottom-width: min(0.25vw, 3px);
        padding-bottom: min(2.2vw, 30px);
    }

    #resultSec #resultArea #resultInner {
        margin-top: min(1.5vw, 21px);
    }

    #resultSec #resultArea #resultInner #resultInfo {
        margin-top: min(1.2vw, 16px);
    }

    #resultSec #resultArea #resultInner #resultInfo h3 {
        font-size: min(3.12vw, 30px);
    }

    #resultSec #resultArea #resultInner #resultInfo p {
        margin-top: min(0.5vw, 8px);
        font-size: min(1.65vw, 16px);
    }

    #resultSec #resultArea #resultInner #resultInfo p + p {
        margin-top: min(1.4vw, 20px);
    }

    #resultSec #resultArea #resultInner #resultInfo p span {
        font-size: min(2.1vw, 20px);
    }
    
    #resultSec #resultArea #resultBtn img {
        max-width: 237px;
        width: 30%;
    }

}

@media screen and (max-width: 767px) {
    
    #resultSec #resultArea {
        margin: 6vw auto 6.5vw;
        padding: 7% 4.5%;
    }
    
    #resultSec #resultArea h2 img {
        width: 85%;
    }
    
    #resultSec #resultArea #resultInner {
        display: block;
    }
    
    #resultSec #resultArea #resultInner #resultImg {
        width: 50%;
        margin: 0 auto;
    }
    
    #resultSec #resultArea #resultInner #resultInfo h3 {
        font-size: 20px;
    }
    
    #resultSec #resultArea #resultInner #resultInfo h3 img {
        width: 25%;
    }
    
    #resultSec #resultArea #resultInner #resultInfo p {
        font-size: 15px;
    }
    
    #resultSec #resultArea #resultInner #resultInfo p span {
        font-size: 18px;
    }
    
    #resultSec #resultArea #resultBtn {
        margin-top: 20px;
    }
    
    #resultSec #resultArea #resultBtn img {
        width: 50%;
    }
    
}

/* ------------------------------
	result01
------------------------------ */
#result01 {
    background-color: #d2342c;
}

#result01 #resultSec #resultArea h2 {
    border-bottom-color: #d2342c;
}

/* ------------------------------
	result02
------------------------------ */
#result02 {
    background-color: #ddb842;
}

#result02 #resultSec #resultArea h2 {
    border-bottom-color: #ddb842;
}

/* ------------------------------
	result03
------------------------------ */
#result03 {
    background-color: #449858;
}

#result03 #resultSec #resultArea h2 {
    border-bottom-color: #449858;
}

/* ------------------------------
	result04
------------------------------ */
#result04 {
    background-color: #6d123f;
}

#result04 #resultSec #resultArea h2 {
    border-bottom-color: #6d123f;
}

/* ------------------------------
	result05
------------------------------ */
#result05 {
    background-color: #281f5d;
}

#result05 #resultSec #resultArea h2 {
    border-bottom-color: #281f5d;
}

/* ------------------------------
	result06
------------------------------ */
#result06 {
    background-color: #e49037;
}

#result06 #resultSec #resultArea h2 {
    border-bottom-color: #e49037;
}

/* ------------------------------
	result07
------------------------------ */
#result07 {
    background-color: #504236;
}

#result07 #resultSec #resultArea h2 {
    border-bottom-color: #504236;
}

/* ------------------------------
	result08
------------------------------ */
#result08 {
    background-color: #ea3323;
}

#result08 #resultSec #resultArea h2 {
    border-bottom-color: #ea3323;
}




