@charset "utf-8";

#vdbanner {
    width: 0;
    height: 0;
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c4242;
    background-color: #fff;
    position: relative;
}


header {
    max-width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}

header .logo {
    display: block;
    max-width: 150px;
    min-width: 80px;
}

header .logo img {
    display: block;
    width: 100%;
    height: auto;
}

header .instaicon {
    max-width: 40px;
}

header .lineicon {
    max-width: 50px;
}

header .header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5vw;
}

header .header-nav ul li a {
    font-size: 0.8rem;
    white-space: nowrap;
    position: relative;
}

header .header-nav ul li a::after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    background: #FA4032;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transition: .3s;
}

header .header-nav ul li a:hover {
    color: #FA4032;
}

header .header-nav ul li a:hover::after {
    transform: scale(1, 1);
}

.text-color {
    color: #FA4032;

}

.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ハンバーガーメニュー */
.hamburger-morph {
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}

.hamburger-morph__line {
    fill: none;
    stroke: #000;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.nav-morph {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #ffd6c5f6;
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}

.nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-morph.active .nav-morph__item:nth-child(5) {
    transition-delay: 0.7s;
}

.nav-morph.active .nav-morph__item:nth-child(6) {
    transition-delay: 0.8s;
}

.nav-morph__link {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    height: 3em;
    line-height: 2.5em;
}

.nav-morph__text,
.nav-morph__hover {
    display: block;
    transition: transform 0.3s ease;
}

.nav-morph__hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: .8rem;
    transform: translateY(0%);
    white-space: nowrap;
}

.nav-morph__link:hover .nav-morph__text {
    transform: translateY(-100%);
}

.nav-morph__link:hover .nav-morph__hover {
    transform: translateY(-100%);
}


/* firstview */


