@charset "UTF-8";

/* ============================================================

    reset

============================================================ */
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, dialog, figure, footer, header, 
hgroup, menu, nav, section, 
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

button,
[type="submit"],
[type="button"] {
  border: none;
  outline: none;
  background: none;
}

[type="submit"],
[type="reset"],
[type="button"] {
  -webkit-box-sizing: content-box;
          box-sizing: border-box;
  border: none;
  border-radius: 0;
  cursor: pointer;

  -webkit-appearance: button;
          appearance: button;
}

[type="submit"]::-webkit-search-decoration,
[type="reset"]::-webkit-search-decoration,
[type="button"]::-webkit-search-decoration {
  display: none;
}

[type="submit"]::focus,
[type="reset"]::focus,
[type="button"]::focus {
  outline-offset: -2px;
}

/* ============================================================

    base

============================================================ */
html {
          font-size: calc(100vw / 37.5);

  -webkit-font-size: calc(100vw / 37.5);
     -moz-font-size: calc(100vw / 37.5);
      -ms-font-size: calc(100vw / 37.5);
       -o-font-size: calc(100vw / 37.5);
  /* iPhone8で閲覧した場合 10px = 1rem */
}

body {
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: .08em;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* ============================================================

    layout

============================================================ */
/* 左右15pxずつ余白をつける */
.l-inner {
  margin: 0 1.5rem;
}

/* ============================================================

    part

============================================================ */
/* ボタン（一般） */
.p-general_btn {
  text-align: center;
}

.p-general_btn > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  min-height: 5.5rem;
  margin: 0 auto;
  padding: 0 4.7rem 0 3.8rem;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.6rem;
  text-align: left;
  border-radius: 2.7rem;
  background: #59601a url(/img/sp/common/arrow_generalbtn.png) no-repeat right 1.4rem center / 2.4rem;
  box-shadow: .5rem .5rem .9rem rgba(51, 51, 51, .2);
}

/* 背景（和紙・ナチュラル） */
.p-bg_natural {
  background: #f9f5ea url(/img/sp/common/bg_beige.jpg) repeat center top / 100% auto;
}

/* 背景（和紙・緑） */
.p-bg_green {
  background: #e6ebba url(/img/sp/common/bg_green.jpg) repeat center top / 100% auto;
}

/* メインタイトル */
.p-main_ttl {
  margin-bottom: 4rem;
  padding: 1.9rem 0;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  text-align: center;
  background: #59601a;
}

/* セクションタイトル */
.p-section_ttl {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

/* パンくず */
.p-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.p-breadcrumb li:not(:last-child) {
  margin-right: 1.8rem;
  position: relative;
}

.p-breadcrumb li:not(:last-child)::before {
  position: absolute;
  top: .2rem;
  right: calc(-1em - .5rem);
  color: #999;
  font-size: .9rem;
  content: "＞";
}

/* ============================================================

    header

============================================================ */
.header {
  position: relative;
}

/*  ロゴ・メニューボタン
------------------------------------------------------------ */
.header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding-left: 1.5rem;
  border-bottom: 1px solid #273514;
}

/* ロゴ */
.header_logo {
  color: #59601a;
  font-size: .8rem;
  font-weight: normal;
}

.header_logo_img {
  display: block;
  width: 10.9rem;
  margin-top: 3px;
}

/* メニューボタン */
.header_menu {
  width: 5rem;
  height: 100%;
  position: relative;
  z-index: 10000;
  background: #273514;
}

.header_menu span,
.header_menu span::before,
.header_menu span::after {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #fff;
  transition: .3s;
}

.header_menu span {
  margin: 0 auto;
  position: relative;
  white-space: nowrap;
  text-indent: -9999px;
}

.header_menu span::before,
.header_menu span::after {
  position: absolute;
  left: 0;
  content: "";
}

.header_menu span::before {
  top: -.9rem;
}

.header_menu span::after {
  bottom: -.9rem;
}

/* メニューボタン 開いたとき */
.is-open .header_menu span {
  background: transparent;
}

.is-open .header_menu span::before {
  top: 0;
  transform: rotate(45deg);
}

.is-open .header_menu span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/*  グローバルメニュー
------------------------------------------------------------ */
.header_globalnav {
  width: 100%;
  border-bottom: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 .3rem .4rem rgba(0, 0, 0, .08);
}

.header_globalnav_list {
  display: flex;
}

.header_globalnav_list_item {
  flex-grow: 1;
  position: relative;
}

.header_globalnav_list_item:not(:last-child) {
  margin-right: 1px;
}

.header_globalnav_list_item:not(:last-child)::after {
  width: 1px;
  height: 1.6rem;
  margin-top: -.8rem;
  position: absolute;
  top: 50%;
  right: -1px;
  background: #bdbdbd;
  content: "";
}

.header_globalnav_list_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.3rem;
  font-size: 1.1rem;
}

/*  ヘッダー追従
------------------------------------------------------------ */
.is-scrolled {
  padding-bottom: calc(4.3rem + 1px);
}

.is-scrolled .header_globalnav {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}

/*  メニューの中身
------------------------------------------------------------ */
.header_menu_wrap {
  display: none;
}

.header_menu_cont {
  overflow-y: scroll;
  width: 31rem;
  height: 100%;
  padding: 5rem 2rem;
  box-sizing: border-box;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  color: #fff;
  background: #273514;
  transition: .2s;

  -webkit-overflow-scrolling: touch;
}

