@charset "utf-8";

/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-inline-size: 100%;
    max-block-size: 100%;
    height: auto;
    vertical-align: bottom;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
    -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
    all: revert;
    box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
    all: revert;
    box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
    display: none;
}


/*
base
*/

:root {
    --root-font-size: 16;
}

body {
    background: #FFF;
    color: #758B97;
    font-family: "Kiwi Maru", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
    font-size: calc( 16 / var(--root-font-size) * 1rem );
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    overscroll-behavior-y: none;
}

html,body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}


body {
    position: relative;
    animation-name: fadeIn;
    animation-duration: 1s;
}
body.active {
    overflow: hidden;
    height:100%;
}

a {color: #758B97; text-decoration: none;}
a:hover {color: #FFE55F; text-decoration: none;}

a:hover img {
    filter: alpha(opacity=70);
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    opacity: 0.7;
}

a,
a:hover,
a img,
a:hover img {
    transition: 0.5s 0s;
}

.clear {clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

::selection {
    background: #FFE55F;
    color: #FFF;
}
::-moz-selection {
    background: #FFE55F;
    color: #FFF;
}


/* 
layout
*/
#wrap {
    width: auto!important;
    width: 100%;
}
#wrap.index {
    background: url("../images/bg_img1.png") no-repeat left -125px top 175px, url("../images/bg_img2.png") no-repeat left 350px top -100px;
    background-size: 170px 170px, 144px 144px;
}

.pc {
    display: block;
}
.sp {
    display: none;
}
@media screen and (max-width: 960px) {
#wrap {
    width: auto!important;
    width: 100%;
}
#wrap.index {
    background: url("../images/bg_img1.png") no-repeat left -105px top 25px, url("../images/bg_img2.png") no-repeat left 200px top -80px;
    background-size: 127.5px 127.5px, 108px 108px;
}

.pc {
    display: none;
}
.sp {
    display: block;
}
}

/*----- common -----*/
main {
    display: block; /* IE */
}

div.flexWrap {
    display: flex;
}

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

/*----- header -----*/
header {
    width: 100%;
    padding: 50px 0 25px;
}
header div.flexWrap {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
}
header .logo {
    width: 250px;
}
header nav {
    width: calc(100% - 250px);
}
header nav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
header nav ul li {
    padding: 10px 0 10px min(10%, 50px);
}
header nav ul li div.ttl {
}
header nav ul li div.ttl a:hover img {
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}
header nav ul li div.ttl p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}

@media screen and (max-width: 960px) {
header {
    width: 100%;
    padding: 25px 0 37.5px;
}
header div.flexWrap {
    justify-content: space-between;
    width: 80%;
    max-width: 1350px;
    margin: 0 auto;
}
header .logo {
    width: 175px;
}
header nav {
    display: none;
}
}

/*----- main -----*/
main {
    overflow: hidden;
}
main p {
    line-height: 1.5;
}
article {
}

.mainTtl,
.subTtl {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 50px;
}
.mainTtl h2,
.mainTtl p,
.subTtl h3,
.subTtl p {
    line-height: 1.5;
}
.mainTtl img {
    margin: 0 25px 0 0;
}
.subTtl h3 {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
.subTtl p {
    color: #BDC3CD;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}

div.introduction {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 50px;
}
div.introduction p {
    text-align: center;
    margin: 0 0 25px;
}
div.introduction p.ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}

@media screen and (max-width: 960px) {
main {
}
main p {
    line-height: 1.5;
}
article {
}

.mainTtl,
.subTtl {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 37.5px;
}
.mainTtl h2,
.mainTtl p,
.subTtl h3,
.subTtl p {
    line-height: 1.5;
}
.mainTtl img {
    margin: 0 25px 0 0;
}
.subTtl h3 {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    padding: 0 0 5px;
}
.subTtl p {
    color: #BDC3CD;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
}

div.introduction {
    width: 80%;
    max-width: 900px;
    margin: 0 auto 50px;
}
div.introduction p {
    text-align: center;
    margin: 0 0 25px;
}
section#whatskiiro div.introduction p {
    text-align: left;
}
div.introduction p.ttl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
}
}

/*----- headline -----*/
section#headline {
    position: relative;
    z-index: 9;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
