@charset "utf-8";

/*////////////////////////////////////////////////
/初期設定////////////////////////////////////////*/
@font-face {    /*渦筆*/
    font-family: "uzu-fude";
    src: url("./font/uzu-fude_s.woff") format("woff");
}
@font-face {    /*Roboto*/
    font-family: "roboto";
    src: url("./font/Roboto-Bold_s.woff") format("woff");
    font-weight: bold;
}
@font-face {    /*白舟隷書教漢*/
    font-family: "reisyo";
    src: url("./font/hkreikk_s.woff") format("woff");
}
@font-face {    /*うずらフォント*/
    font-family: "uzura";
    src: url("./font/uzura_s.woff") format("woff");
}
@font-face {    /*Noto Sans JP*/
    font-family: "notosansjp";
    src: url("./font/NotoSansJP-Regular.woff") format("woff");
    font-weight: 400;
}
@font-face {    /*Noto Sans JP*/
    font-family: "notosansjp";
    src: url("./font/NotoSansJP-Medium.woff") format("woff");
    font-weight: 500;
}
@font-face {    /*源柔ゴシック*/
    font-family: "genjyu";
    src: url("./font/GenJyuuGothic-Normal_s.woff") format("woff");
    font-weight: 400;
}
@font-face {    /*源柔ゴシック*/
    font-family: "genjyu";
    src: url("./font/GenJyuuGothic-Medium.woff") format("woff");
    font-weight: 500;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #646464;
    font-family: notosansjp;
    /*ul*/list-style-type: none;
    /*a*/text-decoration: none;
}
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
}
br.new_line_768,
br.new_line_448 {
    display: none;
}

/*ボタンの基礎設定*/
/*inquiry_btn_wrap*/
/*.anchor_wrap*/
.push_btn_wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /*
    margin-top: 3rem;
    */
}
/*button*/
/*.blog_page_link*/
/*.index_inquiry_link*/
.push_btn {
    display: block;
    border-radius: 1rem;
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    border: none;
    padding: 0.3rem 13rem;
    transform: translateY(-0.6rem);
    transition: all 0.3s;
    /*
    background-color: #ff6423;
    box-shadow: 0 0.6rem 0 0 #ce7500;
    */
}
.push_btn:hover {
    transform: translateY(-0.2rem);
    /*
    box-shadow: 0 0.2rem 0 0  #ce7500;
    */
}

/*////////////////////////////////////////////////
/共通部分////////////////////////////////////////*/
/*loading*/
#js_loading {
    width: 100vw;
    height: 100vh;
    background-color: #ff6423;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    width: 4rem;
    height: 4rem;
    position: relative;
    margin: auto auto;
}
.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/*header*/
.header_shadow {
    box-shadow: 0rem 0.5rem 1.5rem -1rem #ff6423;
}
.top_nav {
    display: flex;
    justify-content: space-between;
    width: 95%;
    max-width: 108rem;
    height: 10.5rem;
    margin: 0 auto;
}
.logo_and_name {
    display: flex;
}
.logo {
    display: table;
    width: 15.7rem;
    height: 100%;
    background-color: #ff6423;
}
.logo p {
    display: table-cell;
    vertical-align: middle;
    color: #ffffff;
    text-align: center;
    font-family: roboto;
    font-weight: bold;
    line-height: 2.5rem;
}
.corporate_name_wrap {
    display: table;
    padding-left: 2rem;
    height: 100%;
}
.top_nav .corporate_name {
    display: table-cell;
}
.corporate_name {
    vertical-align: middle;
    font-family: reisyo;
    font-weight: 200;
    font-size: 3rem;
}
.corporate_name span {
    font-family: reisyo;
    font-weight: 200;
    font-size: 1.6rem;
    line-height: 2.5rem;
}
.address {
    font-size: 1.4rem;
    margin: 1.5rem 0 0 5rem;
    border-spacing: 0;
    font-weight: 500;
}
.td_right {
    text-align: right;
}
.td_left {
    padding-left: 1.5rem;
}
.page_nav {
    display: flex;
    font-size: 1.8rem;
    margin: 1.5rem 0 0 2.7rem;
    line-height: 1.8rem;
    font-weight: 500;
}
.page_nav li {
    border-right: solid 0.2rem #ff6423;
}
.page_nav li:last-child {
    border: none;
}
.page_nav a {
    padding: 0 1.5rem;
}

/*js_nav*/
.js_nav_index,
.js_nav_common {
    position: fixed;
    transition: 0.5s;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0rem 0.5rem 1.5rem -1rem #ff6423;
    background-color: #ffffff;
    z-index: 20;
}
.js_nav_index {
    height: 16rem;
    top: -16rem;
}
.js_nav_common {
    height: 10.5rem;
    top: -10.5rem;
}
#js_nav.show {
    top: 0;
}

