@charset 'UTF-8';

/* GENERAL STYLING */
html {
    /* スムーズスクロール */
    scroll-behavior: smooth;
    text-align: center;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ff8095;
    border-radius: 5px;
}

body {
    font-family: sans-serif;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    color: #162A41;
    background-image: url(../images/dots1.jpg);
    opacity: 0.9;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

p {
    line-height: 1.7;
}

.flag {
    background-image: url(../images/flag_01.png);
    background-size: contain;
    padding-top: 7rem;
    color: transparent;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/* header */
#site-header {
    margin-top: 0%;
}

header .wrapper {
    background-color: rgba(173, 209, 239, 1);
    display: flex;
    height: 4.5rem;
    z-index: 1001;
    border-radius: 15px;
    position: fixed;
    width: 1200px;
}

header p {
    font-family: 'Yomogi', sans-serif;
    color: #fff;
    margin-top: 1.5rem;
}

ul {
    list-style-type: none;
}

li {
    padding-left: 20px;
}

.title {
    margin-top: 32px;
}

.logo {
    text-align: left;
    font-weight: bold;
    font-size: 2.7em;
    font-family: 'Yomogi', sans-serif;
    color: #fff;
    padding-left: 40px;
    line-height: 0;
}

/* navigation */
.nav ul {
    display: flex;
    text-align: center;
    margin-left: 500px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: .5s;
    font-family: 'Yomogi', sans-serif;
    font-size: 2rem;
    text-align: center;
}

.nav ul li a:hover {
    background-color: rgba(250, 210, 219, 1);
    color: #fff;
    border-radius: 10px;
    padding: 2px;
}

.item {
    display: block;
    padding: 1rem;
}

/* nature */
#nature {
    width: 100%;
    padding-top: 4rem;
    text-align: center;
    height: 680px;
}

.nature_text {
    color: #162A41;
    text-align: left;

}

.nature_img {
    margin-left: 50%;
    margin-top: 80px;
    filter: saturate(200%) sepia(5%);
    display: block;
    /* ブロックレベル表示に */
    width: 520px;
    height: 520px;
    background: white;
    /* 背景色を白 */
    padding: 20px 20px 70px;
    /*上 左右 下のパディング */
    -moz-box-shadow: 0 4px 10px #333;
    /* 影を落とす */
    -webkit-box-shadow: 0 4px 10px #333;
    box-shadow: 0 4px 10px #333;
    -webkit-transform: rotate(5deg);
    /* 回転 */
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(52deg);
    transform: rotate(5deg);
}

.nature_text h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 500;
    font-family: 'Yomogi', sans-serif;
    margin-bottom: 5rem;
    width: 550px;
    top: 55%;
    left: 35%;
    text-align: center;
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 8rem 2rem;
    background-color: rgba(250, 210, 219, 0.953);
    border-radius: 53% 47% 77% 23% / 32% 71% 29% 68%;
}

#nature h4 {
    margin-top: 40px;
    color: #fff;
    max-width: 400px;
    max-height: 250px;
    font-family: 'Yomogi', sans-serif;
    background-color: rgba(111, 188, 133, 0.768);
    border-radius: 62% 38% 85% 15% / 52% 72% 28% 48%;
    padding: 60px 20px 60px 20px;
    margin-left: 15%;
    position: absolute;
    z-index: 1000;
    animation: fuwafuwa_2 5s ease 0s infinite;
}

@keyframes fuwafuwa_2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -10%);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* about */
#about {
    width: 100%;
    margin: 1rem 0;
    padding: 6rem 0;
}

.about-text {
    padding: 2rem 2rem;
    margin: 0 2rem;
    background-color: #ffffff91;
    border-radius: 30px;

}

#about h2 {
    font-family: 'Yomogi', sans-serif;
    font-weight: 300;
}

#about h3 {
    font-family: 'Yomogi', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-align: left;
}

#about ul {
    padding-left: 30px;
}

#about ul li {
    line-height: 1.7;
    text-align: left;
}

ul.cp_list {
    padding: 0.5em;
    list-style-type: none;
}