.firstview {
    background: url(./img/redwhite.svg) no-repeat center/cover;
    height: calc(100vh - 60px);
    position: relative;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.firstview img {
    max-width: 30%;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.firstviewtext {
    text-align: right;
    position: absolute;
    bottom: 20%;
    right: 7%;
    width: 100%;
}

.firstviewtext1 {
    display: flex;
    gap: 0.2rem;
    text-align: right;
    justify-content: flex-end;
    overflow: hidden;
    font-size: 2rem;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
}

.firstviewtext1 span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.firstviewtext1.-visible span {
    transform: translateY(0);
    opacity: 1;
}

.firstviewtext1 span:nth-child(2) {
    transition-delay: 0.06s;
}

.firstviewtext1 span:nth-child(3) {
    transition-delay: 0.12s;
}

.firstviewtext1 span:nth-child(4) {
    transition-delay: 0.18s;
}

.firstviewtext1 span:nth-child(5) {
    transition-delay: 0.24s;
}

.firstviewtext1 span:nth-child(6) {
    transition-delay: 0.30s;
}

.firstviewtext1 span:nth-child(7) {
    transition-delay: 0.36s;
}

.firstviewtext1 span:nth-child(8) {
    transition-delay: 0.42s;
}

.firstviewtext1 span:nth-child(9) {
    transition-delay: 0.48s;
}

.firstviewtext1 span:nth-child(10) {
    transition-delay: 0.54s;
}

.firstviewtext1 span:nth-child(11) {
    transition-delay: 0.6s;
}

.firstviewtext1 span:nth-child(12) {
    transition-delay: 0.66s;
}

.firstviewtext1 span:nth-child(13) {
    transition-delay: 0.72s;
}

.firstviewtext1 span:nth-child(14) {
    transition-delay: 0.78s;
}

.firstviewtext2 {
    font-size: 3vmin;
    font-weight: normal;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.firstviewtext2.-visible {
    opacity: 1;
    transform: translateY(0);
}

.about {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    height: 75vh;
}

.backtext {
    font-size: 10vmin;
    color: #FFEAE1;
    font-weight: bold;
    padding-left: 100px;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
}

.about h2 {
    text-align: center;
    padding: 20px;
    margin: 30px auto;
}

.about .aboutexplain {
    text-align: center;
    line-height: 2;
}

.enn1 {
    border: 2px solid #FA4032;
    border-radius: 150px;
    width: 150px;
    height: 150px;
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 20%;
    animation: pulsate 3.5s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 2s;
}

.enn2 {
    border: 2px solid #fffc3b;
    border-radius: 150px;
    width: 200px;
    height: 200px;
    opacity: 0;
    position: absolute;
    bottom: 25%;
    right: 15%;
    animation: pulsate 3.5s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}

.enn3 {
    border: 2px solid #74C66D;
    border-radius: 150px;
    width: 180px;
    height: 180px;
    opacity: 0;
    position: absolute;
    bottom: 50%;
    right: 15%;
    animation: pulsate 4s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.enn4 {
    border: 2px solid #ffbd2e;
    border-radius: 150px;
    width: 200px;
    height: 200px;
    opacity: 0;
    position: absolute;
    bottom: 40%;
    right: 25%;
    animation: pulsate 4s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 4s;
}

.enn5 {
    border: 2px solid #FA4032;
    border-radius: 150px;
    width: 250px;
    height: 250px;
    opacity: 0;
    position: absolute;
    bottom: 35%;
    right: 5%;
    animation: pulsate 3.5s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1.5s;
}

.enn6 {
    border: 2px solid #fffc3b;
    border-radius: 150px;
    width: 250px;
    height: 250px;
    opacity: 0;
    position: absolute;
    top: 25%;
    left: 5%;
    animation: pulsate 4s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 3s;
}

.enn7 {
    border: 2px solid #74C66D;
    border-radius: 150px;
    width: 200px;
    height: 200px;
    opacity: 0;
    position: absolute;
    top: 45%;
    left: 10%;
    animation: pulsate 3.5s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}

.enn8 {
    border: 2px solid #ffbd2e;
    border-radius: 150px;
    width: 100px;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: 25%;
    left: 25%;
    animation: pulsate 3s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1.5s;
}


@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}




.detailbtn,
.sankabtn,
.contactbtn,
.nextbtn,
.seemorebtn {
    display: flex;
    margin: 40px auto;
    border-radius: 25px;
    position: relative;
    width: 200px;
    padding: .9em 2em;
    border: 1px solid #FA4032;
    border-radius: 25px;
    background-color: #fff;
    color: #FA4032;
    font-size: 1em;
    align-items: center;
    justify-content: center;
}

.detailbtn::after,
.sankabtn::after,
.contactbtn::after,
.nextbtn::after,
.seemorebtn::after {
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-top: 2px solid #FA4032;
    border-right: 2px solid #FA4032;
    content: '';
    transition: 0.3s ease-in-out;
}

.detailbtn:hover,
.sankabtn:hover,
.contactbtn:hover,
.nextbtn:hover,
.seemorebtn:hover {
    border: 1px solid #fff;
    background-color: #FA4032;
    color: #fff;
    transition: 0.3s ease-in-out;
}

.detailbtn:hover:after,
.sankabtn:hover:after,
.contactbtn:hover:after,
.nextbtn:hover::after,
.seemorebtn:hover:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}


.mission {
    background-color: #FFEAE1;
    max-width: 100%;
    margin: 0 auto;
    padding: 5% 0 10%;
}

.mission .backtext {
    color: #fff;
}

.engtext {
    color: #FA4032;
    font-weight: bold;
    font-size: 3.5vmin;
    border-bottom: #FA4032 solid 1px;
    display: inline-block;
    margin-left: 20%;
    margin-top: 30px;
}

.mission h2,
.works h2 {
    font-size: 4vmin;
    margin-left: 20%;
}

.mission img {
    width: 60%;
    max-width: 70%;
    margin: 5% auto 0;
    display: block;
}

.missioncontent {
    display: flex;
    justify-content: center;
    gap: 23%;
    margin-top: 3%;
}

.missioncontent p {
    text-align: center;
    white-space: nowrap;
}

.mtext1 {
    padding-left: 3%;
}

.works {
    margin: 5% auto;
    max-width: 100%;
    position: relative;
}

.workcontent1 {
    background-color: #FFD6C5;
    border-radius: 30px;
    position: relative;
    left: 5%;
    display: flex;
    justify-content: space-around;
    margin-top: 5%;
    height: auto;
    align-items: center;
}

.workcontent1 img {
    margin: 10% 3%;
    object-fit: contain;
    max-width: 500px;
    min-width: 250px;
}

.workcontent1 h3 {
    color: #FA4032;
    font-size: 2rem;
}

.worktext1 {
    margin: 10% 0;
    margin-right: 7%;
}

.worktext1 p {
    margin: 10% auto;
}

.mobile-flex {
    display: flex;
}

.workcontent2 img {
    margin: 5% 2%;
    max-width: 250px;
    object-fit: contain;
}

.snscontent {
    background-color: #fff;
    text-align: center;
    border-radius: 20px;
    width: 90%;
}

.snscontent ul {
    display: flex;
    justify-content: center;
}

.snscontent ul img {
    width: 30px;
    margin: 10px;
}

.workcontent2 {
    background-color: #FFD6C5;
    border-radius: 30px;
    position: relative;
    right: 5%;
    display: flex;
    justify-content: center;
    margin-top: 8%;
}

.workcontent2 h3 {
    color: #FA4032;
    font-size: 2rem;
}

.worktext2 {
    margin: 10% 5%;
    padding-left: 3%;
}

.worktext2 p {
    margin: 10% auto;
}

.snscontent p {
    margin: 0;
}

.column,
.news {
    max-width: 100%;
    margin: 10% auto;
}

.column .engtext,
.news .engtext {
    margin: 0 auto;
}

.column h2,
.news h2 {
    text-align: center;
    margin-bottom: 30px;
}

.columncard,
.newscard {
    width: 100%;
    margin: 2%;
}

.columncard:last-child,
.newscard:last-child {
    margin-right: 0;
}

.columncard img,
.newscard img {
    width: 100%;
    max-width: 300px;
    min-width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}


.columnmark {
    display: flex;
    align-items: center;
}

.mark1,
.mark2,
.mark3 {
    background-color: #FA4032;
    border-radius: 16px;
    padding: 2px 12px;
    font-size: .5rem;
    color: #fff;
}

.mark2 {
    background-color: #406E57;
    margin: 0 10px;
}

.mark3 {
    background-color: #274C6C;
    margin: 0 10px;
}

.columnslider,
.newscontents {
    display: flex;
    justify-content: space-between;
    margin: 0 10%;
}

.newscard p {
    font-size: 14px;
    white-space: nowrap;
}

.newstext {
    font-weight: bold;
}

.columntopic {
    width: 100%;
    display: inline-block;
}

.columncard .columnmark p {
    font-size: .7rem;
}

.columncard:hover,
.newscard:hover {
    transform: translateY(-2px);
}

/* footer */
footer {
    background-color: #FEF3E2;
    /* border-top: rgb(95, 95, 95) 1px solid; */
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
}

footer ul li a {
    font-size: 0.9rem;
    padding-left: 8px;
    position: relative;
}

footer ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 0;
    background: #000;
    transition: height 0.3s ease;
}

footer ul li a:hover::after {
    height: 120%;
}

.footersns li a:hover::after {
    display: none;
}


.footersns li a img {
    width: 30px;
    margin: 10px;
}

.footerlogo {
    max-width: 20%;
    object-fit: contain;
}

.footersns {
    display: flex;
}

.footerplace p {
    font-size: 0.8rem;
}

/* aboutページ */

.about-page {
    max-width: 100%;
    margin: 0 auto;
}

.aboutennesia {
    background-color: #FFEAE1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 10%;
    padding: 5%;
    border-radius: 30px;
    position: relative;
}

.about-page img {
    max-width: 200px;
    object-fit: contain;
}

.ennesia-text h1 {
    padding-top: 10px;
    font-size: 1.5rem;
    margin-left: -10px;
}

.ennesia-text {
    line-height: 2;
    margin: auto;
}

.about-page .aboutennesia .aboutennesiaimg {
    max-width: 330px;
    min-width: 30%;
    padding: 20px;
}

.abouthost {
    background-color: #FFD6C5;
    display: flex;
    justify-content: space-around;
    margin: 10%;
    padding: 5%;
    border-radius: 30px;
    position: relative;
}

.flexbox {
    display: flex;
}

.abouthost h2 {
    padding-top: 30px;
}


/* eventページ */
.event-page {
    max-width: 100%;
    margin: 0 auto;
}

.event-page .eventlogo {
    max-width: 200px;
    object-fit: contain;
    border-left: #FA4032 2px solid;
}

.event-page .leafimg {
    max-width: 90px;
    padding-bottom: 30px;
}

.event-page h1 {
    font-size: 1.5rem;
    margin-left: -15px;
}

.event-page .flexbox {
    align-items: center;
    margin: 5% 10%;
}

.event-page .event-explain {
    margin-left: 10%;
}

/* aboutevent */
.aboutevent {
    background-color: #FFEAE1;
    border-radius: 30px;
    margin: 10%;
    padding: 5%;
}

.aboutevent .flexbox {
    justify-content: space-around;
}

.aboutevent img {
    width: 30%;
    object-fit: cover;
}

.aboutevent h2 img {
    max-width: 10%;
}

.aboutevent .forflex {
    margin: 2rem;
}

.event-explain1,
.event-explain2,
.event-explain3 {
    background-color: #fdf8f6;
    padding: 1.5rem;
    border-radius: 30px;
    margin: 1rem;
    width: 100%;
    border: #fa9d32 2px solid;
    ;
}

.aboutevent h3 {
    font-size: 13px;
}

.event-explain1 ul li,
.event-explain2 ul li,
.event-explain3 ul li {
    font-size: 14px;
}

.event-explain3 {
    white-space: nowrap;
}

.aboutevent .flexbox {
    margin: 0;
}

.aboutevent .forflex .flexbox {
    justify-content: space-between;
}


/* eventditail */
.eventditail {
    background-color: #FFEAE1;
    border-radius: 30px;
    margin: 10%;
    padding: 5%;
}

.eventditail h2 img {
    max-width: 10%;
}

.answer {
    border: #FFE522 3px solid;
    border-radius: 40px;
    background-color: #fff;
    margin: 5% auto;
    padding: 1rem;
}

.answer p {
    margin: 0;
}

.answer p:nth-child(1) {
    font-weight: bold;
    font-size: 1.2rem;
}

.eventditail ul {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.eventditail ul li {
    background-color: #fff;
    border-radius: 20px;
    padding: 15px;
    align-items: center;
    margin: 2% 1% 5%;
    width: 350px;
    aspect-ratio: 1/1;
    text-align: center;
}

.eventditail ul li img {
    width: 55%;
}

.eventditail ul .imgsize img {
    width: 100%;
}

.eventditail ul li p {
    margin: 0 auto;
    font-size: 0.9rem;
    text-align: left;
    white-space: nowrap;
}

.fontsize {
    font-size: .8rem;
}

.textcenter {
    text-align: center;
    margin-top: 5%;
    font-size: 1.2rem;
    font-weight: bold;
}

.eventditail .sankabtn {
    padding: .9em 0.5em;
    font-size: 0.9em;
    border: 1px solid transparent;
    background-color: #FFE522;
    color: #fff;
}

.eventditail .sankabtn::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.eventditail .sankabtn:hover {
    border: 1px solid #FFE522;
    background-color: #fff;
    color: #FFE522;
}

.eventditail .sankabtn:hover:after {
    border-top: 2px solid #FFE522;
    border-right: 2px solid #FFE522;
}


/* eventcontact */

.eventcontact {
    text-align: center;
}

.eventcontact h2 {
    font-size: 1.2em;
}

.eventcontact img {
    max-width: 35px;
    margin: 1em;
}

.contactbtn {
    padding: .9em 0.5em;
    font-size: 0.9em;
    border: 1px solid #fff;
    background-color: #FA4032;
    color: #fff;
}

.contactbtn::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.contactbtn:hover {
    border: 1px solid #FA4032;
    background-color: #fff;
    color: #FA4032;
}

.contactbtn:hover:after {
    border-top: 2px solid #FA4032;
    border-right: 2px solid #FA4032;
}

.eventcontact .flexbox {
    margin: 3% auto;
    justify-content: center;
}



/* sankasha */

.sankasha {
    margin: 5% auto;
}

.sankasha h2 {
    text-align: center;
}

.sankasha h2 img {
    max-width: 50px;
}

.sankasha-contents {
    background-color: #FF954D;
    border-radius: 30px;
    margin: 0 10%;
    padding: 5%;
}

.sankasha-contents img {
    max-width: 100%;
    margin: 0 3%;
}

.manvoice,
.womanvoice {
    display: flex;
    align-items: center;

}

.manvoice {
    margin-bottom: 3%;
}

.sankasha-contents p {
    font-size: 0.9rem;
    color: #000;
    background-color: #fff;
    border-radius: 30px;
    padding: 2rem;
}

/* newsページ */

.news-page {
    margin: 0 auto;
}

.news-page h1 {
    margin: 10% 10%;
    display: flex;
    align-items: center;
    border-left: #FA4032 2px solid;
    font-size: 1.5rem;
    padding-left: 10px;
}

.news-page h1 img {
    max-width: 80px;
}

.news-page article {
    margin: 5% 10%;
}

.news-page article img {
    max-width: 200px;
    object-fit: contain;
}

.news-page article {
    display: flex;
    justify-content: left;
    box-shadow: 2px 2px 4px rgb(175, 175, 175);
    padding: 3%;
}

.article-text {
    margin-left: 5%;
    padding: 2%;
}

.article-text h2 {
    font-size: 1em;
}

.article-text p {
    font-size: 0.9rem;
}


/* pagination */
.Pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5%;
}

.Pagination-Item-Link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    background: #fff;
    border: solid 1px #FA4032;
    font-size: 14px;
    color: #FA4032;
    transition: all 0.15s linear;
}

