@charset "utf-8";

/* リセット */

* {
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre,
form, fieldset, input, textarea, p, blockquote, th, td, figure {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: bold;
}

ol, ul {
  list-style: none;
}

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

abbr, acronym {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}


/* Noto Sans JP -------------------------------------*/

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: local("Noto San CJK JP Light"),
    local('NotoSansJP-Light'),
    url('../fonts/NotoSansCJKjp-Light.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Light.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP"),
    local('NotoSansJP-Regular'),
    url('../fonts/NotoSansCJKjp-Regular.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"),
    local('NotoSansJP-Medium'),
    url('../fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"),
    local('NotoSansJP-Bold'),
    url('../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Bold.woff') format('woff');
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans CJK JP Black"),
    local('NotoSansJP-Black'),
    url('../fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
    url('../fonts/NotoSansCJKjp-Black.woff') format('woff');
}

/*-------------------------------------------------
/* 基本
--------------------------------------------------*/

:root {
  --text-color: #242424;
  --visited-color: #707070;
  --bg-color: #14a83b;
  --red-color: #e60012;
}

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'BIZ UDPGothic', 'Noto Sans CJK JP', 'Noto Sans JP', Meiryo, sans-serif;
  color: #242424;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.6;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

.en-serif {
  font-family: Georgia, serif;
}

.en,
.foot-copy,
.topBtn {
  font-family: Verdana, 'Noto Sans JP', sans-serif;
}


a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: none;
}

/* iPhoneTELリンク色変更なしにする */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.wrapper {
  position: relative;
}


/*****************************************
*
* ヘッダ
*
******************************************/

@media screen and (max-width: 833px) {
  header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    z-index: 1000;
    transition: 1s;
  }

  .head-hidden {
    transform: translateY(-100%);
  }
}

@media screen and (min-width: 834px), print {
  header {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 130px;
    vertical-align: bottom;
  }

  header::before {
    content: '';
    display: inline-block;
    width: 50%;
    height: 100%;
    background: #14a83b;
    background: var(--bg-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

/*------------------------------------------*/
/* ロゴ
/*------------------------------------------*/

h1 {
  font-size: 0;
}

.logo a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  z-index: 1;
  position: absolute;
}

@media screen and (max-width: 833px) {
  .logo a {
    background: url(../img/logo.png) no-repeat;
    background-size: 100%;
    width: calc(640px / 2.5);
    height: calc(80px / 2.5);
    top: 10px;
    left: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .logo a {
    background: url(../img/logo_w.png) no-repeat;
    background-size: 100%;
    width: calc(640px / 2);
    height: calc(80px / 2);
    top: 20px;
    left: 40px;
  }
}

/*------------------------------------------*/
/* スマホナビ
/*------------------------------------------*/

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

  /*!------------------------------------*\
    Base
\*!------------------------------------*/
  .drawer-open {
    overflow: hidden !important;
  }

  .drawer-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    background: #fff;
  }

  .drawer-menu {
    text-align: left;
    margin-top: 10px;
    padding: 0;
    list-style: none;
  }

  .drawer-menu li {
    position: relative;
    border-bottom: 1px solid #848484;
  }

  /*右側の三角アイコン*/
  .drawer-menu li::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border: 2px solid;
    border-color: #fff #fff transparent transparent;
    transform: rotate(45deg);
    position: absolute;
    top: 0.8em;
    right: 10px;
  }

  .drawer-menu li ul li {
    border-top: 1px solid #ccc;
    border-bottom: 0;
  }

  .drawer-menu li a {
    display: block;
    color: #1b1b1b;
    font-size: 1rem;
    padding: 5px 10px;
  }

  .drawer-menu li a:hover {
    text-decoration: underline;
    color: #555;
    background-color: transparent;
  }

  .drawer-menu__second li a {
    font-size: 0.9rem;
  }

  li.drawer-menu__home {
    position: relative;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /*矢印リセット*/
  li.drawer-menu__home::after {
    content: '';
    display: inline-block;
    width: 0px;
    height: 0px;
    border: 0px solid;
    border-color: transparent;
    transform: rotate(0deg);
  }

  li.drawer-menu__home a {
    border: 0;
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
    width: 40px;
    height: 30px;
  }

  li.drawer-menu__home a:before {
    content: '';
    height: 0px;
    width: 0px;
    display: block;
    /*屋根の幅*/
    border: 12px solid transparent;
    border-bottom-color: #1b1b1b;
    border-top: 0;
    position: absolute;
    /*屋根の位置*/
    top: 0px;
    left: 13px;
  }

  li.drawer-menu__home a::after {
    content: '';
    display: inline-block;
    /*建物の高さ*/
    height: 4px;
    /*建物の幅？*/
    width: 4px;
    display: block;
    /*建物の中の幅？*/
    border: 6px #1b1b1b solid;
    /*建物の中の高さ？*/
    border-top-width: 6px;
    border-bottom: 0;
    position: absolute;
    /*建物の位置*/
    top: 10px;
    left: 17px;
  }

  /*! overlay */
  .drawer-overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
  }

  .drawer-open .drawer-overlay {
    display: block;
  }

  /*!------------------------------------*\
    Top
\*!------------------------------------*/

  .drawer--top .drawer-nav {
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    -webkit-transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: top .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }

  .drawer--top.drawer-open .drawer-nav {
    top: 0;
  }

  .drawer--top .drawer-hamburger,
  .drawer--top.drawer-open .drawer-hamburger {
    right: 0;
  }

  /*!------------------------------------*\
    Left
\*!------------------------------------*/

  .drawer--left .drawer-nav {
    left: -16.25rem;
    -webkit-transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: left .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }

  .drawer--left.drawer-open .drawer-nav,
  .drawer--left .drawer-hamburger,
  .drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
    left: 0;
  }

  .drawer--left.drawer-open .drawer-hamburger {
    left: 16.25rem;
  }

  /*!------------------------------------*\
    Right
\*!------------------------------------*/

  .drawer--right .drawer-nav {
    right: -16.25rem;
    -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  }

  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
  }

  .drawer--right.drawer-open .drawer-hamburger {
    right: 16.25rem;
  }

  /*!------------------------------------*\
    Hamburger
\*!------------------------------------*/

  .drawer-hamburger {
    position: absolute;
    z-index: 104;
    top: 0;
    display: block;
    box-sizing: content-box;
    width: 20px;
    padding: 0;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: .75rem;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 0;
    outline: 0;
    background-color: transparent;
  }

  .drawer-hamburger:hover {
    cursor: pointer;
    background-color: transparent;
  }

  .drawer-hamburger-icon {
    position: relative;
    display: block;
    margin-top: 10px;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    width: 100%;
    height: 2px;
    -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    background-color: #1b1b1b;
  }

  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    position: absolute;
    top: -8px;
    left: 0;
    content: ' ';
  }

  .drawer-hamburger-icon:after {
    top: 8px;
  }

  .drawer-open .drawer-hamburger {
    /*開いた時のアイコンの背景*/
    width: 30px;
    height: 10px;
    background: #fff;
  }

  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    top: 0;
    /*開いた時の×の色*/
    background-color: #1b1b1b;
  }

  .drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /*!------------------------------------*\
    accessibility
\*!------------------------------------*/

  /*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */

  .sr-only {
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }

  /*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */

  .sr-only-focusable:active,
  .sr-only-focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
  }

  /*!------------------------------------*\
    Sidebar
\*!------------------------------------*/

  .drawer--sidebar {
    background-color: #fff;
  }

  .drawer--sidebar .drawer-contents {
    background-color: #fff;
  }

  /*!------------------------------------*\
    Navbar
\*!------------------------------------*/

  .drawer--navbarTopGutter {
    padding-top: 3.75rem;
  }

  .drawer-navbar .drawer-navbar-header {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }

  .drawer-navbar {
    z-index: 102;
    top: 0;
    width: 100%;
  }

  /*! .drawer-navbar modifier */

  .drawer-navbar--fixed {
    position: fixed;
  }

  .drawer-navbar-header {
    position: relative;
    z-index: 102;
    box-sizing: border-box;
    width: 100%;
    height: 3.75rem;
    padding: 0 .75rem;
    text-align: center;
  }

  .drawer-navbar .drawer-nav {
    padding-top: 3.75rem;
  }

  .drawer-navbar .drawer-menu {
    padding-bottom: 7.5rem;
  }

  /*!------------------------------------*\
    Container
\*!------------------------------------*/

  .drawer-container {
    margin-right: auto;
    margin-left: auto;
  }

  /*!------------------------------------*\
    iPhoneでメニューをスクロールするとメニューが閉じてしまうバグ対策
\*!------------------------------------*/

  .drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--left.drawer-open .drawer-nav,
  .drawer--left .drawer-hamburger,
  .drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/*------------------------------------------*/