/*js_hamburger_button*/
.js_hamburger_button,
.js_hamburger_button_2 {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 4.4rem;
    height: 4.4rem;
    cursor: pointer;
    border: 1px solid #646464;
    border-radius: 0.5rem;
    z-index: 50;
}
.js_hamburger_button span,
.js_hamburger_button_2 span {
    position: absolute;
    left: 50%;
    width: 60%;
    height: 0.2rem;
    background-color: #646464;
    border-radius: 0.4rem;
    transform: translate(-50% , 0);
}
.js_hamburger_button,
.js_hamburger_button span,
.js_hamburger_button_2,
.js_hamburger_button_2 span {
    display: none;
    transition: all 0.5s;
}
.js_hamburger_button span:nth-of-type(1),
.js_hamburger_button_2 span:nth-of-type(1) {
    top: 0.8rem;
}
.js_hamburger_button span:nth-of-type(2),
.js_hamburger_button_2 span:nth-of-type(2) {
    top: 1.6rem;
}
.js_hamburger_button span:nth-of-type(3),
.js_hamburger_button_2 span:nth-of-type(3) {
    top: 2.4rem;
}
.js_hamburger_button:after,
.js_hamburger_button_2:after {
    content: "Menu";
    top: 3rem;
    left: 50%;
    display: block;
    position: absolute;
    font-size: 1rem;
    font-family: roboto;
    transform: translateX(-50%);
}
.js_hamburger_button.active,
.js_hamburger_button_2.active {
    border: 1px solid #ffffff;
    color: #ffffff;
}
.js_hamburger_button.active span:nth-of-type(1),
.js_hamburger_button_2.active span:nth-of-type(1) {
    transform: translate(-50% , 0.8rem) rotate(-315deg);
    background-color: #ffffff;
}
.js_hamburger_button.active span:nth-of-type(2),
.js_hamburger_button_2.active span:nth-of-type(2) {
    opacity: 0;
}
.js_hamburger_button.active span:nth-of-type(3),
.js_hamburger_button_2.active span:nth-of-type(3) {
    transform: translate(-50% ,-0.8rem) rotate(315deg);
    background-color: #ffffff;
}
.js_hamburger_nav {
    position: fixed;
    top: 7rem;
    left: 100%;
    width: 75vw;
    height: 100%;
    background-color: #ffffff;
    border-radius: 0.5rem;
    transition: all 0.5s;
    z-index: 50;
}
.js_hamburger_nav.active{
    left: 25%;
    box-shadow: 0 0 0.5rem #000000;
}
.js_hamburger_background.active {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 45;
    margin: auto;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.5s;
    z-index: 40;
}
.js_hamburger_nav_parent {
    position: relative;
    display: block;
    padding: 1rem;
    font-weight: 500;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(233,233,233,0.4);
}
.js_hamburger_nav_parent::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0.5rem;
    height: 1.8rem;
    background-color: #ff6423;
}
.js_hamburger_nav_child {
    display: block;
    padding: 0.8rem 2.5rem;
    font-size: 1.6rem;
    border-bottom: 1px solid rgba(233,233,233,0.4);
}

/*footer*/
footer {
    width: 100%;
    background-color: #fff0a0;
}
.footer_top_wrap {
    display: flex;
    width: 108rem;
    margin: 0 auto;
    padding: 1.5rem 1.8rem;
}
.footer_left {
    width: 63.5rem;
}
.footer_address {
    margin-top: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}
.footer_center {
    width: 24rem;
    font-weight: 500;
}
.footer_center dt {
    font-size: 1.8rem;
    margin: 0.7rem 0 0.3rem 0;
}
.footer_center dd {
    margin-left: 2rem;
    line-height: 2.7rem;
}
.footer_right li {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 4rem;
}
#copyright {
    width: 100%;
    padding: 0.5rem;
    background-color: #ff6423;
}
#copyright p {
    text-align: center;
    color: #ffffff;
    font-family: roboto;
    font-weight: bold;
}

/*////////////////////////////////////////////////
/index//////////////////////////////////////////*/
/*top_image*/
#index_top_wrap {
    height: 100vh;
}
#slide,
#slide div,
#top_img_wrap,
#pattern {
    width: 100%;
    /*min-width: 108rem;*/
    height: calc(100vh - 16rem - 20vh);
    margin: 0 auto;
}
#top_img_wrap {
    position: relative;
    overflow: hidden;
}
#pattern {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.15;
    background-image: url("./image/top_image_pattern.png");
    z-index: 3;
}
.top_ward {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    /*min-width: 108rem;*/
    text-align: center;
    z-index: 5;
}
.top_ward h2 {
    font-family: uzu-fude;
    font-size: 7.5vw;
    font-weight: normal;
    z-index: 5;
    color: #ffffff;
    text-shadow: 0 0 1vw #000000;
}
#slide {
    position: absolute;
    top: 0;
    left: 0;
}
#slick-slide00,
#slick-slide01,
#slick-slide02,
#slick-slide03 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
#slick-slide00 {
    background-image: url("./image/top_image0.jpg");
}
#slick-slide01 {
    background-image: url("./image/top_image1.jpeg");
}
#slick-slide02 {
    background-image: url("./image/top_image2.jpg");
}
#slick-slide03 {
    background-image: url("./image/top_image3.jpg");
}
.slick-dots { /*slick ドットインジケーターの設定*/
    bottom: 4%;
    cursor: pointer;
    z-index: 8;
}

/*index_section_nav*/
#index_section_nav {
    display: flex;
    align-items: center;
    font-weight: 500;
    max-width: 108rem;
    width: 95%;
    height: 5.5rem;
    margin: 0 auto;
    line-height: 1.9rem;
    overflow: hidden;
}
#index_section_nav li {
    flex: auto;
}
#index_section_nav a {
    display: block;
    text-align: center;
    padding: 1.2rem;

    /*font-size: 1vw*/
}

/*top_declaration*/
#top_declaration {
    display: table;
    width: 100%;
    /*min-width: 108rem;*/
    height: 20vh;
    background-color: #fff0a0;
    text-align: center;
}
.top_declaration-p {
    display: table-cell;
    vertical-align: middle;
    font-family: "genjyu";
    font-weight: 500;
    font-size: 2.8rem;
    line-height: 5rem;
    transform: scale(1, 0.8);
    color: #424242;
}

