@charset "UTF-8";
/*
#normalize.css
===============================================
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}

a:focus {
  outline: thin dotted;
}

a:hover, a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

/*
#reset.css
===============================================
*/
a:active,
a:hover {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
}

figure {
  margin: 0;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

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

img {
  vertical-align: top;
}

/*
#setting
===============================================
- キーカラーの設定
- コンテンツ幅、ブレイクポイントの設定
- mixinの設定
- キーフレームアニメーションの設定
*/
/* module
===============================================*/
.l-container {
  margin: 0 auto;
  width: 1000px;
}

@media only screen and (max-width: 1000px) {
  .l-container {
    width: 93.75%;
  }
}

.l-containerWide {
  margin: 0 auto;
  max-width: 1400px;
  min-width: 1000px;
}

@media only screen and (max-width: 1000px) {
  .l-containerWide {
    max-width: 100%;
    min-width: 100%;
  }
}

.l-containerMax {
  margin: 0 auto;
  width: 100%;
}

.sec {
  padding-top: 60px;
}

@media only screen and (max-width: 1000px) {
  .sec {
    padding-top: 40px;
  }
}

.btn {
  border-radius: 20px 20px;
  border: solid 1px #aa8420;
  color: #aa8420;
  background-color: #fff;
  padding: 0 16px;
  vertical-align: middle;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn:hover, .btn:active {
  color: #fff;
  background-color: #aa8420;
}

.module-mainvisual .l-containerWide {
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% auto;
}

.module-mainvisual .l-containerWide .l-container {
  margin-top: -100px;
  height: 460px;
}

.module-mainvisual .l-containerWide .l-container h1 {
  padding-top: 300px;
  text-align: center;
  font-size: 200%;
  font-weight: bold;
}

@media only screen and (max-width: 1000px) {
  .module-mainvisual .l-containerWide .l-container {
    height: auto;
    width: 100%;
  }
  .module-mainvisual .l-containerWide .l-container h1 {
    padding: 200px 0 50px;
  }
}

.module-subcaption {
  text-align: center;
}

.module-subcaption span {
  border-radius: 24px 24px;
  display: inlie-block;
  border: solid 1px #aa8420;
  color: #aa8420;
  background-color: #fff;
  padding: 8px 26px;
  font-size: 140%;
  font-weight: bold;
}

.module-subcaption.shorttext span {
  padding: 8px 56px;
}

.module-contact a {
  border-radius: 35px 35px;
  width: 320px;
  margin: 0 auto;
  display: block;
  border: solid 1px #5fd4b4;
  color: #5fd4b4;
  background-color: #fff;
  padding: 16px 20px;
  font-weight: bold;
  text-align: center;
  line-height: 120%;
}

.module-contact a:hover, .module-contact a:active {
  color: #fff;
  background-color: #5fd4b4;
}

@media only screen and (max-width: 560px) {
  .module-contact a {
    width: 90%;
  }
}

@media only screen and (max-width: 1000px) {
  .module-contact {
    padding-bottom: 50px;
  }
}

/* basic */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  font-size: 1.6rem;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  line-height: 1;
  min-width: 1060px;
}

@media only screen and (max-width: 1000px) {
  body {
    min-width: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 1.3rem;
  }
}

a {
  text-decoration: none;
}

/* common layout */
.l-header {
  width: 100%;
  position: fixed;
  color: #aa8420;
  background: -webkit-linear-gradient(#fff, #fff, #fff, #fff, #fff, #fff, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  background: linear-gradient(#fff, #fff, #fff, #fff, #fff, #fff, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  z-index: 1000;
}

.l-header .site-info {
  margin: 0 auto;
  margin-top: 10px;
  height: 59px;
  width: 1000px;
  position: relative;
}

@media only screen and (max-width: 1000px) {
  .l-header .site-info {
    width: 93.75%;
  }
}

.l-header .site-info .site-title {
  position: relative;
}

.l-header .site-info .site-title .title-logo,
.l-header .site-info .site-title .title-text {
  display: block;
  position: absolute;
}

.l-header .site-info .site-title .title-logo {
  left: 0;
  top: 0;
  width: 253px;
  height: 53px;
}

.l-header .site-info .site-title .title-logo img {
  width: 100%;
}

@media only screen and (max-width: 1000px) {
  .l-header .site-info .site-title .title-logo {
    /*top: -10px;*/
  }
}

@media only screen and (max-width: 560px) {
  .l-header .site-info .site-title .title-logo {
    width: 150px;
    height: 36px;
    top: 0;
  }
}

.l-header .site-info .site-title .title-logo a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.7;
}

.l-header .site-info .site-title .title-text {
  left: 270px;
  bottom: -60px;
}

@media only screen and (max-width: 1000px) {
  .l-header .site-info .site-title .title-text {
    bottom: -60px;
  }
}

@media only screen and (max-width: 560px) {
  .l-header .site-info .site-title .title-text {
    left: 0;
    bottom: -64px;
  }
}

.l-header .site-info .site-title .title-text p {
  font-size: 1.35em;
  font-weight: bold;
  vertical-align: bottom;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", "Hiragino Mincho ProN", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
}

.l-header .site-info .site-contact {
  position: absolute;
  right: 0;
  bottom: -4px;
  font-weight: normal;
}

.l-header .site-info .site-contact .contact-tel {
  display: inline-block;
  height: 40px;
  font-family: 'Loca', serif;
  font-style: italic;
  font-size: 1.2em;
  line-height: 40px;
}

.l-header .site-info .site-contact .contact-tel span {
  margin-right: 2px;
  font-size: 0.6em;
  font-style: normal;
}

.l-header .site-info .site-contact .contact-mail {
  display: inline-block;
  height: 40px;
  margin-left: 5px;
  font-style: normal;
  line-height: 40px;
}

.l-header .site-info .site-message {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  font-size: 0.75em;
  color: #000;
}

.l-header .site-nav {
  margin: 30px auto;
  width: 1000px;
}

.l-header .site-nav .nav-pc ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -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;
}