/* PCナビ
/*------------------------------------------*/

@media screen and (min-width: 834px), print {
  .drawer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 80px;
  }

  .drawer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    height: 50px;
    background: #fff;
    border-radius: 30px;
  }

  .drawer-menu li {
    padding-left: 40px;
  }

  .drawer-menu li:not([class="drawer-menu__contact"]):not([class="drawer-menu__membersonly"]) a {
    text-decoration: none;
    position: relative;
    color: #242424;
    color: var(--text-color);
    transition: all .5s ease;
  }

  .drawer-menu li:not([class="drawer-menu__contact"]):not([class="drawer-menu__membersonly"]) a:hover {
    color: #14a83b;
    color: var(--bg-color);
    text-decoration: none;
  }


  /* お問い合わせ・会員専用 --------------------------------*/
  .drawer-menu__contact a,
  .drawer-menu__membersonly a {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    width: 140px;
    height: 40px;
    position: absolute;
    top: 0;
    transition: all .5s ease;
  }

  .drawer-menu__contact a {
    background: #e60012;
    background: var(--red-color);
    right: 140px;
    padding-left: 30px;
  }

  .drawer-menu__membersonly a {
    background: #004986;
    right: 0;
    padding-left: 25px;
  }

  .drawer-menu__contact a::before,
  .drawer-menu__membersonly a::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s ease;
  }

  .drawer-menu__contact a::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='envelope' class='svg-inline--fa fa-envelope fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23fff' d='M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100%;
    width: 16px;
    height: 16px;
    left: 12px;
  }

  .drawer-menu__contact a:hover {
    text-decoration: none;
    background: #fff;
    color: #e60012;
    color: var(--red-color);
    border: solid 1px #e60012;
    border: solid 1px var(--red-color);
  }

  .drawer-menu__contact a:hover::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='envelope' class='svg-inline--fa fa-envelope fa-w-16' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23e60012' d='M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z'%3E%3C/path%3E%3C/svg%3E");
  }

  .drawer-menu__membersonly a::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='lock' class='svg-inline--fa fa-lock fa-w-14' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23fff' d='M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100%;
    width: calc(30px / 2.5);
    height: calc(34px / 2.5);
    left: 15px;
  }

  .drawer-menu__membersonly a:hover {
    text-decoration: none;
    background: #fff;
    color: #004986;
    border: solid 1px #004986;
  }

  .drawer-menu__membersonly a:hover::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='lock' class='svg-inline--fa fa-lock fa-w-14' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23004986' d='M400 224h-24v-72C376 68.2 307.8 0 224 0S72 68.2 72 152v72H48c-26.5 0-48 21.5-48 48v192c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V272c0-26.5-21.5-48-48-48zm-104 0H152v-72c0-39.7 32.3-72 72-72s72 32.3 72 72v72z'%3E%3C/path%3E%3C/svg%3E");
  }

  /* 非表示設定 --------------------------------*/
  .drawer-menu__home,
  .drawer-menu__sp,
  .drawer-menu__second {
    display: none;
  }

  .drawer-toggle {
    display: none;
  }
}


