@charset "utf-8";
/****************
default
****************/
/*暫定設定*/
body, p{
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-size: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.03em;
    font-weight: 500;
}
main {
    min-height: 60svh;
    padding-bottom: 160px;
}

/** header **/
.heder__inner {
    padding: 24px 35px 24px 10px;
    max-width: 1100px;
    width: 90%;
    margin: auto;
}
.icon {
    margin-right: 8px;
}
.header__contact a:hover {
    text-decoration: none;
}
/** global_nav **/
.header_nav__wrap:before {
    content: "";
    background: #990202;
    height: 10px;
    width: 100%;
    position: absolute;
}
.global_nav {
    padding: 26px 0 16px;
    width: 95%;
    max-width: 1100px;
    position: relative;
    margin: auto;
}
.global_nav ul {
    width: 100%;
}
.global_nav a, .footer_nav a {
    color: #fff;
}
.global_nav a:hover, .footer_nav a:hover, a.be_here, .detail_main__visual__caption a:hover {
    color: #ffd04a;
    text-decoration: none;
}
.pearent_nav {
    font-size: 1.2rem;
    padding-left: 15px;
    padding-top: 4px;
    width: calc(100% / 5);
    line-height: 1;
    position: relative;
}
.pearent_nav:before, .pearent_nav:last-child:after {
    content: "";
    height: 100%;
    width: 1px;
    background: #8d8d8d;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.pearent_nav:before {
    left: 0;
}
.pearent_nav:last-child:after {
    right: 0;
}
.child_nav {
    padding-left: 4px;
}
.child_nav li {
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding-top: 8px;
}
.child_nav li:before {
    content: "";
    color: #fff;
    font-size: 10px;
    margin-right: 8px;
    width: 7px;
    height: 1px;
    background: #fff;
}
.header_nav__wrap.is_top {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
}
.en_nav {
    position: relative;
    width: calc(100% / 5);
    text-align: center;
}
.en_nav:before, .en_nav:last-child:after {
    content: "";
    height: 98%;
    width: 1px;
    background: #8d8d8d;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.en_nav:before {left: 0;}
.en_nav:last-child:after {right: 0;}
/** sp nav **/
.sp_nav {
    height: 100%;
    padding: 100px 3% 50px;
    overflow-y: scroll;
}
.sp_nav__wrap {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px dotted #ddd;
}
.sp_pearent_nav {
    width: calc(100% / 2);
    padding: 3%;
    border-bottom: 1px dotted #ddd;
    font-size: 1.2rem;
}
.sp_pearent_nav:nth-child(even) {
    border-left: 1px dotted #ddd;
}
.sp_child_nav {
    font-size: 1rem;
}
.sp_en_nav__wrap {
    font-size: 1.3rem;
}
.sp_child_nav li {
    position: relative;
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding-left: 14px;
}
.sp_child_nav li:before {
    content: "";
    font-size: 10px;
    margin-right: 8px;
    width: 7px;
    height: 1px;
    background: #333;
    position: absolute;
    left: 3px;
}
.sp__contact {
    font-size: 1.2rem;
}
.sp_sns {
    gap: 30px;
}
.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity .5s;
}
.overlay.-active {
    width: 100%;
    height: 100%;
    opacity: 1;
}
.humberger {
    display: none;
}
.humberger {
    height: 60px;
    position: fixed;
    z-index: 100;
    width: 60px;
    background: none;
    border: none;
    cursor: pointer;
    top: 3%;
    right: 2%;
    background: #fff;
}
.humberger.-active .humberger__line {
    background-color: transparent;
}
.humberger.-active .humberger__line::before {
    top: 0;
    transform: rotate(45deg);
}
.humberger.-active .humberger__line::after {
    top: 0;
    transform: rotate(-45deg);
}
.humberger.-active .humberger__text::before {
    content: '閉じる';
}
.humberger.-active .humberger__text:lang(en)::before {
    content: 'Close';
}
.humberger__line {
    display: block;
    height: 3px;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    background-color: #141414;
    transition: 0.4s;
}
.humberger__line:before,
.humberger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #141414;
    transition: inherit;
}
.humberger__line:before {
    top: -10px;
}
.humberger__line:after {
    top: 10px;
}
.humberger__text {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.humberger__text::before {
    content: "メニュー";
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Lora';
}
.humberger__text:lang(en)::before {
    content: "menu";
}
.header__nav-area {
    position: fixed;
    top: -100%;
    z-index: 90;
    height: 100vh;
    width: 100%;
    visibility: hidden;
    transition: 0.4s;
    background: #fff;
}
.header__nav-area.-active {
    top: 0;
    visibility: visible;
}
#page_top {
    position: fixed;
    bottom: 2%;
    right: 2%;
}
#page_top a {
    background: #e6e6e6;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: inline-block;
}
#page_top a:after {
    content: "";
    position: absolute;
    left: 38%;
    top: 38%;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    box-sizing: border-box;
    border-top: 2px solid;
    border-left: 2px solid;
}
#page_top a:hover {
    background-color: #990202;
    color: #fff;
    text-decoration: none;
}
/** footer **/
.footer__inner {
    width: 95%;
    max-width: 1100px;
    padding-top: 30px;
}
.footer__bottom {
    column-gap: 70px;
    row-gap: 20px;
}
.footer__add {
    line-height: 1.5;
    width: fit-content;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}