section#headline::after {
    content: "";
    position: absolute;
    top: 0;
    right: -200px;
    width: 156px;
    height: 156px;
    background: url("../images/bg_img5.png") no-repeat center center;
    background-size: contain;
}
section#headline div.copy {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 336px;
    height: 190px;
    margin: auto 0;
}
section#headline div.slide {
    position: relative;
    width: 60%;
    margin: 0 0 0 auto;
}
section#headline div.slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 50px;
    left: -100px;
    width: 150px;
    height: 150px;
    background: url("../images/bg_img3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}
section#headline div.slide::after {
    content: "";
    position: absolute;
    top: 50px;
    bottom: 0;
    right: -100px;
    width: 150px;
    height: 150px;
    background: url("../images/bg_img4.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}

@media screen and (max-width: 960px) {
section#headline {
    position: relative;
    z-index: 9;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
section#headline::after {
    content: "";
    position: absolute;
    top: 0;
    right: -50px;
    width: 117px;
    height: 117px;
    background: url("../images/bg_img5.png") no-repeat center center;
    background-size: contain;
}
section#headline div.copy {
    position: absolute;
    top: inherit;
    bottom: -137.5px;
    left: 5vw;
    z-index: 99;
    width: 224px;
    height: auto;
    margin: 0;
}
section#headline div.slide {
    position: relative;
    width: 100%;
    margin: 0 0 175px 10vw;
}
section#headline div.slide::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70px;
    width: 112.5px;
    height: 112.5px;
    background: url("../images/bg_img3.png") no-repeat center center;
    background-size: contain;
    margin: auto 0;
}
section#headline div.slide::after {
    content: "";
    position: absolute;
    top: inherit;
    bottom: -60px;
    right: calc(10vw + 25px);
    width: 112.5px;
    height: 112.5px;
    background: url("../images/bg_img4.png") no-repeat center center;
    background-size: contain;
    margin: 0;
}
}

/*----- whatskiiro -----*/
section#whatskiiro {
    position: relative;
    width: 100%;
    background: url("../images/bg_img5.png") no-repeat right calc(50% + 678px) center, url("../images/bg_img6.png") no-repeat left calc(50% + 687px) top 500px;
    background-size: 156px 156px, 174px 174px;
    background-color: #EFF0F0;
    padding: 50px 0 calc(100px + 10vw);
}
section#whatskiiro::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_lightgray.png") no-repeat center top;
    background-size: cover;
}

section#whatskiiro section#name {
    width: 90%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#name ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 50px;
}
section#whatskiiro section#name ul li:nth-of-type(even) {
    margin: 50px 0 0;
}
section#whatskiiro section#name div.storyBtn {
    width: 90%;
    max-width: 310px;
    margin: 0 auto;
}

section#whatskiiro section#point {
    width: 90%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#point ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section#whatskiiro section#point ol li {
    width: 300px;
    margin: 0 25px;
}
section#whatskiiro section#point ol li figure {
    width: 270px;
    margin: 0 auto 25px;
}
section#whatskiiro section#point ol li p.ttl {
    height: calc(3em + 25px);
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
}
section#whatskiiro section#point ol li p.ttl span {
    background: radial-gradient(circle at calc(100% - 3px) calc(100% - 3px), #FFE55F 3px, transparent 3px),
    radial-gradient(circle at 3px calc(100% - 3px), #FFE55F 3px, transparent 3px),
    linear-gradient(to bottom, #EFF0F0 calc(100% - 6px), transparent calc(100% - 6px)),
    linear-gradient(to right, transparent 3px, #FFE55F 3px, #FFE55F calc(100% - 3px), transparent calc(100% - 3px));
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 960px) {
section#whatskiiro {
    position: relative;
    width: 100%;
    background: #EFF0F0;
    padding: 50px 0 calc(75px + 20vw);
}
section#whatskiiro::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_lightgray_sp.png") no-repeat center top;
    background-size: cover;
}

section#whatskiiro section#name {
    width: 100%;
    max-width: 1050px;
    padding: 50px 0;
    margin: 0 auto;
}
section#whatskiiro section#name ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0 25px;
}
section#whatskiiro section#name ul li {
    width: 48%;
    max-width: 180px;
}
section#whatskiiro section#name ul li:nth-of-type(odd) {
    margin: -75px -2.4vw 0 0;
}
section#whatskiiro section#name ul li:nth-of-type(even) {
    margin: 0 0 0 -2.4vw;
}

section#whatskiiro section#point {
    width: 100%;
    max-width: inherit;
    padding: 50px 0 0;
    margin: 0 auto;
}
section#whatskiiro section#point ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
section#whatskiiro section#point ol li {
    width: 80%;
    max-width: inherit;
    margin: 0 25px;
}
section#whatskiiro section#point ol li:last-child {
    margin: 0 25px;
}
section#whatskiiro section#point ol li figure {
    width: 270px;
    margin: 0 auto 25px;
}
section#whatskiiro section#point ol li p.ttl {
    height: auto;
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 0 25px;
}
section#whatskiiro section#point ol li p.ttl span {
    background: radial-gradient(circle at calc(100% - 3px) calc(100% - 3px), #FFE55F 3px, transparent 3px),
    radial-gradient(circle at 3px calc(100% - 3px), #FFE55F 3px, transparent 3px),
    linear-gradient(to bottom, #EFF0F0 calc(100% - 6px), transparent calc(100% - 6px)),
    linear-gradient(to right, transparent 3px, #FFE55F 3px, #FFE55F calc(100% - 3px), transparent calc(100% - 3px));
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.slide-arrow {
    position: absolute;
    z-index: 9;
    top: 120px;
    width: 40px;
    height: 40px;
}
.prev-arrow {
    left: 10%;
}
.next-arrow {
    right: 10%;
}
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
}
}

/*----- menu -----*/
section#menu {
    position: relative;
    width: 100%;
    padding: 50px 0 210px;
}
section#menu::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_white.png") no-repeat center top;
    background-size: cover;
}
section#menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% + 100px);
    width: 300px;
    height: 210px;
    background: url("../images/menu_kiirochan.png") no-repeat center top;
    background-size: contain;
}

