@charset "utf-8";

/*----- 汎用 -----*/

.movie_box {
    text-align: center;
}

.youtube_box {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube_box iframe {
    width: 100%;
    height: 100%;
}

.link_text {
    border-bottom: 1px solid;
}

.text_small {
    font-size: 0.7rem !important;
}

.grid_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 0 30px;
}

.grid_3_sp1,
.grid_3_sp2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 0 30px;
}

ul.list_disc {
    display: flex;
    flex-flow: column;
    gap: 10px;
    text-align: left;
    margin-left: 20px;
}

ul.list_disc li {
    list-style: disc;
}

ul.no_list {
    display: flex;
    flex-flow: column;
    gap: 10px;
    text-align: left;
}

ul.no_list li {
    list-style: none !important;
}

ul.koutei h4 {
    border-bottom: 1px solid;
    padding: 0 0 5px;
    margin: 0 0 10px;
}

.caption p:nth-of-type(1) {
    margin: 0 0 10px !important;
}

.caption p:nth-of-type(2) {
    font-size: 0.8rem;
    text-align: center;
    margin: 0 !important;
}

.tate_img img {
    max-height: 225px !important;
    object-fit: contain;
}

a.btn_back {
    width: fit-content;
    display: block;
    margin: 0 auto;
}

a.btn_back img {
    width: 100%;
    max-width: 250px;
}

.bg_y_r {
    background: #f2f2da;
    border-radius: 20px;
    padding: 40px;
}

.mb_0 {
    margin-bottom: 0 !important;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.mb_15 {
    margin-bottom: 15px !important;
}

.mb_30 {
    margin-bottom: 30px !important;
}

.mb_50 {
    margin-bottom: 50px !important;
}

.mb_60 {
    margin-bottom: 60px !important;
}

.tl {
    text-align: left !important;
}

.tc {
    text-align: center !important;
}

/*----- 汎用 ここまで -----*/

main.main a {
    overflow-wrap: anywhere;
    transition: 0.3s;
}

main.main a:hover {
    opacity: 0.3;
}

.hero_box>div:nth-of-type(1)>img {
    width: 100%;
    object-fit: contain;
}

.hero_box>div:nth-of-type(2)>div {
    max-width: 800px;
    text-align: center;
    border: 3px solid #49b2a1;
    background: #fff;
    border-radius: 40px;
    filter: drop-shadow(0px 6px 0px rgba(100, 200, 100, 60%));
    padding: 40px;
    margin: 60px auto 90px;
}

.hero_box>div:nth-of-type(2)>div>h1 {
    display: inline-block;
    color: #49b2a1;
    font-size: 1.8rem;
    font-weight: bold;
    border-bottom: 4px dotted;
    padding: 0 0 10px;
    margin: 0 0 20px;
}

.hero_box>div:nth-of-type(2)>div>p:nth-of-type(1) {
    margin: 0 0 10px;
}

.event_box {
    background: #fff0f2;
    padding: 30px 0;
}

.event_box h2 {
    width: 100%;
    max-width: 350px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #49b2a1;
    border-radius: 30px;
    position: relative;
    top: -60px;
    margin: 0 auto;
}

.event_box h2>img {
    max-width: 250px;
}

.event_box>div>p {
    width: fit-content;
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    padding: 0 40px;
    margin: 0 auto 30px;
}

.event_box>div>p::before,
.event_box>div>p::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: black;
}

.event_box>div>p::before {
    left: 0;
}

.event_box>div>p::after {
    right: 0;
}

.event_box>div>ul {
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto 60px;
}

.event_box>div>ul li a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: #ff95a4;
    border: 3px solid #eb6679;
    border-radius: 20px;
    position: relative;
}

.event_box>div>ul li:nth-of-type(4) a,
.event_box>div>ul:nth-of-type(2) li a {
    color: #fff;
    background: #ccc;
    border: 2px solid #ccc;
}

.event_box>div>ul li a:hover {
    color: #eb6679;
    background: #fff;
    cursor: pointer;
    opacity: 1;
    position: relative;
}

.event_box>div>ul li:nth-of-type(4) a:hover,
.event_box>div>ul:nth-of-type(2) li a:hover {
    color: #fff;
    background: #ccc;
    border: 2px solid #ccc;
    cursor: default;
}

