@charset "utf-8";

/*
Theme Name: junpo
Author: IT部
Theme URI: osaka-junpo.co.jp
Description: 大阪旬報店会のホームページ。
*/

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
footer .logo a {
    display: block;
}

/*共通*/
body {
    font-size: 15px;
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    color: #333;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

li {
    list-style: none;
}

img {
    border: 0;
    padding: 0px;
    margin: 0px;
    width: auto;
    max-width: 100%;
    height: auto;
}


.wrapper {
    background: #fff;
    position: relative;
    z-index: 10;
}

main {
    max-width: 1366px;
    width: 90%;
    margin: auto;
    padding: 30px 0;
}

.inner {
    max-width: 1000px;
    width: 100%;
    margin: auto;
}

.five_box {
    letter-spacing: -1rem;
    font-size: 0;
    max-width: 1366px;
    width: 90%;
    margin: auto;
    padding: 30px 0;
}

.five_box li {
    font-size: 13px;
    width: 20%;
    display: inline-block;
    letter-spacing: 1px;
    vertical-align: top;
    padding: 10px 1%;
    border-right: 1px solid #859dbb;
}

.five_box li:first-of-type {
    border-left: 1px solid #859dbb;
}

hr.border {
    border-top: 5px solid #859dbb;
}

/*ナビゲーションアンダーライン*/

.my-parts {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.my-parts::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #869dbb;
    transition: all .3s ease 0s;
}

.my-parts:hover {
    cursor: pointer;
}

.my-parts:hover::after {
    width: 100%;
}

/* リンク
---------------------------------------------------- */

a {
    color: #45AAB8;
    text-decoration: none;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
}

a:hover {
    color: #666;
}

a:active,
a:focus {
    outline: 0;
}


/*selectドロップダウンボタン*/
select {
    /* styling */
    width: 100%;
    background-color: white;
    border: thin solid blue;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;

    /* reset */

    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}


/* arrows */

select.classic {
    background-image:
        linear-gradient(45deg, transparent 50%, blue 50%),
        linear-gradient(135deg, blue 50%, transparent 50%),
        linear-gradient(to right, skyblue, skyblue);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2.5em 2.5em;
    background-repeat: no-repeat;
}

select.classic:focus {
    background-image:
        linear-gradient(45deg, white 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, white 50%),
        linear-gradient(to right, gray, gray);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2.5em 2.5em;
    background-repeat: no-repeat;
    border-color: grey;
    outline: 0;
}

select.round {
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        radial-gradient(#ddd 70%, transparent 72%);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - .5em) .5em;
    background-size:
        5px 5px,
        5px 5px,
        1.5em 1.5em;
    background-repeat: no-repeat;
}

select.round:focus {
    background-image:
        linear-gradient(45deg, white 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, white 50%),
        radial-gradient(gray 70%, transparent 72%);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        calc(100% - .5em) .5em;
    background-size:
        5px 5px,
        5px 5px,
        1.5em 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
}

select.minimal {
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
}

select.minimal:focus {
    background-image:
        linear-gradient(45deg, green 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, green 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        calc(100% - 2.5em) 0.5em;
    background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
}


select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}


/*ヘッダー メニュー上部*/

.box_menu,
.gnav {
    display: none;
}

/* 
#top-head {
    animation: header_anim 0.8s 1.0s ease-out;
    animation-fill-mode: both;
} */

#top-head {
    width: 95%;
    height: 200px;
    min-width: 1000px;
    max-width: 1480px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 5000;
    margin: 0 auto;
    transition: all 0.5s ease;
}

#top-head h1 {
    width: 200px;
    height: 160px;
    text-align: center;
    background-color: #869dbb;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.5s ease;
}

#top-head h1:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -16px;
    border-top: 8px solid #4c6a90;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #4c6a90;
}

#top-head h1 a img {
    width: auto;
    height: 100px;
    margin-top: 30px;
    transition: all 0.5s ease;
}

#top-head p.t-text {
    float: left;
    font-size: 13px;
    margin: 20px 0 0 230px;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