/*****************************************
*
* フッタ
*
******************************************/

footer {
  position: relative;
  margin-top: 100px;
}

footer::before {
  content: '';
  display: inline-block;
  width: 80%;
  height: 100%;
  background: #f2f5f6;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (min-width: 834px), print {
  footer {
    margin-top: 200px;
  }
}

/*--------------------------------*/
.footer {
  padding: 20px;
}

@media screen and (min-width: 834px), print {
  .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px;
  }
}

@media screen and (min-width: 1000px), print {
  .footer {
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
}

/* フッタ ロゴ・住所 --------------------------------*/
.foot-prof {
  text-align: left;
  font-size: 0.9rem;
}

@media screen and (max-width: 833px) {
  .foot-prof {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 834px), print {
  .foot-prof {
    margin-top: 170px;
    padding-bottom: 40px;
  }
}

/* フッタロゴ --------------------------------*/
.foot-logo a {
  display: inline-block;
  background: url(../img/logo.png) no-repeat;
  background-size: 100%;
  width: calc(640px / 2.5);
  height: calc(80px / 2.5);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  margin-bottom: 10px;
}

@media screen and (min-width: 834px), print {
  .foot-logo a {
    width: calc(640px / 2);
    height: calc(80px / 2);
  }
}

/* 住所 --------------------------------*/
.foot-jyusho p {
  display: inline-block;
}

.foot-jyusho p:nth-of-type(1) {
  margin-right: 1em;
}

/* フッタコピーライト --------------------------------*/
.foot-copy {
  font-size: 0.8rem;
  font-weight: 400;
  background: #fff;
  padding: 20px;
}

@media screen and (min-width: 834px), print {
  .foot-copy {
    text-align: right;
    padding-right: 40px;
  }
}

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

@media screen and (max-width: 833px) {
  .foot-nav {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  .foot-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.9rem;
  }

  .foot-nav a {
    color: #242424;
    color: var(--text-color);
    transition: all .5s ease;
  }

  .foot-nav a:visited {
    color: #707070;
    color: var(--visited-color);
  }

  .foot-nav a:hover {
    text-decoration: none;
    color: #14a83b;
    color: var(--bg-color);
  }

  .foot-nav ul {
    border-left: solid 1px #d3d8da;
    padding-top: 20px;
    padding-left: 20px;
  }

  .foot-nav ul:first-child {
    padding-right: 20px;
  }

  .foot-nav li {
    text-align: left;
    line-height: 2.5em;
  }
}

@media screen and (min-width: 1000px), print {
  .foot-nav ul {
    padding-top: 40px;
    padding-left: 40px;
  }

  .foot-nav ul:first-child {
    padding-right: 40px;
  }
}

/*****************************************
*
* フッタ上へ
*
******************************************/

.totop {
  position: fixed;
  right: 10px;
  bottom: -30px;
  display: block;
  width: calc(16px / 2);
  height: calc(60px / 2);
  transition: all .5s ease;
  z-index: 101;
}

.totop:before {
  content: '';
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 8 30' enable-background='new 0 0 8 30' xml:space='preserve'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23E60012' d='M0,10L4,0l4,10H5v20H3V10H0z'/%3E%3C/svg%3E");
  background-size: 100%;
  width: 8px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s ease;
}

@media screen and (max-width: 833px) {
  .totop.visible {
    bottom: 10px;
  }
}

@media screen and (min-width: 834px), print {
  .totop {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: 40px;
    bottom: 100px;
  }

  .totop:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .totop:hover {
    background: #e60012;
    background: var(--red-color);
  }

  .totop:hover:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 8 30' enable-background='new 0 0 8 30' xml:space='preserve'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23fff' d='M0,10L4,0l4,10H5v20H3V10H0z'/%3E%3C/svg%3E");
  }
}


/*****************************************
*
* 印刷用
*
******************************************/

@media print {
  body {
    width: 1000px;
    transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-print-color-adjust: exact;
  }

  /* FireFoxテーブル印刷バグ回避 */
  _:-ms-lang(x)::-ms-backdrop, .wrapper {
    overflow: auto;
    display: table;
  }
}

/*****************************************
*
* メイン
*
******************************************/

@media screen and (max-width: 833px) {
  .main {
    margin-top: 50px;
  }
}

@media screen and (min-width: 834px), print {
  .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80vh;
  }

  .main.sub {
    height: 330px;
  }
}

