@charset "urf-8";


/* Base
   ========================================================================== */

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

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure,  footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}

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

ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    text-decoration: none;
    vertical-align: baseline;
    background: transparent;
}

ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #ff9;
    color: #000; 
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

hr {
    display: block;
    height: 1px;
    border: 0;   
    border-top: 1px solid #333;
    margin: 0;
    padding: 0;
}

input, select {
    vertical-align: middle;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #f4f4f4;
    color: #282828;
    font-size: 13px;
    font-size: 1.3rem;
    font-family: 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    line-height: 1;
	-webkit-font-smoothing: antialiased;
	        font-smoothing: antialiased;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
}

img[src$=".svg"] {
    width: 100%;
}

button {
    line-height: 1;
}

@media print, screen and (min-width: 769px) {
    
    body {
        background-color: #fff;
        font-size: 15px;
        font-size: 1.5rem;
    }
    
}


/* Utility Classes
   ========================================================================== */

/* Theme Color ------------------------------- */

.theme {
    background: -webkit-gradient(linear, left top, right top, from(#0da99e), to(#00859c));
    background: linear-gradient(to right, #0da99e, #00859c);
    color: #fff;
}

/* Background Color -------------------------- */

.bg-white {
    background-color: #fff;
}

/* Link Text --------------------------------- */

.text-link {
    border-bottom: 1px solid;
    color: #0088de;
}

.text-link:visited {
    color: #632e95;
}


/* Layout
   ========================================================================== */

/*
.l-header {
    padding: 15px 0 0;
}
*/

.l-main {
    max-width: 980px;
    margin: auto;
}

.l-footer {
    padding-top: 20px;
    border-top: 3px solid #eaeaea;
}

@media print, screen and (min-width: 769px) {
    .l-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 30px 5% 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .l-footer {
        padding-top: 50px;
    }
}


/* Module
   ========================================================================== */

/* Button ------------------------------------ */

.btn {
    display: inline-block;
    padding: 10px 0;
    border-radius: 3px;
    font-weight: bold;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
    white-space: nowrap;
}

@media print, screen and (min-width: 769px) {
    .btn {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

/* Plus Icon --------------------------------- */

.icon-plus {
    display: inline-block;
    position: absolute;
    width: 26px;
    height: 26px;
}

.icon-plus span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #2e6db1;
}

.icon-plus span:first-child {
    width: 3px;
    height: 100%;
}

.icon-plus span:last-child {
    width: 100%;
    height: 3px;
}


/* Site Header
   ========================================================================== */

.l-header {
    border-bottom: 3px solid #eaeaea;
}

.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 99;
    min-height: 75px;
    padding: 0 20px 5px;
    background-color: #fff;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-logo {
    width: 50%;
    max-width: 300px;
    padding-top: 10px;
}

.manual {
    display: block;
    margin: 0 0 0 auto;
    position: relative;
}

.manual.manual-pc {
    display: none;
}

.manual.manual-sp {
  position: static;
}

.manual-button button {
    display: block;
    margin: 5px 15px 10px auto;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #4caf50;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    background-color: #4caf50;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    text-indent: 1px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    outline: none;
}

.manual-sp .manual-button button {
    margin: 0 5px 0 0;
    padding: 7px 15px;
    background-color: transparent;
    border: 1px solid #eee;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.manual-button button:hover {
    opacity: .7;
}

.manual-button button img {
    vertical-align: middle;
    width: 12px;
    margin-right: 10px;
}

.manual-sp .manual-button button img {
  display: block;
  margin: 0;
}

.manual-button button span {
    font-weight: inherit;
    vertical-align: middle;
}

.manual-menu {
    display: none;
}
    
.manual-menu.is-show {
    display: block;
}
    
    .manual-menu {
        position: absolute;
        top: 30px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #fff;
        width: 95%;
        max-width: 400px;
        z-index: 99;
    }

.manual-sp .manual-menu {
  top: 60px;
}
    
    .manual-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: 1px solid #ccc;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .manual-item {
        width: 100%;
        text-align: center;
        font-size: 14px;
        line-height: 3;
        letter-spacing: 1px;
    }
    
    .manual-item:first-of-type {
        border-bottom: 1px solid #ccc;
    }
    
    .manual-item:nth-of-type(2) {
        border-bottom: 1px solid #ccc;
    }
    
    .manual-item:nth-of-type(3) {
        border-bottom: 1px solid #ccc;
    }
    
    .manual-item a {
        display: block;
        color: #0188de;
    }

.header-nav-sp-item.manual-sp {
    border-bottom: none;
}

.manual-sp-button {
    display: block;
    width: 100%;
    padding: 14px 5px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    color: #333;
    font-weight: bold;
    text-align: left;
    outline: none;
}

.manual-sp-button img {
    vertical-align: middle;
    width: 18px;
    margin-right: 10px;
}

.manual-sp-button span {
    font-weight: inherit;
    font-size: 13px;
    vertical-align: middle;
}

.manual-sp-list {
    height: 0;
    overflow: hidden;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.manual-sp-list.is-show {
    height: auto;
}

.manual-sp-item {
    margin-left: 30px;
    border-bottom: 1px solid #eee;
}

@media print, screen and (min-width: 769px) {
    
    .header-main {
        display: block;
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .header-logo {
        width: auto;
        padding: 0;
    }
    
    .manual {
        display: block;
        position: relative;
    }
  
  .manual.manual-sp {
    display: none;
  }
  
  .manual.manual-pc {
    display: block;
  }
    
    .manual-menu {
        position: absolute;
        top: 48px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: #fff;
        width: 450px;
        z-index: 99;
    }
    
    .manual-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border: 1px solid #ccc;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .manual-item {
        width: 50%;
        text-align: center;
        font-size: 14px;
        line-height: 3;
        letter-spacing: 1px;
    }
    
    .manual-item:first-of-type {
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
    
    .manual-item:nth-of-type(2) {
        border-bottom: 1px solid #ccc;
    }
    
    .manual-item:nth-of-type(3) {
        border-right: 1px solid #ccc;
        border-bottom: none;
    }
    
    .manual-item a {
        display: block;
        color: #0188de;
    }
    
    .manual-item a:hover {
        text-decoration: underline;
    }
    
    .manual-button button {
        margin: 0 15px 0 0;
        padding: 10px 24px;
        font-size: 15px;
    }
    
    .manual-button button img {
        width: 18px;
    }
}

/* Navigation -------------------------------- */

/* SmartPhone */

.header-nav-pc {
    display: none;
}

.header-nav-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav-sp-btn {
    display: inline-block;
    position: relative;
    width: 40px;
    margin-left: 10px;
    text-align: center;
}

.header-nav-sp-btn img {
    width: auto;
    height: 30px;
}

.header-nav-sp-btn span {
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #848484;
    font-size: 10px;
    font-size: 1.0rem;
    white-space: nowrap;
}

/** Hamburger Button **/

.hamburger-btn,
.hamburger-btn span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.hamburger-btn {
    position: relative;
    width: 38px;
    height: 24px;
    margin: 0 0 0 10px;
}

.hamburger-btn span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #02a89d;
}

.hamburger-btn span:first-child {
    top: 0;
}

.hamburger-btn span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hamburger-btn span:last-child {
    bottom: 0;
}

.hamburger-btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
}
.hamburger-btn.active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
}

/** スマホメニュー **/

.header-nav-sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 98;
    width: 100%;
    min-height: 100%;
    padding: 75px 0 55px;
    overflow: scroll;
    background-color: #fff;
    -webkit-transition: .4s ease;
    transition: .4s ease;
}

