@charset "utf-8";

/* Common Styleここから */

body {
    margin: 0;
    padding: 0;
    font-size: clamp(0.8rem, 1.2vw, 1.6rem);
    line-height: 1.8;
    font-feature-settings: 'palt';
    font-variant-ligatures: common-ligatures contextual;
    font-kerning: normal;
    letter-spacing: 0.06em;
    background-color: #fffaf0;
    font-family: sans-serif;
}
img {
    max-width: 100%;
}
.TopPage_Body {
    animation: fadeInBody 2s ease-in-out;
}
.Blog_Body {
    animation: fadeInBody 2s ease-in-out;
}
@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
h1,h2,h3,h4,h5,h6,p,nav,ul,li,figure,figcaption,dl,dt,dd,a {
    margin: 0;
    padding: 0;
}
#PageTop_btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    border-radius: 50%;
    background-color: #9bbe59;
    border: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    outline: none;
    appearance: 0;
    transition: all 0.3s ease;
    color: #fff;
    z-index: 10;
    opacity: 0;
}
footer {
    padding-top: 20%;
}
address {
    width: 900px;
    max-width: 94%;
    margin: auto;
    border: 1px solid #000;
    font-style: normal;
    background-color: #fff;
}
address p {
    text-align: center;
}
address figure {
    width: 100%;
    margin: auto;
}
address figcaption {
    padding-right: 1rem;
}
address img {
    max-width: 30%;
    padding: 0 1rem 0 1rem;
}
.AddressFlexBox {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex: 0 0 100%;
    padding: 1rem 0 1rem 0;
}
.AddressFlexBox p {
    text-align: left;
}
.Author {
    padding-top: 1rem;
}
.AuthorName {
    border-bottom: 2px solid gray;
}
footer article {
    padding-top: 3em;
}
#Copy_Btn {
    display: block;
    margin: auto;
    padding: 0 2rem 0 2rem;
    line-height: 3;
    font-weight: bold;
    font-family: sans-serif;
    appearance: 0;
    outline: none;
    cursor: pointer;
    border: 2px solid #2589d0;
    border-radius: 2px;
    color: #2589d0;
    background-color: #fff;
    position: relative;
}
#Copy_Btn::after {
    position: absolute;
    content: '';
    left: -2px;
    top: -2px;
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-color: #fffaf0 #fffaf0 #2589d0;
    box-shadow: 4px 4px 4px rgba( 0, 0, 0, 0.2);
}
.FooterInformation {
    display: flex;
    gap: 4%;
    justify-content: center;
    align-items: center;
    padding-top: 4%;
}
.FooterInformation a {
    text-decoration: none;
    color: #000;
}
footer small {
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #000;
    margin-top: 2rem;
    font-family: serif;
}

/* Common Styleここまで */

/* Top Page Styleここから */

.TopPage_Header {
    text-align: center;
}
.TopPage_Title {
    width: 100%;
    height: 100vh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: serif;
}
.TopPage_Main_Article {
    opacity: 0;
    transform: translateY( 100px);
    transition: opacity 3s, transform 3s;
}
.TopPage_Main_Article.is-visible {
    opacity: 1;
    transform: none;
}
@keyframes fadeinTopPage_Main_Article {
    to {
        opacity: 1;
        transform: none;
    }
}
#Zoom_Bg {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba( 0, 0, 0, 0.8);
}
#Zoom_Image {
    border: 5px solid #fff;
}
.Zoom_Animation {
    max-width: 90%;
    max-height: 90%;
    animation: Zoom_Animation 0.5s ease-out;
}
@keyframes Zoom_Animation {
    from {
        transform: scale( 0);
    }
}
.TopPage_Main h2 {
    width: 100%;
    padding-top: 4%;
    text-align: center;
    border-bottom: 1px solid #808080;
    font-family: serif;
}
.TopPage_Main dl {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
}
.TopPage_Main dt{
    padding-top: 1rem;
}
.TopPage_Main dd{
    padding: 1rem 0 1rem 0;
    text-align: center;
}
.TopPage_Main a {
    text-decoration: none;
    background-color: #fff;
    color: #000;
}
.TopPage_Main_Article {
    width: 150px;
    height: 300px;
    padding: 1rem;
    font-size: clamp(0.8rem, 1vw, 1.4rem);
    border: 1px solid #808080 ;
    background-color: #fff;
}
#Align_Left {
    text-align: left;
}
.TopPage_Footer {
    padding-top: 10%;
}