/* テキスト --------------------------------*/
.main-text {
  background: #14a83b;
  background: var(--bg-color);
}

.main-text p {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url(../img/top_maintext.png) no-repeat;
  background-size: 100%;
  width: calc(932px / 3);
  height: calc(516px / 3);
}

.main-text h2 {
  color: #fff;
}

@media screen and (max-width: 833px) {
  .main-text {
    padding: 20px;
  }

  .iphone .main-text {
    padding-bottom: 40px;
  }

  .main-text h2 {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 834px), print {
  .main-text {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .main-text p {
    width: calc(932px / 2.5);
    height: calc(516px / 2.5);
    animation: fadeIn;
    animation-duration: 1s;
  }

  .main-text h2 {
    font-size: 1.8rem;
    animation: fadeIn;
    animation-duration: 1s;
  }
}

@media screen and (min-width: 1000px), print {
  .main-text p {
    width: calc(932px / 2);
    height: calc(516px / 2);
  }
}


/* 画像 --------------------------------*/

@media screen and (max-width: 833px) {
  .main-image {
    margin-top: 20px;
  }

  .main-image img {
    width: calc(862px / 4);
    height: calc(732px / 4);
  }

  .sub .main-image img {
    width: calc(400px / 3);
    height: calc(400px / 3);
  }
}

@media screen and (min-width: 834px), print {
  .main-image {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    animation: fadeIn;
    animation-duration: 2s;
  }

  .main-image img {
    width: calc(862px / 2.5);
    height: calc(732px / 2.5);
  }

  .sub .main-image img {
    width: calc(400px / 2);
    height: calc(400px / 2);
  }
}

@media screen and (min-width: 1000px), print {
  .main-image img {
    width: calc(862px / 2);
    height: calc(732px / 2);
  }
}


/*****************************************
*
* パンくず
*
******************************************/

.breadcrumb {
  text-align: left;
  font-size: 0.8rem;
  margin-top: 40px;
  padding: 0 20px;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
}

.breadcrumb li:not(:last-child) {
  margin-right: 1.5em;
}

.breadcrumb li:not(:last-child)::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 2px solid;
  border-color: #e60012 #e60012 transparent transparent;
  border-color: var(--red-color) var(--red-color) transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: -1.2em;
}

.breadcrumb a {
  color: #242424;
  color: var(--text-color);
  transition: all .5s ease;
}

.breadcrumb a:visited {
  color: #707070;
  color: var(--visited-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 834px), print {
  .breadcrumb {
    text-align: right;
    margin-top: 60px;
    padding: 0 40px;
  }
}


/*****************************************
*
* 新着情報
*
******************************************/

/*------------------------------------------*/
/* リスト
/*------------------------------------------*/

.news-list {
  text-align: left;
}

.news-list a {
  color: #242424;
  color: var(--text-color);
  padding: 20px 0;
  transition: all .5s ease;
}

.news-list a:visited {
  color: #707070;
  color: var(--visited-color);
}

.news-list a:hover {
  color: #e60012;
  color: var(--red-color);
  text-decoration: none;
}

.news-list li:not(:first-child) {
  margin-top: 1em;
}

/* 日付 --------------------------------*/

@media screen and (max-width: 833px) {
  .news-date {
    display: block;
  }
}

@media screen and (min-width: 834px), print {
  .news-date {
    padding-right: 2em;
  }
}

/*------------------------------------------*/
/* タイトル
/*------------------------------------------*/

.news h3 {
  text-align: left;
  border-bottom: solid 2px #b9b9b9;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
}

@media screen and (max-width: 833px) {
  .news h3 {
    font-size: 1rem;
    font-weight: bold;
  }
}

@media screen and (min-width: 834px), print {
  .news h3 {
    font-size: 1.2rem;
  }
}


/*------------------------------------------*/
/* ページ送り
/*------------------------------------------*/

.news-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 60px;
}

.news-button li {
  width: 33%;
  height: 60px;
}

.news-button .list a,
.news-button .prev a,
.news-button .next a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #242424;
  color: var(--text-color);
  border: solid 1px #b9b9b9;
  transition: all .5s ease;
}

