@charset "UTF-8";
/*==================================
レスポンシブ設定 マップ型変数breakpointsを定義
=================================*/
/*==================================
# 色、フォントファミリー
=================================*/
/*==================================
common(一般) - 全体に共通するスタイル
=================================*/
@media screen and (max-width: 1107px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1108px) {
  .is-sp {
    display: none !important;
  }
}

body,
html {
  overflow-x: hidden;
}

body {
  -webkit-animation: body .1s .1s forwards;
          animation: body .1s .1s forwards;
  opacity: 0;
}

@-webkit-keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes body {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  font-size: 16px;
  color: #333;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.5;
  background: #fff;
  z-index: 0;
  letter-spacing: 1px;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 1107px) {
  .inner {
    padding: 0 16px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  display: block;
  color: #333;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .heading {
  padding: 10px 0;
}

.header .heading a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.header .heading a:hover {
  opacity: .6;
}

.header .heading .headerLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .heading .headerLogo {
  max-width: 125px;
  margin-right: 10px;
  margin-right: auto;
}

.header .heading p {
  color: #6E6555;
  font-family: serif;
}

.header .sns {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .sns .sns-li {
  max-width: 34px;
}

.header .sns .sns-li:first-child {
  margin-right: 30px;
}

.header .sns .sns-li a {
  -webkit-transition: .3s;
  transition: .3s;
}

.header .sns .sns-li a:hover {
  opacity: .6;
}

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

.headerBottom ul a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
  font-weight: 300;
  padding: 13px 0;
}

.headerBottom ul a:hover {
  opacity: .6;
}

.headerBottom {
  background: #6E6555;
}

.footer {
  background: #6E6555;
  padding: 80px 0;
}

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

.footer ul li a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
  font-weight: 300;
  padding: 13px 0;
}

.footer ul li a:hover {
  opacity: .6;
}

.copyright {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  font-size: 12px;
}

.section-sns {
  padding: 80px;
}

.section-sns .sns {
  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;
}

.section-sns .sns .sns-li {
  max-width: 34px;
}

.section-sns .sns .sns-li:first-child {
  margin-right: 30px;
}

.section-sns .sns .sns-li a {
  -webkit-transition: .3s;
  transition: .3s;
}

.section-sns .sns .sns-li a:hover {
  opacity: .6;
}

.follow {
  font-size: 14px;
  text-align: center;
  margin: 0 auto 30px;
}

.follow .text {
  display: inline-block;
  position: relative;
}

.follow .text::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 38px;
  left: -20px;
  bottom: -10px;
  background: #333;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.follow .text::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 38px;
  right: -20px;
  bottom: -10px;
  background: #333;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.section {
  padding: 120px 0;
}

@media screen and (max-width: 1107px) {
  .section {
    padding: 40px 0;
  }
}

.section-B {
  padding: 60px 0 100px;
  color: #fff;
}

@media screen and (max-width: 1107px) {
  .section-B {
    padding: 30px 0 20px;
  }
}

.section1 {
  background: url(../img/section1.png) no-repeat center center/cover;
}

.section1 .main-title {
  font-size: 30px;
  font-family: serif;
  margin-bottom: 60px;
  font-weight: 600;
  text-align: center;
  color: #555555;
}

.section1 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.section1 .row:last-child {
  margin-bottom: 0;
}

.section1 .row .left {
  width: 190px;
}

.section1 .row .contents {
  width: calc(100% - 230px);
  margin-left: auto;
}

.section1 .row .img {
  width: 100%;
  position: relative;
  padding-top: 100%;
}

.section1 .row .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section1 .section1-box {
  padding: 8% 5%;
  background: rgba(255, 255, 255, 0.75);
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}

