@charset "UTF-8";

/*
  sp ~599px
  pc 600px~
*/

/*================
  変数宣言
================*/
:root {
    --color-base:   #FADAB7;     /* 70%：背景色とか */
    --color-main:   #F7B977;     /* 25%：イメージカラー */
    --color-accent: #F39838;     /*  5%：差し色 */
    --color-text:   #666666;     /* 文字の色 */
    --color-white:  #ffffff;
    --container-max: 1200px;
    --remix-icon: remixicon !important;
    --gutter_base: 4px;
    --section_gutter:       calc(var(--gutter_base)*25);
    --section_gutter_sp:    calc(var(--gutter_base)*15);
    --contents_gutter:      calc(var(--gutter_base)*15);
    --contents_gutter_sp:   calc(var(--gutter_base)*10);
    --contents_side_gutter: calc(var(--gutter_base)*5);
}

/*================
  共通設定
================*/

body {
    font-family: 'Work Sans', 'Noto Sans JP', 'Hiragino Kaku Gothic', Meiryo, sans-serif;
    font-weight: normal;
    line-height: 1.75;
    padding-top: 60px;
  }
  
a {
    transition: all .3s;
}

a:hover {
    opacity: .75;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}
  
  
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 15px; */
    padding-right: 15px;
}

@media screen and (min-width: 1200px) {

    .container-full {
        margin-left: calc((100vw - var(--container-max)) / 2);
        margin-right: calc((100vw - var(--container-max)) / 2);
    }
}

.btn {
    display: inline-block;
    line-height: 1;
    border-radius: 4px;
    padding: 1em 2em;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-main);
    color: #000;
}

.hidden {
    display: none;
}

.section {
    padding: 5rem 0;
}

.section-head {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    letter-spacing: .08em;
    font-weight: 200;
    position: relative;
    margin: 10px 0 15px 0;
    border-bottom: 2px solid var(--color-accent);
}
/* 
.section-head::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-main);
    border-radius: 50%;
    left: 50%;
    top: 150%;
    margin-left: -6px;
} */


.section-ex {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    letter-spacing: .08em;
    font-weight: 200;
    position: relative;
}


@media (hover: hover) {
    a:hover {
        opacity: 0.7;
    }
}

@media (hover: none) {
    a:active {
        opacity: 0.7;
    }
}

.accent {
    color:var(--color-accent);
}

.underline {
    border-bottom:solid;
    border-color:var(--color-accent);
    border-width:2px;
}

img {
    max-width: 100%;
}

.center {
    width: 90vw;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: var(--contents_gutter);
    background-color: var(--color-base);
}

.wrapper {
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--contents_gutter);
    padding: 20px;
    text-align: center;
}

.wrapper:last-child {
    margin-bottom: 0;
}

.section-title {
    display: inline-block;
    font-size: var(--size_lg);
    font-weight: 400;
    color: #fff;
    width: 60vw;
    max-width: 600px;
    line-height: 1.8;
    background-color: var(--color-main);
    margin-top: var(--section_gutter);
    margin-bottom: var(--contents_gutter);
    border-radius: 20px;
}

.content-title {
    display: inline-block;
    font-size: var(--size_md);
    margin: 10px 0 15px 0;
    border-bottom: 2px solid var(--color-accent);
}

@media screen and (max-width:599px) {

    .center {
        max-width: 560px;
    }

    .wrapper {
        max-width: 520px;
    }

    section.wrapper {
        margin-bottom: var(--contents_side_gutter);
    }

    .section-title {
        max-width: 300px;
        margin-top: var(--section_gutter_sp);
        margin-bottom: var(--contents_gutter_sp);
    }

    /*=======max-width:599px=======*/
}
  



/*================
    ヘッダー
================*/


/* ------------------- 左上のロゴ ------------------- */

.logo img{
    vertical-align: middle;
    display: inline-block;
}
.logo span{
    display: inline-block;
    padding: 20px;
}

.site-title {
    color: #F39800;
}



header {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    font-size: 120%;
    background-color: var(--color-main);
}


.site-header {
    background-color: var(--color-base);
    height: 60px;
    padding-top: 20px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255 255 255 / .9);   /* メニューバーの半透明 */


    /* width: 100vw;
    left: 50vw;
    transform: translateX(-50%); */
}
  
.site-header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header-logo {
    font-size: 1.1rem;
    font-weight: 200;
}

.site-header-logo a {
    text-decoration: none;
    color: #000;
}

.site-header-logo i {
    color: var(--color-accent);
    vertical-align: middle;
    margin-right: .2em;
}

.site-header-logo img {
    width: 50px;
    height: 100%;
}

.site-header-nav ul {
    display: flex;
    list-style: none;
}


.site-header-nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: .9rem;
    position: relative;
}

.site-header-nav ul li:not(:last-child) {
    margin-right: 2em;
}


.site-header-nav ul li a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 1px;
    background-color: #000;
    width: 100%;
}

.site-header-nav i {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--color-accent);
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .site-header-logo {
        font-size: 1.5rem;
    }
}



/*================
    フッター
================*/

footer {
    padding: 10px 0;
    text-align: center;
    color: #fff;
    background-color: var(--color-main);
}

.site-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
}

.site-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer-sns a {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--color-white);
    text-decoration: none;
}

.site-footer-copyright {
    font-size: 1.2rem;
    color: var(--color-white);
}



/*================
ハンバーガーメニュー
================*/

.site-header-navbtn {
    display: none;      /* ボタンをレスポンシブ対応 */
    position: fixed;    /* 画面固定表示 */
    top: 15px;          /* 画面トップからの距離10px */
    right: 15px;        /* 画面の右側からの距離10px */
    width: 40px;        /* 幅と高さを40px */
    height: 40px;
    background: none;   /* 背景の設定をリセット（背景色などが無しとなる） */
    border: none;       /* 枠線の設定をリセット */
    z-index: 1;         /* 要素の重ね順を1レベル上げて他の要素よりも上に表示 */
}



.site-header-navbtn span,
.site-header-navbtn::before,
.site-header-navbtn::after {
    width: 30px;
    height: 1.5px;
    background-color: #666666;
    position: absolute;
    top: 50%;
    left: 5px;
    transition: transform .4s;
}

.site-header-navbtn::before,
.site-header-navbtn::after {
    content: '';
}

.site-header-navbtn::before {
    transform: translateY(-8px);
}

.site-header-navbtn::after {
    transform: translateY(8px);
}

body.is-nav-open .site-header-navbtn span {
    transform: scaleX(0);
}

body.is-nav-open .site-header-navbtn::before {
    transform: translateY(0) rotate(45deg);
}

body.is-nav-open .site-header-navbtn::after {
    transform: translateY(0) rotate(-45deg);
}

@media screen and (max-width:599px) {

    .site-header-navbtn {
        display: block;
    }

    .site-header-nav {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: var(--color-main);
        transform: translateX(-100%);
        transition: transform .6s;
    }

    body.is-nav-open .site-header-nav {
        transform: translateX(0);
    }

    .site-header-nav ul {
        height: 100%;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .site-header-nav ul li {
        margin-left: 0;
        margin-bottom: var(--contents_gutter_sp);
    }

    .site-header-nav ul li a {
        font-size: var(--size_lg);
    }

    /*=======max-width:599px=======*/
}