/* メニューリスト */
.header_menu_list {
  margin-bottom: 4rem;
}

.header_menu_list_item {
  position: relative;
  border-bottom: 1px solid #fff;
}

.header_menu_list_btn {
  display: block;
  padding: 2.6rem 0 2.6rem 8rem;
  font-size: 1.4rem;
}

/* 下層を開くボタン */
.header_menu_list_more {
  display: block;
  width: calc(2rem + 1px);
  height: calc(2rem + 1px);
  box-sizing: border-box;
  position: absolute;
  top: 2.7rem;
  right: 1px;
  white-space: nowrap;
  text-indent: -9999px;
  border: 1px solid #fff;
}

.header_menu_list_more::before,
.header_menu_list_more::after {
  display: block;
  width: calc(1rem + 1px);
  height: 1px;
  margin-top: -1px;
  margin-left: calc(-.5rem - 1px);
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transition: .2s;
  content: "";
}

.header_menu_list_more::after {
  transform: rotate(90deg);
}

.header_menu_list_more.is-open::after {
  transform: rotate(0);
}

/* 下層メニュー */
.header_menu_list_secondary {
  display: none;
}

.header_menu_list_secondary_item {
  border-top: 1px solid rgba(255, 255, 255, .4);
}

.header_menu_list_secondary_btn {
  display: block;
  padding: 1.7rem 0 1.7rem 8rem;
  font-size: 1.2rem;
}

/* お問い合わせボタン */
.header_menu_contact_item {
  margin-bottom: 2rem;
}

.header_menu_contact_item:last-child {
  margin-bottom: 0;
}

.header_menu_contact_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  font-size: 1.6rem;
  line-height: 1;
  border: 1px solid #fff;
  border-radius: .2rem;
}

.header_menu_contact_btn_icon {
  display: inline-block;
  height: 2.3rem;
  margin-right: 1rem;
}

.header_menu_contact_btn_note {
  display: inline-block;
  margin-top: .5rem;
  font-size: .9rem;
}

/* ============================================================

    footer

============================================================ */
.footer {
  padding: 3rem 0 2rem;
  color: #fff;
  background: #273514;
}

/* お問い合わせ
------------------------------------------------------------ */
.footer_contact_ttl {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.footer_contact_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  height: 4.3rem;
}

.footer_contact_list_item {
  width: 16.4rem;
}

.footer_contact_list_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
  font-weight: 500;
  line-height: 1;
  border-radius: .2rem;
  background: #fff;
}

.footer_contact_list_btn_icon {
  height: 1.5rem;
  margin-right: .6rem;
  vertical-align: middle;
}

.footer_contact_list_btn_txt {
  display: inline-block;
  margin-top: .4rem;
  font-size: .8rem;
  font-weight: 400;
}

@media screen and (max-width:320px) {
  .footer_contact_list_btn_txt.form{
    letter-spacing: -0.3em;
  }
}

/* ページトップへ
------------------------------------------------------------ */
.footer_pagetop {
  margin-bottom: 2.5rem;
  text-align: center;
}

.footer_pagetop_btn {
  display: block;
  padding-top: 1.6rem;
  position: relative;
  font-size: .9rem;
  text-align: center;
}

.footer_pagetop_btn::before {
  display: block;
  width: .8rem;
  height: .8rem;
  margin-left: -.4rem;
  box-sizing: border-box;
  position: absolute;
  top: .1rem;
  left: 50%;
  border: 1px solid #fff;
  border-width: 1px 0 0 1px;
  transform: rotate(45deg);
  content: "";
}

/* ナビゲーション
------------------------------------------------------------ */
.footer_nav {
  margin-bottom: 4.4rem;
}

.footer_nav_main {
  margin-bottom: 2.4rem;
  border-top: 1px solid #fff;
}

.footer_nav_main_item {
  border-bottom: 1px solid #fff;
}

.footer_nav_main_btn {
  display: block;
  padding: 1.4rem 5.1rem 1.4rem 1.5rem;
  font-size: 1.2rem;
  background: url(/img/sp/common/arrow_footernav.png) no-repeat right 1.5rem center / 1.9rem;
}

.footer_nav_sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_nav_sub_item {
  position: relative;
}

.footer_nav_sub_item::after {
  display: block;
  width: 1px;
  height: 1rem;
  margin-top: -.5rem;
  position: absolute;
  top: 50%;
  right: -1px;
  background: #fff;
  content: "";
}

.footer_nav_sub_item:nth-child(3),
.footer_nav_sub_item:nth-child(5) {
  margin-right: 0;
}

.footer_nav_sub_item:nth-child(3)::after,
.footer_nav_sub_item:nth-child(5)::after {
  display: none;
}

.footer_nav_sub_btn {
  padding: 0 1rem;
  font-size: .9rem;
  line-height: 2.2;
}

/* コピーライト
------------------------------------------------------------ */
.footer_copypyright {
  font-size: .8rem;
  line-height: 1;
  text-align: center;
}

.footer_copypyright_btn {
  display: inline-block;
  margin-bottom: 1.3rem;
}

.footer_copypyright_img {
  width: 12.3rem;
}

.footer_copypyright small {
  font-size: inherit;
}