ul.cp_list li {
    position: relative;
    padding: 0.5em 1em 0.5em 2.3em;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(239, 119, 71, 1);
}

ul.cp_list li:after,
ul.cp_list li:before {
    content: '';
    position: absolute;
    border-radius: 50%;
}

ul.cp_list li:before {
    top: 50%;
    left: 0.2em;
    width: 17px;
    height: 17px;
    background: rgba(239, 119, 71, 1);
    transform: translateY(-50%);
}

ul.cp_list li:after {
    top: 1.1em;
    left: 0.7em;
    width: 14px;
    height: 14px;
    background: rgba(239, 119, 71, 0.5);
}

.slide-container {
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
    display: flex;
    animation: slide-flow 20s infinite linear 1s both;
}

.slide {
    width: 300px;
    object-fit: cover;
}

@keyframes slide-flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.tuutyo00 {
    width: 80%;
}

.howto {
    margin-top: 20px;
    width: 1000px;
    text-align: center;
    border-radius: 20px;
}

.stepbar {
    margin: 0 auto;
    width: 80%;
    text-align: left;
    font-family: 'Yomogi', sans-serif;
}

.stepbar .stepbarwrap {
    margin: 2em 0;
    position: relative;
}

.stepbar .stepbarwrap .steptitle {
    display: inline-flex;
    align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
    display: inline-block;
    width: 3em;
    height: 3em;
    content: "";
    border-radius: 50%;
    background-color: rgba(239, 119, 71, 1);
    color: #fff;
    text-align: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle span {
    display: inline-block;
    line-height: 1.2em;
    font-size: 0.8em;
    font-weight: bold;
    position: relative;
    top: 0.9em;
}

.stepbar .stepbarwrap .steptitle .title {
    margin: 0.5em;
    font-weight: bold;
    font-size: 1.2em;
}

.stepbar .stepbarwrap .steptxt {
    padding-left: 3.5em;
}

.stepbar .stepbarwrap .steptxt .txt {
    font-size: 0.9em;
}

.stepbar .stepbarwrap .stepline {
    width: 1px;
    height: calc(100% + 1em);
    background-color: rgba(239, 119, 71, 1);
    position: absolute;
    top: 1em;
    left: 1.5em;
    z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
    display: none;
}

/* member */
#member {
    width: 100%;
    padding: 6rem 0;
    margin: 1rem 0;
}

.member_text {
    padding: 2rem 1rem;
    margin: 0 1rem;
    background-color: #ffffff91;
    border-radius: 30px;
}

#member h2 {
    font-family: 'Yomogi', sans-serif;
    font-weight: 300;
}

#member p {
    text-align: left;
    margin: 0 15px 20px 15px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    font-family: 'Yomogi', sans-serif;
    border-radius: 15px;
}

th,
td {
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    vertical-align: middle;
}

th {
    text-align: center;
    height: 60px;
    background-color: rgba(250, 210, 219, 1);
    border-radius: 10px;
}

td {
    height: 80px;
    background-color: rgb(251, 230, 234);
    border-radius: 10px;
}

.icon {
    width: 5rem;
    text-align: center;
}

.name {
    width: 6rem;
    text-align: center;
}

.left {
    text-align: left;
    width: 180px;
}

.box_scroll {
    overflow: scroll;
    height: 800px;
}

.fixed01,
.fixed02 {
    position: sticky;
    top: 0;
    left: 0;

    &:before {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        width: 100%;
        height: 100%;
        border: 1px solid #fff;
    }
}

.fixed01 {
    z-index: 2;
}

.fixed02 {
    z-index: 1;
}

/* footer */
.footer {
    margin: 2rem 2rem 20px;
    padding: 1.75rem 1.5rem 1rem;
    background-color: #ffffff91;
    border-radius: 30px;
}

.footer a {
    text-decoration: none;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    color: #162A41;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    background-color: rgba(173, 209, 239, 0.2);
    transform: translateY(-2px);
}

.footer-social-label {
    font-family: 'Yomogi', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
}