/* Top Page Styleここまで */

/* Blog Styleここから */

.Blog_Header {
    display: flex;
    align-items: center;
    width: 1040px;
    max-width: 94%;
    margin: auto;
}
.Blog_Header nav {
    margin-left: auto;
    padding-right: 0.5rem;
}
.SiteTitle {
    padding-top: 0.2em;
    font-size: clamp( 1rem, 1.4vw, 2rem);
    font-weight: bold;
    font-family: serif;
}
.SiteTitle a {
    text-decoration: none;
    color: #000;
}
.Breadcrumb_List {
    display: flex;
    align-items: center;
    border-radius: 2px;
    overflow: hidden;
    font-family: sans-serif;
 }
.Breadcrumb_List li {
    display: flex;
    list-style: none;
    background-color: #2589d0;
}
.Breadcrumb_List img {
    display: block;
    height: 1.5em;
}
.Breadcrumb_List a {
    text-decoration: none;
    color: #000;
}
.Breadcrumb_List_item1 {
    height: 1.7em;
    background-color: #2589d0;
    padding: 0 0.5em 0 1em;
}
.Breadcrumb_List_item1 button {
    cursor: pointer;
}
.Breadcrumb_List_item2 {
    height: 1.7em;
    padding-right: 0.5em;
}
.Breadcrumb_List_item2::before {
    font-size: 1em;
    font-weight: bold;
    content: "〉";
    color: #fffaf0;
}
.Breadcrumb_List button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2em;
    margin: auto;
    font-size: clamp( 0.6rem, 1vw, 1.4rem);
    font-weight: bold;
    border: none;
    outline: none;
    appearance: none; 
    background-color: #2589d0;
    color: #fff;
}
.Breadcrumb_List button a {
    color: #fff;
}
.Blog_Main {
    width: 100%;
    padding-bottom: 10%;
}
.PublicationDate {
    width: 1040px;
    max-width: 94%;
    margin: auto;
    text-align: right;
}
.Blog_Main_TopImage {
    display: block;
    margin: auto;
}
.Blog_Draft {
    width: 1040px;
    max-width: 94%;
    margin: auto;
    border-radius: 5px;
    background-color: #fff;
}
.Blog_Draft h1 {
    padding: 1rem 0 1rem 0;
    font-size: clamp( 1.6rem, 2.4vw, 3rem);
    border-bottom: 1px solid #808080;
    text-align: center;
    font-family: serif;
}
.Blog_Draft h2 {
    padding: 3rem 0 1rem 0;
    font-size: clamp( 1.4rem, 2.2vw, 2.8rem);
    border-bottom: 1px solid #808080;
    text-align: center;
    font-family: serif;
}
.Blog_Draft p {
    font-size: clamp( 1.2rem, 1.6vw, 2rem);
    padding-top: 1rem;
}
.Blog_Draft li {
    font-size: clamp( 1.2rem, 1.6vw, 2rem);
}
.Blog_Draft a {
    text-decoration: underline #000 1px;
    color: #000;
}
.Blog_Footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-bottom:3em;
}
.Blog_Footer ul a {
    text-decoration: none;
    color: #000;
}
/* Blog Styleここまで */

/* Contact Styleここから */