.footer__add p {
    line-height: 1;
    margin-bottom: 16px;
}
.footer_nav {
    padding-top: 18px;
}
.footer__nav a, .lang_change a {
    color: #fff;
}
.footer_sitename {
    display: block;
    font-size: 2rem;
}
.footer_kana_name {
    padding-left: 23px;
}
.footer_name_head {
    padding-right: 23px;
}
.footer_kana_name:before, .footer_name_head:after {
    content: "";
    width: 7px;
    height: .02rem;
    background: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.footer_kana_name:before {
    left: 8px;
}
.footer_name_head:after {
    right: 8px;
}
.footer__nav ul {
    width: 100%;
}
.footer_child_nav li {
    padding-left: 12%;
    font-size: 1rem;
    margin-top: 4px;
}
.footer_pearent_nav {
    font-size: 1.1rem;
}
.footer_child_nav {
    margin-bottom: 8px;
}
.logo_bg_w {
    background: #fff;
    padding: 8px 16px;
    border-radius: 4px;
}
.logo_bg_w:not(:first-child) {
    margin-top: 8px;
}
.logo_bg_w img {
    margin: auto;
}
.copyright {
    padding: 16px;
}
.lang_change {
    margin-bottom: 10px;
}
/** video **/
.video {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    height: auto;
}
/** top_section **/
.content__section {
    width: min(1000px, 90%);
    margin-inline: auto;
    gap: 11%;
}
.content__section + .content__section {
    margin-top: 190px;
}
.content__section.mt--01 {
    margin-top: 100px;
}
.content__section.mt--lll {
    margin-top: 80px;
}
.box--content {
    border: 4px double #a1a1a1;
    padding: 2%;
}
.section__title__wrap {
    width: 91px;
    height: fit-content;
    justify-content: flex-end;
}
.section__title {
    border-right: 1px solid;
    margin-right: 16px;
    padding: 8px 16px 8px 0;
    line-height: 1;
    order: 1;
}
.top_section__subtitle {
    font-size: 1.3rem;
    padding: 8px 0 8px;
    line-height: 1;
}
.content__section__text {
    flex: 1;
}
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition:all 1500ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
.tfadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition:all 1500ms;
}
.tfadein.tscrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/** top_news **/
.top_news__wrap {
    font-size: 1rem;
}
.top_news__wrap .dl__wrap {
    padding: 16px 0;
}
.top_news__wrap .dl__wrap:last-child {
    padding-bottom: 0;
}
.top_news__wrap dt, .list_content {
    margin-left: 6px;
}
.top_news__wrap dd a {
    text-decoration: underline;
    color: #990202;
}
.top_news__wrap .dl__wrap:not(:first-child) {
    padding: 16px 0;
}
.top_news__wrap .dl__wrap:not(:last-child) {
    border-bottom: 1px dotted;
}
.top_news__wrap .dl__wrap:last-child {
    padding-bottom: 0;
}
.top_news__wrap h3 {
    font-weight: bold;
    position: relative;
    background: #ddd;
    padding: 8px 16px;
    font-size: 1.3rem;
}
.top_news__wrap h3:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px #c1c1c1;
}
.top_news__wrap dd h3 a {
    text-decoration: none;
    color: initial;
    display: flex;
    align-items: center;
    gap: 16px;
}
.top_news__wrap h3 a:after {
    content: "";
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    box-sizing: border-box;
    border-top: 2px solid;
    border-right: 2px solid;
    transition: .5s;
}
.top_news__wrap h3 a:hover:after{
    transition: .5s;
}
.top_news__wrap h3 a:hover:after{
    right: 6px;
}
.top_news__wrap dd h3 a:hover {
    text-decoration: underline;
    color: #990202;
}




