@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}
a:hover img {
  opacity: 0.7;
}

a.underline {
  text-decoration: underline;
}

/*                reset
======================================================= */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #333133;
  background-color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    sans-serif;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

/*                leyout
======================================================= */
.main_width {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1260px;
  padding: 0 30px;
}
@media only screen and (max-width: 768px) {
  .main_width {
    padding: 0 20px;
  }
}

.font__weight--bold {
  font-weight: bold;
}

.filter {
  -webkit-filter: invert(18%) sepia(40%) saturate(18%) hue-rotate(230deg)
    brightness(97%) contrast(98%);
  filter: invert(18%) sepia(40%) saturate(18%) hue-rotate(230deg)
    brightness(97%) contrast(98%);
}

.filter--red {
  -webkit-filter: invert(16%) sepia(59%) saturate(6518%) hue-rotate(350deg)
    brightness(67%) contrast(114%);
  filter: invert(16%) sepia(59%) saturate(6518%) hue-rotate(350deg)
    brightness(67%) contrast(114%);
}

.filter--white {
  -webkit-filter: invert(100%) sepia(8%) saturate(564%) hue-rotate(316deg)
    brightness(113%) contrast(100%);
  filter: invert(100%) sepia(8%) saturate(564%) hue-rotate(316deg)
    brightness(113%) contrast(100%);
}

.filter--beige {
  -webkit-filter: invert(90%) sepia(15%) saturate(634%) hue-rotate(331deg)
    brightness(89%) contrast(95%);
  filter: invert(90%) sepia(15%) saturate(634%) hue-rotate(331deg)
    brightness(89%) contrast(95%);
}

.filter--black {
  position: relative;
}
.filter--black::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.3;
  position: absolute;
}
.filter--black > * {
  position: relative;
  z-index: 1;
}

.border-radius {
  border-radius: 15px;
}

/*                spmenu
======================================================= */
.sp-menu {
  display: block;
  background-color: #dec4aa;
  position: fixed;
  width: 100%;
  height: calc(100% - 50px);
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 110%;
}

.sp_menu_open {
  top: 50px;
}

.sp-menu--bottom {
  top: auto;
  bottom: 110%;
}
.sp-menu--bottom.sp_menu_open {
  bottom: 0;
}

.sp-menu__wrap {
  max-width: 296px;
  padding: 0px 15px;
  margin: 0 auto;
}

.sp-menu-navi {
  padding: 60px 0;
}

.sp-menu-navi__item + .sp-menu-navi__item {
  margin-top: 25px;
}

.sp-menu-navi__link {
  font-size: 22px;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

/*                footer
======================================================= */
#footer {
  position: relative;
}
#footer::before {
  content: "";
  display: block;
  width: calc(100% - 100px);
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media only screen and (max-width: 1300px) {
  #footer::before {
    width: calc(100% - 60px);
  }
}
@media only screen and (max-width: 768px) {
  #footer::before {
    width: 100%;
    position: static;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .footer__wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  .footer__wrap {
    display: none;
  }
}

.footer__info .logo {
  margin-bottom: 25px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.57;
}
.footer__text + .footer__text {
  margin-top: 10px;
}

.footer-navi__wrap {
  width: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: auto;
}
@media only screen and (max-width: 900px) {
  .footer-navi__wrap {
    width: 170px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 100px;
  }
}

@media only screen and (max-width: 900px) {
  .footer-navi + .footer-navi {
    margin-top: 15px;
  }
}

.footer-navi__item {
  position: relative;
  padding-left: 16px;
}
.footer-navi__item::before {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  background-image: url("/assets/media/images/common/icon-arrow.svg");
  position: absolute;
  left: 0;
  top: 5px;
}
.footer-navi__item + .footer-navi__item {
  margin-top: 15px;
}

.footer-navi__link:hover {
  color: #c9ab84;
}