.event_box>div>ul li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(135deg);
    margin: 0 0 2px 3px;
}

.event_box>div>ul li a:hover::after {
    border-top: 3px solid #eb6679;
    border-right: 3px solid #eb6679;
}

.event_box>div>ul li:nth-of-type(-n+2) a:hover::after,
.event_box>div>ul li:last-of-type a:hover::after,
.event_box>div>ul:nth-of-type(2) li a:hover::after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.event_box>div>section {
    border: 2px solid #49b2a1;
    border-radius: 20px;
    filter: drop-shadow(0px 6px 0px rgba(100, 200, 100, 60%));
    margin: 0 auto 60px;
}

.event_box>div>section:last-of-type {
    margin: 0 auto 30px;
}

.event_box>div>section>div:nth-of-type(1) {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49b2a1;
    border-radius: 17px 17px 0 0;
}

.event_box>div>section>div:nth-of-type(1)>p {
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
}

.event_box>div>section>div:nth-of-type(2) {
    display: flex;
    flex-flow: column;
    gap: 60px;
    background: #fff;
    padding: 30px;
    border-radius: 0 0 18px 18px;
}

.event_box>div>section>div:nth-of-type(2)>div {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>p span {
    color: #fff;
    white-space: nowrap;
    background: #49b2a1;
    border-radius: 5px;
    padding: 2px 10px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>h3 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 10px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>ul li {
    border: 1px solid;
    border-radius: 5px;
    padding: 2px 10px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a {
    max-width: 300px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 25px;
    position: relative;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    margin: 3px 0 0 3px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a.red:hover::after {
    border-top: 3px solid #eb6679;
    border-right: 3px solid #eb6679;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a.yellow:hover::after {
    border-top: 3px solid #e7ba15;
    border-right: 3px solid #e7ba15;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a.red {
    background: #ff95a4;
    border: 3px solid #eb6679;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a.red:hover {
    color: #eb6679;
    background: #fff;
    opacity: 1;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a.yellow {
    background: #f4cc39;
    border: 3px solid #e7ba15;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a.yellow:hover {
    color: #e7ba15;
    background: #fff;
    opacity: 1;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(1),
.event_detail>div>div:nth-of-type(1)>div:nth-of-type(1) {
    width: 100%;
    max-width: 300px;
    height: 185px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #ccc;
    padding: 10px;
    margin: 0 auto;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(1) img,
.event_detail>div>div:nth-of-type(1)>div:nth-of-type(1) img {
    height: 160px;
    object-fit: contain;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(1) img.small,
.event_detail>div>div:nth-of-type(1)>div:nth-of-type(1) img.small {
    max-width: 220px;
}

.event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(1) img.x-small,
.event_detail>div>div:nth-of-type(1)>div:nth-of-type(1) img.x-small {
    max-width: 180px;
}

/*----- イベント詳細 -----*/

.event_detail {
    background: #fff0f2;
    padding: 60px 0;
}

.event_detail>div>p {
    color: #49b2a1;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    background: #fff;
    border-radius: 100vw;
    position: relative;
    margin: 0 0 30px;
    padding: 5px 10px;
}

.event_detail .name {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px 60px;
    margin: 0 0 60px;
}

.event_detail .name>div:nth-of-type(2) h1 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 10px;
}

.event_detail .name>div:nth-of-type(2) h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 10px;
}

.event_detail .name>div:nth-of-type(2) ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}

.event_detail .name>div:nth-of-type(2) ul li {
    display: flex;
    align-items: center;
    gap: 10px
}

.event_detail .name>div:nth-of-type(2) ul li>p:nth-of-type(1) {
    min-width: 80px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background: #49b2a1;
    border-radius: 14px;
    padding: 2px 10px;
}

.event_detail .gaiyou {
    margin: 0 0 60px;
}

.event_detail .gaiyou h2 {
    width: fit-content;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    background: #49b2a1;
    border-radius: 17px;
    padding: 2px 20px;
    margin: 0 0 10px;
}

.event_detail .gaiyou>div>p:nth-of-type(1) {
    margin: 0 0 30px;
}

.event_detail .gaiyou>div ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
    margin: 0 0 20px 20px;
}

.event_detail .gaiyou>div ul li {
    list-style: disc;
}

.event_detail .gaiyou>div>div p {
    margin: 0 0 20px;
}

.event_detail a.link_img {
    width: fit-content;
    display: block;
}

.event_detail a.link_img img {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.event_detail .access,
.event_detail .talent,
.event_detail .exhibition {
    text-align: center;
    background: #fff;
    border: 3px solid #49b2a1;
    border-radius: 20px;
    padding: 40px 80px;
    margin: 0 auto 60px;
}

.event_detail .talent>div>h3 {
    height: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 0 40px;
}

.event_detail .talent>div>h3 span {
    position: absolute;
    z-index: 3;
}

.event_detail .talent>div>h3::before {
    content: "";
    width: 80px;
    height: 20px;
    background: #fff;
    position: absolute;
    z-index: 2;
}

.event_detail .talent>div>h3::after {
    content: "";
    width: 100%;
    height: 2px;
    border-bottom: 2px dotted;
    position: absolute;
}

.event_detail .talent>div>p {
    width: 100%;
    color: #eb6679;
    font-weight: bold;
    background: #FFE9EC;
    border-radius: 20px;
    padding: 20px 10px;
    margin: 0 0 40px;
}

.event_detail .talent>div>p a {
    color: initial;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.event_detail .talent>div>ul {
    display: flex;
    justify-content: center;
    gap: 40px 20px;
    margin: 0 0 40px;
}

.event_detail .talent>div>ul:last-of-type {
    flex-flow: column;
    align-items: center;
}

.event_detail .talent>div>ul li img {
    max-width: 225px;
}

.event_detail .talent>div>ul:nth-of-type(2) li img {
    max-width: 100%;
}

.event_detail .talent>div>ul>li>p:nth-of-type(1) {
    width: 100%;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    background: #EB6679;
    padding: 5px;
    margin: 0 0 10px;
}

.event_detail .talent>div>ul:nth-of-type(1)>li:nth-of-type(1)>p:nth-of-type(1) {
    font-size: 0.8rem;
    font-weight: normal;
}

.event_detail .talent>div>ul>li>p:nth-of-type(2) {
    font-size: 1.2rem;
    font-weight: bold;
}

.event_detail .talent>div>ul>li>p:nth-of-type(2) span {
    font-size: 1rem;
}

.event_detail .talent>div>div {
    background: #FFE9EC;
    border-radius: 20px;
    padding: 40px;
}

.event_detail .talent>div>div>h3 {
    color: #EB6679;
    line-height: 1.5;
    margin: 0 0 20px;
}

.event_detail .talent>div>div:nth-of-type(1) {
    margin: 0 0 60px;
}

.event_detail .talent>div>div:nth-of-type(1)>p {
    width: 100%;
    max-width: 225px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    background: #EB6679;
    padding: 5px;
    margin: 0 auto 30px;
}

.event_detail .talent>div>div:nth-of-type(1)>div {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 30px;
}

.event_detail .talent>div>div:nth-of-type(1)>div img {
    background: #fff;
    padding: 20px;
    margin: 0 0 10px;
}

.event_detail .talent>div>div:nth-of-type(1)>div>div:nth-of-type(2)>p {
    text-align: left;
    font-weight: bold;
    margin: 0 0 1rem;
}

.event_detail .talent>div>div:nth-of-type(1)>div>div:nth-of-type(2)>p:last-of-type {
    font-size: 0.7rem;
    font-weight: normal;
    margin: 0;
}

.event_detail .talent>div>div:nth-of-type(2)>p:nth-of-type(1) {
    text-align: left;
    margin: 0 0 30px;
}

.event_detail .talent>div>div:nth-of-type(2)>img {
    margin: 0 0 30px;
}

.event_detail .talent>div>div:nth-of-type(2)>ul:nth-of-type(1) li {
    font-weight: bold;
}

.event_detail .exhibition ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.event_detail .exhibition ul li {
    background: #ffe9ec;
    border-radius: 20px;
    padding: 30px;
}

.event_detail .exhibition ul li h3 {
    color: #eb6679;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 20px;
}

.event_detail .exhibition ul li h3 span {
    font-size: 1.2rem;
}

.event_detail .exhibition ul li p {
    font-weight: bold;
    text-align: left;
}

.event_detail .access h2,
.event_detail .talent h2,
.event_detail .exhibition h2 {
    color: #49b2a1;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    margin: 0 0 30px;
}

.event_detail .talent h2,
.event_detail .exhibition h2 {
    color: #eb6679;
    font-size: 1.4rem;
}

.event_detail .access p {
    margin: 0 0 30px;
}

.event_detail .access iframe {
    width: 100%;
    height: 300px;
}

.event_detail .border_red {
    border: 3px solid #eb6679;
}

/*----- イベント詳細 ここまで -----*/

/*----- イベントタイプ1　縦型 -----*/

.event_detail>div>div.event_type_01_tate>div:nth-of-type(1) {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    padding: 0;
    margin: 0 0 60px;
}

.event_detail>div>div.event_type_01_tate>div:nth-of-type(1) img {
    width: 100%;
    height: auto;
}

.event_type_01_tate {
    max-width: 800px;
    margin: 0 auto;
}

.event_type_01_tate>div:nth-of-type(2) {
    background: #fff;
    border: 2px solid #49b2a1;
    border-radius: 20px;
    filter: drop-shadow(0px 6px 0px rgba(100, 200, 100, 60%));
    padding: 40px;
    margin: 0 auto 60px;
}

.event_type_01_tate>div:nth-of-type(2)>p:nth-of-type(1) {
    color: #49b2a1;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    border: 1px solid #49b2a1;
    border-radius: 100vw;
    position: relative;
    margin: 0 0 30px;
    padding: 5px 10px;
}

.event_type_01_tate>div:nth-of-type(2)>p:last-of-type {
    width: fit-content;
    display: block;
    margin: 0 auto;
}

.event_type_01_tate>div:nth-of-type(2) h1 {
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 30px;
}


.event_type_01_tate>div>dl {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.event_type_01_tate>div>dl span {
    width: fit-content;
    display: block;
    font-size: 1rem;
    text-align: left;
    margin: 0 auto;
}

.event_type_01_tate>div>dl a {
    color: #f00;
    border-bottom: 2px solid;
    transition: 0.3s;
}

.event_type_01_tate>div>dl a:hover {
    opacity: 0.3;
}

.event_type_01_tate>div>dl>dt {
    width: 100%;
    max-width: 400px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    background: #49b2a1;
    border-radius: 17px;
    padding: 2px 20px;
    margin: 0 0 20px;
}

.event_type_01_tate>div>dl>dd {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 30px;
}

.event_type_01_tate>div>dl>dd iframe {
    width: 100%;
    max-width: 800px;
    height: 300px;
}

.event_type_01_tate>div>dl>dd ul {
    width: fit-content;
    display: flex;
    flex-flow: column;
    gap: 10px;
    text-align: left;
}

.event_type_01_tate>div>dl>dd ul li {
    list-style: disc;
    margin: 0 0 0 30px;
}

.event_type_01_tate>div>dl>dd table {
    width: fit-content;
    margin: 0 auto;
}

.event_type_01_tate>div>dl>dd table tr td {
    padding: 5px 10px;
}

.event_type_01_tate>div>dl>dd table tr td:nth-of-type(1) {
    display: flex;
    justify-content: space-between;
}

.event_type_01_tate>div>dl dd table tr td:nth-of-type(1) span {
    font-size: inherit;
    margin: 0;
}

.event_type_01_tate>div>dl dd.fukusourei_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.event_type_01_tate>div>dl dd.fukusourei_box img {
    width: 100%;
    max-width: 200px;
}


.event_type_01_tate>div>dl>dd>dl>dt {
    color: #49b2a1;
    margin: 0 0 10px;
}

.event_type_01_tate>div>dl>dd>dl>dd {
    margin: 0 0 30px;
}

.event_type_01_tate>div>dl>dd>dl>dd:last-of-type {
    margin: 0;
}

/*----- イベントタイプ1　縦型 ここまで -----*/

/*----- イベントレポート -----*/

.event_detail .name dl {
    margin: 20px 0 0;
}

.event_detail .name dl dt {
    width: fit-content;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background: #49b2a1;
    border-radius: 14px;
    padding: 2px 10px;
    margin: 0 0 5px;
}

.event_detail.event_report .hero_box {
    margin: 0 auto 60px;
}

.event_detail.event_report>div>p {
    color: initial;
    font-size: initial;
    font-weight: normal;
    text-align: initial;
    position: relative;
    margin: 0 0 30px;
}

.event_detail.event_report>div:nth-of-type(1)>p {
    color: #e7ba15;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    position: relative;
    margin: 0 0 30px;
}

.event_detail.event_report .name a {
    text-decoration: underline;
    text-underline-offset: 5px;

}

.event_detail.event_report .report {
    background: #fff;
    border: 2px solid #49b2a1;
    border-radius: 20px;
    padding: 40px 70px;
    margin: 0 auto 60px;
}

.event_detail.event_report .report h2 {
    width: fit-content;
    color: #49b2a1;
    text-align: center;
    line-height: 1.3;
    border-bottom: 6px dotted;
    padding: 0 0 10px;
    margin: 0 auto 30px;
}

.event_detail.event_report .report.r_center h2 {
    border-bottom: none;
    padding: 0;
}

.event_detail.event_report .report h3 {
    color: #49b2a1;
    line-height: 1.5;
    margin: 0 0 30px;
}

.event_detail.event_report .report.r_center h3 {
    color: initial;
}

.event_detail.event_report .report p,
.event_detail.event_report .report_title_top p {
    margin: 0 0 30px;
}

.event_detail.event_report .report img {
    width: 100%;
}

.event_detail.event_report .report a {
    color: #49b2a1;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.event_detail.event_report .report ul li p:last-of-type {
    margin: 0;
}

.event_detail.event_report .report_title_top>div a {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.event_detail.event_report .report_title_top {
    background: #fff;
    border: 2px solid #49b2a1;
    border-radius: 20px;
    margin: 0 auto 60px;
}

.event_detail.event_report .report_title_top>h2 {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
    background: #49b2a1;
    border-radius: 16px 16px 0 0;
    padding: 15px 10px;
}

.event_detail.event_report .report_title_top>div {
    padding: 40px 70px;
}

.event_detail.event_report .report_title_top>div dl dt {
    display: flex;
    justify-content: center;
    color: #49b2a1;
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    margin: 0 auto 20px;
}

.event_detail.event_report .report_title_top>div dl dt::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #49b2a1;
    position: absolute;
    bottom: -5px;
}

.event_detail.event_report .report_title_top>div dl dd {
    text-align: center;
    margin: 0 0 30px;
}

.event_detail.event_report .report_title_top>div dl dd:last-of-type {
    margin: 0;
}

.event_detail.event_report .report_title_top>div .dl_tag {
    display: flex;
    flex-flow: column;
    gap: 20px;
}

.event_detail.event_report .report_title_top>div .dl_tag dl {
    display: flex;
    gap: 10px
}

.event_detail.event_report .report_title_top>div .dl_tag dl dt {
    width: 100px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.8rem;
    background: #49b2a1;
    border-radius: 5px;
    padding: 5px;
    margin: 0;
}

.event_detail.event_report .report_title_top>div .dl_tag dl dt::after {
    display: none;
}

.event_detail.event_report .report_title_top>div .dl_tag dl dd {
    text-align: left;
}

.event_detail.event_report .report_title_top>div .dl_tag dl dd a {
    font-weight: bold;
}

.event_detail.event_report .report_title_top>div h3 {
    color: #49b2a1;
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 30px;
}

.event_detail.event_report .report_title_top>div h4 {
    line-height: 1.5;
    margin: 0 0 30px;
}


/*----- イベントレポート ここまで -----*/

/*----- イベント釣り -----*/

.profile>h2 {
    color: #49b2a1;
    font-size: 1.4rem;
    text-align: center;
    border-bottom: 2px dotted;
    padding: 0 0 5px 0;
    margin: 0px 0 20px 0;
}

.profile>ul {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    justify-items: center;
    gap: 30px;
    margin: 0 0 30px 0;
}

.profile>ul li img {
    max-width: 400px;
}

/*----- イベント釣り ここまで-----*/


@media (max-width:1400px) {
    .event_box>div>section>div:nth-of-type(2)>div {
        grid-template-columns: 300px 1fr;
    }

    /*----- イベント詳細 -----*/

    .event_detail .name {
        grid-template-columns: 300px 1fr;
    }
}

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

    /*----- 汎用 -----*/

    .bg_y_r {
        padding: 20px 20px 40px;
    }

    .order_box {
        display: flex;
        flex-flow: column;
        margin: 0 0 50px;
    }

    .mb_15_sp {
        margin-bottom: 15px !important;
    }

    .tate_img img {
        max-height: 100% !important;
    }

    /*----- 汎用 ここまで -----*/

    .hero_box>div:nth-of-type(2)>div {
        padding: 40px 20px;
        margin: 40px auto 70px;
    }

    .hero_box>div:nth-of-type(2)>div>h1 {
        font-size: 2rem;
    }

    .hero_box>div:nth-of-type(2)>div>p {
        text-align: left;
    }

    .event_box {
        padding: 0 0 30px;
    }

    .event_box h2 {
        max-width: 270px;
        top: -30px;
    }

    .event_box h2>img {
        max-width: 200px;
    }

    .event_box>div>ul {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 0 30px;
    }

    .event_box>div>ul li a {
        height: 50px;
        border-radius: 25px;
    }

    .event_box>div>section>div:nth-of-type(2) {
        padding: 30px 20px;
    }

    .event_box>div>section>div:nth-of-type(2)>div {
        grid-template-columns: 1fr;
    }

    .event_box>div>section>div:nth-of-type(2)>div>div:nth-of-type(2)>a {
        height: 60px;
        font-size: 1.2rem;
        font-weight: bold;
        border-radius: 30px;
    }

    /*----- イベント詳細 -----*/

    .event_detail {
        padding: 30px 0;
    }

    .event_detail .name,
    .event_detail .gaiyou {
        grid-template-columns: 1fr;
        margin: 0 0 30px;
    }

    .event_detail .access,
    .event_detail .talent,
    .event_detail .exhibition {
        padding: 30px 20px;
    }

    .event_detail .talent,
    .event_detail .exhibition {
        margin: 0 auto 30px;
    }

    .event_detail .exhibition ul {
        grid-template-columns: 1fr;
    }

    .event_detail .exhibition ul li {
        padding: 20px 20px 30px;
    }

    .event_detail .access p {
        text-align: left;
    }

    .event_detail .talent>div>div {
        padding: 20px;
    }

    .event_detail .talent>div>ul {
        flex-flow: column;
        align-items: center;
    }

    .event_detail .talent>div>ul {
        flex-flow: column;
        align-items: center;
    }

    .event_detail .talent>div>ul:nth-of-type(2) {
        margin: 0 0 20px;
    }

    .event_detail .talent>div>div:nth-of-type(1)>div {
        grid-template-columns: 1fr;
    }

    /*----- イベント詳細 ここまで -----*/


    /*----- イベントタイプ1　縦型 -----*/

    .event_type_01_tate>div:nth-of-type(2) {
        padding: 30px 20px;
    }

    .event_type_01_tate>div:nth-of-type(2) h1 {
        font-size: 1.2rem;
    }

    .event_type_01_tate>div>dl>dd {
        font-size: initial;
    }

    .event_type_01_tate>div>dl span,
    .event_type_01_tate>div:nth-of-type(2)>p:last-of-type {
        font-size: 0.8rem;
    }

    /*----- イベントタイプ1　縦型 ここまで -----*/


    /*----- イベントレポート -----*/

    .event_detail.event_report .hero_box {
        margin: 0 auto 30px;
    }

    .event_detail.event_report .report,
    .event_detail.event_report .report_title_top>div {
        padding: 30px 20px;
        margin: 0 auto 30px;
    }

    .event_detail.event_report .report h3 {
        text-align: center;
    }

    .event_detail.event_report .report_title_top>div h3 {
        margin: 0 0 20px;
    }

    .grid_2,
    .grid_3_sp1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid_3_sp2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .event_detail.event_report .report_title_top {
        margin: 0 auto 30px;
    }

    .event_detail.event_report .report_title_top>div .dl_tag dl {
        flex-flow: column;
    }

    .event_detail.event_report .report_title_top .order_box>p {
        order: 2;
    }

    .event_detail.event_report .report_title_top .order_box .grid_2 {
        display: contents;
    }

    .event_detail.event_report .report_title_top .order_box .grid_2 li:nth-of-type(1) {
        order: 1;
        margin: 0 0 30px;
    }

    .event_detail.event_report .report_title_top .order_box .grid_2 li:nth-of-type(2) {
        order: 3;
    }

    /*----- イベントレポート ここまで -----*/

    /*----- イベント釣り -----*/

    .profile>ul {
        grid-template-columns: 1fr;
    }

    /*----- イベント釣り ここまで-----*/
}