section#menu aside {
    width: 90%;
    max-width: 1050px;
    margin: 0 auto 75px;
}
section#menu aside nav ul {
    display: flex;
    justify-content: center;
}
section#menu aside nav ul li {
    width: 150px;
    margin: 0 10px;
}
section#menu aside nav ul li a {
    display: block;
    width: 150px;
    height: 70px;
    border-radius: 35px;
    transition: 0.5s 0s;
}
section#menu aside nav ul li.whole-cake a {
    background: #EFF0F0 url("../images/menu_btn1.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.cake a {
    background: #EFF0F0 url("../images/menu_btn2.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.bake a {
    background: #EFF0F0 url("../images/menu_btn3.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.gift a {
    background: #EFF0F0 url("../images/menu_btn4.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.original a {
    background: #EFF0F0 url("../images/menu_btn5.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.whole-cake a:hover {
    background: #FFE55F url("../images/menu_btn1.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.cake a:hover {
    background: #FFE55F url("../images/menu_btn2.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.bake a:hover {
    background: #FFE55F url("../images/menu_btn3.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.gift a:hover {
    background: #FFE55F url("../images/menu_btn4.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.original a:hover {
    background: #FFE55F url("../images/menu_btn5.png") no-repeat center center;
    background-size: contain;
}

section#menu section .menuTtl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    text-align: center;
    margin: 0 0 75px;
}
section#menu section .menuTtl span.border {
    position: relative;
}
section#menu section .menuTtl span.border::before,
section#menu section .menuTtl span.border::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background: #758B97;
    margin: auto 0;
}
section#menu section .menuTtl span.border::before {
    left: -40px;
}
section#menu section .menuTtl span.border::after {
    right: -40px;
}
section#menu section .menuTtl span.small {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
}
section#menu section ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 90%;
    max-width: 1050px;
    margin: 0 auto;
}
section#menu section ul.menu li {
    width: 140px;
    margin: 0 45px 50px;
}
section#menu section ul.menu li.long {
    position: relative;
    align-self: flex-end;
    width: 600px;
}
section#menu section ul.menu li.long .bg1,
section#menu section ul.menu li.long .bg2,
section#menu section ul.menu li.long .bg3 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 600px;
}
section#menu section ul.menu li.long .bg1 {
    height: 132px;
    background: url("../images/menu_bg1.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li.long .bg2 {
    height: 168px;
    background: url("../images/menu_bg2.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li.long .bg3 {
    height: 96px;
    background: url("../images/menu_bg3.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li.long p {
    width: 360px;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    margin: 0 auto;
}
section#menu section ul.menu li.long p.center {
    text-align: center;
}
section#menu section#whole-cake ul.menu li.long::before,
section#menu section#cake ul.menu li.long::before,
section#menu section#bake ul.menu li.long::before,
section#menu section#gift ul.menu li.long::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
}
section#menu section#whole-cake ul.menu li.long::before {
    top: -60px;
    right: -45px;
    background: url("../images/menu_icon1.png") no-repeat center center;
    background-size: contain;
}
section#menu section#cake ul.menu li.long::before {
    top: -45px;
    right: -30px;
    background: url("../images/menu_icon2.png") no-repeat center center;
    background-size: contain;
}
section#menu section#bake ul.menu li.long::before {
    top: -60px;
    right: -30px;
    background: url("../images/menu_icon3.png") no-repeat center center;
    background-size: contain;
}
section#menu section#gift ul.menu li.long::before {
    top: -45px;
    left: -30px;
    background: url("../images/menu_icon4.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li figure {
    margin: 0 0 10px;
}
section#menu section ul.menu li figure img {
    border-radius: 10px;
}
section#menu section ul.menu li p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#menu section ul.menu li p.ttl {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    margin: 0 0 10px;
}
section#menu section ul.menu li p.ttl ruby rt {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}

section#menu section#whole-cake {
    width: 100%;
    padding: 50px 0 calc(50px + 150px);
}

section#menu section#cake,
section#menu section#gift {
    position: relative;
    width: 100%;
    background: #FFFCED;
    padding: 50px 0 calc(50px + 150px);
}
section#menu section#cake::before,
section#menu section#gift::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("../images/bg_mokumoku_yellow.png") repeat-x center top;
    background-size: 700px 300px;
}