/** detail **/
.detail_title__wrap {
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    max-width: 1100px;
    width: 95%;
}
.detail_main__visual {
    max-height: 400px;
    overflow: hidden;
}
.detail_main__visual figure img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.positon_top img {
    object-position: top;
}
.positon_bottom img {
    object-position: bottom;
}
.detail_title {
    font-size: 3rem;
    text-shadow: 1px 1px 4px #000;
}
.detail_subtitle {
    font-size: 1.2rem;
}
.section__title-h3 {
    border-bottom: 1px solid;
    padding: 0 8px 8px;
}
.section__title-h4 {
    position: relative;
}
.section__title-h4:after {
    width: 30px;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: #414141;
}
.section__title-h3__wrap {
    width: fit-content;
}
.detail_main__visual__caption {
    bottom: 5%;
    left: 47%;
    max-width: 1100px;
    width: 95%;
    text-align: right;
    transform: translateX(-50%);
}
.detail_main__visual__caption a {
    padding-right: 18px;
}
.content__section__btn {
    width: fit-content;
    margin-inline: auto;
}
.content__section__btn_list {
    width: fit-content;
}
.content__section__img img {
    margin: auto;
}
.right--img {
    order: 2;
}
.youtube_link {
    aspect-ratio: 16 / 9;
    max-width: 800px;
    margin: 32px auto;
}
.youtube_link iframe {
    width: 100%;
    height: 100%;
}
 /*** detailpage textarea ***/
.content__section__text h3, .content__section h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    border-bottom: 1px solid;
    width: fit-content;
}
.content__section * + table,
.content__section table + *,
.content__section ul + *,
.content__section * + ul,
.content__section__text * + table,
.content__section__text table + *,
.content__section__text ul + *,
.content__section__text * + ul,
.content__section__text div + ul,
.content__section__text div:not([class]) + div:not([class]) {
    margin-top: 32px;
}
.content__section__text p + p, .content__section__text div + p {
    margin-top: 1rem;
}
.youtube_twoline__wrap div + div {
    margin-top: 0;
}
.content__section__text table {
    width: 100%;
    margin-inline: auto;
}.content__section table {
    width: min(800px, 100%);
}
.content__section__text th, .content__section__text td, .content__section th, .content__section td {
    padding: 8px 16px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
.content__section__text th, .content__section th {
    background: #f1f1f1;
}
.content__section__text ul > li, .content__section  ul > li {
    list-style: disc;
    margin-inline-start: 1.2rem;
}
.content__section__text ol > li, .content__section  ol > li {
    margin-inline-start: 2rem;
}
.content__section ul > li.content__section__btn {
    list-style: none;
}
.content__section__text a {
    text-decoration: underline;
}
.icontent__section_img__wrap figure {
    width: calc(100% / 3 - 32px * 2/3);
}
.icontent__section_img__wrap .column_two {
    width: calc(100% / 2 - 32px * 1/2);
}
.icontent__section_img__wrap .colum_four {
    width: calc(100% / 4 - 32px * 3/4);
}
.icontent__section_img__wrap .colum_three {
    width: calc(100% / 3 - 32px * 2/3);
}
figcaption {
    line-height: 1;
    margin-top: 4px;
    text-align: center;
}
.content__section__text ul > li.content__section__btn {
    list-style: none;
}
.content__section__btn a, .content__section__btn_list a {
    display: flex;
    align-items: center;
    background: #990202;
    padding: 8px 40px 8px 25px;
    text-decoration: none;
    border-radius: 50px;
    color: #fff;
    gap: 16px;
}
.nowrap th {
    text-wrap: nowrap;
}
.text_img__inner {
    flex: 1;
}
.youtube_twoline {
    width: calc(100% / 2 - 32px *1/2);
}
.youtube_twoline iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: auto;
}
.en_section__title {
    border-bottom: 1px solid;
    padding-bottom: 8px;
}
.content_section_hr {
    color: #c1c1c1;
}
.n_footer {
    width: 90%;
}
.n_footer li {
    width: 50%;
}
.memorial_main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 90px;
}
/**sns shear**/
.sns_btn__wrap {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}

.link_x a {
    text-decoration: none;
    border: 1px solid;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 11px;
}
.link_facebook {
    border: 1px solid #385898;
    padding: 2.5px 8px;
    border-radius: 5px;
    font-size: 11px;
    line-height: 1;
}