/*index 各section*/
.index_content_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    max-width: 92rem;
    width: 80%;
    margin: 0 auto;
    padding-top: 16rem;
    /*overflow: hidden;*/
    overflow: visible;
}
.index_text_wrap {
    margin-bottom: 6.5vh;
}
.index_section_title {
    font-size: 4.8rem;
    text-align: center;
    color: #ff6423;;
    margin-bottom: 3.2rem;
    font-family: "genjyu";
    font-weight: 400;
}
.index_text_wrap h3 {
    display: inline-block;
    font-size: 2.4rem;
    font-family: "genjyu";
    font-weight: 400;
    border-bottom: solid 0.2rem #2bb353;
    margin-bottom: 1.2vh;
}
.h3_uzura {
    font-family: uzura;
    font-size: 4.2rem;
    font-weight: 400;
    color: #ff6423;
}
.index_text_wrap p {
    font-size: 1.8rem;
}
.index_image_wrap_1,
.index_image_wrap_2,
.index_image_wrap_3,
.index_image_wrap_4,
.index_image_wrap_5,
.index_image_wrap_6 {
    position: relative;
    width: 80%;
    height: 28.5vw;
    max-height: 40rem;
    max-width: 65.5rem;
    margin: 0 auto;
    z-index: 3;
}
.index_image_wrap_1::before,
.index_image_wrap_2::before,
.index_image_wrap_3::before,
.index_image_wrap_4::before,
.index_image_wrap_5::before,
.index_image_wrap_6::before {
    content: "";
    position: absolute;
    top: 0;
    right: 34%;
    height: 81%;
    /*
    left: 0;
    height: 80%;
    */
    width: 66%;
    max-height: 32rem;
    z-index: 1;
    background-repeat: no-repeat;
    /*
    background-position: top left;
    */
    background-position: top right;
    background-size: contain;
    filter: blur(5px) opacity(50%);
}
.index_image_wrap_1::after,
.index_image_wrap_2::after,
.index_image_wrap_3::after,
.index_image_wrap_4::after,
.index_image_wrap_5::after,
.index_image_wrap_6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 55%;
    height: 56%;
    /*
    right: 0;
    height: 50%;
    */
    width: 45%;
    max-height: 20rem;
    z-index: 5;
    background-repeat: no-repeat;
    /*
    background-position: bottom right;
    */
    background-position: bottom left;
    background-size: contain;
}
.index_image_wrap_1::before,
.index_image_wrap_1::after {
    background-image: url("./image/index_content_1.jpg");
}
.index_image_wrap_2::before,
.index_image_wrap_2::after {
    background-image: url("./image/index_content_2.jpeg");
}
.index_image_wrap_3::before,
.index_image_wrap_3::after {
    background-image: url("./image/index_content_3.jpg");
}
.index_image_wrap_4::before,
.index_image_wrap_4::after {
    background-image: url("./image/index_content_4.jpg");
}
.index_image_wrap_5::before,
.index_image_wrap_5::after {
    background-image: url("./image/index_content_5.jpeg");
}
.index_image_wrap_6::before,
.index_image_wrap_6::after {
    background-image: url("./image/index_content_6.jpg");
}

/*news*/
.top_blog_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 5.5rem;
}
.blog_box {
    width: calc(100% / 4);
    height: 36rem;
    border: 0.1rem solid #646464;
    transition: 0.5s;
    box-shadow: none;
    margin: 0 1rem;
}
/*
.blog_box a {
    display: block;
    width: 21.5rem;
    height: 36rem;
}
*/
.blog_box:hover {
    box-shadow:
    1rem 1rem 3rem rgba(18, 47, 61, 0.5),
    -1rem -1rem 3rem rgba(248, 253, 255, 0.9);
    transform: translate(-0.5rem, -0.5rem);
}
.blog_image img {
    width: 100%;
    height: 21.3rem;
    object-fit: cover;
    z-index: -3;
}
.blog_category,
.blog_title,
.blog_opening {
    font-weight: 400;
    font-size: 1.2rem;
}
.blog_category,
.blog_date,
.blog_title,
.blog_opening {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
}
.blog_category {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}
.blog_category span {
    padding: 0.1rem;
    border: 0.2rem solid;
    border-radius: 0.5rem;
}
.blog_date {
    font-size: 10px;
}
.blog_title {
    border-bottom: 0.1rem solid #646464;
    padding-bottom: 0.8rem;
}
.blog_opening {
    padding-top: 0.8rem;
    line-height: 1.6rem;
}
#news .push_btn {
    background-color: #2bb353;
    box-shadow: 0 0.6rem 0 0 #30ff6f;
}
#news .push_btn:hover {
    box-shadow: 0 0.2rem 0 0 #30ff6f;
}

/*volunteer*/
#volunteer {
    height: 100vh;
    max-width: 92rem;
    width: 80%;
    margin: 0 auto;
    padding-top: calc(16rem + 6vh);
}
.volunteer_wrap {
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 3rem 1rem 4.5rem 1rem;
    text-align: center;
    border-radius: 2rem;
    background-color: #fff0a0;
}
.volunteer_wrap p {
    margin-bottom: 1.3rem;
}
#volunteer .push_btn_wrap {
    margin-top: 3rem;
}
#volunteer .push_btn {
    background-color: #ff6423;
    box-shadow: 0 0.6rem 0 0 #ce7500;
}
#volunteer .push_btn:hover {
    box-shadow: 0 0.2rem 0 0 #ce7500;
}