section#menu section#bake,
section#menu section#original {
    position: relative;
    width: 100%;
    padding: 50px 0 calc(50px + 150px);
}
section#menu section#original {
    background: url("../images/menu_icon5.png") no-repeat left calc(50% + 450px) top 100px;
    background-size: 120px 120px;
    padding: 50px 0;
}
section#menu section#bake::before,
section#menu section#original::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("../images/bg_mokumoku_white.png") repeat-x center top;
    background-size: 700px 300px;
}

@media screen and (max-width: 960px) {
section#menu {
    position: relative;
    width: 100%;
    padding: 50px 0 210px;
}
section#menu::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_white_sp.png") no-repeat center top;
    background-size: cover;
}
section#menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 300px;
    height: 210px;
    background: url("../images/menu_kiirochan.png") no-repeat center top;
    background-size: contain;
    margin: 0 auto;
}

section#menu aside {
    width: 90%;
    max-width: 320px;
    margin: 0 auto 50px;
}
section#menu aside nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section#menu aside nav ul li {
    width: 150px;
    margin: 0 5px 10px;
}
section#menu aside nav ul li a {
    display: block;
    width: 150px;
    height: 70px;
    border-radius: 35px;
    transition: 0.5s 0s;
}
section#menu aside nav ul li.whole-cake a {
    background: #EFF0F0 url("../images/menu_btn1.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.cake a {
    background: #EFF0F0 url("../images/menu_btn2.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.bake a {
    background: #EFF0F0 url("../images/menu_btn3.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.gift a {
    background: #EFF0F0 url("../images/menu_btn4.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.original a {
    background: #EFF0F0 url("../images/menu_btn5.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.whole-cake a:hover {
    background: #FFE55F url("../images/menu_btn1.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.cake a:hover {
    background: #FFE55F url("../images/menu_btn2.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.bake a:hover {
    background: #FFE55F url("../images/menu_btn3.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.gift a:hover {
    background: #FFE55F url("../images/menu_btn4.png") no-repeat center center;
    background-size: contain;
}
section#menu aside nav ul li.original a:hover {
    background: #FFE55F url("../images/menu_btn5.png") no-repeat center center;
    background-size: contain;
}

section#menu section .menuTtl {
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    text-align: center;
    margin: 0 0 50px;
}
section#menu section .menuTtl span.border {
    position: relative;
}
section#menu section .menuTtl span.border::before,
section#menu section .menuTtl span.border::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    height: 1px;
    background: #758B97;
    margin: auto 0;
}
section#menu section .menuTtl span.border::before {
    left: -40px;
}
section#menu section .menuTtl span.border::after {
    right: -40px;
}
section#menu section .menuTtl span.small {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
    text-align: center;
}
section#menu section ul.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
}
section#menu section ul.menu li {
    width: 140px;
    margin: 0 10px 50px;
}
section#menu section ul.menu li.long {
    position: relative;
    align-self: flex-end;
    width: 320px;
    margin: 0 0 50px;
}
section#menu section ul.menu li.long .bg1,
section#menu section ul.menu li.long .bg2,
section#menu section ul.menu li.long .bg3 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 320px;
    padding: 0 30px;
}
section#menu section ul.menu li.long .bg1 {
    height: 132px;
    background: url("../images/menu_bg1_sp.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li.long .bg2 {
    height: 162px;
    background: url("../images/menu_bg2_sp.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li.long .bg3 {
    height: 104px;
    background: url("../images/menu_bg3_sp.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li.long p {
    width: 100%;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    margin: 0 auto;
}
section#menu section ul.menu li.long p.center {
    text-align: left;
}
section#menu section#whole-cake ul.menu li.long::before,
section#menu section#cake ul.menu li.long::before,
section#menu section#bake ul.menu li.long::before,
section#menu section#gift ul.menu li.long::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
}
section#menu section#whole-cake ul.menu li.long::before {
    top: -90px;
    right: 0;
    background: url("../images/menu_icon1.png") no-repeat center center;
    background-size: contain;
}
section#menu section#cake ul.menu li.long::before {
    top: -90px;
    right: 15px;
    background: url("../images/menu_icon2.png") no-repeat center center;
    background-size: contain;
}
section#menu section#bake ul.menu li.long::before {
    top: -60px;
    right: -15px;
    background: url("../images/menu_icon3.png") no-repeat center center;
    background-size: contain;
}
section#menu section#gift ul.menu li.long::before {
    top: -45px;
    left: -15px;
    background: url("../images/menu_icon4.png") no-repeat center center;
    background-size: contain;
}
section#menu section ul.menu li figure {
    margin: 0 0 10px;
}
section#menu section ul.menu li figure img {
    border-radius: 10px;
}
section#menu section ul.menu li p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#menu section ul.menu li p.ttl {
    font-size: calc( 18 / var(--root-font-size) * 1rem );
    margin: 0 0 10px;
}
section#menu section ul.menu li p.ttl ruby rt {
    font-size: calc( 10 / var(--root-font-size) * 1rem );
}

