@charset "UTF-8";
.c-ytwrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.c-ytwrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 992px) {
  .c-row {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .c-row {
    padding-right: 75px;
    padding-left: 75px;
  }
}

@media screen and (max-width: 320px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
}

h1, h2, h3 {
  color: #000;
}

a {
  color: #000;
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

section {
  margin-bottom: 120px;
}

@media screen and (min-width: 576px) {
  section {
    margin-bottom: 200px;
  }
}

/* drawer menu */
.drawer-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -250px;
  width: 240px;
  background: #fff;
  -webkit-box-shadow: -8px 0 4px -4px rgba(0, 0, 0, 0.4);
          box-shadow: -8px 0 4px -4px rgba(0, 0, 0, 0.4);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  z-index: 10;
  overflow-y: auto;
}

.drawer-menu a {
  color: #000;
}

.drawer-menu a:hover {
  text-decoration: none;
}

.drawer-menu .c-sidenav__menu {
  margin: 80px 0 12px;
  padding: 0 20px;
}

.drawer-menu .c-sidenav__menu li {
  margin-bottom: 2em;
  padding: 0 0 0.2em;
}

.drawer-menu .c-sidenav__menu li a {
  display: block;
  font-weight: bold;
  letter-spacing: 0.5em;
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  .drawer-menu .c-sidenav__menu {
    margin-top: 100px;
  }
}

/* checkbox */
.c-sidenav-check {
  display: none;
}

/* sidenav-btn - label tag */
.c-sidenav-btn {
  position: fixed;
  display: block;
  top: 12px;
  right: 20px;
  display: block;
  width: 48px;
  height: 48px;
  text-align: center;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.bar {
  position: absolute;
  top: 14.4px;
  left: 12px;
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.bar.middle {
  top: 22.4px;
  opacity: 1;
}

.bar.bottom {
  top: 30.4px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.c-sidenav--close {
  position: fixed;
  top: 0;
  right: 240px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  visibility: hidden;
  opacity: 0;
}

/* checked */
.c-sidenav-check:checked ~ .drawer-menu {
  -webkit-transform: translateX(-250px);
          transform: translateX(-250px);
  z-index: 2;
}

.c-sidenav-check:checked ~ .c-sidenav-btn .c-sidenav-btn__text {
  visibility: hidden;
  opacity: 0;
}

.c-sidenav-check:checked ~ .c-sidenav-btn .bar {
  background: #fff;
}

.c-sidenav-check:checked ~ .c-sidenav-btn .bar.top {
  width: 33.6px;
  top: 11.2px;
  left: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-sidenav-check:checked ~ .c-sidenav-btn .bar.middle {
  opacity: 0;
}

.c-sidenav-check:checked ~ .c-sidenav-btn .bar.bottom {
  width: 33.6px;
  top: 33.6px;
  left: 13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-sidenav-check:checked ~ .c-sidenav--close {
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
  background: rgba(0, 0, 0, 0.3);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

@media screen and (min-width: 576px) {
  .drawer-menu {
    right: -310px;
    width: 300px;
  }
  .c-sidenav--close {
    right: 300px;
  }
  .c-sidenav-check:checked ~ .drawer-menu {
    -webkit-transform: translateX(-310px);
            transform: translateX(-310px);
  }
  .c-sidenav-btn {
    top: 17px;
    right: 30px;
    width: 60px;
    height: 60px;
  }
  .bar {
    top: 18px;
    left: 15px;
    width: 30px;
    height: 4px;
  }
  .bar.middle {
    top: 28px;
    opacity: 1;
  }
  .bar.bottom {
    top: 38px;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
  .c-sidenav-check:checked ~ .c-sidenav-btn .bar.top {
    width: 42px;
    top: 14px;
    left: 17px;
  }
  .c-sidenav-check:checked ~ .c-sidenav-btn .bar.bottom {
    width: 42px;
    top: 42px;
    left: 17px;
  }
}

/* container */
.container {
  padding-left: 32px;
}

@media screen and (min-width: 576px) {
  .container {
    padding-left: 80px;
  }
}

/* header */
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  height: auto;
}

.p-header .__com {
  margin: 130px 0 0 10px;
  padding: 0;
  width: 12px;
}

.p-header .__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 130px;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  opacity: 1;
  z-index: -1;
}

.p-header .v--fade {
  opacity: 0.1;
}

@media screen and (min-width: 576px) {
  .p-header .__com {
    margin: 350px 0 0 50px;
    width: 20px;
  }
  .p-header .__logo {
    width: 300px;
  }
}

@media screen and (min-width: 768px) {
  .p-header .__com {
    margin: 350px 0 0 50px;
    width: 20px;
  }
  .p-header .__logo {
    width: 300px;
  }
}

/* main */
.p-main {
  padding-top: 330px;
  z-index: 1;
}

.p-main h2 {
  margin: 0 0 1.5em;
  padding-top: 1.5em;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1em;
}

@media screen and (min-width: 576px) {
  .p-main {
    padding-top: 750px;
  }
  .p-main h2 {
    font-size: 1.6em;
  }
}

/* c-dl */
.c-dl-list dt {
  margin: 0;
  padding: 0.5em 0 0;
  font-weight: normal;
}

.c-dl-list dt::before {
  content: "[ ";
}

.c-dl-list dt::after {
  content: " ]";
}

.c-dl-list dd {
  margin: 0;
  padding: 0 0 0.5em;
  text-align: justify;
}

.c-dl-list.v--news dt::before {
  content: none;
}

.c-dl-list.v--news dt::after {
  content: none;
}

@media screen and (min-width: 768px) {
  .c-dl-list dt {
    padding-bottom: 0;
    width: 8em;
  }
  .c-dl-list dt::before {
    content: none;
  }
  .c-dl-list dt::after {
    content: none;
  }
  .c-dl-list dd {
    margin: -1.5em 0 0;
    padding-left: 8em;
  }
}

@media screen and (min-width: 992px) {
  .c-dl-list dt {
    width: 10em;
  }
  .c-dl-list dd {
    padding-left: 10em;
  }
}

/* gallery */
.p-gallery .__ul-gallery li {
  margin-bottom: 2.0rem;
}

.p-gallery .__ul-gallery p {
  margin: 0.2em 0 0;
  font-size: 0.8rem;
}

.p-gallery .__link {
  display: block;
  padding: 0.3em;
  color: #000;
  background-color: #fff;
  border: #000 1px solid;
  text-align: center;
  letter-spacing: 0.2em;
  text-decoration: none;
}

@media screen and (min-width: 576px) {
  .p-gallery .__ul-gallery p {
    font-size: 0.9rem;
  }
  .p-gallery .__link {
    letter-spacing: 0.3em;
  }
}

.p-about .__map-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}

.p-about .__map-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: none;
}

@media screen and (min-width: 992px) {
  .p-about .__map-wrap {
    padding-bottom: 50%;
  }
}

.p-inquiry .__lead {
  line-height: 1.8;
}

.p-inquiry .__lead small {
  display: inline-block;
  margin-top: 1.5em;
  line-height: 1.6;
  text-align: left;
}

@media screen and (min-width: 992px) {
  .p-inquiry .__lead {
    line-height: 2.4;
    text-align: center;
  }
}

.p-inquiry #cautionError {
  display: none;
  text-align: center;
}

.p-inquiry #cautionError.active {
  display: block;
}

.p-inquiry #cautionError strong {
  color: #000;
}

.p-inquiry .alert-danger {
  color: #000;
  background-color: #ffd0cc;
  border: none;
}

.p-inquiry #postal {
  width: 10em;
}