/*inquiry*/
#inquiry {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*
    height: 100vh;
    margin: 0 auto;
    */
    margin: 0 auto 13.5rem;
    max-width: 92rem;
    width: 80%;
    padding-top: 16rem;
}
.input_wrap {
    display: table;
    margin: 0 auto;
    font-size: 2.4rem;
}
.input_wrap dl {
    border-bottom: 0.1rem solid #646464;
}
.input_wrap dl:first-child {
    border-top: 0.1rem solid #646464;
}
.inquiry_text,
.inquiry_textarea {
    display: table-cell;
    position: relative;
    width: 28rem;
    background-color: #fff0a0;
}
.inquiry_text {
    vertical-align: middle;
    padding-left: 1rem;
    height: 7rem;
}
.inquiry_textarea {
    padding: 1.5rem 0 0 1rem;
    height: 17rem;
}
.input_wrap dd {
    display: table-cell;
    vertical-align: middle;
    width: 41.5rem;
    text-align: center;
}
.inquiry_text span,
.inquiry_textarea span {
    position: absolute;
    right: 5%;
    padding: 0.3rem 1.2rem;
    font-size: 2rem;
    color: #ffffff;
    background-color: #ff6423;
    border-radius: 0.5rem;
}
.inquiry_text span {
    top: 50%;
    transform: translate(0, -50%);
}
#name,
#email,
#tel,
#inquiry_type,
#inquiry_detail {
    width: 95%;
    font-family: notosansjp;
    font-size: 2.4rem;
}
#name,
#email,
#tel,
#inquiry_type {
    height: 4rem;
    padding-left: 0.3rem;
}
#inquiry_detail {
    height: 13.5rem;
    padding: 0.3rem;
}
#donate_volunteer .push_btn_wrap,
#inquiry .push_btn_wrap {
    margin: 6.5rem auto 0;
}
#donate_volunteer .push_btn,
#inquiry .push_btn {
    background-color: #ff6423;
    box-shadow: 0 0.6rem 0 0 #ce7500;
}
#donate_volunteer .push_btn:hover,
#inquiry .push_btn:hover {
    box-shadow: 0 0.2rem 0 0 #ce7500;
}
.form_check {
	margin-left: 1rem;
	color: red;
	text-align: left;
	font-size: 1.3rem;
}

/*////////////////////////////////////////////////
/common/////////////////////////////////////////*/

.common_section_wrap {
    padding-top: 5rem;
    margin-bottom: 8.5rem;
}
.common_section_h2_wrap {
    text-align: center;
}
.common_section_h2 {
    position: relative;
    display: inline-block;
    color: #ff6423;
    border-radius: 1rem;
    font-size: 3rem;
    font-family: genjyu;
    font-weight: 500;
    text-align: center;
    padding: 2rem 3rem;
    background-color: #fff0a0;
}
.common_section_h2::after {
    content: "";
    width: 0;
    height: 0;
    border: 1.2rem solid transparent;
    border-top: 1.7rem solid #fff0a0;
    position: absolute;
    top: 100%;
    left: 3rem;
}
.common_contain,
.common_contain_bottom {
    max-width: 90rem;
    width: 95%;
    margin: 2rem auto 0;
    padding: 5rem;
    border-radius: 5rem;
    box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
}
/*試験
.common_contain_bottom {
    margin-bottom: 5rem;
}*/