section#menu section#whole-cake {
    width: 100%;
    padding: 50px 0;
}

section#menu section#cake,
section#menu section#gift {
    position: relative;
    width: 100%;
    background: #FFFCED;
    padding: 50px 0;
}
section#menu section#gift {
    padding: 50px 0 calc(50px + 50px);
}
section#menu section#cake::before,
section#menu section#gift::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("../images/bg_mokumoku_yellow.png") repeat-x center top;
    background-size: 280px 120px;
}

section#menu section#bake,
section#menu section#original {
    position: relative;
    width: 100%;
    padding: 50px 0;
}
section#menu section#original {
    background: url("../images/menu_icon5.png") no-repeat left calc(50% + 150px) bottom 250px;
    background-size: 120px 120px;
    padding: 50px 0;
}
section#menu section#bake::before,
section#menu section#original::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("../images/bg_mokumoku_white.png") repeat-x center top;
    background-size: 280px 120px;
}
}

/*----- access -----*/
section#access {
    position: relative;
    width: 100%;
    background: #EFF0F0;
    padding: 50px 0 100px;
}
section#access::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_lightgray.png") no-repeat center top;
    background-size: cover;
}
section#access div.map {
    width: 90%;
    max-width: 900px;
    height: 300px;
    margin: 0 auto 75px;
}
section#access div.map iframe {
    height: 100%!important;
}
section#access div.address {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 75px;
}
section#access div.address div.logo {
    padding: 0 0 25px;
}
section#access div.address p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap {
    justify-content: space-between;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}
section#access div.flexWrap div.flexL {
    width: 50%;
}
section#access div.flexWrap div.flexR {
    width: 40%;
}
section#access div.flexWrap div.flexR p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap div.flexR p span {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}

@media screen and (max-width: 960px) {
section#access {
    position: relative;
    width: 100%;
    background: #EFF0F0;
    padding: 50px 0 75px;
}
section#access::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_lightgray_sp.png") no-repeat center top;
    background-size: cover;
}
section#access div.map {
    width: 100%;
    max-width: 100%;
    height: 250px;
    margin: 0 auto 50px;
}
section#access div.map iframe {
    height: 100%!important;
}
section#access div.address {
    width: 80%;
    max-width: 900px;
    text-align: center;
    margin: 0 auto 25px;
}
section#access div.address div.logo {
    width: 175px;
    padding: 0 0 25px;
    margin: 0 auto;
}
section#access div.address p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
}
section#access div.flexWrap div.flexL {
    width: 100%;
    padding: 0 0 25px;
}
section#access div.flexWrap div.flexR {
    width: 100%;
}
section#access div.flexWrap div.flexR p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
}
section#access div.flexWrap div.flexR p span {
    font-size: calc( 16 / var(--root-font-size) * 1rem );
}
}

/*----- character -----*/
section#character {
    position: relative;
    width: 100%;
    background: #EFF0F0;
}
section#character div.bubble {
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 336px;
    height: 396px;
}
section#character div.hidden {
    overflow: hidden;
    width: 100%;
}
section#character div.circle {
    width: calc(100% + 200px);
    background: #FFE55F;
    min-height: 500px;
    border-top-left-radius: 1100px 500px;
    border-top-right-radius: 1100px 500px;
    padding: 100px 100px 75px;
    margin: 0 -100px;
}
section#character div.circle div.inner {
    width: 90%;
    max-width: 712.5px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
section#character {
    position: relative;
    width: 100%;
    background: #EFF0F0;
}
section#character div.bubble {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    width: 336px;
    height: 396px;
    margin: 0 auto;
}
section#character div.hidden {
    overflow: hidden;
    width: 100%;
}
section#character div.circle {
    width: calc(100% + 200px);
    background: #FFE55F;
    min-height: 500px;
    border-top-left-radius: 725px 500px;
    border-top-right-radius: 725px 500px;
    padding: 75px 100px 414px;
    margin: 0 -100px;
}
section#character div.circle div.inner {
    width: 90%;
    max-width: 712.5px;
    text-align: center;
    margin: 0 auto;
}
}

/*----- online shop -----*/
section#onlineshop {
    width: 100%;
    background: #BDC3CD;
    color: #FFF;
    padding: 100px 0 calc(100px + 10vw);
}

@media screen and (max-width: 960px) {
section#onlineshop {
    width: 100%;
    background: #BDC3CD;
    color: #FFF;
    padding: 75px 0 calc(75px + 20vw);
}
}