.p-inquiry #form_submit {
  margin-top: 1.0rem;
  text-align: center;
}

.p-inquiry #form_submit input {
  padding: 0.6em 2.0em;
  letter-spacing: 0.2em;
  background-color: #fff;
  border: #000 1px solid;
  border-radius: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.p-inquiry #form_submit input:hover {
  background-color: #f0f0f0;
}

#mail_form dt span.required {
  display: inline-block;
  margin-left: 0.5em;
  padding: 0.2em 0.5em;
  font-family: '-apple-system', 'BlinkMacSystemFont','Hiragino Sans','Hiragino Kaku Gothic ProN','segoe ui','游ゴシック Medium','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-size: 85%;
  font-weight: bold;
  line-height: 1.25;
  background-color: #ffd0cc;
  border-radius: 4px;
}

#mail_form dt span.optional {
  display: none;
}

#mail_form .error_blank,
#mail_form .error_format {
  font-size: 85%;
  color: #e00;
}

/* footer */
.p-footer {
  margin-top: 80px;
  padding-bottom: 40px;
  text-align: center;
}

.p-footer .__copyright {
  font-size: 0.8rem;
}

/* pagetop */
.c-btn-pagetop {
  position: fixed;
  right: 28px;
  bottom: 20px;
  width: 36px;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  -webkit-filter: drop-shadow(0 0 1px #fff);
          filter: drop-shadow(0 0 1px #fff);
}

.c-btn-pagetop.active {
  visibility: visible;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .c-btn-pagetop {
    right: 42px;
    bottom: 30px;
    width: 45px;
  }
  .c-btn-pagetop.active:hover {
    opacity: 0.9;
  }
}
