@charset "UTF-8";

/* CSS Document */

:root {
    --yellow-bk-color: #FFFFDF;
    --yellow-color: #D9D308;
    --blue-bk-color: #D7EDF1;
    --blue-color: #60C6D5;
    --orange-bk-color: #FFF2DA;
    --orange-color: #FF7F32;
    --text-color: #454A45;
    --text-sub-color: #727272;
    --font-zenmaru: "Zen Maru Gothic", serif;
    --font-poppins: "Poppins", sans-serif;
}

:focus {
    outline: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

* {
    min-height: 0vw;
    min-height: 0;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    /*overflow-x: hidden;*/
}

body {
    position: relative;
    color: var(--text-color);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

button,
input,
select,
optgroup,
textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
}

.flex {
    display: flex;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:visited,
a:active {
    text-decoration: none;
    color: var(--text-color);
}

main {
    padding-top: 118px;
}

.sp_only {
    display: none!important;
}

.container {
    max-width: 1240px;
    margin: auto;
}

@media screen and (max-width:767px) {
    .container {
        margin: 0 15px;
    }
}

header.main-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 2%;
    height: 118px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    background: white;
}

.header-logo {
    font-family: var(--font-zenmaru);
    font-weight: 700;
}

.header-logo a {
    color: var(--orange-color);
}

.header-logo img.head-logo {
    display: block;
    width: 369px;
    height: 34px;
}

.header-logo .header-logo-sub {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.header-logo .header-logo-sub::after {
    content: "";
    background: url(../../images/kodomop/ef_headlead.svg) no-repeat center center/100%;
    width: 20px;
    height: 18px;
    display: block;
    position: absolute;
    top: -5px;
    right: -15px;
}

header.main-header .sp_header {
    display: flex;
    width: calc(100% - 400px);
    flex-direction: row-reverse;
    justify-content: space-between;
}

header.main-header nav {
    display: flex;
    justify-content: center;
    width: calc(100% - 320px);
}

header.main-header nav>a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin: 0 3%;
}

header.main-header nav>a>img {
    display: block;
    margin: 0 auto 10px auto;
}

header.main-header .search {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 300px;
}

header.main-header a.goto-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px 10px;
    background: var(--orange-color);
    border-radius: 40px;
    color: white;
    font-size: 12px;
    position: relative;
    margin-bottom: 8px;
}

header.main-header a.goto-button:hover {
    opacity: 0.7;
}

header.main-header a.goto-button img {
    width: 100px;
    display: inline-block;
    margin-right: 5px;
}

header.main-header a.goto-button::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 38%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.search-form {
    display: flex;
    align-items: center;
    padding-block: calc(.25rem* 2.25);
    padding-inline: calc(.25rem* 3);
    border: 1px solid #727272;
    border-radius: .375rem;
    background: white;
}

.search-form input.search-box {
    font-size: 14px;
    line-height: calc(1.25 / .875);
    border-style: none;
    --tw-border-style: none;
    width: calc(.25rem* 76);
}

.search-form input.search-box::placeholder {
    color: #706E7D;
}

.search-form .icon-search {
    line-height: 1;
}

.search-form .icon-search:before {
    content: "";
    display: inline-block;
    background: url(../../images/kodomop/search-ic.svg) no-repeat center center/100%;
    width: 16px;
    height: 17px;
}

.search-form .search-category {
    font-size: 14px;
    color: #727272;
    line-height: calc(1/.75);
}

.search-form .arrow {
    position: relative;
    padding-right: 10px;
}

.search-form .arrow::after {
    content: "";
    display: block;
    position: absolute;
    right: -5px;
    top: 0;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 1px solid #727272;
    border-right: 1px solid #727272;
    transform: translateY(0px) rotate(135deg);
    box-sizing: border-box;
}

.search-bt {
    padding-left: calc(.25rem* 2);
    padding-right: 0;
    background-image: none;
    border: none;
    border-left: 1px solid #727272;
}

@media (width < 48rem) {
    .search-bt {
        /*width: calc(.25rem* 18.5);*/
        width: auto;
    }
}

#fixed-header {
    display: none;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 70px;
    box-sizing: border-box;
    transition: .5s;
    /* アニメーションタイミング */
}

#fixed-header.is-show {}

#fixed-header .header-logo {
    font-size: 12px;
}

#fixed-header .header-logo img.head-logo {
    width: 280px;
    height: 26px;
}

#fixed-header nav {
    justify-content: flex-end;
}

main {
    padding-top: 118px;
}