.l-header .site-nav .nav-pc ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 25%;
  text-align: center;
  color: #aa8420;
  font-weight: 500;
  border-right: solid 1px #aa8420;
  text-shadow: 0 0 5px #fff;
  padding: 10px;
}

.l-header .site-nav .nav-pc ul li:last-child {
  border-right: none;
}

.l-header .site-nav .nav-pc ul li a {
  color: #aa8420;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.l-header .site-nav .nav-pc ul li a:hover, .l-header .site-nav .nav-pc ul li a:active {
  opacity: 0.7;
}

.l-header .site-nav .nav-sp {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .l-header {
    margin: 0;
  }
  .l-header .site-nav .nav-sp {
    display: block;
  }
  .l-header .site-nav .nav-pc {
    display: none;
  }
}

.drawer .nav-sp .drawer-hamburger {
  width: 44px;
  height: 44px;
  padding: 1rem .75rem 30px;
}

.drawer .nav-sp .drawer-hamburger .drawer-hamburger-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
}

.drawer .nav-sp .drawer-nav {
  background-color: rgba(255, 255, 255, 0.8);
}

.drawer .nav-sp .drawer-menu-item {
  font-size: 1.2em;
  color: #aa8420;
  padding: 20px 10px;
  background-color: #fff;
  border-bottom: 1px solid #CCC;
}

.drawer .nav-sp .drawer-menu-item a {
  display: block;
  color: #aa8420;
  background-color: #fff;
  text-decoration: none;
}

.drawer .nav-sp .drawer-menu-item a:hover, .drawer .nav-sp .drawer-menu-item a:active {
  font-weight: bold;
  text-decoration: none;
  border: none;
}

.drawer.drawer-open .drawer-nav {
  width: 70%;
}

.drawer.drawer-open .drawer-hamburger {
  right: 70%;
}

.drawer.drawer-open .drawer-hamburger .drawer-hamburger-icon {
  background-color: #fff;
  background-image: none;
}

.drawer.drawer-open .drawer-hamburger .drawer-hamburger-icon:after, .drawer.drawer-open .drawer-hamburger .drawer-hamburger-icon:before {
  display: block;
  margin-top: 20px;
}

.drawer.drawer-close .drawer-nav {
  width: 80px;
}

.drawer .drawer-hamburger .drawer-hamburger-icon {
  background-color: transparent;
  background-image: url("../images/sp_menu_icon.png");
}

.drawer .drawer-hamburger .drawer-hamburger-icon:after, .drawer .drawer-hamburger .drawer-hamburger-icon:before {
  display: none;
}

.l-main {
  background-color: #fff;
  display: block;
}

.l-footer {
  color: #aa8420;
  background-color: #fff6f5;
  margin: 0;
  margin-top: 100px;
  padding: 2rem 0;
}

.l-footer small {
  display: block;
  margin: 1rem 0;
  text-align: center;
}

@media only screen and (max-width: 1000px) {
  .l-footer {
    margin: 0;
    padding: 1rem 0;
  }
}

/* responsive display */
.sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 560px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}