/*----- story -----*/
main.story {
    padding: 75px 0 0;
}
section#story-first {
    position: relative;
    width: 100%;
    background: url("../images/bg_check.png") repeat center top;
    background-size: 700px 40px;
    padding: 50px 0 calc(100px + 150px);
    margin: 250px 0 0;
}
section#story-first::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("../images/bg_mokumoku_check.png") repeat-x center top;
    background-size: 700px 300px;
}
section#story-first::after {
    content: "";
    position: absolute;
    bottom: 84px;
    left: 0;
    right: 0;
    width: 80px;
    height: 126px;
    background: url("../images/story_illust2.png") no-repeat center top;
    background-size: contain;
    margin: 0 auto;
}
section#story-first div.scroll {
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    width: 50px;
    height: 190px;
    margin: 0 auto;
}
section#story-second {
    position: relative;
    width: 100%;
    background: url("../images/bg_img3.png") no-repeat right calc(50% + 575px) top 500px, url("../images/bg_img5.png") no-repeat left calc(50% + 428px) top 75px, url("../images/bg_img4.png") no-repeat left calc(50% + 525px) top 700px;
    background-size: 150px 150px, 156px 156px, 150px 150px;
    padding: 50px 0 calc(100px + 10vw);
}
section#story-second::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("../images/bg_mokumoku_white.png") repeat-x center top;
    background-size: 700px 300px;
}

main.story section h2.storyTtl {
    width: 90%;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 100px;
}
main.story section div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}
main.story section div.flexWrap div.txtBlock {
    margin: 0 0 50px;
}
main.story section div.flexWrap div.imgBlock {
    margin: 0 0 50px;
}
main.story section#story-first div.flexWrap div.txtBlock {
    width: 50%;
}
main.story section#story-first div.flexWrap div.txtBlock.bg {
    background: url("../images/story_illust1.png") no-repeat right bottom;
    background-size: 156px 80px;
    padding: 0 0 100px;
}
main.story section#story-first div.flexWrap div.imgBlock.img1 {
    width: 45%;
}
main.story section#story-first div.flexWrap div.imgBlock.img2 {
    width: 40%;
}
main.story section#story-second div.flexWrap div.txtBlock {
    width: 45%;
}
main.story section#story-second div.flexWrap div.imgBlock {
    width: 50%;
}
main.story section#story-second div.flexWrap div.imgBlock img {
    border-radius: 10px;
}
main.story section#story-second div.storyBtn {
    width: 90%;
    max-width: 310px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
main.story {
    padding: 75px 0 0;
}
section#story-first {
    position: relative;
    width: 100%;
    background: url("../images/bg_check_sp.png") repeat center top;
    background-size: 280px 32px;
    padding: 60px 0 calc(100px + 50px);
    margin: 150px 0 0;
}
section#story-first::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("../images/bg_mokumoku_check_sp.png") repeat-x center top;
    background-size: 280px 120px;
}
section#story-first::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 80px;
    height: 126px;
    background: url("../images/story_illust2.png") no-repeat center top;
    background-size: contain;
    margin: 0 auto;
}
section#story-first div.scroll {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    width: 50px;
    height: 135px;
    margin: 0 auto;
}
section#story-second {
    position: relative;
    width: 100%;
    background: url("../images/bg_img3.png") no-repeat left -90px center, url("../images/bg_img5.png") no-repeat right -45px top 100px, url("../images/bg_img4.png") no-repeat right -60px bottom 50px;
    background-size: 112.5px 112.5px, 117px 117px, 112.5px 112.5px;
    padding: 50px 0 calc(75px + 20vw);
}
section#story-second::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("../images/bg_mokumoku_white.png") repeat-x center top;
    background-size: 280px 120px;
}

main.story section h2.storyTtl {
    width: 80%;
    font-size: calc( 24 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    text-align: left;
    margin: 0 auto 50px;
}
main.story section div.flexWrap {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
main.story section#story-second div.flexWrap {
    flex-direction: column-reverse;
}
main.story section div.flexWrap div.txtBlock {
    margin: 0 auto 50px;
}
main.story section div.flexWrap div.txtBlock span.right {
    float: right!important;
}
main.story section div.flexWrap div.imgBlock {
    text-align: center;
    margin: 0 auto 50px;
}
main.story section div.flexWrap div.imgBlock img {
    margin: 0 auto;
}
main.story section#story-first div.flexWrap div.txtBlock {
    width: 80%;
}
main.story section#story-first div.flexWrap div.txtBlock.bg {
    background: url("../images/story_illust1.png") no-repeat right bottom;
    background-size: 156px 80px;
    padding: 0 0 100px;
}
main.story section#story-first div.flexWrap div.imgBlock.img1 {
    width: 90%;
}
main.story section#story-first div.flexWrap div.imgBlock.img2 {
    width: 90%;
}
main.story section#story-second div.flexWrap div.txtBlock {
    width: 80%;
}
main.story section#story-second div.flexWrap div.imgBlock {
    width: 90%;
}
main.story section#story-second div.flexWrap div.imgBlock img {
    border-radius: 10px;
}
main.story section#story-second div.storyBtn {
    width: 90%;
    max-width: 310px;
    margin: 0 auto;
}
}