.section1 .section1-box .title {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.section1 .section1-box .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.section2 {
  background: #6E6555;
}

.section-title {
  text-align: center;
  position: relative;
  padding-top: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.section-title .text {
  position: relative;
  font-size: 30px;
  font-family: serif;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.section-title .text::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -900px;
  width: 800px;
  height: 1px;
  background: #fff;
}

.section-title .text::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -900px;
  width: 800px;
  height: 1px;
  background: #fff;
}

.section-title.section-title3 .text::before {
  background: #333;
  left: -825px;
}

.section-title.section-title3 .text::after {
  background: #333;
  right: -825px;
}

.section-title .left {
  position: absolute;
  max-width: 70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -80px;
}

.section-title .right {
  position: absolute;
  max-width: 70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -80px;
}

.section2-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.section-title2 {
  text-align: center;
  position: relative;
  padding-top: 20px;
  margin-bottom: 40px;
}

.section-title2 .text {
  position: relative;
  font-size: 30px;
  font-family: serif;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  color: #555555;
}

.section-title2 .left {
  position: absolute;
  max-width: 70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -80px;
}

.section-title2 .right {
  position: absolute;
  max-width: 70px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -80px;
}

.section-title2 .section2-text {
  font-size: 14px;
  font-weight: 500;
}

.section-B .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-B .wrap ul {
  width: 50%;
}

.section-B .wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: 0 auto 10px;
  font-weight: 300;
}

.section-B .wrap ul li:last-child {
  margin-bottom: 0;
}

.section-B .wrap ul li .dt {
  margin-right: auto;
}

.bottom-line {
  margin-top: 40px;
}

.section3 {
  background: url(../img/section3.png) no-repeat center center/cover;
}

.section3-box {
  background: #FFF8EB;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 20px rgba(0, 0, 0, 0.07);
  padding: 20px;
}

.section3-box2 {
  background: #FFF8EB;
  border: 1px solid #6E6555;
  padding: 60px 3%;
}

.section2-text2 {
  text-align: center;
  font-size: 14px;
  line-height: 2;
}

.section2-text2 span {
  color: #FF1919;
}