.footer_bottom {
  background-color: #333133;
  padding: 8px 0;
}
@media only screen and (max-width: 768px) {
  .footer_bottom {
    background-color: #fff;
    padding: 24px 0;
  }
}
.footer_bottom .main_width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .footer_bottom .main_width {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer_bottom p,
.footer_bottom a {
  color: #fff;
  font-size: 14px;
  line-height: 1.57;
}
@media only screen and (max-width: 768px) {
  .footer_bottom p,
  .footer_bottom a {
    color: #333133;
  }
}

.corporate {
  position: relative;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  .corporate {
    display: none;
  }
}
.corporate::before {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  background-image: url("/assets/media/images/common/icon-arrow_white.svg");
  position: absolute;
  left: 0;
  top: 5px;
}

/*                pagetop
======================================================= */
.pagetop {
  position: fixed;
  right: 10px;
  bottom: 80px;
  z-index: 1000;
  display: none;
}
@media only screen and (max-width: 768px) {
  .pagetop {
    display: none !important;
  }
}

.pagetop__link {
  /*display: flex;
  text-decoration: none;
  position: relative;
  transform: rotate(90deg);*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.pagetop__link:hover img {
  opacity: 1;
}
.pagetop__link:hover .pagetop__arrow {
  top: -47px;
}

.pagetop__link--text {
  margin-left: 10px;
  font-size: 14px;
  color: #b10006;
}

.pagetop__arrow {
  /*width: 32px;
  transform: translateY(5px);*/
  width: 6px;
  position: absolute;
  top: -42px;
  left: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.pagetop__text {
  width: 18px;
}

/*                Slick  Slider
======================================================= */
.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;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  outline: none;
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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;
}

/*                common parts
======================================================= */
@media only screen and (min-width: 769px) {
  .tel-link {
    pointer-events: none;
  }
}

.contents-title {
  text-align: center;
}

.contents-title__main {
  font-weight: bold;
  font-size: 35px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .contents-title__main {
    font-size: 27px;
    line-height: 1.37;
  }
}
.contents-title__main span {
  display: inline-block;
}

.contents-title__sub {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "游ゴシック",
    "Yu Gothic", "メイリオ", sans-serif;
  color: #dec4aa;
  line-height: 2.14;
  font-size: 14px;
}

.youtube-frame {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  left: 0;
  top: 0;
}

.common-text--p {
  font-weight: bold;
  line-height: 1.875;
}

.contents-link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: -15px;
}
@media only screen and (max-width: 768px) {
  .contents-link-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.contents-link {
  width: 100%;
  text-align: center;
  padding: 0 5px;
  margin-bottom: 15px;
  cursor: pointer;
}

.contents-link--half {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .contents-link--half {
    width: 100%;
  }
}

.contents-link__button {
  font-weight: bold;
  line-height: 1.625;
  padding: 15px 30px 14px;
  position: relative;
  border-radius: 7px;
  display: block;
  margin: 0 auto;
}
.contents-link__button::after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 18px;
  height: 6px;
  background-size: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contents-link__button:hover::after {
  right: 15px;
}

.contents-link__button--beige {
  background-color: #c9ab84;
  color: #fff;
}
.contents-link__button--beige::after {
  background-image: url("/assets/media/images/common/icon_botton_white_arrow_right.svg");
}

.contents-link__button--white {
  background-color: #fff;
}
.contents-link__button--white::after {
  background-image: url("/assets/media/images/common/icon_botton_arrow_right.svg");
}

.contents-link__button--red {
  color: #b10006;
  background-color: #fff;
}
.contents-link__button--red::after {
  background-image: url("/assets/media/images/common/icon_botton_red_arrow_right.svg");
}

.contents-link__button--bg-red {
  color: #fff;
  background-color: #b10006;
}
.contents-link__button--bg-red::after {
  background-image: url("/assets/media/images/common/icon_botton_white_arrow_right.svg");
}

.common-contents {
  padding: 100px 0;
}
@media only screen and (max-width: 768px) {
  .common-contents {
    padding: 45px 0 60px;
  }
}

.common-contents--beige {
  background-color: #f3ede7;
}

.img-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .img-text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.img-text::after {
  content: "";
  display: block;
  clear: both;
}
.img-text + .img-text {
  padding-top: 50px;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .img-text + .img-text {
    padding-top: 25px;
    margin-top: 25px;
  }
}
.img-text + .img-text::before {
  content: "";
  display: block;
  width: calc(100% - 50px);
  height: 1px;
  border-top: 1px #cccccc solid;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.img-text--fstart {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.img-text--imgl .img-text__img {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.img-text--imgr .img-text__img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (max-width: 768px) {
  .img-text--imgr .img-text__img {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}

.img-text__contents {
  padding: 0 25px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .img-text__contents + .img-text__contents {
    margin-top: 25px;
  }
}

.img-text__img {
  max-width: 600px;
}
@media only screen and (max-width: 1024px) {
  .img-text__img {
    max-width: none;
    min-width: 450px;
  }
}
@media only screen and (max-width: 768px) {
  .img-text__img {
    min-width: auto;
  }
}
.img-text__img .contents-title {
  display: none;
}
@media only screen and (max-width: 768px) {
  .img-text__img .contents-title {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .img-text__text .contents-title {
    display: none;
  }
}
.img-text__text .contents-title + .common-text {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .img-text__text .contents-title + .common-text {
    margin-top: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .img-text__text .contents-title__main {
    font-size: 27px;
    line-height: 1.37;
  }
}
.img-text__text .common-text {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .img-text__text .common-text {
    margin-top: 15px;
  }
}
.img-text__text .contents-link-wrap {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .img-text__text .contents-link-wrap {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .img-text__img--picture {
    margin-top: 20px;
    display: block;
  }
}

/*                voice slider
======================================================= */
.voice-slider-wrap {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .voice-slider-wrap {
    margin-top: 20px;
  }
}
.voice-slider-wrap .contents-link-wrap {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .voice-slider-wrap .contents-link-wrap {
    margin-top: 20px;
  }
}
.voice-slider-wrap .contents-link {
  max-width: 370px;
}
@media only screen and (max-width: 768px) {
  .voice-slider-wrap .contents-link {
    max-width: none;
    width: 100%;
    padding: 0 20px;
  }
}

.voice-slider {
  position: relative;
}

.voice-slider__item {
  margin: 0 20px;
  width: 33.3333%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .voice-slider__item {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 768px) {
  .voice-slider__item {
    margin: 0 8px;
  }
}
.voice-slider__item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.voice-slider__item a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.79)),
    color-stop(40%, rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.79) 0%,
    rgba(255, 255, 255, 0) 40%
  );
}

.voice-info {
  position: absolute;
  left: 30px;
  bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .voice-info {
    left: 15px;
    bottom: 15px;
  }
}

.voice__position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.voice__position--color {
  font-weight: bold;
  color: #fff;
}

.voice__position--text {
  font-size: 14px;
  position: relative;
}
@media only screen and (max-width: 1200px) {
  .voice__position--text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .voice__position--text {
    font-size: 14px;
  }
}
.voice__position--text + .voice__position--text {
  margin-left: 15px;
  padding-left: 15px;
}
.voice__position--text + .voice__position--text::before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 18px;
  left: 0;
  top: 50%;
  background-color: #fff;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.voice__name {
  font-size: 25px;
  line-height: 1.2;
  margin-top: 10px;
}
@media only screen and (max-width: 1200px) {
  .voice__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .voice__name {
    font-size: 25px;
  }
}

.slick-arrow-wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .slick-arrow-wrap {
    margin-top: 30px;
  }
}

.slick-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px #dec4aa solid;
  position: relative;
  margin: 0 5px;
  bottom: 0;
  cursor: pointer;
}
.slick-arrow::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 18px;
  height: 6px;
  background-repeat: no-repeat;
}

.slick-arrow--left::before {
  background-image: url("/assets/media/images/common/icon_botton_beige_arrow_left.svg");
}

.slick-arrow--right::before {
  background-image: url("/assets/media/images/common/icon_botton_beige_arrow_right.svg");
}

/* 外部リンクマーク（Material Icons: open_in_new） */
/* 親リンクを flex にし、OS・ブラウザ差による縦ずれを防ぐ */
a:has(.material-icons.icon-external) {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
a.contents-link__button:has(.material-icons.icon-external) {
  display: flex;
  justify-content: center;
}
.material-icons.icon-external {
  font-family: "Material Icons";
  font-size: 1.25rem;
  flex-shrink: 0;
  color: currentColor;
  transition: color 0.2s ease;
}
a:hover .material-icons.icon-external,
a:focus .material-icons.icon-external {
  color: inherit;
}
