@charset "UTF-8";

/* 基本設定 */
body {
    font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
    background-color: #EDE5DC;
}

.about,
.craft,
.course,
.student,
.lesson,
.footer_nav {
    display: flex;
    justify-content: center;
}

/* アバウト、クラフト、コース、生徒、レッスン */
.container {
    width: 980px;
    margin: 40px 0 70px 0;
}

ul,
li,
ol {
    list-style: none;
}

/* ヘッダーの問い合わせボタン */
.btn {
    color: #B06B42;
    font-weight: 300;
    background-color: #fff;
    border-color: #603419;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    padding: 8px 15px;
}

.btn:hover {
    color: #fff;
    background-color: #603419;
    transition: 0.3s;
}

/* ボタン２ */
.btn_2 {
    color: #B06B42;
    font-size: 14px;
    font-weight: 300;
    background-color: #fff;
    border-radius: 10px;
    border-color: #603419;
    border-width: 2px;
    border-style: solid;
    padding: 12px 15px;
    text-align: left;
    position: relative;
}

.btn_2:hover {
    color: #fff;
    background-color: #603419;
    transition: 0.3s;
}

.btn_2::after {
    content: "";
    display: inline-block;
    position: absolute;
    gap: 0;
    top: 50%;
    right: 20px;
    height: 10px;
    width: 10px;
    border-top: 2px solid #B06B42;
    border-right: 2px solid #B06B42;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
}

.btn_2:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    background-color: #603419;
    transition: 0.2s;
}


/* 中見出し 親 */
.h2 {
    display: flex;
    justify-content: flex-start;
    padding: 25px 0 20px 43px;

}

/* 中見出し 子 */
h2 {
    font-size: 28px;
    font-weight: 400;
    position: relative;
}