.Pagination-Item-Link-Icon {
    width: 20px;
}

.Pagination-Item-Link.isActive {
    background: #FA4032;
    color: #fff;
    pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
    background: #FA4032;
    color: #fff;
}

.Pagination>*+* {
    margin-left: 8px;
}

.Pagination-Item-Link:focus {
    outline: 2px solid #FA4032;
    outline-offset: 2px;
}

/* columnページ */
.column-page {
    margin: 5% 10%;
    max-width: 100%;
}

.column-page h1 {
    font-size: 1.5rem;
    border-left: #FA4032 2px solid;
    padding-left: 10px;
}


.column-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recommend-article {
    display: flex;
    justify-content: center;
    margin: 5% auto;
}

.recommend-article img {
    width: 70%;
    object-fit: contain;
}

.recommend-article h2 {
    writing-mode: vertical-rl;
    margin: 5%;
}

.column-category {
    display: flex;

}

.re-article-text {
    margin: 2rem;
    font-size: 0.9rem;
    position: relative;
    min-width: 200px;
}

.re-article-text h3 {
    font-size: 1rem;
    padding: 20px 0 0;
}

.recommend-article .columnmark p {
    font-size: .7rem;
}

.article01 img {
    width: 100%;
}

.nextbtn {
    margin: 0;
    width: 100px;
    padding: .3em .5em;
    border: 1px solid #FA4032;
    background-color: #fff;
    color: #FA4032;
    font-size: .8em;
    position: absolute;
    right: 0;
    bottom: 5;
}

