@charset "utf-8";
/* CSS Document */

/* Reset
------------------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

address,
em {
    font-style: normal;
}

strong,
th {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th {
    text-align: left;
}

hr,
legend {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

img,
fieldset {
    border: 0;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

figure {
    padding: 0;
    margin: 0;
}

li {
    list-style-type: none;
}

input[type="submit"], button, label, select {
    cursor: pointer;
}


/* Fonts
------------------------------------------------------------*/
body {
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body, input, button, textarea, select {
    font: "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
    color: #333;
}

p {
    font: "メイリオ", Verdana, "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, sans-serif;
    color: #333;
}


html>
/**/
/* body {
    font-size: 16px;
} */

/* Except IE */
.clear {
    clear: both;
}

/* link
------------------------------------------------------------*/
a, a:hover {
    color: #ff8e00;
    text-decoration: none;
}

.wrap a:hover {
    transition: all 0.6s ease 0s;
    opacity: 0.5;
}

/* clearfix
------------------------------------------------------------*/
.clearfix::after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

/* exlude MacIE5 \*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* end MacIE5 */

.clearfix+* {
    clear: both;
}

/**************************\
    Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal_overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal_container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal_overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal_container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal_container,
.micromodal-slide .modal_overlay {
    will-change: transform;
}






/* Modal
------------------------------------------------------------*/

.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal_container {
    position: relative;
    background-color: #fff;
    padding: 30px;
    margin-right: 20px;
    margin-left: 20px;
    max-width: 640px;
    max-height: 100vh;
    width: 100%;
    border-radius: 50px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 8px solid transparent;
    background: linear-gradient(160deg, #c4db6a 0%, #c4db6a 50%, #72bb2b 50%) border-box border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}


.modal_container h3.modal_title span {
    display: block;
    font-size: 1rem;
}

.modal_content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

.wrap .modal_footer {
    background: #fff;
    padding: 10px;
}

.modal_close {
    background: transparent;
    border: 0;
}

.modal_close:before {
    content: "\2715";
    margin-right: 15px;
}

.modal_btn {
    background-color: transparent;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out;

    width: 50px;
    vertical-align: middle;
}

.modal_btn:focus, .modal_btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}


/* slick
------------------------------------------------------------*/

.dots-wrap {
    margin: 0;
    position: absolute;
    right: 20px;
    top: 25px;
}

.dots-wrap li {
    width: 10px;
    height: 10px;
    background-color: coral;
    border-radius: 50%;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0.45;
}

.dots-wrap li.slick-active,
.dots-wrap li:hover {
    opacity: 1;
}

.dots-wrap li:last-child {
    margin-bottom: 0;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}




/* ------------------------------------------------------------------------------------------------------------------------


common 

------------------------------------------------------------------------------------------------------------------------*/

body {
    background-image: url(../images/bg_base.webp);
}

.wrap {
    background-color: #fffaec;
    max-width: 1200px;
    min-width: 320px;
    margin: 0px auto;
    box-shadow: 2px 0px 20px #ccc;
}

.wrap h1,
.wrap h2,
.wrap h3,
.wrap h4,
.wrap h5,
.wrap h6,
.wrap .title {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    color: #1d4462;
}

.inner {
    margin: 0 clamp(10px, 2vw, 20px);
    background-color: #fff;
    border-radius: 50px;
    padding: 50px 20px 20px;
    margin-bottom: clamp(50px, 8%, 8%);
    box-shadow: 2px 2px 10px #d8cca5;
}

/* header */

.wrap header {
    margin-bottom: clamp(50px, 8%, 8%);
}

.wrap header img {
    border-radius: 0 0 50px 50px;
    box-shadow: 2px 2px 10px #d8cca5;
}

/* oa */
.wrap .oa {
    position: relative;
    z-index: 0;
    /* padding: clamp(20px, 5%, 5%); */
}

.wrap .oa::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 8px solid transparent;
    background: linear-gradient(160deg, #ffbb00 0%, #ffbb00 50%, #ff8e00 50%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
    z-index: 1;
}

.wrap .oa h2 {
    width: fit-content;
    height: fit-content;
    background: linear-gradient(164deg, #ffbb00 0%, #ffbb00 50%, #ff8e00 50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
    line-height: 150%;
    text-align: center;
    padding: 1% 4%;
    margin: clamp(-30px, -4%, -4%) auto 20px;
    text-align: center;
    text-shadow: 3px 3px 0px #ffbb00;
    border-radius: 50px;
    z-index: 3;
}


.wrap .oa .oa_detail {
    display: flex;
}

.wrap .oa .oa_detail {
    background-color: #fff6de;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 25px;
    margin-bottom: 10px;
}

.wrap .oa h3 {
    width: 100%;
    font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
    margin-top: 20px;
    border-bottom: solid 6px #ffbb00;
    position: relative;
}

.wrap .oa h3::after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 6px #ff8e00;
    bottom: -6px;
    width: 30%;
}

.wrap .oa .oa_date {
    width: 100%;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-top: 10px;
    font-weight: bold;
    color: #1d4462;
}

.wrap .oa .oa_date::before {
    content: "●";
    color: #ffbb00;
    margin-right: 5px;
}


.wrap .oa .oa_detail .slider {
    width: 50%;
    margin-bottom: 0;
}

@media screen and (max-width: 800px) {
    .wrap .oa .oa_detail .slider {
        width: 100%;
    }
}


.wrap .oa .oa_detail .slider img {
    border-radius: 20px;
    padding: 10px 10px 10px 0px;
}


.wrap .oa .oa_detail .detail_txt {
    background-color: #fff;
    width: 50%;
    border-radius: 20px;
    box-sizing: border-box;
    line-height: 150%;
    padding: 20px;
    margin: 10px 0px;
}

@media screen and (max-width: 800px) {
    .wrap .oa .oa_detail .detail_txt {
        width: 100%;
    }
}

.wrap .oa .location {
    background-image: url(../images/bg_logo.png);
    background-repeat: no-repeat;
    background-position: bottom 12% right 10%;
    background-size: 35% auto;

    background-color: #fffdde;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 25px;
}

.wrap .oa .location .title {
    width: 100%;
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    margin-bottom: 10px;
}

.wrap .oa .location .title::before {
    content: "●";
    color: #ff8e00;
    margin-right: 5px;
}


.wrap .oa .location ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;

}

.wrap .oa .location ul li {
    background-color: #fff;
    width: calc(50% - 10px);
    padding: 10px;
    border-radius: 25px;
}

@media screen and (max-width: 600px) {
    .wrap .oa .location ul li {
        width: 100%;
    }
}


.wrap .oa .location ul li figure img {
    border-radius: 15px;
    margin-bottom: 10px;
}

.wrap .oa .location ul li figure figcaption {
    font-family: "M PLUS Rounded 1c", sans-serif;
    text-align: center;
    margin-bottom: 5px;
}

.wrap .oa .location ul li p {
    padding: 5px;
}

/* profile */
.wrap .profile {
    position: relative;
}

.wrap .profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 8px solid transparent;
    background: linear-gradient(160deg, #c4db6a 0%, #c4db6a 50%, #72bb2b 50%) border-box border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}

.wrap .profile h2 {
    width: fit-content;
    height: fit-content;
    background: linear-gradient(164deg, #c4db6a 0%, #c4db6a 50%, #72bb2b 50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
    text-align: center;
    padding: 1% 4%;
    margin: clamp(-30px, -4%, -4%) auto 20px;
    text-align: center;
    text-shadow: 3px 3px 0px #c4db6a;
    border-radius: 50px;
    z-index: 3;
}

.wrap .profile .profile_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.wrap .profile .profile_list li {
    background-color: rgba(200, 225, 102, 0.2);
    width: calc((100% / 3) - 10px);
    display: flex;
    flex-direction: column;
    border-radius: 25px;
}

@media screen and (max-width: 800px) {
    .wrap .profile .profile_list li {
        width: 100%;
        display: flex;
        flex-direction: row;
    }
}

@media screen and (max-width: 500px) {
    .wrap .profile .profile_list li {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.wrap .profile .profile_list li figure {
    margin: 10px;
}

@media screen and (max-width: 800px) {
    .wrap .profile .profile_list li figure {
        width: 20%;
        flex-shrink: 0;
    }
}

@media screen and (max-width: 500px) {
    .wrap .profile .profile_list li figure {
        width: 120px;
        margin-bottom: 0px;
    }
}

.wrap .profile .profile_list li figure>img {
    border-radius: 20px;
    border: 6px solid #c8e166;
}

.wrap .profile .profile_list li h3 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    color: #72bb2b;
    margin-bottom: 10px;
}

@media screen and (min-width:500px) and (max-width:800px) {
    .wrap .profile .profile_list li h3 {
        text-align: left;
    }
}

.wrap .profile .profile_list li .profile_txt {
    flex-grow: 1;
    padding: 5px 20px 20px;
}

@media screen and (max-width: 800px) {
    .wrap .profile .profile_list li .profile_txt {
        flex: 1 1 auto;
    }
}


/* footer */

.wrap footer {
    background: linear-gradient(180deg, #c4db6a 0%, #c4db6a 52%, #72bb2b 52%);
    text-align: center;
    padding: 30px;
}

/* sns */
.wrap footer .sns {
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;

    color: #1d4462;
    border-radius: 25px;
    padding: 20px;
    margin: 0px auto;
}


.wrap footer .sns ul {
    display: flex;
    gap: 20px;
    padding-left: 10px;
}

.wrap footer .sns ul img {
    width: 40px;
}


.wrap footer .archived_202509 a {
    display: block;

    width: fit-content;
    background-color: #ff8e00;
    border-radius: 25px;
    box-shadow: 2px 2px 10px #5c8b25;

    margin: 20px auto;
    padding: 10px 20px;

    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;

    transition: all 0.6s ease 0s;
}