@media screen and (max-width:1406px) {
    .header-logo {
        width: 280px;
    }
    header.main-header .sp_header {
        width: calc(100% - 300px);
    }
    .header-logo img.head-logo {
        width: 280px;
        height: 26px;
    }
    .header-logo {
        font-size: 12px;
    }
}

@media screen and (max-width:1279px) {
    main {
        padding-top: 70px;
    }
    header.main-header {
        height: 70px;
        position: fixed;
    }
    #fixed-header {
        display: none!important;
    }
    br.sp_only {
        display: inline!important;
    }
    header.main-header .sp_only {
        display: block!important;
    }
    header.main-header .search,
    header.main-header nav,
    header.main-header nav.subnav {
        justify-content: center;
        width: 100%;
        max-width: 1000px;
        margin: 20px auto;
        flex-wrap: wrap;
    }
    header.main-header .search {
        align-items: center;
    }
    header.main-header nav.header-nav {
        justify-content: space-between;
    }
    header.main-header nav.header-nav>a {
        background: white;
        width: 15%;
        padding: 10px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    header.main-header .sp_only.subnav {
        display: flex;
        justify-content: space-between;
    }
    header.main-header .sp_only.subnav>a {
        background: white;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 10px 20px;
        width: 22%;
        text-align: left;
        margin-bottom: 20px;
        position: relative;
    }
    header.main-header .sp_only.subnav>a::after {
        content: '';
        display: block;
        position: absolute;
        right: 10px;
        top: 38%;
        transform: translateY(-50%);
        width: 9px;
        height: 9px;
        margin: auto;
        border-top: 2px solid var(--orange-color);
        border-right: 2px solid var(--orange-color);
        transform: rotate(45deg);
        box-sizing: border-box;
    }
    a.goto-button.sp_only {
        display: flex!important;
        max-width: 200px;
        margin: 10px auto;
    }
    a.goto-button.pc_only {
        display: none;
    }
    header.main-header .sp_header {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--yellow-bk-color);
        padding: 20px;
    }
    #nav_toggle {
        display: block;
        width: 30px;
        height: 30px;
        z-index: 100;
        right: 10px;
    }
    #nav_toggle div {
        position: relative;
    }
    #nav_toggle span {
        display: block;
        height: 3px;
        border-radius: 3px;
        background: var(--text-color);
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }
    #nav_toggle.ticket-area {
        background: var(--accent-color);
    }
    #nav_toggle span:nth-child(1) {
        top: 0px;
        background: var(--orange-color);
    }
    #nav_toggle span:nth-child(2) {
        top: 12px;
        background: var(--yellow-color);
    }
    #nav_toggle span:nth-child(3) {
        top: 24px;
        background: var(--blue-color);
    }
    /*開閉ボタンopen時*/
    .open #nav_toggle span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav_toggle span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
}

@media screen and (max-width:998px) {
    header.main-header nav.header-nav {
        margin-bottom: 0px;
    }
    header.main-header nav.header-nav>a {
        width: 31%;
        margin: 0 0 10px 0;
    }
    header.main-header .sp_only.subnav {
        display: flex!important;
        justify-content: space-between;
        margin-top: 10px;
    }
    header.main-header .sp_only.subnav>a {
        width: 49%;
        margin: 0 0 10px 0;
        padding: 10px 5px;
        font-size: 12px;
    }
}

@media screen and (max-width:767px) {
    main {
        padding-top: 58px;
    }
    header.main-header {
        height: 58px;
    }
    header.main-header .sp_header {
        padding: 10px;
    }
    .search-form {
        width: 100%;
        padding-right: 0;
    }
    .header-logo img.head-logo {
        width: 220px;
        height: 20px;
    }
    .header-logo .header-logo-sub {
        margin-bottom: 5px;
    }
    .header-logo {
        font-size: 11px;
    }
}

footer {
    padding: 40px 0;
}

footer>.container {
    justify-content: space-between;
    align-items: flex-end;
}

footer a.footer-logo img {
    width: 260px;
    height: 25px;
}

footer ul.foot-link {
    display: flex;
    font-size: 14px;
    margin-top: 20px;
}

footer ul.foot-link li {
    margin-right: 1.5em;
}

footer .copy {
    text-align: right;
    font-size: 12px;
    line-height: 2em;
}

@media screen and (max-width:767px) {
    footer>.container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    footer .copy {
        text-align: center;
    }
    footer ul.foot-link {
        flex-direction: column;
    }
    footer ul.foot-link li {
        margin-bottom: 10px;
        text-align: center;
    }
}