#top-head p.f-icon {
    width: 35px;
    position: absolute;
    margin: 18px 0 0;
    right: 0;
}

#top-head nav#global-nav {
    width: 100%;
    max-width: 1480px;
    min-width: 1000px;
    height: 70px;
    background-color: #fff;
    position: absolute;
    bottom: 56px;
    box-shadow: 2px 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

#top-head nav#global-nav ul {
    padding-left: 200px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    letter-spacing: 0.1em;
}

#top-head nav#global-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
    width: 20%;
    height: 70px;
    border-right: 1px solid #D9EAE2;
    float: left;
    line-height: 4.3em;
    transition: all 0.5s ease;
}

#top-head nav#global-nav ul li a:hover {
    letter-spacing: 4px;
}

/*スクロールした後のナビゲーション*/
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 70px !important;
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    height: auto;
}

#top-head.fixed nav#global-nav {
    bottom: 0;
}


#top-head.fixed h1 {
    height: 86px;
}

#top-head.fixed h1 a img {
    height: 86px;
    padding: 10px;
    margin: 0;
}

/*トップのスライド部分のテキスト*/
.slider_point {
    width: 100%;
    min-width: 1000px;
    height: 100vh;
    min-height: 400px;
    position: relative;
    z-index: 100;
}

.slider_point h2 {
    font-size: 28px;
    width: 500px;
    font-weight: 300;
    line-height: 2em;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
    position: absolute;
    top: 60%;
    left: 85%;
    transform: translateY(-60%) translateX(-85%);
    z-index: 2;
    animation: fadeIn 1.0s 1.8s ease-in;
    animation-fill-mode: both;
    text-shadow: 1px 1px 14px #fff, -1px 1px 14px #fff, 1px -1px 14px #fff, -1px -1px 14px #fff;
}

/*アニメーション トップページ*/
/*スクロールボタン*/
.scroll_box {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: 100;
}

/* アニメーション設定 */
.arrowWrap {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 200px;
}

.arrowInner p {
    font-size: 12px;
    text-align: end;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #fff;
    letter-spacing: 0.2rem;
}

.arrow {
    margin: 70px auto 0;
    width: 1px;
    height: 100px;
    background-color: #eee;
    position: relative;
    overflow: hidden;
}

.arrow::before {
    content: '';
    width: 1px;
    height: 100px;
    margin: 50px auto 0;
    background-color: #000;
    position: absolute;
    top: -150px;
    left: 0;
    -webkit-animation: arrow 2.5s ease 0s infinite normal;
    animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
    0% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    60% {
        -webkit-transform: translate3d(-50%, 100px, 0);
        transform: translate3d(-50%, 100px, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 100px, 0);
        transform: translate3d(-50%, 100px, 0);
    }
}


/*トップページ*/

.c_bg01 {
    background: #c1d3ed;
}

.top_l_title {
    text-align: center;
    margin: 0 0 15px;
    font-size: 16px;
    background: url(images/list-icon.png) no-repeat center top;
    background-size: 60px auto;
    padding: 50px 0 0;
    color: #4c6a90;
}

.top_l_content {
    text-align: center;
    line-height: 1.5;
}

.top_concept {
    text-align: center;
    line-height: 1.8;
    font-size: 24px;
    margin: 30px 0 0;
}

a.sub_more_link {
    display: block;
    text-align: center;
    padding: 8px;
    color: #fff;
    background: #859dbb;
    border-radius: 15px;
    border: 2px solid #859dbb;
    text-decoration: none;
    margin: 10px auto;
}

a:hover.sub_more_link {
    background: #4c6a8c;
    border: 2px solid #4c6a8c;
    letter-spacing: 2px;
}


.top_content_box {
    padding: 30px 60px;
    border: 15px solid #c1d3ed;
    border-right: none;
    border-left: none;
    margin: 80px 0 0;
    line-height: 1.5;
    display: table;
    letter-spacing: -1rem;
    background: #f6f6f1;
}

