@charset "UTF-8";

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
  /*  font-family: "FOT-スキップ Std B";*/
  font-family: 'MotoyaStAporoStd-W4';
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
/*------------
Body
--------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

html {
  height: 100%;
}

body {
  font-family: "FOT-筑紫オールドゴシック Std B";
  font-size: 15px;
  color: #333;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  overflow: auto;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.top-body {
  background: #333;
  color: #FFF;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.no-link {
  pointer-events: none;
}

.anchor {
  margin-top: -50px;
  padding-top: 50px;
}

a[href^="tel"] {
  cursor: default;
}

.container, .footer-inr, .modal-content {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

/*------------
Header
--------------*/
.header {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url(../images/header_bg.jpg) center/cover no-repeat;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-inr {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 25px 45px 0 35px;
}

.header .h-logo {
  width: 250px;
}

.header .h-btn {
  background-color: #682425;
  padding: 20px 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.header .h-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0;
}

.header .h-btn .jp {
  font-size: 17px;
  line-height: 1;
}

.header .h-btn .en {
  font-family: "Rye", cursive;
  font-size: 30px;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.header .h-btn:hover::before {
  opacity: 1;
}

.header .btn-home {
  display: none;
}

@media screen and (max-width: 1300px) and (min-width: 801px) {
  .header-inr {
    padding: 25px 20px 0 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header .h-logo {
    width: 190px;
    margin-bottom: 20px;
  }

  .header .h-btn {
    padding: 15px;
  }

  .header .h-btn .jp {
    font-size: 12px;
  }

  .header .h-btn .en {
    font-size: 20px;
  }
}

.humberger {
  display: none;
}

/*------------
G-navi
--------------*/
.pc-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pc-navi .item {
  line-height: 1.4;
  padding-bottom: 20px;
}

.pc-navi .item .item-link {
  display: block;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  -webkit-transition: .3s;
  transition: .3s;
}

.pc-navi .item .item-link .jp {
  font-size: 13px;
  line-height: 1;
}

.pc-navi .item .item-link .en {
  display: block;
  font-family: "Rye", cursive;
  font-size: 23px;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.pc-navi .item .item-link:hover {
  border-bottom: 1px solid #8B827B;
}

.pc-navi .item:not(:last-child) {
  margin-right: 35px;
}

@media screen and (max-width: 1200px) and (min-width: 801px) {
  .pc-navi .item .item-link .jp {
    font-size: 12px;
  }

  .pc-navi .item .item-link .en {
    font-size: 20px;
  }

  .pc-navi .item:not(:last-child) {
    margin-right: 30px;
  }
}

.pc-dropdown {
  position: relative;
}

.pc-dropdown .pc-navi-child {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  -webkit-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.pc-dropdown .pc-navi-child-inr {
  background-color: rgba(139, 130, 123, 0.9);
  text-align: left;
  padding: 40px 20px;
  min-width: 210px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.pc-dropdown .pc-navi-child-inr:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-width: 15px 9px;
  border-color: transparent transparent rgba(139, 130, 123, 0.9) transparent;
  border-style: solid;
}

.pc-dropdown .pc-navi-child li {
  line-height: 1.6;
  width: 100%;
  padding-left: 18px;
  white-space: nowrap;
  position: relative;
}

.pc-dropdown .pc-navi-child li span {
  padding-bottom: 3px;
}

.pc-dropdown .pc-navi-child li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #682425;
}

.pc-dropdown .pc-navi-child li:not(:last-child) {
  margin-bottom: 10px;
}

.pc-dropdown .pc-navi-child li:hover span {
  border-bottom: 1.5px solid #A27E39;
}

.pc-dropdown:hover .pc-navi-child {
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

.sp-navi {
  display: none;
}

.humberger {
  display: none;
}

.fixed-menu {
  position: fixed;
  top: 50%;
  right: 0;
  color: #fff;
  z-index: 100;
  -webkit-transform: translate(562.5px, -50%);
  transform: translate(562.5px, -50%);
}

.fixed-menu .item {
  width: 625px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #303A38;
}

.fixed-menu .item:hover {
  -webkit-transform: translateX(-562.5px);
  transform: translateX(-562.5px);
}

.fixed-menu .ttl {
  line-height: 1.125;
  width: 10%;
  padding: 20px;
  text-align: center;
}

.fixed-menu .ttl img {
  width: 21px;
  height: 21px;
  margin-bottom: 12px;
}

.fixed-menu .desc {
  width: 90%;
  text-align: center;
  line-height: 1;
  padding: 30px 30px 30px 15px;
}

.fixed-menu .cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.fixed-menu .btn-cta {
  border: 1px solid #fff;
  line-height: 1;
  padding: 15px;
  width: 180px;
  -webkit-transition: .3s;
  transition: .3s;
  margin-left: 50px;
}

.fixed-menu .btn-cta:hover {
  color: #303A38;
  background: #fff;
}

.fixed-menu .tel span {
  font-size: 30px;
  padding-left: 45px;
}

.fixed-menu .tel span::before {
  width: 34px;
  height: 25px;
}

.fixed-menu .txt01 {
  margin-bottom: 20px;
}

.fixed-menu .time-table th {
  font-size: 13px;
}

.fixed-menu .time-table td {
  font-size: 15px;
}

.fixed-menu .time-table-txt {
  font-size: 13px;
  margin-top: 10px;
}

/*------------
Hero
--------------*/
.hero {
  width: 100%;
  position: relative;
}

.hero-slider {
  height: 100%;
}

.hero-slider .slider-img {
  height: 740px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-slider .slider-img:nth-child(1) {
  background-image: url(../images/hero01.jpg);
}

.hero-slider .slider-img:nth-child(2) {
  background-image: url(../images/hero02.jpg);
}

.hero-slider .slider-img:nth-child(3) {
  background-image: url(../images/hero03.jpg);
}

.hero-slider .slick-dots {
  bottom: 20px;
  text-align: right;
  padding-right: 20px;
}

.hero-slider .slick-dots li button {
  background: #fff;
}

.hero-desc {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero-ttl {
  font-size: 40px;
  color: #A27E39;
  text-align: center;
  padding: 10px 20px;
  background-color: #fff;
}

.hero-news {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  line-height: 1;
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 700px;
  width: 100%;
}

.hero-news .ttl {
  font-size: 22px;
  line-height: 1;
  margin-right: 20px;
  white-space: nowrap;
}

.hero-news .top-btn, .hero-news .btn-more {
  position: absolute;
  right: 15px;
  width: 120px;
}

.hero-news .top-btn:before, .hero-news .btn-more:before {
  right: 10px;
}

/*------------
Top contents
--------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 40px;
  position: relative;
}

.t-ttl .en {
  font-family: "Rye", cursive;
  font-weight: 400;
  font-size: 72px;
  display: block;
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: 0.025em;
}

.t-ttl .jp {
  font-size: 24px;
  line-height: 1;
}

.t-ttl::before {
  content: '';
  width: 140px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(../images/ttl_deco.svg) center/contain no-repeat;
}

.sec01 {
  background: url(../images/sec01_bg.jpg) center/cover no-repeat;
  padding: 100px 0;
}

.sec01 .container, .sec01 .footer-inr, .sec01 .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec01-ttl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec01 .t-ttl {
  margin-bottom: 65px;
  padding-top: 0;
  text-align: left;
}

.sec01 .t-ttl .en {
  font-size: 48px;
  margin-bottom: 10px;
}

.sec01 .t-ttl .jp {
  font-size: 20px;
}

.sec01 .t-ttl::before {
  display: none;
}

.sec01 .list-top-news02 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.sec01 .top-btn, .sec01 .btn-more {
  width: 175px;
  min-width: 175px;
}

.sec02 {
  padding: 100px 0 140px;
  background: url(../images/sec02_bg.jpg) center/cover no-repeat;
}

.sec02-layout {
  text-align: center;
  background: url(../images/sec02-desc_bg02.png) center/100% 100% no-repeat;
  margin: -20px -40px -40px -20px;
  padding: 20px 40px 40px 20px;
}

.sec02-layout-inr {
  width: 100%;
  padding: 55px 30px 60px;
  background: url(../images/sec02-desc_bg.jpg) center/100% 100% no-repeat;
}

.sec02-layout .l-ttl {
  font-size: 34px;
  margin-bottom: 40px;
}

.sec02-layout .l-desc {
  margin-bottom: 35px;
  line-height: 2;
}

.sec03 {
  background: url(../images/sec03_bg.jpg) right/cover no-repeat;
}

.sec03-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sec03-layout .l-img {
  width: 80%;
  margin: -40px 0 0 -50%;
}

.sec03-layout .l-desc {
  width: 50%;
  margin-left: 75px;
  padding: 100px 0 115px;
}

.sec03-layout .l-txt+.l-txt {
  margin-top: 20px;
}

.sec03-layout .top-btn, .sec03-layout .btn-more {
  margin-top: 50px;
}

.sec03-layout .t-ttl {
  text-align: left;
}

.sec03-layout .t-ttl::before {
  left: 0;
  -webkit-transform: none;
  transform: none;
}

.sec04 {
  background: url(../images/sec04_bg.jpg) center/cover no-repeat;
  padding: 100px 0;
}

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

.sec04-list .l-item {
  text-align: center;
  width: calc((100% - 100px) / 5);
  -webkit-transition: .3s;
  transition: .3s;
}

.sec04-list .l-item:not(:nth-child(5n)) {
  margin-right: 25px;
}

.sec04-list .l-item:nth-child(n + 6) {
  margin-top: 30px;
}

.sec04-list .l-item:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.sec04-list a {
  display: block;
  height: 100%;
  padding: 32px 20px 25px;
  position: relative;
  background-image: url(../images/sec04-item_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sec04-list .l-img {
  margin-bottom: 10px;
}

.sec04-list .l-img img {
  width: 72px;
  height: 72px;
}

.sec04-list .l-ttl {
  color: #fff;
  line-height: 1.47;
  font-size: 17px;
  font-weight: 700;
}

.sec04-list .l-desc {
  border-top: 1px solid #fff;
  margin-top: 15px;
  padding-top: 15px;
  color: #fff;
  font-size: 13px;
}

.sec05 {
  padding: 100px 0;
  background: url(../images/sec05_bg.jpg) center/cover no-repeat;
}

.sec05-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 40px;
}

.sec05-layout .l-img {
  width: 65%;
  margin-left: -20px;
}

.sec05-layout .l-desc {
  margin-left: -55px;
  margin-bottom: -15px;
  z-index: 0;
}

.sec05-layout .l-desc a {
  display: block;
  width: 430px;
  min-height: 290px;
  padding: 40px 60px 0;
  background: url(../images/sec05-desc_bg.png) center/100% 100% no-repeat;
  -webkit-transition: .3s;
  transition: .3s;
}

.sec05-layout .l-desc a:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.sec05-layout .l-ttl {
  display: block;
  font-size: 27px;
  line-height: 1.14;
  color: #A27E39;
  margin-bottom: 25px;
  text-align: center;
}

.sec05-layout .l-btn {
  margin-top: 30px;
}

.sec05-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 0;
}

.sec05-layout.reverse .l-desc {
  margin-right: -55px;
  margin-bottom: 0;
}

.sec05 .t-ttl {
  margin-bottom: 35px;
}

.sec06 {
  padding: 60px 0;
  background: url(../images/sec06_bg.jpg) right/cover no-repeat;
}

.sec06-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 0;
  margin-bottom: 60px;
}

.sec06-layout .l-img {
  width: 100%;
  margin: 0 0 0 -35%;
}

.sec06-layout .l-desc {
  width: 44%;
}

.sec06-layout .top-btn, .sec06-layout .btn-more {
  margin-top: 50px;
}

.sec06 .t-ttl {
  text-align: left;
}

.sec06 .t-ttl::before {
  left: 0;
  -webkit-transform: none;
  transform: none;
}

  .bnr-recruit{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:24px;
  }

  .bnr-recruit a{
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .bnr-recruit a:hover {
    opacity: 0.7;
  }


.sec07 {
  background: url(../images/sec07_bg.jpg) center/cover no-repeat;
  padding: 100px 0;
}

.sec07 .container, .sec07 .footer-inr, .sec07 .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sec07-ttl {
  margin-right: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sec07 .t-ttl {
  margin-bottom: 65px;
  padding-top: 0;
  text-align: left;
}

.sec07 .t-ttl .en {
  font-size: 48px;
  margin-bottom: 10px;
}

.sec07 .t-ttl .jp {
  font-size: 20px;
}

.sec07 .t-ttl::before {
  display: none;
}

.sec07 .list-top-news02 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.sec07 .top-btn, .sec07 .btn-more {
  width: 175px;
  min-width: 175px;
}

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

.sec08 .l-map {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 700px;
}

.sec08 .l-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.sec08 .l-desc {
  width: 45%;
  padding: 50px 8.5%;
  background: url(../images/sec08-desc_bg.jpg) center/cover no-repeat;
  text-align: center;
}

.sec08 .l-logo {
  width: 320px;
  margin: 0 auto 20px;
}

.sec08 .l-logo img {
  width: 100%;
}

.sec08 .address {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sec08 .address .small {
  font-size: 12px;
}

.sec08 .tel {
  margin-bottom: 20px;
}

.sec08 .l-calendar {
  margin: 0 auto 30px;
}

.sec08 .business-calendar {
  background: #fff;
  color: #333;
  border-top: none !important;
  border-left: none !important;
  font-size: 12px;
}

.sec08 .business-calendar caption {
  font-size: 22px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin: 0;
  padding: 0 0 10px 0;
  color: #fff;
  position: relative;
}

.sec08 .business-calendar-past {
  position: absolute;
  left: 0;
}

.sec08 .business-calendar-future {
  position: absolute;
  right: 0;
}

.sec08 .business-calendar th {
  background: #1E1E1E;
  color: #fff;
  border-right: 1px solid #ddd;
  border-bottom: none;
  font-weight: 700;
  padding: 5px;
}

.sec08 .business-calendar th:last-child {
  border-right: none;
}

.sec08 .business-calendar td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.sec08 .business-calendar td:nth-child(7n) {
  border-right: none;
}

.sec08 .business-calendar td:nth-child(n+29) {
  border-bottom: none;
}

.sec08 .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
}

.sec08 .business-calendar .today {
  background: #fff;
  opacity: 1;
  text-decoration: underline;
}

.sec08 .business-calendar .attr0, .sec08 .business-calendar .attr1, .sec08 .business-calendar .attr2, .sec08 .business-calendar .attr3, .sec08 .business-calendar .attr4, .sec08 .business-calendar .attr5 {
  color: #FFF;
  background: #FFF;
}

.sec08 .business-calendar .attr0::before, .sec08 .business-calendar .attr1::before, .sec08 .business-calendar .attr2::before, .sec08 .business-calendar .attr3::before, .sec08 .business-calendar .attr4::before, .sec08 .business-calendar .attr5::before {
  opacity: 1;
}

.sec08 .business-calendar .attr0::before {
  background: #682425;
}

.sec08 .business-calendar .attr1::before {
  background: #8B827B;
}

.sec08 .business-calendar .attr2::before {
  background: #303A38;
}

.sec08 .business-calendar .attr3::before {
  background: #39627D;
}

.sec08 .business-calendar .attr4::before {
  background: #A27E39;
}

.sec08 .business-calendar .attr5::before {
  background: #BBCE8F;
}

.sec09 {
  background: url(../images/sec09_bg.jpg) center/cover no-repeat;
  padding: 100px 0;
}

.list-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 13px;
}

.list-event .l-item:not(:last-child) {
  margin-right: 25px;
}

.list-event i {
  margin: 0 5px 0 0;
  font-size: 11px;
}

.list-event-inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-event-inr li:not(:last-child) {
  margin-right: 25px;
}

.list-event .event01 {
  color: #682425;
}

.list-event .event02 {
  color: #8B827B;
}

.list-event .event03 {
  color: #303A38;
}

.list-event .event04 {
  color: #39627D;
}

.list-event .event05 {
  color: #A27E39;
}

.list-event .event06 {
  color: #BBCE8F;
}

/*------------
Footer
--------------*/
.pagetop {
  right: 35px;
  z-index: 99;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 12px;
  font-family: "Rye", cursive;
  padding-top: 85px;
  position: relative;
  border-right: 2px solid #fff;
  color: #fff;
}

.pagetop::before {
  content: '';
  width: 1.5px;
  height: 15px;
  position: absolute;
  top: -2px;
  right: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
}

.pagetop:hover {
  color: #A27E39;
  border-right: 2px solid #A27E39;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagetop:hover::before {
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #A27E39;
}

.pagetop.u-pagetop {
  border-right: 2px solid #A27E39;
  color: #A27E39;
}

.pagetop.u-pagetop::before {
  background-color: #A27E39;
}

.footer {
  color: #fff;
  background: url(../images/footer-bg.jpg) center/cover no-repeat;
}

.footer-inr {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .f-left {
  width: 50%;
  padding-right: 16px;
}

.footer .f-logo {
  display: block;
  width: 320px;
  margin-bottom: 10px;
}

.footer .f-logo img {
  width: 100%;
}

.footer .f-access {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer .tel {
  margin-bottom: 30px;
}

.footer .f-navi {
  width: 50%;
  padding-left: 48px;
}

.footer .f-navi-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .f-navi-ttl::after {
  content: '';
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  background: #D1D1D1;
  margin-left: 5px;
}

.footer .f-navi-list {
  -webkit-column-count: 2;
  column-count: 2;
}

.footer .f-navi-list a:hover {
  text-decoration: underline;
}

.footer .f-navi-list:not(:last-child) {
  margin-bottom: 30px;
}

.footer .f_bnr_area figure {
  display: inline-block;
  width: 250px;
  height: auto;
}


.footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 26px;
  background-color: #000;
  line-height: 1;
}

/*------------
Button
--------------*/
.top-btn, .btn-more {
  display: inline-block;
  min-width: 225px;
  padding: 10px 30px 10px 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-style: solid;
  border-width: 2px;
  border-color: transparent transparent #fff transparent;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}

.top-btn::before, .btn-more::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #A27E39;
}

.top-btn::after, .btn-more::after {
  content: '';
  width: 37px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #A27E39;
  -webkit-transition: .3s;
  transition: .3s;
}

.top-btn:hover, .btn-more:hover {
  padding: 10px 20px 10px 20px;
  border: 2px solid #fff;
}

.top-btn:hover::after, .btn-more:hover::after {
  width: 0;
}

.btn-more {
  min-width: 200px;
  border-color: transparent transparent #000 transparent;
}

.btn-more.wide {
  min-width: 225px;
}

.btn-more:hover {
  padding: 10px 20px 10px 20px;
  border: 2px solid #000;
}

.btn-more:hover::after {
  width: 0;
}

/*------------
Common parts
--------------*/
.map {
  position: relative;
  width: 100%;
  height: 500px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tel {
  display: inline-block;
}

.tel span {
  position: relative;
  font-size: 40px;
  font-family: "Rye", cursive;
  line-height: 1;
  padding-left: 60px;
  letter-spacing: 0.05em;
}

.tel span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/share/icon_tel_w.svg) no-repeat;
  background-size: contain;
  width: 46px;
  height: 34px;
}

.time-table tr {
  border-bottom: 1px solid #fff;
}

.time-table th, .time-table td {
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  padding: 12px 5px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.time-table th:first-child {
  width: 25%;
}

.time-table td {
  font-size: 14px;
  width: calc(75% / 8);
}

.time-table-txt {
  text-align: right;
  font-size: 11px;
  margin-top: 5px;
}

/*------------
Under layout
--------------*/
.u-top-common {
  width: 100%;
  margin-bottom: 20px;
  background-image: url(../images/under/under_ttl_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-ttl {
  text-align: center;
  color: #fff;
  padding: 194px 0 164px 16.5%;
  display: inline-block;
}

.page-ttl .txt01 {
  font-size: 54px;
  margin-bottom: 30px;
  line-height: 1;
  font-family: "Rye", cursive;
  position: relative;
}

.page-ttl .txt01::before {
  content: "";
  position: absolute;
  background-image: url(../images/under/under_ttl_deco.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 140px;
  height: 20px;
  left: calc(50% - 70px);
  top: -35px;
}

.page-ttl .txt02 {
  font-size: 24px;
  line-height: 1;
}

.breadcrumb {
  margin-bottom: 80px;
}

.breadcrumb ul {
  font-size: 12px;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
  vertical-align: 1px;
}

.breadcrumb a:hover {
  color: #A27E39;
}

/*------------
Under parts
--------------*/
.u-h2, .postdata h1, .post-category-ttl {
  font-size: 34px;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 60px;
  position: relative;
}

.u-h2:before, .postdata h1:before, .post-category-ttl:before {
  content: '';
  position: absolute;
  background-image: url(../images/under/h2_deco_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 87px;
  height: 12px;
  top: 5px;
  left: calc(50% - 43.5px);
}

.u-h3, .dl-privacy dt, .postdata h2, .post-ttl {
  font-size: 27px;
  border-bottom: 1px solid rgba(139, 130, 123, 0.3);
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.u-h3:before, .dl-privacy dt:before, .postdata h2:before, .post-ttl:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
  background-color: #A27E39;
}

.u-h4, .postdata h3 {
  font-size: 24px;
  color: #A27E39;
  margin-bottom: 30px;
}

.u-h5 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.u-h5 span {
  position: absolute;
  left: 0;
  top: 4px;
}

.u-h5 span img {
  height: 23px;
}

.short {
  margin-bottom: 60px;
}

.tall {
  margin-bottom: 160px;
}

.tall:last-child {
  margin-bottom: 200px;
}

.l-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-style01 .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 50px;
}

.l-style01 .l-img.small {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
}

.l-style01 .l-img.large {
  margin: 0 7.5% 0 -10%;
  position: relative;
}

.l-style01 .u-slider02 {
  width: 45%;
  padding: 0;
}

.l-style01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style01 .l-desc .desc-ttl {
  font-size: 24px;
  margin-bottom: 30px;
  padding-left: 28px;
  position: relative;
}

.l-style01 .l-desc .desc-ttl::before {
  position: absolute;
  content: "";
  background-image: url(../images/under/box_deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: -2px;
  height: 50px;
  width: 20px;
}

.l-style01 .lf-left,
.l-style01 .lf-right {
  background: #fff;
  color: #000;
  min-height: 203px;
  font-size: 14px;
}

.l-style01 .lf-left {
  width: 65%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 30px 60px;
  margin-right: 15px;
}

.l-style01 .lf-left-tel {
  margin-bottom: 20px;
}

.l-style01 .lf-left-tel .tel {
  padding-left: 0;
  line-height: 1.5;
}

.l-style01 .lf-left-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-style01 .lf-left-box-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  letter-spacing: 0;
  max-width: 270px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-style01 .lf-left-box-time dt {
  width: 20%;
}

.l-style01 .lf-left-box-time dd {
  width: 70%;
}

.l-style01 .lf-right {
  width: 35%;
  padding: 30px;
  text-align: center;
}

.l-style01 .lf-right-btn .btn-more {
  margin: 25px auto 0;
}

.l-style02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-style02 .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 50px;
}

.l-style02 .l-img.small {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
}

.l-style02 .l-img.large {
  margin: 0 -10% 0 7.5%;
  position: relative;
}

.l-style02 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-style03.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-style03.reverse .l-desc {
  padding: 55px 150px 55px 55px;
  margin: 50px -100px 0 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style03 .l-img {
  width: 40%;
}

.l-style03 .l-desc {
  background: #FAF7F5;
  padding: 55px 55px 55px 150px;
  margin: 50px 0 0 -100px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-style04 .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 80px;
}

.l-style04 .l-img.small {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
}

.l-style04 .l-img.large {
  margin: 0 7.5% 0 -10%;
  position: relative;
}

.l-style04 .l-desc {
  width: 46.7%;
}

.l-style04 .l-desc .l-ttl {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 30px;
}

.l-style04 .l-desc .l-ttl .txt01 {
  display: inline-block;
  font-family: "Rye", cursive;
  color: #A27E39;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.l-style04 .l-desc .l-ttl .txt02 {
  display: block;
  font-size: 27px;
  letter-spacing: 0.05em;
}

.l-style04 .l-desc .l-ttl-s {
  font-size: 20px;
  color: #A27E39;
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
}

.l-style04 .l-desc .l-ttl-s::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #A27E39;
  width: 30px;
  height: 1px;
  left: 0;
  top: 50%;
}

.l-style05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-style05 .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 80px;
}

.l-style05 .l-img.small {
  -webkit-box-flex: 0.5;
  -ms-flex: 0.5;
  flex: 0.5;
}

.l-style05 .l-img.large {
  margin: 0 -10% 0 7.5%;
  position: relative;
}

.l-style05 .l-desc {
  width: 46.7%;
}

.l-style05 .l-desc .l-ttl {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 30px;
}

.l-style05 .l-desc .l-ttl .txt01 {
  display: inline-block;
  font-family: "Rye", cursive;
  color: #A27E39;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.l-style05 .l-desc .l-ttl .txt02 {
  display: block;
  font-size: 27px;
  letter-spacing: 0.05em;
}

.l-style05 .l-desc .l-ttl-s {
  font-size: 20px;
  color: #A27E39;
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
}

.l-style05 .l-desc .l-ttl-s::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: #A27E39;
  width: 30px;
  height: 1px;
  left: 0;
  top: 50%;
}

.l-style06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-style06 .l-ttl {
  border-bottom: 1px solid #A27E39;
  color: #333;
  font-size: 27px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.l-style06 .l-img {
  margin: 0 0 0 40px;
  width: 40%;
}

.l-style06 .l-img.small {
  width: 25%;
}

.l-style06 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.box-style01 {
  background: #FAF7F5;
  padding: 50px;
}

.box-style01 .wrapper {
  margin: 40px 0;
}

.box-style01 .wrapper .w-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.box-style01 .wrapper .w-item-ttl {
  font-family: "Rye", cursive;
  font-size: 30px;
  color: #A27E39;
}

.box-style01 .wrapper .w-item-txt {
  max-width: 644px;
  padding-left: 25px;
  border-left: 1px solid #8B827B;
}

.box-style01 .bottom {
  font-size: 18px;
  font-family: #8B827B;
  text-align: right;
  font-weight: bold;
  margin-top: 40px;
}

.box-style02 {
  margin: 0 auto;
  padding: 75px 0 50px;
  max-width: 721px;
  color: #fff;
  text-align: center;
  background-image: url(../images/under/box-02_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.box-style02.check::before {
  background-image: url(../images/under/box-02_img_check.png);
}

.box-style02::before {
  content: "";
  position: absolute;
  background-image: url(../images/under/box-02_img.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 290px;
  height: 110px;
  top: -35px;
  left: 60px;
}

.box-style02 .box-h2 {
  font-size: 27px;
  margin-bottom: 25px;
  color: #9D804D;
}

.box-style02 .tel {
  font-family: "Rye", cursive;
  font-size: 30px;
  padding-left: 40px;
  line-height: 1;
  color: #fff;
  position: relative;
  display: inline-block;
}

.box-style02 .tel::before {
  position: absolute;
  content: "";
  background-image: url(../images/under/icon_phone.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 34px;
  height: 25px;
  left: 0;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.box-style02 .btn-more {
  border-color: transparent transparent #fff transparent;
}

.box-style02 .btn-more:hover {
  border: 2px solid #fff;
}

.list-col1 .item:not(:last-child) {
  margin-bottom: 100px;
}

.list-col1 .item--s:not(:last-child) {
  margin-bottom: 60px;
}

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

.list-col2 .list-item {
  width: 48%;
}

.list-col2 .list-item .time-table tr {
  border-bottom: 1px solid #000;
}

.list-col2 .list-item .business-calendar {
  background: #fff;
  color: #333;
  border-top: none !important;
  border-left: none !important;
  font-size: 12px;
}

.list-col2 .list-item .business-calendar caption {
  font-size: 22px;
  border-top: none;
  border-left: none;
  border-right: none;
  margin: 0;
  padding: 0 0 10px 0;
  color: #000;
  position: relative;
}

.list-col2 .list-item .business-calendar-past {
  position: absolute;
  left: 0;
}

.list-col2 .list-item .business-calendar-future {
  position: absolute;
  right: 0;
}

.list-col2 .list-item .business-calendar th {
  background: #1E1E1E;
  color: #fff;
  border-right: 1px solid #ddd;
  border-bottom: none;
  font-weight: 700;
  padding: 5px;
}

.list-col2 .list-item .business-calendar th:last-child {
  border-right: none;
}

.list-col2 .list-item .business-calendar td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.list-col2 .list-item .business-calendar td:nth-child(7n) {
  border-right: none;
}

.list-col2 .list-item .business-calendar td:nth-child(n+29) {
  border-bottom: none;
}

.list-col2 .list-item .business-calendar td::before {
  content: "";
  background: #ccc;
  border-radius: 50px;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
}

.list-col2 .list-item .business-calendar .today {
  background: #fff;
  opacity: 1;
  text-decoration: underline;
}

.list-col2 .list-item .business-calendar .attr0, .list-col2 .list-item .business-calendar .attr1, .list-col2 .list-item .business-calendar .attr2, .list-col2 .list-item .business-calendar .attr3, .list-col2 .list-item .business-calendar .attr4 {
  color: #FFF;
  background: #FFF;
}

.list-col2 .list-item .business-calendar .attr0::before, .list-col2 .list-item .business-calendar .attr1::before, .list-col2 .list-item .business-calendar .attr2::before, .list-col2 .list-item .business-calendar .attr3::before, .list-col2 .list-item .business-calendar .attr4::before {
  opacity: 1;
}

.list-col2 .list-item .business-calendar .attr0::before {
  background: #682425;
}

.list-col2 .list-item .business-calendar .attr1::before {
  background: #8B827B;
}

.list-col2 .list-item .business-calendar .attr2::before {
  background: #303A38;
}

.list-col2 .list-item .business-calendar .attr3::before {
  background: #39627D;
}

.list-col2 .list-item .business-calendar .attr4::before {
  background: #A27E39;
}

.list-col2 .list-item:nth-child(odd) {
  margin-right: 4%;
}

.list-col2 .list-item+.list-item+.list-item {
  margin-top: 40px;
}

.list-col2 .list-img {
  margin-bottom: 20px;
}

.list-col2 .list-ttl {
  font-size: 22px;
  margin-bottom: 10px;
}

.list-card-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-card-col2.col4 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-card-col2.col4 .list-item {
  padding: 25px;
  width: 24%;
}

.list-card-col2.col4 .list-item:nth-child(n+5) {
  margin-top: 40px;
}

.list-card-col2.col4 .list-item:nth-child(odd) {
  margin-right: 0;
}

.list-card-col2.col4 .list-item+.list-item+.list-item {
  margin-top: 0;
}

.list-card-col2 .list-item {
  border: 1px solid #A27E39;
  padding: 27px;
  width: 48%;
}

.list-card-col2 .list-item.black {
  background: #000000;
  color: #fff;
  border: none;
}

.list-card-col2 .list-item.black .list-ttl .ttl02 {
  border-bottom: 1px solid #fff;
}

.list-card-col2 .list-item:nth-child(odd) {
  margin-right: 4%;
}

.list-card-col2 .list-item+.list-item+.list-item {
  margin-top: 40px;
}

.list-card-col2 .list-img {
  margin-bottom: 20px;
}

.list-card-col2 .list-ttl {
  margin-bottom: 15px;
}

.list-card-col2 .list-ttl .ttl01 {
  font-size: 13px;
  display: block;
  color: #A27E39;
}

.list-card-col2 .list-ttl .ttl02 {
  display: block;
  font-size: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(139, 130, 123, 0.3);
}

.list-card-col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-card-col4 .list-item {
  background: #FAF7F5;
  text-align: center;
  padding: 25px;
  width: 24%;
}

.list-card-col4 .list-item:nth-child(n+5) {
  margin-top: 40px;
}

.list-card-col4 .list-img {
  margin: 15px 0 20px;
}

.list-card-col4 .num {
  display: inline-block;
  background: #A27E39;
  border-radius: 15px;
  color: #fff;
  font-family: "Rye", cursive;
  font-size: 15px;
  line-height: 25px;
  padding: 0px 17.5px;
}

.list-card-col4 .list-ttl {
  font-size: 18px;
  margin-top: 5px;
}

.list-card-col4 .list-txt {
  text-align: left;
}

.list-txt li {
  position: relative;
  padding-left: 10px;
}

.list-txt li:before {
  content: "";
  background: #A27E39;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
}

.list-txt.col2, .list-txt.col3, .list-txt.col4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-txt.col2 li {
  width: 48%;
}

.list-txt.col2 li:nth-child(odd) {
  margin-right: 4%;
}

.list-txt.col3 li {
  width: 32%;
}

.list-txt.col3 li:not(:nth-child(3n)) {
  margin-right: 2%;
}

.list-txt.col4 li {
  width: 25%;
  padding-right: 20px;
}

.list-check li {
  position: relative;
  padding-left: 15px;
}

.list-check li+li {
  margin-top: 3px;
}

.list-check li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 6px;
  border-left: 2px solid #A27E39;
  border-bottom: 2px solid #A27E39;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li:not(:last-child):after {
  content: "";
  display: inline-block;
  background: #d6d6df;
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link a:before {
  content: "";
  background: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
  stroke: #A27E39;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 7px;
}

.list-anchor-link a:hover {
  color: #A27E39;
}

.flow-type01 {
  padding: 60px;
  color: #fff;
  background: #000 url(../images/under/under_sec_bg.png) no-repeat center/100% 100%;
  position: relative;
}

.flow-type01::before, .flow-type01::after {
  content: "";
  position: absolute;
  background: #000 url(../images/under/under_sec_top.png) no-repeat center/100% 100%;
  max-width: 1024px;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  z-index: 5;
}

.flow-type01::after {
  background: #000 url(../images/under/under_sec_btm.png) no-repeat center/100% 100%;
  top: auto;
  bottom: 0;
}

.flow-type01 .l-item {
  position: relative;
  z-index: 10;
}

.flow-type01 .l-item:not(:last-child) {
  border-bottom: 2px solid #8B827B;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.flow-type01 .l-item:not(:last-child)::before, .flow-type01 .l-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
}

.flow-type01 .l-item:not(:last-child)::before {
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #8B827B;
  border-right: 3px solid #8B827B;
  bottom: -5px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  z-index: 2;
}

.flow-type01 .l-item:not(:last-child)::after {
  background: #000;
  width: 70px;
  height: 20px;
  bottom: -18px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.flow-type01 .l-ttl {
  font-size: 22px;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 2px solid #fff;
  margin-bottom: 20px;
}

.flow-type01 .l-ttl span {
  background: #A27E39;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  padding: 0 9px;
  margin-right: 20px;
  vertical-align: 3px;
  position: relative;
}

.flow-type01 .l-ttl span::after {
  content: "";
  border-style: solid;
  border-width: 12.5px 0 12.5px 7px;
  border-color: transparent transparent transparent #A27E39;
  position: absolute;
  top: 0;
  right: -7px;
}

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

.staff-layout .l-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 95px;
}

.staff-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-layout .job {
  font-size: 18px;
  margin-bottom: 15px;
  color: #A27E39;
  line-height: 1;
}

.staff-layout .name {
  margin-bottom: 30px;
}

.staff-layout .jp {
  font-size: 34px;
  margin-right: 25px;
  line-height: 1;
}

.staff-layout .box {
  font-size: 15px;
  padding: 10px 16px;
  margin-bottom: 25px;
  line-height: 1;
  color: #fff;
  background: #000000;
}

.staff-profile .item {
  width: 100%;
}

.staff-profile .ttl {
  font-size: 22px;
  color: #A27E39;
  margin-bottom: 10px;
}

.staff-profile-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.staff-profile-list .data {
  width: 30%;
}

.staff-profile-list .txt {
  width: 70%;
}

.dl-faq01 dt {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(139, 130, 123, 0.3);
  padding: 0 30px 10px 0;
  margin: 0 0 15px;
  position: relative;
}

.dl-faq01 dt .txt {
  font-size: 20px;
  line-height: 1.7;
}

.dl-faq01 dt .icon {
  background-color: #A27E39;
}

.dl-faq01 dt::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/under/under_faq_img.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 10px;
  -webkit-transition: .5s;
  transition: .5s;
}

.dl-faq01 dt:not(.is-open):hover {
  opacity: .5;
}

.dl-faq01 dt.is-open::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.dl-faq01 dd {
  display: none;
  margin-bottom: 60px;
}

.dl-faq01 dd .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.dl-faq01 dd+dt {
  margin-top: 10px;
}

.dl-faq01 dd .icon {
  background: #303A38;
}

.dl-faq01 .icon {
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  font-family: "Rye", cursive;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 31px;
  margin: 0 15px 0 0;
}

.dl-faq01 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.dl-privacy:not(:last-child) {
  margin-bottom: 60px;
}

.dl-privacy dt {
  line-height: 1.7;
}

.table-style01 {
  border: 1px solid #e1e1e1;
}

.table-style01 tr:not(:last-child) {
  border-bottom: 1px solid #e1e1e1;
}

.table-style01 th {
  background-color: #303A38;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  width: 30%;
}

.table-style01 td {
  padding: 10px 30px;
}

.u-tel {
  font-size: 27px;
  font-family: "Rye", cursive;
  color: #333333;
  line-height: 1;
  position: relative;
}

.u-tel span {
  font-size: 20px;
}

.u-bnr {
  -webkit-transition: .3s;
  transition: .3s;
}

.u-bnr:hover {
  opacity: 0.7;
}

.u-movie iframe {
  width: 100%;
  height: 315px;
}

.u-slider01-main {
  padding: 0 20px;
  margin-bottom: 20px;
}

.u-slider01-main .slick-prev, .u-slider01-main .slick-next {
  top: 50%;
  border-top: 3px solid #000;
}

.u-slider01-main .slick-prev {
  left: 10px;
  border-left: 3px solid #000;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

.u-slider01-main .slick-next {
  right: 10px;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.u-slider01-thumb {
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 740px;
}

.u-slider01-thumb img {
  width: 100px;
  height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

.u-slider01-thumb .slick-slide {
  margin: 0 5px;
  cursor: pointer;
  position: relative;
}

.u-slider01-thumb .slick-slide:before {
  opacity: 1;
  content: "";
  border: 4px solid #9C7F2A;
  width: 100px;
  height: 70px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10;
  opacity: 0;
}

.u-slider01-thumb .slick-current img {
  border: 4px solid #9C7F2A;
}

.slick-imgs .slick-dots {
  bottom: -20px;
}

.slick-imgs .caption {
  background: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.slide-flow-img {
  margin-right: 30px;
}

.effect, .effect-first, .effect-pc {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.effect--moved {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.effect-first--moved {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.effect-pc--moved {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.effect-each {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

.effect-each--moved {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

/*------------
Loading
-------------*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: -webkit-gradient(linear, left top, right top, from(#497ca6), color-stop(67%, #4b86a8), to(#4d90aa));
  background: linear-gradient(90deg, #497ca6 0%, #4b86a8 67%, #4d90aa 100%);
  z-index: 3000000;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 4000000;
}

#loading_barWrap {
  width: 30vw;
  height: calc(1rem + 5px);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#loading_bar {
  width: 0;
  height: 5px;
  background: #fff;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.loadingNone {
  -webkit-animation: loadingAnime 1s forwards;
  animation: loadingAnime 1s forwards;
}

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

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }

  99% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

/*------------
モーダル
-------------*/
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
}

.modal-bg {
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #A27E39;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  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;
}

/*------------
モーダル:ライトボックス
-------------*/
.lb-data .lb-close {
  background: none;
  text-align: center;
  background-color: #A27E39;
  position: relative;
}

.lb-data .lb-close::before {
  content: '×';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}

/*-----------------------------------------------------------
お問い合わせ（レイアウト）
-----------------------------------------------------------*/
.box-contact {
  background-color: #682425;
  padding: 40px;
}

.box-contact .box-ttl {
  font-size: 22px;
  color: #A27E39;
  text-align: center;
  margin-bottom: 30px;
}

.box-contact .wrapper {
  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;
}

.box-contact .tel {
  font-size: 42px;
  margin-right: 40px;
  padding-left: 35px;
}

.box-contact .tel:before {
  width: 25px;
  height: 25px;
}

.box-contact .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
}

.box-contact .time dt {
  background-color: #A27E39;
  padding: 2px 10px;
  margin-right: 5px;
  color: #fff;
}

.box-contact .time dd:not(:last-child) {
  margin-right: 20px;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*TOPページ用：お知らせ*/
.list-top-news02 .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  font-weight: 500;
  padding: 25px 0 15px;
  line-height: 1;
}

.list-top-news02 .list-item:not(:last-child) {
  border-bottom: 1px solid #8B827B;
}

.list-top-news02 time {
  margin-right: 30px;
  line-height: 1.4;
}

.list-top-news02 .list-txt {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  padding-bottom: 1px;
  width: 80%;
  -webkit-transition: .3s;
  transition: .3s;
  line-height: 1.4;
}

.list-top-news02 .list-txt:hover {
  text-decoration: underline;
}

/*TOPページ用：ブログ*/
.list-top-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 100%;
}

.list-top-blog .list-item {
  width: calc(100% / 3);
  max-width: 246px;
}

.list-top-blog .list-item a {
  display: block;
}

.list-top-blog .list-item a:hover .list-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.list-top-blog .list-item:not(:last-child) {
  margin-right: 20px;
}

.list-top-blog .list-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.list-top-blog .list-img img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.list-top-blog .list-ttl {
  margin-bottom: 10px;
}

.list-top-blog .list-ttl {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  width: 100%;
}

.list-top-blog time {
  display: block;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 5px;
}

/*普通投稿*/
.list-post-type01 .list-item:not(:last-child) {
  margin-bottom: 80px;
}

.list-post-type02 .list-item:not(:last-child) {
  margin-bottom: 120px;
}

.list-post-type02 .list-desc {
  margin-bottom: 40px;
}

.list-post-type02 .before-after {
  margin-bottom: 30px;
}

.list-post-type02 .btn-more {
  display: block;
  margin: 0 auto;
}

.list-post-type03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-post-type03 .list-item+.list-item+.list-item {
  margin-top: 60px;
}

.list-post-type03 .list-item {
  width: 48%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.list-post-type03 .list-item a:hover .list-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.list-post-type03 .list-item:nth-child(odd) {
  margin-right: 4%;
}

.list-post-type03 .list-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.list-post-type03 .list-img img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: .5s;
  transition: .5s;
}

.list-post-type03 .list-ttl {
  font-size: 20px;
}

.post-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-layout .post-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 50px;
}

.post-layout .post-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-layout .post-desc {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

/*詳細ページ*/
.post-single-img {
  text-align: center;
  margin-bottom: 40px;
}

.postdata h4 {
  font-size: 20px;
  color: #682425;
}

.postdata h5 {
  font-size: 18px;
  color: #A27E39;
  padding-left: 10px;
  position: relative;
}

.postdata h5:after {
  content: '-';
  color: #682425;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
}

.postdata h6 {
  font-size: 18px;
  color: #682425;
}

.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

.post-data {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.post-data time {
  font-size: 14px;
  color: #A27E39;
  line-height: 1;
}

.post-data .post-category01 {
  margin-left: 20px;
}

.post-data .post-category02 {
  margin-left: 20px;
}

.post-category01 {
  padding: 2px 7px 6px;
  background-color: #303A38;
  color: #fff;
  display: inline-block;
  line-height: 1;
}

.post-category01 span {
  font-size: 12px;
  line-height: 1;
}

.post-category01 span:not(:last-child) {
  position: relative;
  padding-right: 20px;
}

.post-category01 span:not(:last-child):before {
  content: '/';
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.post-category02 {
  line-height: 1;
  display: inline-block;
}

.post-category02 span {
  font-size: 12px;
  padding: 3px 7px;
  background-color: #303A38;
}

.post-category02 span:not(:last-child) {
  margin-right: 5px;
}

/*セレクト式カテゴリー*/
.select-area {
  margin-bottom: 50px;
}

.select-area .select-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.select-area .select-box:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 8px solid #A27E39;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.select-area .select-category {
  -webkit-appearance: none;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  border-radius: 0;
  background: #F6F6F6;
  font-size: 16px;
  color: #A27E39;
  vertical-align: middle;
  height: 50px;
  padding: 5px 15px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.select-area .select-category::-ms-expand {
  display: none;
}

/*一覧用ページャー*/
.post-number {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
}

.post-number a {
  color: #a5a5a5;
  display: inline-block;
  padding: 0 10px 15px;
}

.post-number a:hover {
  color: #000;
}

.post-number .current {
  color: #000;
  display: inline-block;
  padding: 0 10px 15px;
  position: relative;
}

.post-number .current::after {
  content: "";
  border-bottom: 2px solid #000;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
}

/*詳細用ページャー*/
.post-number-single {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #d3d3d3;
}

.post-number-single a {
  display: inline-block;
  color: #000;
}

.post-number-single a.next {
  margin-top: 0;
}

.post-number-single a.next::before {
  content: '';
  background: url(../images/share/icon_arrow_post_left.svg) no-repeat center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 30px;
  height: 30px;
}

.post-number-single a.prev {
  margin-top: 0;
}

.post-number-single a.prev::after {
  content: '';
  background: url(../images/share/icon_arrow_post_right.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 30px;
  height: 30px;
}

.post-number-single a:hover {
  opacity: .5;
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*TOPページ用：お知らせ*/
  .list-top-news02 .list-item {
    display: block;
    font-size: 15px;
    padding: 15px 0;
  }

  .list-top-news02 time {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .list-top-news02 .list-txt {
    width: 100%;
    padding-bottom: 0;
  }

  /*TOPページ用：ブログ*/
  .list-top-blog {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 -5vw 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 5vw);
  }

  .list-top-blog li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 240px;
    flex: 0 0 240px;
    margin: 0 5% 0 0;
    max-width: 100%;
    position: relative;
  }

  /*普通投稿*/
  .list-post-type01 .list-item:not(:last-child) {
    margin-bottom: 60px;
  }

  .list-post-type02 .list-item:not(:last-child) {
    margin-bottom: 60px;
  }

  .list-post-type02 .list-desc {
    margin-bottom: 30px;
  }

  .list-post-type03 {
    display: block;
  }

  .list-post-type03 .list-item+.list-item+.list-item {
    margin-top: 40px;
  }

  .list-post-type03 .list-item+.list-item {
    margin-top: 40px;
  }

  .list-post-type03 .list-item {
    width: 100%;
  }

  .list-post-type03 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .post-layout {
    display: block;
  }

  .post-layout .post-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .post-layout .post-desc {
    width: 100%;
  }

  /*詳細ページ*/
  /*セレクト式カテゴリー*/
  /*一覧用ページャー*/
  .post-number {
    margin-top: 60px;
  }
}

/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: .5s;
  transition: .5s;
}

.fade:hover {
  opacity: .5;
}

.fs11 {
  font-size: 11px;
}

.bold, strong {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.txt-color {
  color: #A27E39;
}

.txt-link {
  text-decoration: underline;
  color: #682425;
}

.txt-note {
  font-size: 13px;
}

.txt-marker {}

.txt-marker span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, transparent), color-stop(60%, rgba(193, 153, 77, 0.3)), to(rgba(193, 153, 77, 0.3)));
  background: linear-gradient(transparent 0%, transparent 60%, rgba(193, 153, 77, 0.3) 60%, rgba(193, 153, 77, 0.3) 100%);
  background-size: 100% 90%;
}

.txt-marker .large {
  font-size: 27px;
}

.txt-marker .small {
  font-size: 20px;
}

.bre::before {
  content: "\A";
  white-space: pre;
}

.m-auto {
  margin: 0 auto;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 60px;
}

.mt10 {
  margin-top: 10px;
}

.b-top {
  border-top: 1px solid #000;
  padding-top: 10px;
  display: inline-block;
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*-----------------------------------------------------------
  Responsive
  -----------------------------------------------------------*/
  /*-------------
  Body
  -------------*/
  body {
    font-size: 15px;
    line-height: 1.8;
  }

  .container, .footer-inr, .modal-content {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }

  /*------------
  Header
  --------------*/
  .header {
    position: relative;
  }

  .header-inr {
    padding: 20px 90px 20px 30px;
  }

  .header .h-logo {
    width: 190px;
  }

  .header .h-btn {
    display: none;
  }

  .header .btn-home {
    background: url(../images/share/icon_home_w.svg) center 9px/15px no-repeat;
    display: block;
    text-align: center;
    padding-top: 30px;
    background-color: #682425;
    width: 55px;
    height: 55px;
    font-family: "Rye", cursive;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 13px;
  }

  .header .humberger-box {
    position: fixed;
    text-align: center;
    background-color: #682425;
    width: 55px;
    height: 55px;
    font-family: "Rye", cursive;
    top: 15px;
    right: 15px;
    font-size: 13px;
    z-index: 99999;
  }

  /*------------
  G-navi
  --------------*/
  .pc-navi {
    display: none;
  }

  .sp-navi {
    display: block;
    /* ボタン類 */
    /* コンテンツ */
  }

  .sp-navi .sp-navi-btns {
    background: #303A38;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.14);
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

  .sp-navi .sp-navi-btns .item {
    background-repeat: no-repeat;
    width: calc(100% / 2);
    text-align: center;
    position: relative;
  }

  .sp-navi .sp-navi-btns .item:nth-child(1) {
    background-position: top 10px center;
    background-size: 10.5px 11.5px;
    background-image: url(../images/share/icon_tel_b.svg);
  }

  .sp-navi .sp-navi-btns .item:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-right: 1px solid #fff;
    width: 2px;
    height: 100%;
  }

  .sp-navi .sp-navi-btns .item:nth-child(2) {
    background-position: top 10px center;
    background-size: 12px 10px;
    background-image: url(../images/share/icon_reserve.png);
  }

  .sp-navi .sp-navi-btns .item:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 2px;
    height: 100%;
  }

  /*.sp-navi .sp-navi-btns .item:nth-child(3) {
  background-position: top 10px center;
  background-size: 12px 10px;
  background-image: url(../images/share/icon_home_b.svg);
}*/

  .sp-navi .sp-navi-btns .item a {
    display: block;
    padding: 30px 0 0;
    height: 100%;
  }

  .sp-navi .sp-navi-btns .item .ttl {
    display: block;
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .sp-navi .sp-navi-btns .humberger-box {
    cursor: pointer;
    position: relative;
  }

  .sp-navi .sp-navi-contents {
    visibility: hidden;
    background: url(../images/sec01_bg.jpg) center/cover no-repeat;
    padding: 50px 25px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: .3s;
    transition: .3s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi .sp-navi-contents.is-open {
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi .sp-navi-list {
    display: block;
  }

  .sp-navi .sp-navi-list .item {
    width: 100%;
    position: relative;
    -webkit-transition: .3s;
    transition: .3s;
    border-bottom: 1px solid #ddd;
  }

  .sp-navi .sp-navi-list .item .item-link {
    display: block;
    position: relative;
    padding: 20px 0;
    font-size: 16px;

    line-height: 1;
  }

  .sp-navi .sp-dropdown .item-link {
    margin-right: 60px;
    font-size: 15px;
  }

  .sp-navi .sp-dropdown:after {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 9px 0 9px;
    border-color: #A27E39 transparent transparent transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
  }

  .sp-navi .sp-dropdown.is-on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sp-navi .sp-dropdown .sp-navi-child {
    padding: 5px 0 20px;
    width: 100%;
  }

  .sp-navi .sp-dropdown .sp-navi-child li {
    padding-left: 10px;
    width: 100%;
    line-height: 1.6;

    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
  }

  .sp-navi .sp-dropdown .sp-navi-child li:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 3px;
    border-color: transparent transparent transparent #A27E39;
    position: absolute;
    top: 12px;
    left: 0;
    margin-top: -3px;
  }

  .humberger {
    display: block;
    height: 30px;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 150;
    position: relative;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  .humberger span {
    background: #A27E39;
    position: absolute;
    width: 13.5px;
    height: 2px;
    -webkit-transition: .4s;
    transition: .4s;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .humberger span:nth-of-type(1) {
    top: 30%;
  }

  .humberger span:nth-of-type(2) {
    top: 48%;
  }

  .humberger span:nth-of-type(3) {
    bottom: 29%;
  }

  .humberger.is-open span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
  }

  .humberger.is-open span:nth-of-type(2) {
    display: none;
  }

  .humberger.is-open span:nth-of-type(3) {
    bottom: 42%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
  }

  .fixed-menu {
    display: none;
  }

  /*------------
  Hero
  --------------*/
  .hero-slider .slider-img {
    height: 40vh;
  }

  .hero-slider .slider-img:nth-child(1) {
    background-image: url(../images/hero01_sp.jpg);
  }

  .hero-slider .slider-img:nth-child(2) {
    background-image: url(../images/hero02_sp.jpg);
  }

  .hero-slider .slider-img:nth-child(3) {
    background-image: url(../images/hero03_sp.jpg);
  }

  .hero-slider .slick-dots {
    bottom: 10px;
    text-align: center;
    padding-right: 0;
  }

  .hero-news {
    display: block;
    padding: 20px;
    bottom: 10px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 90%;
    width: 90%;
  }

  .hero-news .ttl {
    font-size: 18px;
    margin-right: 0;
  }

  .hero-news .top-btn, .hero-news .btn-more {
    top: 20px;
    right: 20px;
  }

  /*------------
  Top contents
  --------------*/
  .t-ttl {
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .t-ttl .en {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .t-ttl .jp {
    font-size: 22px;
  }

  .t-ttl::before {
    width: 110px;
    height: 16px;
  }

  .sec01 {
    padding: 50px 0;
  }

  .sec01 .container, .sec01 .footer-inr, .sec01 .modal-content {
    display: block;
  }

  .sec01 .t-ttl {
    text-align: center;
    margin-bottom: 20px;
  }

  .sec01 .t-ttl .en {
    font-size: 36px;
  }

  .sec01 .t-ttl .jp {
    font-size: 18px;
  }

  .sec01 .list-top-news02 {
    margin-bottom: 20px;
  }

  .sec01 .top-btn, .sec01 .btn-more {
    min-width: 225px;
    width: 225px;
  }

  .sec02 {
    padding: 50px 0;
  }

  .sec02-layout {
    text-align: left;
    background: url(../images/sec02-desc_bg02_sp.png) center/100% 100% no-repeat;
    margin: -10px -20px -20px -10px;
    padding: 10px 20px 20px 10px;
  }

  .sec02-layout-inr {
    width: 100%;
    padding: 40px 30px;
    background: url(../images/sec02-desc_bg_sp.jpg) center/100% 100% no-repeat;
  }

  .sec02-layout .l-ttl {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .sec02-layout .l-desc {
    margin-bottom: 20px;
  }

  .sec03 {
    padding: 50px 0;
  }

  .sec03-layout {
    display: block;
  }

  .sec03-layout .l-img {
    width: 100%;
    margin: 0;
  }

  .sec03-layout .l-desc {
    width: 100%;
    padding: 20px 0 0 0;
    margin: 0;
  }

  .sec03-layout .top-btn, .sec03-layout .btn-more {
    margin-top: 20px;
  }

  .sec03-layout .t-ttl {
    text-align: center;
  }

  .sec03-layout .t-ttl::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .sec04 {
    padding: 50px 0;
  }

  .sec04-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .sec04-list .l-item {
    width: 48%;
  }

  .sec04-list .l-item:not(:nth-child(5n)) {
    margin-right: 0;
  }

  .sec04-list .l-item:nth-child(odd) {
    margin-right: 4%;
  }

  .sec04-list .l-item:nth-child(n + 6) {
    margin-top: 20px;
  }

  .sec04-list .l-item:nth-child(n + 3) {
    margin-top: 20px;
  }

  .sec04-list .l-item:hover {
    -webkit-transform: none;
    transform: none;
  }

  .sec04-list a {
    padding: 20px;
  }

  .sec04-list .l-img img {
    width: 65px;
    height: 65px;
  }

  .sec04-list .l-ttl {
    font-size: 15px;
  }

  .sec05 {
    padding: 50px 0;
  }

  .sec05-layout {
    display: block;
    margin-bottom: 30px;
  }

  .sec05-layout .l-img {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .sec05-layout .l-desc {
    margin: 0;
  }

  .sec05-layout .l-desc a {
    width: 100%;
    min-height: auto;
    padding: 25px 35px 30px 35px;
  }

  .sec05-layout .l-ttl {
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
  }

  .sec05-layout .l-btn {
    margin-top: 30px;
  }

  .sec05-layout.reverse .l-desc {
    margin: 0;
  }

  .sec06 {
    padding: 50px 0;
  }

  .sec06-layout {
    display: block;
    padding: 0;
    margin-bottom: 40px;
  }

  .sec06-layout .l-img {
    margin: 0 0 20px;
  }

  .sec06-layout .l-desc {
    width: 100%;
    padding: 0;
  }

  .sec06 .top-btn, .sec06 .btn-more {
    margin-top: 30px;
  }

  .sec06 .t-ttl {
    text-align: center;
  }

  .sec06 .t-ttl::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .bnr-recruit{
    display: grid;
    grid-template-columns: 1fr;
    gap:20px;
    text-align: center;
  }
  
  .sec07 {
    padding: 50px 0;
  }

  .sec07 .container, .sec07 .footer-inr, .sec07 .modal-content {
    display: block;
  }

  .sec07-ttl {
    margin-right: 0;
  }

  .sec07 .t-ttl {
    margin-bottom: 30px;
    text-align: center;
  }

  .sec07 .t-ttl .en {
    font-size: 36px;
  }

  .sec07 .t-ttl .jp {
    font-size: 18px;
  }

  .sec07 .list-top-blog {
    margin-bottom: 30px;
  }

  .sec07 .top-btn, .sec07 .btn-more {
    min-width: 225px;
    width: 225px;
  }

  .sec08 {
    display: block;
  }

  .sec08 .l-map {
    min-height: 55vw;
    height: 55vw;
  }

  .sec08 .l-desc {
    width: 100%;
    padding: 30px 20px;
  }

  .sec08 .l-logo {
    width: 280px;
  }

  .sec08 .l-calendar {
    width: 100%;
  }

  .list-event .l-item {
    width: auto;
    margin-right: 25px;
  }

  .sec09 {
    padding: 50px 0;
  }

  .sec09 iframe {
    width: 100%;
    height: 51vw;
  }

  /*------------
  Footer
  --------------*/
  .pagetop {
    right: 15px;
    font-size: 11px;
    padding-top: 55px;
  }

  .pagetop::before {
    content: '';
    width: 1.5px;
    height: 15px;
    position: absolute;
    top: -2px;
    right: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff;
  }

  .pagetop:hover {
    color: #fff;
    border-right: 2px solid #fff;
  }

  .pagetop:hover::before {
    background-color: #fff;
  }

  .footer-inr {
    display: block;
  }

  .footer .f-left {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .f-logo {
    width: 280px;
    margin: 0 auto 20px;
  }

  .footer .f-logo img {
    width: 100%;
  }

  .footer .tel {
    margin-bottom: 20px;
  }

  .footer .f-navi {
    width: 100%;
    padding-left: 0;
  }

  .footer .f-navi-ttl {
    margin-bottom: 15px;
  }

  .footer .f-navi-list .item {
    font-size: 12px;
    line-height: 2;
  }

  .footer .f_bnr_area figure {
    width: 100%;
  }

  .footer .copyright {
    padding: 20px 0 70px;
  }

  /*------------
  Button
  --------------*/
  /*------------
  Common parts
  --------------*/
  .map {
    height: 300px;
  }

  .tel span {
    font-size: 28px;
    padding-left: 45px;
  }

  .tel span::before {
    width: 34px;
    height: 25px;
  }

  .time-table th, .time-table td {
    padding: 10px 5px;
    font-size: 13px;
  }

  .time-table th:first-child {
    width: auto;
  }

  .time-table td {
    width: auto;
  }

  .time-table-txt {
    text-align: center;
  }

  /*------------
  Under layout
  --------------*/
  .u-top-common {
    margin-bottom: 20px;
    background-position: 27%;
  }

  .page-ttl {
    padding: 120px 0 90px;
    display: block;
  }

  .page-ttl .txt01 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .page-ttl .txt01::before {
    background-position: center;
    background-size: cover;
    width: 120px;
    height: 15px;
    left: calc(50% - 60px);
    top: -35px;
  }

  .page-ttl .txt02 {
    font-size: 22px;
  }

  .breadcrumb {
    margin-bottom: 40px;
  }

  /*------------
  Under parts
  --------------*/
  .u-h2, .postdata h1, .post-category-ttl {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .u-h3, .dl-privacy dt, .postdata h2, .post-ttl {
    font-size: 22px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .u-h4, .postdata h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .u-h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .u-h5 span {
    top: 2px;
  }

  .u-h5 span img {
    height: 20px;
  }

  .tall {
    margin-bottom: 80px;
  }

  .tall:last-child {
    margin-bottom: 120px;
  }

  .l-style01 {
    display: block;
  }

  .l-style01 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .l-style01 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style01 .l-desc {
    width: 100%;
  }

  .l-style01 .l-desc .desc-ttl {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .l-style01 .l-desc .desc-ttl::before {
    top: -8px;
  }

  .l-style01 .lf-left,
  .l-style01 .lf-right {
    min-height: 100%;
  }

  .l-style01 .lf-left {
    width: 100%;
    display: block;
    padding: 25px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .l-style01 .lf-left-tel {
    display: block;
    text-align: center;
    margin-right: 0;
  }

  .l-style01 .lf-left-box {
    text-align: center;
  }

  .l-style01 .lf-left-box-time {
    display: block;
  }

  .l-style01 .lf-left-box-time dt {
    width: 100%;
  }

  .l-style01 .lf-left-box-time dd {
    width: 100%;
  }

  .l-style01 .lf-right {
    width: 100%;
    padding: 25px;
  }

  .l-style01 .lf-right-btn .btn-more {
    margin: 25px auto 0;
  }

  .l-style02 {
    display: block;
  }

  .l-style02 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .l-style02 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style03 {
    display: block;
  }

  .l-style03.reverse {
    display: block;
  }

  .l-style03.reverse .l-desc {
    padding: 30px 20px;
    margin: auto;
    position: relative;
  }

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

  .l-style03 .l-desc {
    padding: 30px 20px;
    margin: auto;
    position: relative;
  }

  .l-style04 {
    display: block;
  }

  .l-style04 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .l-style04 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style04 .l-desc {
    width: 100%;
  }

  .l-style04 .l-desc .l-ttl .txt01 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .l-style04 .l-desc .l-ttl .txt02 {
    font-size: 22px;
  }

  .l-style04 .l-desc .l-ttl-s {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .l-style04 .l-desc .l-ttl-s::before {
    width: 30px;
    height: 1px;
    left: 0;
    top: 50%;
  }

  .l-style05 {
    display: block;
  }

  .l-style05 .l-img {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .l-style05 .l-img.large {
    margin: 0 auto 20px;
    position: relative;
  }

  .l-style05 .l-desc {
    width: 100%;
  }

  .l-style05 .l-desc .l-ttl .txt01 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .l-style05 .l-desc .l-ttl .txt02 {
    font-size: 22px;
  }

  .l-style05 .l-desc .l-ttl-s {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .l-style05 .l-desc .l-ttl-s::before {
    width: 30px;
    height: 1px;
    left: 0;
    top: 50%;
  }

  .l-style06 {
    display: block;
  }

  .l-style06 .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .l-style06 .l-img.small {
    width: 100%;
  }

  .box-style01 {
    padding: 30px 20px;
  }

  .box-style01 .wrapper {
    margin: 20px 0;
  }

  .box-style01 .wrapper .w-item {
    display: block;
    margin-bottom: 30px;
    text-align: center;
  }

  .box-style01 .wrapper .w-item-ttl {

    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #A27E39;
    border-bottom: 1px solid #8B827B;
  }

  .box-style01 .wrapper .w-item-txt {
    max-width: 100%;
    padding-left: 0;
    border-left: none;
  }

  .box-style01 .bottom {
    font-size: 17px;
    margin-top: 30px;
  }

  .box-style02 {
    padding: 75px 20px 50px;
  }

  .box-style02 p {
    text-align: left;
  }

  .box-style02::before {
    width: 290px;
    height: 110px;
    top: -35px;
    left: calc(50% - 145px);
  }

  .box-style02 .box-h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
  }

  .box-style02 .tel {

    font-size: 30px;
    color: #fff;
    position: relative;
    display: inline-block;
  }

  .box-style02 .tel::before {
    width: 34px;
    height: 25px;
    left: 0;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }

  .list-col1 .item:not(:last-child) {
    margin-bottom: 60px;
  }

  .list-col1 .item--s:not(:last-child) {
    margin-bottom: 40px;
  }

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

  .list-col2 .list-item {
    width: 100%;
  }

  .list-col2 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-col2 .list-item+.list-item+.list-item {
    margin-top: 50px;
  }

  .list-col2 .list-item+.list-item {
    margin-top: 50px;
  }

  .list-col2 .list-ttl {
    font-size: 20px;
  }

  .list-card-col2 {
    display: block;
  }

  .list-card-col2.col4 .list-item {
    width: 100%;
  }

  .list-card-col2.col4 .list-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .list-card-col2 .list-item {
    width: 100%;
    padding: 25px;
  }

  .list-card-col2 .list-item:nth-child(odd) {
    margin-right: 0;
  }

  .list-card-col2 .list-item+.list-item+.list-item {
    margin-top: 30px;
  }

  .list-card-col2 .list-item+.list-item {
    margin-top: 30px;
  }

  .list-card-col2 .list-ttl {
    margin-bottom: 20px;
  }

  .list-card-col2 .list-ttl .ttl01 {
    font-size: 12px;
  }

  .list-card-col2 .list-ttl .ttl02 {
    font-size: 18px;
  }

  .list-card-col4 {
    display: block;
  }

  .list-card-col4 .list-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .list-card-col4 .list-item:nth-child(n+5) {
    margin-top: 0;
  }

  .list-card-col4 .list-img {
    margin-bottom: 10px;
  }

  .list-card-col4 .list-ttl {
    margin-top: 10px;
  }

  .list-txt li:before {
    top: 12px;
  }

  .list-txt.col2, .list-txt.col3, .list-txt.col4 {
    display: block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .list-txt.col2 li, .list-txt.col3 li, .list-txt.col4 li {
    width: 100%;
  }

  .list-txt.col2 li:nth-child(odd) {
    margin-right: 0;
  }

  .list-txt.col3 li:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .list-txt.col4 li {
    padding-right: 0;
  }

  .list-check li:before {
    top: 10px;
  }

  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li:not(:last-child):after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 25px;
  }

  .list-anchor-link a:before {
    right: inherit;
    left: 0;
  }

  .flow-type01 {
    padding: 40px 30px;
    background: #000 url(../images/under/under_sec_bg_sp.png) no-repeat center/100% 100%;
  }

  .flow-type01::before, .flow-type01::after {
    background: #000 url(../images/under/under_sec_top_sp.png) no-repeat center top/100% 100%;
    max-width: 800px;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
  }

  .flow-type01::after {
    background: #000 url(../images/under/under_sec_btm_sp.png) no-repeat center bottom/100% 100%;
    top: auto;
    bottom: 0;
  }

  .flow-type01 .l-item:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .flow-type01 .l-ttl {
    font-size: 20px;
  }

  .flow-type01 .l-ttl span {
    font-size: 11px;
  }

  .staff-layout {
    display: block;
    margin-bottom: 40px;
  }

  .staff-layout .l-img {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .staff-layout .l-desc {
    margin-right: 0;
  }

  .staff-layout .job {
    font-size: 16px;
  }

  .staff-layout .name {
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    font-size: 24px;
    margin-right: 20px;
  }

  .staff-layout .en {
    font-size: 16px;
  }

  .staff-profile {
    display: block;
  }

  .staff-profile .item {
    width: 100%;
  }

  .staff-profile .item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .staff-profile .ttl {
    font-size: 22px;
    color: #A27E39;
    margin-bottom: 10px;
  }

  .staff-profile-list li {
    display: block;
    margin-bottom: 20px;
  }

  .staff-profile-list .data {
    width: auto;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .staff-profile-list .txt {
    width: 100%;
  }

  .dl-faq01 dt .txt {
    font-size: 16px;
  }

  .dl-faq01 dt::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../images/under/under_faq_img.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 0;
    top: 5px;
    -webkit-transition: .5s;
    transition: .5s;
  }

  .dl-faq01 dt.is-open::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .dl-faq01 dd {
    margin-bottom: 30px;
  }

  .dl-faq01 .icon {
    font-size: 15px;
    width: 30px;
    height: 30px;
    line-height: 26px;
    margin: 0 10px 0 0;
  }

  .dl-privacy dt {
    line-height: 1.4;
  }

  .table-style01 th {
    width: 100%;
    display: block;
    padding: 10px 15px;
    text-align: left;
  }

  .table-style01 td {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::before {
    content: "※横にスクロールできます。";
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px;
    width: 150%;
  }

  .u-movie iframe {
    height: 55vw;
  }

  .u-slider01-main {
    padding: 0 10px;
  }

  .u-slider01-thumb {
    padding: 0 10px;
    max-width: 100%;
  }

  .u-slider01-thumb img {
    width: 80px;
    height: 60px;
  }

  .u-slider01-thumb .slick-slide:before {
    width: 80px;
    height: 60px;
  }

  .slick-imgs {
    padding-bottom: 15px;
  }

  .slick-imgs .slick-dots {
    bottom: 0;
  }

  .slide-flow {
    padding: 0 10px;
  }

  .slide-flow-img {
    margin-right: 25px;
  }

  /*------------
  reset
  --------------*/
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
  }

  /*------------
  utility
  --------------*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .tac {
    text-align: left;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
  .sp-map object,
  .sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .box-contact {
    padding: 25px;
  }

  .box-contact .box-ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .box-contact .wrapper {
    display: block;
    text-align: center;
  }

  .box-contact .tel {
    font-size: 36px;
    margin-right: 0;
    padding-left: 25px;
  }

  .box-contact .tel:before {
    width: 20px;
    height: 20px;
  }

  .box-contact .time {
    margin-top: 10px;
  }

  .box-contact .time dd:not(:last-child) {
    margin-right: 15px;
  }

  .txt-marker .large {
    font-size: 22px;
  }

  .txt-marker .small {
    font-size: 18px;
  }
}

/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
Slick
-------------*/
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  text-align: center;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  border: none;
  background: transparent;
  cursor: pointer;
  color: transparent;
}

.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  width: 20px;
  height: 20px;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: 10;
}

.slick-prev:focus,
.slick-next:focus {
  outline: 0;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: .5;
}

.slick-prev {
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  left: 25px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
}

.slick-next {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 25px;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.slick-dots {
  display: block;
  list-style: none;
  line-height: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.slick-dots li+li {
  margin-left: 10px;
}

.slick-dots li button {
  display: block;
  background: #ddd;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: transparent;
  width: 8px;
  height: 8px;
  outline: none;
  -webkit-transition: .5s;
  transition: .5s;
}

.slick-dots li button:hover,
.slick-dots li button:focus,
.slick-dots li.slick-active button {
  background: #A27E39;
}

.loop-slider-wrapper {
  overflow: hidden;
}

.loop-slider {
  animation: roop-slider 70s infinite linear both;
  display: flex;
  width: calc(432px * 3);
  position: relative;
}

.loop-slider div {
  width: 432px;
  flex: 0 0 432px;
}

@keyframes roop-slider {
  from {
    transform: translateX(0vw);
  }

  to {
    transform: translateX(calc(-432px * 3));
  }
}

.mbXL {
  margin-bottom: 100px;
}