/*////////////////////////////////////////////////
/donate/////////////////////////////////////////*/
.donate_image {
    position: relative;
    margin: 1.5rem auto 3rem;
    width: 95%;
    max-width: 108rem;
    height: auto;
    border-radius: 1rem;
    background-image: url("./image/donate_image.jpg");
    background-size: cover;
}
.donate_image::after {
    content: "";
    display: block;
    padding-top: 52%;
}
.donate_image_text .text_first,
.donate_image_text .text_second {
    position: absolute;
    left: 0;
    padding-left: 1.5rem;
    font-family: "genjyu";
    font-weight: 500;
    background-color: #ffffff;
    font-size: 4.2rem;
}
.donate_image_text .text_first {
    bottom: 20.5%;
}
.donate_image_text .text_second {
    bottom: 7%;
}
.donate_comment {
    position: relative;
    text-align: center;
    width: 80%;
    margin: 0 auto 7.5rem;
}
.donate_comment h2 {
    font-weight: 400;
    font-size: 1.8rem;
    color: #ff6423;
}
.donate_comment h2::before,
.donate_comment h2::after {
    font-size: 2.4rem;
    color: #ff6423;
}
.donate_comment h2::before {
    content: "＼";
}
.donate_comment h2::after {
    content: "／";
}
.donate_comment_image {
    margin: 0.5rem auto;
    max-width: 32rem;
    width: 80%;
    height: auto;
    background-image: url("./image/donate_comment_image.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.donate_comment_image::after {
    content: "";
    display: block;
    padding-top: 22%;
}
.donate_comment_p {
    margin: 1rem auto;
    font-size: 2rem;
    line-height: 4rem;
}

#donate_nav_wrap {
    position: relative;
    width: 100%;
    height: 36rem;
    background-image: url("./image/donate_nav_bg.jpg");
    background-size: cover;
    background-position: center;
    z-index: 1;
}
#donate_nav_wrap::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #000000;
    opacity: 0.5;
    z-index: 3;
}
.donate_nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    margin: auto;
    backdrop-filter: blur(3px);
    z-index: 5;
}
.donate_nav li {
    width: 24rem;
    margin: 11.5rem 1rem;
    text-align: center;
    transition: all 0.5s;
}
.donate_nav li:hover {
    margin-top: 10rem;
}
.donate_nav a {
    height: 100%;
}
.donate_nav_img1,
.donate_nav_img2,
.donate_nav_img3 {
    display: block;
    content: "";
    max-width: 19.5rem;
    width: 100%;
    height: auto;
    margin: 0 auto 1.8rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.donate_nav_img1 {
    background-image: url("./image/donate_nav_1.png");
}
.donate_nav_img2 {
    background-image: url("./image/donate_nav_2.png");
}
.donate_nav_img3 {
    background-image: url("./image/donate_nav_3.png");
}
.donate_nav_img1::after,
.donate_nav_img2::after,
.donate_nav_img3::after {
    content: "";
    display: block;
    padding-top: 72%;
}
.donate_nav p {
    color: #ffffff;
    line-height: 4rem;
    text-decoration: 0.2rem solid underline #ff6423;
    text-underline-offset: 1rem;
}
.donate_nav p::before {
    content: ">> ";
    font-family: roboto;
}

/*donate各section*/
.donate_p {
    margin: 1.7rem 0 5rem;
    padding: 5rem 0;
    background-color: #e9e9e9;
    width: 100%;
    text-align: center;
    font-size: 2.4rem;
    line-height: 5.1rem;
}
br.pc_908 {
    display: inline-block;
}
.donate_p::after {
    content: "";
    display: block;
    width: 10rem;
    margin: 2rem auto 0;
    border-bottom: 0.3rem solid #646464;
}
.donate_h3,
.donate_form_h3 {
    font-size: 2.4rem;
    padding-top: 5rem;
    font-weight: normal;
    line-height: 5.1rem;
    color: #30ff6f;
    border-bottom: 0.2rem dotted #30ff6f
}
.donate_h3:first-child {
    padding-top: 0;
}
.donate_form_h3 {
    padding-top: 0;
    margin-bottom: 2.5rem;
}
.donate_table {
    display: table;
}
.donate_th,
.donate_td {
    display: table-cell;
    line-height: 2.5rem;
}
.donate_th::after {
    content:"：";
}

/*////////////////////////////////////////////////
/overview///////////////////////////////////////*/
.overview_contain {
    padding: 5rem;
}
.overview_table {
    border-collapse: collapse;
    width: 100%;
}
.overview_table th,
.overview_table td {
    border: 0.1rem solid #dee2e6;
}
.overview_table th {
    font-weight: 500;
    padding: 1.5rem;
    width: 11.5rem;
    vertical-align: top;
    text-align: left;
    border: 0.1rem solid #dee2e6;
    background-color: rgba(233,233,233,0.4);
}
.overview_table td {
    font-weight: 400;
    padding-left: 1.5rem;
}
.overview_address_wrap {
    padding: 1.5rem;
}
.overview_address_wrap dl {
    display: flex;
}
.overview_address_wrap dl:first-child {
    margin-bottom: 1.5rem;
}
.overview_address_wrap dt {
    width: 14.5rem;
    font-weight: 500;
}
.overview_address_wrap dt span {
    font-size: 1.2rem;
}
.overview_address_wrap dd {
    padding-left: 1.5rem;
    border-left: 0.1rem solid #dee2e6;
    flex: 1;
}
.overview_address_text {
    line-height: 2.5rem;
    margin-bottom: 1.3rem;
    text-indent: -4rem;
    padding-left: 3.5rem
}
.overview_address_text:first-child {
    margin: 0;
}
.overview_address_map {
    width: calc(100% - 4rem);
    height: 40rem;
    overflow: hidden;
    margin: 0 4rem;
}
.overview_address_map iframe {
    width: 100%;
    height: 76rem;
    margin-top: -17rem;
}
.plan_wrap {
    text-align: center;
}
.plan_text {
    background-color: #ff6423;
    color: #ffffff;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 2rem;
}
.plan_text:before {
    display: inline-block;
    content: ">";
    font-family: roboto;
    background-color: #ffffff;
    color: #ff6423;
    height: 1.8rem;
    width: 1.8rem;
    border-radius: 50%;
    line-height: 1.8rem;
    margin-right: 1rem;
    transform: translateY(-8%);
}
.plan_text:after {
    display: inline-block;
    content: "";
    background-image: url("./image/pdf_32.png");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1rem;
    width: 3.2rem;
    height: 3.2rem;
    transform: translateY(30%);
}
.plan_wrap p {
    margin: 3.5rem 0 1.5rem 0;
    line-height: 3.2rem;
}
.get_pdf {
    display: inline-block;
    background-image: url("./image/Get-Adobe-Acrobat-Reader-badge.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 15.8rem;
    height: 3.9rem;
}

/*////////////////////////////////////////////////
/confirm & send/////////////////////////////////*/
#confirm {
    padding: 8rem 0 5rem 0;
}
#confirm dd {
    padding: 0.5rem 1rem;
    text-align: left;
}
#confirm .push_btn_wrap {
    max-width: 69.5rem;
    width: 80%;
    margin: 4rem auto 6rem;
}
#confirm a.push_btn {
    background-color: #17a2ff;
    box-shadow: 0 0.6rem 0 0 #076eb3;
    padding: 0.3rem 0rem;
    width: 30rem;
    margin: 1rem auto;
}
#confirm a.push_btn:hover {
    box-shadow: 0 0.2rem 0 0  #076eb3;
}
#confirm button.push_btn {
    background-color: #ff6423;
    box-shadow: 0 0.6rem 0 0 #ce7500;
    padding: 0.3rem 0rem;
    width: 30rem;
    margin: 1rem auto;
}
#confirm button.push_btn:hover {
    box-shadow: 0 0.2rem 0 0  #ce7500;
}
#send {
    height: 75vh;
    max-width: 92rem;
    width: 80%;
    margin: 0 auto;
    padding: 8rem 0 5rem 0;
}
.send_text_wrap {
    max-width: 62.5rem;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 2rem;
    background-color: #fff0a0;
}
.send_text_wrap p:first-child {
    margin-bottom: 1.3rem;
}