/*----- other -----*/
main.other {
    padding: 75px 0 calc(100px + 10vw);
}
main.other p.txt {
    text-align: center;
    padding: 50px 0 100px;
}
main.other div.topBtn {
    width: 90%;
    max-width: 310px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
main.other {
    padding: 75px 0 0;
}
main.other p.txt {
    text-align: center;
    padding: 50px 0 100px;
}
main.other div.topBtn {
    width: 90%;
    max-width: 310px;
    margin: 0 auto;
}
}

/*----- footer -----*/
footer {
    position: relative;
    width: 100%;
    background: #758B97;
    color: #FFF;
    padding: 25px 0 75px;
}
footer::before {
    content: "";
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    height: 10vw;
    background: url("../images/bg_gray.png") no-repeat center top;
    background-size: cover;
}
footer div.flexWrap {
    align-items: flex-end;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
footer div.flexWrap div.flexL {
    width: calc(100% - 200px);
}
footer div.flexWrap div.flexL nav,
footer div.flexWrap div.flexL nav div.navL {
    display: flex;
    flex-wrap: wrap;
}
footer div.flexWrap div.flexL nav div.navL {
    width: calc(100% / 3 * 2);
    max-width: 400px;
}
footer div.flexWrap div.flexL nav div.navR {
    width: calc(100% / 3);
    max-width: 200px;
}
footer div.flexWrap div.flexL nav a,
#g-nav ul.gnav li a {
    color: #FFF;
}
footer div.flexWrap div.flexL nav a:hover,
#g-nav ul.gnav li a:hover {
    color: #FFE55F;
}
footer div.flexWrap div.flexL nav ul,
#g-nav ul.gnav {
    color: #FFF;
}
footer div.flexWrap div.flexL nav div.navL ul {
    width: 50%;
}
footer div.flexWrap div.flexL nav ul li div.ttl,
#g-nav ul.gnav li div.ttl {
    margin: 0 0 25px;
}
footer div.flexWrap div.flexL nav ul li div.ttl a:hover img,
#g-nav ul.gnav li div.ttl a:hover img {
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}
footer div.flexWrap div.flexL nav ul li div.ttl p,
#g-nav ul.gnav li div.ttl p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
footer div.flexWrap div.flexL nav ul li ul.sub {
    width: 100%;
}
footer div.flexWrap div.flexL nav ul li ul.sub li {
    position: relative;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    padding: 0 0 0 1em;
    margin: 15px 0;
}
footer div.flexWrap div.flexL nav ul li ul.sub li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 1px;
    background: #FFF;
    border-radius: 1px;
    margin: auto 0;
}
footer div.flexWrap div.flexR {
    width: 200px;
}
footer div.flexWrap div.flexR ul.sns {
    display: flex;
    justify-content: flex-end;
    /*justify-content: center;*/
    padding: 0 0 25px;
}
footer div.flexWrap div.flexR ul.sns li {
    width: 70px;
    margin: 0 15px;
}
footer .copyright {
    width: 100%;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0 15px;
}

@media screen and (max-width: 960px) {
footer {
    width: 100%;
    background: #758B97;
    color: #FFF;
    padding: 45px 0 25px;
}
footer::before {
    content: "";
    position: absolute;
    top: -20vw;
    left: 0;
    width: 100%;
    height: 20vw;
    background: url("../images/bg_gray_sp.png") no-repeat center top;
    background-size: cover;
}
footer div.flexWrap {
    align-items: flex-end;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
footer div.flexWrap div.flexL {
    width: 100%;
}
footer div.flexWrap div.flexL nav,
footer div.flexWrap div.flexL nav div.navL {
    display: flex;
    flex-wrap: wrap;
}
footer div.flexWrap div.flexL nav div.navL {
    width: 50%;
    max-width: 400px;
}
footer div.flexWrap div.flexL nav div.navR {
    width: 50%;
    max-width: 200px;
}
footer div.flexWrap div.flexL nav a {
    color: #FFF;
}
footer div.flexWrap div.flexL nav a:hover {
    color: #FFE55F;
}
footer div.flexWrap div.flexL nav ul {
    color: #FFF;
}
footer div.flexWrap div.flexL nav div.navL ul {
    width: 100%;
}
footer div.flexWrap div.flexL nav ul li div.ttl {
    margin: 0 0 25px;
}
footer div.flexWrap div.flexL nav ul li div.ttl a:hover img {
    filter: alpha(opacity=100);
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
}
footer div.flexWrap div.flexL nav ul li div.ttl p {
    font-size: calc( 20 / var(--root-font-size) * 1rem );
}
footer div.flexWrap div.flexL nav ul li ul.sub {
    width: 100%;
}
footer div.flexWrap div.flexL nav ul li ul.sub li {
    position: relative;
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    padding: 0 0 0 1em;
    margin: 15px 0;
}
footer div.flexWrap div.flexL nav ul li ul.sub li::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 1px;
    background: #FFF;
    border-radius: 1px;
    margin: auto 0;
}
footer div.flexWrap div.flexL nav ul li ul.sub li:last-child {
    margin: 15px 0 30px;
}
footer div.flexWrap div.flexR {
    width: 100%;
}
footer div.flexWrap div.flexR ul.sns {
    display: flex;
    justify-content: center;
    padding: 0 0 25px;
}
footer div.flexWrap div.flexR ul.sns li {
    width: 60px;
    margin: 0 15px;
}
footer div.flexWrap div.flexR .copyright {
    width: 100%;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    text-align: center;
    padding: 0;
}
}