/* 中見出しの装飾アイコン */
h2::before {
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -43px;
    width: 33px;
    background-image: url(../images/icon01.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}



/* ヘッダー ---------------------------------- */

.header {
    background-color: #B06B42;
    opacity: .9;
    width: 100%;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
}

/* ヘッダーのコンテナ */
.container_header {
    display: flex;
    justify-content: space-between
}

/* タイトルエリア */
.title_area {
    width: 300px;
    display: inline-block;
}

.sub_ttl {
    font-size: 10px;
    font-weight: 400;
    margin: 15px 0 10px 0;
}

/* Famm craft */
h1 {
    font-family: "europa", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    margin-bottom: 20px;
}


/* ナビエリア */
.nav_area {
    display: inline-block;
}

/* ヘッダーのリスト横並び */
header ul {
    display: flex;
}

/* ナビボタンエリア親 */
.nav_btn_area {
    display: flex;
    justify-content: flex-end;
}

/* snsボタン */
.nav_btn_ico {
    width: 85px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* 問い合わせボタン */
.nav_btn {
    font-size: 14px;
    font-weight: 300;
    margin: 15px 0 10px 25px;
    display: flex;
    width: 236px;
    justify-content: space-between;
}

.nav_btn p {
    width: 114px;
}

/* ナビメニュー */
.nav_menu a {
    font-size: 14px;
    font-weight: 300;
    padding: 0 10px;
}

/* 境界の縦棒 */
.nav_menu {
    border-right: 1px solid #fff
}

.nav_menu li {
    border-left: 1px solid #fff
}



/* メインビジュアル ---------------------------------- */

/* 親 */
main {
    position: relative;
    width: 100%;
}

/* 画像 */
main img {
    width: 100%;
}

/* キャッチコピー */
main p {
    font-family: "europa", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    font-size: 64px;
    line-height: 1.2;
    position: absolute;
    bottom: 30%;
    left: 10%;
}



/* アバウト ---------------------------------- */

.about_wrap {
    display: flex;
}

.about_img {
    width: 450px;
    height: 284px;
    padding-left: 20px;
    box-shadow: 8px 8px 0px 0 #D9D2CB;
}

/* 本文とボタン */
.about_txt_btn {
    margin-left: 20px;
    height: 284px;
}

.about_txt {
    font-size: 16px;
    line-height: 2;
    position: relative;
}

.about .btn_2 {
    width: 190px;
    display: block;
    margin: 40px auto 0;
}



/* クラフト ---------------------------------- */

.craft {
    background-color: #FBF6D8;
}

.sample {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.sample li img {
    width: 270px;
    box-shadow: 8px 8px 0px 0 #E5E0C7;
}

.sample li p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 1em 0;
}

/* ボタン 親 */
.craft_btn {
    display: flex;
    justify-content: center;
}

.craft .btn_2 {
    width: 208px;
}



/* コース ---------------------------------- */

.wrap_course {
    width: 920px;
    margin: 0 auto;
}

.wrap_course li {
    padding-bottom: 60px;
}

/* 小見出し */
h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
}

.course_box {
    display: flex;
}

/* 画像と本文入れ替える */
.flex-reverse {
    flex-direction: row-reverse;
}

.course li img {
    width: 480px;
    height: 270px;
    padding-left: 10px;
    box-shadow: 8px 8px 0px 0 #D9D2CB;
}

/* 本文とボタン */
.course_txt_btn {
    margin-left: 20px;
}

/* 本文の塊 */
.course_li_wrap {
    padding-bottom: 40px;
}

/* 内容 */
.course_li_txt {
    font-size: 16px;
    line-height: 1.5em;
    padding-bottom: 10px;
    padding-left: 1em;
    text-indent: -1em;
}

/* 項目名 */
.course_li_txt span {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

/* ボタン親 */
.course_btn {
    display: flex;
}

.course .btn_2 {
    width: 163px;
    display: block;
    margin: 0 auto;
}



/* 生徒 ---------------------------------- */

.student {
    background-color: #FBF6D8;
}

.student ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.student img {
    width: 300px;
    height: 225px;
    box-shadow: 8px 8px 0px 0 #D9D2CB;
    margin-bottom: 25px;
}

.student li p {
    width: 300px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* ボタン 親 */
.student_btn {
    display: flex;
    justify-content: center;
}

.student .btn_2 {
    width: 165px;
}



/* レッスン ---------------------------------- */

.lesson ul {
    padding-left: 40px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.lesson img {
    width: 270px;
    margin: 0 20px 20px 20px;
}

.lesson p {
    width: 270px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 auto;
}



/* 問い合わせ ----------------------------------　*/

.inquiry {
    display: flex;
    justify-content: center;
}

.h2_inquiry {
    display: flex;
    justify-content: center;
}

/* mb30px */
.inquiry_head {
    margin-bottom: 30px;
    color: #603419;
    position: relative;
}

/* 見出しの後ろのアイコン */
.inquiry_head::after {
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -43px;
    width: 33px;
    background-image: url(../images/icon01.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* 問い合わせボックスの破線 */
.inquiry_box {
    width: 740px;
    background-color: #FBF6D8;
    padding: 30px 20px 40px;
    border-radius: 40px;
    box-shadow: 8px 8px 0px 0 #D9D2CB;
    outline: dashed 6px #603419;
    outline-width: 3px;
    outline-offset: -6px;
}

/* 本文 */
.inquiry p {
    line-height: 1.5;
    width: 470px;
    margin-bottom: 30px;
}

/* 問い合わせボタン */
.inquiry_btn {
    width: 80%;
    display: flex;
    margin: 0 auto;
    justify-content: space-around;
    font-size: 24px;
}

.btn_3 {
    width: 220px;
    color: #B06B42;
    font-size: 24px;
    font-weight: 300;
    background-color: #fff;
    border-radius: 10px;
    border-color: #603419;
    border-width: 2px;
    border-style: solid;
    padding: 12px 25px;
    text-align: left;
    position: relative;
}

.btn_3:hover {
    color: #fff;
    background-color: #603419;
    transition: 0.3s;
}

.btn_3::after {
    content: "";
    display: inline-block;
    position: absolute;
    gap: 0;
    top: 50%;
    right: 30px;
    height: 10px;
    width: 10px;
    border-top: 2px solid #B06B42;
    border-right: 2px solid #B06B42;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
}

.btn_3:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    background-color: #603419;
    transition: 0.2s;
}



/* フッターナビ　---------------------------------- */

.footer_nav {
    background-color: #B06B42;
    color: #fff;
}

.container_footer_nav {
    margin: 40px auto;
    width: 840px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* フッタートップ */
.f_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.f_ttl_adderss {
    width: 400px;
}

.ttl {
    font-family: "europa", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    padding-bottom: 20px;
}

/* ナビ１、２ */
.f_nav {
    width: 350px;
}

.f_nav_1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1em;
}

.f_nav p {
    line-height: 1.5;
}

.f_nav_2 {
    padding-left: 1em;
}

/* ボタン親 */
.f_btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.f_btn .btn_2 {
    width: 145px;
}

/* ナビ３ */
.nav_3 ul {
    display: flex;
    justify-content: center;
}

.nav_3 a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 10px;
}

/* 縦棒 */
.nav_3 .border {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}



/* フッター　---------------------------------- */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    background-color: #603419;
}

footer p {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}