/*////////////////////////////////////////////////
/blog///////////////////////////////////////////*/
.blog_wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 108rem;
    width: 95%;
    margin: 5rem auto 0;
    justify-content: space-between;
    align-items: flex-start;
}
.blog_index_contain {
    width: 72.2%;
}
.blog_index_contain li a {
    display: flex;
    padding: 2.4rem 0;
    border-bottom: 1px solid #ddd;
}
.blog_index_right {
    position: relative;
    width: 24rem;
    height: 16rem;
    overflow: hidden;
    flex-shrink: 0;
}
.blog_index_right::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    transition: all 0.5s;
}
.blog_index_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
a:hover .blog_index_right img {
    transform: scale(1.1);
}
a:hover .blog_index_right::after {
    opacity: 0.5;
}
.blog_index_left {
    position: relative;
    margin-left: 3rem;
}
.blog_index_date {
    font-size: 1.3rem;
}
.blog_index_title {
    margin-top: 0.7rem;
    font-size: 1.8rem;
    font-weight: 500;
}
.blog_index_text {
    margin-top: 1rem;
    font-size: 1.6rem;
}
.blog_index_category {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    color: #ff6423;
    padding: 0.1rem;
    border: 0.2rem solid #ff6423;
    border-radius: 0.5rem;
    font-size: 1.2rem;
}
.blog_menu {
    width :25%;
}
.blog_menu dl {
    margin-bottom: 3rem;
}
.blog_menu dt {
    font-size: 2.5rem;
    font-weight: 500;
    font-family: genjyu;
    padding: 1rem 0 1rem 2rem;
    color: #30ff6f;
    background-color: #f8f8f8;
    border-bottom: 2px dotted #30ff6f;
}
.banner_box dt {
    margin-bottom: 0.3rem;
}
.banner_box img {
    width: 100%;
    height: auto;
}
.blog_article_menu dd,
.blog_category_menu dd {
    display: list-item;
    list-style-position: inside;
    line-height: 2.8rem;
    font-size: 1.6rem;
    padding-left: 0.8rem;
}
.blog_article_menu dd {
    list-style-type: circle;
}
.blog_category_menu dd {
    list-style-type: square;
}
.blog_index_btn_wrap {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
}
.blog_move,
/*
.blog_index_return_wrap a,
.blog_index_advance_wrap a,
*/
.blog_index_number {
    display: inline-block;
    text-align: center;
    line-height: 5rem;
    font-size: 1.5rem;
    color: #fff;
    height: 5rem;
    background-color: #2bb353;
    transition: all 0.5s;
}
.blog_move:hover
/*
.blog_index_return_wrap a:hover,
.blog_index_advance_wrap a:hover,
*/
.blog_index_number:hover {
    color: #999;
}
.blog_move
/*
.blog_index_return_wrap a,
.blog_index_advance_wrap a */{
    width: 11.5rem;
}
.blog_index_number {
    width: 24rem;
    margin: 0 0.1rem;
}
.blog_index_return_wrap .blog_move {
    border-radius: 1rem 0 0 1rem;
}
.blog_index_advance_wrap .blog_move{
    border-radius: 0 1rem 1rem 0;
}
.blog_contain {
    width: 72.2%;
    padding: 5rem;
    border-radius: 5rem;
    box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
}
.blog_contain h3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 18rem;
    font-size: 3rem;
    font-weight: 500;
    background-color: #f8f8f8;
    margin-bottom: 1.5rem;
}
.blog_contain h3::after {
    content: "";
    margin-top: 2.5rem;
    display: block;
    width: 10rem;
    height: 0.2rem;
    background-color: #646464;
}
.blog_top_image {
    margin-bottom: 1.5rem;
    text-align: center;
}
.blog_top_image img {
    width: 90%;
    height: auto;
}
.blog_status {
    margin-bottom: 1.5rem;
}
.blog_status span{
    padding: 0 1rem;
    border-radius: 3rem;
    line-height: 3rem;
    background-color: #f8f8f8;
}

/*
.banner_box p {
    margin-bottom: 0.5rem;
}
.banner_box img {
    max-width: 27rem;
    height: auto;
}
*/

/*////////////////////////////////////////////////
/overview_test/////////////////////////////////////*/
.overview_test_banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.overview_test_banner img {
    width: 26rem;
    height: auto;
}