.news-button .prev a::before,
.news-button .next a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid;
  position: absolute;
  top: 24px;
  transition: all .5s ease;
}

.news-button .prev a::before {
  border-color: transparent transparent #242424 #242424;
  border-color: transparent transparent var(--text-color) var(--text-color);
  transform: rotate(45deg);
  left: 20px;
}

.news-button .next a::before {
  border-color: #242424 #242424 transparent transparent;
  border-color: var(--text-color) var(--text-color) transparent transparent;
  transform: rotate(45deg);
  right: 20px;
}

.news-button .list a:hover,
.news-button .prev a:hover,
.news-button .next a:hover {
  text-decoration: none;
  background: #b9b9b9;
}

@media screen and (max-width: 833px) {
  .news-button {
    margin-top: 40px;
  }

  .news-button li {
    height: 40px;
  }

  .news-button .prev a::before,
  .news-button .next a::before {
    width: 6px;
    height: 6px;
    top: 16px;
  }

  .news-button .prev a::before {
    left: 10px;
  }

  .news-button .next a::before {
    right: 10px;
  }
}

/*------------------------------------------*/
/* ページ送り 一覧ページ
/*------------------------------------------*/

.news-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

.news-pagination .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.news-pagination .list .number a,
.news-pagination .list .number.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #242424;
  color: var(--text-color);
}