.section3 .wrap2 {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

.section3 .wrap2 .left {
  width: 40%;
}

.section3 .wrap2 .right {
  width: 57%;
}

.section3 .wrap2 .main-title {
  padding: 5px 10px;
  background: #6E6555;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
}

.section3 .wrap2 .main-title span {
  font-size: 11.5px;
}

.section3 .wrap2 .heading {
  margin-bottom: 20px;
}

.section3 .wrap2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section3 .wrap2 .flex .img {
  width: 25%;
}

.section3 .wrap2 .flex .contents {
  width: 70%;
  margin-left: auto;
}

.section3 .wrap2 .contents {
  font-size: 14px;
  color: #333333;
}

.section3 .wrap2 .contents p {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #555;
}

.section-btn {
  text-align: center;
  position: relative;
}

.section-btn a {
  font-family: serif;
  font-size: 18px;
  font-weight: 500;
  color: #6E6555;
  height: 85px;
  line-height: 85px;
  max-width: 300px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.section-btn a::after {
  position: absolute;
  content: "";
  background: #FFFCB9;
  width: 100%;
  height: 100%;
  top: 10px;
  right: -10px;
  z-index: 0;
}

.section-btn a:hover {
  opacity: .6;
}

.section-btn a:hover .arrow {
  right: -20px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.section-btn .btn-text {
  border: 1px solid #6E6555;
  z-index: 1;
  position: relative;
}

.section-btn .arrow {
  max-width: 34px;
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  z-index: 1;
}

.section4 .flex {
  max-width: 800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
}

.section4 .item {
  width: 47%;
}

.section4 .item .img {
  margin-bottom: 20px;
}

.section4 .item .title {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
  min-height: 40px;
  position: relative;
}

.section4 .item .title p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 0;
  text-align: center;
  left: 50%;
  width: 100%;
}

.section4 .item .text {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  margin-top: 40px;
}

.section4 .item .text::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -20px;
  width: 30%;
  height: 1px;
  content: "";
  background: #fff;
}

.section-btn2 a {
  color: #fff;
}

.section-btn2 a::after {
  content: initial;
}

.section-btn2 a:hover {
  opacity: .6;
}

.section-btn2 a:hover .arrow {
  right: -20px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.section-btn2 .btn-text {
  border: 1px solid #fff;
  z-index: 1;
  position: relative;
}

.section5 {
  background: #FFF8EB;
}

.section5 .wrap {
  padding: 5% 5%;
  background: #fff;
}

.access .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.access .left {
  max-width: 275px;
  width: 100%;
  margin-right: 40px;
}

.access .right {
  width: calc(100% - 275px);
}

.access .right-title {
  font-size: 24px;
  font-family: serif;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
}

.access .right-text1 {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 2;
  color: #000000;
}

.access .right-text2 {
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
  color: #000000;
}

.bottom {
  margin-top: 60px;
}

.map {
  width: 100%;
  padding-top: 50%;
  position: relative;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.greet .wrap {
  background: #FFF8EB;
  padding: 80px 20px 20px;
}

.greet .wrap2 {
  border: 1px solid #6E6555;
  padding: 8% 2%;
  position: relative;
}

.section-title4 .left {
  position: absolute;
  max-width: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
}

.section-title4 .right {
  position: absolute;
  max-width: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
}

.section-title4 {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -50px;
}

.section-title4 .text {
  background: #FFF8EB;
  padding: 0 150px;
}

.greet-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.greet-wrap .left {
  width: 270px;
  margin-right: auto;
}

.greet-wrap .right {
  width: calc(100% - 290px);
}

.greet-wrap p {
  font-size: 14px;
  font-weight: 300;
  color: #000;
  line-height: 2;
}

.greet-wrap .center {
  margin: 3% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.greet-wrap .center .c-left {
  color: #fff;
  font-weight: 500;
  background: #6E6555;
  font-size: 14px;
  width: 90px;
  text-align: center;
  padding: 15px 0;
}

.greet-wrap .center .c-right {
  background: #fff;
  font-size: 14px;
  font-weight: 300;
  width: calc(100% - 90px);
  padding: 15px 8px;
}

.contact {
  background: url(../img/contact.png) no-repeat top center/cover;
  position: relative;
}

.contact .title {
  font-size: 30px;
  font-family: serif;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.form {
  max-width: 800px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
}

.form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form .dt {
  width: 180px;
  margin-right: 30px;
  position: relative;
  padding-top: 10px;
}

.form .dd {
  width: calc(100% - 180px);
}

.radio dd,
.checknox dd {
  font-size: 14px;
}

.required {
  color: #FF0000;
  border: .5px solid #FF0000;
  padding: 3px 5px;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 400;
}

.noRequired {
  top: 19px;
  color: #969696;
  border: 1px solid #969696;
}

.scroll {
  height: 150px;
  overflow-y: scroll;
  scroll-behavior: auto;
  background: #fff;
  padding: 10px;
  border: 1px solid #969696;
}

input[type="text"],
input[type="email"],
input[type="date"] {
  padding: 10px;
  border: 1px solid #B2B2B2;
}

textarea {
  height: 100px;
  resize: none;
}

.radio .dd {
  padding-top: 10px;
}

.radio label {
  position: relative;
  padding-left: 20px;
  margin-right: 40px;
}

.radio .design1 {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #555555;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.radio .design2 {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #555555;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #555555;
  opacity: 0;
}

input[type="radio"]:checked + .design2 {
  opacity: 1;
}

input[type="radio"] {
  position: absolute;
  left: -1000px;
}

.headerBottom a {
  font-family: serif;
}

.footer ul a {
  font-family: serif;
}

.low .title2 {
  font-size: 30px;
  font-family: serif;
  margin-bottom: 40px;
  text-align: center;
}

.form .row {
  margin-bottom: 30px;
}

.scroll-bottom {
  margin-top: 30px;
  margin-bottom: 30px;
}

.checkbox {
  text-align: center;
  margin-bottom: 60px;
}

.submit {
  text-align: center;
  position: relative;
  margin-bottom: 120px;
}

.submit:hover .arrow {
  right: -20px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.submit .submit-wrap {
  display: inline-block;
  position: relative;
}

.submit .submit-wrap::after {
  position: absolute;
  content: "";
  background: #FFFCB9;
  width: 100%;
  height: 100%;
  top: 10px;
  right: -10px;
  z-index: 0;
}

.submit input[type="submit"] {
  font-family: serif;
  font-size: 18px;
  font-weight: 500;
  color: #6E6555;
  height: 85px;
  line-height: 85px;
  max-width: 300px;
  width: 100%;
  min-width: 300px;
  text-align: center;
  position: relative;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 1;
  border: 1px solid #555555;
  background: transparent;
  cursor: pointer;
}

.submit input[type="submit"]:hover {
  opacity: .6;
}

.submit input[type="submit"]:hover .arrow {
  right: -20px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.submit input[type="submit"]:hover {
  opacity: .6;
}

.submit input[type="submit"]:hover .arrow {
  right: -20px;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.arrow {
  max-width: 34px;
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
  z-index: 1;
}

.top-heading {
  height: 80vh;
}

.top-heading img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-track,
.slick-list {
  height: 100%;
}

.top-bottom {
  margin-top: 20px;
}

.slider-nav .img {
  padding: 0 10px;
}

.top {
  position: relative;
}

.top-heading {
  position: relative;
}

.top-message {
  position: absolute;
  top: 45%;
  left: 66%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #fff;
  font-size: 40px;
  font-weight: 100;
  width: 100%;
  font-family: serif;
  text-shadow: 0 3px 1px #ccc;
  letter-spacing: 3px;
}

@media screen and (max-width: 1107px) {
  .top-message {
    left: 0%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-left: 16px;
  }
}

@media screen and (max-width: 1107px) {
  .headerBottom {
    display: none;
  }
  .header .heading p {
    font-size: 10px;
  }
  .header .heading .headerLogo {
    max-width: 80px;
  }
  .header .sns .sns-li:first-child {
    margin-right: 10px;
  }
  .header .sns {
    display: none;
  }
  .top-heading {
    height: auto;
  }
  .top-heading img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-message {
    font-size: 16px;
  }
  .top-bottom {
    margin-top: 10px;
  }
  .slider-nav .img {
    padding: 0 3px;
  }
  .section1 .main-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .section1 .row {
    margin-bottom: 50px;
    display: block;
  }
  .section1 .row .left {
    width: 70%;
    margin: 0 auto 10px;
  }
  .section1 .row .contents {
    width: 100%;
  }
  .section1 .section1-box .title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.5;
  }
  .section-title .text {
    font-size: 16px;
  }
  .section-title .right {
    position: absolute;
    max-width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -40px;
  }
  .section-title .left {
    position: absolute;
    max-width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -40px;
  }
  .section-B .wrap {
    margin-top: 20px;
  }
  .section-B .wrap ul li {
    font-size: 14px;
  }
  .section-title {
    text-align: center;
    position: relative;
    padding-top: 20px;
    margin-bottom: 0px;
    padding-bottom: 20px;
  }
  .section3-box2 {
    padding: 20px 3%;
  }
  .section-title2 .text {
    position: relative;
    font-size: 20px;
  }
  .section-title2 .left {
    position: absolute;
    max-width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px;
  }
  .section-title2 .right {
    position: absolute;
    max-width: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -30px;
  }
  .section3-box {
    padding: 10px;
  }
  .section2-text2 {
    font-size: 11px;
  }
  .section3 .wrap2 {
    margin-top: 20px;
    display: block;
    margin-bottom: 30px;
  }
  .section3 .wrap2 .left {
    width: 70%;
    margin: 0 auto 10px;
  }
  .section3 .wrap2 .right {
    width: 100%;
  }
  .section3 .bottom {
    margin-top: 20px;
  }
  .section-btn a {
    font-family: serif;
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    max-width: 270px;
  }
  .submit input[type="submit"] {
    font-size: 16px;
    height: 65px;
    line-height: 65px;
    max-width: 270px;
  }
  .section-title .text::before {
    content: initial;
  }
  .section-title .text::after {
    content: initial;
  }
  .section4 .flex {
    max-width: 800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .section4 .item .title {
    font-size: 13px;
  }
  .section4 .item .text {
    font-size: 11px;
  }
  .section4 .item {
    width: 48%;
  }
  .access .heading {
    display: block;
  }
  .access .left {
    max-width: initial;
    width: 70%;
    margin: 0 auto 10px;
  }
  .access .right {
    width: 100%;
  }
  .access .right-text1 {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 2;
    color: #000000;
  }
  .access .bottom {
    margin-top: 20px;
  }
  .section-title4 .text {
    background: #FFF8EB;
    padding: 0 20px;
  }
  .greet .wrap {
    background: #FFF8EB;
    padding: 30px 20px 20px;
  }
  .section-title4 {
    top: 0;
  }
  .greet .wrap2 {
    padding: 0% 2% 8%;
  }
  .greet-wrap .left {
    width: 70%;
    margin: 0 auto 10px;
  }
  .greet-wrap {
    display: block;
  }
  .greet-wrap .right {
    width: 100%;
  }
  .greet-wrap .center {
    display: block;
  }
  .greet-wrap .center .c-left {
    width: 100%;
    padding: 5px;
  }
  .greet-wrap .center .c-right {
    width: 100%;
  }
  .greet .wrap {
    padding: 10px;
  }
  .contact .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .form .row {
    display: block;
  }
  .radio .dd,
  .radio .dt {
    width: 100%;
  }
  .radio label {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  .contact .title {
    position: initial;
    top: initial;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
  }
  .form .dt {
    padding-top: 0;
    width: 100%;
    margin-bottom: 10px;
  }
  input[type="text"],
  input[type="email"],
  input[type="date"],
  textarea {
    width: 100%;
  }
  .form .dd {
    width: 100%;
  }
  .noRequired {
    top: 50%;
  }
  .scroll-bottom {
    margin: 10px 0;
    font-size: 12px;
  }
  .checkbox {
    margin-bottom: 30px;
  }
  .submit {
    margin-bottom: 40px;
  }
  .low .title2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .section-sns {
    padding: 30px 16px;
  }
  .follow {
    font-size: 14px;
    text-align: center;
    margin: 0 auto 20px;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul a {
    font-size: 13px;
  }
  .footer {
    padding: 20px 0;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
  }
  body {
    padding-top: 59px;
  }
}

html {
  scroll-behavior: smooth;
}

.drawer-icon {
  position: fixed;
  top: 22px;
  right: 15px;
  z-index: 300;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
}

@media screen and (min-width: 1108px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #6E6555;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(110, 101, 85, 0.95);
  z-index: 250;
  display: none;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.drawer-icon-nav ul li {
  margin-bottom: 50px;
}

.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}

.drawer-mask.is-active {
  display: block;
}

.top-bottom .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-bottom .slick-slide {
  height: auto !important;
  padding-top: 5%;
  position: relative;
  margin: 0 10px 20px;
}

.top-bottom .slick-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-btn .arrow,
.arrow {
  -webkit-transition: .3s;
  transition: .3s;
}

.footer-inner {
  max-width: 770px;
}

.drawer-icon-nav ul li {
  margin-bottom: 30px;
}

.header {
  z-index: 1000;
}

.drawer-icon {
  z-index: 1001;
}

@media screen and (min-width: 1108px) {
  .top-message {
    -webkit-animation: fadeDownAnime 1.5s ease .5s forwards;
            animation: fadeDownAnime 1.5s ease .5s forwards;
    opacity: 0;
  }
  @-webkit-keyframes fadeDownAnime {
    from {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      top: 55%;
    }
    to {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      top: 45%;
    }
  }
  @keyframes fadeDownAnime {
    from {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      top: 55%;
    }
    to {
      opacity: 1;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      top: 45%;
    }
  }
}

@media screen and (max-width: 1107px) {
  .top-message {
    -webkit-animation: fadeDownAnime-sp 1.5s ease .5s forwards;
            animation: fadeDownAnime-sp 1.5s ease .5s forwards;
    opacity: 0;
  }
  @-webkit-keyframes fadeDownAnime-sp {
    from {
      opacity: 0;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      top: 55%;
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      top: 45%;
    }
  }
  @keyframes fadeDownAnime-sp {
    from {
      opacity: 0;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      top: 55%;
    }
    to {
      opacity: 1;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      top: 45%;
    }
  }
}

.section1-box {
  opacity: 0;
}

.section1-box.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.attention {
  opacity: 0;
}

.attention.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section1-box .main-title {
  opacity: 0;
}

.section1-box .main-title.on {
  -webkit-animation: fade 1s ease .2s forwards;
          animation: fade 1s ease .2s forwards;
}

.section1-box .row1 {
  opacity: 0;
}

.section1-box .row1.on {
  -webkit-animation: fade 1s ease .3s forwards;
          animation: fade 1s ease .3s forwards;
}

.section1-box .row2 {
  opacity: 0;
}

.section1-box .row2.on {
  -webkit-animation: fade 1s ease .4s forwards;
          animation: fade 1s ease .4s forwards;
}

.section2-1 .section-title {
  opacity: 0;
}

.section2-1 .section-title.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section2-1 .section2-text {
  opacity: 0;
}

.section2-1 .section2-text.on {
  -webkit-animation: fade 1s ease .2s forwards;
          animation: fade 1s ease .2s forwards;
}

.section2-1 .ul1 {
  opacity: 0;
}

.section2-1 .ul1.on {
  -webkit-animation: fade 1s ease .3s forwards;
          animation: fade 1s ease .3s forwards;
}

.section2-1 .ul2 {
  opacity: 0;
}

.section2-1 .ul2.on {
  -webkit-animation: fade 1s ease .4s forwards;
          animation: fade 1s ease .4s forwards;
}

.section2-1 .bottom-line {
  opacity: 0;
}

.section2-1 .bottom-line.on {
  -webkit-animation: fade 1s ease .5s forwards;
          animation: fade 1s ease .5s forwards;
}

.section3 .section3-box {
  opacity: 0;
}

.section3 .section3-box.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section3 .section-title2 {
  opacity: 0;
}

.section3 .section-title2.on {
  -webkit-animation: fade 1s ease .2s forwards;
          animation: fade 1s ease .2s forwards;
}

.section3 .section2-text2 {
  opacity: 0;
}

.section3 .section2-text2.on {
  -webkit-animation: fade 1s ease .3s forwards;
          animation: fade 1s ease .3s forwards;
}

.section3 .wrap2 {
  opacity: 0;
}

.section3 .wrap2.on {
  -webkit-animation: fade 1s ease .4s forwards;
          animation: fade 1s ease .4s forwards;
}

.section3 .section-btn {
  opacity: 0;
}

.section3 .section-btn.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section4 .section-title {
  opacity: 0;
}

.section4 .section-title.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section4 .section2-text {
  opacity: 0;
}

.section4 .section2-text.on {
  -webkit-animation: fade 1s ease .2s forwards;
          animation: fade 1s ease .2s forwards;
}

.section4 .item1 {
  opacity: 0;
}

.section4 .item1.on {
  -webkit-animation: fade 1s ease .3s forwards;
          animation: fade 1s ease .3s forwards;
}

.section4 .item2 {
  opacity: 0;
}

.section4 .item2.on {
  -webkit-animation: fade 1s ease .4s forwards;
          animation: fade 1s ease .4s forwards;
}

.section4 .section-btn2 {
  opacity: 0;
}

.section4 .section-btn2.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section4 .bottom-line {
  opacity: 0;
}

.section4 .bottom-line.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section5 .wrap {
  opacity: 0;
}

.section5 .wrap.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.section5 .section-title {
  opacity: 0;
}

.section5 .section-title.on {
  -webkit-animation: fade 1s ease .2s forwards;
          animation: fade 1s ease .2s forwards;
}

.section5 .heading {
  opacity: 0;
}

.section5 .heading.on {
  -webkit-animation: fade 1s ease .3s forwards;
          animation: fade 1s ease .3s forwards;
}

.section5 .bottom {
  opacity: 0;
}

.section5 .bottom.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.greet .wrap {
  opacity: 0;
}

.greet .wrap.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

.greet .section-title {
  opacity: 0;
}

.greet .section-title.on {
  -webkit-animation: fade2 1s ease .2s forwards;
          animation: fade2 1s ease .2s forwards;
}

.greet .greet-wrap .left {
  opacity: 0;
}

.greet .greet-wrap .left.on {
  -webkit-animation: fade 1s ease .3s forwards;
          animation: fade 1s ease .3s forwards;
}

.greet .greet-wrap .right {
  opacity: 0;
}

.greet .greet-wrap .right.on {
  -webkit-animation: fade 1s ease .4s forwards;
          animation: fade 1s ease .4s forwards;
}

@media screen and (min-width: 1108px) {
  .contact .title {
    opacity: 0;
  }
  .contact .title.on {
    -webkit-animation: fade 1s ease .1s forwards;
            animation: fade 1s ease .1s forwards;
  }
}

@media screen and (max-width: 1107px) {
  .contact .title {
    opacity: 0;
  }
  .contact .title.on {
    -webkit-animation: fade 1s ease .1s forwards;
            animation: fade 1s ease .1s forwards;
  }
}

.contact .form {
  opacity: 0;
}

.contact .form.on {
  -webkit-animation: fade 1s ease .2s forwards;
          animation: fade 1s ease .2s forwards;
}

.section-sns {
  opacity: 0;
}

.section-sns.on {
  -webkit-animation: fade 1s ease .1s forwards;
          animation: fade 1s ease .1s forwards;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@-webkit-keyframes fade2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 50px);
            transform: translate(-50%, 50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}

@keyframes fade2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 50px);
            transform: translate(-50%, 50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
  }
}

.scroll-bottom a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.scroll-bottom a:hover {
  opacity: .6;
}

@media screen and (max-width: 1107px) {
  .section3 .wrap2 .left {
    margin: 0 auto 40px;
  }
  .section3 .wrap2 {
    margin-bottom: 60px;
  }
  .section3-box2 {
    padding: 20px 3% 40px;
  }
  .section2-1 .section2-text,
  .bottom-line,
  .section4 .section2-text,
  .section4 .flex,
  .contact .form {
    padding: 0 5%;
  }
  .greet .wrap2 {
    padding: 0% 5% 8%;
  }
  .section-btn a,
  .submit input[type="submit"] {
    max-width: 250px;
    min-width: 250px;
  }
  .section1 .main-title,
  .section-title .text {
    font-size: 20px;
  }
  .low .title2 {
    font-size: 16px;
  }
  .footer ul a {
    font-size: 14px;
  }
}

@media screen and (max-width: 1107px) {
  .header .heading p {
    font-size: 13px;
    line-height: 1.4;
  }
}

.drawer-icon-wrap {
  position: relative;
}

.icon-text {
  position: absolute;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.drawer-icon {
  top: 18px;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 30px;
}

.drawer-icon-bars {
  width: 30px;
}

.drawer-icon-nav .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.drawer-icon-nav .sns-li {
  max-width: 30px;
}

.section-B .wrap ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.section-B .wrap ul .img {
  width: 23%;
}

@media screen and (max-width: 1107px) {
  .section-B .wrap ul .img {
    width: 47%;
  }
  .section-B .wrap ul .img:nth-child(n + 3) {
    margin-top: 10px;
  }
}

.section-B .wrap ul .img .img-wrap {
  width: 100%;
  padding-top: 90%;
  position: relative;
}

.section-B .wrap ul .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1107px) {
  .section-B .wrap ul {
    padding: 0 5%;
  }
  .bottom-line {
    margin-top: 20px;
  }
}

.nin input[type="text"] {
  max-width: 50px;
}

.wpcf7-radio .wpcf7-list-item-label {
  position: relative;
}

.wpcf7-radio .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #555555;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #555555;
  opacity: 0;
}

.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #555555;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio input[type="radio"]:checked + span::before {
  opacity: 1;
}

.wpcf7-radio .wpcf7-list-item-label::before {
  left: -25px;
}

.wpcf7-radio .wpcf7-list-item-label::after {
  left: -25px;
}

.wpcf7-spinner {
  display: none !important;
}

textarea {
  padding: 10px;
}

.thanks {
  padding: 150px 0;
}

@media screen and (max-width: 1107px) {
  .thanks {
    padding: 40px 0;
  }
}

.t-text {
  font-size: 20px;
  text-align: center;
}

@media screen and (max-width: 1107px) {
  .t-text {
    font-size: 14px;
  }
}

.back {
  margin-top: 80px;
  text-align: center;
}

.back a {
  text-decoration: underline;
}

@media screen and (max-width: 1107px) {
  .back a {
    font-size: 13px;
  }
}

.back a:hover {
  opacity: .6;
}

.top-message {
  text-shadow: 0 3px 24px #333;
}

.attention {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 1107px) {
  .attention {
    font-size: 13px;
    margin-top: 20px;
  }
}

.big-contact {
  background: url(../img/contact.png) no-repeat center center/cover;
}

.section5 {
  background: url(../img/access-bg.png) no-repeat center center/cover;
}

.greet {
  padding-bottom: 0;
}

.contact {
  padding-top: 240px;
}

@media screen and (max-width: 1107px) {
  .contact {
    padding-top: 80px;
  }
}

@media screen and (min-width: 1108px) {
  .contact .title {
    position: initial;
    text-align: center;
    -webkit-transform: initial;
            transform: initial;
  }
}

@media screen and (max-width: 1107px) {
  .top-message {
    font-size: 22px;
  }
}