.Contact_Body {
    font-family: sans-serif;
}
.Contact_Header {
    display: flex;
    align-items: center;
    width: 1040px;
    max-width: 94%;
    margin: auto;
    padding-bottom: 1rem;
}
.Contact_Header nav {
    margin-left: auto;
}
.Contact_Title {
    font-size: 1.2rem;
    line-height: 1.6rem;
}
.Contact_Title span {
    border-bottom: 1px solid #808080;
    font-size: 1.4rem;
}
.ContactBreadcrumb_List {
    display: flex;
    align-items: center;
    border-radius: 2px;
    overflow: hidden;
    font-family: sans-serif;
 }
.ContactBreadcrumb_List li {
    display: flex;
    list-style: none;
    background-color: #2589d0;
}
.ContactBreadcrumb_List img {
    display: block;
    height: 1.5em;
}
.ContactBreadcrumb_List a {
    text-decoration: none;
    color: #000;
}
.ContactBreadcrumb_List_item1 {
    display: block;
    height: 1.7em;
    background-color: #2589d0;
    padding: 0 0.5em 0 1em;
}
.ContactBreadcrumb_List button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 2em;
    margin: auto;
    font-size: clamp( 0.6rem, 1vw, 1.4rem);
    font-weight: bold;
    border: none;
    outline: none;
    appearance: none;
    cursor: pointer;
    background-color: #2589d0;
    color: #fff;
}
.ContactBreadcrumb_List button a {
    color: #fff;
}
.Contact_Main {
    width: 1040px;
    max-width: 94%;
    margin: auto;
    background-color: #fff;
    border: 2px solid #808080;
}
.ContactNotes {
    padding: 2rem 0 2rem 0;
    text-align: center;
}
.Contact_Main dl {
    width: 640px;
    max-width: 94%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: auto;
}
.Contact_Main dt::before {
    content: "●";
    color: #000;
    padding-right: 0.2rem;
}
.Contact_Main dd {
    width: 100%;
}
.Contact_Main input {
    width: 90%;
    line-height: 2;
    margin-bottom: 2rem;
    padding: 0 0.5rem 0 0.5rem;
    border: 1px solid #808080;
}
.Contact_Main textarea {
    width: 90%;
    height: 140px;
    margin: 0;
    padding: 0 0.5rem 0 0.5rem;
    line-height: 2;
    border: 1px solid #808080;
}
.Submit_Btn {
    padding-top: 1rem;
    text-align: center;
}
.Submit_Btn input {
    width: 100px;
    appearance: none;
    outline: 0;
    border: 0;
    border-radius: 5px;
    background-color: #008000;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}
.Submit_Btn input:hover {
    background-color: #ff4500;
}
.Confirm_Dl {
    display: block;
    padding-bottom: 2rem;
}
.Confirm_Dl dd::before {
    content: "：";
    padding-right: 1rem;
}
.SubmitMakeSure {
    padding-bottom: 1rem;
}
.Complete_H2 {
    padding: 2rem 0 1rem 0;
    text-align: center;
}
.Complete_P {
    text-align: center;
    padding-bottom: 2rem;
}

/* Contact Styleここまで */

/* Privacy Policy Styleここから */

.PrivacyPolicy_Body {
    font-family: sans-serif;
}
.PrivacyPolicy_Header {
    display: flex;
    align-items: center;
    width: 1040px;
    max-width: 94%;
    margin: auto;
    padding-bottom: 1rem;
}
.PrivacyPolicy_Header nav {
    margin-left: auto;
}
.PrivacyPolicy_Title {
    font-size: 1.2rem;
    line-height: 1.6rem;
}
.PrivacyPolicy_Header span {
    border-bottom: 1px solid #808080;
    font-size: 1.4rem;
}
.PrivacyPolicyBreadcrumb_List {
    display: flex;
    align-items: center;
    border-radius: 2px;
    overflow: hidden;
    font-family: sans-serif;
 }
.PrivacyPolicyBreadcrumb_List li {
    display: flex;
    list-style: none;
    background-color: #2589d0;

}
.PrivacyPolicyBreadcrumb_List img {
    display: block;
    height: 1.5em;
}
.PrivacyPolicyBreadcrumb_List a {
    text-decoration: none;
    color: #000;
}
.PrivacyPolicyBreadcrumb_List_item1 {
    display: block;
    height: 1.7em;
    background-color: #2589d0;
}
.PrivacyPolicyBreadcrumb_List button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 2em;
    margin: auto;
    font-size: clamp( 0.6rem, 1vw, 1.4rem);
    font-weight: bold;
    border: none;
    outline: none;
    appearance: none; 
    cursor: pointer;
    background-color: #2589d0;
    color: #fff;
}
.PrivacyPolicyBreadcrumb_List button a {
    color: #fff;
}
.PrivacyPolicy_Main {
    width: 1040px;
    max-width: 94%;
    margin: auto;
    background-color: #fff;
    border: 2px solid #808080;
}
.PrivacyPolicy_Theme {
    padding: 2rem 0 2rem 0;
    text-align: center;
    font-size: clamp( 1rem, 2vw, 3rem);
}
.PrivacyPolicy_Main dl {
    max-width: 94%;
    margin: auto;
}
.PrivacyPolicy_Main h1 {
    padding: 1rem 0 1rem 0;
    text-align: center;
    font-size: clamp( 1rem, 2vw, 3rem);
}
.PrivacyPolicy_Main h2 {
    padding: 1rem 0 1rem 0;
    text-align: center;
    font-size: clamp( 1rem, 2vw, 3rem);
}
.PrivacyPolicy_Main li {
    margin-left: 1em;
    list-style: none;
    text-indent: -1em;
}
.PrivacyPolicy_Main a {
    font-weight: bold;
    color: #ff0000;
}
.RenewalDate {
    padding: 0 1rem 1rem 0;
    text-align: right;
}
/* Media Queryここから */