/*////////////////////////////////////////////////
/responsive/////////////////////////////////////*/
@media screen and (max-width: 1198px) { /*1198px以下*/
/*header*/
    .top_nav {
        height: 7rem;
    }
    .logo p {
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .corporate_name {
        font-size: 2.4rem;
    }
    .corporate_name span {
        font-size: 1.2rem;
    }
    .address,
    .page_nav {
        margin: 0.5rem 0 0 0.5rem;
    }
    .address {
        font-size: 1rem;
    }
    .page_nav {
        font-size: 1.2rem;
    }

/*footer*/
    footer {
        text-align: center;
    }
    .footer_top_wrap {
        display: block;
        width: 100%;
    }
    .footer_left {
        width: 100%;
    }
    footer .corporate_name span {
        font-size: 1.6rem;
    }
    footer .corporate_name {
        font-size: 3rem;
    }
    .footer_address {
        font-size: 1.4rem;
    }
    .footer_center {
        display: none;
    }
    .footer_right {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 1.5rem auto 0;
        height: 2rem;
    }
    .footer_right li {
        padding: 0 0.5rem;
        border-right: solid 0.2rem #ff6423;
        font-size: 1.4rem;
        line-height: 2rem;
    }
    .footer_right li:last-child {
        border: none;
    }

/*js_nav*/
    .js_nav_index {
        height: 12.5rem;
        top: -12.5rem;
    }
    .js_nav_common {
        height: 7rem;
        top: -7rem;
    }

/*index*/
    #slide,
    #slide div,
    #top_img_wrap,
    #pattern {
        height: calc(100vh - 12.5rem - 20vh);
    }
    #index_section_nav a {
        font-size: 1vw;
    }
    .index_content_wrap,
    #inquiry {
        padding-top: 12.5rem;
    }
    #news {
        padding-top: calc(12.5rem + 7vh);
    }
    #volunteer {
        padding-top: calc(12.5rem + 8vh);
    }
    .top_declaration-p {
        font-size: 2.6vw;
        line-height: 3.6vw;
    }
}

@media screen and (max-width: 958px) { /*958px以下*/
    .blog_box {
        width: calc(100% / 3);
    }
    .blog_4{
        display: none;
    }
    .blog_wrap {
        justify-content: center;
        flex-flow: column;
    }
    .blog_index_contain {
        width: 100%;
    }
    .blog_contain {
        width: 95%;
        margin: 0 auto;
    }
    .blog_menu {
        width: 27rem;
        margin: 5rem auto 0;
    }
}

@media screen and (max-width: 908px) {  /*908px以下*/
    br.not_line_908,
    br.pc_908 {
        display: none;
    }

/*header*/
    .address_and_head_nav {
        display: none;
    }

/*js_nav*/
    .js_nav_index {
        top: 0;
    }
    .js_nav_common {
        top: 0;
    }

/*js_hamburger_button*/
    .js_hamburger_button,
    .js_hamburger_button span,
    .js_hamburger_button_2,
    .js_hamburger_button_2 span {
    display: inline-block;
    transition: all 0.5s;
    }

/*index*/
    .volunteer_wrap {
        text-align: left;
    }

/*donate*/
    .donate_p {
        text-align: left;
        font-size: 2rem;
        line-height: 3.8rem;
        padding: 2.5rem 1.5rem;
    }
    .donate_p::after {
        margin-top: 2.5rem;
    }

}

@media screen and (max-width: 768px) {  /*768px以下*/
    br.new_line_768,
    br.responsive_768 {
        display: inline-block;
    }
    br.not_line_768,
    .inquiry_br {
        display: none;
    }
/*header*/
    .logo {
        display: none;
    }
    .logo p {
        font-size: 1.2rem;
        line-height: 2rem;
    }
    .corporate_name_wrap {
        padding-left: 0;
    }
    .corporate_name {
        font-size: 1.8rem;
    }
    .corporate_name span {
        font-size: 1.4rem;
    }

/*footer*/
    footer .corporate_name span {
        font-size: 1.2rem;
    }
    footer .corporate_name {
        font-size: 1.6rem;
    }
    .footer_address {
        font-size: 1rem;
    }
    .footer_right li {
        font-size: 1.4rem;
    }
    #copyright {
        font-size: 1.2rem;
    }

/*js_nav*/
    .js_nav_index {
        height: 7rem;
        top: 0rem;
    }

/*index*/
    #index_section_nav {
        display: none;
    }
    #slide,
    #slide div,
    #top_img_wrap,
    #pattern {
        height: calc(100vh - 7rem - 20vh);
    }
    .index_content_wrap,
    #inquiry {
        padding-top: 7rem;
    }
    .index_text_wrap h3 {
        line-height: 3.8rem;
        margin-bottom: 2.4vh;
    }
    .h3_uzura {
        line-height: 5rem;
        font-size: 8vw;
    }
    .index_image_wrap_1::before,
    .index_image_wrap_1::after,
    .index_image_wrap_2::before,
    .index_image_wrap_2::after,
    .index_image_wrap_3::before,
    .index_image_wrap_3::after,
    .index_image_wrap_4::before,
    .index_image_wrap_4::after,
    .index_image_wrap_5::before,
    .index_image_wrap_5::after,
    .index_image_wrap_6::before,
    .index_image_wrap_6::after {
        display: none;
    }
    .index_image_wrap_1,
    .index_image_wrap_2,
    .index_image_wrap_3,
    .index_image_wrap_4,
    .index_image_wrap_5,
    .index_image_wrap_6 {
        height: 50vh;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .index_image_wrap_1 {
        background-image: url("./image/index_content_1.jpg");
    }
    .index_image_wrap_2 {
        background-image: url("./image/index_content_2.jpeg");
    }
    .index_image_wrap_3 {
        background-image: url("./image/index_content_3.jpg");
    }
    .index_image_wrap_4 {
        background-image: url("./image/index_content_4.jpg");
    }
    .index_image_wrap_5 {
        background-image: url("./image/index_content_5.jpeg");
    }
    .index_image_wrap_6 {
        background-image: url("./image/index_content_6.jpg");
    }
    #news {
        padding-top: calc(7rem + 5vh);
    }
    #volunteer {
        padding-top: calc(7rem + 6vh);
    }
    .push_btn {
        font-size: 2rem;
        padding: 0.7rem 3rem;
    }
    .input_wrap,
    .inquiry_textspan span,
    .inquiry_textarea span,
    #name,
    #email,
    #tel,
    #inquiry_type,
    #inquiry_detail {
        font-size: 1.8rem;
    }
    #name,
    #email,
    #tel,
    #inquiry_type {
        height: 3rem;
    }
    #inquiry_detail {
        height: 10rem;
    }