.h2_top_title {
    letter-spacing: 2px;
    font-size: 28px;
    text-align: center;
    margin: 0 0 30px;
    border-bottom: 1px solid #aaa;
    padding: 0 0 10px;
    color: #4c6a90;
}

.img_box {
    width: 40%;
    display: inline-block;
    vertical-align: top;
}

.text_box {
    display: inline-block;
    width: 60%;
    padding: 0 0 0 60px;
    line-height: 2;
    letter-spacing: 1px;
}

.concept_title h3 {
    font-size: 30px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin: 70px 0 0;
    position: relative;
    line-height: 1.5;
    color: #4c6a8c;
}

.concept_title h3:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 70px;
    background-color: #aaa;
    top: -90px;
    left: 0;
    right: 0;
    margin: 0 auto;
}


h3.salon_title {
    font-size: 28px;
    text-align: center;
    margin: 80px 0 0;
    font-weight: normal;
    border-top: 10px solid #859dbb;
    padding: 30px 0 0;
    letter-spacing: 2px;
    line-height: 1.5;
    color: #4c6a90;
}

ul.two_group {
    letter-spacing: -1rem;
    width: 80%;
    margin: auto;
    padding: 40px 0 0;
}

ul.two_group li {
    letter-spacing: normal;
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

ul.two_group li:first-of-type {
    margin: 0 4% 0 0;
}

ul.two_group li.text {
    font-size: 30px;
    text-align: center;
    color: #2c92d0;
    font-weight: bold;
    line-height: 1.5;
}

.text_more_link {
    width: 80%;
    margin: 20px auto 0;
    border-radius: 20px;
}

.text_more_link a {
    color: #2c92d0;
    text-decoration: none;
    border-radius: 20px;
    padding: 15px 41px;
    font-size: 20px;
    letter-spacing: 0.2rem;
    display: block;
    border: 2px solid #2c92d0;
    background: url(./images/arrow-t.png) no-repeat;
    background-size: 15px;
    background-position: 20px;
}

.text_more_link:hover {
    background: #2c92d0;
}

.text_more_link a:hover {
    color: #fff;
    background: #2c92d0;
    background: url(./images/arrow-hover.png) no-repeat;
    background-size: 15px;
    background-position: 20px;
}

.top_info {
    max-width: 1366px;
    width: 90%;
    margin: auto;
    padding: 30px 0;
}


/*固定ページ*/
.page_content {
    width: 100%;
    min-width: 1000px;
    position: relative;
}

.page_title {
    width: 100%;
    min-width: 1000px;
    height: 500px;
    box-sizing: border-box;
    padding-top: 450px;
}

.page_title h2 {
    width: 400px;
    height: 100px;
    font-size: 30px;
    letter-spacing: 0.2em;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    font-weight: normal;
    color: #fff;
    background: #4c6a8c;
    line-height: 100px;
    text-align: center;
}

.page_title h2:before {
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    left: 0%;
}

.page_title h2:after {
    content: "";
    display: block;
    height: 1px;
    width: 40px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    right: 0%;
}


h3.main_title {
    text-align: center;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.2rem;
    color: #4c6a8c;
    margin: 80px 0 40px;
    font-weight: normal;
}

.main_concept {
    margin: 40px 0 0;
    line-height: 2;
    padding: 30px;
    border: 10px solid #eee;
    background: #f5f5f1;
    color: #4c6a8c;
}

.main_concept_bn {
    margin: 40px 0;
    line-height: 1.8;
    padding: 30px;
    background: #f5f5f1;
    font-size: 16px;
}

.main_sub_content {
    margin: 20px 0 0;
    line-height: 2;
    padding: 0 0 60px;
    border-bottom: 10px solid #f2f2f2;
    overflow: hidden;
}

.title_word {
    padding: 80px 0 20px;
    font-size: 28px;
    color: #4c6a8c;
    letter-spacing: 0.2rem;
    text-align: center;
    line-height: 1.5;
}

.main_sub_title {
    font-size: 18px;
    margin: 0 0 15px;
    padding: 10px 20px 10px;
    border-radius: 15px;
    background: #c1d3ed;
    color: #4c6a90;
}

.main_two_box {
    width: 48%;
    float: left;
}

.main_two_box:first-child {
    margin: 0 4% 0 0;
}

.main_two_box p {
    padding: 0 0 15px;
    border-bottom: 1px solid #ddd;
    margin: 10px 0 0;
}

.point {
    padding: 15px 0 5px;
    line-height: 1.8;
}

.mes_title {
    color: #4c6a8c;
    font-size: 20px;
    border-left: 10px solid #859dbb;
    padding: 0 0 0 15px;
    width: 100%;
    letter-spacing: -1rem;
    line-height: 1.8;
}

.mes_title p {
    width: 70%;
    display: inline-block;
    padding: 10px 0;
    vertical-align: top;
    letter-spacing: 0.1rem;
}

.mes_title .mas_name {
    padding: 8px;
    text-align: center;
    border: 1px solid #859dbb;
    border-bottom: none;
    display: inline-block;
    vertical-align: bottom;
    width: 30%;
    color: #4c6a8c;
    font-size: 16px;
    letter-spacing: 0.1rem;
}

.mes_box {
    font-size: 13px;
    padding: 15px;
    background: #f5f5f1;
    margin: 0 0 80px 0;
    line-height: 1.8;
    border: 1px solid #859dbb;
}

.mes_title_word {
    font-size: 24px;
    color: #4c6a8c;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    padding: 0 0 10px;
}

.title_bg {
    padding: 10px;
    text-align: center;
    background: #859DBC;
    color: #fff;
    border-radius: 15px;
    margin: 80px 0 20px;
    font-size: 24px;
    line-height: 1.5;
}

table.study-list {
    width: 100%;
}

table.study-list thead {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

table.study-list thead th {
    vertical-align: middle;
    font-size: 14px;
    padding: 10px;
    background: #859dbb;
    color: #fff;
    border-left: 1px solid #ccc;
}

table.study-list thead th:nth-of-type(2) {
    width: 150px;
}

table.study-list thead th:nth-of-type(4) {
    width: 240px;
}

table.study-list tbody tr {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

table.study-list tbody th {
    background: #f5f5f1;
    width: 60px;
    color: #4C6A89;
    vertical-align: middle;
}

table.study-list tbody th,
table.study-list tbody td {
    padding: 15px 10px;
    border-left: 1px solid #ccc;
    line-height: 1.6;
    vertical-align: middle;
}

table.table_name th {
    background: #f6f5eb;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

table.study-list td.file-pdf {
    width: 120px;
    text-align: center;
    font-size: 15px;
}

table.study-list td .siryo-pdf a {
    width: 100%;
    text-align: left;
    padding: 10px 10px 10px 50px;
    font-size: 15px;
    border: 1px solid #ccc;
    color: #4d6a8b;
    background: url(./images/pdf-icon.png) no-repeat left;
    background-size: 20px;
    background-position: 15px;
    display: block;
}

.study_subtext {
    padding: 15px;
    border: 2px solid #ff0033;
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 1.5;
}

.study_subtitle {
    margin: 30px 0 10px;
    text-align: center;
    color: #ff0033;
    font-size: 25px;
    line-height: 1.5;
}

.attendance {
    margin: 40px 0 0 0;
}

.attendance a {
    display: block;
    text-align: center;
    padding: 10px 15px;
    border: 2px solid #859dbb;
    color: #4c6a8c;
    background: #fff;
    font-size: 18px;
    text-decoration: underline;
    letter-spacing: 3px;
}

.attendance a img {
    width: 250px;
}

table.table_name td {
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

table.table_name {
    width: 100%;
    margin: 40px auto;
    border: 1px solid #ddd;
}

p.cur_photo {
    width: 800px;
    margin: auto;
    max-width: 100%;
}

.salon_map .mes_title_word {
    text-align: center;
    background: #859dbb;
    padding: 8px 0;
    margin: 0 0 20px;
    color: #fff;
    border-radius: 15px;
}

ul.access li {
    margin: 0 0 15px;
    line-height: 1.8;
}

.salon_map {
    margin: 80px 0 0;
}

.text_sub_box {
    color: #4c6a8c;
    background: #f2f2f2;
    padding: 15px;
    font-size: 15px;
}

.text_sub_box li {
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.text_sub_box li:first-child {
    border-top: 0;
}

.salon_l_box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #859dba;
    padding: 10px;
}

.salon_list {
    margin-bottom: 60px;
    letter-spacing: -1rem;
    font-size: 0;
}

.salon_list li {
    display: inline-block;
    width: 48%;
    padding: 30px;
    margin: 0 0 20px 0;
    border: 1px solid #ddd;
    letter-spacing: normal;
    font-size: 14px;
    line-height: 1.5;
}

.salon_list li:nth-child(2n) {
    margin: 0 0 0 4%;
}

.salon_name {
    margin: 0 0 20px;
}

.salon_name a {
    background: url(./images/arrow.png)center left no-repeat;
    background-size: 12px;
    padding: 0 0 0 20px;
    display: inline-block;
    font-size: 16px;
    color: #4c6a8b;
    text-decoration: none;
    letter-spacing: 1px;
}

.salon_name a:hover {
    background: url(./images/arrow-hover-b.png)center left no-repeat;
    background-size: 12px;
    color: #95c3ea;
}

.details_text {
    margin: 60px 0 40px;
    line-height: 1.8;
    text-align: center;
}

li.list-arrow {
    padding: 10px 0 10px 20px;
    background: url(./images/arrow.png)center left no-repeat;
    background-size: 12px;
}


/*個人情報保護方針・サイトポリシー*/
.privacy .point {
    line-height: 1.5;
    padding: 15px;
    background: #ddd;
    margin: 0 0 15px;
    font-size: 13px;
}

.privacy {
    margin: 100px 0 0;
}

.privacy dt {
    padding: 10px;
    background: #f2f2f2;
    margin: 0 0 15px;
}

.privacy dd {
    margin-bottom: 40px;
    line-height: 1.5;
    font-size: 13px;
}

/*フッター*/

.add {
    margin: 60px 0 0;
    padding: 30px 20px;
    background: #f6f6f1;
    text-align: center;
}

.add dt {
    font-size: 20px;
    margin: 0 0 20px;
}

.add dd {
    margin: 10px 0;
    line-height: 1.8;
    font-size: 14px;
}

.add ul {
    width: 400px;
    margin: auto;
    overflow: hidden;
}

.add ul li {
    padding: 8px;
    color: #859dbb;
    font-size: 16px;
}

.add ul li a {
    display: block;
    padding: 10px;
    background: #4c6a8c;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #4C6A8C;
}

.add ul li a:hover {
    background: #fff;
    color: #4C6A8C;
}

.facebook {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 40px 0 0;
}

.copyright {
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    letter-spacing: 0.1rem;
    background: #859dbb;
    color: #fff;
}

footer .logo {
    width: 160px;
    margin: auto;
    padding: 40px 0 20PX;
}

.icon-button {
    max-width: 300px;
    width: 90%;
    margin: 40px auto 0;
}

.icon-button img {
    border-radius: 10px;
}

ul.fb_list {
    display: table;
    margin: 0 auto 15px;
    letter-spacing: -1rem;
    border-left: 1px solid #ddd;
}

ul.fb_list li {
    display: inline-block;
    letter-spacing: normal;
    border-right: 1px solid #ddd;
}

ul.fb_list li a {
    color: #888;
    font-size: 11px;
    padding: 5px;
}

.line-sp-icon {
    display: none;
}

.icon-button-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
  max-width: 700px;
}

.icon-button {
  width: 48%;
}

.icon-button img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホサイズは縦並び */
@media screen and (max-width: 768px) {
  .icon-button-list {
    flex-direction: column;
  }

  .icon-button {
    width: 90%;
  }
}


/*勉強会*/
.login_button {
    margin: 10px 0 5px;
}

.login_button a {
    display: block;
    text-align: center;
    padding: 5px;
    background: #f2f2f2;
    border: 1px solid #ddd;
}

.login_button_text {
    font-size: 11px;
    line-height: 1.5;
    text-align: left;
}

.fb_box {
    text-align: center;
    margin: 60px auto 0;
    border: 5px solid #2b6eb7;
    letter-spacing: 1px;
    width: 100%;
}

.fb_box a {
    color: #2b6eb7;
    display: block;
    padding: 15px;
    font-weight: bold;
}

.fb_box a:hover {
    background: #f5f5f1;
}

.fb_box .fb_box_text {
    margin: 0 0 10px;
    font-size: 14px;
    padding: 0 0 10px;
    border-bottom: 1px solid #2b6eb7;
}

.fb_box .fb_box_title {
    font-size: 18px;
    line-height: 1.6;
}

/*会員様の声*/

.voice_box {
    margin: 0 0 40px;
    letter-spacing: -1rem;
    padding: 40px 30px;
    border-bottom: 3px solid #4c6a8c;
    border-top: 3px solid #4c6a8c;
    background: #f6f6f1;
}

.voice_box .voice_name {
    padding: 10px 0 10px 10px;
    font-size: 18px;
    margin: 0 0 20px;
    border-left: 5px solid #ddd;
}

.voice_box .voice_img {
    width: 30%;
    display: inline-block;
}

.voice_box .voice_text {
    width: 68%;
    margin: 0 0 0 2%;
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
}

.voice_box .voice_text p {
    line-height: 1.5;
}

h2.voice_company {
    letter-spacing: 2px;
    text-align: center;
    padding: 0 0 20px;
    font-size: 24px;
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px;
    font-weight: normal;
}

/*facebook*/

.fb-container {
    width: 100%;
    padding: 40px 0 0;
}

.fb-page {
    display: block !important;
    width: 90%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
}

/*==============================
--- お問い合わせフォーム ---
================================*/

/*　ContactForm7のテーブル化レスポンシブ調整　*/

/*テーブルを親要素の幅いっぱいに伸ばす*/
.table-res-form {
    width: 100%;
    /*     border: 1px solid #ddd; */
    margin: auto;
}

/*一行ごとに上ボーダー*/
.table-res-form tr {
    border-top: 1px #ddd solid;
}

/*thとtd内の余白指定*/
.table-res-form th,
.table-res-form td {
    padding: 1.5em;
}

.table-res-form td {
    background: #f5f5f1;
}

.table-res-form td.con_button {
    border: none;
    background: #fff;
    padding: 40px 0 0 0;
}

/*th（項目欄）は30%幅、テキストを右寄せ*/
.table-res-form th {
    width: 30%;
    vertical-align: middle;
    background: #c1d3ed;
    font-size: 14px;
    line-height: 1.8;
}

/*「必須」部分のスタイリング*/
.table-res-form .requied {
    font-size: 0.8em;
    color: #ff6b6b;
    display: inline-block;
    padding: 0.3em 0.3em 0.2em;
    background: #fff;
    margin: 0 0 0 5px;
    border-radius: 2px;
}

.table-res-form .sub_text {
    font-size: 12px;
    color: #888;
    padding: 5px 0;
}


/*ここから入力欄のスタイル指定*/

/*各入力フォームスタイリング*/
.table-res-form input[type="text"],
.table-res-form input[type="tel"],
input[type="email"],
textarea {
    border: 1px #888 solid;
    padding: 8px;
    border-radius: 5px;
    margin-bottom: 0.5em;
    width: 100%;
    font-size: 16px;
}

.table-res-form input[type="tel"] {
    width: 80%;
}

/*入力欄にフォーカスしたら変化*/
.table-res-form input[type="text"]:focus,
textarea:focus {
    background: #EEFFFF;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

/*送信ボタンスタイリング*/
.table-res-form input[type="submit"] {
    width: 100%;
    height: 70px;
    border-radius: 5px;
    background: #4c6a8b;
    color: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 16px;
    border: 3px solid #fff;
}

/*送信ボタン・マウスオーバー時スタイリング*/
.table-res-form input[type="submit"]:hover {
    background: #006599;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

span.wpcf7-not-valid-tip {
    color: #f00;
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.screen-reader-response {
    display: none;
}

.wpcf7 .wpcf7-validation-errors {
    color: #B94A48;
    background-color: #F2DEDE;
    border: 1px solid #EED3D7;
    margin: 20px 0;
    padding: 15px;
    line-height: 1.5;
}

.wpcf7-response-output.wpcf7-mail-sent-ok {
    color: #333;
    background-color: #c1d3ed;
    border: 1px solid #859dbb;
    margin: 20px 0;
    padding: 15px;
    line-height: 1.5;
}

.wpcf7 .wpcf7-not-valid {
    background: pink;
}


/*=========================
レスポンシブデザイン
タブレットなど
===========================*/
@media screen and (max-width:840px) {

    /*ヘッダー*/
    #global-nav {
        display: none;
    }

    .box_menu,
    .gnav {
        display: block;
    }

    #top-head {
        top: 0;
    }

    #top-head,
    #top-head.fixed {
        background: #fff;
        height: 70px;
    }

    #top-head h1,
    #top-head.fixed h1 {
        width: 86px;
        height: 86px;
        transition: none;
    }

    #top-head p.t-text {
        margin: 17px 0 0 95px;
    }

    #top-head h1 a img,
    #top-head.fixed h1 a img {
        height: auto;
        width: auto;
        padding: 10px;
        transition: none;
        margin: 0;
    }

    /*スマホのメニューの中身*/
    .gnav__wrap ul {
        width: 100%;
        text-align: center;
        display: table;
        margin: auto;
    }

    .gnav__wrap ul li {
        margin: 0 0 18px;
        padding: 0 20px;
    }

    .gnav__wrap ul li a {
        padding: 10px 15px;
        display: block;
        color: #4c6a90;
        text-decoration: none;
        border: 2px solid #4c6a90;
        border-radius: 20px;
    }

    .gnav__wrap ul li.f-icon-s {
        display: inline-block;
        margin: 0;
    }

    .gnav__wrap ul li.f-icon-s a {
        border: none;
        padding: 0;
    }

    .gnav__wrap ul li.f-icon-s img {
        width: 35px;
    }

    .gnav__wrap ul li.f-icon-s .my-parts::after {
        background: none;
    }

    .slider_point {
        min-width: 100%;
        height: 100vh;
        min-height: 400px;
    }

    .slider_point h2 {
        text-align: center;
        font-size: 5vw;
        line-height: 1.7em;
        letter-spacing: 0.01em;
        width: 95%;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    /*スクロールボタン*/
    .arrowInner p {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        text-align: center;
    }

    .arrow {
        margin: 10px auto 0 auto;
    }

    .arrowWrap {
        height: auto;
        width: 100%;
    }

    /*スクロールボタン*/

    .five_box li {
        width: auto;
        display: block;
        padding: 10px;
        border-bottom: 1px solid #859dbb;
        border-right: none;
        margin: 0 0 20px;
    }

    .five_box li:first-of-type {
        border-bottom: 1px solid #859dbb;
        border-left: none;
    }


    .img_box,
    ul.two_group {
        width: auto;
        display: block;
        text-align: center;
    }

    .text_box,
    ul.two_group li,
    ul.two_group li:first-of-type,
    .main_two_box,
    .main_two_box:first-child {
        padding: 0;
        margin: 20px 0 0;
        width: 100%;
        display: block;
    }

    ul.two_group li.text {
        font-size: 20px;
    }

    .top_content_box {
        padding: 30px 15px;
    }

    .page_content {
        min-width: 100%;
    }


    .page_title {
        position: static;
        min-width: 100%;
        height: auto;
        padding: 35vw 0 16vw;
        background-position: bottom center;
        background-size: auto 100%;
        margin: 70px 0 0;
    }


    .page_title h2 {
        line-height: 0;
        height: 60px;
        padding: 30px;
        bottom: -60px;
        position: absolute;
        width: 100%;
        font-size: 20px;
    }

    .page_title h2:before,
    .page_title h2:after {
        width: 40px;
        top: 30px;
    }

    .salon_list li,
    .salon_list li:nth-child(2n) {
        width: 100%;
        margin: 0 0 20px 0;
        padding: 15px;
        display: block;
    }

}


/*=========================
タブレットなど
===========================*/
@media screen and (max-width: 768px) {

    /*勉強会　各委員会 1月〜12月*/
    table.study-list tbody tr,
    table.study-list tbody th,
    table.study-list tbody td {
        width: auto;
        display: block;
    }

    table.study-list tbody td {
        font-size: 15px;
    }

    table.study-list tbody td:first-of-type {
        background: #f2f2f2;
        text-align: center;
    }

    table.study-list tbody th,
    table.study-list tbody td {
        border: none;
    }

    table.study-list tbody tr {
        margin: 0 0 20px;
        border: 1px solid #ccc;
    }

    table.study-list thead {
        display: none;
    }

    table.study-list tbody th {
        background: #859dbb;
        color: #ffff;
        padding: 5px;
    }

    table.study-list tbody th {
        background: #859dbb;
        color: #ffff;
    }

    table.study-list tbody td.file-pdf a {
        text-align: left;
        padding: 10px 10px 10px 50px;
        font-size: 13px;
        border: 1px solid #ccc;
        color: #4d6a8b;
        background: url(./images/pdf-icon.png) no-repeat left;
        background-size: 20px;
        background-position: 15px;
    }

    table.study-list tbody td.file-pdf {
        margin: 0 10px 10px;
        width: auto;
        background: #f2f2f2;
        padding: 0;
    }

    table.study-list tbody td:nth-of-type(2) {
        border-bottom: 1px solid #ccc;
        margin: 0 0 20px;
    }

}


/*=========================
スマホなど
===========================*/
@media screen and (max-width:540px) {
    body {
        font-size: 14px;
    }

    #top-head p.t-text {
        font-size: 11px;
        letter-spacing: 0.05em;
    }

    .add ul li,
    .add ul {
        float: none;
        width: auto;
    }

    .top_concept,
    .mes_title {
        font-size: 16px;
        text-align: left;
    }

    .mes_title .mas_name {
        font-size: 14px;
    }

    .concept_title h3,
    .h2_top_title,
    h3.salon_title {
        font-size: 24px;
    }

    .top_concept br {
        display: none;

    }

    h3.main_title {
        font-size: 20px;
        text-align: left;
    }

    .title_bg,
    .text_more_link a {
        font-size: 18px;
    }

    .details_text {
        text-align: left;
    }


    .title_word,
    .mes_title_word,
    h2.voice_company {
        font-size: 18px;
        text-align: left;
    }

    .main_concept {
        padding: 10px;
    }


    .text_more_link {
        width: auto;
    }

    .about_bottom,
    .mes_title .mas_name,
    .mes_title p {
        width: 100%;
    }

    .voice_box .voice_img,
    .voice_box .voice_text {
        width: 100%;
        display: block;
    }

    .voice_box .voice_text {
        margin: 20px 0 0 0;
    }

    .voice_box {
        padding: 30px 15px;
    }

    .study_subtitle {
        font-size: 20px;
    }

    /*お問い合わせテーブルフォーム*/
    .table-res-form th,
    .table-res-form td,
    .table-res-form tr {
        width: 100%;
        text-align: center;
        display: block;
        border: none;
    }

    footer .logo {
        width: 120px;
    }

    .line-sp-icon {
        width: 70px;
        display: block;
        position: fixed;
        bottom: 15px;
        right: 15px;
        z-index: 10;
    }

}