@charset "UTF-8";
* {
    margin: 0px;
    padding: 0px;

}
body {
    font-family: "Cardo", 'Noto Serif JP', "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    height: 100vh;
    box-sizing: border-box;
    background-color: #FCF9F2;
    font-size: 15px;
}
a {
    word-break: break-all;
    color: #0BBFBF;
}

/* ヘッダー */
header {
    background-color: #FEFDFB;
}
header nav ul {
    padding: 10px 0;
    text-align: center;
    border-bottom: 3px solid #0BBFBF;
}
header nav ul li {
    display: inline-block;
    margin-bottom: 1.3px;
}
header nav ul li a {
    text-decoration: none;
    color: #474644;
    font-weight: bold;
    padding: 0 15px;
}
header nav ul li a:hover {
    color: #bf7c39;
    margin-bottom: -1.3px;
    border-bottom: 1.3px solid #bf7c39;
}
.header_title {
    background-color: #0BBFBF;
    padding: 8px;
    padding-left: 15px;
}
.header_title span {
    color: #FCF9F2;
}

/* フッター */
footer {
    background-color: #0BBFBF;
    padding-top: 30px;
    padding-bottom: 15px;
    margin-top: 30px;
    color: #fff;
}
footer .cprt {
    text-align: center;
    margin-top: 25px;
    font-size: 10px;
}
footer nav{
    width: 900px;
    margin: auto;
}
footer nav ul {
    text-align: center;
}
footer nav ul li {
    display: inline-block;
    padding: 0 15px;
}
footer nav ul li a {
color: #fff;
}
footer nav h2 {
    text-align: center;
    margin-top: 8px;
}
footer nav .sns_text {
    width: 300px;
    margin: auto;
    font-size: 13px;
}

/* アイコン */
.sns_icon {
    display: inline-block;
    color: rgba(255,255,255,0);
    border-radius: 0;
    width: 35px;
    height: 35px;
    margin: 5px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.ic_line {
    background-image: url("https://cdn.amebaowndme.com/madrid-prd/madrid-web/images/sites/1307805/f00fbffd00af6816767023a295e1caac_10358f0b97b074eae7407d210991b39d.png?width=600");
}
.ic_fb {
    background-image: url("https://cdn.amebaowndme.com/madrid-prd/madrid-web/images/sites/1307805/96ac1516e7da4f9694bea35a3077f469_d2b942d77710125e65f58842b16c8402.png?width=600");
}
.ic_ist {
    background-image: url("https://cdn.amebaowndme.com/madrid-prd/madrid-web/images/sites/1307805/cddbe2ccccf47804d945c5d7798333a2_7b5e2484b1cebf6d32f6fa72d77b82cb.png?width=600");
}
.big_icon .sns_icon {
    width: 60px;
    height: 60px;
}

/* メニュー */
.menu_list table {
    margin: auto;
    border-collapse: collapse;
}
.menu_list table th {
    background-color: #BFA994;
    color: #fff;
}
.menu_list table td {
    background-color: #FEFDFB;
}
.menu_list table td:nth-child(1), .menu_list table td:nth-child(3) {
    text-align: center;
}
.menu_list table th, .menu_list table td {
    border: solid 1px #BFA994;
    padding: 5px 15px;
}

/* プロフィール */
.profile_box {
    margin: auto;
    padding: 27px 17px;
    border: 3px solid #08A6A6;
}
.profile_img {
    text-align: center;
}

.profile_box .w_title h2 {
    text-align: left;
    margin-bottom: 5px;
}

/* タイトル部分 */
h1, h2, h3 {
    text-align: center;
    margin-bottom: 13px;
    color: #474644;
}
h1 {
    font-size: 21px;
}
h2 {
    font-size: 13px;   
}
.w_title h1 {
    margin-bottom: 0;
}
.w_title h2 {
    margin-bottom: 13px;
}
.sns_title h2 {
    margin-bottom: 5px;
}

/* メインコンテンツ */
.contents_wrap {
    width: 900px;
    margin: auto;
    padding-top: 30px;
}
.text_area p {
    color: #474644;
    margin-bottom: 17px;
}
.text_area p.btn_note {
    margin-bottom: 13px;
    text-align: center;
    margin-left: 0;
}
.lymph_flow {
    width: fit-content;
    text-align: center;
    border: 6px #BFA994 double;
    padding: 10px;
    margin: auto;
    font-weight: bold;
}
.btn {
    margin: auto;
    text-align: center;
    background-color: #0BBFBF;
    margin-bottom: 10px;
    padding: 7px 5px;
    border-radius: 15px;
    width: 150px;
}
.btn:hover {
    opacity: 0.8;
}
.btn a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
hr {
    width: 50%;
    margin: 30px auto;
    border-top: 1px solid #08A6A6;
    border-right: none;
    border-bottom: none;
    border-left: none;
}

/* スタイル付与 */
.ta-c {
    text-align: center !important;
}
.fw-b {
    font-weight: bold !important;
}
.mt-25 {
    margin-top: 25px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}

/* PC */
@media screen and (min-width: 768px) {
    .text_area p:not(.btn_note) {
        width: 70%;
        margin: auto;
        margin-bottom: 19px;
    }

    /* プロフィール */
    .profile_box {
        width: 70%;
    }
    .profile_img img {
        height: 300px;
    }
}

/* SP */
@media screen and (max-width: 768px) {
    .contents_wrap, footer nav {
        width: 90%;
    }
    .menu_list table th, .menu_list table td {
        padding: 5px 8px;
    }

    /* プロフィール */
    .profile_img img {
        width: 90%;
    }

    /* スタイル付与 */
    .pc_only {
        display: none;
    }
}