/*common*/
    .common_contain,
    .common_contain_bottom {
        padding: 2rem;
    }
    .common_section_h2 {
        font-size: 2.5rem;
    }

/*inquiry*/
    form {
        display: block;
    }
    .inquiry_text,
    .inquiry_textarea {
        display: block;
        width: 80vw;
        height: auto;
        padding: 0.5rem 1rem 0.5rem 1rem;
        margin: 0 auto;
    }
    .input_wrap dd {
        display: block;
        background-color: #fff0a0;
        padding: 0.5rem 0 1rem 0;
        width: 80vw;
    }

    .push_btn {
        font-size: 2rem;
        padding: 0.7rem 3rem;
    }

/*donate*/
    .donate_image_text .text_first,
    .donate_image_text .text_second {
        font-size: 2.5rem;
    }
    .donate_nav {
        flex-direction: column;
        align-items: center;
    }
    .donate_nav li {
        margin: 0.5rem auto;
        width: 80%;
        height: 8rem;
    }
    .donate_nav a {
        display: flex;
        justify-content: center;
    }
    .donate_nav_img1 {
        display: flex;
        margin: 0;
    }
    .donate_nav p {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 50%;
        line-height: 4rem;
    }
    .donate_nav p::before {
        display: none;
    }
    .donate_nav li:hover {
        margin-top: 0;
    }
    .donate_nav_img1,
    .donate_nav_img2,
    .donate_nav_img3 {
        width: 20%;
        margin: 1rem 0;
    }
    .donate_th,
    .donate_td {
        display: block;
        width: 100%;
    }
    .donate_th::after {
        display: none;
    }
    .donate_td {
        margin: -0.4rem 0 0.4rem;
        padding-left: 1.5rem;
    }

/*overview*/
    .overview_table th,
    .overview_table td,
    .overview_address_wrap dl {
        display: block;
        width: 100%;
    }
    .overview_table th {
        border-top: none;
    }
    .overview_table th:first-child {
        border-top: 0.1rem solid #dee2e6;
    }
    .overview_table td {
        border-top: none;
        padding: 1.5rem;
    }

/*blog_index*/
    .blog_index_right {
        width: 10.5rem;
        height: 7rem;
    }
    .blog_index_date {
        font-size: 1rem;
    }
    .blog_index_title {
        margin-top: 0.3rem;
        font-size: 1.2rem;
    }
    .blog_index_text {
        display: none;
    }
    .blog_index_category {
        font-size: 1rem;
    }
    .blog_index_return_wrap a,
    .blog_index_advance_wrap a,
    .blog_index_return_wrap span,
    .blog_index_advance_wrap span {
        width: 7rem;
    }
    .blog_index_number {
        width: 10rem;
    }
}

@media screen and (max-width: 718px) { /*718px以下*/
    .blog_box {
        width: calc(100% / 2);
    }
    .blog_3{
        display: none;
    }
}

@media screen and (max-width: 478px) { /*478px以下*/
    .blog_box {
        width: calc(100% / 1);
    }
    .blog_2{
        display: none;
    }
}

@media screen and (max-width: 448px) {  /*448px以下*/
    br.new_line_448 {
        display: inline-block;
    }
    br.not_line_448 {
        display: none;
    }

/*index*/
    .top_ward h2 {
        font-size: 25vw;
        line-height: 40vw;
    }
    .top_declaration-p {
        font-size: 1.6rem;
        line-height: 2.6rem;
        padding: 0.5rem;
    }
    .index_section_title {
        font-size: 10.5vw;
        margin-bottom: 1.6rem;
    }
    .index_text_wrap h3 {
        font-size: 6vw;
        line-height: 9.6vw;
    }
    .index_text_wrap p {
        font-size: 1.4rem;
    }
    .index_image_wrap_1,
    .index_image_wrap_2,
    .index_image_wrap_3,
    .index_image_wrap_4,
    .index_image_wrap_5,
    .index_image_wrap_6 {
        height: 25vh;
    }
    .volunteer_wrap .index_section_title {
        font-size: 10.5vw;
    }
    #news .push_btn_wrap,
    #volunteer .push_btn_wrap {
        margin-top: 4rem;
    }
    #inquiry .push_btn_wrap {
        margin-top: 2rem;
    }
    .input_wrap,
    .input_wrap span,
    #name,
    #email,
    #tel,
    #inquiry_type,
    #inquiry_detail {
        font-size: 1.8rem;
    }

/*donate*/
    .donate_image_text .text_first,
    .donate_image_text .text_second,
    .donate_comment h2,
    .donate_comment_p{
        font-size: 1.6rem;
    }
    .donate_comment {
        margin-bottom: 4rem;
    }
    .donate_comment h2::before,
    .donate_comment h2::after {
        font-size: 2rem;
    }
    .donate_comment_p {
        line-height: 2.4rem;
        margin-bottom: 2rem;
    }
    .donate_nav li:hover {
        margin-top: none;
    }
    .donate_nav p {
        width: 75%
    }
    .donate_h3,
    .donate_form_h3 {
        font-size: 2rem;
        line-height: 3.2rem;
        padding-bottom: 1rem;
    }


/*send*/
    .send_text_wrap {
        max-width: 62.5rem;
        margin: 0 auto;
        padding: 3rem 2rem;
        text-align: left;
        border-radius: 2rem;
        background-color: #fff0a0;
    }
}