.news-pagination .list .number a,
.news-pagination li.prev a,
.news-pagination li.next a {
  border: solid 1px #b9b9b9;
  transition: all .5s ease;
}

.news-pagination .list .number.current {
  color: #fff;
  background: #787878;
}

.news-pagination li.prev a,
.news-pagination li.next a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

.news-pagination li.prev a::before,
.news-pagination li.next a::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid;
  position: absolute;
  top: 14px;
  transition: all .5s ease;
}

.news-pagination li.prev a::before {
  border-color: transparent transparent #242424 #242424;
  border-color: transparent transparent var(--text-color) var(--text-color);
  transform: rotate(45deg);
  left: 16px;
}

.news-pagination li.next a::before {
  border-color: #242424 #242424 transparent transparent;
  border-color: var(--text-color) var(--text-color) transparent transparent;
  transform: rotate(45deg);
  right: 16px;
}

.news-pagination .list .number a:hover,
.news-pagination li.prev a:hover,
.news-pagination li.next a:hover {
  text-decoration: none;
  background: #b9b9b9;
}

@media screen and (max-width: 833px) {
  .news-pagination {
    margin-top: 40px;
  }

  .news-pagination .list .number a,
  .news-pagination .list .number.current {
    width: 30px;
    height: 30px;
  }

  .news-pagination li.prev a,
  .news-pagination li.next a {
    width: 30px;
    height: 30px;
  }

  .news-pagination li.prev a::before,
  .news-pagination li.next a::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }

  .news-pagination li.prev a::before {
    left: 12px;
  }

  .news-pagination li.next a::before {
    right: 12px;
  }
}

/*****************************************
*
* ページレイアウト
*
******************************************/

.section {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 60px;
}