.header-nav-sp-menu.open {
    -webkit-transform: translate(0);
    transform: translate(0);
}

body.scroll-disabled {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.header-nav-sp-title {
    padding: 20px;
    background-color: #02a89d;
}

.header-nav-sp-title span {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.header-nav-sp-menu nav {
    padding: 0 15px;
}

.header-nav-sp-item {
    border-bottom: 1px solid #eee;
}

.header-nav-sp-item a {
    display: block;
    padding: 20px 5px;
    color: #333;
    font-weight: bold;
}


/* DeskTop */

@media print, screen and (min-width: 769px) {
    .header-nav-sp,
    .header-nav-sp-menu {
        display: none;
    }
    
    .header-nav-pc {
        display: block;
        width: 100%;
        max-width: 1440px;
        margin: auto;
        padding-top: 30px;
    }
    
    .header-nav-pc-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    
    .header-nav-pc-item a {
        display: inline-block;
        padding: 8px 10px;
        border-bottom: 3px solid transparent;
        color: #282828;
        font-weight: bold;
        white-space: nowrap;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
    
    .header-nav-pc-item a:hover {
        border-bottom: 3px solid #02a89d;
    }
}

@media print, screen and (min-width: 1024px) {
    .header-nav-pc-item a {
        padding: 10px;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: .5px;
    }
}

@media print, screen and (min-width: 1200px) {
    .header-nav-pc {
        padding: 30px 10% 0;
    }
}

/* ログインボタン ----------------------------- */

.login-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
    border-top: 3px solid #eaeaea;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login-btns .btn {
    width: 48%;
    padding: 15px 0;
    letter-spacing: 2px;
    text-indent: 2px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}

.login-btns .btn:first-child {
    border:2px solid #f9c63c;
    background-color: #f9c63c;
    color: #fff;
}

.login-btns .btn:last-child {
    border: 2px solid #02a89d;
    background-color: #02a89d;
    color: #fff;
}

@media print, screen and (min-width: 769px) {
    .login-btns {
        padding: 0;
        border: none;
    }
    
    .login-btns .btn {
        width: 160px;
        padding: 12px 0;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }
    
    .login-btns .btn:first-child {
        margin-right: 10px;
    }
    
    .login-btns .btn:first-child:hover {
        background-color: #fff;
        color: #f9c63c;
    }
    
    .login-btns .btn:last-child:hover {
        background-color: #fff;
        color: #02a89d;
    }
}

/* ログアウトボタン ----------------------------- */

.logout-btn {
    display: none;
    margin-top: auto;
    margin-bottom: auto;
}

.logout-btn .btn {
    width: 160px;
    padding: 15px 0;
    border: 2px solid #ccc;
    color: #555;
    font-size: 14px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.logout-btn .btn:hover {
    border-color: #aaa;
    background-color: #f9f9f9;
    background-color: #fafafa;
}

@media print, screen and (min-width: 769px) {
    .logout-btn {
        display: block;
    }
}

/* ログイン中のアカウント */
.login-account {
    width: 100%;
    padding: 0 20px 10px;
    color: #555;
    font-size: 12px;
    letter-spacing: .5px;
}

.login-account p {
    line-height: 1.25;
}

@media print, screen and (min-width: 769px) {
    .login-account {
        padding: 0;
        font-size: 14px;
        text-align: right;
    }
}


/* Site Footer
   ========================================================================== */

.footer-main {
    margin-bottom: 50px;
    padding: 0 20px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 35px;
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 5px;
}

.copyright {
    color: #848484;
    font-weight: bold;
    font-size: 11px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.copyright span {
    display: inline-block;
    -webkit-transform: scale(1.7);
    transform: scale(1.7);
}

.footer-bar {
    width: 100%;
    height: 50px;
}

@media print, screen and (min-width: 769px) {
    .footer-main {
        max-width: 980px;
        margin: 0 auto 50px;
    }
}

/* Navigation -------------------------------- */

.footer-nav nav {
    margin-bottom: 35px;
}

.footer-nav-item {
    margin-bottom: 10px;
    white-space: nowrap;
}

.footer-nav-item:last-of-type {
    margin-bottom: 0;
}

.footer-nav-item a {
    display: inline-block;
}

.footer-admin {
    margin-bottom: 10px;
    color: #000;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: 1px;
}

.footer-list {
    padding-left: 10px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media screen and (min-width: 769px) {
    .footer-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    
    .footer-nav nav {
        margin-bottom: 0;
    }
    
    .footer-nav-item {
        margin-bottom: 18px;
    }
    
    .footer-info {
        margin-left: 50px;
    }
    
    .footer-admin {
        font-size: 16px;
    }
    
    .footer-list {
        padding-left: 20px;
    }
}


/* Errorbox -------------------------------- */

#errorbox,
#errorbox2 {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #f00;
    border-radius: 5px;
    background-color: #ffeaea;
    color: #f00;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: .5px;
}

#errorbox:empty,
#errorbox2:empty {
    display: none;
}


/* 画面下部固定メニュー ここから --------------------------- */

.bottom-menu {
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
    height: 55px;
    background-color: #fafafa;
}

.bottom-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.bottom-menu-item {
    position: relative;
    width: 19%;
    width: calc(20% - 5px);
    height: 100%;
    text-align: center;
}

.bottom-menu-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.bottom-menu-item a img {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 30px;
}

.bottom-menu-mypage a img {
    height: 30px;
    border-radius: 50%;
}

.footer-bar {
    height: 105px;
}

@media print, screen and (min-width: 769px) {
    .bottom-menu {
        display: none;
    }
    
    .footer-bar {
        height: 50px;
    }
}

/* 画面下部固定メニュー ここまで --------------------------- */


/* Auth Alert -------------------------------- */

.auth-alert {
    margin: 30px 15px;
    padding: 20px 15px;
    background-color: #ffeaea;
    color: #f00;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: .5px;
}

@media print, screen and (min-width: 769px) {
    .auth-alert {
        margin: 60px 0;
        padding: 30px 20px;
        font-size: 16px;
    }
}