.grecaptcha-badge {visibility: hidden;}

/*----- page_top -----*/
/*リンクの形状*/
/*リンクを右下に固定*/
#page_top {
    position: fixed;
    right: min(10vw, 25px);
    z-index: 9;
    width: 90px;
    height: 90px;
    background: url("../images/pagetop.png") no-repeat center center;
    background-size: cover;
    transform: translateY(140px);
    cursor: pointer;
}
/*上に上がる動き*/
#page_top.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    transform: translateY(140px);
  }
  to {
    transform: translateY(0);
  }
}
/*下に下がる動き*/
#page_top.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(140px);
  }
}

/*----- sp nav -----*/
/*アクティブになったエリア*/
#g-nav {
    overflow: hidden;
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    /*ナビのスタート位置と形状*/
    top: -125%;
    left: 0;
    width: 100%;
    height: 100%;/*ナビの高さ*/
    max-height: inherit;
    transition: all 0.5s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    top: 0;
    z-index: 9999;
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {  
    /*ナビの数が増えた場合縦スクロール*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    z-index: 9999;
    width: calc(100% + 200px);
    height: 100%;
    max-height: 600px;
    background: #758B97;
    border-bottom-left-radius: 725px 500px;
    border-bottom-right-radius: 725px 500px;
    padding: 0 100px;
    margin: 0 -100px;
}
#g-nav.panelactive #g-nav-list {
    display: block;/*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav div.inner {
    width: 100%;
    padding: 75px 0;
    opacity: 0;/*はじめは透過0*/
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.inner {
    opacity: 1;
}

#g-nav ul.gnav {
    width: 90%;
    max-width: 225px;
    margin: 0 auto;
}
#g-nav div.sns {
    width: 90%;
    max-width: 320px;
    height: 132px;
    background: url("../images/gnav_sns_bg.png") no-repeat center center;
    background-size: contain;
    padding: 21px 0;
    margin: 50px auto 0;
}
#g-nav div.sns p {
    font-size: calc( 14 / var(--root-font-size) * 1rem );
    line-height: 1.5;
    text-align: center;
    margin: 0 0 10px;
}
#g-nav div.sns ul {
    display: flex;
    justify-content: center;
    padding: 0 0 25px;
}
#g-nav div.sns ul li {
    width: 60px;
    margin: 0 15px;
}

/*ボタンの設定*/
.openbtn {
    position: fixed;
    z-index: 10000;/*ボタンを最前面に*/
    top: min(5vw, 25px);
    right: min(5vw, 25px);
    display: inline-block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    appearance: none;
}
.openbtn.active {
    background: none;
}
.openbtn span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    width: 36px;
    height: 3px;
    background: #758B97;
    border-radius: 1.5px;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active span {
    background: #FFF;
}
.openbtn span:nth-of-type(1) {
    top: 18px;
    animation: menu-bar1 0.5s forwards;
}
.openbtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.openbtn span:nth-of-type(3) {
    bottom: 19px;
    animation: menu-bar2 0.5s forwards;
}
.openbtn.active span:nth-of-type(1) {
    animation: menu-active-bar1 0.5s forwards;
}
.openbtn.active span:nth-of-type(2) {
    display: none;
}
.openbtn.active span:nth-of-type(3) {
    animation: menu-active-bar2 0.5s forwards;
}

.openbtn::after {
    content: "MENU";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #758B97;
    font-size: calc( 12 / var(--root-font-size) * 1rem );
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin: 0 auto;
    transition: all 0.5s;
}
.openbtn.active::after {
    content: "CLOSE";
    color: #FFF;
}

@keyframes menu-bar1 {
  0% {
    transform: translateY(10px) rotate(30deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar2 {
  0% {
    transform: translateY(-10px) rotate(-30deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-active-bar1 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(30deg);
  }
}
@keyframes menu-active-bar2 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-30deg);
  }
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}