@media screen and ( prefers-color-scheme: dark) {
    body {
        background-color: #000;
        border-color: #fff;
        color: #aaa;
    }
    .TopPage_Main_Article {
        background-color: #000;
    }
    .TopPage_Main_Article dt {
        color: #aaa;
    }
    .TopPage_Main_Article dd {
        color: #aaa;
    }
    .SiteTitle a {
        color: #aaa;
    }
    #TopPage_Main a {
        color: #aaa;
    }
    .Breadcrumb_List a {
        color: #aaa;
    }
    .Breadcrumb_List_item2::before {
        color: #fff;
    }
    .Breadcrumb_List button {
        border-color: #fff;
        background-color: #2589d0;
        color: #fff;
    }
    .TopPage_Footer {
        background-color: #000;
    }
    .TopPage_Footer address {
        border-color: #aaa;
        background-color: #000;
    }
    #Copy_Btn {
        background-color: #000;
    }
    #Copy_Btn::after {
        border-color: #000 #000 #2589d0;
    }
    .FooterInformation {
        color: #aaa;
    }
    .FooterInformation a {
        color: #aaa;
    }
    footer small {
        border-color: #aaa;
    }
    .Blog_Body {
        background-color: #000011;
    }
    .Blog_Draft {
        background-color: #000;
    }
    .Blog_Draft a {
        text-decoration: underline #aaa 1px;
        color: #aaa;
    }
    .Blog_Footer {
        background-color: #000011;
    }
    .Blog_Footer ul {
        color: #aaa;
    }
    .Blog_Footer ul a {
        color: #aaa;
    }
    .Blog_Footer address {
        background-color: #000;
        border-color: #aaa;
    }
    .Contact_Body {
        background: #000011;
    }
    .Contact_Header {
        margin: auto;
    }
    .Contact_Main {
        background-color: #000;
    }
    .Contact_Main dt::before {
        color: #aaa;
    }
    .Contact_Main input,textarea {
        background-color: #000;
        border: 1px solid #aaa;
        color: #aaa;
    }
    .Submit_Btn input {
        background-color: #000011;
    }
    .PrivacyPolicy_Body {
        background-color: #000011;
    }
    .PrivacyPolicy_Main {
        background-color: #000;
        color: #aaa;
    }
    .PrivacyPolicy_Footer {
        background-color: #000011;
    }
}