.nextbtn::after {
    transform: rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-top: 1px solid #FA4032;
    border-right: 1px solid #FA4032;
    content: '';
    transition: 0.3s ease-in-out;
}

.all-article {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    background-color: #FFEAE1;
    padding: 5%;
    border-radius: 30px;
    gap: 2rem;
    margin: 0 auto;
}

.all-article a {
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.article01 {
    margin: 0 auto;
}

.article01 h4 {
    font-size: .8rem;
    margin: 0;
    width: 100%;
}

.article01 p {
    font-size: .8rem;
    margin: 0;
}

.article01 .column-category .mark1,
.article01 .column-category .mark2,
.article01 .column-category .mark3 {
    margin: 5px;
}

.enn9 {
    z-index: -10;
    border: 2px solid #FA4032;
    border-radius: 150px;
    width: 100px;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: 15%;
    left: 10%;
    animation: pulsate 3s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1.5s;
}

.enn10 {
    z-index: -10;
    border: 2px solid #ffbd2e;
    border-radius: 150px;
    width: 120px;
    height: 120px;
    opacity: 0;
    position: absolute;
    top: 22%;
    left: 13%;
    animation: pulsate 4s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 2s;
}

.enn11 {
    z-index: -10;
    border: 2px solid #fadc32;
    border-radius: 150px;
    width: 50px;
    height: 50px;
    opacity: 0;
    position: absolute;
    top: 18%;
    left: 10%;
    animation: pulsate 4s ease-out;
    animation-iteration-count: infinite;
    animation-delay: 1s;
}


@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}