@media screen and (min-width: 834px), print {
  .section {
    padding: 0 40px;
  }

  .section {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1000px), print {
  .section {
    width: 960px;
    padding: 0;
  }
}

/*------------------------------------------*/
/* ——を詰める
/*------------------------------------------*/
.kerning {
  letter-spacing: 0.005em;
}

/*------------------------------------------*/
/* テキスト
/*------------------------------------------*/
.text {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.8rem;
}

/*------------------------------------------*/
/* margin pの間空ける用
/*------------------------------------------*/
.margin-p {
  margin-top: 2em;
}

/*------------------------------------------*/
/* 下線
/*------------------------------------------*/
.marker {
  background: linear-gradient(transparent 75%, #ffb5bd 75%);
}

/*------------------------------------------*/
/* 外部リンク
/*------------------------------------------*/

.link-blank {
  color: #14a83b;
}

.link-blank::after {
  content: '';
  display: inline-block;
  background: url(../img/icon_link.png);
  background-size: 100%;
  width: calc(30px / 2);
  height: calc(24px / 2);
  margin-left: 5px;
}

/*------------------------------------------*/
/* PDF
/*------------------------------------------*/

.link-pdf {
  color: #14a83b;
}

.link-pdf::after {
  content: '';
  display: inline-block;
  background: url(../img/icon_pdf.png);
  background-size: 100%;
  width: calc(32px / 2);
  height: calc(32px / 2);
  margin-left: 5px;
}

/*------------------------------------------*/
/* 電話アイコン
/*------------------------------------------*/

.icon-tel {
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background-image: url("data:image/svg+xml;charset=utf8 xmlns='http://www.w3.org/2000/svg' width='100px' height='100px' viewBox='-49.86 791.445 100 100'%3E%3Cg%3E%3Cpath fill='%2330AB39' d='M0.14,791.445c-27.613,0-50,22.387-50,50c0,27.614,22.387,50,50,50c27.614,0,50-22.386,50-50 C50.14,813.832,27.754,791.445,0.14,791.445z M23.517,862.576c-0.604,0.703-6.285,8.181-15.328,5.031 c-9.045-3.15-16.014-8.867-21.13-14.94c-5.118-6.073-9.57-13.91-11.142-23.356c-1.569-9.447,6.761-13.776,7.558-14.254 c0.796-0.478,4.29-1.306,5.859,1.027c1.563,2.333,4.357,9.442,4.604,11.157c0.249,1.715-1.547,3.613-3.611,4.005 c-2.066,0.393-1.963,1.462-1.963,1.462s1.147,4.174,7.907,12.195c6.761,8.021,10.679,9.86,10.679,9.86s1.034,0.282,1.772-1.687 c0.735-1.968,2.911-3.416,4.56-2.881c1.648,0.536,8.181,4.494,10.216,6.432C25.531,858.569,24.123,861.873,23.517,862.576z' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 100%;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}


/*****************************************
*
* 見出し
*
******************************************/

/* h3 --------------------------------*/
.heading-tertiary {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom: solid 4px #14a83b;
  border-bottom: solid 4px var(--bg-color);
  padding-bottom: 4px;
  margin-bottom: 40px;
}

@media screen and (min-width: 834px), print {
  .heading-tertiary {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 60px;
  }
}


/*****************************************
*
* ボタン
*
******************************************/

/* 基本----------------------------------*/
.btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  height: 40px;
  color: #fff;
  font-size: 0.9rem;
  background: #e60012;
  background: var(--red-color);
  transition: all .5s ease;
}

.btn a::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 1em;
}

.btn a:hover {
  text-decoration: none;
  background: #fff;
  color: #e60012;
  color: var(--red-color);
  border: solid 1px #e60012;
  border: solid 1px var(--red-color);
}

.btn a:hover::after {
  border-color: #e60012 #e60012 transparent transparent;
  border-color: var(--red-color) var(--red-color) transparent transparent;
}

@media screen and (min-width: 834px), print {
  .btn {
    margin-top: 40px;
  }

  .btn a {
    width: 200px;
    height: 50px;
  }
}

/*****************************************
*
* 表
*
******************************************/

.com-table {
  border-collapse: collapse;
  width: 100%;
}

.com-table th,
.com-table td {
  text-align: left;
  padding: 20px 0;
  border-bottom: solid 1px #ccc;
}

/**/
@media screen and (max-width: 767px) {

  .com-table tr,
  .com-table th,
  .com-table td {
    display: block;
    width: auto;
  }

  .com-table th,
  .com-table td {
    padding: 10px 0;
  }

  .com-table th {
    border-bottom: dashed 1px #ccc;
  }
}


/*------------------------------------------*/
/* 改行
/*------------------------------------------*/


@media screen and (max-width: 833px) {
  .pc {
    display: none;
  }
}