.footer-social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-social-line-image {
    display: block;
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.footer-copy {
    margin: 1rem 0 0;
    padding-top: 0.75rem;
    text-align: center;
    font-size: .875rem;
    border-top: 1px solid rgba(22, 42, 65, 0.12);
}

/* yuimawasu floating button */
.fab-yuimawasu {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1100;
    font-family: 'Yomogi', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    background-color: rgba(239, 119, 71, 1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(239, 119, 71, 0.5);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.fab-yuimawasu:hover {
    background-color: rgba(210, 90, 45, 1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(239, 119, 71, 0.6);
}

/* yuimawasu CTA */
.yuimawasu-cta {
    margin: 3rem auto 1rem;
    text-align: center;
}

.yuimawasu-cta p {
    font-family: 'Yomogi', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

.yuimawasu-btn {
    display: inline-block;
    font-family: 'Yomogi', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    background-color: rgba(239, 119, 71, 1);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(239, 119, 71, 0.4);
}

.yuimawasu-btn:hover {
    background-color: rgba(210, 90, 45, 1);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.yuimawasu-banner-link {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(239, 119, 71, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.yuimawasu-banner-link:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(239, 119, 71, 0.4);
}

.yuimawasu-banner-link img {
    width: 100%;
    height: auto;
    display: block;
}

/* partner links section */
.partner-links {
    margin: 2rem 2rem 3rem;
    padding: 2rem;
    background-color: #ffffff91;
    border-radius: 30px;
    text-align: center;
}

.partner-links h2 {
    font-family: 'Yomogi', sans-serif;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.partner-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.partner-link-item {
    display: block;
    width: 360px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.partner-link-item:hover {
    opacity: 0.88;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.partner-link-item img {
    width: 100%;
    display: block;
}

/* MOBILE SIZE */

@media (max-width: 700px) {

    body {
        margin-top: -20px;
    }

    /* header */
    header .wrapper {
        height: 70px;
        width: 700px;
        border-radius: 0;
        margin-top: 0;
    }

    .title {
        width: 190px;
        margin-top: 20px;
        margin-left: 10px;
    }

    .logo {
        font-size: 25px;
        margin-left: 0px;
        padding-left: 0px;
        margin-top: 10px;
        text-align: left;
        line-height: 20px;
    }

    .nav ul {
        margin-left: 18px;
        margin-top: 5px;
        width: 300px;
    }

    .nav ul li a {
        font-size: 17px;
    }

    .item {
        padding: 1rem 13px 1rem 0;
    }

    /* nature */
    #nature {
        margin-top: 20px;
        height: 650px;
    }

    .nature_img {
        max-height: 350px;
        max-width: 90%;
        margin-left: 7%;
        left: -30px;
        margin-top: 90px;
    }

    .nature_text h1 {
        font-size: 30px;
        padding: 30px 6px;
        width: 90%;
        left: 190px;
        top: 550px;
        margin-bottom: 0;
    }

    #nature h4 {
        margin-left: 20%;
        padding: 30px 20px;

    }

    /* movie */
    .movie {
        max-width: 90%;
    }

    /* about */
    #about {
        background-size: 100%;
        padding: 6rem 0;
    }

    .about-text {
        padding: 1rem 1rem;
        margin: 0 1rem;
    }

    #about h2 {
        font-size: 1.5rem;
    }

    #about h3 {
        font-size: 1.2rem;
    }

    #about p {
        margin: 0 1rem;
        line-height: 1.2;
    }

    #about .tuutyo {
        margin-left: 0;
        background-size: 100%;
        height: 280px;
    }

    .howto {
        max-width: 90%;
    }

    /* member */
    #member {
        padding: 6rem 0;
        max-height: 1200px;
    }

    table {
        width: 1200px;
    }

    /* footer */
    .footer {
        margin: 2rem 1rem 1rem;
        padding: 1.25rem 1rem 0.875rem;
    }

    .footer-social {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-social-link {
        width: 100%;
        justify-content: center;
    }

    .footer-social-label {
        font-size: 1.2rem;
    }

    .footer-copy {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

}
