@charset "UTF-8";

/* -------------------------------
    共通部分 
------------------------------- */
* {
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

body {
    font-family: serif;
    font-weight: bolder;
    max-width: 1400px;
    margin: 0 auto
}

ul {
    list-style-type: none;
}

h1 {
    color: rgb(14, 56, 19);
}

h2 {
    background-color: rgb(46, 117, 54);
    color: #ccfaa5;
    text-align: center;
}

h3 {
    color: rgb(14, 56, 19);
    padding: 15px;
}

a {
    text-decoration: none;
}

.centering_pct {
    text-align: center;
}

.cntr {
    text-align: center;
}

.txt_big {
    font-size: 2rem;
    color: black;
}

.txt_middle {
    font-size: 1.3rem;
    color: black;
}

/* -------------------------------
    HEADER部分 
------------------------------- */
header {
    width: 100%;
    height: 80px;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.common_header {
    background-color: #1e7a14;
    width: 100%;
    height: 100px;
    margin-bottom: 0.1px;
}

.logo img {
    height: 70px;
    width: auto;
}

nav {
    width: 50%;
}

nav ul {
    display: flex;
    justify-content: space-around;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

.m_button a:hover {
    color: rgb(161, 247, 122);
    transition: all 0.5s;
    font-size: 1.5rem;
}

/* -------------------------------
    メイン 
------------------------------- */
.wrapper {
    display: flex;
    justify-content: space-between;
}

main {
    background-color: #e0fbbc;
    width: 69.5%;
    height: auto;
    padding: 30px;
}

.main_content {
    background-color: #e0fbbc;
    width: 69.5%;
    height: auto;
}

.sub_content {
    display: flex;
    justify-content: space-between;
    padding: 5%;
}

/* -------------------------------
    右サイド 
------------------------------- */
aside {
    background-color: #ccfaa5;
    color: #0e6504;
    width: 30%;
    padding: 20px;
}

aside th {
    border-width: 1px;
    border-style: solid;
    border-color: #257c1b;
}

/* -------------------------------
    フッター 
------------------------------- */
footer {
    background-color: rgb(13, 63, 26);
    padding: 1px;
    text-align: center;
    color: rgb(161, 247, 122);
}

footer ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
}

footer a {
    color: white;
    transition: all 0.5s;
    text-decoration: none;
}

footer a:hover {
    color: rgb(161, 247, 122);
    transition: all 0.5s;
    font-size: 1.5rem;
}


/* インデックスページ
----------------------*/
.top_img {
    width: 100%;
}

.method {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    grid-template-rows: 300px;
}

.mtd_btn {
    background: #75f267;
    color: rgb(66, 136, 84);
    border-radius: 10px;
}


/* イベントページ 
----------------------*/
div li {
    color: rgb(13, 63, 26);
    padding-left: 30px;
}

.evt_date {
    font-size: 1rem;
    color: black;
    padding: 0;
}


/* スタッフ紹介ページ 
----------------------*/
.cntnr_staff {
    display: grid;
    grid-template-columns: 300px 300px 300px;
    gap: 2px;
    grid-template-rows: 350px;
}

.cntnr_staff table {
    border: 2px solid #ccfaa5;
    background-color: white;
    height: 300px;
}

/* 資格や職務 */
.title {
    width: 300px;
    height: 50px;
    font-size: 14px;
    font-weight: bolder;
    background-color: rgb(14, 56, 19);
    color: white;
    padding-left: 7px;
    padding-right: 7px;
}

.name {
    font-size: 17px;
    padding-left: 10px;
    padding-right: 10px;
}

.comment {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
}


/* アクセスページ 
----------------------*/
.trade_name {
    font-size: larger;
    color: #0e6504;
}

.facility_info th {
    border-width: 0px 0px 1px 1px;
    border-style: solid;
    border-color: #257c1b;
}

.facility_info td {
    border-width: 0px 0px 1px 1px;
    border-style: solid;
    border-color: #257c1b;
}

.map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.main_content p {
    color: #257c1b;
    padding: 30px;
}


.text span {
    color: rgb(5, 122, 22);
    font-size: 2rem;
    display: inline-block;
    width: 200px;
    text-align: center;
}


/* Q＆Aページ 
----------------------*/
.contact {
    display: flex;
    height: 100px;
    justify-content: space-around;
    gap: 10px;
}

.item {
    background-color: rgb(149, 221, 168);
    text-align: center;
    margin: 10px;
    padding: 10px;
    border-width: 3px;
    border-style: outset;
}

.button_gr {
    text-align: right;
}

.qa_accordion {
    margin-bottom: 7px;
    background-color: white;
    border-radius: 5px;
}

.qa_accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa_accordion summary::-webkit-details-marker {
    display: none;
}

.qa_accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #3cc601;
    border-right: 3px solid #3cc601;
    content: '';
    transition: transform .3s;
}

.qa_accordion[open] summary::after {
    transform: rotate(225deg);
}

.qa_accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.qa_accordion[open] p {
    transform: none;
    opacity: 1;
}

.message {
    border-style: solid;
    background-color: white;
}

.button {
    display: inline-block;
    border-radius: 13%;
    /* 角丸       */
    font-size: 12pt;
    /* 文字サイズ */
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 4px 4px;
    /* 余白       */
    background: #336600;
    /* 背景色     */
    color: #ffffff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    transition: .3s;
    /* なめらか変化 */
    border: 2px solid #336600;
    /* 枠の指定 */
}

.button:hover {
    color: #336600;
    /* 背景色     */
    background: #ffffff;
    /* 文字色     */
}