/* search */
.search-form-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 1px solid #777777;
    border-radius: 10px;
    max-width: 300px;
    height: 30px;
    position: relative;
    margin-right: 60px;
}

.search-form-3 input {
    width: 200px;
    height: 45px;
    padding: 5px 10px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}

.search-form-3 input::placeholder {
    color: #777777;
}

.search-form-3 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.search-form-3 button::after {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23777777'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

/* articleページ */

.article-page {
    margin: 0 5%;
    max-width: 100%;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "›";
    margin: 0 .6em;
    /* 記号の左右の余白 */
    color: #777;
    /* 記号の色 */
}

.breadcrumb li {
    font-size: 0.8rem;
}

.thispage {
    border-bottom: #777 1px solid;
}

.article-page article {
    background-color: #FFF5F1;
    padding: 3%;
    margin: 3% 3% 5% 0;
    text-align: center;
}

.article-page img {
    width: 90%;
}

.article-page .column-category {
    margin-left: 5%;
    margin-top: 3%;
}

.textleft {
    text-align: left;
    width: 90%;
    margin: 0 auto;
}

.datetext {
    font-size: 0.7rem;
    margin-top: 5px;
}

.textleft h1 {
    font-size: 1.3rem;
    margin: 3% auto 1%;
}

.textleft p {
    font-size: .9rem;
}

.textleft h2 {
    font-size: 1rem;
    margin-top: 1rem;
}

.article-page .article01 img {
    width: 60%;
    object-fit: contain;
    margin: 3% 3% 5% 0;
}

.article-page .article01 {
    display: flex;
}

.article-page .mark1,
.article-page .mark2,
.article-page .mark3 {
    padding: 2px 8px;
}

.article01 .column-category {
    margin: 0;
}

.aside-text {
    margin-top: 3%;
}

aside h2 {
    font-size: 1.3rem;
    margin-top: 5%;
}

/* contactページ */

.main_contact {
    max-width: 100%;
    margin: 80px auto;
    text-align: center;
}

.contact_top {
    background-color: #FFEAE1;
    padding: 60px;
}

.contact-title {
    color: #f44336;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 1px solid #f44336;
    display: inline-block;
    margin-bottom: 5px;
}

.contact-subtitle {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.contact-form {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    margin: 10% auto;
    padding: 0 20px;
}

label {
    font-weight: bold;
    font-size: 14px;
}

.required {
    color: red;
    margin-left: 4px;
}

.main_contact input,
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

input:focus,
textarea:focus {
    border-color: #f44336;
    outline: none;
    box-shadow: 0 0 5px rgba(244, 67, 54, 0.3);
}

textarea {
    height: 180px;
    resize: vertical;
}

.submitbtn {
    background-color: #000;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    width: 160px;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s ease;
}

.submitbtn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.submitbtn:active {
    transform: translateY(0);
}

.error-message {
    color: red;
    font-size: 10px;
    margin-top: -25px;
    margin-bottom: 10px;
    display: block;
}

/* ページトップへ戻るボタン */
.page-top {
    border: hidden;
    border-radius: 50%;
    width: 120px;
    aspect-ratio: 1/1;
    position: fixed;
    right: 10px;
    bottom: 5%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    background-color: #fdfdd6;
}

.page-top img {
    width: 100px;
    margin-top: -15px;
    opacity: 1;
}

.hoverimg {
    position: absolute;
    right: -100%;
    bottom: 30%;
    transition: 0.5s;
}

.page-top:hover .topimg {
    opacity: 0;
}

.page-top:hover .hoverimg {
    position: absolute;
    right: 8%;
}

.page-top p {
    margin-top: -10px;
    font-weight: bold;
}

.is-active {
    opacity: 1;
    visibility: visible;
}

/* スクロールアニメーション */
.fuwa-left {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateX(-50%);
}

.fuwa-right {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateX(50%);
}

.fuwa {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(20px);
}

.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* レスポンシブ */

@media (max-width: 600px) {
    .contact_top {
        padding: 30px 15px;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-form {
        margin: 40px auto;
    }
}

@media (max-width: 768px) {

    header .logo,
    .header-nav,
    .header-right img,
    .firstview img {
        display: none;
    }

    header {
        display: block;
        height: 0;
    }

    .header-right {
        position: fixed;
        right: 0;
        top: 0;
        z-index: 1000;
    }

    .firstviewtext2 {
        margin-top: -5px;
    }

    .worktext2 p br {
        display: none;
    }

    .snscontent p {
        font-size: 0.9rem;
    }

    .aboutevent h2 {
        font-size: 1.2rem;
    }


    .firstview {
        background: url(./img/mobileimg.png) no-repeat center/cover;
        width: 100%;
        height: 57vh;
        padding: 80px 20px 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .firstviewtext {
        position: static;
        margin: 10px 0;
        margin-top: -50px;
        text-align: center;
    }

    .firstviewtext1 {
        font-size: 1.5rem;
        justify-content: center;
        color: #fff;
    }

    .firstviewtext2 {
        font-size: 1rem;
        margin-top: 10px;
        animation: fadeIn 2s ease-in-out forwards;
        color: #fff;
    }

    /* Aboutセクション */
    .about {
        height: auto;
        padding: 60px 20px;
    }

    .backtext {
        font-size: 3rem;
        padding-left: 0;
        text-align: center;
    }

    .enn3,
    .enn1,
    .enn5,
    .enn6 {
        display: none;
    }

    /* Mission */
    .mission,
    .works {
        text-align: center;
    }

    .backtext {
        text-align: left;
        padding-left: 10px;
    }

    .engtext {
        margin: 0 auto;
        display: inline-block;
        text-align: center;
    }

    .mission h2,
    .works h2 {
        margin: 0 auto;
        text-align: center;
    }

    .mission img {
        width: 90%;
    }

    .missioncontent {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }

    .mtext1 {
        padding: 0;
    }

    /* Works */
    .workcontent1,
    .workcontent2 {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px;
        left: 0;
        right: 0;
        margin: 30px;
    }

    .workcontent1 img {
        max-width: 90%;
        margin: 20px auto;
    }

    .workcontent2 img {
        max-width: 40%;
    }

    .worktext1,
    .worktext2 {
        margin: 20px;
        text-align: center;
    }

    .mobile-flex {
        display: flex;
        justify-content: space-around;
    }


    .mission br,
    .works .workcontent1 br {
        display: none;
    }

    /* Column & News */
    .columnslider,
    .newscontents {
        flex-direction: column;
        align-items: center;
        margin: 50px;
    }

    .columncard,
    .newscard {
        max-width: 90%;
        margin-bottom: 30px;
    }

    .columncard img,
    .newscard img {
        max-width: 100%;
    }


    /* .aboutページ */
    .aboutennesia,
    .abouthost {
        display: block;
        margin: 10% 5%;
        padding: 8% 5%;
        text-align: center;
    }

    .about-page img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .ennesia-text,
    .abouthost-text {
        text-align: center;
        margin: 20px 0;
    }

    .ennesia-text p br {
        display: none;
    }

    .ennesia-text .flexbox img {
        width: 45%;
    }

    .ennesia-text .flexbox {
        align-items: center;
        justify-content: center;
    }

    .ennesia-text .flexbox h1,
    .abouthost-text .flexbox h2 {
        margin-left: -5px;
        padding: 0;
        font-size: 1.5rem;
    }

    .abouthost .flexbox img {
        width: 20%;
    }

    .abouthost .flexbox {
        justify-content: center;
        align-items: center;
    }

    .abouthost-text p {
        text-align: left;
    }

    .mobile-none {
        display: none;
    }

    .abouthost .mobile-size {
        width: 60%;
    }

    .abouthost {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .abouthost-text .flexbox {
        flex-direction: row;
        margin-bottom: 2rem;
    }


    /* eventページ */
    .aboutevent,
    .eventditail,
    .sankasha-contents {
        margin: 5%;
        flex-direction: column;
        align-items: center;
    }

    .event-page h1 {
        font-size: 1.2rem;
        text-align: center;
    }

    .event-page .eventlogo,
    .event-page .leafimg {
        max-width: 120px;
        margin: 0;
        display: block;
    }

    .event-page .leafimg {
        width: 70px;
        padding-bottom: 18px;
        padding-left: -5px;
    }

    .event-explain1,
    .event-explain2,
    .event-explain3 {
        padding: 1rem;
        white-space: normal;
    }


    /* 説明文のマージン調整 */
    .event-page .event-explain {
        margin: 5%;
        font-size: 0.9rem;
    }

    /* aboutevent内の画像と吹き出し説明の調整 */
    .aboutevent .flexbox {
        flex-direction: column;
        align-items: center;
    }

    .aboutevent img {
        width: 70%;
        margin: 2rem auto 0;
        order: -1;
    }

    .event-explain1,
    .event-explain2,
    .event-explain3 {
        padding: 2rem 4rem;
        width: 100%;
        min-width: 300px;
        margin: 30px auto;
        background: none;
        background-color: #fff;
        border-radius: 30px;
        border: #fa9d32 2px solid;
    }

    .aboutevent h3 {
        font-size: 1rem;
        white-space: normal;
        text-align: center;
    }

    .event-explain1 ul li,
    .event-explain2 ul li,
    .event-explain3 ul li {
        font-size: 0.9rem;
    }

    /* eventditail セクション */
    .eventditail ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .eventditail ul li {
        width: 100%;
        max-width: 300px;
        aspect-ratio: unset;
    }

    .eventditail ul li p {
        font-size: 0.75rem;
        white-space: normal;
    }

    .fontsize {
        font-size: 0.85rem;
        margin: 1rem;
    }

    .textcenter {
        font-size: 1rem;
        text-align: center;
    }

    .sankabtn {
        width: 200px;
        text-align: center;
    }

    .contactbtn {
        width: 250px;
    }

    .eventcontact .flexbox {
        display: block;
    }

    /* sankasha セクション */
    .manvoice,
    .womanvoice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sankasha-contents p {
        font-size: 0.85rem;
        padding: 1.5rem;
        text-align: left;
    }


    .sankasha-contents img {
        width: 40%;
        margin: 1rem auto;
    }

    .agination {
        margin: 3rem;
    }

    .womanvoice {
        flex-direction: column-reverse;
    }

    /* columnページ */
    .column-page {
        margin: 10% auto;
    }

    .column-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin: 0 5%;
    }

    .column-page h1 {
        font-size: 1.2rem;
        text-align: left;
    }

    .search-form-3 {
        width: 60%;
        max-width: 100%;
        margin-right: 0;
    }

    .search-form-3 input {
        width: 100%;
        font-size: 1rem;
        height: 40px;
    }

    .search-form-3 button {
        width: 40px;
        height: 40px;
    }

    .recommend-article {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 5%;
    }

    .recommend-article h2 {
        writing-mode: horizontal-tb;
        margin: 3rem 0;
        font-size: 1.2rem;
    }

    .recommend-article img {
        width: 90%;
    }

    .re-article-text {
        font-size: 0.9rem;
        margin: 1rem;
        position: relative;
    }

    .re-article-text h3 {
        font-size: 1.1rem;
    }

    .nextbtn {
        position: absolute;
        right: 0;
        margin-top: 1rem;
        width: 100px;
    }

    .all-article a {
        max-width: 100%;
    }

    .article01 h4 {
        font-size: 0.9rem;
    }

    .article01 p {
        font-size: 0.75rem;
    }

    .enn9 {
        position: absolute;
        top: 6%;
        left: 35%;
        width: 50px;
        height: 50px;
    }

    .enn10 {
        position: absolute;
        top: 7%;
        left: 58%;
        width: 50px;
        height: 50px;
    }

    .enn11 {
        position: absolute;
        top: 5%;
        left: 55%;
        width: 50px;
        height: 50px;
    }

    .seemorebtn {
        width: 200px;
        font-size: 1rem;
        padding: 1rem;
        margin-top: 2rem;
    }

    .all-article {
        margin-top: 50px;
        background-color: #FFEAE1;
        padding: 5%;
        border-radius: 0px;
        overflow: hidden;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 2rem;
        -webkit-overflow-scrolling: touch;
    }

    .all-article a {
        flex: 0 0 auto;
        width: 80%;
        scroll-snap-align: start;
    }

    .article01 {
        background-color: #fff;
        border-radius: 15px;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin: 0 3%;
    }


    /* newsページ */

    .news-page article {
        display: block;
        text-align: center;
    }

    .news-page .article-text {
        text-align: left;
        padding: 0%;
    }

    /* articleページ */

    .article-page {
        margin: 8% 3%;
    }

    .breadcrumb li {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .article-page .flexbox {
        display: flex;
        flex-direction: column;
    }

    .article-page article {
        margin: 0 0 3% 0;
        padding: 4%;
        text-align: left;
    }

    .article-page article img {
        width: 100%;
        margin-bottom: 1rem;
    }

    .textleft {
        width: 100%;
        margin: 0;
    }

    aside {
        margin-top: 2rem;
    }

    .article-page .article01 img {
        width: 40%;
        margin: 0 1rem 0 0;
    }

    .article-page .article01 {
        flex-direction: row;
        align-items: center;
        margin-bottom: 1rem;
    }

    .article-page .mark1,
    .article-page .mark2,
    .article-page .mark3 {
        padding: 1px 6px;
        font-size: 0.8rem;
    }

    .search-form-3 {
        max-width: 100%;
        margin-right: 0;
        height: 40px;
    }

    .search-form-3 input {
        width: 100%;
        height: 40px;
    }

    .search-form-3 button {
        width: 40px;
        height: 40px;
    }

    .textleft h1 {
        font-size: 1.1rem;
    }

    .textleft h2 {
        font-size: 0.9rem;
    }

    .textleft p {
        font-size: 0.85rem;
    }

    /* footer */
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer ul {
        margin: 10px 0;
    }

    .footerlogo {
        max-width: 40%;
        margin: 20px 0;
    }

    .footersns {
        justify-content: center;
    }

    .page-top {
        display: none;
    }

}

@media (max-width: 600px) {
    .firstviewtext2 {
        margin-top: -5px;
    }

    .worktext2 p br {
        display: none;
    }

    .snscontent p {
        font-size: 0.9rem;
    }

    .aboutevent h2 {
        font-size: 1.2rem;
    }
}